1 /* ELF executable support for BFD.
3 Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
4 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
6 This file is part of BFD, the Binary File Descriptor library.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
26 BFD support for ELF formats is being worked on.
27 Currently, the best supported back ends are for sparc and i386
28 (running svr4 or Solaris 2).
30 Documentation of the internals of the support code still needs
31 to be written. The code is changing quickly enough that we
32 haven't bothered yet. */
34 /* For sparc64-cross-sparc32. */
42 #include "libiberty.h"
44 static int elf_sort_sections (const void *, const void *);
45 static bfd_boolean assign_file_positions_except_relocs (bfd *, struct bfd_link_info *);
46 static bfd_boolean prep_headers (bfd *);
47 static bfd_boolean swap_out_syms (bfd *, struct bfd_strtab_hash **, int) ;
48 static bfd_boolean elfcore_read_notes (bfd *, file_ptr, bfd_size_type) ;
50 /* Swap version information in and out. The version information is
51 currently size independent. If that ever changes, this code will
52 need to move into elfcode.h. */
54 /* Swap in a Verdef structure. */
57 _bfd_elf_swap_verdef_in (bfd *abfd,
58 const Elf_External_Verdef *src,
59 Elf_Internal_Verdef *dst)
61 dst->vd_version = H_GET_16 (abfd, src->vd_version);
62 dst->vd_flags = H_GET_16 (abfd, src->vd_flags);
63 dst->vd_ndx = H_GET_16 (abfd, src->vd_ndx);
64 dst->vd_cnt = H_GET_16 (abfd, src->vd_cnt);
65 dst->vd_hash = H_GET_32 (abfd, src->vd_hash);
66 dst->vd_aux = H_GET_32 (abfd, src->vd_aux);
67 dst->vd_next = H_GET_32 (abfd, src->vd_next);
70 /* Swap out a Verdef structure. */
73 _bfd_elf_swap_verdef_out (bfd *abfd,
74 const Elf_Internal_Verdef *src,
75 Elf_External_Verdef *dst)
77 H_PUT_16 (abfd, src->vd_version, dst->vd_version);
78 H_PUT_16 (abfd, src->vd_flags, dst->vd_flags);
79 H_PUT_16 (abfd, src->vd_ndx, dst->vd_ndx);
80 H_PUT_16 (abfd, src->vd_cnt, dst->vd_cnt);
81 H_PUT_32 (abfd, src->vd_hash, dst->vd_hash);
82 H_PUT_32 (abfd, src->vd_aux, dst->vd_aux);
83 H_PUT_32 (abfd, src->vd_next, dst->vd_next);
86 /* Swap in a Verdaux structure. */
89 _bfd_elf_swap_verdaux_in (bfd *abfd,
90 const Elf_External_Verdaux *src,
91 Elf_Internal_Verdaux *dst)
93 dst->vda_name = H_GET_32 (abfd, src->vda_name);
94 dst->vda_next = H_GET_32 (abfd, src->vda_next);
97 /* Swap out a Verdaux structure. */
100 _bfd_elf_swap_verdaux_out (bfd *abfd,
101 const Elf_Internal_Verdaux *src,
102 Elf_External_Verdaux *dst)
104 H_PUT_32 (abfd, src->vda_name, dst->vda_name);
105 H_PUT_32 (abfd, src->vda_next, dst->vda_next);
108 /* Swap in a Verneed structure. */
111 _bfd_elf_swap_verneed_in (bfd *abfd,
112 const Elf_External_Verneed *src,
113 Elf_Internal_Verneed *dst)
115 dst->vn_version = H_GET_16 (abfd, src->vn_version);
116 dst->vn_cnt = H_GET_16 (abfd, src->vn_cnt);
117 dst->vn_file = H_GET_32 (abfd, src->vn_file);
118 dst->vn_aux = H_GET_32 (abfd, src->vn_aux);
119 dst->vn_next = H_GET_32 (abfd, src->vn_next);
122 /* Swap out a Verneed structure. */
125 _bfd_elf_swap_verneed_out (bfd *abfd,
126 const Elf_Internal_Verneed *src,
127 Elf_External_Verneed *dst)
129 H_PUT_16 (abfd, src->vn_version, dst->vn_version);
130 H_PUT_16 (abfd, src->vn_cnt, dst->vn_cnt);
131 H_PUT_32 (abfd, src->vn_file, dst->vn_file);
132 H_PUT_32 (abfd, src->vn_aux, dst->vn_aux);
133 H_PUT_32 (abfd, src->vn_next, dst->vn_next);
136 /* Swap in a Vernaux structure. */
139 _bfd_elf_swap_vernaux_in (bfd *abfd,
140 const Elf_External_Vernaux *src,
141 Elf_Internal_Vernaux *dst)
143 dst->vna_hash = H_GET_32 (abfd, src->vna_hash);
144 dst->vna_flags = H_GET_16 (abfd, src->vna_flags);
145 dst->vna_other = H_GET_16 (abfd, src->vna_other);
146 dst->vna_name = H_GET_32 (abfd, src->vna_name);
147 dst->vna_next = H_GET_32 (abfd, src->vna_next);
150 /* Swap out a Vernaux structure. */
153 _bfd_elf_swap_vernaux_out (bfd *abfd,
154 const Elf_Internal_Vernaux *src,
155 Elf_External_Vernaux *dst)
157 H_PUT_32 (abfd, src->vna_hash, dst->vna_hash);
158 H_PUT_16 (abfd, src->vna_flags, dst->vna_flags);
159 H_PUT_16 (abfd, src->vna_other, dst->vna_other);
160 H_PUT_32 (abfd, src->vna_name, dst->vna_name);
161 H_PUT_32 (abfd, src->vna_next, dst->vna_next);
164 /* Swap in a Versym structure. */
167 _bfd_elf_swap_versym_in (bfd *abfd,
168 const Elf_External_Versym *src,
169 Elf_Internal_Versym *dst)
171 dst->vs_vers = H_GET_16 (abfd, src->vs_vers);
174 /* Swap out a Versym structure. */
177 _bfd_elf_swap_versym_out (bfd *abfd,
178 const Elf_Internal_Versym *src,
179 Elf_External_Versym *dst)
181 H_PUT_16 (abfd, src->vs_vers, dst->vs_vers);
184 /* Standard ELF hash function. Do not change this function; you will
185 cause invalid hash tables to be generated. */
188 bfd_elf_hash (const char *namearg)
190 const unsigned char *name = (const unsigned char *) namearg;
195 while ((ch = *name++) != '\0')
198 if ((g = (h & 0xf0000000)) != 0)
201 /* The ELF ABI says `h &= ~g', but this is equivalent in
202 this case and on some machines one insn instead of two. */
206 return h & 0xffffffff;
209 /* Read a specified number of bytes at a specified offset in an ELF
210 file, into a newly allocated buffer, and return a pointer to the
214 elf_read (bfd *abfd, file_ptr offset, bfd_size_type size)
218 if ((buf = bfd_alloc (abfd, size)) == NULL)
220 if (bfd_seek (abfd, offset, SEEK_SET) != 0)
222 if (bfd_bread (buf, size, abfd) != size)
224 if (bfd_get_error () != bfd_error_system_call)
225 bfd_set_error (bfd_error_file_truncated);
232 bfd_elf_mkobject (bfd *abfd)
234 /* This just does initialization. */
235 /* coff_mkobject zalloc's space for tdata.coff_obj_data ... */
236 elf_tdata (abfd) = bfd_zalloc (abfd, sizeof (struct elf_obj_tdata));
237 if (elf_tdata (abfd) == 0)
239 /* Since everything is done at close time, do we need any
246 bfd_elf_mkcorefile (bfd *abfd)
248 /* I think this can be done just like an object file. */
249 return bfd_elf_mkobject (abfd);
253 bfd_elf_get_str_section (bfd *abfd, unsigned int shindex)
255 Elf_Internal_Shdr **i_shdrp;
256 bfd_byte *shstrtab = NULL;
258 bfd_size_type shstrtabsize;
260 i_shdrp = elf_elfsections (abfd);
261 if (i_shdrp == 0 || i_shdrp[shindex] == 0)
264 shstrtab = i_shdrp[shindex]->contents;
265 if (shstrtab == NULL)
267 /* No cached one, attempt to read, and cache what we read. */
268 offset = i_shdrp[shindex]->sh_offset;
269 shstrtabsize = i_shdrp[shindex]->sh_size;
270 shstrtab = elf_read (abfd, offset, shstrtabsize);
271 i_shdrp[shindex]->contents = shstrtab;
273 return (char *) shstrtab;
277 bfd_elf_string_from_elf_section (bfd *abfd,
278 unsigned int shindex,
279 unsigned int strindex)
281 Elf_Internal_Shdr *hdr;
286 hdr = elf_elfsections (abfd)[shindex];
288 if (hdr->contents == NULL
289 && bfd_elf_get_str_section (abfd, shindex) == NULL)
292 if (strindex >= hdr->sh_size)
294 unsigned int shstrndx = elf_elfheader(abfd)->e_shstrndx;
295 (*_bfd_error_handler)
296 (_("%B: invalid string offset %u >= %lu for section `%s'"),
297 abfd, strindex, (unsigned long) hdr->sh_size,
298 (shindex == shstrndx && strindex == hdr->sh_name
300 : bfd_elf_string_from_elf_section (abfd, shstrndx, hdr->sh_name)));
304 return ((char *) hdr->contents) + strindex;
307 /* Read and convert symbols to internal format.
308 SYMCOUNT specifies the number of symbols to read, starting from
309 symbol SYMOFFSET. If any of INTSYM_BUF, EXTSYM_BUF or EXTSHNDX_BUF
310 are non-NULL, they are used to store the internal symbols, external
311 symbols, and symbol section index extensions, respectively. */
314 bfd_elf_get_elf_syms (bfd *ibfd,
315 Elf_Internal_Shdr *symtab_hdr,
318 Elf_Internal_Sym *intsym_buf,
320 Elf_External_Sym_Shndx *extshndx_buf)
322 Elf_Internal_Shdr *shndx_hdr;
324 const bfd_byte *esym;
325 Elf_External_Sym_Shndx *alloc_extshndx;
326 Elf_External_Sym_Shndx *shndx;
327 Elf_Internal_Sym *isym;
328 Elf_Internal_Sym *isymend;
329 const struct elf_backend_data *bed;
337 /* Normal syms might have section extension entries. */
339 if (symtab_hdr == &elf_tdata (ibfd)->symtab_hdr)
340 shndx_hdr = &elf_tdata (ibfd)->symtab_shndx_hdr;
342 /* Read the symbols. */
344 alloc_extshndx = NULL;
345 bed = get_elf_backend_data (ibfd);
346 extsym_size = bed->s->sizeof_sym;
347 amt = symcount * extsym_size;
348 pos = symtab_hdr->sh_offset + symoffset * extsym_size;
349 if (extsym_buf == NULL)
351 alloc_ext = bfd_malloc (amt);
352 extsym_buf = alloc_ext;
354 if (extsym_buf == NULL
355 || bfd_seek (ibfd, pos, SEEK_SET) != 0
356 || bfd_bread (extsym_buf, amt, ibfd) != amt)
362 if (shndx_hdr == NULL || shndx_hdr->sh_size == 0)
366 amt = symcount * sizeof (Elf_External_Sym_Shndx);
367 pos = shndx_hdr->sh_offset + symoffset * sizeof (Elf_External_Sym_Shndx);
368 if (extshndx_buf == NULL)
370 alloc_extshndx = bfd_malloc (amt);
371 extshndx_buf = alloc_extshndx;
373 if (extshndx_buf == NULL
374 || bfd_seek (ibfd, pos, SEEK_SET) != 0
375 || bfd_bread (extshndx_buf, amt, ibfd) != amt)
382 if (intsym_buf == NULL)
384 bfd_size_type amt = symcount * sizeof (Elf_Internal_Sym);
385 intsym_buf = bfd_malloc (amt);
386 if (intsym_buf == NULL)
390 /* Convert the symbols to internal form. */
391 isymend = intsym_buf + symcount;
392 for (esym = extsym_buf, isym = intsym_buf, shndx = extshndx_buf;
394 esym += extsym_size, isym++, shndx = shndx != NULL ? shndx + 1 : NULL)
395 (*bed->s->swap_symbol_in) (ibfd, esym, shndx, isym);
398 if (alloc_ext != NULL)
400 if (alloc_extshndx != NULL)
401 free (alloc_extshndx);
406 /* Look up a symbol name. */
408 bfd_elf_sym_name (bfd *abfd,
409 Elf_Internal_Shdr *symtab_hdr,
410 Elf_Internal_Sym *isym)
412 unsigned int iname = isym->st_name;
413 unsigned int shindex = symtab_hdr->sh_link;
414 if (iname == 0 && ELF_ST_TYPE (isym->st_info) == STT_SECTION
415 /* Check for a bogus st_shndx to avoid crashing. */
416 && isym->st_shndx < elf_numsections (abfd)
417 && !(isym->st_shndx >= SHN_LORESERVE && isym->st_shndx <= SHN_HIRESERVE))
419 iname = elf_elfsections (abfd)[isym->st_shndx]->sh_name;
420 shindex = elf_elfheader (abfd)->e_shstrndx;
423 return bfd_elf_string_from_elf_section (abfd, shindex, iname);
426 /* Elf_Internal_Shdr->contents is an array of these for SHT_GROUP
427 sections. The first element is the flags, the rest are section
430 typedef union elf_internal_group {
431 Elf_Internal_Shdr *shdr;
433 } Elf_Internal_Group;
435 /* Return the name of the group signature symbol. Why isn't the
436 signature just a string? */
439 group_signature (bfd *abfd, Elf_Internal_Shdr *ghdr)
441 Elf_Internal_Shdr *hdr;
442 unsigned char esym[sizeof (Elf64_External_Sym)];
443 Elf_External_Sym_Shndx eshndx;
444 Elf_Internal_Sym isym;
446 /* First we need to ensure the symbol table is available. */
447 if (! bfd_section_from_shdr (abfd, ghdr->sh_link))
450 /* Go read the symbol. */
451 hdr = &elf_tdata (abfd)->symtab_hdr;
452 if (bfd_elf_get_elf_syms (abfd, hdr, 1, ghdr->sh_info,
453 &isym, esym, &eshndx) == NULL)
456 return bfd_elf_sym_name (abfd, hdr, &isym);
459 /* Set next_in_group list pointer, and group name for NEWSECT. */
462 setup_group (bfd *abfd, Elf_Internal_Shdr *hdr, asection *newsect)
464 unsigned int num_group = elf_tdata (abfd)->num_group;
466 /* If num_group is zero, read in all SHT_GROUP sections. The count
467 is set to -1 if there are no SHT_GROUP sections. */
470 unsigned int i, shnum;
472 /* First count the number of groups. If we have a SHT_GROUP
473 section with just a flag word (ie. sh_size is 4), ignore it. */
474 shnum = elf_numsections (abfd);
476 for (i = 0; i < shnum; i++)
478 Elf_Internal_Shdr *shdr = elf_elfsections (abfd)[i];
479 if (shdr->sh_type == SHT_GROUP && shdr->sh_size >= 8)
484 num_group = (unsigned) -1;
485 elf_tdata (abfd)->num_group = num_group;
489 /* We keep a list of elf section headers for group sections,
490 so we can find them quickly. */
491 bfd_size_type amt = num_group * sizeof (Elf_Internal_Shdr *);
492 elf_tdata (abfd)->group_sect_ptr = bfd_alloc (abfd, amt);
493 if (elf_tdata (abfd)->group_sect_ptr == NULL)
497 for (i = 0; i < shnum; i++)
499 Elf_Internal_Shdr *shdr = elf_elfsections (abfd)[i];
500 if (shdr->sh_type == SHT_GROUP && shdr->sh_size >= 8)
503 Elf_Internal_Group *dest;
505 /* Add to list of sections. */
506 elf_tdata (abfd)->group_sect_ptr[num_group] = shdr;
509 /* Read the raw contents. */
510 BFD_ASSERT (sizeof (*dest) >= 4);
511 amt = shdr->sh_size * sizeof (*dest) / 4;
512 shdr->contents = bfd_alloc (abfd, amt);
513 if (shdr->contents == NULL
514 || bfd_seek (abfd, shdr->sh_offset, SEEK_SET) != 0
515 || (bfd_bread (shdr->contents, shdr->sh_size, abfd)
519 /* Translate raw contents, a flag word followed by an
520 array of elf section indices all in target byte order,
521 to the flag word followed by an array of elf section
523 src = shdr->contents + shdr->sh_size;
524 dest = (Elf_Internal_Group *) (shdr->contents + amt);
531 idx = H_GET_32 (abfd, src);
532 if (src == shdr->contents)
535 if (shdr->bfd_section != NULL && (idx & GRP_COMDAT))
536 shdr->bfd_section->flags
537 |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
542 ((*_bfd_error_handler)
543 (_("%B: invalid SHT_GROUP entry"), abfd));
546 dest->shdr = elf_elfsections (abfd)[idx];
553 if (num_group != (unsigned) -1)
557 for (i = 0; i < num_group; i++)
559 Elf_Internal_Shdr *shdr = elf_tdata (abfd)->group_sect_ptr[i];
560 Elf_Internal_Group *idx = (Elf_Internal_Group *) shdr->contents;
561 unsigned int n_elt = shdr->sh_size / 4;
563 /* Look through this group's sections to see if current
564 section is a member. */
566 if ((++idx)->shdr == hdr)
570 /* We are a member of this group. Go looking through
571 other members to see if any others are linked via
573 idx = (Elf_Internal_Group *) shdr->contents;
574 n_elt = shdr->sh_size / 4;
576 if ((s = (++idx)->shdr->bfd_section) != NULL
577 && elf_next_in_group (s) != NULL)
581 /* Snarf the group name from other member, and
582 insert current section in circular list. */
583 elf_group_name (newsect) = elf_group_name (s);
584 elf_next_in_group (newsect) = elf_next_in_group (s);
585 elf_next_in_group (s) = newsect;
591 gname = group_signature (abfd, shdr);
594 elf_group_name (newsect) = gname;
596 /* Start a circular list with one element. */
597 elf_next_in_group (newsect) = newsect;
600 /* If the group section has been created, point to the
602 if (shdr->bfd_section != NULL)
603 elf_next_in_group (shdr->bfd_section) = newsect;
611 if (elf_group_name (newsect) == NULL)
613 (*_bfd_error_handler) (_("%B: no group info for section %A"),
620 _bfd_elf_setup_group_pointers (bfd *abfd)
623 unsigned int num_group = elf_tdata (abfd)->num_group;
624 bfd_boolean result = TRUE;
626 if (num_group == (unsigned) -1)
629 for (i = 0; i < num_group; i++)
631 Elf_Internal_Shdr *shdr = elf_tdata (abfd)->group_sect_ptr[i];
632 Elf_Internal_Group *idx = (Elf_Internal_Group *) shdr->contents;
633 unsigned int n_elt = shdr->sh_size / 4;
636 if ((++idx)->shdr->bfd_section)
637 elf_sec_group (idx->shdr->bfd_section) = shdr->bfd_section;
638 else if (idx->shdr->sh_type == SHT_RELA
639 || idx->shdr->sh_type == SHT_REL)
640 /* We won't include relocation sections in section groups in
641 output object files. We adjust the group section size here
642 so that relocatable link will work correctly when
643 relocation sections are in section group in input object
645 shdr->bfd_section->size -= 4;
648 /* There are some unknown sections in the group. */
649 (*_bfd_error_handler)
650 (_("%B: unknown [%d] section `%s' in group [%s]"),
652 (unsigned int) idx->shdr->sh_type,
653 bfd_elf_string_from_elf_section (abfd,
654 (elf_elfheader (abfd)
657 shdr->bfd_section->name);
665 bfd_elf_is_group_section (bfd *abfd ATTRIBUTE_UNUSED, const asection *sec)
667 return elf_next_in_group (sec) != NULL;
670 /* Make a BFD section from an ELF section. We store a pointer to the
671 BFD section in the bfd_section field of the header. */
674 _bfd_elf_make_section_from_shdr (bfd *abfd,
675 Elf_Internal_Shdr *hdr,
680 const struct elf_backend_data *bed;
682 if (hdr->bfd_section != NULL)
684 BFD_ASSERT (strcmp (name,
685 bfd_get_section_name (abfd, hdr->bfd_section)) == 0);
689 newsect = bfd_make_section_anyway (abfd, name);
693 hdr->bfd_section = newsect;
694 elf_section_data (newsect)->this_hdr = *hdr;
696 /* Always use the real type/flags. */
697 elf_section_type (newsect) = hdr->sh_type;
698 elf_section_flags (newsect) = hdr->sh_flags;
700 newsect->filepos = hdr->sh_offset;
702 if (! bfd_set_section_vma (abfd, newsect, hdr->sh_addr)
703 || ! bfd_set_section_size (abfd, newsect, hdr->sh_size)
704 || ! bfd_set_section_alignment (abfd, newsect,
705 bfd_log2 ((bfd_vma) hdr->sh_addralign)))
708 flags = SEC_NO_FLAGS;
709 if (hdr->sh_type != SHT_NOBITS)
710 flags |= SEC_HAS_CONTENTS;
711 if (hdr->sh_type == SHT_GROUP)
712 flags |= SEC_GROUP | SEC_EXCLUDE;
713 if ((hdr->sh_flags & SHF_ALLOC) != 0)
716 if (hdr->sh_type != SHT_NOBITS)
719 if ((hdr->sh_flags & SHF_WRITE) == 0)
720 flags |= SEC_READONLY;
721 if ((hdr->sh_flags & SHF_EXECINSTR) != 0)
723 else if ((flags & SEC_LOAD) != 0)
725 if ((hdr->sh_flags & SHF_MERGE) != 0)
728 newsect->entsize = hdr->sh_entsize;
729 if ((hdr->sh_flags & SHF_STRINGS) != 0)
730 flags |= SEC_STRINGS;
732 if (hdr->sh_flags & SHF_GROUP)
733 if (!setup_group (abfd, hdr, newsect))
735 if ((hdr->sh_flags & SHF_TLS) != 0)
736 flags |= SEC_THREAD_LOCAL;
738 /* The debugging sections appear to be recognized only by name, not
741 static const char *debug_sec_names [] =
750 for (i = ARRAY_SIZE (debug_sec_names); i--;)
751 if (strncmp (name, debug_sec_names[i], strlen (debug_sec_names[i])) == 0)
755 flags |= SEC_DEBUGGING;
758 /* As a GNU extension, if the name begins with .gnu.linkonce, we
759 only link a single copy of the section. This is used to support
760 g++. g++ will emit each template expansion in its own section.
761 The symbols will be defined as weak, so that multiple definitions
762 are permitted. The GNU linker extension is to actually discard
763 all but one of the sections. */
764 if (strncmp (name, ".gnu.linkonce", sizeof ".gnu.linkonce" - 1) == 0
765 && elf_next_in_group (newsect) == NULL)
766 flags |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
768 bed = get_elf_backend_data (abfd);
769 if (bed->elf_backend_section_flags)
770 if (! bed->elf_backend_section_flags (&flags, hdr))
773 if (! bfd_set_section_flags (abfd, newsect, flags))
776 if ((flags & SEC_ALLOC) != 0)
778 Elf_Internal_Phdr *phdr;
781 /* Look through the phdrs to see if we need to adjust the lma.
782 If all the p_paddr fields are zero, we ignore them, since
783 some ELF linkers produce such output. */
784 phdr = elf_tdata (abfd)->phdr;
785 for (i = 0; i < elf_elfheader (abfd)->e_phnum; i++, phdr++)
787 if (phdr->p_paddr != 0)
790 if (i < elf_elfheader (abfd)->e_phnum)
792 phdr = elf_tdata (abfd)->phdr;
793 for (i = 0; i < elf_elfheader (abfd)->e_phnum; i++, phdr++)
795 /* This section is part of this segment if its file
796 offset plus size lies within the segment's memory
797 span and, if the section is loaded, the extent of the
798 loaded data lies within the extent of the segment.
800 Note - we used to check the p_paddr field as well, and
801 refuse to set the LMA if it was 0. This is wrong
802 though, as a perfectly valid initialised segment can
803 have a p_paddr of zero. Some architectures, eg ARM,
804 place special significance on the address 0 and
805 executables need to be able to have a segment which
806 covers this address. */
807 if (phdr->p_type == PT_LOAD
808 && (bfd_vma) hdr->sh_offset >= phdr->p_offset
809 && (hdr->sh_offset + hdr->sh_size
810 <= phdr->p_offset + phdr->p_memsz)
811 && ((flags & SEC_LOAD) == 0
812 || (hdr->sh_offset + hdr->sh_size
813 <= phdr->p_offset + phdr->p_filesz)))
815 if ((flags & SEC_LOAD) == 0)
816 newsect->lma = (phdr->p_paddr
817 + hdr->sh_addr - phdr->p_vaddr);
819 /* We used to use the same adjustment for SEC_LOAD
820 sections, but that doesn't work if the segment
821 is packed with code from multiple VMAs.
822 Instead we calculate the section LMA based on
823 the segment LMA. It is assumed that the
824 segment will contain sections with contiguous
825 LMAs, even if the VMAs are not. */
826 newsect->lma = (phdr->p_paddr
827 + hdr->sh_offset - phdr->p_offset);
829 /* With contiguous segments, we can't tell from file
830 offsets whether a section with zero size should
831 be placed at the end of one segment or the
832 beginning of the next. Decide based on vaddr. */
833 if (hdr->sh_addr >= phdr->p_vaddr
834 && (hdr->sh_addr + hdr->sh_size
835 <= phdr->p_vaddr + phdr->p_memsz))
850 struct elf_internal_shdr *bfd_elf_find_section (bfd *abfd, char *name);
853 Helper functions for GDB to locate the string tables.
854 Since BFD hides string tables from callers, GDB needs to use an
855 internal hook to find them. Sun's .stabstr, in particular,
856 isn't even pointed to by the .stab section, so ordinary
857 mechanisms wouldn't work to find it, even if we had some.
860 struct elf_internal_shdr *
861 bfd_elf_find_section (bfd *abfd, char *name)
863 Elf_Internal_Shdr **i_shdrp;
868 i_shdrp = elf_elfsections (abfd);
871 shstrtab = bfd_elf_get_str_section (abfd,
872 elf_elfheader (abfd)->e_shstrndx);
873 if (shstrtab != NULL)
875 max = elf_numsections (abfd);
876 for (i = 1; i < max; i++)
877 if (!strcmp (&shstrtab[i_shdrp[i]->sh_name], name))
884 const char *const bfd_elf_section_type_names[] = {
885 "SHT_NULL", "SHT_PROGBITS", "SHT_SYMTAB", "SHT_STRTAB",
886 "SHT_RELA", "SHT_HASH", "SHT_DYNAMIC", "SHT_NOTE",
887 "SHT_NOBITS", "SHT_REL", "SHT_SHLIB", "SHT_DYNSYM",
890 /* ELF relocs are against symbols. If we are producing relocatable
891 output, and the reloc is against an external symbol, and nothing
892 has given us any additional addend, the resulting reloc will also
893 be against the same symbol. In such a case, we don't want to
894 change anything about the way the reloc is handled, since it will
895 all be done at final link time. Rather than put special case code
896 into bfd_perform_relocation, all the reloc types use this howto
897 function. It just short circuits the reloc if producing
898 relocatable output against an external symbol. */
900 bfd_reloc_status_type
901 bfd_elf_generic_reloc (bfd *abfd ATTRIBUTE_UNUSED,
902 arelent *reloc_entry,
904 void *data ATTRIBUTE_UNUSED,
905 asection *input_section,
907 char **error_message ATTRIBUTE_UNUSED)
909 if (output_bfd != NULL
910 && (symbol->flags & BSF_SECTION_SYM) == 0
911 && (! reloc_entry->howto->partial_inplace
912 || reloc_entry->addend == 0))
914 reloc_entry->address += input_section->output_offset;
918 return bfd_reloc_continue;
921 /* Make sure sec_info_type is cleared if sec_info is cleared too. */
924 merge_sections_remove_hook (bfd *abfd ATTRIBUTE_UNUSED,
927 BFD_ASSERT (sec->sec_info_type == ELF_INFO_TYPE_MERGE);
928 sec->sec_info_type = ELF_INFO_TYPE_NONE;
931 /* Finish SHF_MERGE section merging. */
934 _bfd_elf_merge_sections (bfd *abfd, struct bfd_link_info *info)
939 if (!is_elf_hash_table (info->hash))
942 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link_next)
943 if ((ibfd->flags & DYNAMIC) == 0)
944 for (sec = ibfd->sections; sec != NULL; sec = sec->next)
945 if ((sec->flags & SEC_MERGE) != 0
946 && !bfd_is_abs_section (sec->output_section))
948 struct bfd_elf_section_data *secdata;
950 secdata = elf_section_data (sec);
951 if (! _bfd_add_merge_section (abfd,
952 &elf_hash_table (info)->merge_info,
953 sec, &secdata->sec_info))
955 else if (secdata->sec_info)
956 sec->sec_info_type = ELF_INFO_TYPE_MERGE;
959 if (elf_hash_table (info)->merge_info != NULL)
960 _bfd_merge_sections (abfd, info, elf_hash_table (info)->merge_info,
961 merge_sections_remove_hook);
966 _bfd_elf_link_just_syms (asection *sec, struct bfd_link_info *info)
968 sec->output_section = bfd_abs_section_ptr;
969 sec->output_offset = sec->vma;
970 if (!is_elf_hash_table (info->hash))
973 sec->sec_info_type = ELF_INFO_TYPE_JUST_SYMS;
976 /* Copy the program header and other data from one object module to
980 _bfd_elf_copy_private_bfd_data (bfd *ibfd, bfd *obfd)
982 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
983 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
986 BFD_ASSERT (!elf_flags_init (obfd)
987 || (elf_elfheader (obfd)->e_flags
988 == elf_elfheader (ibfd)->e_flags));
990 elf_gp (obfd) = elf_gp (ibfd);
991 elf_elfheader (obfd)->e_flags = elf_elfheader (ibfd)->e_flags;
992 elf_flags_init (obfd) = TRUE;
996 /* Print out the program headers. */
999 _bfd_elf_print_private_bfd_data (bfd *abfd, void *farg)
1002 Elf_Internal_Phdr *p;
1004 bfd_byte *dynbuf = NULL;
1006 p = elf_tdata (abfd)->phdr;
1011 fprintf (f, _("\nProgram Header:\n"));
1012 c = elf_elfheader (abfd)->e_phnum;
1013 for (i = 0; i < c; i++, p++)
1020 case PT_NULL: pt = "NULL"; break;
1021 case PT_LOAD: pt = "LOAD"; break;
1022 case PT_DYNAMIC: pt = "DYNAMIC"; break;
1023 case PT_INTERP: pt = "INTERP"; break;
1024 case PT_NOTE: pt = "NOTE"; break;
1025 case PT_SHLIB: pt = "SHLIB"; break;
1026 case PT_PHDR: pt = "PHDR"; break;
1027 case PT_TLS: pt = "TLS"; break;
1028 case PT_GNU_EH_FRAME: pt = "EH_FRAME"; break;
1029 case PT_GNU_STACK: pt = "STACK"; break;
1030 case PT_GNU_RELRO: pt = "RELRO"; break;
1031 default: sprintf (buf, "0x%lx", p->p_type); pt = buf; break;
1033 fprintf (f, "%8s off 0x", pt);
1034 bfd_fprintf_vma (abfd, f, p->p_offset);
1035 fprintf (f, " vaddr 0x");
1036 bfd_fprintf_vma (abfd, f, p->p_vaddr);
1037 fprintf (f, " paddr 0x");
1038 bfd_fprintf_vma (abfd, f, p->p_paddr);
1039 fprintf (f, " align 2**%u\n", bfd_log2 (p->p_align));
1040 fprintf (f, " filesz 0x");
1041 bfd_fprintf_vma (abfd, f, p->p_filesz);
1042 fprintf (f, " memsz 0x");
1043 bfd_fprintf_vma (abfd, f, p->p_memsz);
1044 fprintf (f, " flags %c%c%c",
1045 (p->p_flags & PF_R) != 0 ? 'r' : '-',
1046 (p->p_flags & PF_W) != 0 ? 'w' : '-',
1047 (p->p_flags & PF_X) != 0 ? 'x' : '-');
1048 if ((p->p_flags &~ (unsigned) (PF_R | PF_W | PF_X)) != 0)
1049 fprintf (f, " %lx", p->p_flags &~ (unsigned) (PF_R | PF_W | PF_X));
1054 s = bfd_get_section_by_name (abfd, ".dynamic");
1058 unsigned long shlink;
1059 bfd_byte *extdyn, *extdynend;
1061 void (*swap_dyn_in) (bfd *, const void *, Elf_Internal_Dyn *);
1063 fprintf (f, _("\nDynamic Section:\n"));
1065 if (!bfd_malloc_and_get_section (abfd, s, &dynbuf))
1068 elfsec = _bfd_elf_section_from_bfd_section (abfd, s);
1071 shlink = elf_elfsections (abfd)[elfsec]->sh_link;
1073 extdynsize = get_elf_backend_data (abfd)->s->sizeof_dyn;
1074 swap_dyn_in = get_elf_backend_data (abfd)->s->swap_dyn_in;
1077 extdynend = extdyn + s->size;
1078 for (; extdyn < extdynend; extdyn += extdynsize)
1080 Elf_Internal_Dyn dyn;
1083 bfd_boolean stringp;
1085 (*swap_dyn_in) (abfd, extdyn, &dyn);
1087 if (dyn.d_tag == DT_NULL)
1094 sprintf (ab, "0x%lx", (unsigned long) dyn.d_tag);
1098 case DT_NEEDED: name = "NEEDED"; stringp = TRUE; break;
1099 case DT_PLTRELSZ: name = "PLTRELSZ"; break;
1100 case DT_PLTGOT: name = "PLTGOT"; break;
1101 case DT_HASH: name = "HASH"; break;
1102 case DT_STRTAB: name = "STRTAB"; break;
1103 case DT_SYMTAB: name = "SYMTAB"; break;
1104 case DT_RELA: name = "RELA"; break;
1105 case DT_RELASZ: name = "RELASZ"; break;
1106 case DT_RELAENT: name = "RELAENT"; break;
1107 case DT_STRSZ: name = "STRSZ"; break;
1108 case DT_SYMENT: name = "SYMENT"; break;
1109 case DT_INIT: name = "INIT"; break;
1110 case DT_FINI: name = "FINI"; break;
1111 case DT_SONAME: name = "SONAME"; stringp = TRUE; break;
1112 case DT_RPATH: name = "RPATH"; stringp = TRUE; break;
1113 case DT_SYMBOLIC: name = "SYMBOLIC"; break;
1114 case DT_REL: name = "REL"; break;
1115 case DT_RELSZ: name = "RELSZ"; break;
1116 case DT_RELENT: name = "RELENT"; break;
1117 case DT_PLTREL: name = "PLTREL"; break;
1118 case DT_DEBUG: name = "DEBUG"; break;
1119 case DT_TEXTREL: name = "TEXTREL"; break;
1120 case DT_JMPREL: name = "JMPREL"; break;
1121 case DT_BIND_NOW: name = "BIND_NOW"; break;
1122 case DT_INIT_ARRAY: name = "INIT_ARRAY"; break;
1123 case DT_FINI_ARRAY: name = "FINI_ARRAY"; break;
1124 case DT_INIT_ARRAYSZ: name = "INIT_ARRAYSZ"; break;
1125 case DT_FINI_ARRAYSZ: name = "FINI_ARRAYSZ"; break;
1126 case DT_RUNPATH: name = "RUNPATH"; stringp = TRUE; break;
1127 case DT_FLAGS: name = "FLAGS"; break;
1128 case DT_PREINIT_ARRAY: name = "PREINIT_ARRAY"; break;
1129 case DT_PREINIT_ARRAYSZ: name = "PREINIT_ARRAYSZ"; break;
1130 case DT_CHECKSUM: name = "CHECKSUM"; break;
1131 case DT_PLTPADSZ: name = "PLTPADSZ"; break;
1132 case DT_MOVEENT: name = "MOVEENT"; break;
1133 case DT_MOVESZ: name = "MOVESZ"; break;
1134 case DT_FEATURE: name = "FEATURE"; break;
1135 case DT_POSFLAG_1: name = "POSFLAG_1"; break;
1136 case DT_SYMINSZ: name = "SYMINSZ"; break;
1137 case DT_SYMINENT: name = "SYMINENT"; break;
1138 case DT_CONFIG: name = "CONFIG"; stringp = TRUE; break;
1139 case DT_DEPAUDIT: name = "DEPAUDIT"; stringp = TRUE; break;
1140 case DT_AUDIT: name = "AUDIT"; stringp = TRUE; break;
1141 case DT_PLTPAD: name = "PLTPAD"; break;
1142 case DT_MOVETAB: name = "MOVETAB"; break;
1143 case DT_SYMINFO: name = "SYMINFO"; break;
1144 case DT_RELACOUNT: name = "RELACOUNT"; break;
1145 case DT_RELCOUNT: name = "RELCOUNT"; break;
1146 case DT_FLAGS_1: name = "FLAGS_1"; break;
1147 case DT_VERSYM: name = "VERSYM"; break;
1148 case DT_VERDEF: name = "VERDEF"; break;
1149 case DT_VERDEFNUM: name = "VERDEFNUM"; break;
1150 case DT_VERNEED: name = "VERNEED"; break;
1151 case DT_VERNEEDNUM: name = "VERNEEDNUM"; break;
1152 case DT_AUXILIARY: name = "AUXILIARY"; stringp = TRUE; break;
1153 case DT_USED: name = "USED"; break;
1154 case DT_FILTER: name = "FILTER"; stringp = TRUE; break;
1157 fprintf (f, " %-11s ", name);
1159 fprintf (f, "0x%lx", (unsigned long) dyn.d_un.d_val);
1163 unsigned int tagv = dyn.d_un.d_val;
1165 string = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
1168 fprintf (f, "%s", string);
1177 if ((elf_dynverdef (abfd) != 0 && elf_tdata (abfd)->verdef == NULL)
1178 || (elf_dynverref (abfd) != 0 && elf_tdata (abfd)->verref == NULL))
1180 if (! _bfd_elf_slurp_version_tables (abfd, FALSE))
1184 if (elf_dynverdef (abfd) != 0)
1186 Elf_Internal_Verdef *t;
1188 fprintf (f, _("\nVersion definitions:\n"));
1189 for (t = elf_tdata (abfd)->verdef; t != NULL; t = t->vd_nextdef)
1191 fprintf (f, "%d 0x%2.2x 0x%8.8lx %s\n", t->vd_ndx,
1192 t->vd_flags, t->vd_hash, t->vd_nodename);
1193 if (t->vd_auxptr->vda_nextptr != NULL)
1195 Elf_Internal_Verdaux *a;
1198 for (a = t->vd_auxptr->vda_nextptr;
1201 fprintf (f, "%s ", a->vda_nodename);
1207 if (elf_dynverref (abfd) != 0)
1209 Elf_Internal_Verneed *t;
1211 fprintf (f, _("\nVersion References:\n"));
1212 for (t = elf_tdata (abfd)->verref; t != NULL; t = t->vn_nextref)
1214 Elf_Internal_Vernaux *a;
1216 fprintf (f, _(" required from %s:\n"), t->vn_filename);
1217 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
1218 fprintf (f, " 0x%8.8lx 0x%2.2x %2.2d %s\n", a->vna_hash,
1219 a->vna_flags, a->vna_other, a->vna_nodename);
1231 /* Display ELF-specific fields of a symbol. */
1234 bfd_elf_print_symbol (bfd *abfd,
1237 bfd_print_symbol_type how)
1242 case bfd_print_symbol_name:
1243 fprintf (file, "%s", symbol->name);
1245 case bfd_print_symbol_more:
1246 fprintf (file, "elf ");
1247 bfd_fprintf_vma (abfd, file, symbol->value);
1248 fprintf (file, " %lx", (long) symbol->flags);
1250 case bfd_print_symbol_all:
1252 const char *section_name;
1253 const char *name = NULL;
1254 const struct elf_backend_data *bed;
1255 unsigned char st_other;
1258 section_name = symbol->section ? symbol->section->name : "(*none*)";
1260 bed = get_elf_backend_data (abfd);
1261 if (bed->elf_backend_print_symbol_all)
1262 name = (*bed->elf_backend_print_symbol_all) (abfd, filep, symbol);
1266 name = symbol->name;
1267 bfd_print_symbol_vandf (abfd, file, symbol);
1270 fprintf (file, " %s\t", section_name);
1271 /* Print the "other" value for a symbol. For common symbols,
1272 we've already printed the size; now print the alignment.
1273 For other symbols, we have no specified alignment, and
1274 we've printed the address; now print the size. */
1275 if (bfd_is_com_section (symbol->section))
1276 val = ((elf_symbol_type *) symbol)->internal_elf_sym.st_value;
1278 val = ((elf_symbol_type *) symbol)->internal_elf_sym.st_size;
1279 bfd_fprintf_vma (abfd, file, val);
1281 /* If we have version information, print it. */
1282 if (elf_tdata (abfd)->dynversym_section != 0
1283 && (elf_tdata (abfd)->dynverdef_section != 0
1284 || elf_tdata (abfd)->dynverref_section != 0))
1286 unsigned int vernum;
1287 const char *version_string;
1289 vernum = ((elf_symbol_type *) symbol)->version & VERSYM_VERSION;
1292 version_string = "";
1293 else if (vernum == 1)
1294 version_string = "Base";
1295 else if (vernum <= elf_tdata (abfd)->cverdefs)
1297 elf_tdata (abfd)->verdef[vernum - 1].vd_nodename;
1300 Elf_Internal_Verneed *t;
1302 version_string = "";
1303 for (t = elf_tdata (abfd)->verref;
1307 Elf_Internal_Vernaux *a;
1309 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
1311 if (a->vna_other == vernum)
1313 version_string = a->vna_nodename;
1320 if ((((elf_symbol_type *) symbol)->version & VERSYM_HIDDEN) == 0)
1321 fprintf (file, " %-11s", version_string);
1326 fprintf (file, " (%s)", version_string);
1327 for (i = 10 - strlen (version_string); i > 0; --i)
1332 /* If the st_other field is not zero, print it. */
1333 st_other = ((elf_symbol_type *) symbol)->internal_elf_sym.st_other;
1338 case STV_INTERNAL: fprintf (file, " .internal"); break;
1339 case STV_HIDDEN: fprintf (file, " .hidden"); break;
1340 case STV_PROTECTED: fprintf (file, " .protected"); break;
1342 /* Some other non-defined flags are also present, so print
1344 fprintf (file, " 0x%02x", (unsigned int) st_other);
1347 fprintf (file, " %s", name);
1353 /* Create an entry in an ELF linker hash table. */
1355 struct bfd_hash_entry *
1356 _bfd_elf_link_hash_newfunc (struct bfd_hash_entry *entry,
1357 struct bfd_hash_table *table,
1360 /* Allocate the structure if it has not already been allocated by a
1364 entry = bfd_hash_allocate (table, sizeof (struct elf_link_hash_entry));
1369 /* Call the allocation method of the superclass. */
1370 entry = _bfd_link_hash_newfunc (entry, table, string);
1373 struct elf_link_hash_entry *ret = (struct elf_link_hash_entry *) entry;
1374 struct elf_link_hash_table *htab = (struct elf_link_hash_table *) table;
1376 /* Set local fields. */
1379 ret->got = ret->plt = htab->init_refcount;
1380 memset (&ret->size, 0, (sizeof (struct elf_link_hash_entry)
1381 - offsetof (struct elf_link_hash_entry, size)));
1382 /* Assume that we have been called by a non-ELF symbol reader.
1383 This flag is then reset by the code which reads an ELF input
1384 file. This ensures that a symbol created by a non-ELF symbol
1385 reader will have the flag set correctly. */
1392 /* Copy data from an indirect symbol to its direct symbol, hiding the
1393 old indirect symbol. Also used for copying flags to a weakdef. */
1396 _bfd_elf_link_hash_copy_indirect (const struct elf_backend_data *bed,
1397 struct elf_link_hash_entry *dir,
1398 struct elf_link_hash_entry *ind)
1401 bfd_signed_vma lowest_valid = bed->can_refcount;
1403 /* Copy down any references that we may have already seen to the
1404 symbol which just became indirect. */
1406 dir->ref_dynamic |= ind->ref_dynamic;
1407 dir->ref_regular |= ind->ref_regular;
1408 dir->ref_regular_nonweak |= ind->ref_regular_nonweak;
1409 dir->non_got_ref |= ind->non_got_ref;
1410 dir->needs_plt |= ind->needs_plt;
1411 dir->pointer_equality_needed |= ind->pointer_equality_needed;
1413 if (ind->root.type != bfd_link_hash_indirect)
1416 /* Copy over the global and procedure linkage table refcount entries.
1417 These may have been already set up by a check_relocs routine. */
1418 tmp = dir->got.refcount;
1419 if (tmp < lowest_valid)
1421 dir->got.refcount = ind->got.refcount;
1422 ind->got.refcount = tmp;
1425 BFD_ASSERT (ind->got.refcount < lowest_valid);
1427 tmp = dir->plt.refcount;
1428 if (tmp < lowest_valid)
1430 dir->plt.refcount = ind->plt.refcount;
1431 ind->plt.refcount = tmp;
1434 BFD_ASSERT (ind->plt.refcount < lowest_valid);
1436 if (dir->dynindx == -1)
1438 dir->dynindx = ind->dynindx;
1439 dir->dynstr_index = ind->dynstr_index;
1441 ind->dynstr_index = 0;
1444 BFD_ASSERT (ind->dynindx == -1);
1448 _bfd_elf_link_hash_hide_symbol (struct bfd_link_info *info,
1449 struct elf_link_hash_entry *h,
1450 bfd_boolean force_local)
1452 h->plt = elf_hash_table (info)->init_offset;
1456 h->forced_local = 1;
1457 if (h->dynindx != -1)
1460 _bfd_elf_strtab_delref (elf_hash_table (info)->dynstr,
1466 /* Initialize an ELF linker hash table. */
1469 _bfd_elf_link_hash_table_init
1470 (struct elf_link_hash_table *table,
1472 struct bfd_hash_entry *(*newfunc) (struct bfd_hash_entry *,
1473 struct bfd_hash_table *,
1478 table->dynamic_sections_created = FALSE;
1479 table->dynobj = NULL;
1480 /* Make sure can_refcount is extended to the width and signedness of
1481 init_refcount before we subtract one from it. */
1482 table->init_refcount.refcount = get_elf_backend_data (abfd)->can_refcount;
1483 table->init_refcount.refcount -= 1;
1484 table->init_offset.offset = -(bfd_vma) 1;
1485 /* The first dynamic symbol is a dummy. */
1486 table->dynsymcount = 1;
1487 table->dynstr = NULL;
1488 table->bucketcount = 0;
1489 table->needed = NULL;
1491 table->merge_info = NULL;
1492 memset (&table->stab_info, 0, sizeof (table->stab_info));
1493 memset (&table->eh_info, 0, sizeof (table->eh_info));
1494 table->dynlocal = NULL;
1495 table->runpath = NULL;
1496 table->tls_sec = NULL;
1497 table->tls_size = 0;
1498 table->loaded = NULL;
1499 table->is_relocatable_executable = FALSE;
1501 ret = _bfd_link_hash_table_init (&table->root, abfd, newfunc);
1502 table->root.type = bfd_link_elf_hash_table;
1507 /* Create an ELF linker hash table. */
1509 struct bfd_link_hash_table *
1510 _bfd_elf_link_hash_table_create (bfd *abfd)
1512 struct elf_link_hash_table *ret;
1513 bfd_size_type amt = sizeof (struct elf_link_hash_table);
1515 ret = bfd_malloc (amt);
1519 if (! _bfd_elf_link_hash_table_init (ret, abfd, _bfd_elf_link_hash_newfunc))
1528 /* This is a hook for the ELF emulation code in the generic linker to
1529 tell the backend linker what file name to use for the DT_NEEDED
1530 entry for a dynamic object. */
1533 bfd_elf_set_dt_needed_name (bfd *abfd, const char *name)
1535 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour
1536 && bfd_get_format (abfd) == bfd_object)
1537 elf_dt_name (abfd) = name;
1541 bfd_elf_get_dyn_lib_class (bfd *abfd)
1544 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour
1545 && bfd_get_format (abfd) == bfd_object)
1546 lib_class = elf_dyn_lib_class (abfd);
1553 bfd_elf_set_dyn_lib_class (bfd *abfd, int lib_class)
1555 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour
1556 && bfd_get_format (abfd) == bfd_object)
1557 elf_dyn_lib_class (abfd) = lib_class;
1560 /* Get the list of DT_NEEDED entries for a link. This is a hook for
1561 the linker ELF emulation code. */
1563 struct bfd_link_needed_list *
1564 bfd_elf_get_needed_list (bfd *abfd ATTRIBUTE_UNUSED,
1565 struct bfd_link_info *info)
1567 if (! is_elf_hash_table (info->hash))
1569 return elf_hash_table (info)->needed;
1572 /* Get the list of DT_RPATH/DT_RUNPATH entries for a link. This is a
1573 hook for the linker ELF emulation code. */
1575 struct bfd_link_needed_list *
1576 bfd_elf_get_runpath_list (bfd *abfd ATTRIBUTE_UNUSED,
1577 struct bfd_link_info *info)
1579 if (! is_elf_hash_table (info->hash))
1581 return elf_hash_table (info)->runpath;
1584 /* Get the name actually used for a dynamic object for a link. This
1585 is the SONAME entry if there is one. Otherwise, it is the string
1586 passed to bfd_elf_set_dt_needed_name, or it is the filename. */
1589 bfd_elf_get_dt_soname (bfd *abfd)
1591 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour
1592 && bfd_get_format (abfd) == bfd_object)
1593 return elf_dt_name (abfd);
1597 /* Get the list of DT_NEEDED entries from a BFD. This is a hook for
1598 the ELF linker emulation code. */
1601 bfd_elf_get_bfd_needed_list (bfd *abfd,
1602 struct bfd_link_needed_list **pneeded)
1605 bfd_byte *dynbuf = NULL;
1607 unsigned long shlink;
1608 bfd_byte *extdyn, *extdynend;
1610 void (*swap_dyn_in) (bfd *, const void *, Elf_Internal_Dyn *);
1614 if (bfd_get_flavour (abfd) != bfd_target_elf_flavour
1615 || bfd_get_format (abfd) != bfd_object)
1618 s = bfd_get_section_by_name (abfd, ".dynamic");
1619 if (s == NULL || s->size == 0)
1622 if (!bfd_malloc_and_get_section (abfd, s, &dynbuf))
1625 elfsec = _bfd_elf_section_from_bfd_section (abfd, s);
1629 shlink = elf_elfsections (abfd)[elfsec]->sh_link;
1631 extdynsize = get_elf_backend_data (abfd)->s->sizeof_dyn;
1632 swap_dyn_in = get_elf_backend_data (abfd)->s->swap_dyn_in;
1635 extdynend = extdyn + s->size;
1636 for (; extdyn < extdynend; extdyn += extdynsize)
1638 Elf_Internal_Dyn dyn;
1640 (*swap_dyn_in) (abfd, extdyn, &dyn);
1642 if (dyn.d_tag == DT_NULL)
1645 if (dyn.d_tag == DT_NEEDED)
1648 struct bfd_link_needed_list *l;
1649 unsigned int tagv = dyn.d_un.d_val;
1652 string = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
1657 l = bfd_alloc (abfd, amt);
1678 /* Allocate an ELF string table--force the first byte to be zero. */
1680 struct bfd_strtab_hash *
1681 _bfd_elf_stringtab_init (void)
1683 struct bfd_strtab_hash *ret;
1685 ret = _bfd_stringtab_init ();
1690 loc = _bfd_stringtab_add (ret, "", TRUE, FALSE);
1691 BFD_ASSERT (loc == 0 || loc == (bfd_size_type) -1);
1692 if (loc == (bfd_size_type) -1)
1694 _bfd_stringtab_free (ret);
1701 /* ELF .o/exec file reading */
1703 /* Create a new bfd section from an ELF section header. */
1706 bfd_section_from_shdr (bfd *abfd, unsigned int shindex)
1708 Elf_Internal_Shdr *hdr = elf_elfsections (abfd)[shindex];
1709 Elf_Internal_Ehdr *ehdr = elf_elfheader (abfd);
1710 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
1713 name = bfd_elf_string_from_elf_section (abfd,
1714 elf_elfheader (abfd)->e_shstrndx,
1717 switch (hdr->sh_type)
1720 /* Inactive section. Throw it away. */
1723 case SHT_PROGBITS: /* Normal section with contents. */
1724 case SHT_NOBITS: /* .bss section. */
1725 case SHT_HASH: /* .hash section. */
1726 case SHT_NOTE: /* .note section. */
1727 case SHT_INIT_ARRAY: /* .init_array section. */
1728 case SHT_FINI_ARRAY: /* .fini_array section. */
1729 case SHT_PREINIT_ARRAY: /* .preinit_array section. */
1730 case SHT_GNU_LIBLIST: /* .gnu.liblist section. */
1731 return _bfd_elf_make_section_from_shdr (abfd, hdr, name);
1733 case SHT_DYNAMIC: /* Dynamic linking information. */
1734 if (! _bfd_elf_make_section_from_shdr (abfd, hdr, name))
1736 if (elf_elfsections (abfd)[hdr->sh_link]->sh_type != SHT_STRTAB)
1738 Elf_Internal_Shdr *dynsymhdr;
1740 /* The shared libraries distributed with hpux11 have a bogus
1741 sh_link field for the ".dynamic" section. Find the
1742 string table for the ".dynsym" section instead. */
1743 if (elf_dynsymtab (abfd) != 0)
1745 dynsymhdr = elf_elfsections (abfd)[elf_dynsymtab (abfd)];
1746 hdr->sh_link = dynsymhdr->sh_link;
1750 unsigned int i, num_sec;
1752 num_sec = elf_numsections (abfd);
1753 for (i = 1; i < num_sec; i++)
1755 dynsymhdr = elf_elfsections (abfd)[i];
1756 if (dynsymhdr->sh_type == SHT_DYNSYM)
1758 hdr->sh_link = dynsymhdr->sh_link;
1766 case SHT_SYMTAB: /* A symbol table */
1767 if (elf_onesymtab (abfd) == shindex)
1770 BFD_ASSERT (hdr->sh_entsize == bed->s->sizeof_sym);
1771 BFD_ASSERT (elf_onesymtab (abfd) == 0);
1772 elf_onesymtab (abfd) = shindex;
1773 elf_tdata (abfd)->symtab_hdr = *hdr;
1774 elf_elfsections (abfd)[shindex] = hdr = &elf_tdata (abfd)->symtab_hdr;
1775 abfd->flags |= HAS_SYMS;
1777 /* Sometimes a shared object will map in the symbol table. If
1778 SHF_ALLOC is set, and this is a shared object, then we also
1779 treat this section as a BFD section. We can not base the
1780 decision purely on SHF_ALLOC, because that flag is sometimes
1781 set in a relocatable object file, which would confuse the
1783 if ((hdr->sh_flags & SHF_ALLOC) != 0
1784 && (abfd->flags & DYNAMIC) != 0
1785 && ! _bfd_elf_make_section_from_shdr (abfd, hdr, name))
1788 /* Go looking for SHT_SYMTAB_SHNDX too, since if there is one we
1789 can't read symbols without that section loaded as well. It
1790 is most likely specified by the next section header. */
1791 if (elf_elfsections (abfd)[elf_symtab_shndx (abfd)]->sh_link != shindex)
1793 unsigned int i, num_sec;
1795 num_sec = elf_numsections (abfd);
1796 for (i = shindex + 1; i < num_sec; i++)
1798 Elf_Internal_Shdr *hdr2 = elf_elfsections (abfd)[i];
1799 if (hdr2->sh_type == SHT_SYMTAB_SHNDX
1800 && hdr2->sh_link == shindex)
1804 for (i = 1; i < shindex; i++)
1806 Elf_Internal_Shdr *hdr2 = elf_elfsections (abfd)[i];
1807 if (hdr2->sh_type == SHT_SYMTAB_SHNDX
1808 && hdr2->sh_link == shindex)
1812 return bfd_section_from_shdr (abfd, i);
1816 case SHT_DYNSYM: /* A dynamic symbol table */
1817 if (elf_dynsymtab (abfd) == shindex)
1820 BFD_ASSERT (hdr->sh_entsize == bed->s->sizeof_sym);
1821 BFD_ASSERT (elf_dynsymtab (abfd) == 0);
1822 elf_dynsymtab (abfd) = shindex;
1823 elf_tdata (abfd)->dynsymtab_hdr = *hdr;
1824 elf_elfsections (abfd)[shindex] = hdr = &elf_tdata (abfd)->dynsymtab_hdr;
1825 abfd->flags |= HAS_SYMS;
1827 /* Besides being a symbol table, we also treat this as a regular
1828 section, so that objcopy can handle it. */
1829 return _bfd_elf_make_section_from_shdr (abfd, hdr, name);
1831 case SHT_SYMTAB_SHNDX: /* Symbol section indices when >64k sections */
1832 if (elf_symtab_shndx (abfd) == shindex)
1835 BFD_ASSERT (elf_symtab_shndx (abfd) == 0);
1836 elf_symtab_shndx (abfd) = shindex;
1837 elf_tdata (abfd)->symtab_shndx_hdr = *hdr;
1838 elf_elfsections (abfd)[shindex] = &elf_tdata (abfd)->symtab_shndx_hdr;
1841 case SHT_STRTAB: /* A string table */
1842 if (hdr->bfd_section != NULL)
1844 if (ehdr->e_shstrndx == shindex)
1846 elf_tdata (abfd)->shstrtab_hdr = *hdr;
1847 elf_elfsections (abfd)[shindex] = &elf_tdata (abfd)->shstrtab_hdr;
1850 if (elf_elfsections (abfd)[elf_onesymtab (abfd)]->sh_link == shindex)
1853 elf_tdata (abfd)->strtab_hdr = *hdr;
1854 elf_elfsections (abfd)[shindex] = &elf_tdata (abfd)->strtab_hdr;
1857 if (elf_elfsections (abfd)[elf_dynsymtab (abfd)]->sh_link == shindex)
1860 elf_tdata (abfd)->dynstrtab_hdr = *hdr;
1861 hdr = &elf_tdata (abfd)->dynstrtab_hdr;
1862 elf_elfsections (abfd)[shindex] = hdr;
1863 /* We also treat this as a regular section, so that objcopy
1865 return _bfd_elf_make_section_from_shdr (abfd, hdr, name);
1868 /* If the string table isn't one of the above, then treat it as a
1869 regular section. We need to scan all the headers to be sure,
1870 just in case this strtab section appeared before the above. */
1871 if (elf_onesymtab (abfd) == 0 || elf_dynsymtab (abfd) == 0)
1873 unsigned int i, num_sec;
1875 num_sec = elf_numsections (abfd);
1876 for (i = 1; i < num_sec; i++)
1878 Elf_Internal_Shdr *hdr2 = elf_elfsections (abfd)[i];
1879 if (hdr2->sh_link == shindex)
1881 if (! bfd_section_from_shdr (abfd, i))
1883 if (elf_onesymtab (abfd) == i)
1885 if (elf_dynsymtab (abfd) == i)
1886 goto dynsymtab_strtab;
1890 return _bfd_elf_make_section_from_shdr (abfd, hdr, name);
1894 /* *These* do a lot of work -- but build no sections! */
1896 asection *target_sect;
1897 Elf_Internal_Shdr *hdr2;
1898 unsigned int num_sec = elf_numsections (abfd);
1900 /* Check for a bogus link to avoid crashing. */
1901 if ((hdr->sh_link >= SHN_LORESERVE && hdr->sh_link <= SHN_HIRESERVE)
1902 || hdr->sh_link >= num_sec)
1904 ((*_bfd_error_handler)
1905 (_("%B: invalid link %lu for reloc section %s (index %u)"),
1906 abfd, hdr->sh_link, name, shindex));
1907 return _bfd_elf_make_section_from_shdr (abfd, hdr, name);
1910 /* For some incomprehensible reason Oracle distributes
1911 libraries for Solaris in which some of the objects have
1912 bogus sh_link fields. It would be nice if we could just
1913 reject them, but, unfortunately, some people need to use
1914 them. We scan through the section headers; if we find only
1915 one suitable symbol table, we clobber the sh_link to point
1916 to it. I hope this doesn't break anything. */
1917 if (elf_elfsections (abfd)[hdr->sh_link]->sh_type != SHT_SYMTAB
1918 && elf_elfsections (abfd)[hdr->sh_link]->sh_type != SHT_DYNSYM)
1924 for (scan = 1; scan < num_sec; scan++)
1926 if (elf_elfsections (abfd)[scan]->sh_type == SHT_SYMTAB
1927 || elf_elfsections (abfd)[scan]->sh_type == SHT_DYNSYM)
1938 hdr->sh_link = found;
1941 /* Get the symbol table. */
1942 if ((elf_elfsections (abfd)[hdr->sh_link]->sh_type == SHT_SYMTAB
1943 || elf_elfsections (abfd)[hdr->sh_link]->sh_type == SHT_DYNSYM)
1944 && ! bfd_section_from_shdr (abfd, hdr->sh_link))
1947 /* If this reloc section does not use the main symbol table we
1948 don't treat it as a reloc section. BFD can't adequately
1949 represent such a section, so at least for now, we don't
1950 try. We just present it as a normal section. We also
1951 can't use it as a reloc section if it points to the null
1953 if (hdr->sh_link != elf_onesymtab (abfd) || hdr->sh_info == SHN_UNDEF)
1954 return _bfd_elf_make_section_from_shdr (abfd, hdr, name);
1956 if (! bfd_section_from_shdr (abfd, hdr->sh_info))
1958 target_sect = bfd_section_from_elf_index (abfd, hdr->sh_info);
1959 if (target_sect == NULL)
1962 if ((target_sect->flags & SEC_RELOC) == 0
1963 || target_sect->reloc_count == 0)
1964 hdr2 = &elf_section_data (target_sect)->rel_hdr;
1968 BFD_ASSERT (elf_section_data (target_sect)->rel_hdr2 == NULL);
1969 amt = sizeof (*hdr2);
1970 hdr2 = bfd_alloc (abfd, amt);
1971 elf_section_data (target_sect)->rel_hdr2 = hdr2;
1974 elf_elfsections (abfd)[shindex] = hdr2;
1975 target_sect->reloc_count += NUM_SHDR_ENTRIES (hdr);
1976 target_sect->flags |= SEC_RELOC;
1977 target_sect->relocation = NULL;
1978 target_sect->rel_filepos = hdr->sh_offset;
1979 /* In the section to which the relocations apply, mark whether
1980 its relocations are of the REL or RELA variety. */
1981 if (hdr->sh_size != 0)
1982 target_sect->use_rela_p = hdr->sh_type == SHT_RELA;
1983 abfd->flags |= HAS_RELOC;
1988 case SHT_GNU_verdef:
1989 elf_dynverdef (abfd) = shindex;
1990 elf_tdata (abfd)->dynverdef_hdr = *hdr;
1991 return _bfd_elf_make_section_from_shdr (abfd, hdr, name);
1994 case SHT_GNU_versym:
1995 elf_dynversym (abfd) = shindex;
1996 elf_tdata (abfd)->dynversym_hdr = *hdr;
1997 return _bfd_elf_make_section_from_shdr (abfd, hdr, name);
2000 case SHT_GNU_verneed:
2001 elf_dynverref (abfd) = shindex;
2002 elf_tdata (abfd)->dynverref_hdr = *hdr;
2003 return _bfd_elf_make_section_from_shdr (abfd, hdr, name);
2010 /* We need a BFD section for objcopy and relocatable linking,
2011 and it's handy to have the signature available as the section
2013 name = group_signature (abfd, hdr);
2016 if (!_bfd_elf_make_section_from_shdr (abfd, hdr, name))
2018 if (hdr->contents != NULL)
2020 Elf_Internal_Group *idx = (Elf_Internal_Group *) hdr->contents;
2021 unsigned int n_elt = hdr->sh_size / 4;
2024 if (idx->flags & GRP_COMDAT)
2025 hdr->bfd_section->flags
2026 |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
2028 /* We try to keep the same section order as it comes in. */
2030 while (--n_elt != 0)
2031 if ((s = (--idx)->shdr->bfd_section) != NULL
2032 && elf_next_in_group (s) != NULL)
2034 elf_next_in_group (hdr->bfd_section) = s;
2041 /* Check for any processor-specific section types. */
2042 return bed->elf_backend_section_from_shdr (abfd, hdr, name);
2048 /* Return the section for the local symbol specified by ABFD, R_SYMNDX.
2049 Return SEC for sections that have no elf section, and NULL on error. */
2052 bfd_section_from_r_symndx (bfd *abfd,
2053 struct sym_sec_cache *cache,
2055 unsigned long r_symndx)
2057 Elf_Internal_Shdr *symtab_hdr;
2058 unsigned char esym[sizeof (Elf64_External_Sym)];
2059 Elf_External_Sym_Shndx eshndx;
2060 Elf_Internal_Sym isym;
2061 unsigned int ent = r_symndx % LOCAL_SYM_CACHE_SIZE;
2063 if (cache->abfd == abfd && cache->indx[ent] == r_symndx)
2064 return cache->sec[ent];
2066 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
2067 if (bfd_elf_get_elf_syms (abfd, symtab_hdr, 1, r_symndx,
2068 &isym, esym, &eshndx) == NULL)
2071 if (cache->abfd != abfd)
2073 memset (cache->indx, -1, sizeof (cache->indx));
2076 cache->indx[ent] = r_symndx;
2077 cache->sec[ent] = sec;
2078 if ((isym.st_shndx != SHN_UNDEF && isym.st_shndx < SHN_LORESERVE)
2079 || isym.st_shndx > SHN_HIRESERVE)
2082 s = bfd_section_from_elf_index (abfd, isym.st_shndx);
2084 cache->sec[ent] = s;
2086 return cache->sec[ent];
2089 /* Given an ELF section number, retrieve the corresponding BFD
2093 bfd_section_from_elf_index (bfd *abfd, unsigned int index)
2095 if (index >= elf_numsections (abfd))
2097 return elf_elfsections (abfd)[index]->bfd_section;
2100 static struct bfd_elf_special_section const special_sections[] =
2102 { ".bss", 4, -2, SHT_NOBITS, SHF_ALLOC + SHF_WRITE },
2103 { ".gnu.linkonce.b",15, -2, SHT_NOBITS, SHF_ALLOC + SHF_WRITE },
2104 { ".comment", 8, 0, SHT_PROGBITS, 0 },
2105 { ".data", 5, -2, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
2106 { ".data1", 6, 0, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
2107 { ".debug", 6, 0, SHT_PROGBITS, 0 },
2108 { ".fini", 5, 0, SHT_PROGBITS, SHF_ALLOC + SHF_EXECINSTR },
2109 { ".init", 5, 0, SHT_PROGBITS, SHF_ALLOC + SHF_EXECINSTR },
2110 { ".line", 5, 0, SHT_PROGBITS, 0 },
2111 { ".rodata", 7, -2, SHT_PROGBITS, SHF_ALLOC },
2112 { ".rodata1", 8, 0, SHT_PROGBITS, SHF_ALLOC },
2113 { ".tbss", 5, -2, SHT_NOBITS, SHF_ALLOC + SHF_WRITE + SHF_TLS },
2114 { ".tdata", 6, -2, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE + SHF_TLS },
2115 { ".text", 5, -2, SHT_PROGBITS, SHF_ALLOC + SHF_EXECINSTR },
2116 { ".init_array", 11, 0, SHT_INIT_ARRAY, SHF_ALLOC + SHF_WRITE },
2117 { ".fini_array", 11, 0, SHT_FINI_ARRAY, SHF_ALLOC + SHF_WRITE },
2118 { ".preinit_array", 14, 0, SHT_PREINIT_ARRAY, SHF_ALLOC + SHF_WRITE },
2119 { ".debug_line", 11, 0, SHT_PROGBITS, 0 },
2120 { ".debug_info", 11, 0, SHT_PROGBITS, 0 },
2121 { ".debug_abbrev", 13, 0, SHT_PROGBITS, 0 },
2122 { ".debug_aranges", 14, 0, SHT_PROGBITS, 0 },
2123 { ".dynamic", 8, 0, SHT_DYNAMIC, SHF_ALLOC },
2124 { ".dynstr", 7, 0, SHT_STRTAB, SHF_ALLOC },
2125 { ".dynsym", 7, 0, SHT_DYNSYM, SHF_ALLOC },
2126 { ".got", 4, 0, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
2127 { ".hash", 5, 0, SHT_HASH, SHF_ALLOC },
2128 { ".interp", 7, 0, SHT_PROGBITS, 0 },
2129 { ".plt", 4, 0, SHT_PROGBITS, SHF_ALLOC + SHF_EXECINSTR },
2130 { ".shstrtab", 9, 0, SHT_STRTAB, 0 },
2131 { ".strtab", 7, 0, SHT_STRTAB, 0 },
2132 { ".symtab", 7, 0, SHT_SYMTAB, 0 },
2133 { ".gnu.version", 12, 0, SHT_GNU_versym, 0 },
2134 { ".gnu.version_d", 14, 0, SHT_GNU_verdef, 0 },
2135 { ".gnu.version_r", 14, 0, SHT_GNU_verneed, 0 },
2136 { ".note.GNU-stack",15, 0, SHT_PROGBITS, 0 },
2137 { ".note", 5, -1, SHT_NOTE, 0 },
2138 { ".rela", 5, -1, SHT_RELA, 0 },
2139 { ".rel", 4, -1, SHT_REL, 0 },
2140 { ".stabstr", 5, 3, SHT_STRTAB, 0 },
2141 { ".gnu.liblist", 12, 0, SHT_GNU_LIBLIST, SHF_ALLOC },
2142 { ".gnu.conflict", 13, 0, SHT_RELA, SHF_ALLOC },
2143 { NULL, 0, 0, 0, 0 }
2146 static const struct bfd_elf_special_section *
2147 get_special_section (const char *name,
2148 const struct bfd_elf_special_section *special_sections,
2152 int len = strlen (name);
2154 for (i = 0; special_sections[i].prefix != NULL; i++)
2157 int prefix_len = special_sections[i].prefix_length;
2159 if (len < prefix_len)
2161 if (memcmp (name, special_sections[i].prefix, prefix_len) != 0)
2164 suffix_len = special_sections[i].suffix_length;
2165 if (suffix_len <= 0)
2167 if (name[prefix_len] != 0)
2169 if (suffix_len == 0)
2171 if (name[prefix_len] != '.'
2172 && (suffix_len == -2
2173 || (rela && special_sections[i].type == SHT_REL)))
2179 if (len < prefix_len + suffix_len)
2181 if (memcmp (name + len - suffix_len,
2182 special_sections[i].prefix + prefix_len,
2186 return &special_sections[i];
2192 const struct bfd_elf_special_section *
2193 _bfd_elf_get_sec_type_attr (bfd *abfd, const char *name)
2195 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
2196 const struct bfd_elf_special_section *ssect = NULL;
2198 /* See if this is one of the special sections. */
2201 unsigned int rela = bed->default_use_rela_p;
2203 if (bed->special_sections)
2204 ssect = get_special_section (name, bed->special_sections, rela);
2207 ssect = get_special_section (name, special_sections, rela);
2214 _bfd_elf_new_section_hook (bfd *abfd, asection *sec)
2216 struct bfd_elf_section_data *sdata;
2217 const struct bfd_elf_special_section *ssect;
2219 sdata = (struct bfd_elf_section_data *) sec->used_by_bfd;
2222 sdata = bfd_zalloc (abfd, sizeof (*sdata));
2225 sec->used_by_bfd = sdata;
2228 elf_section_type (sec) = SHT_NULL;
2229 ssect = _bfd_elf_get_sec_type_attr (abfd, sec->name);
2232 elf_section_type (sec) = ssect->type;
2233 elf_section_flags (sec) = ssect->attr;
2236 /* Indicate whether or not this section should use RELA relocations. */
2237 sec->use_rela_p = get_elf_backend_data (abfd)->default_use_rela_p;
2242 /* Create a new bfd section from an ELF program header.
2244 Since program segments have no names, we generate a synthetic name
2245 of the form segment<NUM>, where NUM is generally the index in the
2246 program header table. For segments that are split (see below) we
2247 generate the names segment<NUM>a and segment<NUM>b.
2249 Note that some program segments may have a file size that is different than
2250 (less than) the memory size. All this means is that at execution the
2251 system must allocate the amount of memory specified by the memory size,
2252 but only initialize it with the first "file size" bytes read from the
2253 file. This would occur for example, with program segments consisting
2254 of combined data+bss.
2256 To handle the above situation, this routine generates TWO bfd sections
2257 for the single program segment. The first has the length specified by
2258 the file size of the segment, and the second has the length specified
2259 by the difference between the two sizes. In effect, the segment is split
2260 into it's initialized and uninitialized parts.
2265 _bfd_elf_make_section_from_phdr (bfd *abfd,
2266 Elf_Internal_Phdr *hdr,
2268 const char *typename)
2276 split = ((hdr->p_memsz > 0)
2277 && (hdr->p_filesz > 0)
2278 && (hdr->p_memsz > hdr->p_filesz));
2279 sprintf (namebuf, "%s%d%s", typename, index, split ? "a" : "");
2280 len = strlen (namebuf) + 1;
2281 name = bfd_alloc (abfd, len);
2284 memcpy (name, namebuf, len);
2285 newsect = bfd_make_section (abfd, name);
2286 if (newsect == NULL)
2288 newsect->vma = hdr->p_vaddr;
2289 newsect->lma = hdr->p_paddr;
2290 newsect->size = hdr->p_filesz;
2291 newsect->filepos = hdr->p_offset;
2292 newsect->flags |= SEC_HAS_CONTENTS;
2293 newsect->alignment_power = bfd_log2 (hdr->p_align);
2294 if (hdr->p_type == PT_LOAD)
2296 newsect->flags |= SEC_ALLOC;
2297 newsect->flags |= SEC_LOAD;
2298 if (hdr->p_flags & PF_X)
2300 /* FIXME: all we known is that it has execute PERMISSION,
2302 newsect->flags |= SEC_CODE;
2305 if (!(hdr->p_flags & PF_W))
2307 newsect->flags |= SEC_READONLY;
2312 sprintf (namebuf, "%s%db", typename, index);
2313 len = strlen (namebuf) + 1;
2314 name = bfd_alloc (abfd, len);
2317 memcpy (name, namebuf, len);
2318 newsect = bfd_make_section (abfd, name);
2319 if (newsect == NULL)
2321 newsect->vma = hdr->p_vaddr + hdr->p_filesz;
2322 newsect->lma = hdr->p_paddr + hdr->p_filesz;
2323 newsect->size = hdr->p_memsz - hdr->p_filesz;
2324 if (hdr->p_type == PT_LOAD)
2326 newsect->flags |= SEC_ALLOC;
2327 if (hdr->p_flags & PF_X)
2328 newsect->flags |= SEC_CODE;
2330 if (!(hdr->p_flags & PF_W))
2331 newsect->flags |= SEC_READONLY;
2338 bfd_section_from_phdr (bfd *abfd, Elf_Internal_Phdr *hdr, int index)
2340 const struct elf_backend_data *bed;
2342 switch (hdr->p_type)
2345 return _bfd_elf_make_section_from_phdr (abfd, hdr, index, "null");
2348 return _bfd_elf_make_section_from_phdr (abfd, hdr, index, "load");
2351 return _bfd_elf_make_section_from_phdr (abfd, hdr, index, "dynamic");
2354 return _bfd_elf_make_section_from_phdr (abfd, hdr, index, "interp");
2357 if (! _bfd_elf_make_section_from_phdr (abfd, hdr, index, "note"))
2359 if (! elfcore_read_notes (abfd, hdr->p_offset, hdr->p_filesz))
2364 return _bfd_elf_make_section_from_phdr (abfd, hdr, index, "shlib");
2367 return _bfd_elf_make_section_from_phdr (abfd, hdr, index, "phdr");
2369 case PT_GNU_EH_FRAME:
2370 return _bfd_elf_make_section_from_phdr (abfd, hdr, index,
2374 return _bfd_elf_make_section_from_phdr (abfd, hdr, index, "stack");
2377 return _bfd_elf_make_section_from_phdr (abfd, hdr, index, "relro");
2380 /* Check for any processor-specific program segment types. */
2381 bed = get_elf_backend_data (abfd);
2382 return bed->elf_backend_section_from_phdr (abfd, hdr, index);
2386 /* Initialize REL_HDR, the section-header for new section, containing
2387 relocations against ASECT. If USE_RELA_P is TRUE, we use RELA
2388 relocations; otherwise, we use REL relocations. */
2391 _bfd_elf_init_reloc_shdr (bfd *abfd,
2392 Elf_Internal_Shdr *rel_hdr,
2394 bfd_boolean use_rela_p)
2397 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
2398 bfd_size_type amt = sizeof ".rela" + strlen (asect->name);
2400 name = bfd_alloc (abfd, amt);
2403 sprintf (name, "%s%s", use_rela_p ? ".rela" : ".rel", asect->name);
2405 (unsigned int) _bfd_elf_strtab_add (elf_shstrtab (abfd), name,
2407 if (rel_hdr->sh_name == (unsigned int) -1)
2409 rel_hdr->sh_type = use_rela_p ? SHT_RELA : SHT_REL;
2410 rel_hdr->sh_entsize = (use_rela_p
2411 ? bed->s->sizeof_rela
2412 : bed->s->sizeof_rel);
2413 rel_hdr->sh_addralign = 1 << bed->s->log_file_align;
2414 rel_hdr->sh_flags = 0;
2415 rel_hdr->sh_addr = 0;
2416 rel_hdr->sh_size = 0;
2417 rel_hdr->sh_offset = 0;
2422 /* Set up an ELF internal section header for a section. */
2425 elf_fake_sections (bfd *abfd, asection *asect, void *failedptrarg)
2427 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
2428 bfd_boolean *failedptr = failedptrarg;
2429 Elf_Internal_Shdr *this_hdr;
2433 /* We already failed; just get out of the bfd_map_over_sections
2438 this_hdr = &elf_section_data (asect)->this_hdr;
2440 this_hdr->sh_name = (unsigned int) _bfd_elf_strtab_add (elf_shstrtab (abfd),
2441 asect->name, FALSE);
2442 if (this_hdr->sh_name == (unsigned int) -1)
2448 this_hdr->sh_flags = 0;
2450 if ((asect->flags & SEC_ALLOC) != 0
2451 || asect->user_set_vma)
2452 this_hdr->sh_addr = asect->vma;
2454 this_hdr->sh_addr = 0;
2456 this_hdr->sh_offset = 0;
2457 this_hdr->sh_size = asect->size;
2458 this_hdr->sh_link = 0;
2459 this_hdr->sh_addralign = 1 << asect->alignment_power;
2460 /* The sh_entsize and sh_info fields may have been set already by
2461 copy_private_section_data. */
2463 this_hdr->bfd_section = asect;
2464 this_hdr->contents = NULL;
2466 /* If the section type is unspecified, we set it based on
2468 if (this_hdr->sh_type == SHT_NULL)
2470 if ((asect->flags & SEC_GROUP) != 0)
2472 /* We also need to mark SHF_GROUP here for relocatable
2474 struct bfd_link_order *l;
2477 for (l = asect->link_order_head; l != NULL; l = l->next)
2478 if (l->type == bfd_indirect_link_order
2479 && (elt = elf_next_in_group (l->u.indirect.section)) != NULL)
2482 /* The name is not important. Anything will do. */
2483 elf_group_name (elt->output_section) = "G";
2484 elf_section_flags (elt->output_section) |= SHF_GROUP;
2486 elt = elf_next_in_group (elt);
2487 /* During a relocatable link, the lists are
2490 while (elt != elf_next_in_group (l->u.indirect.section));
2492 this_hdr->sh_type = SHT_GROUP;
2494 else if ((asect->flags & SEC_ALLOC) != 0
2495 && (((asect->flags & (SEC_LOAD | SEC_HAS_CONTENTS)) == 0)
2496 || (asect->flags & SEC_NEVER_LOAD) != 0))
2497 this_hdr->sh_type = SHT_NOBITS;
2499 this_hdr->sh_type = SHT_PROGBITS;
2502 switch (this_hdr->sh_type)
2508 case SHT_INIT_ARRAY:
2509 case SHT_FINI_ARRAY:
2510 case SHT_PREINIT_ARRAY:
2517 this_hdr->sh_entsize = bed->s->sizeof_hash_entry;
2521 this_hdr->sh_entsize = bed->s->sizeof_sym;
2525 this_hdr->sh_entsize = bed->s->sizeof_dyn;
2529 if (get_elf_backend_data (abfd)->may_use_rela_p)
2530 this_hdr->sh_entsize = bed->s->sizeof_rela;
2534 if (get_elf_backend_data (abfd)->may_use_rel_p)
2535 this_hdr->sh_entsize = bed->s->sizeof_rel;
2538 case SHT_GNU_versym:
2539 this_hdr->sh_entsize = sizeof (Elf_External_Versym);
2542 case SHT_GNU_verdef:
2543 this_hdr->sh_entsize = 0;
2544 /* objcopy or strip will copy over sh_info, but may not set
2545 cverdefs. The linker will set cverdefs, but sh_info will be
2547 if (this_hdr->sh_info == 0)
2548 this_hdr->sh_info = elf_tdata (abfd)->cverdefs;
2550 BFD_ASSERT (elf_tdata (abfd)->cverdefs == 0
2551 || this_hdr->sh_info == elf_tdata (abfd)->cverdefs);
2554 case SHT_GNU_verneed:
2555 this_hdr->sh_entsize = 0;
2556 /* objcopy or strip will copy over sh_info, but may not set
2557 cverrefs. The linker will set cverrefs, but sh_info will be
2559 if (this_hdr->sh_info == 0)
2560 this_hdr->sh_info = elf_tdata (abfd)->cverrefs;
2562 BFD_ASSERT (elf_tdata (abfd)->cverrefs == 0
2563 || this_hdr->sh_info == elf_tdata (abfd)->cverrefs);
2567 this_hdr->sh_entsize = 4;
2571 if ((asect->flags & SEC_ALLOC) != 0)
2572 this_hdr->sh_flags |= SHF_ALLOC;
2573 if ((asect->flags & SEC_READONLY) == 0)
2574 this_hdr->sh_flags |= SHF_WRITE;
2575 if ((asect->flags & SEC_CODE) != 0)
2576 this_hdr->sh_flags |= SHF_EXECINSTR;
2577 if ((asect->flags & SEC_MERGE) != 0)
2579 this_hdr->sh_flags |= SHF_MERGE;
2580 this_hdr->sh_entsize = asect->entsize;
2581 if ((asect->flags & SEC_STRINGS) != 0)
2582 this_hdr->sh_flags |= SHF_STRINGS;
2584 if ((asect->flags & SEC_GROUP) == 0 && elf_group_name (asect) != NULL)
2585 this_hdr->sh_flags |= SHF_GROUP;
2586 if ((asect->flags & SEC_THREAD_LOCAL) != 0)
2588 this_hdr->sh_flags |= SHF_TLS;
2589 if (asect->size == 0 && (asect->flags & SEC_HAS_CONTENTS) == 0)
2591 struct bfd_link_order *o;
2593 this_hdr->sh_size = 0;
2594 for (o = asect->link_order_head; o != NULL; o = o->next)
2595 if (this_hdr->sh_size < o->offset + o->size)
2596 this_hdr->sh_size = o->offset + o->size;
2597 if (this_hdr->sh_size)
2598 this_hdr->sh_type = SHT_NOBITS;
2602 /* Check for processor-specific section types. */
2603 if (bed->elf_backend_fake_sections
2604 && !(*bed->elf_backend_fake_sections) (abfd, this_hdr, asect))
2607 /* If the section has relocs, set up a section header for the
2608 SHT_REL[A] section. If two relocation sections are required for
2609 this section, it is up to the processor-specific back-end to
2610 create the other. */
2611 if ((asect->flags & SEC_RELOC) != 0
2612 && !_bfd_elf_init_reloc_shdr (abfd,
2613 &elf_section_data (asect)->rel_hdr,
2619 /* Fill in the contents of a SHT_GROUP section. */
2622 bfd_elf_set_group_contents (bfd *abfd, asection *sec, void *failedptrarg)
2624 bfd_boolean *failedptr = failedptrarg;
2625 unsigned long symindx;
2626 asection *elt, *first;
2628 struct bfd_link_order *l;
2631 if (elf_section_data (sec)->this_hdr.sh_type != SHT_GROUP
2636 if (elf_group_id (sec) != NULL)
2637 symindx = elf_group_id (sec)->udata.i;
2641 /* If called from the assembler, swap_out_syms will have set up
2642 elf_section_syms; If called for "ld -r", use target_index. */
2643 if (elf_section_syms (abfd) != NULL)
2644 symindx = elf_section_syms (abfd)[sec->index]->udata.i;
2646 symindx = sec->target_index;
2648 elf_section_data (sec)->this_hdr.sh_info = symindx;
2650 /* The contents won't be allocated for "ld -r" or objcopy. */
2652 if (sec->contents == NULL)
2655 sec->contents = bfd_alloc (abfd, sec->size);
2657 /* Arrange for the section to be written out. */
2658 elf_section_data (sec)->this_hdr.contents = sec->contents;
2659 if (sec->contents == NULL)
2666 loc = sec->contents + sec->size;
2668 /* Get the pointer to the first section in the group that gas
2669 squirreled away here. objcopy arranges for this to be set to the
2670 start of the input section group. */
2671 first = elt = elf_next_in_group (sec);
2673 /* First element is a flag word. Rest of section is elf section
2674 indices for all the sections of the group. Write them backwards
2675 just to keep the group in the same order as given in .section
2676 directives, not that it matters. */
2685 s = s->output_section;
2688 idx = elf_section_data (s)->this_idx;
2689 H_PUT_32 (abfd, idx, loc);
2690 elt = elf_next_in_group (elt);
2695 /* If this is a relocatable link, then the above did nothing because
2696 SEC is the output section. Look through the input sections
2698 for (l = sec->link_order_head; l != NULL; l = l->next)
2699 if (l->type == bfd_indirect_link_order
2700 && (elt = elf_next_in_group (l->u.indirect.section)) != NULL)
2705 elf_section_data (elt->output_section)->this_idx, loc);
2706 elt = elf_next_in_group (elt);
2707 /* During a relocatable link, the lists are circular. */
2709 while (elt != elf_next_in_group (l->u.indirect.section));
2711 if ((loc -= 4) != sec->contents)
2714 H_PUT_32 (abfd, sec->flags & SEC_LINK_ONCE ? GRP_COMDAT : 0, loc);
2717 /* Assign all ELF section numbers. The dummy first section is handled here
2718 too. The link/info pointers for the standard section types are filled
2719 in here too, while we're at it. */
2722 assign_section_numbers (bfd *abfd)
2724 struct elf_obj_tdata *t = elf_tdata (abfd);
2726 unsigned int section_number, secn;
2727 Elf_Internal_Shdr **i_shdrp;
2729 struct bfd_elf_section_data *d;
2733 _bfd_elf_strtab_clear_all_refs (elf_shstrtab (abfd));
2735 /* Put SHT_GROUP sections first. */
2736 for (sec = abfd->sections; sec; sec = sec->next)
2738 d = elf_section_data (sec);
2740 if (d->this_hdr.sh_type == SHT_GROUP)
2742 if (section_number == SHN_LORESERVE)
2743 section_number += SHN_HIRESERVE + 1 - SHN_LORESERVE;
2744 d->this_idx = section_number++;
2748 for (sec = abfd->sections; sec; sec = sec->next)
2750 d = elf_section_data (sec);
2752 if (d->this_hdr.sh_type != SHT_GROUP)
2754 if (section_number == SHN_LORESERVE)
2755 section_number += SHN_HIRESERVE + 1 - SHN_LORESERVE;
2756 d->this_idx = section_number++;
2758 _bfd_elf_strtab_addref (elf_shstrtab (abfd), d->this_hdr.sh_name);
2759 if ((sec->flags & SEC_RELOC) == 0)
2763 if (section_number == SHN_LORESERVE)
2764 section_number += SHN_HIRESERVE + 1 - SHN_LORESERVE;
2765 d->rel_idx = section_number++;
2766 _bfd_elf_strtab_addref (elf_shstrtab (abfd), d->rel_hdr.sh_name);
2771 if (section_number == SHN_LORESERVE)
2772 section_number += SHN_HIRESERVE + 1 - SHN_LORESERVE;
2773 d->rel_idx2 = section_number++;
2774 _bfd_elf_strtab_addref (elf_shstrtab (abfd), d->rel_hdr2->sh_name);
2780 if (section_number == SHN_LORESERVE)
2781 section_number += SHN_HIRESERVE + 1 - SHN_LORESERVE;
2782 t->shstrtab_section = section_number++;
2783 _bfd_elf_strtab_addref (elf_shstrtab (abfd), t->shstrtab_hdr.sh_name);
2784 elf_elfheader (abfd)->e_shstrndx = t->shstrtab_section;
2786 if (bfd_get_symcount (abfd) > 0)
2788 if (section_number == SHN_LORESERVE)
2789 section_number += SHN_HIRESERVE + 1 - SHN_LORESERVE;
2790 t->symtab_section = section_number++;
2791 _bfd_elf_strtab_addref (elf_shstrtab (abfd), t->symtab_hdr.sh_name);
2792 if (section_number > SHN_LORESERVE - 2)
2794 if (section_number == SHN_LORESERVE)
2795 section_number += SHN_HIRESERVE + 1 - SHN_LORESERVE;
2796 t->symtab_shndx_section = section_number++;
2797 t->symtab_shndx_hdr.sh_name
2798 = (unsigned int) _bfd_elf_strtab_add (elf_shstrtab (abfd),
2799 ".symtab_shndx", FALSE);
2800 if (t->symtab_shndx_hdr.sh_name == (unsigned int) -1)
2803 if (section_number == SHN_LORESERVE)
2804 section_number += SHN_HIRESERVE + 1 - SHN_LORESERVE;
2805 t->strtab_section = section_number++;
2806 _bfd_elf_strtab_addref (elf_shstrtab (abfd), t->strtab_hdr.sh_name);
2809 _bfd_elf_strtab_finalize (elf_shstrtab (abfd));
2810 t->shstrtab_hdr.sh_size = _bfd_elf_strtab_size (elf_shstrtab (abfd));
2812 elf_numsections (abfd) = section_number;
2813 elf_elfheader (abfd)->e_shnum = section_number;
2814 if (section_number > SHN_LORESERVE)
2815 elf_elfheader (abfd)->e_shnum -= SHN_HIRESERVE + 1 - SHN_LORESERVE;
2817 /* Set up the list of section header pointers, in agreement with the
2819 amt = section_number * sizeof (Elf_Internal_Shdr *);
2820 i_shdrp = bfd_zalloc (abfd, amt);
2821 if (i_shdrp == NULL)
2824 amt = sizeof (Elf_Internal_Shdr);
2825 i_shdrp[0] = bfd_zalloc (abfd, amt);
2826 if (i_shdrp[0] == NULL)
2828 bfd_release (abfd, i_shdrp);
2832 elf_elfsections (abfd) = i_shdrp;
2834 i_shdrp[t->shstrtab_section] = &t->shstrtab_hdr;
2835 if (bfd_get_symcount (abfd) > 0)
2837 i_shdrp[t->symtab_section] = &t->symtab_hdr;
2838 if (elf_numsections (abfd) > SHN_LORESERVE)
2840 i_shdrp[t->symtab_shndx_section] = &t->symtab_shndx_hdr;
2841 t->symtab_shndx_hdr.sh_link = t->symtab_section;
2843 i_shdrp[t->strtab_section] = &t->strtab_hdr;
2844 t->symtab_hdr.sh_link = t->strtab_section;
2847 for (sec = abfd->sections; sec; sec = sec->next)
2849 struct bfd_elf_section_data *d = elf_section_data (sec);
2853 i_shdrp[d->this_idx] = &d->this_hdr;
2854 if (d->rel_idx != 0)
2855 i_shdrp[d->rel_idx] = &d->rel_hdr;
2856 if (d->rel_idx2 != 0)
2857 i_shdrp[d->rel_idx2] = d->rel_hdr2;
2859 /* Fill in the sh_link and sh_info fields while we're at it. */
2861 /* sh_link of a reloc section is the section index of the symbol
2862 table. sh_info is the section index of the section to which
2863 the relocation entries apply. */
2864 if (d->rel_idx != 0)
2866 d->rel_hdr.sh_link = t->symtab_section;
2867 d->rel_hdr.sh_info = d->this_idx;
2869 if (d->rel_idx2 != 0)
2871 d->rel_hdr2->sh_link = t->symtab_section;
2872 d->rel_hdr2->sh_info = d->this_idx;
2875 /* We need to set up sh_link for SHF_LINK_ORDER. */
2876 if ((d->this_hdr.sh_flags & SHF_LINK_ORDER) != 0)
2878 s = elf_linked_to_section (sec);
2880 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
2883 struct bfd_link_order *p;
2885 /* Find out what the corresponding section in output
2887 for (p = sec->link_order_head; p != NULL; p = p->next)
2889 s = p->u.indirect.section;
2890 if (p->type == bfd_indirect_link_order
2891 && (bfd_get_flavour (s->owner)
2892 == bfd_target_elf_flavour))
2894 Elf_Internal_Shdr ** const elf_shdrp
2895 = elf_elfsections (s->owner);
2897 = _bfd_elf_section_from_bfd_section (s->owner, s);
2898 elfsec = elf_shdrp[elfsec]->sh_link;
2900 The Intel C compiler generates SHT_IA_64_UNWIND with
2901 SHF_LINK_ORDER. But it doesn't set theh sh_link or
2902 sh_info fields. Hence we could get the situation
2903 where elfsec is 0. */
2906 const struct elf_backend_data *bed
2907 = get_elf_backend_data (abfd);
2908 if (bed->link_order_error_handler)
2909 bed->link_order_error_handler
2910 (_("%B: warning: sh_link not set for section `%S'"),
2915 s = elf_shdrp[elfsec]->bfd_section->output_section;
2916 BFD_ASSERT (s != NULL);
2917 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
2925 switch (d->this_hdr.sh_type)
2929 /* A reloc section which we are treating as a normal BFD
2930 section. sh_link is the section index of the symbol
2931 table. sh_info is the section index of the section to
2932 which the relocation entries apply. We assume that an
2933 allocated reloc section uses the dynamic symbol table.
2934 FIXME: How can we be sure? */
2935 s = bfd_get_section_by_name (abfd, ".dynsym");
2937 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
2939 /* We look up the section the relocs apply to by name. */
2941 if (d->this_hdr.sh_type == SHT_REL)
2945 s = bfd_get_section_by_name (abfd, name);
2947 d->this_hdr.sh_info = elf_section_data (s)->this_idx;
2951 /* We assume that a section named .stab*str is a stabs
2952 string section. We look for a section with the same name
2953 but without the trailing ``str'', and set its sh_link
2954 field to point to this section. */
2955 if (strncmp (sec->name, ".stab", sizeof ".stab" - 1) == 0
2956 && strcmp (sec->name + strlen (sec->name) - 3, "str") == 0)
2961 len = strlen (sec->name);
2962 alc = bfd_malloc (len - 2);
2965 memcpy (alc, sec->name, len - 3);
2966 alc[len - 3] = '\0';
2967 s = bfd_get_section_by_name (abfd, alc);
2971 elf_section_data (s)->this_hdr.sh_link = d->this_idx;
2973 /* This is a .stab section. */
2974 if (elf_section_data (s)->this_hdr.sh_entsize == 0)
2975 elf_section_data (s)->this_hdr.sh_entsize
2976 = 4 + 2 * bfd_get_arch_size (abfd) / 8;
2983 case SHT_GNU_verneed:
2984 case SHT_GNU_verdef:
2985 /* sh_link is the section header index of the string table
2986 used for the dynamic entries, or the symbol table, or the
2988 s = bfd_get_section_by_name (abfd, ".dynstr");
2990 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
2993 case SHT_GNU_LIBLIST:
2994 /* sh_link is the section header index of the prelink library
2996 used for the dynamic entries, or the symbol table, or the
2998 s = bfd_get_section_by_name (abfd, (sec->flags & SEC_ALLOC)
2999 ? ".dynstr" : ".gnu.libstr");
3001 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
3005 case SHT_GNU_versym:
3006 /* sh_link is the section header index of the symbol table
3007 this hash table or version table is for. */
3008 s = bfd_get_section_by_name (abfd, ".dynsym");
3010 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
3014 d->this_hdr.sh_link = t->symtab_section;
3018 for (secn = 1; secn < section_number; ++secn)
3019 if (i_shdrp[secn] == NULL)
3020 i_shdrp[secn] = i_shdrp[0];
3022 i_shdrp[secn]->sh_name = _bfd_elf_strtab_offset (elf_shstrtab (abfd),
3023 i_shdrp[secn]->sh_name);
3027 /* Map symbol from it's internal number to the external number, moving
3028 all local symbols to be at the head of the list. */
3031 sym_is_global (bfd *abfd, asymbol *sym)
3033 /* If the backend has a special mapping, use it. */
3034 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
3035 if (bed->elf_backend_sym_is_global)
3036 return (*bed->elf_backend_sym_is_global) (abfd, sym);
3038 return ((sym->flags & (BSF_GLOBAL | BSF_WEAK)) != 0
3039 || bfd_is_und_section (bfd_get_section (sym))
3040 || bfd_is_com_section (bfd_get_section (sym)));
3044 elf_map_symbols (bfd *abfd)
3046 unsigned int symcount = bfd_get_symcount (abfd);
3047 asymbol **syms = bfd_get_outsymbols (abfd);
3048 asymbol **sect_syms;
3049 unsigned int num_locals = 0;
3050 unsigned int num_globals = 0;
3051 unsigned int num_locals2 = 0;
3052 unsigned int num_globals2 = 0;
3060 fprintf (stderr, "elf_map_symbols\n");
3064 for (asect = abfd->sections; asect; asect = asect->next)
3066 if (max_index < asect->index)
3067 max_index = asect->index;
3071 amt = max_index * sizeof (asymbol *);
3072 sect_syms = bfd_zalloc (abfd, amt);
3073 if (sect_syms == NULL)
3075 elf_section_syms (abfd) = sect_syms;
3076 elf_num_section_syms (abfd) = max_index;
3078 /* Init sect_syms entries for any section symbols we have already
3079 decided to output. */
3080 for (idx = 0; idx < symcount; idx++)
3082 asymbol *sym = syms[idx];
3084 if ((sym->flags & BSF_SECTION_SYM) != 0
3091 if (sec->owner != NULL)
3093 if (sec->owner != abfd)
3095 if (sec->output_offset != 0)
3098 sec = sec->output_section;
3100 /* Empty sections in the input files may have had a
3101 section symbol created for them. (See the comment
3102 near the end of _bfd_generic_link_output_symbols in
3103 linker.c). If the linker script discards such
3104 sections then we will reach this point. Since we know
3105 that we cannot avoid this case, we detect it and skip
3106 the abort and the assignment to the sect_syms array.
3107 To reproduce this particular case try running the
3108 linker testsuite test ld-scripts/weak.exp for an ELF
3109 port that uses the generic linker. */
3110 if (sec->owner == NULL)
3113 BFD_ASSERT (sec->owner == abfd);
3115 sect_syms[sec->index] = syms[idx];
3120 /* Classify all of the symbols. */
3121 for (idx = 0; idx < symcount; idx++)
3123 if (!sym_is_global (abfd, syms[idx]))
3129 /* We will be adding a section symbol for each BFD section. Most normal
3130 sections will already have a section symbol in outsymbols, but
3131 eg. SHT_GROUP sections will not, and we need the section symbol mapped
3132 at least in that case. */
3133 for (asect = abfd->sections; asect; asect = asect->next)
3135 if (sect_syms[asect->index] == NULL)
3137 if (!sym_is_global (abfd, asect->symbol))
3144 /* Now sort the symbols so the local symbols are first. */
3145 amt = (num_locals + num_globals) * sizeof (asymbol *);
3146 new_syms = bfd_alloc (abfd, amt);
3148 if (new_syms == NULL)
3151 for (idx = 0; idx < symcount; idx++)
3153 asymbol *sym = syms[idx];
3156 if (!sym_is_global (abfd, sym))
3159 i = num_locals + num_globals2++;
3161 sym->udata.i = i + 1;
3163 for (asect = abfd->sections; asect; asect = asect->next)
3165 if (sect_syms[asect->index] == NULL)
3167 asymbol *sym = asect->symbol;
3170 sect_syms[asect->index] = sym;
3171 if (!sym_is_global (abfd, sym))
3174 i = num_locals + num_globals2++;
3176 sym->udata.i = i + 1;
3180 bfd_set_symtab (abfd, new_syms, num_locals + num_globals);
3182 elf_num_locals (abfd) = num_locals;
3183 elf_num_globals (abfd) = num_globals;
3187 /* Align to the maximum file alignment that could be required for any
3188 ELF data structure. */
3190 static inline file_ptr
3191 align_file_position (file_ptr off, int align)
3193 return (off + align - 1) & ~(align - 1);
3196 /* Assign a file position to a section, optionally aligning to the
3197 required section alignment. */
3200 _bfd_elf_assign_file_position_for_section (Elf_Internal_Shdr *i_shdrp,
3208 al = i_shdrp->sh_addralign;
3210 offset = BFD_ALIGN (offset, al);
3212 i_shdrp->sh_offset = offset;
3213 if (i_shdrp->bfd_section != NULL)
3214 i_shdrp->bfd_section->filepos = offset;
3215 if (i_shdrp->sh_type != SHT_NOBITS)
3216 offset += i_shdrp->sh_size;
3220 /* Compute the file positions we are going to put the sections at, and
3221 otherwise prepare to begin writing out the ELF file. If LINK_INFO
3222 is not NULL, this is being called by the ELF backend linker. */
3225 _bfd_elf_compute_section_file_positions (bfd *abfd,
3226 struct bfd_link_info *link_info)
3228 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
3230 struct bfd_strtab_hash *strtab = NULL;
3231 Elf_Internal_Shdr *shstrtab_hdr;
3233 if (abfd->output_has_begun)
3236 /* Do any elf backend specific processing first. */
3237 if (bed->elf_backend_begin_write_processing)
3238 (*bed->elf_backend_begin_write_processing) (abfd, link_info);
3240 if (! prep_headers (abfd))
3243 /* Post process the headers if necessary. */
3244 if (bed->elf_backend_post_process_headers)
3245 (*bed->elf_backend_post_process_headers) (abfd, link_info);
3248 bfd_map_over_sections (abfd, elf_fake_sections, &failed);
3252 if (!assign_section_numbers (abfd))
3255 /* The backend linker builds symbol table information itself. */
3256 if (link_info == NULL && bfd_get_symcount (abfd) > 0)
3258 /* Non-zero if doing a relocatable link. */
3259 int relocatable_p = ! (abfd->flags & (EXEC_P | DYNAMIC));
3261 if (! swap_out_syms (abfd, &strtab, relocatable_p))
3265 if (link_info == NULL)
3267 bfd_map_over_sections (abfd, bfd_elf_set_group_contents, &failed);
3272 shstrtab_hdr = &elf_tdata (abfd)->shstrtab_hdr;
3273 /* sh_name was set in prep_headers. */
3274 shstrtab_hdr->sh_type = SHT_STRTAB;
3275 shstrtab_hdr->sh_flags = 0;
3276 shstrtab_hdr->sh_addr = 0;
3277 shstrtab_hdr->sh_size = _bfd_elf_strtab_size (elf_shstrtab (abfd));
3278 shstrtab_hdr->sh_entsize = 0;
3279 shstrtab_hdr->sh_link = 0;
3280 shstrtab_hdr->sh_info = 0;
3281 /* sh_offset is set in assign_file_positions_except_relocs. */
3282 shstrtab_hdr->sh_addralign = 1;
3284 if (!assign_file_positions_except_relocs (abfd, link_info))
3287 if (link_info == NULL && bfd_get_symcount (abfd) > 0)
3290 Elf_Internal_Shdr *hdr;
3292 off = elf_tdata (abfd)->next_file_pos;
3294 hdr = &elf_tdata (abfd)->symtab_hdr;
3295 off = _bfd_elf_assign_file_position_for_section (hdr, off, TRUE);
3297 hdr = &elf_tdata (abfd)->symtab_shndx_hdr;
3298 if (hdr->sh_size != 0)
3299 off = _bfd_elf_assign_file_position_for_section (hdr, off, TRUE);
3301 hdr = &elf_tdata (abfd)->strtab_hdr;
3302 off = _bfd_elf_assign_file_position_for_section (hdr, off, TRUE);
3304 elf_tdata (abfd)->next_file_pos = off;
3306 /* Now that we know where the .strtab section goes, write it
3308 if (bfd_seek (abfd, hdr->sh_offset, SEEK_SET) != 0
3309 || ! _bfd_stringtab_emit (abfd, strtab))
3311 _bfd_stringtab_free (strtab);
3314 abfd->output_has_begun = TRUE;
3319 /* Create a mapping from a set of sections to a program segment. */
3321 static struct elf_segment_map *
3322 make_mapping (bfd *abfd,
3323 asection **sections,
3328 struct elf_segment_map *m;
3333 amt = sizeof (struct elf_segment_map);
3334 amt += (to - from - 1) * sizeof (asection *);
3335 m = bfd_zalloc (abfd, amt);
3339 m->p_type = PT_LOAD;
3340 for (i = from, hdrpp = sections + from; i < to; i++, hdrpp++)
3341 m->sections[i - from] = *hdrpp;
3342 m->count = to - from;
3344 if (from == 0 && phdr)
3346 /* Include the headers in the first PT_LOAD segment. */
3347 m->includes_filehdr = 1;
3348 m->includes_phdrs = 1;
3354 /* Create the PT_DYNAMIC segment, which includes DYNSEC. Returns NULL
3357 struct elf_segment_map *
3358 _bfd_elf_make_dynamic_segment (bfd *abfd, asection *dynsec)
3360 struct elf_segment_map *m;
3362 m = bfd_zalloc (abfd, sizeof (struct elf_segment_map));
3366 m->p_type = PT_DYNAMIC;
3368 m->sections[0] = dynsec;
3373 /* Set up a mapping from BFD sections to program segments. */
3376 map_sections_to_segments (bfd *abfd)
3378 asection **sections = NULL;
3382 struct elf_segment_map *mfirst;
3383 struct elf_segment_map **pm;
3384 struct elf_segment_map *m;
3387 unsigned int phdr_index;
3388 bfd_vma maxpagesize;
3390 bfd_boolean phdr_in_segment = TRUE;
3391 bfd_boolean writable;
3393 asection *first_tls = NULL;
3394 asection *dynsec, *eh_frame_hdr;
3397 if (elf_tdata (abfd)->segment_map != NULL)
3400 if (bfd_count_sections (abfd) == 0)
3403 /* Select the allocated sections, and sort them. */
3405 amt = bfd_count_sections (abfd) * sizeof (asection *);
3406 sections = bfd_malloc (amt);
3407 if (sections == NULL)
3411 for (s = abfd->sections; s != NULL; s = s->next)
3413 if ((s->flags & SEC_ALLOC) != 0)
3419 BFD_ASSERT (i <= bfd_count_sections (abfd));
3422 qsort (sections, (size_t) count, sizeof (asection *), elf_sort_sections);
3424 /* Build the mapping. */
3429 /* If we have a .interp section, then create a PT_PHDR segment for
3430 the program headers and a PT_INTERP segment for the .interp
3432 s = bfd_get_section_by_name (abfd, ".interp");
3433 if (s != NULL && (s->flags & SEC_LOAD) != 0)
3435 amt = sizeof (struct elf_segment_map);
3436 m = bfd_zalloc (abfd, amt);
3440 m->p_type = PT_PHDR;
3441 /* FIXME: UnixWare and Solaris set PF_X, Irix 5 does not. */
3442 m->p_flags = PF_R | PF_X;
3443 m->p_flags_valid = 1;
3444 m->includes_phdrs = 1;
3449 amt = sizeof (struct elf_segment_map);
3450 m = bfd_zalloc (abfd, amt);
3454 m->p_type = PT_INTERP;
3462 /* Look through the sections. We put sections in the same program
3463 segment when the start of the second section can be placed within
3464 a few bytes of the end of the first section. */
3468 maxpagesize = get_elf_backend_data (abfd)->maxpagesize;
3470 dynsec = bfd_get_section_by_name (abfd, ".dynamic");
3472 && (dynsec->flags & SEC_LOAD) == 0)
3475 /* Deal with -Ttext or something similar such that the first section
3476 is not adjacent to the program headers. This is an
3477 approximation, since at this point we don't know exactly how many
3478 program headers we will need. */
3481 bfd_size_type phdr_size;
3483 phdr_size = elf_tdata (abfd)->program_header_size;
3485 phdr_size = get_elf_backend_data (abfd)->s->sizeof_phdr;
3486 if ((abfd->flags & D_PAGED) == 0
3487 || sections[0]->lma < phdr_size
3488 || sections[0]->lma % maxpagesize < phdr_size % maxpagesize)
3489 phdr_in_segment = FALSE;
3492 for (i = 0, hdrpp = sections; i < count; i++, hdrpp++)
3495 bfd_boolean new_segment;
3499 /* See if this section and the last one will fit in the same
3502 if (last_hdr == NULL)
3504 /* If we don't have a segment yet, then we don't need a new
3505 one (we build the last one after this loop). */
3506 new_segment = FALSE;
3508 else if (last_hdr->lma - last_hdr->vma != hdr->lma - hdr->vma)
3510 /* If this section has a different relation between the
3511 virtual address and the load address, then we need a new
3515 else if (BFD_ALIGN (last_hdr->lma + last_size, maxpagesize)
3516 < BFD_ALIGN (hdr->lma, maxpagesize))
3518 /* If putting this section in this segment would force us to
3519 skip a page in the segment, then we need a new segment. */
3522 else if ((last_hdr->flags & (SEC_LOAD | SEC_THREAD_LOCAL)) == 0
3523 && (hdr->flags & (SEC_LOAD | SEC_THREAD_LOCAL)) != 0)
3525 /* We don't want to put a loadable section after a
3526 nonloadable section in the same segment.
3527 Consider .tbss sections as loadable for this purpose. */
3530 else if ((abfd->flags & D_PAGED) == 0)
3532 /* If the file is not demand paged, which means that we
3533 don't require the sections to be correctly aligned in the
3534 file, then there is no other reason for a new segment. */
3535 new_segment = FALSE;
3538 && (hdr->flags & SEC_READONLY) == 0
3539 && (((last_hdr->lma + last_size - 1)
3540 & ~(maxpagesize - 1))
3541 != (hdr->lma & ~(maxpagesize - 1))))
3543 /* We don't want to put a writable section in a read only
3544 segment, unless they are on the same page in memory
3545 anyhow. We already know that the last section does not
3546 bring us past the current section on the page, so the
3547 only case in which the new section is not on the same
3548 page as the previous section is when the previous section
3549 ends precisely on a page boundary. */
3554 /* Otherwise, we can use the same segment. */
3555 new_segment = FALSE;
3560 if ((hdr->flags & SEC_READONLY) == 0)
3563 /* .tbss sections effectively have zero size. */
3564 if ((hdr->flags & (SEC_THREAD_LOCAL | SEC_LOAD)) != SEC_THREAD_LOCAL)
3565 last_size = hdr->size;
3571 /* We need a new program segment. We must create a new program
3572 header holding all the sections from phdr_index until hdr. */
3574 m = make_mapping (abfd, sections, phdr_index, i, phdr_in_segment);
3581 if ((hdr->flags & SEC_READONLY) == 0)
3587 /* .tbss sections effectively have zero size. */
3588 if ((hdr->flags & (SEC_THREAD_LOCAL | SEC_LOAD)) != SEC_THREAD_LOCAL)
3589 last_size = hdr->size;
3593 phdr_in_segment = FALSE;
3596 /* Create a final PT_LOAD program segment. */
3597 if (last_hdr != NULL)
3599 m = make_mapping (abfd, sections, phdr_index, i, phdr_in_segment);
3607 /* If there is a .dynamic section, throw in a PT_DYNAMIC segment. */
3610 m = _bfd_elf_make_dynamic_segment (abfd, dynsec);
3617 /* For each loadable .note section, add a PT_NOTE segment. We don't
3618 use bfd_get_section_by_name, because if we link together
3619 nonloadable .note sections and loadable .note sections, we will
3620 generate two .note sections in the output file. FIXME: Using
3621 names for section types is bogus anyhow. */
3622 for (s = abfd->sections; s != NULL; s = s->next)
3624 if ((s->flags & SEC_LOAD) != 0
3625 && strncmp (s->name, ".note", 5) == 0)
3627 amt = sizeof (struct elf_segment_map);
3628 m = bfd_zalloc (abfd, amt);
3632 m->p_type = PT_NOTE;
3639 if (s->flags & SEC_THREAD_LOCAL)
3647 /* If there are any SHF_TLS output sections, add PT_TLS segment. */
3652 amt = sizeof (struct elf_segment_map);
3653 amt += (tls_count - 1) * sizeof (asection *);
3654 m = bfd_zalloc (abfd, amt);
3659 m->count = tls_count;
3660 /* Mandated PF_R. */
3662 m->p_flags_valid = 1;
3663 for (i = 0; i < tls_count; ++i)
3665 BFD_ASSERT (first_tls->flags & SEC_THREAD_LOCAL);
3666 m->sections[i] = first_tls;
3667 first_tls = first_tls->next;
3674 /* If there is a .eh_frame_hdr section, throw in a PT_GNU_EH_FRAME
3676 eh_frame_hdr = elf_tdata (abfd)->eh_frame_hdr;
3677 if (eh_frame_hdr != NULL
3678 && (eh_frame_hdr->output_section->flags & SEC_LOAD) != 0)
3680 amt = sizeof (struct elf_segment_map);
3681 m = bfd_zalloc (abfd, amt);
3685 m->p_type = PT_GNU_EH_FRAME;
3687 m->sections[0] = eh_frame_hdr->output_section;
3693 if (elf_tdata (abfd)->stack_flags)
3695 amt = sizeof (struct elf_segment_map);
3696 m = bfd_zalloc (abfd, amt);
3700 m->p_type = PT_GNU_STACK;
3701 m->p_flags = elf_tdata (abfd)->stack_flags;
3702 m->p_flags_valid = 1;
3708 if (elf_tdata (abfd)->relro)
3710 amt = sizeof (struct elf_segment_map);
3711 m = bfd_zalloc (abfd, amt);
3715 m->p_type = PT_GNU_RELRO;
3717 m->p_flags_valid = 1;
3726 elf_tdata (abfd)->segment_map = mfirst;
3730 if (sections != NULL)
3735 /* Sort sections by address. */
3738 elf_sort_sections (const void *arg1, const void *arg2)
3740 const asection *sec1 = *(const asection **) arg1;
3741 const asection *sec2 = *(const asection **) arg2;
3742 bfd_size_type size1, size2;
3744 /* Sort by LMA first, since this is the address used to
3745 place the section into a segment. */
3746 if (sec1->lma < sec2->lma)
3748 else if (sec1->lma > sec2->lma)
3751 /* Then sort by VMA. Normally the LMA and the VMA will be
3752 the same, and this will do nothing. */
3753 if (sec1->vma < sec2->vma)
3755 else if (sec1->vma > sec2->vma)
3758 /* Put !SEC_LOAD sections after SEC_LOAD ones. */
3760 #define TOEND(x) (((x)->flags & (SEC_LOAD | SEC_THREAD_LOCAL)) == 0)
3766 /* If the indicies are the same, do not return 0
3767 here, but continue to try the next comparison. */
3768 if (sec1->target_index - sec2->target_index != 0)
3769 return sec1->target_index - sec2->target_index;
3774 else if (TOEND (sec2))
3779 /* Sort by size, to put zero sized sections
3780 before others at the same address. */
3782 size1 = (sec1->flags & SEC_LOAD) ? sec1->size : 0;
3783 size2 = (sec2->flags & SEC_LOAD) ? sec2->size : 0;
3790 return sec1->target_index - sec2->target_index;
3793 /* Ian Lance Taylor writes:
3795 We shouldn't be using % with a negative signed number. That's just
3796 not good. We have to make sure either that the number is not
3797 negative, or that the number has an unsigned type. When the types
3798 are all the same size they wind up as unsigned. When file_ptr is a
3799 larger signed type, the arithmetic winds up as signed long long,
3802 What we're trying to say here is something like ``increase OFF by
3803 the least amount that will cause it to be equal to the VMA modulo
3805 /* In other words, something like:
3807 vma_offset = m->sections[0]->vma % bed->maxpagesize;
3808 off_offset = off % bed->maxpagesize;
3809 if (vma_offset < off_offset)
3810 adjustment = vma_offset + bed->maxpagesize - off_offset;
3812 adjustment = vma_offset - off_offset;
3814 which can can be collapsed into the expression below. */
3817 vma_page_aligned_bias (bfd_vma vma, ufile_ptr off, bfd_vma maxpagesize)
3819 return ((vma - off) % maxpagesize);
3822 /* Assign file positions to the sections based on the mapping from
3823 sections to segments. This function also sets up some fields in
3824 the file header, and writes out the program headers. */
3827 assign_file_positions_for_segments (bfd *abfd, struct bfd_link_info *link_info)
3829 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
3831 struct elf_segment_map *m;
3833 Elf_Internal_Phdr *phdrs;
3835 bfd_vma filehdr_vaddr, filehdr_paddr;
3836 bfd_vma phdrs_vaddr, phdrs_paddr;
3837 Elf_Internal_Phdr *p;
3840 if (elf_tdata (abfd)->segment_map == NULL)
3842 if (! map_sections_to_segments (abfd))
3847 /* The placement algorithm assumes that non allocated sections are
3848 not in PT_LOAD segments. We ensure this here by removing such
3849 sections from the segment map. */
3850 for (m = elf_tdata (abfd)->segment_map;
3854 unsigned int new_count;
3857 if (m->p_type != PT_LOAD)
3861 for (i = 0; i < m->count; i ++)
3863 if ((m->sections[i]->flags & SEC_ALLOC) != 0)
3866 m->sections[new_count] = m->sections[i];
3872 if (new_count != m->count)
3873 m->count = new_count;
3877 if (bed->elf_backend_modify_segment_map)
3879 if (! (*bed->elf_backend_modify_segment_map) (abfd, link_info))
3884 for (m = elf_tdata (abfd)->segment_map; m != NULL; m = m->next)
3887 elf_elfheader (abfd)->e_phoff = bed->s->sizeof_ehdr;
3888 elf_elfheader (abfd)->e_phentsize = bed->s->sizeof_phdr;
3889 elf_elfheader (abfd)->e_phnum = count;
3893 elf_tdata (abfd)->next_file_pos = bed->s->sizeof_ehdr;
3897 /* If we already counted the number of program segments, make sure
3898 that we allocated enough space. This happens when SIZEOF_HEADERS
3899 is used in a linker script. */
3900 alloc = elf_tdata (abfd)->program_header_size / bed->s->sizeof_phdr;
3901 if (alloc != 0 && count > alloc)
3903 ((*_bfd_error_handler)
3904 (_("%B: Not enough room for program headers (allocated %u, need %u)"),
3905 abfd, alloc, count));
3906 bfd_set_error (bfd_error_bad_value);
3913 amt = alloc * sizeof (Elf_Internal_Phdr);
3914 phdrs = bfd_alloc (abfd, amt);
3918 off = bed->s->sizeof_ehdr;
3919 off += alloc * bed->s->sizeof_phdr;
3926 for (m = elf_tdata (abfd)->segment_map, p = phdrs;
3933 /* If elf_segment_map is not from map_sections_to_segments, the
3934 sections may not be correctly ordered. NOTE: sorting should
3935 not be done to the PT_NOTE section of a corefile, which may
3936 contain several pseudo-sections artificially created by bfd.
3937 Sorting these pseudo-sections breaks things badly. */
3939 && !(elf_elfheader (abfd)->e_type == ET_CORE
3940 && m->p_type == PT_NOTE))
3941 qsort (m->sections, (size_t) m->count, sizeof (asection *),
3944 /* An ELF segment (described by Elf_Internal_Phdr) may contain a
3945 number of sections with contents contributing to both p_filesz
3946 and p_memsz, followed by a number of sections with no contents
3947 that just contribute to p_memsz. In this loop, OFF tracks next
3948 available file offset for PT_LOAD and PT_NOTE segments. VOFF is
3949 an adjustment we use for segments that have no file contents
3950 but need zero filled memory allocation. */
3952 p->p_type = m->p_type;
3953 p->p_flags = m->p_flags;
3955 if (p->p_type == PT_LOAD
3958 bfd_size_type align;
3961 if ((abfd->flags & D_PAGED) != 0)
3962 align = bed->maxpagesize;
3965 unsigned int align_power = 0;
3966 for (i = 0, secpp = m->sections; i < m->count; i++, secpp++)
3968 unsigned int secalign;
3970 secalign = bfd_get_section_alignment (abfd, *secpp);
3971 if (secalign > align_power)
3972 align_power = secalign;
3974 align = (bfd_size_type) 1 << align_power;
3977 adjust = vma_page_aligned_bias (m->sections[0]->vma, off, align);
3980 && !m->includes_filehdr
3981 && !m->includes_phdrs
3982 && (ufile_ptr) off >= align)
3984 /* If the first section isn't loadable, the same holds for
3985 any other sections. Since the segment won't need file
3986 space, we can make p_offset overlap some prior segment.
3987 However, .tbss is special. If a segment starts with
3988 .tbss, we need to look at the next section to decide
3989 whether the segment has any loadable sections. */
3991 while ((m->sections[i]->flags & SEC_LOAD) == 0)
3993 if ((m->sections[i]->flags & SEC_THREAD_LOCAL) == 0
3997 voff = adjust - align;
4003 /* Make sure the .dynamic section is the first section in the
4004 PT_DYNAMIC segment. */
4005 else if (p->p_type == PT_DYNAMIC
4007 && strcmp (m->sections[0]->name, ".dynamic") != 0)
4010 (_("%B: The first section in the PT_DYNAMIC segment is not the .dynamic section"),
4012 bfd_set_error (bfd_error_bad_value);
4019 p->p_vaddr = m->sections[0]->vma;
4021 if (m->p_paddr_valid)
4022 p->p_paddr = m->p_paddr;
4023 else if (m->count == 0)
4026 p->p_paddr = m->sections[0]->lma;
4028 if (p->p_type == PT_LOAD
4029 && (abfd->flags & D_PAGED) != 0)
4030 p->p_align = bed->maxpagesize;
4031 else if (m->count == 0)
4032 p->p_align = 1 << bed->s->log_file_align;
4040 if (m->includes_filehdr)
4042 if (! m->p_flags_valid)
4045 p->p_filesz = bed->s->sizeof_ehdr;
4046 p->p_memsz = bed->s->sizeof_ehdr;
4049 BFD_ASSERT (p->p_type == PT_LOAD);
4051 if (p->p_vaddr < (bfd_vma) off)
4053 (*_bfd_error_handler)
4054 (_("%B: Not enough room for program headers, try linking with -N"),
4056 bfd_set_error (bfd_error_bad_value);
4061 if (! m->p_paddr_valid)
4064 if (p->p_type == PT_LOAD)
4066 filehdr_vaddr = p->p_vaddr;
4067 filehdr_paddr = p->p_paddr;
4071 if (m->includes_phdrs)
4073 if (! m->p_flags_valid)
4076 if (m->includes_filehdr)
4078 if (p->p_type == PT_LOAD)
4080 phdrs_vaddr = p->p_vaddr + bed->s->sizeof_ehdr;
4081 phdrs_paddr = p->p_paddr + bed->s->sizeof_ehdr;
4086 p->p_offset = bed->s->sizeof_ehdr;
4090 BFD_ASSERT (p->p_type == PT_LOAD);
4091 p->p_vaddr -= off - p->p_offset;
4092 if (! m->p_paddr_valid)
4093 p->p_paddr -= off - p->p_offset;
4096 if (p->p_type == PT_LOAD)
4098 phdrs_vaddr = p->p_vaddr;
4099 phdrs_paddr = p->p_paddr;
4102 phdrs_vaddr = bed->maxpagesize + bed->s->sizeof_ehdr;
4105 p->p_filesz += alloc * bed->s->sizeof_phdr;
4106 p->p_memsz += alloc * bed->s->sizeof_phdr;
4109 if (p->p_type == PT_LOAD
4110 || (p->p_type == PT_NOTE && bfd_get_format (abfd) == bfd_core))
4112 if (! m->includes_filehdr && ! m->includes_phdrs)
4113 p->p_offset = off + voff;
4118 adjust = off - (p->p_offset + p->p_filesz);
4119 p->p_filesz += adjust;
4120 p->p_memsz += adjust;
4124 for (i = 0, secpp = m->sections; i < m->count; i++, secpp++)
4128 bfd_size_type align;
4132 align = 1 << bfd_get_section_alignment (abfd, sec);
4134 if (p->p_type == PT_LOAD
4135 || p->p_type == PT_TLS)
4137 bfd_signed_vma adjust;
4139 if ((flags & SEC_LOAD) != 0)
4141 adjust = sec->lma - (p->p_paddr + p->p_filesz);
4144 (*_bfd_error_handler)
4145 (_("%B: section %A lma 0x%lx overlaps previous sections"),
4146 abfd, sec, (unsigned long) sec->lma);
4150 p->p_filesz += adjust;
4151 p->p_memsz += adjust;
4153 /* .tbss is special. It doesn't contribute to p_memsz of
4155 else if ((flags & SEC_THREAD_LOCAL) == 0
4156 || p->p_type == PT_TLS)
4158 /* The section VMA must equal the file position
4159 modulo the page size. */
4160 bfd_size_type page = align;
4161 if ((abfd->flags & D_PAGED) != 0)
4162 page = bed->maxpagesize;
4163 adjust = vma_page_aligned_bias (sec->vma,
4164 p->p_vaddr + p->p_memsz,
4166 p->p_memsz += adjust;
4170 if (p->p_type == PT_NOTE && bfd_get_format (abfd) == bfd_core)
4172 /* The section at i == 0 is the one that actually contains
4178 p->p_filesz = sec->size;
4184 /* The rest are fake sections that shouldn't be written. */
4193 if (p->p_type == PT_LOAD)
4196 /* FIXME: The SEC_HAS_CONTENTS test here dates back to
4197 1997, and the exact reason for it isn't clear. One
4198 plausible explanation is that it is to work around
4199 a problem we have with linker scripts using data
4200 statements in NOLOAD sections. I don't think it
4201 makes a great deal of sense to have such a section
4202 assigned to a PT_LOAD segment, but apparently
4203 people do this. The data statement results in a
4204 bfd_data_link_order being built, and these need
4205 section contents to write into. Eventually, we get
4206 to _bfd_elf_write_object_contents which writes any
4207 section with contents to the output. Make room
4208 here for the write, so that following segments are
4210 if ((flags & SEC_LOAD) != 0
4211 || (flags & SEC_HAS_CONTENTS) != 0)
4215 if ((flags & SEC_LOAD) != 0)
4217 p->p_filesz += sec->size;
4218 p->p_memsz += sec->size;
4220 /* PR ld/594: Sections in note segments which are not loaded
4221 contribute to the file size but not the in-memory size. */
4222 else if (p->p_type == PT_NOTE
4223 && (flags & SEC_HAS_CONTENTS) != 0)
4224 p->p_filesz += sec->size;
4226 /* .tbss is special. It doesn't contribute to p_memsz of
4228 else if ((flags & SEC_THREAD_LOCAL) == 0
4229 || p->p_type == PT_TLS)
4230 p->p_memsz += sec->size;
4232 if (p->p_type == PT_TLS
4234 && (sec->flags & SEC_HAS_CONTENTS) == 0)
4236 struct bfd_link_order *o;
4237 bfd_vma tbss_size = 0;
4239 for (o = sec->link_order_head; o != NULL; o = o->next)
4240 if (tbss_size < o->offset + o->size)
4241 tbss_size = o->offset + o->size;
4243 p->p_memsz += tbss_size;
4246 if (align > p->p_align
4247 && (p->p_type != PT_LOAD || (abfd->flags & D_PAGED) == 0))
4251 if (! m->p_flags_valid)
4254 if ((flags & SEC_CODE) != 0)
4256 if ((flags & SEC_READONLY) == 0)
4262 /* Now that we have set the section file positions, we can set up
4263 the file positions for the non PT_LOAD segments. */
4264 for (m = elf_tdata (abfd)->segment_map, p = phdrs;
4268 if (p->p_type != PT_LOAD && m->count > 0)
4270 BFD_ASSERT (! m->includes_filehdr && ! m->includes_phdrs);
4271 /* If the section has not yet been assigned a file position,
4272 do so now. The ARM BPABI requires that .dynamic section
4273 not be marked SEC_ALLOC because it is not part of any
4274 PT_LOAD segment, so it will not be processed above. */
4275 if (p->p_type == PT_DYNAMIC && m->sections[0]->filepos == 0)
4278 Elf_Internal_Shdr ** const i_shdrpp = elf_elfsections (abfd);
4281 while (i_shdrpp[i]->bfd_section != m->sections[0])
4283 off = (_bfd_elf_assign_file_position_for_section
4284 (i_shdrpp[i], off, TRUE));
4285 p->p_filesz = m->sections[0]->size;
4287 p->p_offset = m->sections[0]->filepos;
4291 if (m->includes_filehdr)
4293 p->p_vaddr = filehdr_vaddr;
4294 if (! m->p_paddr_valid)
4295 p->p_paddr = filehdr_paddr;
4297 else if (m->includes_phdrs)
4299 p->p_vaddr = phdrs_vaddr;
4300 if (! m->p_paddr_valid)
4301 p->p_paddr = phdrs_paddr;
4303 else if (p->p_type == PT_GNU_RELRO)
4305 Elf_Internal_Phdr *lp;
4307 for (lp = phdrs; lp < phdrs + count; ++lp)
4309 if (lp->p_type == PT_LOAD
4310 && lp->p_vaddr <= link_info->relro_end
4311 && lp->p_vaddr >= link_info->relro_start
4312 && lp->p_vaddr + lp->p_filesz
4313 >= link_info->relro_end)
4317 if (lp < phdrs + count
4318 && link_info->relro_end > lp->p_vaddr)
4320 p->p_vaddr = lp->p_vaddr;
4321 p->p_paddr = lp->p_paddr;
4322 p->p_offset = lp->p_offset;
4323 p->p_filesz = link_info->relro_end - lp->p_vaddr;
4324 p->p_memsz = p->p_filesz;
4326 p->p_flags = (lp->p_flags & ~PF_W);
4330 memset (p, 0, sizeof *p);
4331 p->p_type = PT_NULL;
4337 /* Clear out any program headers we allocated but did not use. */
4338 for (; count < alloc; count++, p++)
4340 memset (p, 0, sizeof *p);
4341 p->p_type = PT_NULL;
4344 elf_tdata (abfd)->phdr = phdrs;
4346 elf_tdata (abfd)->next_file_pos = off;
4348 /* Write out the program headers. */
4349 if (bfd_seek (abfd, (bfd_signed_vma) bed->s->sizeof_ehdr, SEEK_SET) != 0
4350 || bed->s->write_out_phdrs (abfd, phdrs, alloc) != 0)
4356 /* Get the size of the program header.
4358 If this is called by the linker before any of the section VMA's are set, it
4359 can't calculate the correct value for a strange memory layout. This only
4360 happens when SIZEOF_HEADERS is used in a linker script. In this case,
4361 SORTED_HDRS is NULL and we assume the normal scenario of one text and one
4362 data segment (exclusive of .interp and .dynamic).
4364 ??? User written scripts must either not use SIZEOF_HEADERS, or assume there
4365 will be two segments. */
4367 static bfd_size_type
4368 get_program_header_size (bfd *abfd)
4372 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
4374 /* We can't return a different result each time we're called. */
4375 if (elf_tdata (abfd)->program_header_size != 0)
4376 return elf_tdata (abfd)->program_header_size;
4378 if (elf_tdata (abfd)->segment_map != NULL)
4380 struct elf_segment_map *m;
4383 for (m = elf_tdata (abfd)->segment_map; m != NULL; m = m->next)
4385 elf_tdata (abfd)->program_header_size = segs * bed->s->sizeof_phdr;
4386 return elf_tdata (abfd)->program_header_size;
4389 /* Assume we will need exactly two PT_LOAD segments: one for text
4390 and one for data. */
4393 s = bfd_get_section_by_name (abfd, ".interp");
4394 if (s != NULL && (s->flags & SEC_LOAD) != 0)
4396 /* If we have a loadable interpreter section, we need a
4397 PT_INTERP segment. In this case, assume we also need a
4398 PT_PHDR segment, although that may not be true for all
4403 if (bfd_get_section_by_name (abfd, ".dynamic") != NULL)
4405 /* We need a PT_DYNAMIC segment. */
4409 if (elf_tdata (abfd)->eh_frame_hdr)
4411 /* We need a PT_GNU_EH_FRAME segment. */
4415 if (elf_tdata (abfd)->stack_flags)
4417 /* We need a PT_GNU_STACK segment. */
4421 if (elf_tdata (abfd)->relro)
4423 /* We need a PT_GNU_RELRO segment. */
4427 for (s = abfd->sections; s != NULL; s = s->next)
4429 if ((s->flags & SEC_LOAD) != 0
4430 && strncmp (s->name, ".note", 5) == 0)
4432 /* We need a PT_NOTE segment. */
4437 for (s = abfd->sections; s != NULL; s = s->next)
4439 if (s->flags & SEC_THREAD_LOCAL)
4441 /* We need a PT_TLS segment. */
4447 /* Let the backend count up any program headers it might need. */
4448 if (bed->elf_backend_additional_program_headers)
4452 a = (*bed->elf_backend_additional_program_headers) (abfd);
4458 elf_tdata (abfd)->program_header_size = segs * bed->s->sizeof_phdr;
4459 return elf_tdata (abfd)->program_header_size;
4462 /* Work out the file positions of all the sections. This is called by
4463 _bfd_elf_compute_section_file_positions. All the section sizes and
4464 VMAs must be known before this is called.
4466 Reloc sections come in two flavours: Those processed specially as
4467 "side-channel" data attached to a section to which they apply, and
4468 those that bfd doesn't process as relocations. The latter sort are
4469 stored in a normal bfd section by bfd_section_from_shdr. We don't
4470 consider the former sort here, unless they form part of the loadable
4471 image. Reloc sections not assigned here will be handled later by
4472 assign_file_positions_for_relocs.
4474 We also don't set the positions of the .symtab and .strtab here. */
4477 assign_file_positions_except_relocs (bfd *abfd,
4478 struct bfd_link_info *link_info)
4480 struct elf_obj_tdata * const tdata = elf_tdata (abfd);
4481 Elf_Internal_Ehdr * const i_ehdrp = elf_elfheader (abfd);
4482 Elf_Internal_Shdr ** const i_shdrpp = elf_elfsections (abfd);
4483 unsigned int num_sec = elf_numsections (abfd);
4485 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
4487 if ((abfd->flags & (EXEC_P | DYNAMIC)) == 0
4488 && bfd_get_format (abfd) != bfd_core)
4490 Elf_Internal_Shdr **hdrpp;
4493 /* Start after the ELF header. */
4494 off = i_ehdrp->e_ehsize;
4496 /* We are not creating an executable, which means that we are
4497 not creating a program header, and that the actual order of
4498 the sections in the file is unimportant. */
4499 for (i = 1, hdrpp = i_shdrpp + 1; i < num_sec; i++, hdrpp++)
4501 Elf_Internal_Shdr *hdr;
4504 if (((hdr->sh_type == SHT_REL || hdr->sh_type == SHT_RELA)
4505 && hdr->bfd_section == NULL)
4506 || i == tdata->symtab_section
4507 || i == tdata->symtab_shndx_section
4508 || i == tdata->strtab_section)
4510 hdr->sh_offset = -1;
4513 off = _bfd_elf_assign_file_position_for_section (hdr, off, TRUE);
4515 if (i == SHN_LORESERVE - 1)
4517 i += SHN_HIRESERVE + 1 - SHN_LORESERVE;
4518 hdrpp += SHN_HIRESERVE + 1 - SHN_LORESERVE;
4525 Elf_Internal_Shdr **hdrpp;
4527 /* Assign file positions for the loaded sections based on the
4528 assignment of sections to segments. */
4529 if (! assign_file_positions_for_segments (abfd, link_info))
4532 /* Assign file positions for the other sections. */
4534 off = elf_tdata (abfd)->next_file_pos;
4535 for (i = 1, hdrpp = i_shdrpp + 1; i < num_sec; i++, hdrpp++)
4537 Elf_Internal_Shdr *hdr;
4540 if (hdr->bfd_section != NULL
4541 && hdr->bfd_section->filepos != 0)
4542 hdr->sh_offset = hdr->bfd_section->filepos;
4543 else if ((hdr->sh_flags & SHF_ALLOC) != 0)
4545 ((*_bfd_error_handler)
4546 (_("%B: warning: allocated section `%s' not in segment"),
4548 (hdr->bfd_section == NULL
4550 : hdr->bfd_section->name)));
4551 if ((abfd->flags & D_PAGED) != 0)
4552 off += vma_page_aligned_bias (hdr->sh_addr, off,
4555 off += vma_page_aligned_bias (hdr->sh_addr, off,
4557 off = _bfd_elf_assign_file_position_for_section (hdr, off,
4560 else if (((hdr->sh_type == SHT_REL || hdr->sh_type == SHT_RELA)
4561 && hdr->bfd_section == NULL)
4562 || hdr == i_shdrpp[tdata->symtab_section]
4563 || hdr == i_shdrpp[tdata->symtab_shndx_section]
4564 || hdr == i_shdrpp[tdata->strtab_section])
4565 hdr->sh_offset = -1;
4567 off = _bfd_elf_assign_file_position_for_section (hdr, off, TRUE);
4569 if (i == SHN_LORESERVE - 1)
4571 i += SHN_HIRESERVE + 1 - SHN_LORESERVE;
4572 hdrpp += SHN_HIRESERVE + 1 - SHN_LORESERVE;
4577 /* Place the section headers. */
4578 off = align_file_position (off, 1 << bed->s->log_file_align);
4579 i_ehdrp->e_shoff = off;
4580 off += i_ehdrp->e_shnum * i_ehdrp->e_shentsize;
4582 elf_tdata (abfd)->next_file_pos = off;
4588 prep_headers (bfd *abfd)
4590 Elf_Internal_Ehdr *i_ehdrp; /* Elf file header, internal form */
4591 Elf_Internal_Phdr *i_phdrp = 0; /* Program header table, internal form */
4592 Elf_Internal_Shdr **i_shdrp; /* Section header table, internal form */
4593 struct elf_strtab_hash *shstrtab;
4594 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
4596 i_ehdrp = elf_elfheader (abfd);
4597 i_shdrp = elf_elfsections (abfd);
4599 shstrtab = _bfd_elf_strtab_init ();
4600 if (shstrtab == NULL)
4603 elf_shstrtab (abfd) = shstrtab;
4605 i_ehdrp->e_ident[EI_MAG0] = ELFMAG0;
4606 i_ehdrp->e_ident[EI_MAG1] = ELFMAG1;
4607 i_ehdrp->e_ident[EI_MAG2] = ELFMAG2;
4608 i_ehdrp->e_ident[EI_MAG3] = ELFMAG3;
4610 i_ehdrp->e_ident[EI_CLASS] = bed->s->elfclass;
4611 i_ehdrp->e_ident[EI_DATA] =
4612 bfd_big_endian (abfd) ? ELFDATA2MSB : ELFDATA2LSB;
4613 i_ehdrp->e_ident[EI_VERSION] = bed->s->ev_current;
4615 if ((abfd->flags & DYNAMIC) != 0)
4616 i_ehdrp->e_type = ET_DYN;
4617 else if ((abfd->flags & EXEC_P) != 0)
4618 i_ehdrp->e_type = ET_EXEC;
4619 else if (bfd_get_format (abfd) == bfd_core)
4620 i_ehdrp->e_type = ET_CORE;
4622 i_ehdrp->e_type = ET_REL;
4624 switch (bfd_get_arch (abfd))
4626 case bfd_arch_unknown:
4627 i_ehdrp->e_machine = EM_NONE;
4630 /* There used to be a long list of cases here, each one setting
4631 e_machine to the same EM_* macro #defined as ELF_MACHINE_CODE
4632 in the corresponding bfd definition. To avoid duplication,
4633 the switch was removed. Machines that need special handling
4634 can generally do it in elf_backend_final_write_processing(),
4635 unless they need the information earlier than the final write.
4636 Such need can generally be supplied by replacing the tests for
4637 e_machine with the conditions used to determine it. */
4639 i_ehdrp->e_machine = bed->elf_machine_code;
4642 i_ehdrp->e_version = bed->s->ev_current;
4643 i_ehdrp->e_ehsize = bed->s->sizeof_ehdr;
4645 /* No program header, for now. */
4646 i_ehdrp->e_phoff = 0;
4647 i_ehdrp->e_phentsize = 0;
4648 i_ehdrp->e_phnum = 0;
4650 /* Each bfd section is section header entry. */
4651 i_ehdrp->e_entry = bfd_get_start_address (abfd);
4652 i_ehdrp->e_shentsize = bed->s->sizeof_shdr;
4654 /* If we're building an executable, we'll need a program header table. */
4655 if (abfd->flags & EXEC_P)
4656 /* It all happens later. */
4660 i_ehdrp->e_phentsize = 0;
4662 i_ehdrp->e_phoff = 0;
4665 elf_tdata (abfd)->symtab_hdr.sh_name =
4666 (unsigned int) _bfd_elf_strtab_add (shstrtab, ".symtab", FALSE);
4667 elf_tdata (abfd)->strtab_hdr.sh_name =
4668 (unsigned int) _bfd_elf_strtab_add (shstrtab, ".strtab", FALSE);
4669 elf_tdata (abfd)->shstrtab_hdr.sh_name =
4670 (unsigned int) _bfd_elf_strtab_add (shstrtab, ".shstrtab", FALSE);
4671 if (elf_tdata (abfd)->symtab_hdr.sh_name == (unsigned int) -1
4672 || elf_tdata (abfd)->symtab_hdr.sh_name == (unsigned int) -1
4673 || elf_tdata (abfd)->shstrtab_hdr.sh_name == (unsigned int) -1)
4679 /* Assign file positions for all the reloc sections which are not part
4680 of the loadable file image. */
4683 _bfd_elf_assign_file_positions_for_relocs (bfd *abfd)
4686 unsigned int i, num_sec;
4687 Elf_Internal_Shdr **shdrpp;
4689 off = elf_tdata (abfd)->next_file_pos;
4691 num_sec = elf_numsections (abfd);
4692 for (i = 1, shdrpp = elf_elfsections (abfd) + 1; i < num_sec; i++, shdrpp++)
4694 Elf_Internal_Shdr *shdrp;
4697 if ((shdrp->sh_type == SHT_REL || shdrp->sh_type == SHT_RELA)
4698 && shdrp->sh_offset == -1)
4699 off = _bfd_elf_assign_file_position_for_section (shdrp, off, TRUE);
4702 elf_tdata (abfd)->next_file_pos = off;
4706 _bfd_elf_write_object_contents (bfd *abfd)
4708 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
4709 Elf_Internal_Ehdr *i_ehdrp;
4710 Elf_Internal_Shdr **i_shdrp;
4712 unsigned int count, num_sec;
4714 if (! abfd->output_has_begun
4715 && ! _bfd_elf_compute_section_file_positions (abfd, NULL))
4718 i_shdrp = elf_elfsections (abfd);
4719 i_ehdrp = elf_elfheader (abfd);
4722 bfd_map_over_sections (abfd, bed->s->write_relocs, &failed);
4726 _bfd_elf_assign_file_positions_for_relocs (abfd);
4728 /* After writing the headers, we need to write the sections too... */
4729 num_sec = elf_numsections (abfd);
4730 for (count = 1; count < num_sec; count++)
4732 if (bed->elf_backend_section_processing)
4733 (*bed->elf_backend_section_processing) (abfd, i_shdrp[count]);
4734 if (i_shdrp[count]->contents)
4736 bfd_size_type amt = i_shdrp[count]->sh_size;
4738 if (bfd_seek (abfd, i_shdrp[count]->sh_offset, SEEK_SET) != 0
4739 || bfd_bwrite (i_shdrp[count]->contents, amt, abfd) != amt)
4742 if (count == SHN_LORESERVE - 1)
4743 count += SHN_HIRESERVE + 1 - SHN_LORESERVE;
4746 /* Write out the section header names. */
4747 if (bfd_seek (abfd, elf_tdata (abfd)->shstrtab_hdr.sh_offset, SEEK_SET) != 0
4748 || ! _bfd_elf_strtab_emit (abfd, elf_shstrtab (abfd)))
4751 if (bed->elf_backend_final_write_processing)
4752 (*bed->elf_backend_final_write_processing) (abfd,
4753 elf_tdata (abfd)->linker);
4755 return bed->s->write_shdrs_and_ehdr (abfd);
4759 _bfd_elf_write_corefile_contents (bfd *abfd)
4761 /* Hopefully this can be done just like an object file. */
4762 return _bfd_elf_write_object_contents (abfd);
4765 /* Given a section, search the header to find them. */
4768 _bfd_elf_section_from_bfd_section (bfd *abfd, struct bfd_section *asect)
4770 const struct elf_backend_data *bed;
4773 if (elf_section_data (asect) != NULL
4774 && elf_section_data (asect)->this_idx != 0)
4775 return elf_section_data (asect)->this_idx;
4777 if (bfd_is_abs_section (asect))
4779 else if (bfd_is_com_section (asect))
4781 else if (bfd_is_und_section (asect))
4785 Elf_Internal_Shdr **i_shdrp = elf_elfsections (abfd);
4786 int maxindex = elf_numsections (abfd);
4788 for (index = 1; index < maxindex; index++)
4790 Elf_Internal_Shdr *hdr = i_shdrp[index];
4792 if (hdr != NULL && hdr->bfd_section == asect)
4798 bed = get_elf_backend_data (abfd);
4799 if (bed->elf_backend_section_from_bfd_section)
4803 if ((*bed->elf_backend_section_from_bfd_section) (abfd, asect, &retval))
4808 bfd_set_error (bfd_error_nonrepresentable_section);
4813 /* Given a BFD symbol, return the index in the ELF symbol table, or -1
4817 _bfd_elf_symbol_from_bfd_symbol (bfd *abfd, asymbol **asym_ptr_ptr)
4819 asymbol *asym_ptr = *asym_ptr_ptr;
4821 flagword flags = asym_ptr->flags;
4823 /* When gas creates relocations against local labels, it creates its
4824 own symbol for the section, but does put the symbol into the
4825 symbol chain, so udata is 0. When the linker is generating
4826 relocatable output, this section symbol may be for one of the
4827 input sections rather than the output section. */
4828 if (asym_ptr->udata.i == 0
4829 && (flags & BSF_SECTION_SYM)
4830 && asym_ptr->section)
4834 if (asym_ptr->section->output_section != NULL)
4835 indx = asym_ptr->section->output_section->index;
4837 indx = asym_ptr->section->index;
4838 if (indx < elf_num_section_syms (abfd)
4839 && elf_section_syms (abfd)[indx] != NULL)
4840 asym_ptr->udata.i = elf_section_syms (abfd)[indx]->udata.i;
4843 idx = asym_ptr->udata.i;
4847 /* This case can occur when using --strip-symbol on a symbol
4848 which is used in a relocation entry. */
4849 (*_bfd_error_handler)
4850 (_("%B: symbol `%s' required but not present"),
4851 abfd, bfd_asymbol_name (asym_ptr));
4852 bfd_set_error (bfd_error_no_symbols);
4859 "elf_symbol_from_bfd_symbol 0x%.8lx, name = %s, sym num = %d, flags = 0x%.8lx%s\n",
4860 (long) asym_ptr, asym_ptr->name, idx, flags,
4861 elf_symbol_flags (flags));
4869 /* Copy private BFD data. This copies any program header information. */
4872 copy_private_bfd_data (bfd *ibfd, bfd *obfd)
4874 Elf_Internal_Ehdr *iehdr;
4875 struct elf_segment_map *map;
4876 struct elf_segment_map *map_first;
4877 struct elf_segment_map **pointer_to_map;
4878 Elf_Internal_Phdr *segment;
4881 unsigned int num_segments;
4882 bfd_boolean phdr_included = FALSE;
4883 bfd_vma maxpagesize;
4884 struct elf_segment_map *phdr_adjust_seg = NULL;
4885 unsigned int phdr_adjust_num = 0;
4886 const struct elf_backend_data *bed;
4888 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
4889 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
4892 if (elf_tdata (ibfd)->phdr == NULL)
4895 bed = get_elf_backend_data (ibfd);
4896 iehdr = elf_elfheader (ibfd);
4899 pointer_to_map = &map_first;
4901 num_segments = elf_elfheader (ibfd)->e_phnum;
4902 maxpagesize = get_elf_backend_data (obfd)->maxpagesize;
4904 /* Returns the end address of the segment + 1. */
4905 #define SEGMENT_END(segment, start) \
4906 (start + (segment->p_memsz > segment->p_filesz \
4907 ? segment->p_memsz : segment->p_filesz))
4909 #define SECTION_SIZE(section, segment) \
4910 (((section->flags & (SEC_HAS_CONTENTS | SEC_THREAD_LOCAL)) \
4911 != SEC_THREAD_LOCAL || segment->p_type == PT_TLS) \
4912 ? section->size : 0)
4914 /* Returns TRUE if the given section is contained within
4915 the given segment. VMA addresses are compared. */
4916 #define IS_CONTAINED_BY_VMA(section, segment) \
4917 (section->vma >= segment->p_vaddr \
4918 && (section->vma + SECTION_SIZE (section, segment) \
4919 <= (SEGMENT_END (segment, segment->p_vaddr))))
4921 /* Returns TRUE if the given section is contained within
4922 the given segment. LMA addresses are compared. */
4923 #define IS_CONTAINED_BY_LMA(section, segment, base) \
4924 (section->lma >= base \
4925 && (section->lma + SECTION_SIZE (section, segment) \
4926 <= SEGMENT_END (segment, base)))
4928 /* Special case: corefile "NOTE" section containing regs, prpsinfo etc. */
4929 #define IS_COREFILE_NOTE(p, s) \
4930 (p->p_type == PT_NOTE \
4931 && bfd_get_format (ibfd) == bfd_core \
4932 && s->vma == 0 && s->lma == 0 \
4933 && (bfd_vma) s->filepos >= p->p_offset \
4934 && ((bfd_vma) s->filepos + s->size \
4935 <= p->p_offset + p->p_filesz))
4937 /* The complicated case when p_vaddr is 0 is to handle the Solaris
4938 linker, which generates a PT_INTERP section with p_vaddr and
4939 p_memsz set to 0. */
4940 #define IS_SOLARIS_PT_INTERP(p, s) \
4942 && p->p_paddr == 0 \
4943 && p->p_memsz == 0 \
4944 && p->p_filesz > 0 \
4945 && (s->flags & SEC_HAS_CONTENTS) != 0 \
4947 && (bfd_vma) s->filepos >= p->p_offset \
4948 && ((bfd_vma) s->filepos + s->size \
4949 <= p->p_offset + p->p_filesz))
4951 /* Decide if the given section should be included in the given segment.
4952 A section will be included if:
4953 1. It is within the address space of the segment -- we use the LMA
4954 if that is set for the segment and the VMA otherwise,
4955 2. It is an allocated segment,
4956 3. There is an output section associated with it,
4957 4. The section has not already been allocated to a previous segment.
4958 5. PT_GNU_STACK segments do not include any sections.
4959 6. PT_TLS segment includes only SHF_TLS sections.
4960 7. SHF_TLS sections are only in PT_TLS or PT_LOAD segments.
4961 8. PT_DYNAMIC should not contain empty sections at the beginning
4962 (with the possible exception of .dynamic). */
4963 #define INCLUDE_SECTION_IN_SEGMENT(section, segment, bed) \
4964 ((((segment->p_paddr \
4965 ? IS_CONTAINED_BY_LMA (section, segment, segment->p_paddr) \
4966 : IS_CONTAINED_BY_VMA (section, segment)) \
4967 && (section->flags & SEC_ALLOC) != 0) \
4968 || IS_COREFILE_NOTE (segment, section)) \
4969 && section->output_section != NULL \
4970 && segment->p_type != PT_GNU_STACK \
4971 && (segment->p_type != PT_TLS \
4972 || (section->flags & SEC_THREAD_LOCAL)) \
4973 && (segment->p_type == PT_LOAD \
4974 || segment->p_type == PT_TLS \
4975 || (section->flags & SEC_THREAD_LOCAL) == 0) \
4976 && (segment->p_type != PT_DYNAMIC \
4977 || SECTION_SIZE (section, segment) > 0 \
4978 || (segment->p_paddr \
4979 ? segment->p_paddr != section->lma \
4980 : segment->p_vaddr != section->vma) \
4981 || (strcmp (bfd_get_section_name (ibfd, section), ".dynamic") \
4983 && ! section->segment_mark)
4985 /* Returns TRUE iff seg1 starts after the end of seg2. */
4986 #define SEGMENT_AFTER_SEGMENT(seg1, seg2, field) \
4987 (seg1->field >= SEGMENT_END (seg2, seg2->field))
4989 /* Returns TRUE iff seg1 and seg2 overlap. Segments overlap iff both
4990 their VMA address ranges and their LMA address ranges overlap.
4991 It is possible to have overlapping VMA ranges without overlapping LMA
4992 ranges. RedBoot images for example can have both .data and .bss mapped
4993 to the same VMA range, but with the .data section mapped to a different
4995 #define SEGMENT_OVERLAPS(seg1, seg2) \
4996 ( !(SEGMENT_AFTER_SEGMENT (seg1, seg2, p_vaddr) \
4997 || SEGMENT_AFTER_SEGMENT (seg2, seg1, p_vaddr)) \
4998 && !(SEGMENT_AFTER_SEGMENT (seg1, seg2, p_paddr) \
4999 || SEGMENT_AFTER_SEGMENT (seg2, seg1, p_paddr)))
5001 /* Initialise the segment mark field. */
5002 for (section = ibfd->sections; section != NULL; section = section->next)
5003 section->segment_mark = FALSE;
5005 /* Scan through the segments specified in the program header
5006 of the input BFD. For this first scan we look for overlaps
5007 in the loadable segments. These can be created by weird
5008 parameters to objcopy. Also, fix some solaris weirdness. */
5009 for (i = 0, segment = elf_tdata (ibfd)->phdr;
5014 Elf_Internal_Phdr *segment2;
5016 if (segment->p_type == PT_INTERP)
5017 for (section = ibfd->sections; section; section = section->next)
5018 if (IS_SOLARIS_PT_INTERP (segment, section))
5020 /* Mininal change so that the normal section to segment
5021 assignment code will work. */
5022 segment->p_vaddr = section->vma;
5026 if (segment->p_type != PT_LOAD)
5029 /* Determine if this segment overlaps any previous segments. */
5030 for (j = 0, segment2 = elf_tdata (ibfd)->phdr; j < i; j++, segment2 ++)
5032 bfd_signed_vma extra_length;
5034 if (segment2->p_type != PT_LOAD
5035 || ! SEGMENT_OVERLAPS (segment, segment2))
5038 /* Merge the two segments together. */
5039 if (segment2->p_vaddr < segment->p_vaddr)
5041 /* Extend SEGMENT2 to include SEGMENT and then delete
5044 SEGMENT_END (segment, segment->p_vaddr)
5045 - SEGMENT_END (segment2, segment2->p_vaddr);
5047 if (extra_length > 0)
5049 segment2->p_memsz += extra_length;
5050 segment2->p_filesz += extra_length;
5053 segment->p_type = PT_NULL;
5055 /* Since we have deleted P we must restart the outer loop. */
5057 segment = elf_tdata (ibfd)->phdr;
5062 /* Extend SEGMENT to include SEGMENT2 and then delete
5065 SEGMENT_END (segment2, segment2->p_vaddr)
5066 - SEGMENT_END (segment, segment->p_vaddr);
5068 if (extra_length > 0)
5070 segment->p_memsz += extra_length;
5071 segment->p_filesz += extra_length;
5074 segment2->p_type = PT_NULL;
5079 /* The second scan attempts to assign sections to segments. */
5080 for (i = 0, segment = elf_tdata (ibfd)->phdr;
5084 unsigned int section_count;
5085 asection ** sections;
5086 asection * output_section;
5088 bfd_vma matching_lma;
5089 bfd_vma suggested_lma;
5093 if (segment->p_type == PT_NULL)
5096 /* Compute how many sections might be placed into this segment. */
5097 for (section = ibfd->sections, section_count = 0;
5099 section = section->next)
5100 if (INCLUDE_SECTION_IN_SEGMENT (section, segment, bed))
5103 /* Allocate a segment map big enough to contain
5104 all of the sections we have selected. */
5105 amt = sizeof (struct elf_segment_map);
5106 amt += ((bfd_size_type) section_count - 1) * sizeof (asection *);
5107 map = bfd_alloc (obfd, amt);
5111 /* Initialise the fields of the segment map. Default to
5112 using the physical address of the segment in the input BFD. */
5114 map->p_type = segment->p_type;
5115 map->p_flags = segment->p_flags;
5116 map->p_flags_valid = 1;
5117 map->p_paddr = segment->p_paddr;
5118 map->p_paddr_valid = 1;
5120 /* Determine if this segment contains the ELF file header
5121 and if it contains the program headers themselves. */
5122 map->includes_filehdr = (segment->p_offset == 0
5123 && segment->p_filesz >= iehdr->e_ehsize);
5125 map->includes_phdrs = 0;
5127 if (! phdr_included || segment->p_type != PT_LOAD)
5129 map->includes_phdrs =
5130 (segment->p_offset <= (bfd_vma) iehdr->e_phoff
5131 && (segment->p_offset + segment->p_filesz
5132 >= ((bfd_vma) iehdr->e_phoff
5133 + iehdr->e_phnum * iehdr->e_phentsize)));
5135 if (segment->p_type == PT_LOAD && map->includes_phdrs)
5136 phdr_included = TRUE;
5139 if (section_count == 0)
5141 /* Special segments, such as the PT_PHDR segment, may contain
5142 no sections, but ordinary, loadable segments should contain
5143 something. They are allowed by the ELF spec however, so only
5144 a warning is produced. */
5145 if (segment->p_type == PT_LOAD)
5146 (*_bfd_error_handler)
5147 (_("%B: warning: Empty loadable segment detected, is this intentional ?\n"),
5151 *pointer_to_map = map;
5152 pointer_to_map = &map->next;
5157 /* Now scan the sections in the input BFD again and attempt
5158 to add their corresponding output sections to the segment map.
5159 The problem here is how to handle an output section which has
5160 been moved (ie had its LMA changed). There are four possibilities:
5162 1. None of the sections have been moved.
5163 In this case we can continue to use the segment LMA from the
5166 2. All of the sections have been moved by the same amount.
5167 In this case we can change the segment's LMA to match the LMA
5168 of the first section.
5170 3. Some of the sections have been moved, others have not.
5171 In this case those sections which have not been moved can be
5172 placed in the current segment which will have to have its size,
5173 and possibly its LMA changed, and a new segment or segments will
5174 have to be created to contain the other sections.
5176 4. The sections have been moved, but not by the same amount.
5177 In this case we can change the segment's LMA to match the LMA
5178 of the first section and we will have to create a new segment
5179 or segments to contain the other sections.
5181 In order to save time, we allocate an array to hold the section
5182 pointers that we are interested in. As these sections get assigned
5183 to a segment, they are removed from this array. */
5185 /* Gcc 2.96 miscompiles this code on mips. Don't do casting here
5186 to work around this long long bug. */
5187 amt = section_count * sizeof (asection *);
5188 sections = bfd_malloc (amt);
5189 if (sections == NULL)
5192 /* Step One: Scan for segment vs section LMA conflicts.
5193 Also add the sections to the section array allocated above.
5194 Also add the sections to the current segment. In the common
5195 case, where the sections have not been moved, this means that
5196 we have completely filled the segment, and there is nothing
5202 for (j = 0, section = ibfd->sections;
5204 section = section->next)
5206 if (INCLUDE_SECTION_IN_SEGMENT (section, segment, bed))
5208 output_section = section->output_section;
5210 sections[j ++] = section;
5212 /* The Solaris native linker always sets p_paddr to 0.
5213 We try to catch that case here, and set it to the
5214 correct value. Note - some backends require that
5215 p_paddr be left as zero. */
5216 if (segment->p_paddr == 0
5217 && segment->p_vaddr != 0
5218 && (! bed->want_p_paddr_set_to_zero)
5220 && output_section->lma != 0
5221 && (output_section->vma == (segment->p_vaddr
5222 + (map->includes_filehdr
5225 + (map->includes_phdrs
5227 * iehdr->e_phentsize)
5229 map->p_paddr = segment->p_vaddr;
5231 /* Match up the physical address of the segment with the
5232 LMA address of the output section. */
5233 if (IS_CONTAINED_BY_LMA (output_section, segment, map->p_paddr)
5234 || IS_COREFILE_NOTE (segment, section)
5235 || (bed->want_p_paddr_set_to_zero &&
5236 IS_CONTAINED_BY_VMA (output_section, segment))
5239 if (matching_lma == 0)
5240 matching_lma = output_section->lma;
5242 /* We assume that if the section fits within the segment
5243 then it does not overlap any other section within that
5245 map->sections[isec ++] = output_section;
5247 else if (suggested_lma == 0)
5248 suggested_lma = output_section->lma;
5252 BFD_ASSERT (j == section_count);
5254 /* Step Two: Adjust the physical address of the current segment,
5256 if (isec == section_count)
5258 /* All of the sections fitted within the segment as currently
5259 specified. This is the default case. Add the segment to
5260 the list of built segments and carry on to process the next
5261 program header in the input BFD. */
5262 map->count = section_count;
5263 *pointer_to_map = map;
5264 pointer_to_map = &map->next;
5271 if (matching_lma != 0)
5273 /* At least one section fits inside the current segment.
5274 Keep it, but modify its physical address to match the
5275 LMA of the first section that fitted. */
5276 map->p_paddr = matching_lma;
5280 /* None of the sections fitted inside the current segment.
5281 Change the current segment's physical address to match
5282 the LMA of the first section. */
5283 map->p_paddr = suggested_lma;
5286 /* Offset the segment physical address from the lma
5287 to allow for space taken up by elf headers. */
5288 if (map->includes_filehdr)
5289 map->p_paddr -= iehdr->e_ehsize;
5291 if (map->includes_phdrs)
5293 map->p_paddr -= iehdr->e_phnum * iehdr->e_phentsize;
5295 /* iehdr->e_phnum is just an estimate of the number
5296 of program headers that we will need. Make a note
5297 here of the number we used and the segment we chose
5298 to hold these headers, so that we can adjust the
5299 offset when we know the correct value. */
5300 phdr_adjust_num = iehdr->e_phnum;
5301 phdr_adjust_seg = map;
5305 /* Step Three: Loop over the sections again, this time assigning
5306 those that fit to the current segment and removing them from the
5307 sections array; but making sure not to leave large gaps. Once all
5308 possible sections have been assigned to the current segment it is
5309 added to the list of built segments and if sections still remain
5310 to be assigned, a new segment is constructed before repeating
5318 /* Fill the current segment with sections that fit. */
5319 for (j = 0; j < section_count; j++)
5321 section = sections[j];
5323 if (section == NULL)
5326 output_section = section->output_section;
5328 BFD_ASSERT (output_section != NULL);
5330 if (IS_CONTAINED_BY_LMA (output_section, segment, map->p_paddr)
5331 || IS_COREFILE_NOTE (segment, section))
5333 if (map->count == 0)
5335 /* If the first section in a segment does not start at
5336 the beginning of the segment, then something is
5338 if (output_section->lma !=
5340 + (map->includes_filehdr ? iehdr->e_ehsize : 0)
5341 + (map->includes_phdrs
5342 ? iehdr->e_phnum * iehdr->e_phentsize
5348 asection * prev_sec;
5350 prev_sec = map->sections[map->count - 1];
5352 /* If the gap between the end of the previous section
5353 and the start of this section is more than
5354 maxpagesize then we need to start a new segment. */
5355 if ((BFD_ALIGN (prev_sec->lma + prev_sec->size,
5357 < BFD_ALIGN (output_section->lma, maxpagesize))
5358 || ((prev_sec->lma + prev_sec->size)
5359 > output_section->lma))
5361 if (suggested_lma == 0)
5362 suggested_lma = output_section->lma;
5368 map->sections[map->count++] = output_section;
5371 section->segment_mark = TRUE;
5373 else if (suggested_lma == 0)
5374 suggested_lma = output_section->lma;
5377 BFD_ASSERT (map->count > 0);
5379 /* Add the current segment to the list of built segments. */
5380 *pointer_to_map = map;
5381 pointer_to_map = &map->next;
5383 if (isec < section_count)
5385 /* We still have not allocated all of the sections to
5386 segments. Create a new segment here, initialise it
5387 and carry on looping. */
5388 amt = sizeof (struct elf_segment_map);
5389 amt += ((bfd_size_type) section_count - 1) * sizeof (asection *);
5390 map = bfd_alloc (obfd, amt);
5397 /* Initialise the fields of the segment map. Set the physical
5398 physical address to the LMA of the first section that has
5399 not yet been assigned. */
5401 map->p_type = segment->p_type;
5402 map->p_flags = segment->p_flags;
5403 map->p_flags_valid = 1;
5404 map->p_paddr = suggested_lma;
5405 map->p_paddr_valid = 1;
5406 map->includes_filehdr = 0;
5407 map->includes_phdrs = 0;
5410 while (isec < section_count);
5415 /* The Solaris linker creates program headers in which all the
5416 p_paddr fields are zero. When we try to objcopy or strip such a
5417 file, we get confused. Check for this case, and if we find it
5418 reset the p_paddr_valid fields. */
5419 for (map = map_first; map != NULL; map = map->next)
5420 if (map->p_paddr != 0)
5423 for (map = map_first; map != NULL; map = map->next)
5424 map->p_paddr_valid = 0;
5426 elf_tdata (obfd)->segment_map = map_first;
5428 /* If we had to estimate the number of program headers that were
5429 going to be needed, then check our estimate now and adjust
5430 the offset if necessary. */
5431 if (phdr_adjust_seg != NULL)
5435 for (count = 0, map = map_first; map != NULL; map = map->next)
5438 if (count > phdr_adjust_num)
5439 phdr_adjust_seg->p_paddr
5440 -= (count - phdr_adjust_num) * iehdr->e_phentsize;
5445 #undef IS_CONTAINED_BY_VMA
5446 #undef IS_CONTAINED_BY_LMA
5447 #undef IS_COREFILE_NOTE
5448 #undef IS_SOLARIS_PT_INTERP
5449 #undef INCLUDE_SECTION_IN_SEGMENT
5450 #undef SEGMENT_AFTER_SEGMENT
5451 #undef SEGMENT_OVERLAPS
5455 /* Copy private section information. This copies over the entsize
5456 field, and sometimes the info field. */
5459 _bfd_elf_copy_private_section_data (bfd *ibfd,
5464 Elf_Internal_Shdr *ihdr, *ohdr;
5466 if (ibfd->xvec->flavour != bfd_target_elf_flavour
5467 || obfd->xvec->flavour != bfd_target_elf_flavour)
5470 ihdr = &elf_section_data (isec)->this_hdr;
5471 ohdr = &elf_section_data (osec)->this_hdr;
5473 ohdr->sh_entsize = ihdr->sh_entsize;
5475 if (ihdr->sh_type == SHT_SYMTAB
5476 || ihdr->sh_type == SHT_DYNSYM
5477 || ihdr->sh_type == SHT_GNU_verneed
5478 || ihdr->sh_type == SHT_GNU_verdef)
5479 ohdr->sh_info = ihdr->sh_info;
5481 /* Set things up for objcopy. The output SHT_GROUP section will
5482 have its elf_next_in_group pointing back to the input group
5484 elf_next_in_group (osec) = elf_next_in_group (isec);
5485 elf_group_name (osec) = elf_group_name (isec);
5487 osec->use_rela_p = isec->use_rela_p;
5492 /* Copy private header information. */
5495 _bfd_elf_copy_private_header_data (bfd *ibfd, bfd *obfd)
5497 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
5498 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
5501 /* Copy over private BFD data if it has not already been copied.
5502 This must be done here, rather than in the copy_private_bfd_data
5503 entry point, because the latter is called after the section
5504 contents have been set, which means that the program headers have
5505 already been worked out. */
5506 if (elf_tdata (obfd)->segment_map == NULL && elf_tdata (ibfd)->phdr != NULL)
5508 if (! copy_private_bfd_data (ibfd, obfd))
5515 /* Copy private symbol information. If this symbol is in a section
5516 which we did not map into a BFD section, try to map the section
5517 index correctly. We use special macro definitions for the mapped
5518 section indices; these definitions are interpreted by the
5519 swap_out_syms function. */
5521 #define MAP_ONESYMTAB (SHN_HIOS + 1)
5522 #define MAP_DYNSYMTAB (SHN_HIOS + 2)
5523 #define MAP_STRTAB (SHN_HIOS + 3)
5524 #define MAP_SHSTRTAB (SHN_HIOS + 4)
5525 #define MAP_SYM_SHNDX (SHN_HIOS + 5)
5528 _bfd_elf_copy_private_symbol_data (bfd *ibfd,
5533 elf_symbol_type *isym, *osym;
5535 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
5536 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
5539 isym = elf_symbol_from (ibfd, isymarg);
5540 osym = elf_symbol_from (obfd, osymarg);
5544 && bfd_is_abs_section (isym->symbol.section))
5548 shndx = isym->internal_elf_sym.st_shndx;
5549 if (shndx == elf_onesymtab (ibfd))
5550 shndx = MAP_ONESYMTAB;
5551 else if (shndx == elf_dynsymtab (ibfd))
5552 shndx = MAP_DYNSYMTAB;
5553 else if (shndx == elf_tdata (ibfd)->strtab_section)
5555 else if (shndx == elf_tdata (ibfd)->shstrtab_section)
5556 shndx = MAP_SHSTRTAB;
5557 else if (shndx == elf_tdata (ibfd)->symtab_shndx_section)
5558 shndx = MAP_SYM_SHNDX;
5559 osym->internal_elf_sym.st_shndx = shndx;
5565 /* Swap out the symbols. */
5568 swap_out_syms (bfd *abfd,
5569 struct bfd_strtab_hash **sttp,
5572 const struct elf_backend_data *bed;
5575 struct bfd_strtab_hash *stt;
5576 Elf_Internal_Shdr *symtab_hdr;
5577 Elf_Internal_Shdr *symtab_shndx_hdr;
5578 Elf_Internal_Shdr *symstrtab_hdr;
5579 bfd_byte *outbound_syms;
5580 bfd_byte *outbound_shndx;
5583 bfd_boolean name_local_sections;
5585 if (!elf_map_symbols (abfd))
5588 /* Dump out the symtabs. */
5589 stt = _bfd_elf_stringtab_init ();
5593 bed = get_elf_backend_data (abfd);
5594 symcount = bfd_get_symcount (abfd);
5595 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
5596 symtab_hdr->sh_type = SHT_SYMTAB;
5597 symtab_hdr->sh_entsize = bed->s->sizeof_sym;
5598 symtab_hdr->sh_size = symtab_hdr->sh_entsize * (symcount + 1);
5599 symtab_hdr->sh_info = elf_num_locals (abfd) + 1;
5600 symtab_hdr->sh_addralign = 1 << bed->s->log_file_align;
5602 symstrtab_hdr = &elf_tdata (abfd)->strtab_hdr;
5603 symstrtab_hdr->sh_type = SHT_STRTAB;
5605 amt = (bfd_size_type) (1 + symcount) * bed->s->sizeof_sym;
5606 outbound_syms = bfd_alloc (abfd, amt);
5607 if (outbound_syms == NULL)
5609 _bfd_stringtab_free (stt);
5612 symtab_hdr->contents = outbound_syms;
5614 outbound_shndx = NULL;
5615 symtab_shndx_hdr = &elf_tdata (abfd)->symtab_shndx_hdr;
5616 if (symtab_shndx_hdr->sh_name != 0)
5618 amt = (bfd_size_type) (1 + symcount) * sizeof (Elf_External_Sym_Shndx);
5619 outbound_shndx = bfd_zalloc (abfd, amt);
5620 if (outbound_shndx == NULL)
5622 _bfd_stringtab_free (stt);
5626 symtab_shndx_hdr->contents = outbound_shndx;
5627 symtab_shndx_hdr->sh_type = SHT_SYMTAB_SHNDX;
5628 symtab_shndx_hdr->sh_size = amt;
5629 symtab_shndx_hdr->sh_addralign = sizeof (Elf_External_Sym_Shndx);
5630 symtab_shndx_hdr->sh_entsize = sizeof (Elf_External_Sym_Shndx);
5633 /* Now generate the data (for "contents"). */
5635 /* Fill in zeroth symbol and swap it out. */
5636 Elf_Internal_Sym sym;
5642 sym.st_shndx = SHN_UNDEF;
5643 bed->s->swap_symbol_out (abfd, &sym, outbound_syms, outbound_shndx);
5644 outbound_syms += bed->s->sizeof_sym;
5645 if (outbound_shndx != NULL)
5646 outbound_shndx += sizeof (Elf_External_Sym_Shndx);
5650 = (bed->elf_backend_name_local_section_symbols
5651 && bed->elf_backend_name_local_section_symbols (abfd));
5653 syms = bfd_get_outsymbols (abfd);
5654 for (idx = 0; idx < symcount; idx++)
5656 Elf_Internal_Sym sym;
5657 bfd_vma value = syms[idx]->value;
5658 elf_symbol_type *type_ptr;
5659 flagword flags = syms[idx]->flags;
5662 if (!name_local_sections
5663 && (flags & (BSF_SECTION_SYM | BSF_GLOBAL)) == BSF_SECTION_SYM)
5665 /* Local section symbols have no name. */
5670 sym.st_name = (unsigned long) _bfd_stringtab_add (stt,
5673 if (sym.st_name == (unsigned long) -1)
5675 _bfd_stringtab_free (stt);
5680 type_ptr = elf_symbol_from (abfd, syms[idx]);
5682 if ((flags & BSF_SECTION_SYM) == 0
5683 && bfd_is_com_section (syms[idx]->section))
5685 /* ELF common symbols put the alignment into the `value' field,
5686 and the size into the `size' field. This is backwards from
5687 how BFD handles it, so reverse it here. */
5688 sym.st_size = value;
5689 if (type_ptr == NULL
5690 || type_ptr->internal_elf_sym.st_value == 0)
5691 sym.st_value = value >= 16 ? 16 : (1 << bfd_log2 (value));
5693 sym.st_value = type_ptr->internal_elf_sym.st_value;
5694 sym.st_shndx = _bfd_elf_section_from_bfd_section
5695 (abfd, syms[idx]->section);
5699 asection *sec = syms[idx]->section;
5702 if (sec->output_section)
5704 value += sec->output_offset;
5705 sec = sec->output_section;
5708 /* Don't add in the section vma for relocatable output. */
5709 if (! relocatable_p)
5711 sym.st_value = value;
5712 sym.st_size = type_ptr ? type_ptr->internal_elf_sym.st_size : 0;
5714 if (bfd_is_abs_section (sec)
5716 && type_ptr->internal_elf_sym.st_shndx != 0)
5718 /* This symbol is in a real ELF section which we did
5719 not create as a BFD section. Undo the mapping done
5720 by copy_private_symbol_data. */
5721 shndx = type_ptr->internal_elf_sym.st_shndx;
5725 shndx = elf_onesymtab (abfd);
5728 shndx = elf_dynsymtab (abfd);
5731 shndx = elf_tdata (abfd)->strtab_section;
5734 shndx = elf_tdata (abfd)->shstrtab_section;
5737 shndx = elf_tdata (abfd)->symtab_shndx_section;
5745 shndx = _bfd_elf_section_from_bfd_section (abfd, sec);
5751 /* Writing this would be a hell of a lot easier if
5752 we had some decent documentation on bfd, and
5753 knew what to expect of the library, and what to
5754 demand of applications. For example, it
5755 appears that `objcopy' might not set the
5756 section of a symbol to be a section that is
5757 actually in the output file. */
5758 sec2 = bfd_get_section_by_name (abfd, sec->name);
5761 _bfd_error_handler (_("\
5762 Unable to find equivalent output section for symbol '%s' from section '%s'"),
5763 syms[idx]->name ? syms[idx]->name : "<Local sym>",
5765 bfd_set_error (bfd_error_invalid_operation);
5766 _bfd_stringtab_free (stt);
5770 shndx = _bfd_elf_section_from_bfd_section (abfd, sec2);
5771 BFD_ASSERT (shndx != -1);
5775 sym.st_shndx = shndx;
5778 if ((flags & BSF_THREAD_LOCAL) != 0)
5780 else if ((flags & BSF_FUNCTION) != 0)
5782 else if ((flags & BSF_OBJECT) != 0)
5787 if (syms[idx]->section->flags & SEC_THREAD_LOCAL)
5790 /* Processor-specific types. */
5791 if (type_ptr != NULL
5792 && bed->elf_backend_get_symbol_type)
5793 type = ((*bed->elf_backend_get_symbol_type)
5794 (&type_ptr->internal_elf_sym, type));
5796 if (flags & BSF_SECTION_SYM)
5798 if (flags & BSF_GLOBAL)
5799 sym.st_info = ELF_ST_INFO (STB_GLOBAL, STT_SECTION);
5801 sym.st_info = ELF_ST_INFO (STB_LOCAL, STT_SECTION);
5803 else if (bfd_is_com_section (syms[idx]->section))
5804 sym.st_info = ELF_ST_INFO (STB_GLOBAL, type);
5805 else if (bfd_is_und_section (syms[idx]->section))
5806 sym.st_info = ELF_ST_INFO (((flags & BSF_WEAK)
5810 else if (flags & BSF_FILE)
5811 sym.st_info = ELF_ST_INFO (STB_LOCAL, STT_FILE);
5814 int bind = STB_LOCAL;
5816 if (flags & BSF_LOCAL)
5818 else if (flags & BSF_WEAK)
5820 else if (flags & BSF_GLOBAL)
5823 sym.st_info = ELF_ST_INFO (bind, type);
5826 if (type_ptr != NULL)
5827 sym.st_other = type_ptr->internal_elf_sym.st_other;
5831 bed->s->swap_symbol_out (abfd, &sym, outbound_syms, outbound_shndx);
5832 outbound_syms += bed->s->sizeof_sym;
5833 if (outbound_shndx != NULL)
5834 outbound_shndx += sizeof (Elf_External_Sym_Shndx);
5838 symstrtab_hdr->sh_size = _bfd_stringtab_size (stt);
5839 symstrtab_hdr->sh_type = SHT_STRTAB;
5841 symstrtab_hdr->sh_flags = 0;
5842 symstrtab_hdr->sh_addr = 0;
5843 symstrtab_hdr->sh_entsize = 0;
5844 symstrtab_hdr->sh_link = 0;
5845 symstrtab_hdr->sh_info = 0;
5846 symstrtab_hdr->sh_addralign = 1;
5851 /* Return the number of bytes required to hold the symtab vector.
5853 Note that we base it on the count plus 1, since we will null terminate
5854 the vector allocated based on this size. However, the ELF symbol table
5855 always has a dummy entry as symbol #0, so it ends up even. */
5858 _bfd_elf_get_symtab_upper_bound (bfd *abfd)
5862 Elf_Internal_Shdr *hdr = &elf_tdata (abfd)->symtab_hdr;
5864 symcount = hdr->sh_size / get_elf_backend_data (abfd)->s->sizeof_sym;
5865 symtab_size = (symcount + 1) * (sizeof (asymbol *));
5867 symtab_size -= sizeof (asymbol *);
5873 _bfd_elf_get_dynamic_symtab_upper_bound (bfd *abfd)
5877 Elf_Internal_Shdr *hdr = &elf_tdata (abfd)->dynsymtab_hdr;
5879 if (elf_dynsymtab (abfd) == 0)
5881 bfd_set_error (bfd_error_invalid_operation);
5885 symcount = hdr->sh_size / get_elf_backend_data (abfd)->s->sizeof_sym;
5886 symtab_size = (symcount + 1) * (sizeof (asymbol *));
5888 symtab_size -= sizeof (asymbol *);
5894 _bfd_elf_get_reloc_upper_bound (bfd *abfd ATTRIBUTE_UNUSED,
5897 return (asect->reloc_count + 1) * sizeof (arelent *);
5900 /* Canonicalize the relocs. */
5903 _bfd_elf_canonicalize_reloc (bfd *abfd,
5910 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
5912 if (! bed->s->slurp_reloc_table (abfd, section, symbols, FALSE))
5915 tblptr = section->relocation;
5916 for (i = 0; i < section->reloc_count; i++)
5917 *relptr++ = tblptr++;
5921 return section->reloc_count;
5925 _bfd_elf_canonicalize_symtab (bfd *abfd, asymbol **allocation)
5927 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
5928 long symcount = bed->s->slurp_symbol_table (abfd, allocation, FALSE);
5931 bfd_get_symcount (abfd) = symcount;
5936 _bfd_elf_canonicalize_dynamic_symtab (bfd *abfd,
5937 asymbol **allocation)
5939 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
5940 long symcount = bed->s->slurp_symbol_table (abfd, allocation, TRUE);
5943 bfd_get_dynamic_symcount (abfd) = symcount;
5947 /* Return the size required for the dynamic reloc entries. Any loadable
5948 section that was actually installed in the BFD, and has type SHT_REL
5949 or SHT_RELA, and uses the dynamic symbol table, is considered to be a
5950 dynamic reloc section. */
5953 _bfd_elf_get_dynamic_reloc_upper_bound (bfd *abfd)
5958 if (elf_dynsymtab (abfd) == 0)
5960 bfd_set_error (bfd_error_invalid_operation);
5964 ret = sizeof (arelent *);
5965 for (s = abfd->sections; s != NULL; s = s->next)
5966 if ((s->flags & SEC_LOAD) != 0
5967 && elf_section_data (s)->this_hdr.sh_link == elf_dynsymtab (abfd)
5968 && (elf_section_data (s)->this_hdr.sh_type == SHT_REL
5969 || elf_section_data (s)->this_hdr.sh_type == SHT_RELA))
5970 ret += ((s->size / elf_section_data (s)->this_hdr.sh_entsize)
5971 * sizeof (arelent *));
5976 /* Canonicalize the dynamic relocation entries. Note that we return the
5977 dynamic relocations as a single block, although they are actually
5978 associated with particular sections; the interface, which was
5979 designed for SunOS style shared libraries, expects that there is only
5980 one set of dynamic relocs. Any loadable section that was actually
5981 installed in the BFD, and has type SHT_REL or SHT_RELA, and uses the
5982 dynamic symbol table, is considered to be a dynamic reloc section. */
5985 _bfd_elf_canonicalize_dynamic_reloc (bfd *abfd,
5989 bfd_boolean (*slurp_relocs) (bfd *, asection *, asymbol **, bfd_boolean);
5993 if (elf_dynsymtab (abfd) == 0)
5995 bfd_set_error (bfd_error_invalid_operation);
5999 slurp_relocs = get_elf_backend_data (abfd)->s->slurp_reloc_table;
6001 for (s = abfd->sections; s != NULL; s = s->next)
6003 if ((s->flags & SEC_LOAD) != 0
6004 && elf_section_data (s)->this_hdr.sh_link == elf_dynsymtab (abfd)
6005 && (elf_section_data (s)->this_hdr.sh_type == SHT_REL
6006 || elf_section_data (s)->this_hdr.sh_type == SHT_RELA))
6011 if (! (*slurp_relocs) (abfd, s, syms, TRUE))
6013 count = s->size / elf_section_data (s)->this_hdr.sh_entsize;
6015 for (i = 0; i < count; i++)
6026 /* Read in the version information. */
6029 _bfd_elf_slurp_version_tables (bfd *abfd, bfd_boolean default_imported_symver)
6031 bfd_byte *contents = NULL;
6033 unsigned int freeidx = 0;
6035 if (elf_dynverref (abfd) != 0)
6037 Elf_Internal_Shdr *hdr;
6038 Elf_External_Verneed *everneed;
6039 Elf_Internal_Verneed *iverneed;
6042 hdr = &elf_tdata (abfd)->dynverref_hdr;
6044 amt = (bfd_size_type) hdr->sh_info * sizeof (Elf_Internal_Verneed);
6045 elf_tdata (abfd)->verref = bfd_zalloc (abfd, amt);
6046 if (elf_tdata (abfd)->verref == NULL)
6049 elf_tdata (abfd)->cverrefs = hdr->sh_info;
6051 contents = bfd_malloc (hdr->sh_size);
6052 if (contents == NULL)
6054 if (bfd_seek (abfd, hdr->sh_offset, SEEK_SET) != 0
6055 || bfd_bread (contents, hdr->sh_size, abfd) != hdr->sh_size)
6058 everneed = (Elf_External_Verneed *) contents;
6059 iverneed = elf_tdata (abfd)->verref;
6060 for (i = 0; i < hdr->sh_info; i++, iverneed++)
6062 Elf_External_Vernaux *evernaux;
6063 Elf_Internal_Vernaux *ivernaux;
6066 _bfd_elf_swap_verneed_in (abfd, everneed, iverneed);
6068 iverneed->vn_bfd = abfd;
6070 iverneed->vn_filename =
6071 bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
6073 if (iverneed->vn_filename == NULL)
6076 amt = iverneed->vn_cnt;
6077 amt *= sizeof (Elf_Internal_Vernaux);
6078 iverneed->vn_auxptr = bfd_alloc (abfd, amt);
6080 evernaux = ((Elf_External_Vernaux *)
6081 ((bfd_byte *) everneed + iverneed->vn_aux));
6082 ivernaux = iverneed->vn_auxptr;
6083 for (j = 0; j < iverneed->vn_cnt; j++, ivernaux++)
6085 _bfd_elf_swap_vernaux_in (abfd, evernaux, ivernaux);
6087 ivernaux->vna_nodename =
6088 bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
6089 ivernaux->vna_name);
6090 if (ivernaux->vna_nodename == NULL)
6093 if (j + 1 < iverneed->vn_cnt)
6094 ivernaux->vna_nextptr = ivernaux + 1;
6096 ivernaux->vna_nextptr = NULL;
6098 evernaux = ((Elf_External_Vernaux *)
6099 ((bfd_byte *) evernaux + ivernaux->vna_next));
6101 if (ivernaux->vna_other > freeidx)
6102 freeidx = ivernaux->vna_other;
6105 if (i + 1 < hdr->sh_info)
6106 iverneed->vn_nextref = iverneed + 1;
6108 iverneed->vn_nextref = NULL;
6110 everneed = ((Elf_External_Verneed *)
6111 ((bfd_byte *) everneed + iverneed->vn_next));
6118 if (elf_dynverdef (abfd) != 0)
6120 Elf_Internal_Shdr *hdr;
6121 Elf_External_Verdef *everdef;
6122 Elf_Internal_Verdef *iverdef;
6123 Elf_Internal_Verdef *iverdefarr;
6124 Elf_Internal_Verdef iverdefmem;
6126 unsigned int maxidx;
6128 hdr = &elf_tdata (abfd)->dynverdef_hdr;
6130 contents = bfd_malloc (hdr->sh_size);
6131 if (contents == NULL)
6133 if (bfd_seek (abfd, hdr->sh_offset, SEEK_SET) != 0
6134 || bfd_bread (contents, hdr->sh_size, abfd) != hdr->sh_size)
6137 /* We know the number of entries in the section but not the maximum
6138 index. Therefore we have to run through all entries and find
6140 everdef = (Elf_External_Verdef *) contents;
6142 for (i = 0; i < hdr->sh_info; ++i)
6144 _bfd_elf_swap_verdef_in (abfd, everdef, &iverdefmem);
6146 if ((iverdefmem.vd_ndx & ((unsigned) VERSYM_VERSION)) > maxidx)
6147 maxidx = iverdefmem.vd_ndx & ((unsigned) VERSYM_VERSION);
6149 everdef = ((Elf_External_Verdef *)
6150 ((bfd_byte *) everdef + iverdefmem.vd_next));
6153 if (default_imported_symver)
6155 if (freeidx > maxidx)
6160 amt = (bfd_size_type) maxidx * sizeof (Elf_Internal_Verdef);
6161 elf_tdata (abfd)->verdef = bfd_zalloc (abfd, amt);
6162 if (elf_tdata (abfd)->verdef == NULL)
6165 elf_tdata (abfd)->cverdefs = maxidx;
6167 everdef = (Elf_External_Verdef *) contents;
6168 iverdefarr = elf_tdata (abfd)->verdef;
6169 for (i = 0; i < hdr->sh_info; i++)
6171 Elf_External_Verdaux *everdaux;
6172 Elf_Internal_Verdaux *iverdaux;
6175 _bfd_elf_swap_verdef_in (abfd, everdef, &iverdefmem);
6177 iverdef = &iverdefarr[(iverdefmem.vd_ndx & VERSYM_VERSION) - 1];
6178 memcpy (iverdef, &iverdefmem, sizeof (Elf_Internal_Verdef));
6180 iverdef->vd_bfd = abfd;
6182 amt = (bfd_size_type) iverdef->vd_cnt * sizeof (Elf_Internal_Verdaux);
6183 iverdef->vd_auxptr = bfd_alloc (abfd, amt);
6184 if (iverdef->vd_auxptr == NULL)
6187 everdaux = ((Elf_External_Verdaux *)
6188 ((bfd_byte *) everdef + iverdef->vd_aux));
6189 iverdaux = iverdef->vd_auxptr;
6190 for (j = 0; j < iverdef->vd_cnt; j++, iverdaux++)
6192 _bfd_elf_swap_verdaux_in (abfd, everdaux, iverdaux);
6194 iverdaux->vda_nodename =
6195 bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
6196 iverdaux->vda_name);
6197 if (iverdaux->vda_nodename == NULL)
6200 if (j + 1 < iverdef->vd_cnt)
6201 iverdaux->vda_nextptr = iverdaux + 1;
6203 iverdaux->vda_nextptr = NULL;
6205 everdaux = ((Elf_External_Verdaux *)
6206 ((bfd_byte *) everdaux + iverdaux->vda_next));
6209 iverdef->vd_nodename = iverdef->vd_auxptr->vda_nodename;
6211 if (i + 1 < hdr->sh_info)
6212 iverdef->vd_nextdef = iverdef + 1;
6214 iverdef->vd_nextdef = NULL;
6216 everdef = ((Elf_External_Verdef *)
6217 ((bfd_byte *) everdef + iverdef->vd_next));
6223 else if (default_imported_symver)
6230 amt = (bfd_size_type) freeidx * sizeof (Elf_Internal_Verdef);
6231 elf_tdata (abfd)->verdef = bfd_zalloc (abfd, amt);
6232 if (elf_tdata (abfd)->verdef == NULL)
6235 elf_tdata (abfd)->cverdefs = freeidx;
6238 /* Create a default version based on the soname. */
6239 if (default_imported_symver)
6241 Elf_Internal_Verdef *iverdef;
6242 Elf_Internal_Verdaux *iverdaux;
6244 iverdef = &elf_tdata (abfd)->verdef[freeidx - 1];;
6246 iverdef->vd_version = VER_DEF_CURRENT;
6247 iverdef->vd_flags = 0;
6248 iverdef->vd_ndx = freeidx;
6249 iverdef->vd_cnt = 1;
6251 iverdef->vd_bfd = abfd;
6253 iverdef->vd_nodename = bfd_elf_get_dt_soname (abfd);
6254 if (iverdef->vd_nodename == NULL)
6256 iverdef->vd_nextdef = NULL;
6257 amt = (bfd_size_type) sizeof (Elf_Internal_Verdaux);
6258 iverdef->vd_auxptr = bfd_alloc (abfd, amt);
6260 iverdaux = iverdef->vd_auxptr;
6261 iverdaux->vda_nodename = iverdef->vd_nodename;
6262 iverdaux->vda_nextptr = NULL;
6268 if (contents != NULL)
6274 _bfd_elf_make_empty_symbol (bfd *abfd)
6276 elf_symbol_type *newsym;
6277 bfd_size_type amt = sizeof (elf_symbol_type);
6279 newsym = bfd_zalloc (abfd, amt);
6284 newsym->symbol.the_bfd = abfd;
6285 return &newsym->symbol;
6290 _bfd_elf_get_symbol_info (bfd *abfd ATTRIBUTE_UNUSED,
6294 bfd_symbol_info (symbol, ret);
6297 /* Return whether a symbol name implies a local symbol. Most targets
6298 use this function for the is_local_label_name entry point, but some
6302 _bfd_elf_is_local_label_name (bfd *abfd ATTRIBUTE_UNUSED,
6305 /* Normal local symbols start with ``.L''. */
6306 if (name[0] == '.' && name[1] == 'L')
6309 /* At least some SVR4 compilers (e.g., UnixWare 2.1 cc) generate
6310 DWARF debugging symbols starting with ``..''. */
6311 if (name[0] == '.' && name[1] == '.')
6314 /* gcc will sometimes generate symbols beginning with ``_.L_'' when
6315 emitting DWARF debugging output. I suspect this is actually a
6316 small bug in gcc (it calls ASM_OUTPUT_LABEL when it should call
6317 ASM_GENERATE_INTERNAL_LABEL, and this causes the leading
6318 underscore to be emitted on some ELF targets). For ease of use,
6319 we treat such symbols as local. */
6320 if (name[0] == '_' && name[1] == '.' && name[2] == 'L' && name[3] == '_')
6327 _bfd_elf_get_lineno (bfd *abfd ATTRIBUTE_UNUSED,
6328 asymbol *symbol ATTRIBUTE_UNUSED)
6335 _bfd_elf_set_arch_mach (bfd *abfd,
6336 enum bfd_architecture arch,
6337 unsigned long machine)
6339 /* If this isn't the right architecture for this backend, and this
6340 isn't the generic backend, fail. */
6341 if (arch != get_elf_backend_data (abfd)->arch
6342 && arch != bfd_arch_unknown
6343 && get_elf_backend_data (abfd)->arch != bfd_arch_unknown)
6346 return bfd_default_set_arch_mach (abfd, arch, machine);
6349 /* Find the function to a particular section and offset,
6350 for error reporting. */
6353 elf_find_function (bfd *abfd ATTRIBUTE_UNUSED,
6357 const char **filename_ptr,
6358 const char **functionname_ptr)
6360 const char *filename;
6361 asymbol *func, *file;
6364 /* ??? Given multiple file symbols, it is impossible to reliably
6365 choose the right file name for global symbols. File symbols are
6366 local symbols, and thus all file symbols must sort before any
6367 global symbols. The ELF spec may be interpreted to say that a
6368 file symbol must sort before other local symbols, but currently
6369 ld -r doesn't do this. So, for ld -r output, it is possible to
6370 make a better choice of file name for local symbols by ignoring
6371 file symbols appearing after a given local symbol. */
6372 enum { nothing_seen, symbol_seen, file_after_symbol_seen } state;
6378 state = nothing_seen;
6380 for (p = symbols; *p != NULL; p++)
6384 q = (elf_symbol_type *) *p;
6386 switch (ELF_ST_TYPE (q->internal_elf_sym.st_info))
6392 if (state == symbol_seen)
6393 state = file_after_symbol_seen;
6399 if (bfd_get_section (&q->symbol) == section
6400 && q->symbol.value >= low_func
6401 && q->symbol.value <= offset)
6403 func = (asymbol *) q;
6404 low_func = q->symbol.value;
6407 else if (ELF_ST_BIND (q->internal_elf_sym.st_info) != STB_LOCAL
6408 && state == file_after_symbol_seen)
6411 filename = bfd_asymbol_name (file);
6415 if (state == nothing_seen)
6416 state = symbol_seen;
6423 *filename_ptr = filename;
6424 if (functionname_ptr)
6425 *functionname_ptr = bfd_asymbol_name (func);
6430 /* Find the nearest line to a particular section and offset,
6431 for error reporting. */
6434 _bfd_elf_find_nearest_line (bfd *abfd,
6438 const char **filename_ptr,
6439 const char **functionname_ptr,
6440 unsigned int *line_ptr)
6444 if (_bfd_dwarf1_find_nearest_line (abfd, section, symbols, offset,
6445 filename_ptr, functionname_ptr,
6448 if (!*functionname_ptr)
6449 elf_find_function (abfd, section, symbols, offset,
6450 *filename_ptr ? NULL : filename_ptr,
6456 if (_bfd_dwarf2_find_nearest_line (abfd, section, symbols, offset,
6457 filename_ptr, functionname_ptr,
6459 &elf_tdata (abfd)->dwarf2_find_line_info))
6461 if (!*functionname_ptr)
6462 elf_find_function (abfd, section, symbols, offset,
6463 *filename_ptr ? NULL : filename_ptr,
6469 if (! _bfd_stab_section_find_nearest_line (abfd, symbols, section, offset,
6470 &found, filename_ptr,
6471 functionname_ptr, line_ptr,
6472 &elf_tdata (abfd)->line_info))
6474 if (found && (*functionname_ptr || *line_ptr))
6477 if (symbols == NULL)
6480 if (! elf_find_function (abfd, section, symbols, offset,
6481 filename_ptr, functionname_ptr))
6489 _bfd_elf_sizeof_headers (bfd *abfd, bfd_boolean reloc)
6493 ret = get_elf_backend_data (abfd)->s->sizeof_ehdr;
6495 ret += get_program_header_size (abfd);
6500 _bfd_elf_set_section_contents (bfd *abfd,
6502 const void *location,
6504 bfd_size_type count)
6506 Elf_Internal_Shdr *hdr;
6509 if (! abfd->output_has_begun
6510 && ! _bfd_elf_compute_section_file_positions (abfd, NULL))
6513 hdr = &elf_section_data (section)->this_hdr;
6514 pos = hdr->sh_offset + offset;
6515 if (bfd_seek (abfd, pos, SEEK_SET) != 0
6516 || bfd_bwrite (location, count, abfd) != count)
6523 _bfd_elf_no_info_to_howto (bfd *abfd ATTRIBUTE_UNUSED,
6524 arelent *cache_ptr ATTRIBUTE_UNUSED,
6525 Elf_Internal_Rela *dst ATTRIBUTE_UNUSED)
6530 /* Try to convert a non-ELF reloc into an ELF one. */
6533 _bfd_elf_validate_reloc (bfd *abfd, arelent *areloc)
6535 /* Check whether we really have an ELF howto. */
6537 if ((*areloc->sym_ptr_ptr)->the_bfd->xvec != abfd->xvec)
6539 bfd_reloc_code_real_type code;
6540 reloc_howto_type *howto;
6542 /* Alien reloc: Try to determine its type to replace it with an
6543 equivalent ELF reloc. */
6545 if (areloc->howto->pc_relative)
6547 switch (areloc->howto->bitsize)
6550 code = BFD_RELOC_8_PCREL;
6553 code = BFD_RELOC_12_PCREL;
6556 code = BFD_RELOC_16_PCREL;
6559 code = BFD_RELOC_24_PCREL;
6562 code = BFD_RELOC_32_PCREL;
6565 code = BFD_RELOC_64_PCREL;
6571 howto = bfd_reloc_type_lookup (abfd, code);
6573 if (areloc->howto->pcrel_offset != howto->pcrel_offset)
6575 if (howto->pcrel_offset)
6576 areloc->addend += areloc->address;
6578 areloc->addend -= areloc->address; /* addend is unsigned!! */
6583 switch (areloc->howto->bitsize)
6589 code = BFD_RELOC_14;
6592 code = BFD_RELOC_16;
6595 code = BFD_RELOC_26;
6598 code = BFD_RELOC_32;
6601 code = BFD_RELOC_64;
6607 howto = bfd_reloc_type_lookup (abfd, code);
6611 areloc->howto = howto;
6619 (*_bfd_error_handler)
6620 (_("%B: unsupported relocation type %s"),
6621 abfd, areloc->howto->name);
6622 bfd_set_error (bfd_error_bad_value);
6627 _bfd_elf_close_and_cleanup (bfd *abfd)
6629 if (bfd_get_format (abfd) == bfd_object)
6631 if (elf_shstrtab (abfd) != NULL)
6632 _bfd_elf_strtab_free (elf_shstrtab (abfd));
6635 return _bfd_generic_close_and_cleanup (abfd);
6638 /* For Rel targets, we encode meaningful data for BFD_RELOC_VTABLE_ENTRY
6639 in the relocation's offset. Thus we cannot allow any sort of sanity
6640 range-checking to interfere. There is nothing else to do in processing
6643 bfd_reloc_status_type
6644 _bfd_elf_rel_vtable_reloc_fn
6645 (bfd *abfd ATTRIBUTE_UNUSED, arelent *re ATTRIBUTE_UNUSED,
6646 struct bfd_symbol *symbol ATTRIBUTE_UNUSED,
6647 void *data ATTRIBUTE_UNUSED, asection *is ATTRIBUTE_UNUSED,
6648 bfd *obfd ATTRIBUTE_UNUSED, char **errmsg ATTRIBUTE_UNUSED)
6650 return bfd_reloc_ok;
6653 /* Elf core file support. Much of this only works on native
6654 toolchains, since we rely on knowing the
6655 machine-dependent procfs structure in order to pick
6656 out details about the corefile. */
6658 #ifdef HAVE_SYS_PROCFS_H
6659 # include <sys/procfs.h>
6662 /* FIXME: this is kinda wrong, but it's what gdb wants. */
6665 elfcore_make_pid (bfd *abfd)
6667 return ((elf_tdata (abfd)->core_lwpid << 16)
6668 + (elf_tdata (abfd)->core_pid));
6671 /* If there isn't a section called NAME, make one, using
6672 data from SECT. Note, this function will generate a
6673 reference to NAME, so you shouldn't deallocate or
6677 elfcore_maybe_make_sect (bfd *abfd, char *name, asection *sect)
6681 if (bfd_get_section_by_name (abfd, name) != NULL)
6684 sect2 = bfd_make_section (abfd, name);
6688 sect2->size = sect->size;
6689 sect2->filepos = sect->filepos;
6690 sect2->flags = sect->flags;
6691 sect2->alignment_power = sect->alignment_power;
6695 /* Create a pseudosection containing SIZE bytes at FILEPOS. This
6696 actually creates up to two pseudosections:
6697 - For the single-threaded case, a section named NAME, unless
6698 such a section already exists.
6699 - For the multi-threaded case, a section named "NAME/PID", where
6700 PID is elfcore_make_pid (abfd).
6701 Both pseudosections have identical contents. */
6703 _bfd_elfcore_make_pseudosection (bfd *abfd,
6709 char *threaded_name;
6713 /* Build the section name. */
6715 sprintf (buf, "%s/%d", name, elfcore_make_pid (abfd));
6716 len = strlen (buf) + 1;
6717 threaded_name = bfd_alloc (abfd, len);
6718 if (threaded_name == NULL)
6720 memcpy (threaded_name, buf, len);
6722 sect = bfd_make_section_anyway (abfd, threaded_name);
6726 sect->filepos = filepos;
6727 sect->flags = SEC_HAS_CONTENTS;
6728 sect->alignment_power = 2;
6730 return elfcore_maybe_make_sect (abfd, name, sect);
6733 /* prstatus_t exists on:
6735 linux 2.[01] + glibc
6739 #if defined (HAVE_PRSTATUS_T)
6742 elfcore_grok_prstatus (bfd *abfd, Elf_Internal_Note *note)
6747 if (note->descsz == sizeof (prstatus_t))
6751 size = sizeof (prstat.pr_reg);
6752 offset = offsetof (prstatus_t, pr_reg);
6753 memcpy (&prstat, note->descdata, sizeof (prstat));
6755 /* Do not overwrite the core signal if it
6756 has already been set by another thread. */
6757 if (elf_tdata (abfd)->core_signal == 0)
6758 elf_tdata (abfd)->core_signal = prstat.pr_cursig;
6759 elf_tdata (abfd)->core_pid = prstat.pr_pid;
6761 /* pr_who exists on:
6764 pr_who doesn't exist on:
6767 #if defined (HAVE_PRSTATUS_T_PR_WHO)
6768 elf_tdata (abfd)->core_lwpid = prstat.pr_who;
6771 #if defined (HAVE_PRSTATUS32_T)
6772 else if (note->descsz == sizeof (prstatus32_t))
6774 /* 64-bit host, 32-bit corefile */
6775 prstatus32_t prstat;
6777 size = sizeof (prstat.pr_reg);
6778 offset = offsetof (prstatus32_t, pr_reg);
6779 memcpy (&prstat, note->descdata, sizeof (prstat));
6781 /* Do not overwrite the core signal if it
6782 has already been set by another thread. */
6783 if (elf_tdata (abfd)->core_signal == 0)
6784 elf_tdata (abfd)->core_signal = prstat.pr_cursig;
6785 elf_tdata (abfd)->core_pid = prstat.pr_pid;
6787 /* pr_who exists on:
6790 pr_who doesn't exist on:
6793 #if defined (HAVE_PRSTATUS32_T_PR_WHO)
6794 elf_tdata (abfd)->core_lwpid = prstat.pr_who;
6797 #endif /* HAVE_PRSTATUS32_T */
6800 /* Fail - we don't know how to handle any other
6801 note size (ie. data object type). */
6805 /* Make a ".reg/999" section and a ".reg" section. */
6806 return _bfd_elfcore_make_pseudosection (abfd, ".reg",
6807 size, note->descpos + offset);
6809 #endif /* defined (HAVE_PRSTATUS_T) */
6811 /* Create a pseudosection containing the exact contents of NOTE. */
6813 elfcore_make_note_pseudosection (bfd *abfd,
6815 Elf_Internal_Note *note)
6817 return _bfd_elfcore_make_pseudosection (abfd, name,
6818 note->descsz, note->descpos);
6821 /* There isn't a consistent prfpregset_t across platforms,
6822 but it doesn't matter, because we don't have to pick this
6823 data structure apart. */
6826 elfcore_grok_prfpreg (bfd *abfd, Elf_Internal_Note *note)
6828 return elfcore_make_note_pseudosection (abfd, ".reg2", note);
6831 /* Linux dumps the Intel SSE regs in a note named "LINUX" with a note
6832 type of 5 (NT_PRXFPREG). Just include the whole note's contents
6836 elfcore_grok_prxfpreg (bfd *abfd, Elf_Internal_Note *note)
6838 return elfcore_make_note_pseudosection (abfd, ".reg-xfp", note);
6841 #if defined (HAVE_PRPSINFO_T)
6842 typedef prpsinfo_t elfcore_psinfo_t;
6843 #if defined (HAVE_PRPSINFO32_T) /* Sparc64 cross Sparc32 */
6844 typedef prpsinfo32_t elfcore_psinfo32_t;
6848 #if defined (HAVE_PSINFO_T)
6849 typedef psinfo_t elfcore_psinfo_t;
6850 #if defined (HAVE_PSINFO32_T) /* Sparc64 cross Sparc32 */
6851 typedef psinfo32_t elfcore_psinfo32_t;
6855 /* return a malloc'ed copy of a string at START which is at
6856 most MAX bytes long, possibly without a terminating '\0'.
6857 the copy will always have a terminating '\0'. */
6860 _bfd_elfcore_strndup (bfd *abfd, char *start, size_t max)
6863 char *end = memchr (start, '\0', max);
6871 dups = bfd_alloc (abfd, len + 1);
6875 memcpy (dups, start, len);
6881 #if defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T)
6883 elfcore_grok_psinfo (bfd *abfd, Elf_Internal_Note *note)
6885 if (note->descsz == sizeof (elfcore_psinfo_t))
6887 elfcore_psinfo_t psinfo;
6889 memcpy (&psinfo, note->descdata, sizeof (psinfo));
6891 elf_tdata (abfd)->core_program
6892 = _bfd_elfcore_strndup (abfd, psinfo.pr_fname,
6893 sizeof (psinfo.pr_fname));
6895 elf_tdata (abfd)->core_command
6896 = _bfd_elfcore_strndup (abfd, psinfo.pr_psargs,
6897 sizeof (psinfo.pr_psargs));
6899 #if defined (HAVE_PRPSINFO32_T) || defined (HAVE_PSINFO32_T)
6900 else if (note->descsz == sizeof (elfcore_psinfo32_t))
6902 /* 64-bit host, 32-bit corefile */
6903 elfcore_psinfo32_t psinfo;
6905 memcpy (&psinfo, note->descdata, sizeof (psinfo));
6907 elf_tdata (abfd)->core_program
6908 = _bfd_elfcore_strndup (abfd, psinfo.pr_fname,
6909 sizeof (psinfo.pr_fname));
6911 elf_tdata (abfd)->core_command
6912 = _bfd_elfcore_strndup (abfd, psinfo.pr_psargs,
6913 sizeof (psinfo.pr_psargs));
6919 /* Fail - we don't know how to handle any other
6920 note size (ie. data object type). */
6924 /* Note that for some reason, a spurious space is tacked
6925 onto the end of the args in some (at least one anyway)
6926 implementations, so strip it off if it exists. */
6929 char *command = elf_tdata (abfd)->core_command;
6930 int n = strlen (command);
6932 if (0 < n && command[n - 1] == ' ')
6933 command[n - 1] = '\0';
6938 #endif /* defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T) */
6940 #if defined (HAVE_PSTATUS_T)
6942 elfcore_grok_pstatus (bfd *abfd, Elf_Internal_Note *note)
6944 if (note->descsz == sizeof (pstatus_t)
6945 #if defined (HAVE_PXSTATUS_T)
6946 || note->descsz == sizeof (pxstatus_t)
6952 memcpy (&pstat, note->descdata, sizeof (pstat));
6954 elf_tdata (abfd)->core_pid = pstat.pr_pid;
6956 #if defined (HAVE_PSTATUS32_T)
6957 else if (note->descsz == sizeof (pstatus32_t))
6959 /* 64-bit host, 32-bit corefile */
6962 memcpy (&pstat, note->descdata, sizeof (pstat));
6964 elf_tdata (abfd)->core_pid = pstat.pr_pid;
6967 /* Could grab some more details from the "representative"
6968 lwpstatus_t in pstat.pr_lwp, but we'll catch it all in an
6969 NT_LWPSTATUS note, presumably. */
6973 #endif /* defined (HAVE_PSTATUS_T) */
6975 #if defined (HAVE_LWPSTATUS_T)
6977 elfcore_grok_lwpstatus (bfd *abfd, Elf_Internal_Note *note)
6979 lwpstatus_t lwpstat;
6985 if (note->descsz != sizeof (lwpstat)
6986 #if defined (HAVE_LWPXSTATUS_T)
6987 && note->descsz != sizeof (lwpxstatus_t)
6992 memcpy (&lwpstat, note->descdata, sizeof (lwpstat));
6994 elf_tdata (abfd)->core_lwpid = lwpstat.pr_lwpid;
6995 elf_tdata (abfd)->core_signal = lwpstat.pr_cursig;
6997 /* Make a ".reg/999" section. */
6999 sprintf (buf, ".reg/%d", elfcore_make_pid (abfd));
7000 len = strlen (buf) + 1;
7001 name = bfd_alloc (abfd, len);
7004 memcpy (name, buf, len);
7006 sect = bfd_make_section_anyway (abfd, name);
7010 #if defined (HAVE_LWPSTATUS_T_PR_CONTEXT)
7011 sect->size = sizeof (lwpstat.pr_context.uc_mcontext.gregs);
7012 sect->filepos = note->descpos
7013 + offsetof (lwpstatus_t, pr_context.uc_mcontext.gregs);
7016 #if defined (HAVE_LWPSTATUS_T_PR_REG)
7017 sect->size = sizeof (lwpstat.pr_reg);
7018 sect->filepos = note->descpos + offsetof (lwpstatus_t, pr_reg);
7021 sect->flags = SEC_HAS_CONTENTS;
7022 sect->alignment_power = 2;
7024 if (!elfcore_maybe_make_sect (abfd, ".reg", sect))
7027 /* Make a ".reg2/999" section */
7029 sprintf (buf, ".reg2/%d", elfcore_make_pid (abfd));
7030 len = strlen (buf) + 1;
7031 name = bfd_alloc (abfd, len);
7034 memcpy (name, buf, len);
7036 sect = bfd_make_section_anyway (abfd, name);
7040 #if defined (HAVE_LWPSTATUS_T_PR_CONTEXT)
7041 sect->size = sizeof (lwpstat.pr_context.uc_mcontext.fpregs);
7042 sect->filepos = note->descpos
7043 + offsetof (lwpstatus_t, pr_context.uc_mcontext.fpregs);
7046 #if defined (HAVE_LWPSTATUS_T_PR_FPREG)
7047 sect->size = sizeof (lwpstat.pr_fpreg);
7048 sect->filepos = note->descpos + offsetof (lwpstatus_t, pr_fpreg);
7051 sect->flags = SEC_HAS_CONTENTS;
7052 sect->alignment_power = 2;
7054 return elfcore_maybe_make_sect (abfd, ".reg2", sect);
7056 #endif /* defined (HAVE_LWPSTATUS_T) */
7058 #if defined (HAVE_WIN32_PSTATUS_T)
7060 elfcore_grok_win32pstatus (bfd *abfd, Elf_Internal_Note *note)
7066 win32_pstatus_t pstatus;
7068 if (note->descsz < sizeof (pstatus))
7071 memcpy (&pstatus, note->descdata, sizeof (pstatus));
7073 switch (pstatus.data_type)
7075 case NOTE_INFO_PROCESS:
7076 /* FIXME: need to add ->core_command. */
7077 elf_tdata (abfd)->core_signal = pstatus.data.process_info.signal;
7078 elf_tdata (abfd)->core_pid = pstatus.data.process_info.pid;
7081 case NOTE_INFO_THREAD:
7082 /* Make a ".reg/999" section. */
7083 sprintf (buf, ".reg/%d", pstatus.data.thread_info.tid);
7085 len = strlen (buf) + 1;
7086 name = bfd_alloc (abfd, len);
7090 memcpy (name, buf, len);
7092 sect = bfd_make_section_anyway (abfd, name);
7096 sect->size = sizeof (pstatus.data.thread_info.thread_context);
7097 sect->filepos = (note->descpos
7098 + offsetof (struct win32_pstatus,
7099 data.thread_info.thread_context));
7100 sect->flags = SEC_HAS_CONTENTS;
7101 sect->alignment_power = 2;
7103 if (pstatus.data.thread_info.is_active_thread)
7104 if (! elfcore_maybe_make_sect (abfd, ".reg", sect))
7108 case NOTE_INFO_MODULE:
7109 /* Make a ".module/xxxxxxxx" section. */
7110 sprintf (buf, ".module/%08x", pstatus.data.module_info.base_address);
7112 len = strlen (buf) + 1;
7113 name = bfd_alloc (abfd, len);
7117 memcpy (name, buf, len);
7119 sect = bfd_make_section_anyway (abfd, name);
7124 sect->size = note->descsz;
7125 sect->filepos = note->descpos;
7126 sect->flags = SEC_HAS_CONTENTS;
7127 sect->alignment_power = 2;
7136 #endif /* HAVE_WIN32_PSTATUS_T */
7139 elfcore_grok_note (bfd *abfd, Elf_Internal_Note *note)
7141 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
7149 if (bed->elf_backend_grok_prstatus)
7150 if ((*bed->elf_backend_grok_prstatus) (abfd, note))
7152 #if defined (HAVE_PRSTATUS_T)
7153 return elfcore_grok_prstatus (abfd, note);
7158 #if defined (HAVE_PSTATUS_T)
7160 return elfcore_grok_pstatus (abfd, note);
7163 #if defined (HAVE_LWPSTATUS_T)
7165 return elfcore_grok_lwpstatus (abfd, note);
7168 case NT_FPREGSET: /* FIXME: rename to NT_PRFPREG */
7169 return elfcore_grok_prfpreg (abfd, note);
7171 #if defined (HAVE_WIN32_PSTATUS_T)
7172 case NT_WIN32PSTATUS:
7173 return elfcore_grok_win32pstatus (abfd, note);
7176 case NT_PRXFPREG: /* Linux SSE extension */
7177 if (note->namesz == 6
7178 && strcmp (note->namedata, "LINUX") == 0)
7179 return elfcore_grok_prxfpreg (abfd, note);
7185 if (bed->elf_backend_grok_psinfo)
7186 if ((*bed->elf_backend_grok_psinfo) (abfd, note))
7188 #if defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T)
7189 return elfcore_grok_psinfo (abfd, note);
7196 asection *sect = bfd_make_section_anyway (abfd, ".auxv");
7200 sect->size = note->descsz;
7201 sect->filepos = note->descpos;
7202 sect->flags = SEC_HAS_CONTENTS;
7203 sect->alignment_power = 1 + bfd_get_arch_size (abfd) / 32;
7211 elfcore_netbsd_get_lwpid (Elf_Internal_Note *note, int *lwpidp)
7215 cp = strchr (note->namedata, '@');
7218 *lwpidp = atoi(cp + 1);
7225 elfcore_grok_netbsd_procinfo (bfd *abfd, Elf_Internal_Note *note)
7228 /* Signal number at offset 0x08. */
7229 elf_tdata (abfd)->core_signal
7230 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + 0x08);
7232 /* Process ID at offset 0x50. */
7233 elf_tdata (abfd)->core_pid
7234 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + 0x50);
7236 /* Command name at 0x7c (max 32 bytes, including nul). */
7237 elf_tdata (abfd)->core_command
7238 = _bfd_elfcore_strndup (abfd, note->descdata + 0x7c, 31);
7240 return elfcore_make_note_pseudosection (abfd, ".note.netbsdcore.procinfo",
7245 elfcore_grok_netbsd_note (bfd *abfd, Elf_Internal_Note *note)
7249 if (elfcore_netbsd_get_lwpid (note, &lwp))
7250 elf_tdata (abfd)->core_lwpid = lwp;
7252 if (note->type == NT_NETBSDCORE_PROCINFO)
7254 /* NetBSD-specific core "procinfo". Note that we expect to
7255 find this note before any of the others, which is fine,
7256 since the kernel writes this note out first when it
7257 creates a core file. */
7259 return elfcore_grok_netbsd_procinfo (abfd, note);
7262 /* As of Jan 2002 there are no other machine-independent notes
7263 defined for NetBSD core files. If the note type is less
7264 than the start of the machine-dependent note types, we don't
7267 if (note->type < NT_NETBSDCORE_FIRSTMACH)
7271 switch (bfd_get_arch (abfd))
7273 /* On the Alpha, SPARC (32-bit and 64-bit), PT_GETREGS == mach+0 and
7274 PT_GETFPREGS == mach+2. */
7276 case bfd_arch_alpha:
7277 case bfd_arch_sparc:
7280 case NT_NETBSDCORE_FIRSTMACH+0:
7281 return elfcore_make_note_pseudosection (abfd, ".reg", note);
7283 case NT_NETBSDCORE_FIRSTMACH+2:
7284 return elfcore_make_note_pseudosection (abfd, ".reg2", note);
7290 /* On all other arch's, PT_GETREGS == mach+1 and
7291 PT_GETFPREGS == mach+3. */
7296 case NT_NETBSDCORE_FIRSTMACH+1:
7297 return elfcore_make_note_pseudosection (abfd, ".reg", note);
7299 case NT_NETBSDCORE_FIRSTMACH+3:
7300 return elfcore_make_note_pseudosection (abfd, ".reg2", note);
7310 elfcore_grok_nto_status (bfd *abfd, Elf_Internal_Note *note, pid_t *tid)
7312 void *ddata = note->descdata;
7319 /* nto_procfs_status 'pid' field is at offset 0. */
7320 elf_tdata (abfd)->core_pid = bfd_get_32 (abfd, (bfd_byte *) ddata);
7322 /* nto_procfs_status 'tid' field is at offset 4. Pass it back. */
7323 *tid = bfd_get_32 (abfd, (bfd_byte *) ddata + 4);
7325 /* nto_procfs_status 'flags' field is at offset 8. */
7326 flags = bfd_get_32 (abfd, (bfd_byte *) ddata + 8);
7328 /* nto_procfs_status 'what' field is at offset 14. */
7329 if ((sig = bfd_get_16 (abfd, (bfd_byte *) ddata + 14)) > 0)
7331 elf_tdata (abfd)->core_signal = sig;
7332 elf_tdata (abfd)->core_lwpid = *tid;
7335 /* _DEBUG_FLAG_CURTID (current thread) is 0x80. Some cores
7336 do not come from signals so we make sure we set the current
7337 thread just in case. */
7338 if (flags & 0x00000080)
7339 elf_tdata (abfd)->core_lwpid = *tid;
7341 /* Make a ".qnx_core_status/%d" section. */
7342 sprintf (buf, ".qnx_core_status/%d", *tid);
7344 name = bfd_alloc (abfd, strlen (buf) + 1);
7349 sect = bfd_make_section_anyway (abfd, name);
7353 sect->size = note->descsz;
7354 sect->filepos = note->descpos;
7355 sect->flags = SEC_HAS_CONTENTS;
7356 sect->alignment_power = 2;
7358 return (elfcore_maybe_make_sect (abfd, ".qnx_core_status", sect));
7362 elfcore_grok_nto_regs (bfd *abfd,
7363 Elf_Internal_Note *note,
7371 /* Make a "(base)/%d" section. */
7372 sprintf (buf, "%s/%d", base, tid);
7374 name = bfd_alloc (abfd, strlen (buf) + 1);
7379 sect = bfd_make_section_anyway (abfd, name);
7383 sect->size = note->descsz;
7384 sect->filepos = note->descpos;
7385 sect->flags = SEC_HAS_CONTENTS;
7386 sect->alignment_power = 2;
7388 /* This is the current thread. */
7389 if (elf_tdata (abfd)->core_lwpid == tid)
7390 return elfcore_maybe_make_sect (abfd, base, sect);
7395 #define BFD_QNT_CORE_INFO 7
7396 #define BFD_QNT_CORE_STATUS 8
7397 #define BFD_QNT_CORE_GREG 9
7398 #define BFD_QNT_CORE_FPREG 10
7401 elfcore_grok_nto_note (bfd *abfd, Elf_Internal_Note *note)
7403 /* Every GREG section has a STATUS section before it. Store the
7404 tid from the previous call to pass down to the next gregs
7406 static pid_t tid = 1;
7410 case BFD_QNT_CORE_INFO:
7411 return elfcore_make_note_pseudosection (abfd, ".qnx_core_info", note);
7412 case BFD_QNT_CORE_STATUS:
7413 return elfcore_grok_nto_status (abfd, note, &tid);
7414 case BFD_QNT_CORE_GREG:
7415 return elfcore_grok_nto_regs (abfd, note, tid, ".reg");
7416 case BFD_QNT_CORE_FPREG:
7417 return elfcore_grok_nto_regs (abfd, note, tid, ".reg2");
7423 /* Function: elfcore_write_note
7430 size of data for note
7433 End of buffer containing note. */
7436 elfcore_write_note (bfd *abfd,
7444 Elf_External_Note *xnp;
7454 const struct elf_backend_data *bed;
7456 namesz = strlen (name) + 1;
7457 bed = get_elf_backend_data (abfd);
7458 pad = -namesz & ((1 << bed->s->log_file_align) - 1);
7461 newspace = 12 + namesz + pad + size;
7463 p = realloc (buf, *bufsiz + newspace);
7465 *bufsiz += newspace;
7466 xnp = (Elf_External_Note *) dest;
7467 H_PUT_32 (abfd, namesz, xnp->namesz);
7468 H_PUT_32 (abfd, size, xnp->descsz);
7469 H_PUT_32 (abfd, type, xnp->type);
7473 memcpy (dest, name, namesz);
7481 memcpy (dest, input, size);
7485 #if defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T)
7487 elfcore_write_prpsinfo (bfd *abfd,
7494 char *note_name = "CORE";
7496 #if defined (HAVE_PSINFO_T)
7498 note_type = NT_PSINFO;
7501 note_type = NT_PRPSINFO;
7504 memset (&data, 0, sizeof (data));
7505 strncpy (data.pr_fname, fname, sizeof (data.pr_fname));
7506 strncpy (data.pr_psargs, psargs, sizeof (data.pr_psargs));
7507 return elfcore_write_note (abfd, buf, bufsiz,
7508 note_name, note_type, &data, sizeof (data));
7510 #endif /* PSINFO_T or PRPSINFO_T */
7512 #if defined (HAVE_PRSTATUS_T)
7514 elfcore_write_prstatus (bfd *abfd,
7522 char *note_name = "CORE";
7524 memset (&prstat, 0, sizeof (prstat));
7525 prstat.pr_pid = pid;
7526 prstat.pr_cursig = cursig;
7527 memcpy (&prstat.pr_reg, gregs, sizeof (prstat.pr_reg));
7528 return elfcore_write_note (abfd, buf, bufsiz,
7529 note_name, NT_PRSTATUS, &prstat, sizeof (prstat));
7531 #endif /* HAVE_PRSTATUS_T */
7533 #if defined (HAVE_LWPSTATUS_T)
7535 elfcore_write_lwpstatus (bfd *abfd,
7542 lwpstatus_t lwpstat;
7543 char *note_name = "CORE";
7545 memset (&lwpstat, 0, sizeof (lwpstat));
7546 lwpstat.pr_lwpid = pid >> 16;
7547 lwpstat.pr_cursig = cursig;
7548 #if defined (HAVE_LWPSTATUS_T_PR_REG)
7549 memcpy (lwpstat.pr_reg, gregs, sizeof (lwpstat.pr_reg));
7550 #elif defined (HAVE_LWPSTATUS_T_PR_CONTEXT)
7552 memcpy (lwpstat.pr_context.uc_mcontext.gregs,
7553 gregs, sizeof (lwpstat.pr_context.uc_mcontext.gregs));
7555 memcpy (lwpstat.pr_context.uc_mcontext.__gregs,
7556 gregs, sizeof (lwpstat.pr_context.uc_mcontext.__gregs));
7559 return elfcore_write_note (abfd, buf, bufsiz, note_name,
7560 NT_LWPSTATUS, &lwpstat, sizeof (lwpstat));
7562 #endif /* HAVE_LWPSTATUS_T */
7564 #if defined (HAVE_PSTATUS_T)
7566 elfcore_write_pstatus (bfd *abfd,
7574 char *note_name = "CORE";
7576 memset (&pstat, 0, sizeof (pstat));
7577 pstat.pr_pid = pid & 0xffff;
7578 buf = elfcore_write_note (abfd, buf, bufsiz, note_name,
7579 NT_PSTATUS, &pstat, sizeof (pstat));
7582 #endif /* HAVE_PSTATUS_T */
7585 elfcore_write_prfpreg (bfd *abfd,
7591 char *note_name = "CORE";
7592 return elfcore_write_note (abfd, buf, bufsiz,
7593 note_name, NT_FPREGSET, fpregs, size);
7597 elfcore_write_prxfpreg (bfd *abfd,
7600 const void *xfpregs,
7603 char *note_name = "LINUX";
7604 return elfcore_write_note (abfd, buf, bufsiz,
7605 note_name, NT_PRXFPREG, xfpregs, size);
7609 elfcore_read_notes (bfd *abfd, file_ptr offset, bfd_size_type size)
7617 if (bfd_seek (abfd, offset, SEEK_SET) != 0)
7620 buf = bfd_malloc (size);
7624 if (bfd_bread (buf, size, abfd) != size)
7632 while (p < buf + size)
7634 /* FIXME: bad alignment assumption. */
7635 Elf_External_Note *xnp = (Elf_External_Note *) p;
7636 Elf_Internal_Note in;
7638 in.type = H_GET_32 (abfd, xnp->type);
7640 in.namesz = H_GET_32 (abfd, xnp->namesz);
7641 in.namedata = xnp->name;
7643 in.descsz = H_GET_32 (abfd, xnp->descsz);
7644 in.descdata = in.namedata + BFD_ALIGN (in.namesz, 4);
7645 in.descpos = offset + (in.descdata - buf);
7647 if (strncmp (in.namedata, "NetBSD-CORE", 11) == 0)
7649 if (! elfcore_grok_netbsd_note (abfd, &in))
7652 else if (strncmp (in.namedata, "QNX", 3) == 0)
7654 if (! elfcore_grok_nto_note (abfd, &in))
7659 if (! elfcore_grok_note (abfd, &in))
7663 p = in.descdata + BFD_ALIGN (in.descsz, 4);
7670 /* Providing external access to the ELF program header table. */
7672 /* Return an upper bound on the number of bytes required to store a
7673 copy of ABFD's program header table entries. Return -1 if an error
7674 occurs; bfd_get_error will return an appropriate code. */
7677 bfd_get_elf_phdr_upper_bound (bfd *abfd)
7679 if (abfd->xvec->flavour != bfd_target_elf_flavour)
7681 bfd_set_error (bfd_error_wrong_format);
7685 return elf_elfheader (abfd)->e_phnum * sizeof (Elf_Internal_Phdr);
7688 /* Copy ABFD's program header table entries to *PHDRS. The entries
7689 will be stored as an array of Elf_Internal_Phdr structures, as
7690 defined in include/elf/internal.h. To find out how large the
7691 buffer needs to be, call bfd_get_elf_phdr_upper_bound.
7693 Return the number of program header table entries read, or -1 if an
7694 error occurs; bfd_get_error will return an appropriate code. */
7697 bfd_get_elf_phdrs (bfd *abfd, void *phdrs)
7701 if (abfd->xvec->flavour != bfd_target_elf_flavour)
7703 bfd_set_error (bfd_error_wrong_format);
7707 num_phdrs = elf_elfheader (abfd)->e_phnum;
7708 memcpy (phdrs, elf_tdata (abfd)->phdr,
7709 num_phdrs * sizeof (Elf_Internal_Phdr));
7715 _bfd_elf_sprintf_vma (bfd *abfd ATTRIBUTE_UNUSED, char *buf, bfd_vma value)
7718 Elf_Internal_Ehdr *i_ehdrp; /* Elf file header, internal form */
7720 i_ehdrp = elf_elfheader (abfd);
7721 if (i_ehdrp == NULL)
7722 sprintf_vma (buf, value);
7725 if (i_ehdrp->e_ident[EI_CLASS] == ELFCLASS64)
7727 #if BFD_HOST_64BIT_LONG
7728 sprintf (buf, "%016lx", value);
7730 sprintf (buf, "%08lx%08lx", _bfd_int64_high (value),
7731 _bfd_int64_low (value));
7735 sprintf (buf, "%08lx", (unsigned long) (value & 0xffffffff));
7738 sprintf_vma (buf, value);
7743 _bfd_elf_fprintf_vma (bfd *abfd ATTRIBUTE_UNUSED, void *stream, bfd_vma value)
7746 Elf_Internal_Ehdr *i_ehdrp; /* Elf file header, internal form */
7748 i_ehdrp = elf_elfheader (abfd);
7749 if (i_ehdrp == NULL)
7750 fprintf_vma ((FILE *) stream, value);
7753 if (i_ehdrp->e_ident[EI_CLASS] == ELFCLASS64)
7755 #if BFD_HOST_64BIT_LONG
7756 fprintf ((FILE *) stream, "%016lx", value);
7758 fprintf ((FILE *) stream, "%08lx%08lx",
7759 _bfd_int64_high (value), _bfd_int64_low (value));
7763 fprintf ((FILE *) stream, "%08lx",
7764 (unsigned long) (value & 0xffffffff));
7767 fprintf_vma ((FILE *) stream, value);
7771 enum elf_reloc_type_class
7772 _bfd_elf_reloc_type_class (const Elf_Internal_Rela *rela ATTRIBUTE_UNUSED)
7774 return reloc_class_normal;
7777 /* For RELA architectures, return the relocation value for a
7778 relocation against a local symbol. */
7781 _bfd_elf_rela_local_sym (bfd *abfd,
7782 Elf_Internal_Sym *sym,
7784 Elf_Internal_Rela *rel)
7786 asection *sec = *psec;
7789 relocation = (sec->output_section->vma
7790 + sec->output_offset
7792 if ((sec->flags & SEC_MERGE)
7793 && ELF_ST_TYPE (sym->st_info) == STT_SECTION
7794 && sec->sec_info_type == ELF_INFO_TYPE_MERGE)
7797 _bfd_merged_section_offset (abfd, psec,
7798 elf_section_data (sec)->sec_info,
7799 sym->st_value + rel->r_addend);
7802 /* If we have changed the section, and our original section is
7803 marked with SEC_EXCLUDE, it means that the original
7804 SEC_MERGE section has been completely subsumed in some
7805 other SEC_MERGE section. In this case, we need to leave
7806 some info around for --emit-relocs. */
7807 if ((sec->flags & SEC_EXCLUDE) != 0)
7808 sec->kept_section = *psec;
7811 rel->r_addend -= relocation;
7812 rel->r_addend += sec->output_section->vma + sec->output_offset;
7818 _bfd_elf_rel_local_sym (bfd *abfd,
7819 Elf_Internal_Sym *sym,
7823 asection *sec = *psec;
7825 if (sec->sec_info_type != ELF_INFO_TYPE_MERGE)
7826 return sym->st_value + addend;
7828 return _bfd_merged_section_offset (abfd, psec,
7829 elf_section_data (sec)->sec_info,
7830 sym->st_value + addend);
7834 _bfd_elf_section_offset (bfd *abfd,
7835 struct bfd_link_info *info,
7839 switch (sec->sec_info_type)
7841 case ELF_INFO_TYPE_STABS:
7842 return _bfd_stab_section_offset (sec, elf_section_data (sec)->sec_info,
7844 case ELF_INFO_TYPE_EH_FRAME:
7845 return _bfd_elf_eh_frame_section_offset (abfd, info, sec, offset);
7851 /* Create a new BFD as if by bfd_openr. Rather than opening a file,
7852 reconstruct an ELF file by reading the segments out of remote memory
7853 based on the ELF file header at EHDR_VMA and the ELF program headers it
7854 points to. If not null, *LOADBASEP is filled in with the difference
7855 between the VMAs from which the segments were read, and the VMAs the
7856 file headers (and hence BFD's idea of each section's VMA) put them at.
7858 The function TARGET_READ_MEMORY is called to copy LEN bytes from the
7859 remote memory at target address VMA into the local buffer at MYADDR; it
7860 should return zero on success or an `errno' code on failure. TEMPL must
7861 be a BFD for an ELF target with the word size and byte order found in
7862 the remote memory. */
7865 bfd_elf_bfd_from_remote_memory
7869 int (*target_read_memory) (bfd_vma, bfd_byte *, int))
7871 return (*get_elf_backend_data (templ)->elf_backend_bfd_from_remote_memory)
7872 (templ, ehdr_vma, loadbasep, target_read_memory);
7876 _bfd_elf_get_synthetic_symtab (bfd *abfd,
7877 long symcount ATTRIBUTE_UNUSED,
7878 asymbol **syms ATTRIBUTE_UNUSED,
7883 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
7886 const char *relplt_name;
7887 bfd_boolean (*slurp_relocs) (bfd *, asection *, asymbol **, bfd_boolean);
7891 Elf_Internal_Shdr *hdr;
7897 if ((abfd->flags & (DYNAMIC | EXEC_P)) == 0)
7900 if (dynsymcount <= 0)
7903 if (!bed->plt_sym_val)
7906 relplt_name = bed->relplt_name;
7907 if (relplt_name == NULL)
7908 relplt_name = bed->default_use_rela_p ? ".rela.plt" : ".rel.plt";
7909 relplt = bfd_get_section_by_name (abfd, relplt_name);
7913 hdr = &elf_section_data (relplt)->this_hdr;
7914 if (hdr->sh_link != elf_dynsymtab (abfd)
7915 || (hdr->sh_type != SHT_REL && hdr->sh_type != SHT_RELA))
7918 plt = bfd_get_section_by_name (abfd, ".plt");
7922 slurp_relocs = get_elf_backend_data (abfd)->s->slurp_reloc_table;
7923 if (! (*slurp_relocs) (abfd, relplt, dynsyms, TRUE))
7926 count = relplt->size / hdr->sh_entsize;
7927 size = count * sizeof (asymbol);
7928 p = relplt->relocation;
7929 for (i = 0; i < count; i++, s++, p++)
7930 size += strlen ((*p->sym_ptr_ptr)->name) + sizeof ("@plt");
7932 s = *ret = bfd_malloc (size);
7936 names = (char *) (s + count);
7937 p = relplt->relocation;
7939 for (i = 0; i < count; i++, s++, p++)
7944 addr = bed->plt_sym_val (i, plt, p);
7945 if (addr == (bfd_vma) -1)
7948 *s = **p->sym_ptr_ptr;
7950 s->value = addr - plt->vma;
7952 len = strlen ((*p->sym_ptr_ptr)->name);
7953 memcpy (names, (*p->sym_ptr_ptr)->name, len);
7955 memcpy (names, "@plt", sizeof ("@plt"));
7956 names += sizeof ("@plt");
7963 /* Sort symbol by binding and section. We want to put definitions
7964 sorted by section at the beginning. */
7967 elf_sort_elf_symbol (const void *arg1, const void *arg2)
7969 const Elf_Internal_Sym *s1;
7970 const Elf_Internal_Sym *s2;
7973 /* Make sure that undefined symbols are at the end. */
7974 s1 = (const Elf_Internal_Sym *) arg1;
7975 if (s1->st_shndx == SHN_UNDEF)
7977 s2 = (const Elf_Internal_Sym *) arg2;
7978 if (s2->st_shndx == SHN_UNDEF)
7981 /* Sorted by section index. */
7982 shndx = s1->st_shndx - s2->st_shndx;
7986 /* Sorted by binding. */
7987 return ELF_ST_BIND (s1->st_info) - ELF_ST_BIND (s2->st_info);
7992 Elf_Internal_Sym *sym;
7997 elf_sym_name_compare (const void *arg1, const void *arg2)
7999 const struct elf_symbol *s1 = (const struct elf_symbol *) arg1;
8000 const struct elf_symbol *s2 = (const struct elf_symbol *) arg2;
8001 return strcmp (s1->name, s2->name);
8004 /* Check if 2 sections define the same set of local and global
8008 bfd_elf_match_symbols_in_sections (asection *sec1, asection *sec2)
8011 const struct elf_backend_data *bed1, *bed2;
8012 Elf_Internal_Shdr *hdr1, *hdr2;
8013 bfd_size_type symcount1, symcount2;
8014 Elf_Internal_Sym *isymbuf1, *isymbuf2;
8015 Elf_Internal_Sym *isymstart1 = NULL, *isymstart2 = NULL, *isym;
8016 Elf_Internal_Sym *isymend;
8017 struct elf_symbol *symp, *symtable1 = NULL, *symtable2 = NULL;
8018 bfd_size_type count1, count2, i;
8025 /* If both are .gnu.linkonce sections, they have to have the same
8027 if (strncmp (sec1->name, ".gnu.linkonce",
8028 sizeof ".gnu.linkonce" - 1) == 0
8029 && strncmp (sec2->name, ".gnu.linkonce",
8030 sizeof ".gnu.linkonce" - 1) == 0)
8031 return strcmp (sec1->name + sizeof ".gnu.linkonce",
8032 sec2->name + sizeof ".gnu.linkonce") == 0;
8034 /* Both sections have to be in ELF. */
8035 if (bfd_get_flavour (bfd1) != bfd_target_elf_flavour
8036 || bfd_get_flavour (bfd2) != bfd_target_elf_flavour)
8039 if (elf_section_type (sec1) != elf_section_type (sec2))
8042 if ((elf_section_flags (sec1) & SHF_GROUP) != 0
8043 && (elf_section_flags (sec2) & SHF_GROUP) != 0)
8045 /* If both are members of section groups, they have to have the
8047 if (strcmp (elf_group_name (sec1), elf_group_name (sec2)) != 0)
8051 shndx1 = _bfd_elf_section_from_bfd_section (bfd1, sec1);
8052 shndx2 = _bfd_elf_section_from_bfd_section (bfd2, sec2);
8053 if (shndx1 == -1 || shndx2 == -1)
8056 bed1 = get_elf_backend_data (bfd1);
8057 bed2 = get_elf_backend_data (bfd2);
8058 hdr1 = &elf_tdata (bfd1)->symtab_hdr;
8059 symcount1 = hdr1->sh_size / bed1->s->sizeof_sym;
8060 hdr2 = &elf_tdata (bfd2)->symtab_hdr;
8061 symcount2 = hdr2->sh_size / bed2->s->sizeof_sym;
8063 if (symcount1 == 0 || symcount2 == 0)
8066 isymbuf1 = bfd_elf_get_elf_syms (bfd1, hdr1, symcount1, 0,
8068 isymbuf2 = bfd_elf_get_elf_syms (bfd2, hdr2, symcount2, 0,
8072 if (isymbuf1 == NULL || isymbuf2 == NULL)
8075 /* Sort symbols by binding and section. Global definitions are at
8077 qsort (isymbuf1, symcount1, sizeof (Elf_Internal_Sym),
8078 elf_sort_elf_symbol);
8079 qsort (isymbuf2, symcount2, sizeof (Elf_Internal_Sym),
8080 elf_sort_elf_symbol);
8082 /* Count definitions in the section. */
8084 for (isym = isymbuf1, isymend = isym + symcount1;
8085 isym < isymend; isym++)
8087 if (isym->st_shndx == (unsigned int) shndx1)
8094 if (count1 && isym->st_shndx != (unsigned int) shndx1)
8099 for (isym = isymbuf2, isymend = isym + symcount2;
8100 isym < isymend; isym++)
8102 if (isym->st_shndx == (unsigned int) shndx2)
8109 if (count2 && isym->st_shndx != (unsigned int) shndx2)
8113 if (count1 == 0 || count2 == 0 || count1 != count2)
8116 symtable1 = bfd_malloc (count1 * sizeof (struct elf_symbol));
8117 symtable2 = bfd_malloc (count1 * sizeof (struct elf_symbol));
8119 if (symtable1 == NULL || symtable2 == NULL)
8123 for (isym = isymstart1, isymend = isym + count1;
8124 isym < isymend; isym++)
8127 symp->name = bfd_elf_string_from_elf_section (bfd1,
8134 for (isym = isymstart2, isymend = isym + count1;
8135 isym < isymend; isym++)
8138 symp->name = bfd_elf_string_from_elf_section (bfd2,
8144 /* Sort symbol by name. */
8145 qsort (symtable1, count1, sizeof (struct elf_symbol),
8146 elf_sym_name_compare);
8147 qsort (symtable2, count1, sizeof (struct elf_symbol),
8148 elf_sym_name_compare);
8150 for (i = 0; i < count1; i++)
8151 /* Two symbols must have the same binding, type and name. */
8152 if (symtable1 [i].sym->st_info != symtable2 [i].sym->st_info
8153 || symtable1 [i].sym->st_other != symtable2 [i].sym->st_other
8154 || strcmp (symtable1 [i].name, symtable2 [i].name) != 0)