1 /* ELF executable support for BFD.
3 Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
4 2002, 2003, 2004, 2005, 2006, 2007 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 3 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., 51 Franklin Street - Fifth Floor, Boston,
21 MA 02110-1301, USA. */
28 BFD support for ELF formats is being worked on.
29 Currently, the best supported back ends are for sparc and i386
30 (running svr4 or Solaris 2).
32 Documentation of the internals of the support code still needs
33 to be written. The code is changing quickly enough that we
34 haven't bothered yet. */
36 /* For sparc64-cross-sparc32. */
44 #include "libiberty.h"
45 #include "safe-ctype.h"
47 static int elf_sort_sections (const void *, const void *);
48 static bfd_boolean assign_file_positions_except_relocs (bfd *, struct bfd_link_info *);
49 static bfd_boolean prep_headers (bfd *);
50 static bfd_boolean swap_out_syms (bfd *, struct bfd_strtab_hash **, int) ;
51 static bfd_boolean elf_read_notes (bfd *, file_ptr, bfd_size_type) ;
52 static bfd_boolean elf_parse_notes (bfd *abfd, char *buf, size_t size,
55 /* Swap version information in and out. The version information is
56 currently size independent. If that ever changes, this code will
57 need to move into elfcode.h. */
59 /* Swap in a Verdef structure. */
62 _bfd_elf_swap_verdef_in (bfd *abfd,
63 const Elf_External_Verdef *src,
64 Elf_Internal_Verdef *dst)
66 dst->vd_version = H_GET_16 (abfd, src->vd_version);
67 dst->vd_flags = H_GET_16 (abfd, src->vd_flags);
68 dst->vd_ndx = H_GET_16 (abfd, src->vd_ndx);
69 dst->vd_cnt = H_GET_16 (abfd, src->vd_cnt);
70 dst->vd_hash = H_GET_32 (abfd, src->vd_hash);
71 dst->vd_aux = H_GET_32 (abfd, src->vd_aux);
72 dst->vd_next = H_GET_32 (abfd, src->vd_next);
75 /* Swap out a Verdef structure. */
78 _bfd_elf_swap_verdef_out (bfd *abfd,
79 const Elf_Internal_Verdef *src,
80 Elf_External_Verdef *dst)
82 H_PUT_16 (abfd, src->vd_version, dst->vd_version);
83 H_PUT_16 (abfd, src->vd_flags, dst->vd_flags);
84 H_PUT_16 (abfd, src->vd_ndx, dst->vd_ndx);
85 H_PUT_16 (abfd, src->vd_cnt, dst->vd_cnt);
86 H_PUT_32 (abfd, src->vd_hash, dst->vd_hash);
87 H_PUT_32 (abfd, src->vd_aux, dst->vd_aux);
88 H_PUT_32 (abfd, src->vd_next, dst->vd_next);
91 /* Swap in a Verdaux structure. */
94 _bfd_elf_swap_verdaux_in (bfd *abfd,
95 const Elf_External_Verdaux *src,
96 Elf_Internal_Verdaux *dst)
98 dst->vda_name = H_GET_32 (abfd, src->vda_name);
99 dst->vda_next = H_GET_32 (abfd, src->vda_next);
102 /* Swap out a Verdaux structure. */
105 _bfd_elf_swap_verdaux_out (bfd *abfd,
106 const Elf_Internal_Verdaux *src,
107 Elf_External_Verdaux *dst)
109 H_PUT_32 (abfd, src->vda_name, dst->vda_name);
110 H_PUT_32 (abfd, src->vda_next, dst->vda_next);
113 /* Swap in a Verneed structure. */
116 _bfd_elf_swap_verneed_in (bfd *abfd,
117 const Elf_External_Verneed *src,
118 Elf_Internal_Verneed *dst)
120 dst->vn_version = H_GET_16 (abfd, src->vn_version);
121 dst->vn_cnt = H_GET_16 (abfd, src->vn_cnt);
122 dst->vn_file = H_GET_32 (abfd, src->vn_file);
123 dst->vn_aux = H_GET_32 (abfd, src->vn_aux);
124 dst->vn_next = H_GET_32 (abfd, src->vn_next);
127 /* Swap out a Verneed structure. */
130 _bfd_elf_swap_verneed_out (bfd *abfd,
131 const Elf_Internal_Verneed *src,
132 Elf_External_Verneed *dst)
134 H_PUT_16 (abfd, src->vn_version, dst->vn_version);
135 H_PUT_16 (abfd, src->vn_cnt, dst->vn_cnt);
136 H_PUT_32 (abfd, src->vn_file, dst->vn_file);
137 H_PUT_32 (abfd, src->vn_aux, dst->vn_aux);
138 H_PUT_32 (abfd, src->vn_next, dst->vn_next);
141 /* Swap in a Vernaux structure. */
144 _bfd_elf_swap_vernaux_in (bfd *abfd,
145 const Elf_External_Vernaux *src,
146 Elf_Internal_Vernaux *dst)
148 dst->vna_hash = H_GET_32 (abfd, src->vna_hash);
149 dst->vna_flags = H_GET_16 (abfd, src->vna_flags);
150 dst->vna_other = H_GET_16 (abfd, src->vna_other);
151 dst->vna_name = H_GET_32 (abfd, src->vna_name);
152 dst->vna_next = H_GET_32 (abfd, src->vna_next);
155 /* Swap out a Vernaux structure. */
158 _bfd_elf_swap_vernaux_out (bfd *abfd,
159 const Elf_Internal_Vernaux *src,
160 Elf_External_Vernaux *dst)
162 H_PUT_32 (abfd, src->vna_hash, dst->vna_hash);
163 H_PUT_16 (abfd, src->vna_flags, dst->vna_flags);
164 H_PUT_16 (abfd, src->vna_other, dst->vna_other);
165 H_PUT_32 (abfd, src->vna_name, dst->vna_name);
166 H_PUT_32 (abfd, src->vna_next, dst->vna_next);
169 /* Swap in a Versym structure. */
172 _bfd_elf_swap_versym_in (bfd *abfd,
173 const Elf_External_Versym *src,
174 Elf_Internal_Versym *dst)
176 dst->vs_vers = H_GET_16 (abfd, src->vs_vers);
179 /* Swap out a Versym structure. */
182 _bfd_elf_swap_versym_out (bfd *abfd,
183 const Elf_Internal_Versym *src,
184 Elf_External_Versym *dst)
186 H_PUT_16 (abfd, src->vs_vers, dst->vs_vers);
189 /* Standard ELF hash function. Do not change this function; you will
190 cause invalid hash tables to be generated. */
193 bfd_elf_hash (const char *namearg)
195 const unsigned char *name = (const unsigned char *) namearg;
200 while ((ch = *name++) != '\0')
203 if ((g = (h & 0xf0000000)) != 0)
206 /* The ELF ABI says `h &= ~g', but this is equivalent in
207 this case and on some machines one insn instead of two. */
211 return h & 0xffffffff;
214 /* DT_GNU_HASH hash function. Do not change this function; you will
215 cause invalid hash tables to be generated. */
218 bfd_elf_gnu_hash (const char *namearg)
220 const unsigned char *name = (const unsigned char *) namearg;
221 unsigned long h = 5381;
224 while ((ch = *name++) != '\0')
225 h = (h << 5) + h + ch;
226 return h & 0xffffffff;
230 bfd_elf_mkobject (bfd *abfd)
232 if (abfd->tdata.any == NULL)
234 abfd->tdata.any = bfd_zalloc (abfd, sizeof (struct elf_obj_tdata));
235 if (abfd->tdata.any == NULL)
239 elf_tdata (abfd)->program_header_size = (bfd_size_type) -1;
245 bfd_elf_mkcorefile (bfd *abfd)
247 /* I think this can be done just like an object file. */
248 return bfd_elf_mkobject (abfd);
252 bfd_elf_get_str_section (bfd *abfd, unsigned int shindex)
254 Elf_Internal_Shdr **i_shdrp;
255 bfd_byte *shstrtab = NULL;
257 bfd_size_type shstrtabsize;
259 i_shdrp = elf_elfsections (abfd);
261 || shindex >= elf_numsections (abfd)
262 || i_shdrp[shindex] == 0)
265 shstrtab = i_shdrp[shindex]->contents;
266 if (shstrtab == NULL)
268 /* No cached one, attempt to read, and cache what we read. */
269 offset = i_shdrp[shindex]->sh_offset;
270 shstrtabsize = i_shdrp[shindex]->sh_size;
272 /* Allocate and clear an extra byte at the end, to prevent crashes
273 in case the string table is not terminated. */
274 if (shstrtabsize + 1 == 0
275 || (shstrtab = bfd_alloc (abfd, shstrtabsize + 1)) == NULL
276 || bfd_seek (abfd, offset, SEEK_SET) != 0)
278 else if (bfd_bread (shstrtab, shstrtabsize, abfd) != shstrtabsize)
280 if (bfd_get_error () != bfd_error_system_call)
281 bfd_set_error (bfd_error_file_truncated);
285 shstrtab[shstrtabsize] = '\0';
286 i_shdrp[shindex]->contents = shstrtab;
288 return (char *) shstrtab;
292 bfd_elf_string_from_elf_section (bfd *abfd,
293 unsigned int shindex,
294 unsigned int strindex)
296 Elf_Internal_Shdr *hdr;
301 if (elf_elfsections (abfd) == NULL || shindex >= elf_numsections (abfd))
304 hdr = elf_elfsections (abfd)[shindex];
306 if (hdr->contents == NULL
307 && bfd_elf_get_str_section (abfd, shindex) == NULL)
310 if (strindex >= hdr->sh_size)
312 unsigned int shstrndx = elf_elfheader(abfd)->e_shstrndx;
313 (*_bfd_error_handler)
314 (_("%B: invalid string offset %u >= %lu for section `%s'"),
315 abfd, strindex, (unsigned long) hdr->sh_size,
316 (shindex == shstrndx && strindex == hdr->sh_name
318 : bfd_elf_string_from_elf_section (abfd, shstrndx, hdr->sh_name)));
322 return ((char *) hdr->contents) + strindex;
325 /* Read and convert symbols to internal format.
326 SYMCOUNT specifies the number of symbols to read, starting from
327 symbol SYMOFFSET. If any of INTSYM_BUF, EXTSYM_BUF or EXTSHNDX_BUF
328 are non-NULL, they are used to store the internal symbols, external
329 symbols, and symbol section index extensions, respectively. */
332 bfd_elf_get_elf_syms (bfd *ibfd,
333 Elf_Internal_Shdr *symtab_hdr,
336 Elf_Internal_Sym *intsym_buf,
338 Elf_External_Sym_Shndx *extshndx_buf)
340 Elf_Internal_Shdr *shndx_hdr;
342 const bfd_byte *esym;
343 Elf_External_Sym_Shndx *alloc_extshndx;
344 Elf_External_Sym_Shndx *shndx;
345 Elf_Internal_Sym *isym;
346 Elf_Internal_Sym *isymend;
347 const struct elf_backend_data *bed;
355 /* Normal syms might have section extension entries. */
357 if (symtab_hdr == &elf_tdata (ibfd)->symtab_hdr)
358 shndx_hdr = &elf_tdata (ibfd)->symtab_shndx_hdr;
360 /* Read the symbols. */
362 alloc_extshndx = NULL;
363 bed = get_elf_backend_data (ibfd);
364 extsym_size = bed->s->sizeof_sym;
365 amt = symcount * extsym_size;
366 pos = symtab_hdr->sh_offset + symoffset * extsym_size;
367 if (extsym_buf == NULL)
369 alloc_ext = bfd_malloc2 (symcount, extsym_size);
370 extsym_buf = alloc_ext;
372 if (extsym_buf == NULL
373 || bfd_seek (ibfd, pos, SEEK_SET) != 0
374 || bfd_bread (extsym_buf, amt, ibfd) != amt)
380 if (shndx_hdr == NULL || shndx_hdr->sh_size == 0)
384 amt = symcount * sizeof (Elf_External_Sym_Shndx);
385 pos = shndx_hdr->sh_offset + symoffset * sizeof (Elf_External_Sym_Shndx);
386 if (extshndx_buf == NULL)
388 alloc_extshndx = bfd_malloc2 (symcount,
389 sizeof (Elf_External_Sym_Shndx));
390 extshndx_buf = alloc_extshndx;
392 if (extshndx_buf == NULL
393 || bfd_seek (ibfd, pos, SEEK_SET) != 0
394 || bfd_bread (extshndx_buf, amt, ibfd) != amt)
401 if (intsym_buf == NULL)
403 intsym_buf = bfd_malloc2 (symcount, sizeof (Elf_Internal_Sym));
404 if (intsym_buf == NULL)
408 /* Convert the symbols to internal form. */
409 isymend = intsym_buf + symcount;
410 for (esym = extsym_buf, isym = intsym_buf, shndx = extshndx_buf;
412 esym += extsym_size, isym++, shndx = shndx != NULL ? shndx + 1 : NULL)
413 if (!(*bed->s->swap_symbol_in) (ibfd, esym, shndx, isym))
415 symoffset += (esym - (bfd_byte *) extsym_buf) / extsym_size;
416 (*_bfd_error_handler) (_("%B symbol number %lu references "
417 "nonexistent SHT_SYMTAB_SHNDX section"),
418 ibfd, (unsigned long) symoffset);
424 if (alloc_ext != NULL)
426 if (alloc_extshndx != NULL)
427 free (alloc_extshndx);
432 /* Look up a symbol name. */
434 bfd_elf_sym_name (bfd *abfd,
435 Elf_Internal_Shdr *symtab_hdr,
436 Elf_Internal_Sym *isym,
440 unsigned int iname = isym->st_name;
441 unsigned int shindex = symtab_hdr->sh_link;
443 if (iname == 0 && ELF_ST_TYPE (isym->st_info) == STT_SECTION
444 /* Check for a bogus st_shndx to avoid crashing. */
445 && isym->st_shndx < elf_numsections (abfd)
446 && !(isym->st_shndx >= SHN_LORESERVE && isym->st_shndx <= SHN_HIRESERVE))
448 iname = elf_elfsections (abfd)[isym->st_shndx]->sh_name;
449 shindex = elf_elfheader (abfd)->e_shstrndx;
452 name = bfd_elf_string_from_elf_section (abfd, shindex, iname);
455 else if (sym_sec && *name == '\0')
456 name = bfd_section_name (abfd, sym_sec);
461 /* Elf_Internal_Shdr->contents is an array of these for SHT_GROUP
462 sections. The first element is the flags, the rest are section
465 typedef union elf_internal_group {
466 Elf_Internal_Shdr *shdr;
468 } Elf_Internal_Group;
470 /* Return the name of the group signature symbol. Why isn't the
471 signature just a string? */
474 group_signature (bfd *abfd, Elf_Internal_Shdr *ghdr)
476 Elf_Internal_Shdr *hdr;
477 unsigned char esym[sizeof (Elf64_External_Sym)];
478 Elf_External_Sym_Shndx eshndx;
479 Elf_Internal_Sym isym;
481 /* First we need to ensure the symbol table is available. Make sure
482 that it is a symbol table section. */
483 hdr = elf_elfsections (abfd) [ghdr->sh_link];
484 if (hdr->sh_type != SHT_SYMTAB
485 || ! bfd_section_from_shdr (abfd, ghdr->sh_link))
488 /* Go read the symbol. */
489 hdr = &elf_tdata (abfd)->symtab_hdr;
490 if (bfd_elf_get_elf_syms (abfd, hdr, 1, ghdr->sh_info,
491 &isym, esym, &eshndx) == NULL)
494 return bfd_elf_sym_name (abfd, hdr, &isym, NULL);
497 /* Set next_in_group list pointer, and group name for NEWSECT. */
500 setup_group (bfd *abfd, Elf_Internal_Shdr *hdr, asection *newsect)
502 unsigned int num_group = elf_tdata (abfd)->num_group;
504 /* If num_group is zero, read in all SHT_GROUP sections. The count
505 is set to -1 if there are no SHT_GROUP sections. */
508 unsigned int i, shnum;
510 /* First count the number of groups. If we have a SHT_GROUP
511 section with just a flag word (ie. sh_size is 4), ignore it. */
512 shnum = elf_numsections (abfd);
515 #define IS_VALID_GROUP_SECTION_HEADER(shdr) \
516 ( (shdr)->sh_type == SHT_GROUP \
517 && (shdr)->sh_size >= (2 * GRP_ENTRY_SIZE) \
518 && (shdr)->sh_entsize == GRP_ENTRY_SIZE \
519 && ((shdr)->sh_size % GRP_ENTRY_SIZE) == 0)
521 for (i = 0; i < shnum; i++)
523 Elf_Internal_Shdr *shdr = elf_elfsections (abfd)[i];
525 if (IS_VALID_GROUP_SECTION_HEADER (shdr))
531 num_group = (unsigned) -1;
532 elf_tdata (abfd)->num_group = num_group;
536 /* We keep a list of elf section headers for group sections,
537 so we can find them quickly. */
540 elf_tdata (abfd)->num_group = num_group;
541 elf_tdata (abfd)->group_sect_ptr
542 = bfd_alloc2 (abfd, num_group, sizeof (Elf_Internal_Shdr *));
543 if (elf_tdata (abfd)->group_sect_ptr == NULL)
547 for (i = 0; i < shnum; i++)
549 Elf_Internal_Shdr *shdr = elf_elfsections (abfd)[i];
551 if (IS_VALID_GROUP_SECTION_HEADER (shdr))
554 Elf_Internal_Group *dest;
556 /* Add to list of sections. */
557 elf_tdata (abfd)->group_sect_ptr[num_group] = shdr;
560 /* Read the raw contents. */
561 BFD_ASSERT (sizeof (*dest) >= 4);
562 amt = shdr->sh_size * sizeof (*dest) / 4;
563 shdr->contents = bfd_alloc2 (abfd, shdr->sh_size,
565 /* PR binutils/4110: Handle corrupt group headers. */
566 if (shdr->contents == NULL)
569 (_("%B: Corrupt size field in group section header: 0x%lx"), abfd, shdr->sh_size);
570 bfd_set_error (bfd_error_bad_value);
574 memset (shdr->contents, 0, amt);
576 if (bfd_seek (abfd, shdr->sh_offset, SEEK_SET) != 0
577 || (bfd_bread (shdr->contents, shdr->sh_size, abfd)
581 /* Translate raw contents, a flag word followed by an
582 array of elf section indices all in target byte order,
583 to the flag word followed by an array of elf section
585 src = shdr->contents + shdr->sh_size;
586 dest = (Elf_Internal_Group *) (shdr->contents + amt);
593 idx = H_GET_32 (abfd, src);
594 if (src == shdr->contents)
597 if (shdr->bfd_section != NULL && (idx & GRP_COMDAT))
598 shdr->bfd_section->flags
599 |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
604 ((*_bfd_error_handler)
605 (_("%B: invalid SHT_GROUP entry"), abfd));
608 dest->shdr = elf_elfsections (abfd)[idx];
615 if (num_group != (unsigned) -1)
619 for (i = 0; i < num_group; i++)
621 Elf_Internal_Shdr *shdr = elf_tdata (abfd)->group_sect_ptr[i];
622 Elf_Internal_Group *idx = (Elf_Internal_Group *) shdr->contents;
623 unsigned int n_elt = shdr->sh_size / 4;
625 /* Look through this group's sections to see if current
626 section is a member. */
628 if ((++idx)->shdr == hdr)
632 /* We are a member of this group. Go looking through
633 other members to see if any others are linked via
635 idx = (Elf_Internal_Group *) shdr->contents;
636 n_elt = shdr->sh_size / 4;
638 if ((s = (++idx)->shdr->bfd_section) != NULL
639 && elf_next_in_group (s) != NULL)
643 /* Snarf the group name from other member, and
644 insert current section in circular list. */
645 elf_group_name (newsect) = elf_group_name (s);
646 elf_next_in_group (newsect) = elf_next_in_group (s);
647 elf_next_in_group (s) = newsect;
653 gname = group_signature (abfd, shdr);
656 elf_group_name (newsect) = gname;
658 /* Start a circular list with one element. */
659 elf_next_in_group (newsect) = newsect;
662 /* If the group section has been created, point to the
664 if (shdr->bfd_section != NULL)
665 elf_next_in_group (shdr->bfd_section) = newsect;
673 if (elf_group_name (newsect) == NULL)
675 (*_bfd_error_handler) (_("%B: no group info for section %A"),
682 _bfd_elf_setup_sections (bfd *abfd)
685 unsigned int num_group = elf_tdata (abfd)->num_group;
686 bfd_boolean result = TRUE;
689 /* Process SHF_LINK_ORDER. */
690 for (s = abfd->sections; s != NULL; s = s->next)
692 Elf_Internal_Shdr *this_hdr = &elf_section_data (s)->this_hdr;
693 if ((this_hdr->sh_flags & SHF_LINK_ORDER) != 0)
695 unsigned int elfsec = this_hdr->sh_link;
696 /* FIXME: The old Intel compiler and old strip/objcopy may
697 not set the sh_link or sh_info fields. Hence we could
698 get the situation where elfsec is 0. */
701 const struct elf_backend_data *bed
702 = get_elf_backend_data (abfd);
703 if (bed->link_order_error_handler)
704 bed->link_order_error_handler
705 (_("%B: warning: sh_link not set for section `%A'"),
712 this_hdr = elf_elfsections (abfd)[elfsec];
715 Some strip/objcopy may leave an incorrect value in
716 sh_link. We don't want to proceed. */
717 link = this_hdr->bfd_section;
720 (*_bfd_error_handler)
721 (_("%B: sh_link [%d] in section `%A' is incorrect"),
722 s->owner, s, elfsec);
726 elf_linked_to_section (s) = link;
731 /* Process section groups. */
732 if (num_group == (unsigned) -1)
735 for (i = 0; i < num_group; i++)
737 Elf_Internal_Shdr *shdr = elf_tdata (abfd)->group_sect_ptr[i];
738 Elf_Internal_Group *idx = (Elf_Internal_Group *) shdr->contents;
739 unsigned int n_elt = shdr->sh_size / 4;
742 if ((++idx)->shdr->bfd_section)
743 elf_sec_group (idx->shdr->bfd_section) = shdr->bfd_section;
744 else if (idx->shdr->sh_type == SHT_RELA
745 || idx->shdr->sh_type == SHT_REL)
746 /* We won't include relocation sections in section groups in
747 output object files. We adjust the group section size here
748 so that relocatable link will work correctly when
749 relocation sections are in section group in input object
751 shdr->bfd_section->size -= 4;
754 /* There are some unknown sections in the group. */
755 (*_bfd_error_handler)
756 (_("%B: unknown [%d] section `%s' in group [%s]"),
758 (unsigned int) idx->shdr->sh_type,
759 bfd_elf_string_from_elf_section (abfd,
760 (elf_elfheader (abfd)
763 shdr->bfd_section->name);
771 bfd_elf_is_group_section (bfd *abfd ATTRIBUTE_UNUSED, const asection *sec)
773 return elf_next_in_group (sec) != NULL;
776 /* Make a BFD section from an ELF section. We store a pointer to the
777 BFD section in the bfd_section field of the header. */
780 _bfd_elf_make_section_from_shdr (bfd *abfd,
781 Elf_Internal_Shdr *hdr,
787 const struct elf_backend_data *bed;
789 if (hdr->bfd_section != NULL)
791 BFD_ASSERT (strcmp (name,
792 bfd_get_section_name (abfd, hdr->bfd_section)) == 0);
796 newsect = bfd_make_section_anyway (abfd, name);
800 hdr->bfd_section = newsect;
801 elf_section_data (newsect)->this_hdr = *hdr;
802 elf_section_data (newsect)->this_idx = shindex;
804 /* Always use the real type/flags. */
805 elf_section_type (newsect) = hdr->sh_type;
806 elf_section_flags (newsect) = hdr->sh_flags;
808 newsect->filepos = hdr->sh_offset;
810 if (! bfd_set_section_vma (abfd, newsect, hdr->sh_addr)
811 || ! bfd_set_section_size (abfd, newsect, hdr->sh_size)
812 || ! bfd_set_section_alignment (abfd, newsect,
813 bfd_log2 ((bfd_vma) hdr->sh_addralign)))
816 flags = SEC_NO_FLAGS;
817 if (hdr->sh_type != SHT_NOBITS)
818 flags |= SEC_HAS_CONTENTS;
819 if (hdr->sh_type == SHT_GROUP)
820 flags |= SEC_GROUP | SEC_EXCLUDE;
821 if ((hdr->sh_flags & SHF_ALLOC) != 0)
824 if (hdr->sh_type != SHT_NOBITS)
827 if ((hdr->sh_flags & SHF_WRITE) == 0)
828 flags |= SEC_READONLY;
829 if ((hdr->sh_flags & SHF_EXECINSTR) != 0)
831 else if ((flags & SEC_LOAD) != 0)
833 if ((hdr->sh_flags & SHF_MERGE) != 0)
836 newsect->entsize = hdr->sh_entsize;
837 if ((hdr->sh_flags & SHF_STRINGS) != 0)
838 flags |= SEC_STRINGS;
840 if (hdr->sh_flags & SHF_GROUP)
841 if (!setup_group (abfd, hdr, newsect))
843 if ((hdr->sh_flags & SHF_TLS) != 0)
844 flags |= SEC_THREAD_LOCAL;
846 if ((flags & SEC_ALLOC) == 0)
848 /* The debugging sections appear to be recognized only by name,
849 not any sort of flag. Their SEC_ALLOC bits are cleared. */
854 } debug_sections [] =
856 { STRING_COMMA_LEN ("debug") }, /* 'd' */
857 { NULL, 0 }, /* 'e' */
858 { NULL, 0 }, /* 'f' */
859 { STRING_COMMA_LEN ("gnu.linkonce.wi.") }, /* 'g' */
860 { NULL, 0 }, /* 'h' */
861 { NULL, 0 }, /* 'i' */
862 { NULL, 0 }, /* 'j' */
863 { NULL, 0 }, /* 'k' */
864 { STRING_COMMA_LEN ("line") }, /* 'l' */
865 { NULL, 0 }, /* 'm' */
866 { NULL, 0 }, /* 'n' */
867 { NULL, 0 }, /* 'o' */
868 { NULL, 0 }, /* 'p' */
869 { NULL, 0 }, /* 'q' */
870 { NULL, 0 }, /* 'r' */
871 { STRING_COMMA_LEN ("stab") } /* 's' */
876 int i = name [1] - 'd';
878 && i < (int) ARRAY_SIZE (debug_sections)
879 && debug_sections [i].name != NULL
880 && strncmp (&name [1], debug_sections [i].name,
881 debug_sections [i].len) == 0)
882 flags |= SEC_DEBUGGING;
886 /* As a GNU extension, if the name begins with .gnu.linkonce, we
887 only link a single copy of the section. This is used to support
888 g++. g++ will emit each template expansion in its own section.
889 The symbols will be defined as weak, so that multiple definitions
890 are permitted. The GNU linker extension is to actually discard
891 all but one of the sections. */
892 if (CONST_STRNEQ (name, ".gnu.linkonce")
893 && elf_next_in_group (newsect) == NULL)
894 flags |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
896 bed = get_elf_backend_data (abfd);
897 if (bed->elf_backend_section_flags)
898 if (! bed->elf_backend_section_flags (&flags, hdr))
901 if (! bfd_set_section_flags (abfd, newsect, flags))
904 /* We do not parse the PT_NOTE segments as we are interested even in the
905 separate debug info files which may have the segments offsets corrupted.
906 PT_NOTEs from the core files are currently not parsed using BFD. */
907 if (hdr->sh_type == SHT_NOTE)
911 contents = bfd_malloc (hdr->sh_size);
915 if (!bfd_get_section_contents (abfd, hdr->bfd_section, contents, 0,
917 || !elf_parse_notes (abfd, contents, hdr->sh_size, -1))
926 if ((flags & SEC_ALLOC) != 0)
928 Elf_Internal_Phdr *phdr;
931 /* Look through the phdrs to see if we need to adjust the lma.
932 If all the p_paddr fields are zero, we ignore them, since
933 some ELF linkers produce such output. */
934 phdr = elf_tdata (abfd)->phdr;
935 for (i = 0; i < elf_elfheader (abfd)->e_phnum; i++, phdr++)
937 if (phdr->p_paddr != 0)
940 if (i < elf_elfheader (abfd)->e_phnum)
942 phdr = elf_tdata (abfd)->phdr;
943 for (i = 0; i < elf_elfheader (abfd)->e_phnum; i++, phdr++)
945 /* This section is part of this segment if its file
946 offset plus size lies within the segment's memory
947 span and, if the section is loaded, the extent of the
948 loaded data lies within the extent of the segment.
950 Note - we used to check the p_paddr field as well, and
951 refuse to set the LMA if it was 0. This is wrong
952 though, as a perfectly valid initialised segment can
953 have a p_paddr of zero. Some architectures, eg ARM,
954 place special significance on the address 0 and
955 executables need to be able to have a segment which
956 covers this address. */
957 if (phdr->p_type == PT_LOAD
958 && (bfd_vma) hdr->sh_offset >= phdr->p_offset
959 && (hdr->sh_offset + hdr->sh_size
960 <= phdr->p_offset + phdr->p_memsz)
961 && ((flags & SEC_LOAD) == 0
962 || (hdr->sh_offset + hdr->sh_size
963 <= phdr->p_offset + phdr->p_filesz)))
965 if ((flags & SEC_LOAD) == 0)
966 newsect->lma = (phdr->p_paddr
967 + hdr->sh_addr - phdr->p_vaddr);
969 /* We used to use the same adjustment for SEC_LOAD
970 sections, but that doesn't work if the segment
971 is packed with code from multiple VMAs.
972 Instead we calculate the section LMA based on
973 the segment LMA. It is assumed that the
974 segment will contain sections with contiguous
975 LMAs, even if the VMAs are not. */
976 newsect->lma = (phdr->p_paddr
977 + hdr->sh_offset - phdr->p_offset);
979 /* With contiguous segments, we can't tell from file
980 offsets whether a section with zero size should
981 be placed at the end of one segment or the
982 beginning of the next. Decide based on vaddr. */
983 if (hdr->sh_addr >= phdr->p_vaddr
984 && (hdr->sh_addr + hdr->sh_size
985 <= phdr->p_vaddr + phdr->p_memsz))
1000 struct elf_internal_shdr *bfd_elf_find_section (bfd *abfd, char *name);
1003 Helper functions for GDB to locate the string tables.
1004 Since BFD hides string tables from callers, GDB needs to use an
1005 internal hook to find them. Sun's .stabstr, in particular,
1006 isn't even pointed to by the .stab section, so ordinary
1007 mechanisms wouldn't work to find it, even if we had some.
1010 struct elf_internal_shdr *
1011 bfd_elf_find_section (bfd *abfd, char *name)
1013 Elf_Internal_Shdr **i_shdrp;
1018 i_shdrp = elf_elfsections (abfd);
1019 if (i_shdrp != NULL)
1021 shstrtab = bfd_elf_get_str_section (abfd,
1022 elf_elfheader (abfd)->e_shstrndx);
1023 if (shstrtab != NULL)
1025 max = elf_numsections (abfd);
1026 for (i = 1; i < max; i++)
1027 if (!strcmp (&shstrtab[i_shdrp[i]->sh_name], name))
1034 const char *const bfd_elf_section_type_names[] = {
1035 "SHT_NULL", "SHT_PROGBITS", "SHT_SYMTAB", "SHT_STRTAB",
1036 "SHT_RELA", "SHT_HASH", "SHT_DYNAMIC", "SHT_NOTE",
1037 "SHT_NOBITS", "SHT_REL", "SHT_SHLIB", "SHT_DYNSYM",
1040 /* ELF relocs are against symbols. If we are producing relocatable
1041 output, and the reloc is against an external symbol, and nothing
1042 has given us any additional addend, the resulting reloc will also
1043 be against the same symbol. In such a case, we don't want to
1044 change anything about the way the reloc is handled, since it will
1045 all be done at final link time. Rather than put special case code
1046 into bfd_perform_relocation, all the reloc types use this howto
1047 function. It just short circuits the reloc if producing
1048 relocatable output against an external symbol. */
1050 bfd_reloc_status_type
1051 bfd_elf_generic_reloc (bfd *abfd ATTRIBUTE_UNUSED,
1052 arelent *reloc_entry,
1054 void *data ATTRIBUTE_UNUSED,
1055 asection *input_section,
1057 char **error_message ATTRIBUTE_UNUSED)
1059 if (output_bfd != NULL
1060 && (symbol->flags & BSF_SECTION_SYM) == 0
1061 && (! reloc_entry->howto->partial_inplace
1062 || reloc_entry->addend == 0))
1064 reloc_entry->address += input_section->output_offset;
1065 return bfd_reloc_ok;
1068 return bfd_reloc_continue;
1071 /* Copy the program header and other data from one object module to
1075 _bfd_elf_copy_private_bfd_data (bfd *ibfd, bfd *obfd)
1077 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
1078 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
1081 BFD_ASSERT (!elf_flags_init (obfd)
1082 || (elf_elfheader (obfd)->e_flags
1083 == elf_elfheader (ibfd)->e_flags));
1085 elf_gp (obfd) = elf_gp (ibfd);
1086 elf_elfheader (obfd)->e_flags = elf_elfheader (ibfd)->e_flags;
1087 elf_flags_init (obfd) = TRUE;
1089 /* Copy object attributes. */
1090 _bfd_elf_copy_obj_attributes (ibfd, obfd);
1096 get_segment_type (unsigned int p_type)
1101 case PT_NULL: pt = "NULL"; break;
1102 case PT_LOAD: pt = "LOAD"; break;
1103 case PT_DYNAMIC: pt = "DYNAMIC"; break;
1104 case PT_INTERP: pt = "INTERP"; break;
1105 case PT_NOTE: pt = "NOTE"; break;
1106 case PT_SHLIB: pt = "SHLIB"; break;
1107 case PT_PHDR: pt = "PHDR"; break;
1108 case PT_TLS: pt = "TLS"; break;
1109 case PT_GNU_EH_FRAME: pt = "EH_FRAME"; break;
1110 case PT_GNU_STACK: pt = "STACK"; break;
1111 case PT_GNU_RELRO: pt = "RELRO"; break;
1112 default: pt = NULL; break;
1117 /* Print out the program headers. */
1120 _bfd_elf_print_private_bfd_data (bfd *abfd, void *farg)
1123 Elf_Internal_Phdr *p;
1125 bfd_byte *dynbuf = NULL;
1127 p = elf_tdata (abfd)->phdr;
1132 fprintf (f, _("\nProgram Header:\n"));
1133 c = elf_elfheader (abfd)->e_phnum;
1134 for (i = 0; i < c; i++, p++)
1136 const char *pt = get_segment_type (p->p_type);
1141 sprintf (buf, "0x%lx", p->p_type);
1144 fprintf (f, "%8s off 0x", pt);
1145 bfd_fprintf_vma (abfd, f, p->p_offset);
1146 fprintf (f, " vaddr 0x");
1147 bfd_fprintf_vma (abfd, f, p->p_vaddr);
1148 fprintf (f, " paddr 0x");
1149 bfd_fprintf_vma (abfd, f, p->p_paddr);
1150 fprintf (f, " align 2**%u\n", bfd_log2 (p->p_align));
1151 fprintf (f, " filesz 0x");
1152 bfd_fprintf_vma (abfd, f, p->p_filesz);
1153 fprintf (f, " memsz 0x");
1154 bfd_fprintf_vma (abfd, f, p->p_memsz);
1155 fprintf (f, " flags %c%c%c",
1156 (p->p_flags & PF_R) != 0 ? 'r' : '-',
1157 (p->p_flags & PF_W) != 0 ? 'w' : '-',
1158 (p->p_flags & PF_X) != 0 ? 'x' : '-');
1159 if ((p->p_flags &~ (unsigned) (PF_R | PF_W | PF_X)) != 0)
1160 fprintf (f, " %lx", p->p_flags &~ (unsigned) (PF_R | PF_W | PF_X));
1165 s = bfd_get_section_by_name (abfd, ".dynamic");
1169 unsigned long shlink;
1170 bfd_byte *extdyn, *extdynend;
1172 void (*swap_dyn_in) (bfd *, const void *, Elf_Internal_Dyn *);
1174 fprintf (f, _("\nDynamic Section:\n"));
1176 if (!bfd_malloc_and_get_section (abfd, s, &dynbuf))
1179 elfsec = _bfd_elf_section_from_bfd_section (abfd, s);
1182 shlink = elf_elfsections (abfd)[elfsec]->sh_link;
1184 extdynsize = get_elf_backend_data (abfd)->s->sizeof_dyn;
1185 swap_dyn_in = get_elf_backend_data (abfd)->s->swap_dyn_in;
1188 extdynend = extdyn + s->size;
1189 for (; extdyn < extdynend; extdyn += extdynsize)
1191 Elf_Internal_Dyn dyn;
1194 bfd_boolean stringp;
1196 (*swap_dyn_in) (abfd, extdyn, &dyn);
1198 if (dyn.d_tag == DT_NULL)
1205 sprintf (ab, "0x%lx", (unsigned long) dyn.d_tag);
1209 case DT_NEEDED: name = "NEEDED"; stringp = TRUE; break;
1210 case DT_PLTRELSZ: name = "PLTRELSZ"; break;
1211 case DT_PLTGOT: name = "PLTGOT"; break;
1212 case DT_HASH: name = "HASH"; break;
1213 case DT_STRTAB: name = "STRTAB"; break;
1214 case DT_SYMTAB: name = "SYMTAB"; break;
1215 case DT_RELA: name = "RELA"; break;
1216 case DT_RELASZ: name = "RELASZ"; break;
1217 case DT_RELAENT: name = "RELAENT"; break;
1218 case DT_STRSZ: name = "STRSZ"; break;
1219 case DT_SYMENT: name = "SYMENT"; break;
1220 case DT_INIT: name = "INIT"; break;
1221 case DT_FINI: name = "FINI"; break;
1222 case DT_SONAME: name = "SONAME"; stringp = TRUE; break;
1223 case DT_RPATH: name = "RPATH"; stringp = TRUE; break;
1224 case DT_SYMBOLIC: name = "SYMBOLIC"; break;
1225 case DT_REL: name = "REL"; break;
1226 case DT_RELSZ: name = "RELSZ"; break;
1227 case DT_RELENT: name = "RELENT"; break;
1228 case DT_PLTREL: name = "PLTREL"; break;
1229 case DT_DEBUG: name = "DEBUG"; break;
1230 case DT_TEXTREL: name = "TEXTREL"; break;
1231 case DT_JMPREL: name = "JMPREL"; break;
1232 case DT_BIND_NOW: name = "BIND_NOW"; break;
1233 case DT_INIT_ARRAY: name = "INIT_ARRAY"; break;
1234 case DT_FINI_ARRAY: name = "FINI_ARRAY"; break;
1235 case DT_INIT_ARRAYSZ: name = "INIT_ARRAYSZ"; break;
1236 case DT_FINI_ARRAYSZ: name = "FINI_ARRAYSZ"; break;
1237 case DT_RUNPATH: name = "RUNPATH"; stringp = TRUE; break;
1238 case DT_FLAGS: name = "FLAGS"; break;
1239 case DT_PREINIT_ARRAY: name = "PREINIT_ARRAY"; break;
1240 case DT_PREINIT_ARRAYSZ: name = "PREINIT_ARRAYSZ"; break;
1241 case DT_CHECKSUM: name = "CHECKSUM"; break;
1242 case DT_PLTPADSZ: name = "PLTPADSZ"; break;
1243 case DT_MOVEENT: name = "MOVEENT"; break;
1244 case DT_MOVESZ: name = "MOVESZ"; break;
1245 case DT_FEATURE: name = "FEATURE"; break;
1246 case DT_POSFLAG_1: name = "POSFLAG_1"; break;
1247 case DT_SYMINSZ: name = "SYMINSZ"; break;
1248 case DT_SYMINENT: name = "SYMINENT"; break;
1249 case DT_CONFIG: name = "CONFIG"; stringp = TRUE; break;
1250 case DT_DEPAUDIT: name = "DEPAUDIT"; stringp = TRUE; break;
1251 case DT_AUDIT: name = "AUDIT"; stringp = TRUE; break;
1252 case DT_PLTPAD: name = "PLTPAD"; break;
1253 case DT_MOVETAB: name = "MOVETAB"; break;
1254 case DT_SYMINFO: name = "SYMINFO"; break;
1255 case DT_RELACOUNT: name = "RELACOUNT"; break;
1256 case DT_RELCOUNT: name = "RELCOUNT"; break;
1257 case DT_FLAGS_1: name = "FLAGS_1"; break;
1258 case DT_VERSYM: name = "VERSYM"; break;
1259 case DT_VERDEF: name = "VERDEF"; break;
1260 case DT_VERDEFNUM: name = "VERDEFNUM"; break;
1261 case DT_VERNEED: name = "VERNEED"; break;
1262 case DT_VERNEEDNUM: name = "VERNEEDNUM"; break;
1263 case DT_AUXILIARY: name = "AUXILIARY"; stringp = TRUE; break;
1264 case DT_USED: name = "USED"; break;
1265 case DT_FILTER: name = "FILTER"; stringp = TRUE; break;
1266 case DT_GNU_HASH: name = "GNU_HASH"; break;
1269 fprintf (f, " %-11s ", name);
1271 fprintf (f, "0x%lx", (unsigned long) dyn.d_un.d_val);
1275 unsigned int tagv = dyn.d_un.d_val;
1277 string = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
1280 fprintf (f, "%s", string);
1289 if ((elf_dynverdef (abfd) != 0 && elf_tdata (abfd)->verdef == NULL)
1290 || (elf_dynverref (abfd) != 0 && elf_tdata (abfd)->verref == NULL))
1292 if (! _bfd_elf_slurp_version_tables (abfd, FALSE))
1296 if (elf_dynverdef (abfd) != 0)
1298 Elf_Internal_Verdef *t;
1300 fprintf (f, _("\nVersion definitions:\n"));
1301 for (t = elf_tdata (abfd)->verdef; t != NULL; t = t->vd_nextdef)
1303 fprintf (f, "%d 0x%2.2x 0x%8.8lx %s\n", t->vd_ndx,
1304 t->vd_flags, t->vd_hash,
1305 t->vd_nodename ? t->vd_nodename : "<corrupt>");
1306 if (t->vd_auxptr != NULL && t->vd_auxptr->vda_nextptr != NULL)
1308 Elf_Internal_Verdaux *a;
1311 for (a = t->vd_auxptr->vda_nextptr;
1315 a->vda_nodename ? a->vda_nodename : "<corrupt>");
1321 if (elf_dynverref (abfd) != 0)
1323 Elf_Internal_Verneed *t;
1325 fprintf (f, _("\nVersion References:\n"));
1326 for (t = elf_tdata (abfd)->verref; t != NULL; t = t->vn_nextref)
1328 Elf_Internal_Vernaux *a;
1330 fprintf (f, _(" required from %s:\n"),
1331 t->vn_filename ? t->vn_filename : "<corrupt>");
1332 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
1333 fprintf (f, " 0x%8.8lx 0x%2.2x %2.2d %s\n", a->vna_hash,
1334 a->vna_flags, a->vna_other,
1335 a->vna_nodename ? a->vna_nodename : "<corrupt>");
1347 /* Display ELF-specific fields of a symbol. */
1350 bfd_elf_print_symbol (bfd *abfd,
1353 bfd_print_symbol_type how)
1358 case bfd_print_symbol_name:
1359 fprintf (file, "%s", symbol->name);
1361 case bfd_print_symbol_more:
1362 fprintf (file, "elf ");
1363 bfd_fprintf_vma (abfd, file, symbol->value);
1364 fprintf (file, " %lx", (long) symbol->flags);
1366 case bfd_print_symbol_all:
1368 const char *section_name;
1369 const char *name = NULL;
1370 const struct elf_backend_data *bed;
1371 unsigned char st_other;
1374 section_name = symbol->section ? symbol->section->name : "(*none*)";
1376 bed = get_elf_backend_data (abfd);
1377 if (bed->elf_backend_print_symbol_all)
1378 name = (*bed->elf_backend_print_symbol_all) (abfd, filep, symbol);
1382 name = symbol->name;
1383 bfd_print_symbol_vandf (abfd, file, symbol);
1386 fprintf (file, " %s\t", section_name);
1387 /* Print the "other" value for a symbol. For common symbols,
1388 we've already printed the size; now print the alignment.
1389 For other symbols, we have no specified alignment, and
1390 we've printed the address; now print the size. */
1391 if (symbol->section && bfd_is_com_section (symbol->section))
1392 val = ((elf_symbol_type *) symbol)->internal_elf_sym.st_value;
1394 val = ((elf_symbol_type *) symbol)->internal_elf_sym.st_size;
1395 bfd_fprintf_vma (abfd, file, val);
1397 /* If we have version information, print it. */
1398 if (elf_tdata (abfd)->dynversym_section != 0
1399 && (elf_tdata (abfd)->dynverdef_section != 0
1400 || elf_tdata (abfd)->dynverref_section != 0))
1402 unsigned int vernum;
1403 const char *version_string;
1405 vernum = ((elf_symbol_type *) symbol)->version & VERSYM_VERSION;
1408 version_string = "";
1409 else if (vernum == 1)
1410 version_string = "Base";
1411 else if (vernum <= elf_tdata (abfd)->cverdefs)
1413 elf_tdata (abfd)->verdef[vernum - 1].vd_nodename;
1416 Elf_Internal_Verneed *t;
1418 version_string = "";
1419 for (t = elf_tdata (abfd)->verref;
1423 Elf_Internal_Vernaux *a;
1425 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
1427 if (a->vna_other == vernum)
1429 version_string = a->vna_nodename;
1436 if ((((elf_symbol_type *) symbol)->version & VERSYM_HIDDEN) == 0)
1437 fprintf (file, " %-11s", version_string);
1442 fprintf (file, " (%s)", version_string);
1443 for (i = 10 - strlen (version_string); i > 0; --i)
1448 /* If the st_other field is not zero, print it. */
1449 st_other = ((elf_symbol_type *) symbol)->internal_elf_sym.st_other;
1454 case STV_INTERNAL: fprintf (file, " .internal"); break;
1455 case STV_HIDDEN: fprintf (file, " .hidden"); break;
1456 case STV_PROTECTED: fprintf (file, " .protected"); break;
1458 /* Some other non-defined flags are also present, so print
1460 fprintf (file, " 0x%02x", (unsigned int) st_other);
1463 fprintf (file, " %s", name);
1469 /* Allocate an ELF string table--force the first byte to be zero. */
1471 struct bfd_strtab_hash *
1472 _bfd_elf_stringtab_init (void)
1474 struct bfd_strtab_hash *ret;
1476 ret = _bfd_stringtab_init ();
1481 loc = _bfd_stringtab_add (ret, "", TRUE, FALSE);
1482 BFD_ASSERT (loc == 0 || loc == (bfd_size_type) -1);
1483 if (loc == (bfd_size_type) -1)
1485 _bfd_stringtab_free (ret);
1492 /* ELF .o/exec file reading */
1494 /* Create a new bfd section from an ELF section header. */
1497 bfd_section_from_shdr (bfd *abfd, unsigned int shindex)
1499 Elf_Internal_Shdr *hdr = elf_elfsections (abfd)[shindex];
1500 Elf_Internal_Ehdr *ehdr = elf_elfheader (abfd);
1501 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
1504 name = bfd_elf_string_from_elf_section (abfd,
1505 elf_elfheader (abfd)->e_shstrndx,
1510 switch (hdr->sh_type)
1513 /* Inactive section. Throw it away. */
1516 case SHT_PROGBITS: /* Normal section with contents. */
1517 case SHT_NOBITS: /* .bss section. */
1518 case SHT_HASH: /* .hash section. */
1519 case SHT_NOTE: /* .note section. */
1520 case SHT_INIT_ARRAY: /* .init_array section. */
1521 case SHT_FINI_ARRAY: /* .fini_array section. */
1522 case SHT_PREINIT_ARRAY: /* .preinit_array section. */
1523 case SHT_GNU_LIBLIST: /* .gnu.liblist section. */
1524 case SHT_GNU_HASH: /* .gnu.hash section. */
1525 return _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
1527 case SHT_DYNAMIC: /* Dynamic linking information. */
1528 if (! _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex))
1530 if (hdr->sh_link > elf_numsections (abfd)
1531 || elf_elfsections (abfd)[hdr->sh_link] == NULL)
1533 if (elf_elfsections (abfd)[hdr->sh_link]->sh_type != SHT_STRTAB)
1535 Elf_Internal_Shdr *dynsymhdr;
1537 /* The shared libraries distributed with hpux11 have a bogus
1538 sh_link field for the ".dynamic" section. Find the
1539 string table for the ".dynsym" section instead. */
1540 if (elf_dynsymtab (abfd) != 0)
1542 dynsymhdr = elf_elfsections (abfd)[elf_dynsymtab (abfd)];
1543 hdr->sh_link = dynsymhdr->sh_link;
1547 unsigned int i, num_sec;
1549 num_sec = elf_numsections (abfd);
1550 for (i = 1; i < num_sec; i++)
1552 dynsymhdr = elf_elfsections (abfd)[i];
1553 if (dynsymhdr->sh_type == SHT_DYNSYM)
1555 hdr->sh_link = dynsymhdr->sh_link;
1563 case SHT_SYMTAB: /* A symbol table */
1564 if (elf_onesymtab (abfd) == shindex)
1567 if (hdr->sh_entsize != bed->s->sizeof_sym)
1569 BFD_ASSERT (elf_onesymtab (abfd) == 0);
1570 elf_onesymtab (abfd) = shindex;
1571 elf_tdata (abfd)->symtab_hdr = *hdr;
1572 elf_elfsections (abfd)[shindex] = hdr = &elf_tdata (abfd)->symtab_hdr;
1573 abfd->flags |= HAS_SYMS;
1575 /* Sometimes a shared object will map in the symbol table. If
1576 SHF_ALLOC is set, and this is a shared object, then we also
1577 treat this section as a BFD section. We can not base the
1578 decision purely on SHF_ALLOC, because that flag is sometimes
1579 set in a relocatable object file, which would confuse the
1581 if ((hdr->sh_flags & SHF_ALLOC) != 0
1582 && (abfd->flags & DYNAMIC) != 0
1583 && ! _bfd_elf_make_section_from_shdr (abfd, hdr, name,
1587 /* Go looking for SHT_SYMTAB_SHNDX too, since if there is one we
1588 can't read symbols without that section loaded as well. It
1589 is most likely specified by the next section header. */
1590 if (elf_elfsections (abfd)[elf_symtab_shndx (abfd)]->sh_link != shindex)
1592 unsigned int i, num_sec;
1594 num_sec = elf_numsections (abfd);
1595 for (i = shindex + 1; i < num_sec; i++)
1597 Elf_Internal_Shdr *hdr2 = elf_elfsections (abfd)[i];
1598 if (hdr2->sh_type == SHT_SYMTAB_SHNDX
1599 && hdr2->sh_link == shindex)
1603 for (i = 1; i < shindex; i++)
1605 Elf_Internal_Shdr *hdr2 = elf_elfsections (abfd)[i];
1606 if (hdr2->sh_type == SHT_SYMTAB_SHNDX
1607 && hdr2->sh_link == shindex)
1611 return bfd_section_from_shdr (abfd, i);
1615 case SHT_DYNSYM: /* A dynamic symbol table */
1616 if (elf_dynsymtab (abfd) == shindex)
1619 if (hdr->sh_entsize != bed->s->sizeof_sym)
1621 BFD_ASSERT (elf_dynsymtab (abfd) == 0);
1622 elf_dynsymtab (abfd) = shindex;
1623 elf_tdata (abfd)->dynsymtab_hdr = *hdr;
1624 elf_elfsections (abfd)[shindex] = hdr = &elf_tdata (abfd)->dynsymtab_hdr;
1625 abfd->flags |= HAS_SYMS;
1627 /* Besides being a symbol table, we also treat this as a regular
1628 section, so that objcopy can handle it. */
1629 return _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
1631 case SHT_SYMTAB_SHNDX: /* Symbol section indices when >64k sections */
1632 if (elf_symtab_shndx (abfd) == shindex)
1635 BFD_ASSERT (elf_symtab_shndx (abfd) == 0);
1636 elf_symtab_shndx (abfd) = shindex;
1637 elf_tdata (abfd)->symtab_shndx_hdr = *hdr;
1638 elf_elfsections (abfd)[shindex] = &elf_tdata (abfd)->symtab_shndx_hdr;
1641 case SHT_STRTAB: /* A string table */
1642 if (hdr->bfd_section != NULL)
1644 if (ehdr->e_shstrndx == shindex)
1646 elf_tdata (abfd)->shstrtab_hdr = *hdr;
1647 elf_elfsections (abfd)[shindex] = &elf_tdata (abfd)->shstrtab_hdr;
1650 if (elf_elfsections (abfd)[elf_onesymtab (abfd)]->sh_link == shindex)
1653 elf_tdata (abfd)->strtab_hdr = *hdr;
1654 elf_elfsections (abfd)[shindex] = &elf_tdata (abfd)->strtab_hdr;
1657 if (elf_elfsections (abfd)[elf_dynsymtab (abfd)]->sh_link == shindex)
1660 elf_tdata (abfd)->dynstrtab_hdr = *hdr;
1661 hdr = &elf_tdata (abfd)->dynstrtab_hdr;
1662 elf_elfsections (abfd)[shindex] = hdr;
1663 /* We also treat this as a regular section, so that objcopy
1665 return _bfd_elf_make_section_from_shdr (abfd, hdr, name,
1669 /* If the string table isn't one of the above, then treat it as a
1670 regular section. We need to scan all the headers to be sure,
1671 just in case this strtab section appeared before the above. */
1672 if (elf_onesymtab (abfd) == 0 || elf_dynsymtab (abfd) == 0)
1674 unsigned int i, num_sec;
1676 num_sec = elf_numsections (abfd);
1677 for (i = 1; i < num_sec; i++)
1679 Elf_Internal_Shdr *hdr2 = elf_elfsections (abfd)[i];
1680 if (hdr2->sh_link == shindex)
1682 /* Prevent endless recursion on broken objects. */
1685 if (! bfd_section_from_shdr (abfd, i))
1687 if (elf_onesymtab (abfd) == i)
1689 if (elf_dynsymtab (abfd) == i)
1690 goto dynsymtab_strtab;
1694 return _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
1698 /* *These* do a lot of work -- but build no sections! */
1700 asection *target_sect;
1701 Elf_Internal_Shdr *hdr2;
1702 unsigned int num_sec = elf_numsections (abfd);
1705 != (bfd_size_type) (hdr->sh_type == SHT_REL
1706 ? bed->s->sizeof_rel : bed->s->sizeof_rela))
1709 /* Check for a bogus link to avoid crashing. */
1710 if ((hdr->sh_link >= SHN_LORESERVE && hdr->sh_link <= SHN_HIRESERVE)
1711 || hdr->sh_link >= num_sec)
1713 ((*_bfd_error_handler)
1714 (_("%B: invalid link %lu for reloc section %s (index %u)"),
1715 abfd, hdr->sh_link, name, shindex));
1716 return _bfd_elf_make_section_from_shdr (abfd, hdr, name,
1720 /* For some incomprehensible reason Oracle distributes
1721 libraries for Solaris in which some of the objects have
1722 bogus sh_link fields. It would be nice if we could just
1723 reject them, but, unfortunately, some people need to use
1724 them. We scan through the section headers; if we find only
1725 one suitable symbol table, we clobber the sh_link to point
1726 to it. I hope this doesn't break anything. */
1727 if (elf_elfsections (abfd)[hdr->sh_link]->sh_type != SHT_SYMTAB
1728 && elf_elfsections (abfd)[hdr->sh_link]->sh_type != SHT_DYNSYM)
1734 for (scan = 1; scan < num_sec; scan++)
1736 if (elf_elfsections (abfd)[scan]->sh_type == SHT_SYMTAB
1737 || elf_elfsections (abfd)[scan]->sh_type == SHT_DYNSYM)
1748 hdr->sh_link = found;
1751 /* Get the symbol table. */
1752 if ((elf_elfsections (abfd)[hdr->sh_link]->sh_type == SHT_SYMTAB
1753 || elf_elfsections (abfd)[hdr->sh_link]->sh_type == SHT_DYNSYM)
1754 && ! bfd_section_from_shdr (abfd, hdr->sh_link))
1757 /* If this reloc section does not use the main symbol table we
1758 don't treat it as a reloc section. BFD can't adequately
1759 represent such a section, so at least for now, we don't
1760 try. We just present it as a normal section. We also
1761 can't use it as a reloc section if it points to the null
1762 section, an invalid section, or another reloc section. */
1763 if (hdr->sh_link != elf_onesymtab (abfd)
1764 || hdr->sh_info == SHN_UNDEF
1765 || (hdr->sh_info >= SHN_LORESERVE && hdr->sh_info <= SHN_HIRESERVE)
1766 || hdr->sh_info >= num_sec
1767 || elf_elfsections (abfd)[hdr->sh_info]->sh_type == SHT_REL
1768 || elf_elfsections (abfd)[hdr->sh_info]->sh_type == SHT_RELA)
1769 return _bfd_elf_make_section_from_shdr (abfd, hdr, name,
1772 if (! bfd_section_from_shdr (abfd, hdr->sh_info))
1774 target_sect = bfd_section_from_elf_index (abfd, hdr->sh_info);
1775 if (target_sect == NULL)
1778 if ((target_sect->flags & SEC_RELOC) == 0
1779 || target_sect->reloc_count == 0)
1780 hdr2 = &elf_section_data (target_sect)->rel_hdr;
1784 BFD_ASSERT (elf_section_data (target_sect)->rel_hdr2 == NULL);
1785 amt = sizeof (*hdr2);
1786 hdr2 = bfd_alloc (abfd, amt);
1789 elf_section_data (target_sect)->rel_hdr2 = hdr2;
1792 elf_elfsections (abfd)[shindex] = hdr2;
1793 target_sect->reloc_count += NUM_SHDR_ENTRIES (hdr);
1794 target_sect->flags |= SEC_RELOC;
1795 target_sect->relocation = NULL;
1796 target_sect->rel_filepos = hdr->sh_offset;
1797 /* In the section to which the relocations apply, mark whether
1798 its relocations are of the REL or RELA variety. */
1799 if (hdr->sh_size != 0)
1800 target_sect->use_rela_p = hdr->sh_type == SHT_RELA;
1801 abfd->flags |= HAS_RELOC;
1805 case SHT_GNU_verdef:
1806 elf_dynverdef (abfd) = shindex;
1807 elf_tdata (abfd)->dynverdef_hdr = *hdr;
1808 return _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
1810 case SHT_GNU_versym:
1811 if (hdr->sh_entsize != sizeof (Elf_External_Versym))
1813 elf_dynversym (abfd) = shindex;
1814 elf_tdata (abfd)->dynversym_hdr = *hdr;
1815 return _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
1817 case SHT_GNU_verneed:
1818 elf_dynverref (abfd) = shindex;
1819 elf_tdata (abfd)->dynverref_hdr = *hdr;
1820 return _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
1826 /* We need a BFD section for objcopy and relocatable linking,
1827 and it's handy to have the signature available as the section
1829 if (! IS_VALID_GROUP_SECTION_HEADER (hdr))
1831 name = group_signature (abfd, hdr);
1834 if (!_bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex))
1836 if (hdr->contents != NULL)
1838 Elf_Internal_Group *idx = (Elf_Internal_Group *) hdr->contents;
1839 unsigned int n_elt = hdr->sh_size / GRP_ENTRY_SIZE;
1842 if (idx->flags & GRP_COMDAT)
1843 hdr->bfd_section->flags
1844 |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
1846 /* We try to keep the same section order as it comes in. */
1848 while (--n_elt != 0)
1852 if (idx->shdr != NULL
1853 && (s = idx->shdr->bfd_section) != NULL
1854 && elf_next_in_group (s) != NULL)
1856 elf_next_in_group (hdr->bfd_section) = s;
1864 /* Possibly an attributes section. */
1865 if (hdr->sh_type == SHT_GNU_ATTRIBUTES
1866 || hdr->sh_type == bed->obj_attrs_section_type)
1868 if (! _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex))
1870 _bfd_elf_parse_attributes (abfd, hdr);
1874 /* Check for any processor-specific section types. */
1875 if (bed->elf_backend_section_from_shdr (abfd, hdr, name, shindex))
1878 if (hdr->sh_type >= SHT_LOUSER && hdr->sh_type <= SHT_HIUSER)
1880 if ((hdr->sh_flags & SHF_ALLOC) != 0)
1881 /* FIXME: How to properly handle allocated section reserved
1882 for applications? */
1883 (*_bfd_error_handler)
1884 (_("%B: don't know how to handle allocated, application "
1885 "specific section `%s' [0x%8x]"),
1886 abfd, name, hdr->sh_type);
1888 /* Allow sections reserved for applications. */
1889 return _bfd_elf_make_section_from_shdr (abfd, hdr, name,
1892 else if (hdr->sh_type >= SHT_LOPROC
1893 && hdr->sh_type <= SHT_HIPROC)
1894 /* FIXME: We should handle this section. */
1895 (*_bfd_error_handler)
1896 (_("%B: don't know how to handle processor specific section "
1898 abfd, name, hdr->sh_type);
1899 else if (hdr->sh_type >= SHT_LOOS && hdr->sh_type <= SHT_HIOS)
1901 /* Unrecognised OS-specific sections. */
1902 if ((hdr->sh_flags & SHF_OS_NONCONFORMING) != 0)
1903 /* SHF_OS_NONCONFORMING indicates that special knowledge is
1904 required to correctly process the section and the file should
1905 be rejected with an error message. */
1906 (*_bfd_error_handler)
1907 (_("%B: don't know how to handle OS specific section "
1909 abfd, name, hdr->sh_type);
1911 /* Otherwise it should be processed. */
1912 return _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
1915 /* FIXME: We should handle this section. */
1916 (*_bfd_error_handler)
1917 (_("%B: don't know how to handle section `%s' [0x%8x]"),
1918 abfd, name, hdr->sh_type);
1926 /* Return the section for the local symbol specified by ABFD, R_SYMNDX.
1927 Return SEC for sections that have no elf section, and NULL on error. */
1930 bfd_section_from_r_symndx (bfd *abfd,
1931 struct sym_sec_cache *cache,
1933 unsigned long r_symndx)
1935 unsigned int ent = r_symndx % LOCAL_SYM_CACHE_SIZE;
1938 if (cache->abfd != abfd || cache->indx[ent] != r_symndx)
1940 Elf_Internal_Shdr *symtab_hdr;
1941 unsigned char esym[sizeof (Elf64_External_Sym)];
1942 Elf_External_Sym_Shndx eshndx;
1943 Elf_Internal_Sym isym;
1945 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
1946 if (bfd_elf_get_elf_syms (abfd, symtab_hdr, 1, r_symndx,
1947 &isym, esym, &eshndx) == NULL)
1950 if (cache->abfd != abfd)
1952 memset (cache->indx, -1, sizeof (cache->indx));
1955 cache->indx[ent] = r_symndx;
1956 cache->shndx[ent] = isym.st_shndx;
1959 s = bfd_section_from_elf_index (abfd, cache->shndx[ent]);
1966 /* Given an ELF section number, retrieve the corresponding BFD
1970 bfd_section_from_elf_index (bfd *abfd, unsigned int index)
1972 if (index >= elf_numsections (abfd))
1974 return elf_elfsections (abfd)[index]->bfd_section;
1977 static const struct bfd_elf_special_section special_sections_b[] =
1979 { STRING_COMMA_LEN (".bss"), -2, SHT_NOBITS, SHF_ALLOC + SHF_WRITE },
1980 { NULL, 0, 0, 0, 0 }
1983 static const struct bfd_elf_special_section special_sections_c[] =
1985 { STRING_COMMA_LEN (".comment"), 0, SHT_PROGBITS, 0 },
1986 { NULL, 0, 0, 0, 0 }
1989 static const struct bfd_elf_special_section special_sections_d[] =
1991 { STRING_COMMA_LEN (".data"), -2, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
1992 { STRING_COMMA_LEN (".data1"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
1993 { STRING_COMMA_LEN (".debug"), 0, SHT_PROGBITS, 0 },
1994 { STRING_COMMA_LEN (".debug_line"), 0, SHT_PROGBITS, 0 },
1995 { STRING_COMMA_LEN (".debug_info"), 0, SHT_PROGBITS, 0 },
1996 { STRING_COMMA_LEN (".debug_abbrev"), 0, SHT_PROGBITS, 0 },
1997 { STRING_COMMA_LEN (".debug_aranges"), 0, SHT_PROGBITS, 0 },
1998 { STRING_COMMA_LEN (".dynamic"), 0, SHT_DYNAMIC, SHF_ALLOC },
1999 { STRING_COMMA_LEN (".dynstr"), 0, SHT_STRTAB, SHF_ALLOC },
2000 { STRING_COMMA_LEN (".dynsym"), 0, SHT_DYNSYM, SHF_ALLOC },
2001 { NULL, 0, 0, 0, 0 }
2004 static const struct bfd_elf_special_section special_sections_f[] =
2006 { STRING_COMMA_LEN (".fini"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_EXECINSTR },
2007 { STRING_COMMA_LEN (".fini_array"), 0, SHT_FINI_ARRAY, SHF_ALLOC + SHF_WRITE },
2008 { NULL, 0, 0, 0, 0 }
2011 static const struct bfd_elf_special_section special_sections_g[] =
2013 { STRING_COMMA_LEN (".gnu.linkonce.b"), -2, SHT_NOBITS, SHF_ALLOC + SHF_WRITE },
2014 { STRING_COMMA_LEN (".got"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
2015 { STRING_COMMA_LEN (".gnu.version"), 0, SHT_GNU_versym, 0 },
2016 { STRING_COMMA_LEN (".gnu.version_d"), 0, SHT_GNU_verdef, 0 },
2017 { STRING_COMMA_LEN (".gnu.version_r"), 0, SHT_GNU_verneed, 0 },
2018 { STRING_COMMA_LEN (".gnu.liblist"), 0, SHT_GNU_LIBLIST, SHF_ALLOC },
2019 { STRING_COMMA_LEN (".gnu.conflict"), 0, SHT_RELA, SHF_ALLOC },
2020 { STRING_COMMA_LEN (".gnu.hash"), 0, SHT_GNU_HASH, SHF_ALLOC },
2021 { NULL, 0, 0, 0, 0 }
2024 static const struct bfd_elf_special_section special_sections_h[] =
2026 { STRING_COMMA_LEN (".hash"), 0, SHT_HASH, SHF_ALLOC },
2027 { NULL, 0, 0, 0, 0 }
2030 static const struct bfd_elf_special_section special_sections_i[] =
2032 { STRING_COMMA_LEN (".init"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_EXECINSTR },
2033 { STRING_COMMA_LEN (".init_array"), 0, SHT_INIT_ARRAY, SHF_ALLOC + SHF_WRITE },
2034 { STRING_COMMA_LEN (".interp"), 0, SHT_PROGBITS, 0 },
2035 { NULL, 0, 0, 0, 0 }
2038 static const struct bfd_elf_special_section special_sections_l[] =
2040 { STRING_COMMA_LEN (".line"), 0, SHT_PROGBITS, 0 },
2041 { NULL, 0, 0, 0, 0 }
2044 static const struct bfd_elf_special_section special_sections_n[] =
2046 { STRING_COMMA_LEN (".note.GNU-stack"), 0, SHT_PROGBITS, 0 },
2047 { STRING_COMMA_LEN (".note"), -1, SHT_NOTE, 0 },
2048 { NULL, 0, 0, 0, 0 }
2051 static const struct bfd_elf_special_section special_sections_p[] =
2053 { STRING_COMMA_LEN (".preinit_array"), 0, SHT_PREINIT_ARRAY, SHF_ALLOC + SHF_WRITE },
2054 { STRING_COMMA_LEN (".plt"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_EXECINSTR },
2055 { NULL, 0, 0, 0, 0 }
2058 static const struct bfd_elf_special_section special_sections_r[] =
2060 { STRING_COMMA_LEN (".rodata"), -2, SHT_PROGBITS, SHF_ALLOC },
2061 { STRING_COMMA_LEN (".rodata1"), 0, SHT_PROGBITS, SHF_ALLOC },
2062 { STRING_COMMA_LEN (".rela"), -1, SHT_RELA, 0 },
2063 { STRING_COMMA_LEN (".rel"), -1, SHT_REL, 0 },
2064 { NULL, 0, 0, 0, 0 }
2067 static const struct bfd_elf_special_section special_sections_s[] =
2069 { STRING_COMMA_LEN (".shstrtab"), 0, SHT_STRTAB, 0 },
2070 { STRING_COMMA_LEN (".strtab"), 0, SHT_STRTAB, 0 },
2071 { STRING_COMMA_LEN (".symtab"), 0, SHT_SYMTAB, 0 },
2072 /* See struct bfd_elf_special_section declaration for the semantics of
2073 this special case where .prefix_length != strlen (.prefix). */
2074 { ".stabstr", 5, 3, SHT_STRTAB, 0 },
2075 { NULL, 0, 0, 0, 0 }
2078 static const struct bfd_elf_special_section special_sections_t[] =
2080 { STRING_COMMA_LEN (".text"), -2, SHT_PROGBITS, SHF_ALLOC + SHF_EXECINSTR },
2081 { STRING_COMMA_LEN (".tbss"), -2, SHT_NOBITS, SHF_ALLOC + SHF_WRITE + SHF_TLS },
2082 { STRING_COMMA_LEN (".tdata"), -2, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE + SHF_TLS },
2083 { NULL, 0, 0, 0, 0 }
2086 static const struct bfd_elf_special_section *special_sections[] =
2088 special_sections_b, /* 'b' */
2089 special_sections_c, /* 'c' */
2090 special_sections_d, /* 'd' */
2092 special_sections_f, /* 'f' */
2093 special_sections_g, /* 'g' */
2094 special_sections_h, /* 'h' */
2095 special_sections_i, /* 'i' */
2098 special_sections_l, /* 'l' */
2100 special_sections_n, /* 'n' */
2102 special_sections_p, /* 'p' */
2104 special_sections_r, /* 'r' */
2105 special_sections_s, /* 's' */
2106 special_sections_t, /* 't' */
2109 const struct bfd_elf_special_section *
2110 _bfd_elf_get_special_section (const char *name,
2111 const struct bfd_elf_special_section *spec,
2117 len = strlen (name);
2119 for (i = 0; spec[i].prefix != NULL; i++)
2122 int prefix_len = spec[i].prefix_length;
2124 if (len < prefix_len)
2126 if (memcmp (name, spec[i].prefix, prefix_len) != 0)
2129 suffix_len = spec[i].suffix_length;
2130 if (suffix_len <= 0)
2132 if (name[prefix_len] != 0)
2134 if (suffix_len == 0)
2136 if (name[prefix_len] != '.'
2137 && (suffix_len == -2
2138 || (rela && spec[i].type == SHT_REL)))
2144 if (len < prefix_len + suffix_len)
2146 if (memcmp (name + len - suffix_len,
2147 spec[i].prefix + prefix_len,
2157 const struct bfd_elf_special_section *
2158 _bfd_elf_get_sec_type_attr (bfd *abfd, asection *sec)
2161 const struct bfd_elf_special_section *spec;
2162 const struct elf_backend_data *bed;
2164 /* See if this is one of the special sections. */
2165 if (sec->name == NULL)
2168 bed = get_elf_backend_data (abfd);
2169 spec = bed->special_sections;
2172 spec = _bfd_elf_get_special_section (sec->name,
2173 bed->special_sections,
2179 if (sec->name[0] != '.')
2182 i = sec->name[1] - 'b';
2183 if (i < 0 || i > 't' - 'b')
2186 spec = special_sections[i];
2191 return _bfd_elf_get_special_section (sec->name, spec, sec->use_rela_p);
2195 _bfd_elf_new_section_hook (bfd *abfd, asection *sec)
2197 struct bfd_elf_section_data *sdata;
2198 const struct elf_backend_data *bed;
2199 const struct bfd_elf_special_section *ssect;
2201 sdata = (struct bfd_elf_section_data *) sec->used_by_bfd;
2204 sdata = bfd_zalloc (abfd, sizeof (*sdata));
2207 sec->used_by_bfd = sdata;
2210 /* Indicate whether or not this section should use RELA relocations. */
2211 bed = get_elf_backend_data (abfd);
2212 sec->use_rela_p = bed->default_use_rela_p;
2214 /* When we read a file, we don't need to set ELF section type and
2215 flags. They will be overridden in _bfd_elf_make_section_from_shdr
2216 anyway. We will set ELF section type and flags for all linker
2217 created sections. If user specifies BFD section flags, we will
2218 set ELF section type and flags based on BFD section flags in
2219 elf_fake_sections. */
2220 if ((!sec->flags && abfd->direction != read_direction)
2221 || (sec->flags & SEC_LINKER_CREATED) != 0)
2223 ssect = (*bed->get_sec_type_attr) (abfd, sec);
2226 elf_section_type (sec) = ssect->type;
2227 elf_section_flags (sec) = ssect->attr;
2231 return _bfd_generic_new_section_hook (abfd, sec);
2234 /* Create a new bfd section from an ELF program header.
2236 Since program segments have no names, we generate a synthetic name
2237 of the form segment<NUM>, where NUM is generally the index in the
2238 program header table. For segments that are split (see below) we
2239 generate the names segment<NUM>a and segment<NUM>b.
2241 Note that some program segments may have a file size that is different than
2242 (less than) the memory size. All this means is that at execution the
2243 system must allocate the amount of memory specified by the memory size,
2244 but only initialize it with the first "file size" bytes read from the
2245 file. This would occur for example, with program segments consisting
2246 of combined data+bss.
2248 To handle the above situation, this routine generates TWO bfd sections
2249 for the single program segment. The first has the length specified by
2250 the file size of the segment, and the second has the length specified
2251 by the difference between the two sizes. In effect, the segment is split
2252 into its initialized and uninitialized parts.
2257 _bfd_elf_make_section_from_phdr (bfd *abfd,
2258 Elf_Internal_Phdr *hdr,
2260 const char *typename)
2268 split = ((hdr->p_memsz > 0)
2269 && (hdr->p_filesz > 0)
2270 && (hdr->p_memsz > hdr->p_filesz));
2272 if (hdr->p_filesz > 0)
2274 sprintf (namebuf, "%s%d%s", typename, index, split ? "a" : "");
2275 len = strlen (namebuf) + 1;
2276 name = bfd_alloc (abfd, len);
2279 memcpy (name, namebuf, len);
2280 newsect = bfd_make_section (abfd, name);
2281 if (newsect == NULL)
2283 newsect->vma = hdr->p_vaddr;
2284 newsect->lma = hdr->p_paddr;
2285 newsect->size = hdr->p_filesz;
2286 newsect->filepos = hdr->p_offset;
2287 newsect->flags |= SEC_HAS_CONTENTS;
2288 newsect->alignment_power = bfd_log2 (hdr->p_align);
2289 if (hdr->p_type == PT_LOAD)
2291 newsect->flags |= SEC_ALLOC;
2292 newsect->flags |= SEC_LOAD;
2293 if (hdr->p_flags & PF_X)
2295 /* FIXME: all we known is that it has execute PERMISSION,
2297 newsect->flags |= SEC_CODE;
2300 if (!(hdr->p_flags & PF_W))
2302 newsect->flags |= SEC_READONLY;
2306 if (hdr->p_memsz > hdr->p_filesz)
2310 sprintf (namebuf, "%s%d%s", typename, index, split ? "b" : "");
2311 len = strlen (namebuf) + 1;
2312 name = bfd_alloc (abfd, len);
2315 memcpy (name, namebuf, len);
2316 newsect = bfd_make_section (abfd, name);
2317 if (newsect == NULL)
2319 newsect->vma = hdr->p_vaddr + hdr->p_filesz;
2320 newsect->lma = hdr->p_paddr + hdr->p_filesz;
2321 newsect->size = hdr->p_memsz - hdr->p_filesz;
2322 newsect->filepos = hdr->p_offset + hdr->p_filesz;
2323 align = newsect->vma & -newsect->vma;
2324 if (align == 0 || align > hdr->p_align)
2325 align = hdr->p_align;
2326 newsect->alignment_power = bfd_log2 (align);
2327 if (hdr->p_type == PT_LOAD)
2329 /* Hack for gdb. Segments that have not been modified do
2330 not have their contents written to a core file, on the
2331 assumption that a debugger can find the contents in the
2332 executable. We flag this case by setting the fake
2333 section size to zero. Note that "real" bss sections will
2334 always have their contents dumped to the core file. */
2335 if (bfd_get_format (abfd) == bfd_core)
2337 newsect->flags |= SEC_ALLOC;
2338 if (hdr->p_flags & PF_X)
2339 newsect->flags |= SEC_CODE;
2341 if (!(hdr->p_flags & PF_W))
2342 newsect->flags |= SEC_READONLY;
2349 bfd_section_from_phdr (bfd *abfd, Elf_Internal_Phdr *hdr, int index)
2351 const struct elf_backend_data *bed;
2353 switch (hdr->p_type)
2356 return _bfd_elf_make_section_from_phdr (abfd, hdr, index, "null");
2359 return _bfd_elf_make_section_from_phdr (abfd, hdr, index, "load");
2362 return _bfd_elf_make_section_from_phdr (abfd, hdr, index, "dynamic");
2365 return _bfd_elf_make_section_from_phdr (abfd, hdr, index, "interp");
2368 if (! _bfd_elf_make_section_from_phdr (abfd, hdr, index, "note"))
2370 if (! elf_read_notes (abfd, hdr->p_offset, hdr->p_filesz))
2375 return _bfd_elf_make_section_from_phdr (abfd, hdr, index, "shlib");
2378 return _bfd_elf_make_section_from_phdr (abfd, hdr, index, "phdr");
2380 case PT_GNU_EH_FRAME:
2381 return _bfd_elf_make_section_from_phdr (abfd, hdr, index,
2385 return _bfd_elf_make_section_from_phdr (abfd, hdr, index, "stack");
2388 return _bfd_elf_make_section_from_phdr (abfd, hdr, index, "relro");
2391 /* Check for any processor-specific program segment types. */
2392 bed = get_elf_backend_data (abfd);
2393 return bed->elf_backend_section_from_phdr (abfd, hdr, index, "proc");
2397 /* Initialize REL_HDR, the section-header for new section, containing
2398 relocations against ASECT. If USE_RELA_P is TRUE, we use RELA
2399 relocations; otherwise, we use REL relocations. */
2402 _bfd_elf_init_reloc_shdr (bfd *abfd,
2403 Elf_Internal_Shdr *rel_hdr,
2405 bfd_boolean use_rela_p)
2408 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
2409 bfd_size_type amt = sizeof ".rela" + strlen (asect->name);
2411 name = bfd_alloc (abfd, amt);
2414 sprintf (name, "%s%s", use_rela_p ? ".rela" : ".rel", asect->name);
2416 (unsigned int) _bfd_elf_strtab_add (elf_shstrtab (abfd), name,
2418 if (rel_hdr->sh_name == (unsigned int) -1)
2420 rel_hdr->sh_type = use_rela_p ? SHT_RELA : SHT_REL;
2421 rel_hdr->sh_entsize = (use_rela_p
2422 ? bed->s->sizeof_rela
2423 : bed->s->sizeof_rel);
2424 rel_hdr->sh_addralign = 1 << bed->s->log_file_align;
2425 rel_hdr->sh_flags = 0;
2426 rel_hdr->sh_addr = 0;
2427 rel_hdr->sh_size = 0;
2428 rel_hdr->sh_offset = 0;
2433 /* Set up an ELF internal section header for a section. */
2436 elf_fake_sections (bfd *abfd, asection *asect, void *failedptrarg)
2438 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
2439 bfd_boolean *failedptr = failedptrarg;
2440 Elf_Internal_Shdr *this_hdr;
2441 unsigned int sh_type;
2445 /* We already failed; just get out of the bfd_map_over_sections
2450 this_hdr = &elf_section_data (asect)->this_hdr;
2452 this_hdr->sh_name = (unsigned int) _bfd_elf_strtab_add (elf_shstrtab (abfd),
2453 asect->name, FALSE);
2454 if (this_hdr->sh_name == (unsigned int) -1)
2460 /* Don't clear sh_flags. Assembler may set additional bits. */
2462 if ((asect->flags & SEC_ALLOC) != 0
2463 || asect->user_set_vma)
2464 this_hdr->sh_addr = asect->vma;
2466 this_hdr->sh_addr = 0;
2468 this_hdr->sh_offset = 0;
2469 this_hdr->sh_size = asect->size;
2470 this_hdr->sh_link = 0;
2471 this_hdr->sh_addralign = 1 << asect->alignment_power;
2472 /* The sh_entsize and sh_info fields may have been set already by
2473 copy_private_section_data. */
2475 this_hdr->bfd_section = asect;
2476 this_hdr->contents = NULL;
2478 /* If the section type is unspecified, we set it based on
2480 if ((asect->flags & SEC_GROUP) != 0)
2481 sh_type = SHT_GROUP;
2482 else if ((asect->flags & SEC_ALLOC) != 0
2483 && (((asect->flags & (SEC_LOAD | SEC_HAS_CONTENTS)) == 0)
2484 || (asect->flags & SEC_NEVER_LOAD) != 0))
2485 sh_type = SHT_NOBITS;
2487 sh_type = SHT_PROGBITS;
2489 if (this_hdr->sh_type == SHT_NULL)
2490 this_hdr->sh_type = sh_type;
2491 else if (this_hdr->sh_type == SHT_NOBITS
2492 && sh_type == SHT_PROGBITS
2493 && (asect->flags & SEC_ALLOC) != 0)
2495 /* Warn if we are changing a NOBITS section to PROGBITS, but
2496 allow the link to proceed. This can happen when users link
2497 non-bss input sections to bss output sections, or emit data
2498 to a bss output section via a linker script. */
2499 (*_bfd_error_handler)
2500 (_("warning: section `%A' type changed to PROGBITS"), asect);
2501 this_hdr->sh_type = sh_type;
2504 switch (this_hdr->sh_type)
2510 case SHT_INIT_ARRAY:
2511 case SHT_FINI_ARRAY:
2512 case SHT_PREINIT_ARRAY:
2519 this_hdr->sh_entsize = bed->s->sizeof_hash_entry;
2523 this_hdr->sh_entsize = bed->s->sizeof_sym;
2527 this_hdr->sh_entsize = bed->s->sizeof_dyn;
2531 if (get_elf_backend_data (abfd)->may_use_rela_p)
2532 this_hdr->sh_entsize = bed->s->sizeof_rela;
2536 if (get_elf_backend_data (abfd)->may_use_rel_p)
2537 this_hdr->sh_entsize = bed->s->sizeof_rel;
2540 case SHT_GNU_versym:
2541 this_hdr->sh_entsize = sizeof (Elf_External_Versym);
2544 case SHT_GNU_verdef:
2545 this_hdr->sh_entsize = 0;
2546 /* objcopy or strip will copy over sh_info, but may not set
2547 cverdefs. The linker will set cverdefs, but sh_info will be
2549 if (this_hdr->sh_info == 0)
2550 this_hdr->sh_info = elf_tdata (abfd)->cverdefs;
2552 BFD_ASSERT (elf_tdata (abfd)->cverdefs == 0
2553 || this_hdr->sh_info == elf_tdata (abfd)->cverdefs);
2556 case SHT_GNU_verneed:
2557 this_hdr->sh_entsize = 0;
2558 /* objcopy or strip will copy over sh_info, but may not set
2559 cverrefs. The linker will set cverrefs, but sh_info will be
2561 if (this_hdr->sh_info == 0)
2562 this_hdr->sh_info = elf_tdata (abfd)->cverrefs;
2564 BFD_ASSERT (elf_tdata (abfd)->cverrefs == 0
2565 || this_hdr->sh_info == elf_tdata (abfd)->cverrefs);
2569 this_hdr->sh_entsize = GRP_ENTRY_SIZE;
2573 this_hdr->sh_entsize = bed->s->arch_size == 64 ? 0 : 4;
2577 if ((asect->flags & SEC_ALLOC) != 0)
2578 this_hdr->sh_flags |= SHF_ALLOC;
2579 if ((asect->flags & SEC_READONLY) == 0)
2580 this_hdr->sh_flags |= SHF_WRITE;
2581 if ((asect->flags & SEC_CODE) != 0)
2582 this_hdr->sh_flags |= SHF_EXECINSTR;
2583 if ((asect->flags & SEC_MERGE) != 0)
2585 this_hdr->sh_flags |= SHF_MERGE;
2586 this_hdr->sh_entsize = asect->entsize;
2587 if ((asect->flags & SEC_STRINGS) != 0)
2588 this_hdr->sh_flags |= SHF_STRINGS;
2590 if ((asect->flags & SEC_GROUP) == 0 && elf_group_name (asect) != NULL)
2591 this_hdr->sh_flags |= SHF_GROUP;
2592 if ((asect->flags & SEC_THREAD_LOCAL) != 0)
2594 this_hdr->sh_flags |= SHF_TLS;
2595 if (asect->size == 0
2596 && (asect->flags & SEC_HAS_CONTENTS) == 0)
2598 struct bfd_link_order *o = asect->map_tail.link_order;
2600 this_hdr->sh_size = 0;
2603 this_hdr->sh_size = o->offset + o->size;
2604 if (this_hdr->sh_size != 0)
2605 this_hdr->sh_type = SHT_NOBITS;
2610 /* Check for processor-specific section types. */
2611 sh_type = this_hdr->sh_type;
2612 if (bed->elf_backend_fake_sections
2613 && !(*bed->elf_backend_fake_sections) (abfd, this_hdr, asect))
2616 if (sh_type == SHT_NOBITS && asect->size != 0)
2618 /* Don't change the header type from NOBITS if we are being
2619 called for objcopy --only-keep-debug. */
2620 this_hdr->sh_type = sh_type;
2623 /* If the section has relocs, set up a section header for the
2624 SHT_REL[A] section. If two relocation sections are required for
2625 this section, it is up to the processor-specific back-end to
2626 create the other. */
2627 if ((asect->flags & SEC_RELOC) != 0
2628 && !_bfd_elf_init_reloc_shdr (abfd,
2629 &elf_section_data (asect)->rel_hdr,
2635 /* Fill in the contents of a SHT_GROUP section. */
2638 bfd_elf_set_group_contents (bfd *abfd, asection *sec, void *failedptrarg)
2640 bfd_boolean *failedptr = failedptrarg;
2641 unsigned long symindx;
2642 asection *elt, *first;
2646 /* Ignore linker created group section. See elfNN_ia64_object_p in
2648 if (((sec->flags & (SEC_GROUP | SEC_LINKER_CREATED)) != SEC_GROUP)
2653 if (elf_group_id (sec) != NULL)
2654 symindx = elf_group_id (sec)->udata.i;
2658 /* If called from the assembler, swap_out_syms will have set up
2659 elf_section_syms; If called for "ld -r", use target_index. */
2660 if (elf_section_syms (abfd) != NULL)
2661 symindx = elf_section_syms (abfd)[sec->index]->udata.i;
2663 symindx = sec->target_index;
2665 elf_section_data (sec)->this_hdr.sh_info = symindx;
2667 /* The contents won't be allocated for "ld -r" or objcopy. */
2669 if (sec->contents == NULL)
2672 sec->contents = bfd_alloc (abfd, sec->size);
2674 /* Arrange for the section to be written out. */
2675 elf_section_data (sec)->this_hdr.contents = sec->contents;
2676 if (sec->contents == NULL)
2683 loc = sec->contents + sec->size;
2685 /* Get the pointer to the first section in the group that gas
2686 squirreled away here. objcopy arranges for this to be set to the
2687 start of the input section group. */
2688 first = elt = elf_next_in_group (sec);
2690 /* First element is a flag word. Rest of section is elf section
2691 indices for all the sections of the group. Write them backwards
2692 just to keep the group in the same order as given in .section
2693 directives, not that it matters. */
2702 s = s->output_section;
2705 idx = elf_section_data (s)->this_idx;
2706 H_PUT_32 (abfd, idx, loc);
2707 elt = elf_next_in_group (elt);
2712 if ((loc -= 4) != sec->contents)
2715 H_PUT_32 (abfd, sec->flags & SEC_LINK_ONCE ? GRP_COMDAT : 0, loc);
2718 /* Assign all ELF section numbers. The dummy first section is handled here
2719 too. The link/info pointers for the standard section types are filled
2720 in here too, while we're at it. */
2723 assign_section_numbers (bfd *abfd, struct bfd_link_info *link_info)
2725 struct elf_obj_tdata *t = elf_tdata (abfd);
2727 unsigned int section_number, secn;
2728 Elf_Internal_Shdr **i_shdrp;
2729 struct bfd_elf_section_data *d;
2733 _bfd_elf_strtab_clear_all_refs (elf_shstrtab (abfd));
2735 /* SHT_GROUP sections are in relocatable files only. */
2736 if (link_info == NULL || link_info->relocatable)
2738 /* Put SHT_GROUP sections first. */
2739 for (sec = abfd->sections; sec != NULL; sec = sec->next)
2741 d = elf_section_data (sec);
2743 if (d->this_hdr.sh_type == SHT_GROUP)
2745 if (sec->flags & SEC_LINKER_CREATED)
2747 /* Remove the linker created SHT_GROUP sections. */
2748 bfd_section_list_remove (abfd, sec);
2749 abfd->section_count--;
2753 if (section_number == SHN_LORESERVE)
2754 section_number += SHN_HIRESERVE + 1 - SHN_LORESERVE;
2755 d->this_idx = section_number++;
2761 for (sec = abfd->sections; sec; sec = sec->next)
2763 d = elf_section_data (sec);
2765 if (d->this_hdr.sh_type != SHT_GROUP)
2767 if (section_number == SHN_LORESERVE)
2768 section_number += SHN_HIRESERVE + 1 - SHN_LORESERVE;
2769 d->this_idx = section_number++;
2771 _bfd_elf_strtab_addref (elf_shstrtab (abfd), d->this_hdr.sh_name);
2772 if ((sec->flags & SEC_RELOC) == 0)
2776 if (section_number == SHN_LORESERVE)
2777 section_number += SHN_HIRESERVE + 1 - SHN_LORESERVE;
2778 d->rel_idx = section_number++;
2779 _bfd_elf_strtab_addref (elf_shstrtab (abfd), d->rel_hdr.sh_name);
2784 if (section_number == SHN_LORESERVE)
2785 section_number += SHN_HIRESERVE + 1 - SHN_LORESERVE;
2786 d->rel_idx2 = section_number++;
2787 _bfd_elf_strtab_addref (elf_shstrtab (abfd), d->rel_hdr2->sh_name);
2793 if (section_number == SHN_LORESERVE)
2794 section_number += SHN_HIRESERVE + 1 - SHN_LORESERVE;
2795 t->shstrtab_section = section_number++;
2796 _bfd_elf_strtab_addref (elf_shstrtab (abfd), t->shstrtab_hdr.sh_name);
2797 elf_elfheader (abfd)->e_shstrndx = t->shstrtab_section;
2799 if (bfd_get_symcount (abfd) > 0)
2801 if (section_number == SHN_LORESERVE)
2802 section_number += SHN_HIRESERVE + 1 - SHN_LORESERVE;
2803 t->symtab_section = section_number++;
2804 _bfd_elf_strtab_addref (elf_shstrtab (abfd), t->symtab_hdr.sh_name);
2805 if (section_number > SHN_LORESERVE - 2)
2807 if (section_number == SHN_LORESERVE)
2808 section_number += SHN_HIRESERVE + 1 - SHN_LORESERVE;
2809 t->symtab_shndx_section = section_number++;
2810 t->symtab_shndx_hdr.sh_name
2811 = (unsigned int) _bfd_elf_strtab_add (elf_shstrtab (abfd),
2812 ".symtab_shndx", FALSE);
2813 if (t->symtab_shndx_hdr.sh_name == (unsigned int) -1)
2816 if (section_number == SHN_LORESERVE)
2817 section_number += SHN_HIRESERVE + 1 - SHN_LORESERVE;
2818 t->strtab_section = section_number++;
2819 _bfd_elf_strtab_addref (elf_shstrtab (abfd), t->strtab_hdr.sh_name);
2822 _bfd_elf_strtab_finalize (elf_shstrtab (abfd));
2823 t->shstrtab_hdr.sh_size = _bfd_elf_strtab_size (elf_shstrtab (abfd));
2825 elf_numsections (abfd) = section_number;
2826 elf_elfheader (abfd)->e_shnum = section_number;
2827 if (section_number > SHN_LORESERVE)
2828 elf_elfheader (abfd)->e_shnum -= SHN_HIRESERVE + 1 - SHN_LORESERVE;
2830 /* Set up the list of section header pointers, in agreement with the
2832 i_shdrp = bfd_zalloc2 (abfd, section_number, sizeof (Elf_Internal_Shdr *));
2833 if (i_shdrp == NULL)
2836 i_shdrp[0] = bfd_zalloc (abfd, sizeof (Elf_Internal_Shdr));
2837 if (i_shdrp[0] == NULL)
2839 bfd_release (abfd, i_shdrp);
2843 elf_elfsections (abfd) = i_shdrp;
2845 i_shdrp[t->shstrtab_section] = &t->shstrtab_hdr;
2846 if (bfd_get_symcount (abfd) > 0)
2848 i_shdrp[t->symtab_section] = &t->symtab_hdr;
2849 if (elf_numsections (abfd) > SHN_LORESERVE)
2851 i_shdrp[t->symtab_shndx_section] = &t->symtab_shndx_hdr;
2852 t->symtab_shndx_hdr.sh_link = t->symtab_section;
2854 i_shdrp[t->strtab_section] = &t->strtab_hdr;
2855 t->symtab_hdr.sh_link = t->strtab_section;
2858 for (sec = abfd->sections; sec; sec = sec->next)
2860 struct bfd_elf_section_data *d = elf_section_data (sec);
2864 i_shdrp[d->this_idx] = &d->this_hdr;
2865 if (d->rel_idx != 0)
2866 i_shdrp[d->rel_idx] = &d->rel_hdr;
2867 if (d->rel_idx2 != 0)
2868 i_shdrp[d->rel_idx2] = d->rel_hdr2;
2870 /* Fill in the sh_link and sh_info fields while we're at it. */
2872 /* sh_link of a reloc section is the section index of the symbol
2873 table. sh_info is the section index of the section to which
2874 the relocation entries apply. */
2875 if (d->rel_idx != 0)
2877 d->rel_hdr.sh_link = t->symtab_section;
2878 d->rel_hdr.sh_info = d->this_idx;
2880 if (d->rel_idx2 != 0)
2882 d->rel_hdr2->sh_link = t->symtab_section;
2883 d->rel_hdr2->sh_info = d->this_idx;
2886 /* We need to set up sh_link for SHF_LINK_ORDER. */
2887 if ((d->this_hdr.sh_flags & SHF_LINK_ORDER) != 0)
2889 s = elf_linked_to_section (sec);
2892 /* elf_linked_to_section points to the input section. */
2893 if (link_info != NULL)
2895 /* Check discarded linkonce section. */
2896 if (elf_discarded_section (s))
2899 (*_bfd_error_handler)
2900 (_("%B: sh_link of section `%A' points to discarded section `%A' of `%B'"),
2901 abfd, d->this_hdr.bfd_section,
2903 /* Point to the kept section if it has the same
2904 size as the discarded one. */
2905 kept = _bfd_elf_check_kept_section (s, link_info);
2908 bfd_set_error (bfd_error_bad_value);
2914 s = s->output_section;
2915 BFD_ASSERT (s != NULL);
2919 /* Handle objcopy. */
2920 if (s->output_section == NULL)
2922 (*_bfd_error_handler)
2923 (_("%B: sh_link of section `%A' points to removed section `%A' of `%B'"),
2924 abfd, d->this_hdr.bfd_section, s, s->owner);
2925 bfd_set_error (bfd_error_bad_value);
2928 s = s->output_section;
2930 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
2935 The Intel C compiler generates SHT_IA_64_UNWIND with
2936 SHF_LINK_ORDER. But it doesn't set the sh_link or
2937 sh_info fields. Hence we could get the situation
2939 const struct elf_backend_data *bed
2940 = get_elf_backend_data (abfd);
2941 if (bed->link_order_error_handler)
2942 bed->link_order_error_handler
2943 (_("%B: warning: sh_link not set for section `%A'"),
2948 switch (d->this_hdr.sh_type)
2952 /* A reloc section which we are treating as a normal BFD
2953 section. sh_link is the section index of the symbol
2954 table. sh_info is the section index of the section to
2955 which the relocation entries apply. We assume that an
2956 allocated reloc section uses the dynamic symbol table.
2957 FIXME: How can we be sure? */
2958 s = bfd_get_section_by_name (abfd, ".dynsym");
2960 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
2962 /* We look up the section the relocs apply to by name. */
2964 if (d->this_hdr.sh_type == SHT_REL)
2968 s = bfd_get_section_by_name (abfd, name);
2970 d->this_hdr.sh_info = elf_section_data (s)->this_idx;
2974 /* We assume that a section named .stab*str is a stabs
2975 string section. We look for a section with the same name
2976 but without the trailing ``str'', and set its sh_link
2977 field to point to this section. */
2978 if (CONST_STRNEQ (sec->name, ".stab")
2979 && strcmp (sec->name + strlen (sec->name) - 3, "str") == 0)
2984 len = strlen (sec->name);
2985 alc = bfd_malloc (len - 2);
2988 memcpy (alc, sec->name, len - 3);
2989 alc[len - 3] = '\0';
2990 s = bfd_get_section_by_name (abfd, alc);
2994 elf_section_data (s)->this_hdr.sh_link = d->this_idx;
2996 /* This is a .stab section. */
2997 if (elf_section_data (s)->this_hdr.sh_entsize == 0)
2998 elf_section_data (s)->this_hdr.sh_entsize
2999 = 4 + 2 * bfd_get_arch_size (abfd) / 8;
3006 case SHT_GNU_verneed:
3007 case SHT_GNU_verdef:
3008 /* sh_link is the section header index of the string table
3009 used for the dynamic entries, or the symbol table, or the
3011 s = bfd_get_section_by_name (abfd, ".dynstr");
3013 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
3016 case SHT_GNU_LIBLIST:
3017 /* sh_link is the section header index of the prelink library
3018 list used for the dynamic entries, or the symbol table, or
3019 the version strings. */
3020 s = bfd_get_section_by_name (abfd, (sec->flags & SEC_ALLOC)
3021 ? ".dynstr" : ".gnu.libstr");
3023 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
3028 case SHT_GNU_versym:
3029 /* sh_link is the section header index of the symbol table
3030 this hash table or version table is for. */
3031 s = bfd_get_section_by_name (abfd, ".dynsym");
3033 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
3037 d->this_hdr.sh_link = t->symtab_section;
3041 for (secn = 1; secn < section_number; ++secn)
3042 if (i_shdrp[secn] == NULL)
3043 i_shdrp[secn] = i_shdrp[0];
3045 i_shdrp[secn]->sh_name = _bfd_elf_strtab_offset (elf_shstrtab (abfd),
3046 i_shdrp[secn]->sh_name);
3050 /* Map symbol from it's internal number to the external number, moving
3051 all local symbols to be at the head of the list. */
3054 sym_is_global (bfd *abfd, asymbol *sym)
3056 /* If the backend has a special mapping, use it. */
3057 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
3058 if (bed->elf_backend_sym_is_global)
3059 return (*bed->elf_backend_sym_is_global) (abfd, sym);
3061 return ((sym->flags & (BSF_GLOBAL | BSF_WEAK)) != 0
3062 || bfd_is_und_section (bfd_get_section (sym))
3063 || bfd_is_com_section (bfd_get_section (sym)));
3066 /* Don't output section symbols for sections that are not going to be
3067 output. Also, don't output section symbols for reloc and other
3068 special sections. */
3071 ignore_section_sym (bfd *abfd, asymbol *sym)
3073 return ((sym->flags & BSF_SECTION_SYM) != 0
3075 || (sym->section->owner != abfd
3076 && (sym->section->output_section->owner != abfd
3077 || sym->section->output_offset != 0))));
3081 elf_map_symbols (bfd *abfd)
3083 unsigned int symcount = bfd_get_symcount (abfd);
3084 asymbol **syms = bfd_get_outsymbols (abfd);
3085 asymbol **sect_syms;
3086 unsigned int num_locals = 0;
3087 unsigned int num_globals = 0;
3088 unsigned int num_locals2 = 0;
3089 unsigned int num_globals2 = 0;
3096 fprintf (stderr, "elf_map_symbols\n");
3100 for (asect = abfd->sections; asect; asect = asect->next)
3102 if (max_index < asect->index)
3103 max_index = asect->index;
3107 sect_syms = bfd_zalloc2 (abfd, max_index, sizeof (asymbol *));
3108 if (sect_syms == NULL)
3110 elf_section_syms (abfd) = sect_syms;
3111 elf_num_section_syms (abfd) = max_index;
3113 /* Init sect_syms entries for any section symbols we have already
3114 decided to output. */
3115 for (idx = 0; idx < symcount; idx++)
3117 asymbol *sym = syms[idx];
3119 if ((sym->flags & BSF_SECTION_SYM) != 0
3120 && !ignore_section_sym (abfd, sym))
3122 asection *sec = sym->section;
3124 if (sec->owner != abfd)
3125 sec = sec->output_section;
3127 sect_syms[sec->index] = syms[idx];
3131 /* Classify all of the symbols. */
3132 for (idx = 0; idx < symcount; idx++)
3134 if (ignore_section_sym (abfd, syms[idx]))
3136 if (!sym_is_global (abfd, syms[idx]))
3142 /* We will be adding a section symbol for each normal BFD section. Most
3143 sections will already have a section symbol in outsymbols, but
3144 eg. SHT_GROUP sections will not, and we need the section symbol mapped
3145 at least in that case. */
3146 for (asect = abfd->sections; asect; asect = asect->next)
3148 if (sect_syms[asect->index] == NULL)
3150 if (!sym_is_global (abfd, asect->symbol))
3157 /* Now sort the symbols so the local symbols are first. */
3158 new_syms = bfd_alloc2 (abfd, num_locals + num_globals, sizeof (asymbol *));
3160 if (new_syms == NULL)
3163 for (idx = 0; idx < symcount; idx++)
3165 asymbol *sym = syms[idx];
3168 if (ignore_section_sym (abfd, sym))
3170 if (!sym_is_global (abfd, sym))
3173 i = num_locals + num_globals2++;
3175 sym->udata.i = i + 1;
3177 for (asect = abfd->sections; asect; asect = asect->next)
3179 if (sect_syms[asect->index] == NULL)
3181 asymbol *sym = asect->symbol;
3184 sect_syms[asect->index] = sym;
3185 if (!sym_is_global (abfd, sym))
3188 i = num_locals + num_globals2++;
3190 sym->udata.i = i + 1;
3194 bfd_set_symtab (abfd, new_syms, num_locals + num_globals);
3196 elf_num_locals (abfd) = num_locals;
3197 elf_num_globals (abfd) = num_globals;
3201 /* Align to the maximum file alignment that could be required for any
3202 ELF data structure. */
3204 static inline file_ptr
3205 align_file_position (file_ptr off, int align)
3207 return (off + align - 1) & ~(align - 1);
3210 /* Assign a file position to a section, optionally aligning to the
3211 required section alignment. */
3214 _bfd_elf_assign_file_position_for_section (Elf_Internal_Shdr *i_shdrp,
3222 al = i_shdrp->sh_addralign;
3224 offset = BFD_ALIGN (offset, al);
3226 i_shdrp->sh_offset = offset;
3227 if (i_shdrp->bfd_section != NULL)
3228 i_shdrp->bfd_section->filepos = offset;
3229 if (i_shdrp->sh_type != SHT_NOBITS)
3230 offset += i_shdrp->sh_size;
3234 /* Compute the file positions we are going to put the sections at, and
3235 otherwise prepare to begin writing out the ELF file. If LINK_INFO
3236 is not NULL, this is being called by the ELF backend linker. */
3239 _bfd_elf_compute_section_file_positions (bfd *abfd,
3240 struct bfd_link_info *link_info)
3242 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
3244 struct bfd_strtab_hash *strtab = NULL;
3245 Elf_Internal_Shdr *shstrtab_hdr;
3247 if (abfd->output_has_begun)
3250 /* Do any elf backend specific processing first. */
3251 if (bed->elf_backend_begin_write_processing)
3252 (*bed->elf_backend_begin_write_processing) (abfd, link_info);
3254 if (! prep_headers (abfd))
3257 /* Post process the headers if necessary. */
3258 if (bed->elf_backend_post_process_headers)
3259 (*bed->elf_backend_post_process_headers) (abfd, link_info);
3262 bfd_map_over_sections (abfd, elf_fake_sections, &failed);
3266 if (!assign_section_numbers (abfd, link_info))
3269 /* The backend linker builds symbol table information itself. */
3270 if (link_info == NULL && bfd_get_symcount (abfd) > 0)
3272 /* Non-zero if doing a relocatable link. */
3273 int relocatable_p = ! (abfd->flags & (EXEC_P | DYNAMIC));
3275 if (! swap_out_syms (abfd, &strtab, relocatable_p))
3279 if (link_info == NULL)
3281 bfd_map_over_sections (abfd, bfd_elf_set_group_contents, &failed);
3286 shstrtab_hdr = &elf_tdata (abfd)->shstrtab_hdr;
3287 /* sh_name was set in prep_headers. */
3288 shstrtab_hdr->sh_type = SHT_STRTAB;
3289 shstrtab_hdr->sh_flags = 0;
3290 shstrtab_hdr->sh_addr = 0;
3291 shstrtab_hdr->sh_size = _bfd_elf_strtab_size (elf_shstrtab (abfd));
3292 shstrtab_hdr->sh_entsize = 0;
3293 shstrtab_hdr->sh_link = 0;
3294 shstrtab_hdr->sh_info = 0;
3295 /* sh_offset is set in assign_file_positions_except_relocs. */
3296 shstrtab_hdr->sh_addralign = 1;
3298 if (!assign_file_positions_except_relocs (abfd, link_info))
3301 if (link_info == NULL && bfd_get_symcount (abfd) > 0)
3304 Elf_Internal_Shdr *hdr;
3306 off = elf_tdata (abfd)->next_file_pos;
3308 hdr = &elf_tdata (abfd)->symtab_hdr;
3309 off = _bfd_elf_assign_file_position_for_section (hdr, off, TRUE);
3311 hdr = &elf_tdata (abfd)->symtab_shndx_hdr;
3312 if (hdr->sh_size != 0)
3313 off = _bfd_elf_assign_file_position_for_section (hdr, off, TRUE);
3315 hdr = &elf_tdata (abfd)->strtab_hdr;
3316 off = _bfd_elf_assign_file_position_for_section (hdr, off, TRUE);
3318 elf_tdata (abfd)->next_file_pos = off;
3320 /* Now that we know where the .strtab section goes, write it
3322 if (bfd_seek (abfd, hdr->sh_offset, SEEK_SET) != 0
3323 || ! _bfd_stringtab_emit (abfd, strtab))
3325 _bfd_stringtab_free (strtab);
3328 abfd->output_has_begun = TRUE;
3333 /* Make an initial estimate of the size of the program header. If we
3334 get the number wrong here, we'll redo section placement. */
3336 static bfd_size_type
3337 get_program_header_size (bfd *abfd, struct bfd_link_info *info)
3341 const struct elf_backend_data *bed;
3343 /* Assume we will need exactly two PT_LOAD segments: one for text
3344 and one for data. */
3347 s = bfd_get_section_by_name (abfd, ".interp");
3348 if (s != NULL && (s->flags & SEC_LOAD) != 0)
3350 /* If we have a loadable interpreter section, we need a
3351 PT_INTERP segment. In this case, assume we also need a
3352 PT_PHDR segment, although that may not be true for all
3357 if (bfd_get_section_by_name (abfd, ".dynamic") != NULL)
3359 /* We need a PT_DYNAMIC segment. */
3365 /* We need a PT_GNU_RELRO segment. */
3369 if (elf_tdata (abfd)->eh_frame_hdr)
3371 /* We need a PT_GNU_EH_FRAME segment. */
3375 if (elf_tdata (abfd)->stack_flags)
3377 /* We need a PT_GNU_STACK segment. */
3381 for (s = abfd->sections; s != NULL; s = s->next)
3383 if ((s->flags & SEC_LOAD) != 0
3384 && CONST_STRNEQ (s->name, ".note"))
3386 /* We need a PT_NOTE segment. */
3388 /* Try to create just one PT_NOTE segment
3389 for all adjacent loadable .note* sections.
3390 gABI requires that within a PT_NOTE segment
3391 (and also inside of each SHT_NOTE section)
3392 each note is padded to a multiple of 4 size,
3393 so we check whether the sections are correctly
3395 if (s->alignment_power == 2)
3396 while (s->next != NULL
3397 && s->next->alignment_power == 2
3398 && (s->next->flags & SEC_LOAD) != 0
3399 && CONST_STRNEQ (s->next->name, ".note"))
3404 for (s = abfd->sections; s != NULL; s = s->next)
3406 if (s->flags & SEC_THREAD_LOCAL)
3408 /* We need a PT_TLS segment. */
3414 /* Let the backend count up any program headers it might need. */
3415 bed = get_elf_backend_data (abfd);
3416 if (bed->elf_backend_additional_program_headers)
3420 a = (*bed->elf_backend_additional_program_headers) (abfd, info);
3426 return segs * bed->s->sizeof_phdr;
3429 /* Create a mapping from a set of sections to a program segment. */
3431 static struct elf_segment_map *
3432 make_mapping (bfd *abfd,
3433 asection **sections,
3438 struct elf_segment_map *m;
3443 amt = sizeof (struct elf_segment_map);
3444 amt += (to - from - 1) * sizeof (asection *);
3445 m = bfd_zalloc (abfd, amt);
3449 m->p_type = PT_LOAD;
3450 for (i = from, hdrpp = sections + from; i < to; i++, hdrpp++)
3451 m->sections[i - from] = *hdrpp;
3452 m->count = to - from;
3454 if (from == 0 && phdr)
3456 /* Include the headers in the first PT_LOAD segment. */
3457 m->includes_filehdr = 1;
3458 m->includes_phdrs = 1;
3464 /* Create the PT_DYNAMIC segment, which includes DYNSEC. Returns NULL
3467 struct elf_segment_map *
3468 _bfd_elf_make_dynamic_segment (bfd *abfd, asection *dynsec)
3470 struct elf_segment_map *m;
3472 m = bfd_zalloc (abfd, sizeof (struct elf_segment_map));
3476 m->p_type = PT_DYNAMIC;
3478 m->sections[0] = dynsec;
3483 /* Possibly add or remove segments from the segment map. */
3486 elf_modify_segment_map (bfd *abfd,
3487 struct bfd_link_info *info,
3488 bfd_boolean remove_empty_load)
3490 struct elf_segment_map **m;
3491 const struct elf_backend_data *bed;
3493 /* The placement algorithm assumes that non allocated sections are
3494 not in PT_LOAD segments. We ensure this here by removing such
3495 sections from the segment map. We also remove excluded
3496 sections. Finally, any PT_LOAD segment without sections is
3498 m = &elf_tdata (abfd)->segment_map;
3501 unsigned int i, new_count;
3503 for (new_count = 0, i = 0; i < (*m)->count; i++)
3505 if (((*m)->sections[i]->flags & SEC_EXCLUDE) == 0
3506 && (((*m)->sections[i]->flags & SEC_ALLOC) != 0
3507 || (*m)->p_type != PT_LOAD))
3509 (*m)->sections[new_count] = (*m)->sections[i];
3513 (*m)->count = new_count;
3515 if (remove_empty_load && (*m)->p_type == PT_LOAD && (*m)->count == 0)
3521 bed = get_elf_backend_data (abfd);
3522 if (bed->elf_backend_modify_segment_map != NULL)
3524 if (!(*bed->elf_backend_modify_segment_map) (abfd, info))
3531 /* Set up a mapping from BFD sections to program segments. */
3534 _bfd_elf_map_sections_to_segments (bfd *abfd, struct bfd_link_info *info)
3537 struct elf_segment_map *m;
3538 asection **sections = NULL;
3539 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
3540 bfd_boolean no_user_phdrs;
3542 no_user_phdrs = elf_tdata (abfd)->segment_map == NULL;
3543 if (no_user_phdrs && bfd_count_sections (abfd) != 0)
3547 struct elf_segment_map *mfirst;
3548 struct elf_segment_map **pm;
3551 unsigned int phdr_index;
3552 bfd_vma maxpagesize;
3554 bfd_boolean phdr_in_segment = TRUE;
3555 bfd_boolean writable;
3557 asection *first_tls = NULL;
3558 asection *dynsec, *eh_frame_hdr;
3561 /* Select the allocated sections, and sort them. */
3563 sections = bfd_malloc2 (bfd_count_sections (abfd), sizeof (asection *));
3564 if (sections == NULL)
3568 for (s = abfd->sections; s != NULL; s = s->next)
3570 if ((s->flags & SEC_ALLOC) != 0)
3576 BFD_ASSERT (i <= bfd_count_sections (abfd));
3579 qsort (sections, (size_t) count, sizeof (asection *), elf_sort_sections);
3581 /* Build the mapping. */
3586 /* If we have a .interp section, then create a PT_PHDR segment for
3587 the program headers and a PT_INTERP segment for the .interp
3589 s = bfd_get_section_by_name (abfd, ".interp");
3590 if (s != NULL && (s->flags & SEC_LOAD) != 0)
3592 amt = sizeof (struct elf_segment_map);
3593 m = bfd_zalloc (abfd, amt);
3597 m->p_type = PT_PHDR;
3598 /* FIXME: UnixWare and Solaris set PF_X, Irix 5 does not. */
3599 m->p_flags = PF_R | PF_X;
3600 m->p_flags_valid = 1;
3601 m->includes_phdrs = 1;
3606 amt = sizeof (struct elf_segment_map);
3607 m = bfd_zalloc (abfd, amt);
3611 m->p_type = PT_INTERP;
3619 /* Look through the sections. We put sections in the same program
3620 segment when the start of the second section can be placed within
3621 a few bytes of the end of the first section. */
3625 maxpagesize = bed->maxpagesize;
3627 dynsec = bfd_get_section_by_name (abfd, ".dynamic");
3629 && (dynsec->flags & SEC_LOAD) == 0)
3632 /* Deal with -Ttext or something similar such that the first section
3633 is not adjacent to the program headers. This is an
3634 approximation, since at this point we don't know exactly how many
3635 program headers we will need. */
3638 bfd_size_type phdr_size = elf_tdata (abfd)->program_header_size;
3640 if (phdr_size == (bfd_size_type) -1)
3641 phdr_size = get_program_header_size (abfd, info);
3642 if ((abfd->flags & D_PAGED) == 0
3643 || sections[0]->lma < phdr_size
3644 || sections[0]->lma % maxpagesize < phdr_size % maxpagesize)
3645 phdr_in_segment = FALSE;
3648 for (i = 0, hdrpp = sections; i < count; i++, hdrpp++)
3651 bfd_boolean new_segment;
3655 /* See if this section and the last one will fit in the same
3658 if (last_hdr == NULL)
3660 /* If we don't have a segment yet, then we don't need a new
3661 one (we build the last one after this loop). */
3662 new_segment = FALSE;
3664 else if (last_hdr->lma - last_hdr->vma != hdr->lma - hdr->vma)
3666 /* If this section has a different relation between the
3667 virtual address and the load address, then we need a new
3671 else if (BFD_ALIGN (last_hdr->lma + last_size, maxpagesize)
3672 < BFD_ALIGN (hdr->lma, maxpagesize))
3674 /* If putting this section in this segment would force us to
3675 skip a page in the segment, then we need a new segment. */
3678 else if ((last_hdr->flags & (SEC_LOAD | SEC_THREAD_LOCAL)) == 0
3679 && (hdr->flags & (SEC_LOAD | SEC_THREAD_LOCAL)) != 0)
3681 /* We don't want to put a loadable section after a
3682 nonloadable section in the same segment.
3683 Consider .tbss sections as loadable for this purpose. */
3686 else if ((abfd->flags & D_PAGED) == 0)
3688 /* If the file is not demand paged, which means that we
3689 don't require the sections to be correctly aligned in the
3690 file, then there is no other reason for a new segment. */
3691 new_segment = FALSE;
3694 && (hdr->flags & SEC_READONLY) == 0
3695 && (((last_hdr->lma + last_size - 1)
3696 & ~(maxpagesize - 1))
3697 != (hdr->lma & ~(maxpagesize - 1))))
3699 /* We don't want to put a writable section in a read only
3700 segment, unless they are on the same page in memory
3701 anyhow. We already know that the last section does not
3702 bring us past the current section on the page, so the
3703 only case in which the new section is not on the same
3704 page as the previous section is when the previous section
3705 ends precisely on a page boundary. */
3710 /* Otherwise, we can use the same segment. */
3711 new_segment = FALSE;
3714 /* Allow interested parties a chance to override our decision. */
3715 if (last_hdr && info->callbacks->override_segment_assignment)
3716 new_segment = info->callbacks->override_segment_assignment (info, abfd, hdr, last_hdr, new_segment);
3720 if ((hdr->flags & SEC_READONLY) == 0)
3723 /* .tbss sections effectively have zero size. */
3724 if ((hdr->flags & (SEC_THREAD_LOCAL | SEC_LOAD))
3725 != SEC_THREAD_LOCAL)
3726 last_size = hdr->size;
3732 /* We need a new program segment. We must create a new program
3733 header holding all the sections from phdr_index until hdr. */
3735 m = make_mapping (abfd, sections, phdr_index, i, phdr_in_segment);
3742 if ((hdr->flags & SEC_READONLY) == 0)
3748 /* .tbss sections effectively have zero size. */
3749 if ((hdr->flags & (SEC_THREAD_LOCAL | SEC_LOAD)) != SEC_THREAD_LOCAL)
3750 last_size = hdr->size;
3754 phdr_in_segment = FALSE;
3757 /* Create a final PT_LOAD program segment. */
3758 if (last_hdr != NULL)
3760 m = make_mapping (abfd, sections, phdr_index, i, phdr_in_segment);
3768 /* If there is a .dynamic section, throw in a PT_DYNAMIC segment. */
3771 m = _bfd_elf_make_dynamic_segment (abfd, dynsec);
3778 /* For each batch of consecutive loadable .note sections,
3779 add a PT_NOTE segment. We don't use bfd_get_section_by_name,
3780 because if we link together nonloadable .note sections and
3781 loadable .note sections, we will generate two .note sections
3782 in the output file. FIXME: Using names for section types is
3784 for (s = abfd->sections; s != NULL; s = s->next)
3786 if ((s->flags & SEC_LOAD) != 0
3787 && CONST_STRNEQ (s->name, ".note"))
3791 amt = sizeof (struct elf_segment_map);
3792 if (s->alignment_power == 2)
3793 for (s2 = s; s2->next != NULL; s2 = s2->next)
3795 if (s2->next->alignment_power == 2
3796 && (s2->next->flags & SEC_LOAD) != 0
3797 && CONST_STRNEQ (s2->next->name, ".note")
3798 && align_power (s2->vma + s2->size, 2)
3804 amt += (count - 1) * sizeof (asection *);
3805 m = bfd_zalloc (abfd, amt);
3809 m->p_type = PT_NOTE;
3813 m->sections[m->count - count--] = s;
3814 BFD_ASSERT ((s->flags & SEC_THREAD_LOCAL) == 0);
3817 m->sections[m->count - 1] = s;
3818 BFD_ASSERT ((s->flags & SEC_THREAD_LOCAL) == 0);
3822 if (s->flags & SEC_THREAD_LOCAL)
3830 /* If there are any SHF_TLS output sections, add PT_TLS segment. */
3835 amt = sizeof (struct elf_segment_map);
3836 amt += (tls_count - 1) * sizeof (asection *);
3837 m = bfd_zalloc (abfd, amt);
3842 m->count = tls_count;
3843 /* Mandated PF_R. */
3845 m->p_flags_valid = 1;
3846 for (i = 0; i < tls_count; ++i)
3848 BFD_ASSERT (first_tls->flags & SEC_THREAD_LOCAL);
3849 m->sections[i] = first_tls;
3850 first_tls = first_tls->next;
3857 /* If there is a .eh_frame_hdr section, throw in a PT_GNU_EH_FRAME
3859 eh_frame_hdr = elf_tdata (abfd)->eh_frame_hdr;
3860 if (eh_frame_hdr != NULL
3861 && (eh_frame_hdr->output_section->flags & SEC_LOAD) != 0)
3863 amt = sizeof (struct elf_segment_map);
3864 m = bfd_zalloc (abfd, amt);
3868 m->p_type = PT_GNU_EH_FRAME;
3870 m->sections[0] = eh_frame_hdr->output_section;
3876 if (elf_tdata (abfd)->stack_flags)
3878 amt = sizeof (struct elf_segment_map);
3879 m = bfd_zalloc (abfd, amt);
3883 m->p_type = PT_GNU_STACK;
3884 m->p_flags = elf_tdata (abfd)->stack_flags;
3885 m->p_flags_valid = 1;
3893 for (m = mfirst; m != NULL; m = m->next)
3895 if (m->p_type == PT_LOAD)
3897 asection *last = m->sections[m->count - 1];
3898 bfd_vma vaddr = m->sections[0]->vma;
3899 bfd_vma filesz = last->vma - vaddr + last->size;
3901 if (vaddr < info->relro_end
3902 && vaddr >= info->relro_start
3903 && (vaddr + filesz) >= info->relro_end)
3908 /* Make a PT_GNU_RELRO segment only when it isn't empty. */
3911 amt = sizeof (struct elf_segment_map);
3912 m = bfd_zalloc (abfd, amt);
3916 m->p_type = PT_GNU_RELRO;
3918 m->p_flags_valid = 1;
3926 elf_tdata (abfd)->segment_map = mfirst;
3929 if (!elf_modify_segment_map (abfd, info, no_user_phdrs))
3932 for (count = 0, m = elf_tdata (abfd)->segment_map; m != NULL; m = m->next)
3934 elf_tdata (abfd)->program_header_size = count * bed->s->sizeof_phdr;
3939 if (sections != NULL)
3944 /* Sort sections by address. */
3947 elf_sort_sections (const void *arg1, const void *arg2)
3949 const asection *sec1 = *(const asection **) arg1;
3950 const asection *sec2 = *(const asection **) arg2;
3951 bfd_size_type size1, size2;
3953 /* Sort by LMA first, since this is the address used to
3954 place the section into a segment. */
3955 if (sec1->lma < sec2->lma)
3957 else if (sec1->lma > sec2->lma)
3960 /* Then sort by VMA. Normally the LMA and the VMA will be
3961 the same, and this will do nothing. */
3962 if (sec1->vma < sec2->vma)
3964 else if (sec1->vma > sec2->vma)
3967 /* Put !SEC_LOAD sections after SEC_LOAD ones. */
3969 #define TOEND(x) (((x)->flags & (SEC_LOAD | SEC_THREAD_LOCAL)) == 0)
3975 /* If the indicies are the same, do not return 0
3976 here, but continue to try the next comparison. */
3977 if (sec1->target_index - sec2->target_index != 0)
3978 return sec1->target_index - sec2->target_index;
3983 else if (TOEND (sec2))
3988 /* Sort by size, to put zero sized sections
3989 before others at the same address. */
3991 size1 = (sec1->flags & SEC_LOAD) ? sec1->size : 0;
3992 size2 = (sec2->flags & SEC_LOAD) ? sec2->size : 0;
3999 return sec1->target_index - sec2->target_index;
4002 /* Ian Lance Taylor writes:
4004 We shouldn't be using % with a negative signed number. That's just
4005 not good. We have to make sure either that the number is not
4006 negative, or that the number has an unsigned type. When the types
4007 are all the same size they wind up as unsigned. When file_ptr is a
4008 larger signed type, the arithmetic winds up as signed long long,
4011 What we're trying to say here is something like ``increase OFF by
4012 the least amount that will cause it to be equal to the VMA modulo
4014 /* In other words, something like:
4016 vma_offset = m->sections[0]->vma % bed->maxpagesize;
4017 off_offset = off % bed->maxpagesize;
4018 if (vma_offset < off_offset)
4019 adjustment = vma_offset + bed->maxpagesize - off_offset;
4021 adjustment = vma_offset - off_offset;
4023 which can can be collapsed into the expression below. */
4026 vma_page_aligned_bias (bfd_vma vma, ufile_ptr off, bfd_vma maxpagesize)
4028 return ((vma - off) % maxpagesize);
4032 print_segment_map (const struct elf_segment_map *m)
4035 const char *pt = get_segment_type (m->p_type);
4040 if (m->p_type >= PT_LOPROC && m->p_type <= PT_HIPROC)
4041 sprintf (buf, "LOPROC+%7.7x",
4042 (unsigned int) (m->p_type - PT_LOPROC));
4043 else if (m->p_type >= PT_LOOS && m->p_type <= PT_HIOS)
4044 sprintf (buf, "LOOS+%7.7x",
4045 (unsigned int) (m->p_type - PT_LOOS));
4047 snprintf (buf, sizeof (buf), "%8.8x",
4048 (unsigned int) m->p_type);
4051 fprintf (stderr, "%s:", pt);
4052 for (j = 0; j < m->count; j++)
4053 fprintf (stderr, " %s", m->sections [j]->name);
4057 /* Assign file positions to the sections based on the mapping from
4058 sections to segments. This function also sets up some fields in
4062 assign_file_positions_for_load_sections (bfd *abfd,
4063 struct bfd_link_info *link_info)
4065 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
4066 struct elf_segment_map *m;
4067 Elf_Internal_Phdr *phdrs;
4068 Elf_Internal_Phdr *p;
4070 bfd_size_type maxpagesize;
4074 if (link_info == NULL
4075 && !elf_modify_segment_map (abfd, link_info, FALSE))
4079 for (m = elf_tdata (abfd)->segment_map; m != NULL; m = m->next)
4082 elf_elfheader (abfd)->e_phoff = bed->s->sizeof_ehdr;
4083 elf_elfheader (abfd)->e_phentsize = bed->s->sizeof_phdr;
4084 elf_elfheader (abfd)->e_phnum = alloc;
4086 if (elf_tdata (abfd)->program_header_size == (bfd_size_type) -1)
4087 elf_tdata (abfd)->program_header_size = alloc * bed->s->sizeof_phdr;
4089 BFD_ASSERT (elf_tdata (abfd)->program_header_size
4090 >= alloc * bed->s->sizeof_phdr);
4094 elf_tdata (abfd)->next_file_pos = bed->s->sizeof_ehdr;
4098 phdrs = bfd_alloc2 (abfd, alloc, sizeof (Elf_Internal_Phdr));
4099 elf_tdata (abfd)->phdr = phdrs;
4104 if ((abfd->flags & D_PAGED) != 0)
4105 maxpagesize = bed->maxpagesize;
4107 off = bed->s->sizeof_ehdr;
4108 off += alloc * bed->s->sizeof_phdr;
4110 for (m = elf_tdata (abfd)->segment_map, p = phdrs, j = 0;
4112 m = m->next, p++, j++)
4116 bfd_boolean no_contents;
4118 /* If elf_segment_map is not from map_sections_to_segments, the
4119 sections may not be correctly ordered. NOTE: sorting should
4120 not be done to the PT_NOTE section of a corefile, which may
4121 contain several pseudo-sections artificially created by bfd.
4122 Sorting these pseudo-sections breaks things badly. */
4124 && !(elf_elfheader (abfd)->e_type == ET_CORE
4125 && m->p_type == PT_NOTE))
4126 qsort (m->sections, (size_t) m->count, sizeof (asection *),
4129 /* An ELF segment (described by Elf_Internal_Phdr) may contain a
4130 number of sections with contents contributing to both p_filesz
4131 and p_memsz, followed by a number of sections with no contents
4132 that just contribute to p_memsz. In this loop, OFF tracks next
4133 available file offset for PT_LOAD and PT_NOTE segments. */
4134 p->p_type = m->p_type;
4135 p->p_flags = m->p_flags;
4140 p->p_vaddr = m->sections[0]->vma - m->p_vaddr_offset;
4142 if (m->p_paddr_valid)
4143 p->p_paddr = m->p_paddr;
4144 else if (m->count == 0)
4147 p->p_paddr = m->sections[0]->lma - m->p_vaddr_offset;
4149 if (p->p_type == PT_LOAD
4150 && (abfd->flags & D_PAGED) != 0)
4152 /* p_align in demand paged PT_LOAD segments effectively stores
4153 the maximum page size. When copying an executable with
4154 objcopy, we set m->p_align from the input file. Use this
4155 value for maxpagesize rather than bed->maxpagesize, which
4156 may be different. Note that we use maxpagesize for PT_TLS
4157 segment alignment later in this function, so we are relying
4158 on at least one PT_LOAD segment appearing before a PT_TLS
4160 if (m->p_align_valid)
4161 maxpagesize = m->p_align;
4163 p->p_align = maxpagesize;
4165 else if (m->p_align_valid)
4166 p->p_align = m->p_align;
4167 else if (m->count == 0)
4168 p->p_align = 1 << bed->s->log_file_align;
4172 no_contents = FALSE;
4174 if (p->p_type == PT_LOAD
4177 bfd_size_type align;
4178 unsigned int align_power = 0;
4180 if (m->p_align_valid)
4184 for (i = 0, secpp = m->sections; i < m->count; i++, secpp++)
4186 unsigned int secalign;
4188 secalign = bfd_get_section_alignment (abfd, *secpp);
4189 if (secalign > align_power)
4190 align_power = secalign;
4192 align = (bfd_size_type) 1 << align_power;
4193 if (align < maxpagesize)
4194 align = maxpagesize;
4197 for (i = 0; i < m->count; i++)
4198 if ((m->sections[i]->flags & (SEC_LOAD | SEC_HAS_CONTENTS)) == 0)
4199 /* If we aren't making room for this section, then
4200 it must be SHT_NOBITS regardless of what we've
4201 set via struct bfd_elf_special_section. */
4202 elf_section_type (m->sections[i]) = SHT_NOBITS;
4204 /* Find out whether this segment contains any loadable
4205 sections. If the first section isn't loadable, the same
4206 holds for any other sections. */
4208 while (elf_section_type (m->sections[i]) == SHT_NOBITS)
4210 /* If a segment starts with .tbss, we need to look
4211 at the next section to decide whether the segment
4212 has any loadable sections. */
4213 if ((elf_section_flags (m->sections[i]) & SHF_TLS) == 0
4221 off_adjust = vma_page_aligned_bias (m->sections[0]->vma, off, align);
4225 /* We shouldn't need to align the segment on disk since
4226 the segment doesn't need file space, but the gABI
4227 arguably requires the alignment and glibc ld.so
4228 checks it. So to comply with the alignment
4229 requirement but not waste file space, we adjust
4230 p_offset for just this segment. (OFF_ADJUST is
4231 subtracted from OFF later.) This may put p_offset
4232 past the end of file, but that shouldn't matter. */
4237 /* Make sure the .dynamic section is the first section in the
4238 PT_DYNAMIC segment. */
4239 else if (p->p_type == PT_DYNAMIC
4241 && strcmp (m->sections[0]->name, ".dynamic") != 0)
4244 (_("%B: The first section in the PT_DYNAMIC segment is not the .dynamic section"),
4246 bfd_set_error (bfd_error_bad_value);
4254 if (m->includes_filehdr)
4256 if (!m->p_flags_valid)
4258 p->p_filesz = bed->s->sizeof_ehdr;
4259 p->p_memsz = bed->s->sizeof_ehdr;
4262 BFD_ASSERT (p->p_type == PT_LOAD);
4264 if (p->p_vaddr < (bfd_vma) off)
4266 (*_bfd_error_handler)
4267 (_("%B: Not enough room for program headers, try linking with -N"),
4269 bfd_set_error (bfd_error_bad_value);
4274 if (!m->p_paddr_valid)
4279 if (m->includes_phdrs)
4281 if (!m->p_flags_valid)
4284 if (!m->includes_filehdr)
4286 p->p_offset = bed->s->sizeof_ehdr;
4290 BFD_ASSERT (p->p_type == PT_LOAD);
4291 p->p_vaddr -= off - p->p_offset;
4292 if (!m->p_paddr_valid)
4293 p->p_paddr -= off - p->p_offset;
4297 p->p_filesz += alloc * bed->s->sizeof_phdr;
4298 p->p_memsz += alloc * bed->s->sizeof_phdr;
4301 if (p->p_type == PT_LOAD
4302 || (p->p_type == PT_NOTE && bfd_get_format (abfd) == bfd_core))
4304 if (!m->includes_filehdr && !m->includes_phdrs)
4310 adjust = off - (p->p_offset + p->p_filesz);
4312 p->p_filesz += adjust;
4313 p->p_memsz += adjust;
4317 /* Set up p_filesz, p_memsz, p_align and p_flags from the section
4318 maps. Set filepos for sections in PT_LOAD segments, and in
4319 core files, for sections in PT_NOTE segments.
4320 assign_file_positions_for_non_load_sections will set filepos
4321 for other sections and update p_filesz for other segments. */
4322 for (i = 0, secpp = m->sections; i < m->count; i++, secpp++)
4325 bfd_size_type align;
4326 Elf_Internal_Shdr *this_hdr;
4329 this_hdr = &elf_section_data (sec)->this_hdr;
4330 align = (bfd_size_type) 1 << bfd_get_section_alignment (abfd, sec);
4332 if (p->p_type == PT_LOAD
4333 || p->p_type == PT_TLS)
4335 bfd_signed_vma adjust = sec->lma - (p->p_paddr + p->p_memsz);
4337 if (this_hdr->sh_type != SHT_NOBITS
4338 || ((this_hdr->sh_flags & SHF_ALLOC) != 0
4339 && ((this_hdr->sh_flags & SHF_TLS) == 0
4340 || p->p_type == PT_TLS)))
4344 (*_bfd_error_handler)
4345 (_("%B: section %A lma 0x%lx overlaps previous sections"),
4346 abfd, sec, (unsigned long) sec->lma);
4349 p->p_memsz += adjust;
4351 if (this_hdr->sh_type != SHT_NOBITS)
4354 p->p_filesz += adjust;
4359 if (p->p_type == PT_NOTE && bfd_get_format (abfd) == bfd_core)
4361 /* The section at i == 0 is the one that actually contains
4365 this_hdr->sh_offset = sec->filepos = off;
4366 off += this_hdr->sh_size;
4367 p->p_filesz = this_hdr->sh_size;
4373 /* The rest are fake sections that shouldn't be written. */
4382 if (p->p_type == PT_LOAD)
4384 this_hdr->sh_offset = sec->filepos = off;
4385 if (this_hdr->sh_type != SHT_NOBITS)
4386 off += this_hdr->sh_size;
4389 if (this_hdr->sh_type != SHT_NOBITS)
4391 p->p_filesz += this_hdr->sh_size;
4392 /* A load section without SHF_ALLOC is something like
4393 a note section in a PT_NOTE segment. These take
4394 file space but are not loaded into memory. */
4395 if ((this_hdr->sh_flags & SHF_ALLOC) != 0)
4396 p->p_memsz += this_hdr->sh_size;
4398 else if ((this_hdr->sh_flags & SHF_ALLOC) != 0)
4400 if (p->p_type == PT_TLS)
4401 p->p_memsz += this_hdr->sh_size;
4403 /* .tbss is special. It doesn't contribute to p_memsz of
4405 else if ((this_hdr->sh_flags & SHF_TLS) == 0)
4406 p->p_memsz += this_hdr->sh_size;
4409 if (align > p->p_align
4410 && !m->p_align_valid
4411 && (p->p_type != PT_LOAD
4412 || (abfd->flags & D_PAGED) == 0))
4416 if (!m->p_flags_valid)
4419 if ((this_hdr->sh_flags & SHF_EXECINSTR) != 0)
4421 if ((this_hdr->sh_flags & SHF_WRITE) != 0)
4427 /* Check that all sections are in a PT_LOAD segment.
4428 Don't check funky gdb generated core files. */
4429 if (p->p_type == PT_LOAD && bfd_get_format (abfd) != bfd_core)
4430 for (i = 0, secpp = m->sections; i < m->count; i++, secpp++)
4432 Elf_Internal_Shdr *this_hdr;
4436 this_hdr = &(elf_section_data(sec)->this_hdr);
4437 if (this_hdr->sh_size != 0
4438 && !ELF_IS_SECTION_IN_SEGMENT_FILE (this_hdr, p))
4440 (*_bfd_error_handler)
4441 (_("%B: section `%A' can't be allocated in segment %d"),
4443 print_segment_map (m);
4444 bfd_set_error (bfd_error_bad_value);
4450 elf_tdata (abfd)->next_file_pos = off;
4454 /* Assign file positions for the other sections. */
4457 assign_file_positions_for_non_load_sections (bfd *abfd,
4458 struct bfd_link_info *link_info)
4460 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
4461 Elf_Internal_Shdr **i_shdrpp;
4462 Elf_Internal_Shdr **hdrpp;
4463 Elf_Internal_Phdr *phdrs;
4464 Elf_Internal_Phdr *p;
4465 struct elf_segment_map *m;
4466 bfd_vma filehdr_vaddr, filehdr_paddr;
4467 bfd_vma phdrs_vaddr, phdrs_paddr;
4469 unsigned int num_sec;
4473 i_shdrpp = elf_elfsections (abfd);
4474 num_sec = elf_numsections (abfd);
4475 off = elf_tdata (abfd)->next_file_pos;
4476 for (i = 1, hdrpp = i_shdrpp + 1; i < num_sec; i++, hdrpp++)
4478 struct elf_obj_tdata *tdata = elf_tdata (abfd);
4479 Elf_Internal_Shdr *hdr;
4482 if (hdr->bfd_section != NULL
4483 && (hdr->bfd_section->filepos != 0
4484 || (hdr->sh_type == SHT_NOBITS
4485 && hdr->contents == NULL)))
4486 BFD_ASSERT (hdr->sh_offset == hdr->bfd_section->filepos);
4487 else if ((hdr->sh_flags & SHF_ALLOC) != 0)
4489 if (hdr->sh_size != 0)
4490 ((*_bfd_error_handler)
4491 (_("%B: warning: allocated section `%s' not in segment"),
4493 (hdr->bfd_section == NULL
4495 : hdr->bfd_section->name)));
4496 /* We don't need to page align empty sections. */
4497 if ((abfd->flags & D_PAGED) != 0 && hdr->sh_size != 0)
4498 off += vma_page_aligned_bias (hdr->sh_addr, off,
4501 off += vma_page_aligned_bias (hdr->sh_addr, off,
4503 off = _bfd_elf_assign_file_position_for_section (hdr, off,
4506 else if (((hdr->sh_type == SHT_REL || hdr->sh_type == SHT_RELA)
4507 && hdr->bfd_section == NULL)
4508 || hdr == i_shdrpp[tdata->symtab_section]
4509 || hdr == i_shdrpp[tdata->symtab_shndx_section]
4510 || hdr == i_shdrpp[tdata->strtab_section])
4511 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;
4522 /* Now that we have set the section file positions, we can set up
4523 the file positions for the non PT_LOAD segments. */
4527 phdrs_vaddr = bed->maxpagesize + bed->s->sizeof_ehdr;
4529 phdrs = elf_tdata (abfd)->phdr;
4530 for (m = elf_tdata (abfd)->segment_map, p = phdrs;
4535 if (p->p_type != PT_LOAD)
4538 if (m->includes_filehdr)
4540 filehdr_vaddr = p->p_vaddr;
4541 filehdr_paddr = p->p_paddr;
4543 if (m->includes_phdrs)
4545 phdrs_vaddr = p->p_vaddr;
4546 phdrs_paddr = p->p_paddr;
4547 if (m->includes_filehdr)
4549 phdrs_vaddr += bed->s->sizeof_ehdr;
4550 phdrs_paddr += bed->s->sizeof_ehdr;
4555 for (m = elf_tdata (abfd)->segment_map, p = phdrs;
4561 if (p->p_type != PT_LOAD
4562 && (p->p_type != PT_NOTE
4563 || bfd_get_format (abfd) != bfd_core))
4565 Elf_Internal_Shdr *hdr;
4568 BFD_ASSERT (!m->includes_filehdr && !m->includes_phdrs);
4570 sect = m->sections[m->count - 1];
4571 hdr = &elf_section_data (sect)->this_hdr;
4572 p->p_filesz = sect->filepos - m->sections[0]->filepos;
4573 if (hdr->sh_type != SHT_NOBITS)
4574 p->p_filesz += hdr->sh_size;
4576 if (p->p_type == PT_GNU_RELRO)
4578 /* When we get here, we are copying executable
4579 or shared library. But we need to use the same
4581 Elf_Internal_Phdr *lp;
4583 for (lp = phdrs; lp < phdrs + count; ++lp)
4585 if (lp->p_type == PT_LOAD
4586 && lp->p_paddr == p->p_paddr)
4590 if (lp < phdrs + count)
4592 /* We should use p_size if it is valid since it
4593 may contain the first few bytes of the next
4594 SEC_ALLOC section. */
4595 if (m->p_size_valid)
4596 p->p_filesz = m->p_size;
4599 p->p_vaddr = lp->p_vaddr;
4600 p->p_offset = lp->p_offset;
4601 p->p_memsz = p->p_filesz;
4608 p->p_offset = m->sections[0]->filepos;
4613 if (m->includes_filehdr)
4615 p->p_vaddr = filehdr_vaddr;
4616 if (! m->p_paddr_valid)
4617 p->p_paddr = filehdr_paddr;
4619 else if (m->includes_phdrs)
4621 p->p_vaddr = phdrs_vaddr;
4622 if (! m->p_paddr_valid)
4623 p->p_paddr = phdrs_paddr;
4625 else if (p->p_type == PT_GNU_RELRO)
4627 Elf_Internal_Phdr *lp;
4629 for (lp = phdrs; lp < phdrs + count; ++lp)
4631 if (lp->p_type == PT_LOAD
4632 && lp->p_vaddr <= link_info->relro_end
4633 && lp->p_vaddr >= link_info->relro_start
4634 && (lp->p_vaddr + lp->p_filesz
4635 >= link_info->relro_end))
4639 if (lp < phdrs + count
4640 && link_info->relro_end > lp->p_vaddr)
4642 p->p_vaddr = lp->p_vaddr;
4643 p->p_paddr = lp->p_paddr;
4644 p->p_offset = lp->p_offset;
4645 p->p_filesz = link_info->relro_end - lp->p_vaddr;
4646 p->p_memsz = p->p_filesz;
4648 p->p_flags = (lp->p_flags & ~PF_W);
4652 memset (p, 0, sizeof *p);
4653 p->p_type = PT_NULL;
4659 elf_tdata (abfd)->next_file_pos = off;
4664 /* Work out the file positions of all the sections. This is called by
4665 _bfd_elf_compute_section_file_positions. All the section sizes and
4666 VMAs must be known before this is called.
4668 Reloc sections come in two flavours: Those processed specially as
4669 "side-channel" data attached to a section to which they apply, and
4670 those that bfd doesn't process as relocations. The latter sort are
4671 stored in a normal bfd section by bfd_section_from_shdr. We don't
4672 consider the former sort here, unless they form part of the loadable
4673 image. Reloc sections not assigned here will be handled later by
4674 assign_file_positions_for_relocs.
4676 We also don't set the positions of the .symtab and .strtab here. */
4679 assign_file_positions_except_relocs (bfd *abfd,
4680 struct bfd_link_info *link_info)
4682 struct elf_obj_tdata *tdata = elf_tdata (abfd);
4683 Elf_Internal_Ehdr *i_ehdrp = elf_elfheader (abfd);
4685 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
4687 if ((abfd->flags & (EXEC_P | DYNAMIC)) == 0
4688 && bfd_get_format (abfd) != bfd_core)
4690 Elf_Internal_Shdr ** const i_shdrpp = elf_elfsections (abfd);
4691 unsigned int num_sec = elf_numsections (abfd);
4692 Elf_Internal_Shdr **hdrpp;
4695 /* Start after the ELF header. */
4696 off = i_ehdrp->e_ehsize;
4698 /* We are not creating an executable, which means that we are
4699 not creating a program header, and that the actual order of
4700 the sections in the file is unimportant. */
4701 for (i = 1, hdrpp = i_shdrpp + 1; i < num_sec; i++, hdrpp++)
4703 Elf_Internal_Shdr *hdr;
4706 if (((hdr->sh_type == SHT_REL || hdr->sh_type == SHT_RELA)
4707 && hdr->bfd_section == NULL)
4708 || i == tdata->symtab_section
4709 || i == tdata->symtab_shndx_section
4710 || i == tdata->strtab_section)
4712 hdr->sh_offset = -1;
4715 off = _bfd_elf_assign_file_position_for_section (hdr, off, TRUE);
4717 if (i == SHN_LORESERVE - 1)
4719 i += SHN_HIRESERVE + 1 - SHN_LORESERVE;
4720 hdrpp += SHN_HIRESERVE + 1 - SHN_LORESERVE;
4728 /* Assign file positions for the loaded sections based on the
4729 assignment of sections to segments. */
4730 if (!assign_file_positions_for_load_sections (abfd, link_info))
4733 /* And for non-load sections. */
4734 if (!assign_file_positions_for_non_load_sections (abfd, link_info))
4737 if (bed->elf_backend_modify_program_headers != NULL)
4739 if (!(*bed->elf_backend_modify_program_headers) (abfd, link_info))
4743 /* Write out the program headers. */
4744 alloc = tdata->program_header_size / bed->s->sizeof_phdr;
4745 if (bfd_seek (abfd, (bfd_signed_vma) bed->s->sizeof_ehdr, SEEK_SET) != 0
4746 || bed->s->write_out_phdrs (abfd, tdata->phdr, alloc) != 0)
4749 off = tdata->next_file_pos;
4752 /* Place the section headers. */
4753 off = align_file_position (off, 1 << bed->s->log_file_align);
4754 i_ehdrp->e_shoff = off;
4755 off += i_ehdrp->e_shnum * i_ehdrp->e_shentsize;
4757 tdata->next_file_pos = off;
4763 prep_headers (bfd *abfd)
4765 Elf_Internal_Ehdr *i_ehdrp; /* Elf file header, internal form */
4766 Elf_Internal_Phdr *i_phdrp = 0; /* Program header table, internal form */
4767 Elf_Internal_Shdr **i_shdrp; /* Section header table, internal form */
4768 struct elf_strtab_hash *shstrtab;
4769 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
4771 i_ehdrp = elf_elfheader (abfd);
4772 i_shdrp = elf_elfsections (abfd);
4774 shstrtab = _bfd_elf_strtab_init ();
4775 if (shstrtab == NULL)
4778 elf_shstrtab (abfd) = shstrtab;
4780 i_ehdrp->e_ident[EI_MAG0] = ELFMAG0;
4781 i_ehdrp->e_ident[EI_MAG1] = ELFMAG1;
4782 i_ehdrp->e_ident[EI_MAG2] = ELFMAG2;
4783 i_ehdrp->e_ident[EI_MAG3] = ELFMAG3;
4785 i_ehdrp->e_ident[EI_CLASS] = bed->s->elfclass;
4786 i_ehdrp->e_ident[EI_DATA] =
4787 bfd_big_endian (abfd) ? ELFDATA2MSB : ELFDATA2LSB;
4788 i_ehdrp->e_ident[EI_VERSION] = bed->s->ev_current;
4790 if ((abfd->flags & DYNAMIC) != 0)
4791 i_ehdrp->e_type = ET_DYN;
4792 else if ((abfd->flags & EXEC_P) != 0)
4793 i_ehdrp->e_type = ET_EXEC;
4794 else if (bfd_get_format (abfd) == bfd_core)
4795 i_ehdrp->e_type = ET_CORE;
4797 i_ehdrp->e_type = ET_REL;
4799 switch (bfd_get_arch (abfd))
4801 case bfd_arch_unknown:
4802 i_ehdrp->e_machine = EM_NONE;
4805 /* There used to be a long list of cases here, each one setting
4806 e_machine to the same EM_* macro #defined as ELF_MACHINE_CODE
4807 in the corresponding bfd definition. To avoid duplication,
4808 the switch was removed. Machines that need special handling
4809 can generally do it in elf_backend_final_write_processing(),
4810 unless they need the information earlier than the final write.
4811 Such need can generally be supplied by replacing the tests for
4812 e_machine with the conditions used to determine it. */
4814 i_ehdrp->e_machine = bed->elf_machine_code;
4817 i_ehdrp->e_version = bed->s->ev_current;
4818 i_ehdrp->e_ehsize = bed->s->sizeof_ehdr;
4820 /* No program header, for now. */
4821 i_ehdrp->e_phoff = 0;
4822 i_ehdrp->e_phentsize = 0;
4823 i_ehdrp->e_phnum = 0;
4825 /* Each bfd section is section header entry. */
4826 i_ehdrp->e_entry = bfd_get_start_address (abfd);
4827 i_ehdrp->e_shentsize = bed->s->sizeof_shdr;
4829 /* If we're building an executable, we'll need a program header table. */
4830 if (abfd->flags & EXEC_P)
4831 /* It all happens later. */
4835 i_ehdrp->e_phentsize = 0;
4837 i_ehdrp->e_phoff = 0;
4840 elf_tdata (abfd)->symtab_hdr.sh_name =
4841 (unsigned int) _bfd_elf_strtab_add (shstrtab, ".symtab", FALSE);
4842 elf_tdata (abfd)->strtab_hdr.sh_name =
4843 (unsigned int) _bfd_elf_strtab_add (shstrtab, ".strtab", FALSE);
4844 elf_tdata (abfd)->shstrtab_hdr.sh_name =
4845 (unsigned int) _bfd_elf_strtab_add (shstrtab, ".shstrtab", FALSE);
4846 if (elf_tdata (abfd)->symtab_hdr.sh_name == (unsigned int) -1
4847 || elf_tdata (abfd)->symtab_hdr.sh_name == (unsigned int) -1
4848 || elf_tdata (abfd)->shstrtab_hdr.sh_name == (unsigned int) -1)
4854 /* Assign file positions for all the reloc sections which are not part
4855 of the loadable file image. */
4858 _bfd_elf_assign_file_positions_for_relocs (bfd *abfd)
4861 unsigned int i, num_sec;
4862 Elf_Internal_Shdr **shdrpp;
4864 off = elf_tdata (abfd)->next_file_pos;
4866 num_sec = elf_numsections (abfd);
4867 for (i = 1, shdrpp = elf_elfsections (abfd) + 1; i < num_sec; i++, shdrpp++)
4869 Elf_Internal_Shdr *shdrp;
4872 if ((shdrp->sh_type == SHT_REL || shdrp->sh_type == SHT_RELA)
4873 && shdrp->sh_offset == -1)
4874 off = _bfd_elf_assign_file_position_for_section (shdrp, off, TRUE);
4877 elf_tdata (abfd)->next_file_pos = off;
4881 _bfd_elf_write_object_contents (bfd *abfd)
4883 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
4884 Elf_Internal_Ehdr *i_ehdrp;
4885 Elf_Internal_Shdr **i_shdrp;
4887 unsigned int count, num_sec;
4889 if (! abfd->output_has_begun
4890 && ! _bfd_elf_compute_section_file_positions (abfd, NULL))
4893 i_shdrp = elf_elfsections (abfd);
4894 i_ehdrp = elf_elfheader (abfd);
4897 bfd_map_over_sections (abfd, bed->s->write_relocs, &failed);
4901 _bfd_elf_assign_file_positions_for_relocs (abfd);
4903 /* After writing the headers, we need to write the sections too... */
4904 num_sec = elf_numsections (abfd);
4905 for (count = 1; count < num_sec; count++)
4907 if (bed->elf_backend_section_processing)
4908 (*bed->elf_backend_section_processing) (abfd, i_shdrp[count]);
4909 if (i_shdrp[count]->contents)
4911 bfd_size_type amt = i_shdrp[count]->sh_size;
4913 if (bfd_seek (abfd, i_shdrp[count]->sh_offset, SEEK_SET) != 0
4914 || bfd_bwrite (i_shdrp[count]->contents, amt, abfd) != amt)
4917 if (count == SHN_LORESERVE - 1)
4918 count += SHN_HIRESERVE + 1 - SHN_LORESERVE;
4921 /* Write out the section header names. */
4922 if (elf_shstrtab (abfd) != NULL
4923 && (bfd_seek (abfd, elf_tdata (abfd)->shstrtab_hdr.sh_offset, SEEK_SET) != 0
4924 || !_bfd_elf_strtab_emit (abfd, elf_shstrtab (abfd))))
4927 if (bed->elf_backend_final_write_processing)
4928 (*bed->elf_backend_final_write_processing) (abfd,
4929 elf_tdata (abfd)->linker);
4931 if (!bed->s->write_shdrs_and_ehdr (abfd))
4934 /* This is last since write_shdrs_and_ehdr can touch i_shdrp[0]. */
4935 if (elf_tdata (abfd)->after_write_object_contents)
4936 return (*elf_tdata (abfd)->after_write_object_contents) (abfd);
4942 _bfd_elf_write_corefile_contents (bfd *abfd)
4944 /* Hopefully this can be done just like an object file. */
4945 return _bfd_elf_write_object_contents (abfd);
4948 /* Given a section, search the header to find them. */
4951 _bfd_elf_section_from_bfd_section (bfd *abfd, struct bfd_section *asect)
4953 const struct elf_backend_data *bed;
4956 if (elf_section_data (asect) != NULL
4957 && elf_section_data (asect)->this_idx != 0)
4958 return elf_section_data (asect)->this_idx;
4960 if (bfd_is_abs_section (asect))
4962 else if (bfd_is_com_section (asect))
4964 else if (bfd_is_und_section (asect))
4969 bed = get_elf_backend_data (abfd);
4970 if (bed->elf_backend_section_from_bfd_section)
4974 if ((*bed->elf_backend_section_from_bfd_section) (abfd, asect, &retval))
4979 bfd_set_error (bfd_error_nonrepresentable_section);
4984 /* Given a BFD symbol, return the index in the ELF symbol table, or -1
4988 _bfd_elf_symbol_from_bfd_symbol (bfd *abfd, asymbol **asym_ptr_ptr)
4990 asymbol *asym_ptr = *asym_ptr_ptr;
4992 flagword flags = asym_ptr->flags;
4994 /* When gas creates relocations against local labels, it creates its
4995 own symbol for the section, but does put the symbol into the
4996 symbol chain, so udata is 0. When the linker is generating
4997 relocatable output, this section symbol may be for one of the
4998 input sections rather than the output section. */
4999 if (asym_ptr->udata.i == 0
5000 && (flags & BSF_SECTION_SYM)
5001 && asym_ptr->section)
5006 sec = asym_ptr->section;
5007 if (sec->owner != abfd && sec->output_section != NULL)
5008 sec = sec->output_section;
5009 if (sec->owner == abfd
5010 && (indx = sec->index) < elf_num_section_syms (abfd)
5011 && elf_section_syms (abfd)[indx] != NULL)
5012 asym_ptr->udata.i = elf_section_syms (abfd)[indx]->udata.i;
5015 idx = asym_ptr->udata.i;
5019 /* This case can occur when using --strip-symbol on a symbol
5020 which is used in a relocation entry. */
5021 (*_bfd_error_handler)
5022 (_("%B: symbol `%s' required but not present"),
5023 abfd, bfd_asymbol_name (asym_ptr));
5024 bfd_set_error (bfd_error_no_symbols);
5031 "elf_symbol_from_bfd_symbol 0x%.8lx, name = %s, sym num = %d, flags = 0x%.8lx%s\n",
5032 (long) asym_ptr, asym_ptr->name, idx, flags,
5033 elf_symbol_flags (flags));
5041 /* Rewrite program header information. */
5044 rewrite_elf_program_header (bfd *ibfd, bfd *obfd)
5046 Elf_Internal_Ehdr *iehdr;
5047 struct elf_segment_map *map;
5048 struct elf_segment_map *map_first;
5049 struct elf_segment_map **pointer_to_map;
5050 Elf_Internal_Phdr *segment;
5053 unsigned int num_segments;
5054 bfd_boolean phdr_included = FALSE;
5055 bfd_vma maxpagesize;
5056 struct elf_segment_map *phdr_adjust_seg = NULL;
5057 unsigned int phdr_adjust_num = 0;
5058 const struct elf_backend_data *bed;
5060 bed = get_elf_backend_data (ibfd);
5061 iehdr = elf_elfheader (ibfd);
5064 pointer_to_map = &map_first;
5066 num_segments = elf_elfheader (ibfd)->e_phnum;
5067 maxpagesize = get_elf_backend_data (obfd)->maxpagesize;
5069 /* Returns the end address of the segment + 1. */
5070 #define SEGMENT_END(segment, start) \
5071 (start + (segment->p_memsz > segment->p_filesz \
5072 ? segment->p_memsz : segment->p_filesz))
5074 #define SECTION_SIZE(section, segment) \
5075 (((section->flags & (SEC_HAS_CONTENTS | SEC_THREAD_LOCAL)) \
5076 != SEC_THREAD_LOCAL || segment->p_type == PT_TLS) \
5077 ? section->size : 0)
5079 /* Returns TRUE if the given section is contained within
5080 the given segment. VMA addresses are compared. */
5081 #define IS_CONTAINED_BY_VMA(section, segment) \
5082 (section->vma >= segment->p_vaddr \
5083 && (section->vma + SECTION_SIZE (section, segment) \
5084 <= (SEGMENT_END (segment, segment->p_vaddr))))
5086 /* Returns TRUE if the given section is contained within
5087 the given segment. LMA addresses are compared. */
5088 #define IS_CONTAINED_BY_LMA(section, segment, base) \
5089 (section->lma >= base \
5090 && (section->lma + SECTION_SIZE (section, segment) \
5091 <= SEGMENT_END (segment, base)))
5093 /* Special case: corefile "NOTE" section containing regs, prpsinfo etc. */
5094 #define IS_COREFILE_NOTE(p, s) \
5095 (p->p_type == PT_NOTE \
5096 && bfd_get_format (ibfd) == bfd_core \
5097 && s->vma == 0 && s->lma == 0 \
5098 && (bfd_vma) s->filepos >= p->p_offset \
5099 && ((bfd_vma) s->filepos + s->size \
5100 <= p->p_offset + p->p_filesz))
5102 /* The complicated case when p_vaddr is 0 is to handle the Solaris
5103 linker, which generates a PT_INTERP section with p_vaddr and
5104 p_memsz set to 0. */
5105 #define IS_SOLARIS_PT_INTERP(p, s) \
5107 && p->p_paddr == 0 \
5108 && p->p_memsz == 0 \
5109 && p->p_filesz > 0 \
5110 && (s->flags & SEC_HAS_CONTENTS) != 0 \
5112 && (bfd_vma) s->filepos >= p->p_offset \
5113 && ((bfd_vma) s->filepos + s->size \
5114 <= p->p_offset + p->p_filesz))
5116 /* Decide if the given section should be included in the given segment.
5117 A section will be included if:
5118 1. It is within the address space of the segment -- we use the LMA
5119 if that is set for the segment and the VMA otherwise,
5120 2. It is an allocated segment,
5121 3. There is an output section associated with it,
5122 4. The section has not already been allocated to a previous segment.
5123 5. PT_GNU_STACK segments do not include any sections.
5124 6. PT_TLS segment includes only SHF_TLS sections.
5125 7. SHF_TLS sections are only in PT_TLS or PT_LOAD segments.
5126 8. PT_DYNAMIC should not contain empty sections at the beginning
5127 (with the possible exception of .dynamic). */
5128 #define IS_SECTION_IN_INPUT_SEGMENT(section, segment, bed) \
5129 ((((segment->p_paddr \
5130 ? IS_CONTAINED_BY_LMA (section, segment, segment->p_paddr) \
5131 : IS_CONTAINED_BY_VMA (section, segment)) \
5132 && (section->flags & SEC_ALLOC) != 0) \
5133 || IS_COREFILE_NOTE (segment, section)) \
5134 && segment->p_type != PT_GNU_STACK \
5135 && (segment->p_type != PT_TLS \
5136 || (section->flags & SEC_THREAD_LOCAL)) \
5137 && (segment->p_type == PT_LOAD \
5138 || segment->p_type == PT_TLS \
5139 || (section->flags & SEC_THREAD_LOCAL) == 0) \
5140 && (segment->p_type != PT_DYNAMIC \
5141 || SECTION_SIZE (section, segment) > 0 \
5142 || (segment->p_paddr \
5143 ? segment->p_paddr != section->lma \
5144 : segment->p_vaddr != section->vma) \
5145 || (strcmp (bfd_get_section_name (ibfd, section), ".dynamic") \
5147 && !section->segment_mark)
5149 /* If the output section of a section in the input segment is NULL,
5150 it is removed from the corresponding output segment. */
5151 #define INCLUDE_SECTION_IN_SEGMENT(section, segment, bed) \
5152 (IS_SECTION_IN_INPUT_SEGMENT (section, segment, bed) \
5153 && section->output_section != NULL)
5155 /* Returns TRUE iff seg1 starts after the end of seg2. */
5156 #define SEGMENT_AFTER_SEGMENT(seg1, seg2, field) \
5157 (seg1->field >= SEGMENT_END (seg2, seg2->field))
5159 /* Returns TRUE iff seg1 and seg2 overlap. Segments overlap iff both
5160 their VMA address ranges and their LMA address ranges overlap.
5161 It is possible to have overlapping VMA ranges without overlapping LMA
5162 ranges. RedBoot images for example can have both .data and .bss mapped
5163 to the same VMA range, but with the .data section mapped to a different
5165 #define SEGMENT_OVERLAPS(seg1, seg2) \
5166 ( !(SEGMENT_AFTER_SEGMENT (seg1, seg2, p_vaddr) \
5167 || SEGMENT_AFTER_SEGMENT (seg2, seg1, p_vaddr)) \
5168 && !(SEGMENT_AFTER_SEGMENT (seg1, seg2, p_paddr) \
5169 || SEGMENT_AFTER_SEGMENT (seg2, seg1, p_paddr)))
5171 /* Initialise the segment mark field. */
5172 for (section = ibfd->sections; section != NULL; section = section->next)
5173 section->segment_mark = FALSE;
5175 /* Scan through the segments specified in the program header
5176 of the input BFD. For this first scan we look for overlaps
5177 in the loadable segments. These can be created by weird
5178 parameters to objcopy. Also, fix some solaris weirdness. */
5179 for (i = 0, segment = elf_tdata (ibfd)->phdr;
5184 Elf_Internal_Phdr *segment2;
5186 if (segment->p_type == PT_INTERP)
5187 for (section = ibfd->sections; section; section = section->next)
5188 if (IS_SOLARIS_PT_INTERP (segment, section))
5190 /* Mininal change so that the normal section to segment
5191 assignment code will work. */
5192 segment->p_vaddr = section->vma;
5196 if (segment->p_type != PT_LOAD)
5198 /* Remove PT_GNU_RELRO segment. */
5199 if (segment->p_type == PT_GNU_RELRO)
5200 segment->p_type = PT_NULL;
5204 /* Determine if this segment overlaps any previous segments. */
5205 for (j = 0, segment2 = elf_tdata (ibfd)->phdr; j < i; j++, segment2++)
5207 bfd_signed_vma extra_length;
5209 if (segment2->p_type != PT_LOAD
5210 || !SEGMENT_OVERLAPS (segment, segment2))
5213 /* Merge the two segments together. */
5214 if (segment2->p_vaddr < segment->p_vaddr)
5216 /* Extend SEGMENT2 to include SEGMENT and then delete
5218 extra_length = (SEGMENT_END (segment, segment->p_vaddr)
5219 - SEGMENT_END (segment2, segment2->p_vaddr));
5221 if (extra_length > 0)
5223 segment2->p_memsz += extra_length;
5224 segment2->p_filesz += extra_length;
5227 segment->p_type = PT_NULL;
5229 /* Since we have deleted P we must restart the outer loop. */
5231 segment = elf_tdata (ibfd)->phdr;
5236 /* Extend SEGMENT to include SEGMENT2 and then delete
5238 extra_length = (SEGMENT_END (segment2, segment2->p_vaddr)
5239 - SEGMENT_END (segment, segment->p_vaddr));
5241 if (extra_length > 0)
5243 segment->p_memsz += extra_length;
5244 segment->p_filesz += extra_length;
5247 segment2->p_type = PT_NULL;
5252 /* The second scan attempts to assign sections to segments. */
5253 for (i = 0, segment = elf_tdata (ibfd)->phdr;
5257 unsigned int section_count;
5258 asection **sections;
5259 asection *output_section;
5261 bfd_vma matching_lma;
5262 bfd_vma suggested_lma;
5265 asection *first_section;
5266 bfd_boolean first_matching_lma;
5267 bfd_boolean first_suggested_lma;
5269 if (segment->p_type == PT_NULL)
5272 first_section = NULL;
5273 /* Compute how many sections might be placed into this segment. */
5274 for (section = ibfd->sections, section_count = 0;
5276 section = section->next)
5278 /* Find the first section in the input segment, which may be
5279 removed from the corresponding output segment. */
5280 if (IS_SECTION_IN_INPUT_SEGMENT (section, segment, bed))
5282 if (first_section == NULL)
5283 first_section = section;
5284 if (section->output_section != NULL)
5289 /* Allocate a segment map big enough to contain
5290 all of the sections we have selected. */
5291 amt = sizeof (struct elf_segment_map);
5292 amt += ((bfd_size_type) section_count - 1) * sizeof (asection *);
5293 map = bfd_zalloc (obfd, amt);
5297 /* Initialise the fields of the segment map. Default to
5298 using the physical address of the segment in the input BFD. */
5300 map->p_type = segment->p_type;
5301 map->p_flags = segment->p_flags;
5302 map->p_flags_valid = 1;
5304 /* If the first section in the input segment is removed, there is
5305 no need to preserve segment physical address in the corresponding
5307 if (!first_section || first_section->output_section != NULL)
5309 map->p_paddr = segment->p_paddr;
5310 map->p_paddr_valid = 1;
5313 /* Determine if this segment contains the ELF file header
5314 and if it contains the program headers themselves. */
5315 map->includes_filehdr = (segment->p_offset == 0
5316 && segment->p_filesz >= iehdr->e_ehsize);
5317 map->includes_phdrs = 0;
5319 if (!phdr_included || segment->p_type != PT_LOAD)
5321 map->includes_phdrs =
5322 (segment->p_offset <= (bfd_vma) iehdr->e_phoff
5323 && (segment->p_offset + segment->p_filesz
5324 >= ((bfd_vma) iehdr->e_phoff
5325 + iehdr->e_phnum * iehdr->e_phentsize)));
5327 if (segment->p_type == PT_LOAD && map->includes_phdrs)
5328 phdr_included = TRUE;
5331 if (section_count == 0)
5333 /* Special segments, such as the PT_PHDR segment, may contain
5334 no sections, but ordinary, loadable segments should contain
5335 something. They are allowed by the ELF spec however, so only
5336 a warning is produced. */
5337 if (segment->p_type == PT_LOAD)
5338 (*_bfd_error_handler) (_("%B: warning: Empty loadable segment"
5339 " detected, is this intentional ?\n"),
5343 *pointer_to_map = map;
5344 pointer_to_map = &map->next;
5349 /* Now scan the sections in the input BFD again and attempt
5350 to add their corresponding output sections to the segment map.
5351 The problem here is how to handle an output section which has
5352 been moved (ie had its LMA changed). There are four possibilities:
5354 1. None of the sections have been moved.
5355 In this case we can continue to use the segment LMA from the
5358 2. All of the sections have been moved by the same amount.
5359 In this case we can change the segment's LMA to match the LMA
5360 of the first section.
5362 3. Some of the sections have been moved, others have not.
5363 In this case those sections which have not been moved can be
5364 placed in the current segment which will have to have its size,
5365 and possibly its LMA changed, and a new segment or segments will
5366 have to be created to contain the other sections.
5368 4. The sections have been moved, but not by the same amount.
5369 In this case we can change the segment's LMA to match the LMA
5370 of the first section and we will have to create a new segment
5371 or segments to contain the other sections.
5373 In order to save time, we allocate an array to hold the section
5374 pointers that we are interested in. As these sections get assigned
5375 to a segment, they are removed from this array. */
5377 /* Gcc 2.96 miscompiles this code on mips. Don't do casting here
5378 to work around this long long bug. */
5379 sections = bfd_malloc2 (section_count, sizeof (asection *));
5380 if (sections == NULL)
5383 /* Step One: Scan for segment vs section LMA conflicts.
5384 Also add the sections to the section array allocated above.
5385 Also add the sections to the current segment. In the common
5386 case, where the sections have not been moved, this means that
5387 we have completely filled the segment, and there is nothing
5392 first_matching_lma = TRUE;
5393 first_suggested_lma = TRUE;
5395 for (j = 0, section = ibfd->sections;
5397 section = section->next)
5399 if (INCLUDE_SECTION_IN_SEGMENT (section, segment, bed))
5401 output_section = section->output_section;
5403 sections[j++] = section;
5405 /* The Solaris native linker always sets p_paddr to 0.
5406 We try to catch that case here, and set it to the
5407 correct value. Note - some backends require that
5408 p_paddr be left as zero. */
5409 if (segment->p_paddr == 0
5410 && segment->p_vaddr != 0
5411 && !bed->want_p_paddr_set_to_zero
5413 && output_section->lma != 0
5414 && output_section->vma == (segment->p_vaddr
5415 + (map->includes_filehdr
5418 + (map->includes_phdrs
5420 * iehdr->e_phentsize)
5422 map->p_paddr = segment->p_vaddr;
5424 /* Match up the physical address of the segment with the
5425 LMA address of the output section. */
5426 if (IS_CONTAINED_BY_LMA (output_section, segment, map->p_paddr)
5427 || IS_COREFILE_NOTE (segment, section)
5428 || (bed->want_p_paddr_set_to_zero
5429 && IS_CONTAINED_BY_VMA (output_section, segment)))
5431 if (first_matching_lma || output_section->lma < matching_lma)
5433 matching_lma = output_section->lma;
5434 first_matching_lma = FALSE;
5437 /* We assume that if the section fits within the segment
5438 then it does not overlap any other section within that
5440 map->sections[isec++] = output_section;
5442 else if (first_suggested_lma)
5444 suggested_lma = output_section->lma;
5445 first_suggested_lma = FALSE;
5450 BFD_ASSERT (j == section_count);
5452 /* Step Two: Adjust the physical address of the current segment,
5454 if (isec == section_count)
5456 /* All of the sections fitted within the segment as currently
5457 specified. This is the default case. Add the segment to
5458 the list of built segments and carry on to process the next
5459 program header in the input BFD. */
5460 map->count = section_count;
5461 *pointer_to_map = map;
5462 pointer_to_map = &map->next;
5464 if (matching_lma != map->p_paddr
5465 && !map->includes_filehdr && !map->includes_phdrs)
5466 /* There is some padding before the first section in the
5467 segment. So, we must account for that in the output
5469 map->p_vaddr_offset = matching_lma - map->p_paddr;
5476 if (!first_matching_lma)
5478 /* At least one section fits inside the current segment.
5479 Keep it, but modify its physical address to match the
5480 LMA of the first section that fitted. */
5481 map->p_paddr = matching_lma;
5485 /* None of the sections fitted inside the current segment.
5486 Change the current segment's physical address to match
5487 the LMA of the first section. */
5488 map->p_paddr = suggested_lma;
5491 /* Offset the segment physical address from the lma
5492 to allow for space taken up by elf headers. */
5493 if (map->includes_filehdr)
5494 map->p_paddr -= iehdr->e_ehsize;
5496 if (map->includes_phdrs)
5498 map->p_paddr -= iehdr->e_phnum * iehdr->e_phentsize;
5500 /* iehdr->e_phnum is just an estimate of the number
5501 of program headers that we will need. Make a note
5502 here of the number we used and the segment we chose
5503 to hold these headers, so that we can adjust the
5504 offset when we know the correct value. */
5505 phdr_adjust_num = iehdr->e_phnum;
5506 phdr_adjust_seg = map;
5510 /* Step Three: Loop over the sections again, this time assigning
5511 those that fit to the current segment and removing them from the
5512 sections array; but making sure not to leave large gaps. Once all
5513 possible sections have been assigned to the current segment it is
5514 added to the list of built segments and if sections still remain
5515 to be assigned, a new segment is constructed before repeating
5522 first_suggested_lma = TRUE;
5524 /* Fill the current segment with sections that fit. */
5525 for (j = 0; j < section_count; j++)
5527 section = sections[j];
5529 if (section == NULL)
5532 output_section = section->output_section;
5534 BFD_ASSERT (output_section != NULL);
5536 if (IS_CONTAINED_BY_LMA (output_section, segment, map->p_paddr)
5537 || IS_COREFILE_NOTE (segment, section))
5539 if (map->count == 0)
5541 /* If the first section in a segment does not start at
5542 the beginning of the segment, then something is
5544 if (output_section->lma
5546 + (map->includes_filehdr ? iehdr->e_ehsize : 0)
5547 + (map->includes_phdrs
5548 ? iehdr->e_phnum * iehdr->e_phentsize
5556 prev_sec = map->sections[map->count - 1];
5558 /* If the gap between the end of the previous section
5559 and the start of this section is more than
5560 maxpagesize then we need to start a new segment. */
5561 if ((BFD_ALIGN (prev_sec->lma + prev_sec->size,
5563 < BFD_ALIGN (output_section->lma, maxpagesize))
5564 || (prev_sec->lma + prev_sec->size
5565 > output_section->lma))
5567 if (first_suggested_lma)
5569 suggested_lma = output_section->lma;
5570 first_suggested_lma = FALSE;
5577 map->sections[map->count++] = output_section;
5580 section->segment_mark = TRUE;
5582 else if (first_suggested_lma)
5584 suggested_lma = output_section->lma;
5585 first_suggested_lma = FALSE;
5589 BFD_ASSERT (map->count > 0);
5591 /* Add the current segment to the list of built segments. */
5592 *pointer_to_map = map;
5593 pointer_to_map = &map->next;
5595 if (isec < section_count)
5597 /* We still have not allocated all of the sections to
5598 segments. Create a new segment here, initialise it
5599 and carry on looping. */
5600 amt = sizeof (struct elf_segment_map);
5601 amt += ((bfd_size_type) section_count - 1) * sizeof (asection *);
5602 map = bfd_alloc (obfd, amt);
5609 /* Initialise the fields of the segment map. Set the physical
5610 physical address to the LMA of the first section that has
5611 not yet been assigned. */
5613 map->p_type = segment->p_type;
5614 map->p_flags = segment->p_flags;
5615 map->p_flags_valid = 1;
5616 map->p_paddr = suggested_lma;
5617 map->p_paddr_valid = 1;
5618 map->includes_filehdr = 0;
5619 map->includes_phdrs = 0;
5622 while (isec < section_count);
5627 /* The Solaris linker creates program headers in which all the
5628 p_paddr fields are zero. When we try to objcopy or strip such a
5629 file, we get confused. Check for this case, and if we find it
5630 reset the p_paddr_valid fields. */
5631 for (map = map_first; map != NULL; map = map->next)
5632 if (map->p_paddr != 0)
5635 for (map = map_first; map != NULL; map = map->next)
5636 map->p_paddr_valid = 0;
5638 elf_tdata (obfd)->segment_map = map_first;
5640 /* If we had to estimate the number of program headers that were
5641 going to be needed, then check our estimate now and adjust
5642 the offset if necessary. */
5643 if (phdr_adjust_seg != NULL)
5647 for (count = 0, map = map_first; map != NULL; map = map->next)
5650 if (count > phdr_adjust_num)
5651 phdr_adjust_seg->p_paddr
5652 -= (count - phdr_adjust_num) * iehdr->e_phentsize;
5657 #undef IS_CONTAINED_BY_VMA
5658 #undef IS_CONTAINED_BY_LMA
5659 #undef IS_COREFILE_NOTE
5660 #undef IS_SOLARIS_PT_INTERP
5661 #undef IS_SECTION_IN_INPUT_SEGMENT
5662 #undef INCLUDE_SECTION_IN_SEGMENT
5663 #undef SEGMENT_AFTER_SEGMENT
5664 #undef SEGMENT_OVERLAPS
5668 /* Copy ELF program header information. */
5671 copy_elf_program_header (bfd *ibfd, bfd *obfd)
5673 Elf_Internal_Ehdr *iehdr;
5674 struct elf_segment_map *map;
5675 struct elf_segment_map *map_first;
5676 struct elf_segment_map **pointer_to_map;
5677 Elf_Internal_Phdr *segment;
5679 unsigned int num_segments;
5680 bfd_boolean phdr_included = FALSE;
5682 iehdr = elf_elfheader (ibfd);
5685 pointer_to_map = &map_first;
5687 num_segments = elf_elfheader (ibfd)->e_phnum;
5688 for (i = 0, segment = elf_tdata (ibfd)->phdr;
5693 unsigned int section_count;
5695 Elf_Internal_Shdr *this_hdr;
5696 asection *first_section = NULL;
5697 asection *lowest_section = NULL;
5699 /* Compute how many sections are in this segment. */
5700 for (section = ibfd->sections, section_count = 0;
5702 section = section->next)
5704 this_hdr = &(elf_section_data(section)->this_hdr);
5705 if (ELF_IS_SECTION_IN_SEGMENT_FILE (this_hdr, segment))
5708 first_section = lowest_section = section;
5709 if (section->lma < lowest_section->lma)
5710 lowest_section = section;
5715 /* Allocate a segment map big enough to contain
5716 all of the sections we have selected. */
5717 amt = sizeof (struct elf_segment_map);
5718 if (section_count != 0)
5719 amt += ((bfd_size_type) section_count - 1) * sizeof (asection *);
5720 map = bfd_zalloc (obfd, amt);
5724 /* Initialize the fields of the output segment map with the
5727 map->p_type = segment->p_type;
5728 map->p_flags = segment->p_flags;
5729 map->p_flags_valid = 1;
5730 map->p_paddr = segment->p_paddr;
5731 map->p_paddr_valid = 1;
5732 map->p_align = segment->p_align;
5733 map->p_align_valid = 1;
5734 map->p_vaddr_offset = 0;
5736 if (map->p_type == PT_GNU_RELRO
5737 && segment->p_filesz == segment->p_memsz)
5739 /* The PT_GNU_RELRO segment may contain the first a few
5740 bytes in the .got.plt section even if the whole .got.plt
5741 section isn't in the PT_GNU_RELRO segment. We won't
5742 change the size of the PT_GNU_RELRO segment. */
5743 map->p_size = segment->p_filesz;
5744 map->p_size_valid = 1;
5747 /* Determine if this segment contains the ELF file header
5748 and if it contains the program headers themselves. */
5749 map->includes_filehdr = (segment->p_offset == 0
5750 && segment->p_filesz >= iehdr->e_ehsize);
5752 map->includes_phdrs = 0;
5753 if (! phdr_included || segment->p_type != PT_LOAD)
5755 map->includes_phdrs =
5756 (segment->p_offset <= (bfd_vma) iehdr->e_phoff
5757 && (segment->p_offset + segment->p_filesz
5758 >= ((bfd_vma) iehdr->e_phoff
5759 + iehdr->e_phnum * iehdr->e_phentsize)));
5761 if (segment->p_type == PT_LOAD && map->includes_phdrs)
5762 phdr_included = TRUE;
5765 if (!map->includes_phdrs && !map->includes_filehdr)
5766 /* There is some other padding before the first section. */
5767 map->p_vaddr_offset = ((lowest_section ? lowest_section->lma : 0)
5768 - segment->p_paddr);
5770 if (section_count != 0)
5772 unsigned int isec = 0;
5774 for (section = first_section;
5776 section = section->next)
5778 this_hdr = &(elf_section_data(section)->this_hdr);
5779 if (ELF_IS_SECTION_IN_SEGMENT_FILE (this_hdr, segment))
5781 map->sections[isec++] = section->output_section;
5782 if (isec == section_count)
5788 map->count = section_count;
5789 *pointer_to_map = map;
5790 pointer_to_map = &map->next;
5793 elf_tdata (obfd)->segment_map = map_first;
5797 /* Copy private BFD data. This copies or rewrites ELF program header
5801 copy_private_bfd_data (bfd *ibfd, bfd *obfd)
5803 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
5804 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
5807 if (elf_tdata (ibfd)->phdr == NULL)
5810 if (ibfd->xvec == obfd->xvec)
5812 /* Check to see if any sections in the input BFD
5813 covered by ELF program header have changed. */
5814 Elf_Internal_Phdr *segment;
5815 asection *section, *osec;
5816 unsigned int i, num_segments;
5817 Elf_Internal_Shdr *this_hdr;
5819 /* Initialize the segment mark field. */
5820 for (section = obfd->sections; section != NULL;
5821 section = section->next)
5822 section->segment_mark = FALSE;
5824 num_segments = elf_elfheader (ibfd)->e_phnum;
5825 for (i = 0, segment = elf_tdata (ibfd)->phdr;
5829 /* PR binutils/3535. The Solaris linker always sets the p_paddr
5830 and p_memsz fields of special segments (DYNAMIC, INTERP) to 0
5831 which severly confuses things, so always regenerate the segment
5832 map in this case. */
5833 if (segment->p_paddr == 0
5834 && segment->p_memsz == 0
5835 && (segment->p_type == PT_INTERP || segment->p_type == PT_DYNAMIC))
5838 for (section = ibfd->sections;
5839 section != NULL; section = section->next)
5841 /* We mark the output section so that we know it comes
5842 from the input BFD. */
5843 osec = section->output_section;
5845 osec->segment_mark = TRUE;
5847 /* Check if this section is covered by the segment. */
5848 this_hdr = &(elf_section_data(section)->this_hdr);
5849 if (ELF_IS_SECTION_IN_SEGMENT_FILE (this_hdr, segment))
5851 /* FIXME: Check if its output section is changed or
5852 removed. What else do we need to check? */
5854 || section->flags != osec->flags
5855 || section->lma != osec->lma
5856 || section->vma != osec->vma
5857 || section->size != osec->size
5858 || section->rawsize != osec->rawsize
5859 || section->alignment_power != osec->alignment_power)
5865 /* Check to see if any output section do not come from the
5867 for (section = obfd->sections; section != NULL;
5868 section = section->next)
5870 if (section->segment_mark == FALSE)
5873 section->segment_mark = FALSE;
5876 return copy_elf_program_header (ibfd, obfd);
5880 return rewrite_elf_program_header (ibfd, obfd);
5883 /* Initialize private output section information from input section. */
5886 _bfd_elf_init_private_section_data (bfd *ibfd,
5890 struct bfd_link_info *link_info)
5893 Elf_Internal_Shdr *ihdr, *ohdr;
5894 bfd_boolean need_group = link_info == NULL || link_info->relocatable;
5896 if (ibfd->xvec->flavour != bfd_target_elf_flavour
5897 || obfd->xvec->flavour != bfd_target_elf_flavour)
5900 /* Don't copy the output ELF section type from input if the
5901 output BFD section flags have been set to something different.
5902 elf_fake_sections will set ELF section type based on BFD
5904 if (elf_section_type (osec) == SHT_NULL
5905 && (osec->flags == isec->flags || !osec->flags))
5906 elf_section_type (osec) = elf_section_type (isec);
5908 /* FIXME: Is this correct for all OS/PROC specific flags? */
5909 elf_section_flags (osec) |= (elf_section_flags (isec)
5910 & (SHF_MASKOS | SHF_MASKPROC));
5912 /* Set things up for objcopy and relocatable link. The output
5913 SHT_GROUP section will have its elf_next_in_group pointing back
5914 to the input group members. Ignore linker created group section.
5915 See elfNN_ia64_object_p in elfxx-ia64.c. */
5918 if (elf_sec_group (isec) == NULL
5919 || (elf_sec_group (isec)->flags & SEC_LINKER_CREATED) == 0)
5921 if (elf_section_flags (isec) & SHF_GROUP)
5922 elf_section_flags (osec) |= SHF_GROUP;
5923 elf_next_in_group (osec) = elf_next_in_group (isec);
5924 elf_group_name (osec) = elf_group_name (isec);
5928 ihdr = &elf_section_data (isec)->this_hdr;
5930 /* We need to handle elf_linked_to_section for SHF_LINK_ORDER. We
5931 don't use the output section of the linked-to section since it
5932 may be NULL at this point. */
5933 if ((ihdr->sh_flags & SHF_LINK_ORDER) != 0)
5935 ohdr = &elf_section_data (osec)->this_hdr;
5936 ohdr->sh_flags |= SHF_LINK_ORDER;
5937 elf_linked_to_section (osec) = elf_linked_to_section (isec);
5940 osec->use_rela_p = isec->use_rela_p;
5945 /* Copy private section information. This copies over the entsize
5946 field, and sometimes the info field. */
5949 _bfd_elf_copy_private_section_data (bfd *ibfd,
5954 Elf_Internal_Shdr *ihdr, *ohdr;
5956 if (ibfd->xvec->flavour != bfd_target_elf_flavour
5957 || obfd->xvec->flavour != bfd_target_elf_flavour)
5960 ihdr = &elf_section_data (isec)->this_hdr;
5961 ohdr = &elf_section_data (osec)->this_hdr;
5963 ohdr->sh_entsize = ihdr->sh_entsize;
5965 if (ihdr->sh_type == SHT_SYMTAB
5966 || ihdr->sh_type == SHT_DYNSYM
5967 || ihdr->sh_type == SHT_GNU_verneed
5968 || ihdr->sh_type == SHT_GNU_verdef)
5969 ohdr->sh_info = ihdr->sh_info;
5971 return _bfd_elf_init_private_section_data (ibfd, isec, obfd, osec,
5975 /* Copy private header information. */
5978 _bfd_elf_copy_private_header_data (bfd *ibfd, bfd *obfd)
5982 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
5983 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
5986 /* Copy over private BFD data if it has not already been copied.
5987 This must be done here, rather than in the copy_private_bfd_data
5988 entry point, because the latter is called after the section
5989 contents have been set, which means that the program headers have
5990 already been worked out. */
5991 if (elf_tdata (obfd)->segment_map == NULL && elf_tdata (ibfd)->phdr != NULL)
5993 if (! copy_private_bfd_data (ibfd, obfd))
5997 /* _bfd_elf_copy_private_section_data copied over the SHF_GROUP flag
5998 but this might be wrong if we deleted the group section. */
5999 for (isec = ibfd->sections; isec != NULL; isec = isec->next)
6000 if (elf_section_type (isec) == SHT_GROUP
6001 && isec->output_section == NULL)
6003 asection *first = elf_next_in_group (isec);
6004 asection *s = first;
6007 if (s->output_section != NULL)
6009 elf_section_flags (s->output_section) &= ~SHF_GROUP;
6010 elf_group_name (s->output_section) = NULL;
6012 s = elf_next_in_group (s);
6021 /* Copy private symbol information. If this symbol is in a section
6022 which we did not map into a BFD section, try to map the section
6023 index correctly. We use special macro definitions for the mapped
6024 section indices; these definitions are interpreted by the
6025 swap_out_syms function. */
6027 #define MAP_ONESYMTAB (SHN_HIOS + 1)
6028 #define MAP_DYNSYMTAB (SHN_HIOS + 2)
6029 #define MAP_STRTAB (SHN_HIOS + 3)
6030 #define MAP_SHSTRTAB (SHN_HIOS + 4)
6031 #define MAP_SYM_SHNDX (SHN_HIOS + 5)
6034 _bfd_elf_copy_private_symbol_data (bfd *ibfd,
6039 elf_symbol_type *isym, *osym;
6041 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
6042 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
6045 isym = elf_symbol_from (ibfd, isymarg);
6046 osym = elf_symbol_from (obfd, osymarg);
6049 && isym->internal_elf_sym.st_shndx != 0
6051 && bfd_is_abs_section (isym->symbol.section))
6055 shndx = isym->internal_elf_sym.st_shndx;
6056 if (shndx == elf_onesymtab (ibfd))
6057 shndx = MAP_ONESYMTAB;
6058 else if (shndx == elf_dynsymtab (ibfd))
6059 shndx = MAP_DYNSYMTAB;
6060 else if (shndx == elf_tdata (ibfd)->strtab_section)
6062 else if (shndx == elf_tdata (ibfd)->shstrtab_section)
6063 shndx = MAP_SHSTRTAB;
6064 else if (shndx == elf_tdata (ibfd)->symtab_shndx_section)
6065 shndx = MAP_SYM_SHNDX;
6066 osym->internal_elf_sym.st_shndx = shndx;
6072 /* Swap out the symbols. */
6075 swap_out_syms (bfd *abfd,
6076 struct bfd_strtab_hash **sttp,
6079 const struct elf_backend_data *bed;
6082 struct bfd_strtab_hash *stt;
6083 Elf_Internal_Shdr *symtab_hdr;
6084 Elf_Internal_Shdr *symtab_shndx_hdr;
6085 Elf_Internal_Shdr *symstrtab_hdr;
6086 bfd_byte *outbound_syms;
6087 bfd_byte *outbound_shndx;
6090 bfd_boolean name_local_sections;
6092 if (!elf_map_symbols (abfd))
6095 /* Dump out the symtabs. */
6096 stt = _bfd_elf_stringtab_init ();
6100 bed = get_elf_backend_data (abfd);
6101 symcount = bfd_get_symcount (abfd);
6102 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
6103 symtab_hdr->sh_type = SHT_SYMTAB;
6104 symtab_hdr->sh_entsize = bed->s->sizeof_sym;
6105 symtab_hdr->sh_size = symtab_hdr->sh_entsize * (symcount + 1);
6106 symtab_hdr->sh_info = elf_num_locals (abfd) + 1;
6107 symtab_hdr->sh_addralign = 1 << bed->s->log_file_align;
6109 symstrtab_hdr = &elf_tdata (abfd)->strtab_hdr;
6110 symstrtab_hdr->sh_type = SHT_STRTAB;
6112 outbound_syms = bfd_alloc2 (abfd, 1 + symcount, bed->s->sizeof_sym);
6113 if (outbound_syms == NULL)
6115 _bfd_stringtab_free (stt);
6118 symtab_hdr->contents = outbound_syms;
6120 outbound_shndx = NULL;
6121 symtab_shndx_hdr = &elf_tdata (abfd)->symtab_shndx_hdr;
6122 if (symtab_shndx_hdr->sh_name != 0)
6124 amt = (bfd_size_type) (1 + symcount) * sizeof (Elf_External_Sym_Shndx);
6125 outbound_shndx = bfd_zalloc2 (abfd, 1 + symcount,
6126 sizeof (Elf_External_Sym_Shndx));
6127 if (outbound_shndx == NULL)
6129 _bfd_stringtab_free (stt);
6133 symtab_shndx_hdr->contents = outbound_shndx;
6134 symtab_shndx_hdr->sh_type = SHT_SYMTAB_SHNDX;
6135 symtab_shndx_hdr->sh_size = amt;
6136 symtab_shndx_hdr->sh_addralign = sizeof (Elf_External_Sym_Shndx);
6137 symtab_shndx_hdr->sh_entsize = sizeof (Elf_External_Sym_Shndx);
6140 /* Now generate the data (for "contents"). */
6142 /* Fill in zeroth symbol and swap it out. */
6143 Elf_Internal_Sym sym;
6149 sym.st_shndx = SHN_UNDEF;
6150 bed->s->swap_symbol_out (abfd, &sym, outbound_syms, outbound_shndx);
6151 outbound_syms += bed->s->sizeof_sym;
6152 if (outbound_shndx != NULL)
6153 outbound_shndx += sizeof (Elf_External_Sym_Shndx);
6157 = (bed->elf_backend_name_local_section_symbols
6158 && bed->elf_backend_name_local_section_symbols (abfd));
6160 syms = bfd_get_outsymbols (abfd);
6161 for (idx = 0; idx < symcount; idx++)
6163 Elf_Internal_Sym sym;
6164 bfd_vma value = syms[idx]->value;
6165 elf_symbol_type *type_ptr;
6166 flagword flags = syms[idx]->flags;
6169 if (!name_local_sections
6170 && (flags & (BSF_SECTION_SYM | BSF_GLOBAL)) == BSF_SECTION_SYM)
6172 /* Local section symbols have no name. */
6177 sym.st_name = (unsigned long) _bfd_stringtab_add (stt,
6180 if (sym.st_name == (unsigned long) -1)
6182 _bfd_stringtab_free (stt);
6187 type_ptr = elf_symbol_from (abfd, syms[idx]);
6189 if ((flags & BSF_SECTION_SYM) == 0
6190 && bfd_is_com_section (syms[idx]->section))
6192 /* ELF common symbols put the alignment into the `value' field,
6193 and the size into the `size' field. This is backwards from
6194 how BFD handles it, so reverse it here. */
6195 sym.st_size = value;
6196 if (type_ptr == NULL
6197 || type_ptr->internal_elf_sym.st_value == 0)
6198 sym.st_value = value >= 16 ? 16 : (1 << bfd_log2 (value));
6200 sym.st_value = type_ptr->internal_elf_sym.st_value;
6201 sym.st_shndx = _bfd_elf_section_from_bfd_section
6202 (abfd, syms[idx]->section);
6206 asection *sec = syms[idx]->section;
6209 if (sec->output_section)
6211 value += sec->output_offset;
6212 sec = sec->output_section;
6215 /* Don't add in the section vma for relocatable output. */
6216 if (! relocatable_p)
6218 sym.st_value = value;
6219 sym.st_size = type_ptr ? type_ptr->internal_elf_sym.st_size : 0;
6221 if (bfd_is_abs_section (sec)
6223 && type_ptr->internal_elf_sym.st_shndx != 0)
6225 /* This symbol is in a real ELF section which we did
6226 not create as a BFD section. Undo the mapping done
6227 by copy_private_symbol_data. */
6228 shndx = type_ptr->internal_elf_sym.st_shndx;
6232 shndx = elf_onesymtab (abfd);
6235 shndx = elf_dynsymtab (abfd);
6238 shndx = elf_tdata (abfd)->strtab_section;
6241 shndx = elf_tdata (abfd)->shstrtab_section;
6244 shndx = elf_tdata (abfd)->symtab_shndx_section;
6252 shndx = _bfd_elf_section_from_bfd_section (abfd, sec);
6258 /* Writing this would be a hell of a lot easier if
6259 we had some decent documentation on bfd, and
6260 knew what to expect of the library, and what to
6261 demand of applications. For example, it
6262 appears that `objcopy' might not set the
6263 section of a symbol to be a section that is
6264 actually in the output file. */
6265 sec2 = bfd_get_section_by_name (abfd, sec->name);
6268 _bfd_error_handler (_("\
6269 Unable to find equivalent output section for symbol '%s' from section '%s'"),
6270 syms[idx]->name ? syms[idx]->name : "<Local sym>",
6272 bfd_set_error (bfd_error_invalid_operation);
6273 _bfd_stringtab_free (stt);
6277 shndx = _bfd_elf_section_from_bfd_section (abfd, sec2);
6278 BFD_ASSERT (shndx != -1);
6282 sym.st_shndx = shndx;
6285 if ((flags & BSF_THREAD_LOCAL) != 0)
6287 else if ((flags & BSF_FUNCTION) != 0)
6289 else if ((flags & BSF_OBJECT) != 0)
6291 else if ((flags & BSF_RELC) != 0)
6293 else if ((flags & BSF_SRELC) != 0)
6298 if (syms[idx]->section->flags & SEC_THREAD_LOCAL)
6301 /* Processor-specific types. */
6302 if (type_ptr != NULL
6303 && bed->elf_backend_get_symbol_type)
6304 type = ((*bed->elf_backend_get_symbol_type)
6305 (&type_ptr->internal_elf_sym, type));
6307 if (flags & BSF_SECTION_SYM)
6309 if (flags & BSF_GLOBAL)
6310 sym.st_info = ELF_ST_INFO (STB_GLOBAL, STT_SECTION);
6312 sym.st_info = ELF_ST_INFO (STB_LOCAL, STT_SECTION);
6314 else if (bfd_is_com_section (syms[idx]->section))
6315 sym.st_info = ELF_ST_INFO (STB_GLOBAL,
6316 #ifdef USE_STT_COMMON
6317 type == STT_OBJECT ? STT_COMMON :
6320 else if (bfd_is_und_section (syms[idx]->section))
6321 sym.st_info = ELF_ST_INFO (((flags & BSF_WEAK)
6325 else if (flags & BSF_FILE)
6326 sym.st_info = ELF_ST_INFO (STB_LOCAL, STT_FILE);
6329 int bind = STB_LOCAL;
6331 if (flags & BSF_LOCAL)
6333 else if (flags & BSF_WEAK)
6335 else if (flags & BSF_GLOBAL)
6338 sym.st_info = ELF_ST_INFO (bind, type);
6341 if (type_ptr != NULL)
6342 sym.st_other = type_ptr->internal_elf_sym.st_other;
6346 bed->s->swap_symbol_out (abfd, &sym, outbound_syms, outbound_shndx);
6347 outbound_syms += bed->s->sizeof_sym;
6348 if (outbound_shndx != NULL)
6349 outbound_shndx += sizeof (Elf_External_Sym_Shndx);
6353 symstrtab_hdr->sh_size = _bfd_stringtab_size (stt);
6354 symstrtab_hdr->sh_type = SHT_STRTAB;
6356 symstrtab_hdr->sh_flags = 0;
6357 symstrtab_hdr->sh_addr = 0;
6358 symstrtab_hdr->sh_entsize = 0;
6359 symstrtab_hdr->sh_link = 0;
6360 symstrtab_hdr->sh_info = 0;
6361 symstrtab_hdr->sh_addralign = 1;
6366 /* Return the number of bytes required to hold the symtab vector.
6368 Note that we base it on the count plus 1, since we will null terminate
6369 the vector allocated based on this size. However, the ELF symbol table
6370 always has a dummy entry as symbol #0, so it ends up even. */
6373 _bfd_elf_get_symtab_upper_bound (bfd *abfd)
6377 Elf_Internal_Shdr *hdr = &elf_tdata (abfd)->symtab_hdr;
6379 symcount = hdr->sh_size / get_elf_backend_data (abfd)->s->sizeof_sym;
6380 symtab_size = (symcount + 1) * (sizeof (asymbol *));
6382 symtab_size -= sizeof (asymbol *);
6388 _bfd_elf_get_dynamic_symtab_upper_bound (bfd *abfd)
6392 Elf_Internal_Shdr *hdr = &elf_tdata (abfd)->dynsymtab_hdr;
6394 if (elf_dynsymtab (abfd) == 0)
6396 bfd_set_error (bfd_error_invalid_operation);
6400 symcount = hdr->sh_size / get_elf_backend_data (abfd)->s->sizeof_sym;
6401 symtab_size = (symcount + 1) * (sizeof (asymbol *));
6403 symtab_size -= sizeof (asymbol *);
6409 _bfd_elf_get_reloc_upper_bound (bfd *abfd ATTRIBUTE_UNUSED,
6412 return (asect->reloc_count + 1) * sizeof (arelent *);
6415 /* Canonicalize the relocs. */
6418 _bfd_elf_canonicalize_reloc (bfd *abfd,
6425 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
6427 if (! bed->s->slurp_reloc_table (abfd, section, symbols, FALSE))
6430 tblptr = section->relocation;
6431 for (i = 0; i < section->reloc_count; i++)
6432 *relptr++ = tblptr++;
6436 return section->reloc_count;
6440 _bfd_elf_canonicalize_symtab (bfd *abfd, asymbol **allocation)
6442 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
6443 long symcount = bed->s->slurp_symbol_table (abfd, allocation, FALSE);
6446 bfd_get_symcount (abfd) = symcount;
6451 _bfd_elf_canonicalize_dynamic_symtab (bfd *abfd,
6452 asymbol **allocation)
6454 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
6455 long symcount = bed->s->slurp_symbol_table (abfd, allocation, TRUE);
6458 bfd_get_dynamic_symcount (abfd) = symcount;
6462 /* Return the size required for the dynamic reloc entries. Any loadable
6463 section that was actually installed in the BFD, and has type SHT_REL
6464 or SHT_RELA, and uses the dynamic symbol table, is considered to be a
6465 dynamic reloc section. */
6468 _bfd_elf_get_dynamic_reloc_upper_bound (bfd *abfd)
6473 if (elf_dynsymtab (abfd) == 0)
6475 bfd_set_error (bfd_error_invalid_operation);
6479 ret = sizeof (arelent *);
6480 for (s = abfd->sections; s != NULL; s = s->next)
6481 if ((s->flags & SEC_LOAD) != 0
6482 && elf_section_data (s)->this_hdr.sh_link == elf_dynsymtab (abfd)
6483 && (elf_section_data (s)->this_hdr.sh_type == SHT_REL
6484 || elf_section_data (s)->this_hdr.sh_type == SHT_RELA))
6485 ret += ((s->size / elf_section_data (s)->this_hdr.sh_entsize)
6486 * sizeof (arelent *));
6491 /* Canonicalize the dynamic relocation entries. Note that we return the
6492 dynamic relocations as a single block, although they are actually
6493 associated with particular sections; the interface, which was
6494 designed for SunOS style shared libraries, expects that there is only
6495 one set of dynamic relocs. Any loadable section that was actually
6496 installed in the BFD, and has type SHT_REL or SHT_RELA, and uses the
6497 dynamic symbol table, is considered to be a dynamic reloc section. */
6500 _bfd_elf_canonicalize_dynamic_reloc (bfd *abfd,
6504 bfd_boolean (*slurp_relocs) (bfd *, asection *, asymbol **, bfd_boolean);
6508 if (elf_dynsymtab (abfd) == 0)
6510 bfd_set_error (bfd_error_invalid_operation);
6514 slurp_relocs = get_elf_backend_data (abfd)->s->slurp_reloc_table;
6516 for (s = abfd->sections; s != NULL; s = s->next)
6518 if ((s->flags & SEC_LOAD) != 0
6519 && elf_section_data (s)->this_hdr.sh_link == elf_dynsymtab (abfd)
6520 && (elf_section_data (s)->this_hdr.sh_type == SHT_REL
6521 || elf_section_data (s)->this_hdr.sh_type == SHT_RELA))
6526 if (! (*slurp_relocs) (abfd, s, syms, TRUE))
6528 count = s->size / elf_section_data (s)->this_hdr.sh_entsize;
6530 for (i = 0; i < count; i++)
6541 /* Read in the version information. */
6544 _bfd_elf_slurp_version_tables (bfd *abfd, bfd_boolean default_imported_symver)
6546 bfd_byte *contents = NULL;
6547 unsigned int freeidx = 0;
6549 if (elf_dynverref (abfd) != 0)
6551 Elf_Internal_Shdr *hdr;
6552 Elf_External_Verneed *everneed;
6553 Elf_Internal_Verneed *iverneed;
6555 bfd_byte *contents_end;
6557 hdr = &elf_tdata (abfd)->dynverref_hdr;
6559 elf_tdata (abfd)->verref = bfd_zalloc2 (abfd, hdr->sh_info,
6560 sizeof (Elf_Internal_Verneed));
6561 if (elf_tdata (abfd)->verref == NULL)
6564 elf_tdata (abfd)->cverrefs = hdr->sh_info;
6566 contents = bfd_malloc (hdr->sh_size);
6567 if (contents == NULL)
6569 error_return_verref:
6570 elf_tdata (abfd)->verref = NULL;
6571 elf_tdata (abfd)->cverrefs = 0;
6574 if (bfd_seek (abfd, hdr->sh_offset, SEEK_SET) != 0
6575 || bfd_bread (contents, hdr->sh_size, abfd) != hdr->sh_size)
6576 goto error_return_verref;
6578 if (hdr->sh_info && hdr->sh_size < sizeof (Elf_External_Verneed))
6579 goto error_return_verref;
6581 BFD_ASSERT (sizeof (Elf_External_Verneed)
6582 == sizeof (Elf_External_Vernaux));
6583 contents_end = contents + hdr->sh_size - sizeof (Elf_External_Verneed);
6584 everneed = (Elf_External_Verneed *) contents;
6585 iverneed = elf_tdata (abfd)->verref;
6586 for (i = 0; i < hdr->sh_info; i++, iverneed++)
6588 Elf_External_Vernaux *evernaux;
6589 Elf_Internal_Vernaux *ivernaux;
6592 _bfd_elf_swap_verneed_in (abfd, everneed, iverneed);
6594 iverneed->vn_bfd = abfd;
6596 iverneed->vn_filename =
6597 bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
6599 if (iverneed->vn_filename == NULL)
6600 goto error_return_verref;
6602 if (iverneed->vn_cnt == 0)
6603 iverneed->vn_auxptr = NULL;
6606 iverneed->vn_auxptr = bfd_alloc2 (abfd, iverneed->vn_cnt,
6607 sizeof (Elf_Internal_Vernaux));
6608 if (iverneed->vn_auxptr == NULL)
6609 goto error_return_verref;
6612 if (iverneed->vn_aux
6613 > (size_t) (contents_end - (bfd_byte *) everneed))
6614 goto error_return_verref;
6616 evernaux = ((Elf_External_Vernaux *)
6617 ((bfd_byte *) everneed + iverneed->vn_aux));
6618 ivernaux = iverneed->vn_auxptr;
6619 for (j = 0; j < iverneed->vn_cnt; j++, ivernaux++)
6621 _bfd_elf_swap_vernaux_in (abfd, evernaux, ivernaux);
6623 ivernaux->vna_nodename =
6624 bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
6625 ivernaux->vna_name);
6626 if (ivernaux->vna_nodename == NULL)
6627 goto error_return_verref;
6629 if (j + 1 < iverneed->vn_cnt)
6630 ivernaux->vna_nextptr = ivernaux + 1;
6632 ivernaux->vna_nextptr = NULL;
6634 if (ivernaux->vna_next
6635 > (size_t) (contents_end - (bfd_byte *) evernaux))
6636 goto error_return_verref;
6638 evernaux = ((Elf_External_Vernaux *)
6639 ((bfd_byte *) evernaux + ivernaux->vna_next));
6641 if (ivernaux->vna_other > freeidx)
6642 freeidx = ivernaux->vna_other;
6645 if (i + 1 < hdr->sh_info)
6646 iverneed->vn_nextref = iverneed + 1;
6648 iverneed->vn_nextref = NULL;
6650 if (iverneed->vn_next
6651 > (size_t) (contents_end - (bfd_byte *) everneed))
6652 goto error_return_verref;
6654 everneed = ((Elf_External_Verneed *)
6655 ((bfd_byte *) everneed + iverneed->vn_next));
6662 if (elf_dynverdef (abfd) != 0)
6664 Elf_Internal_Shdr *hdr;
6665 Elf_External_Verdef *everdef;
6666 Elf_Internal_Verdef *iverdef;
6667 Elf_Internal_Verdef *iverdefarr;
6668 Elf_Internal_Verdef iverdefmem;
6670 unsigned int maxidx;
6671 bfd_byte *contents_end_def, *contents_end_aux;
6673 hdr = &elf_tdata (abfd)->dynverdef_hdr;
6675 contents = bfd_malloc (hdr->sh_size);
6676 if (contents == NULL)
6678 if (bfd_seek (abfd, hdr->sh_offset, SEEK_SET) != 0
6679 || bfd_bread (contents, hdr->sh_size, abfd) != hdr->sh_size)
6682 if (hdr->sh_info && hdr->sh_size < sizeof (Elf_External_Verdef))
6685 BFD_ASSERT (sizeof (Elf_External_Verdef)
6686 >= sizeof (Elf_External_Verdaux));
6687 contents_end_def = contents + hdr->sh_size
6688 - sizeof (Elf_External_Verdef);
6689 contents_end_aux = contents + hdr->sh_size
6690 - sizeof (Elf_External_Verdaux);
6692 /* We know the number of entries in the section but not the maximum
6693 index. Therefore we have to run through all entries and find
6695 everdef = (Elf_External_Verdef *) contents;
6697 for (i = 0; i < hdr->sh_info; ++i)
6699 _bfd_elf_swap_verdef_in (abfd, everdef, &iverdefmem);
6701 if ((iverdefmem.vd_ndx & ((unsigned) VERSYM_VERSION)) > maxidx)
6702 maxidx = iverdefmem.vd_ndx & ((unsigned) VERSYM_VERSION);
6704 if (iverdefmem.vd_next
6705 > (size_t) (contents_end_def - (bfd_byte *) everdef))
6708 everdef = ((Elf_External_Verdef *)
6709 ((bfd_byte *) everdef + iverdefmem.vd_next));
6712 if (default_imported_symver)
6714 if (freeidx > maxidx)
6719 elf_tdata (abfd)->verdef = bfd_zalloc2 (abfd, maxidx,
6720 sizeof (Elf_Internal_Verdef));
6721 if (elf_tdata (abfd)->verdef == NULL)
6724 elf_tdata (abfd)->cverdefs = maxidx;
6726 everdef = (Elf_External_Verdef *) contents;
6727 iverdefarr = elf_tdata (abfd)->verdef;
6728 for (i = 0; i < hdr->sh_info; i++)
6730 Elf_External_Verdaux *everdaux;
6731 Elf_Internal_Verdaux *iverdaux;
6734 _bfd_elf_swap_verdef_in (abfd, everdef, &iverdefmem);
6736 if ((iverdefmem.vd_ndx & VERSYM_VERSION) == 0)
6738 error_return_verdef:
6739 elf_tdata (abfd)->verdef = NULL;
6740 elf_tdata (abfd)->cverdefs = 0;
6744 iverdef = &iverdefarr[(iverdefmem.vd_ndx & VERSYM_VERSION) - 1];
6745 memcpy (iverdef, &iverdefmem, sizeof (Elf_Internal_Verdef));
6747 iverdef->vd_bfd = abfd;
6749 if (iverdef->vd_cnt == 0)
6750 iverdef->vd_auxptr = NULL;
6753 iverdef->vd_auxptr = bfd_alloc2 (abfd, iverdef->vd_cnt,
6754 sizeof (Elf_Internal_Verdaux));
6755 if (iverdef->vd_auxptr == NULL)
6756 goto error_return_verdef;
6760 > (size_t) (contents_end_aux - (bfd_byte *) everdef))
6761 goto error_return_verdef;
6763 everdaux = ((Elf_External_Verdaux *)
6764 ((bfd_byte *) everdef + iverdef->vd_aux));
6765 iverdaux = iverdef->vd_auxptr;
6766 for (j = 0; j < iverdef->vd_cnt; j++, iverdaux++)
6768 _bfd_elf_swap_verdaux_in (abfd, everdaux, iverdaux);
6770 iverdaux->vda_nodename =
6771 bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
6772 iverdaux->vda_name);
6773 if (iverdaux->vda_nodename == NULL)
6774 goto error_return_verdef;
6776 if (j + 1 < iverdef->vd_cnt)
6777 iverdaux->vda_nextptr = iverdaux + 1;
6779 iverdaux->vda_nextptr = NULL;
6781 if (iverdaux->vda_next
6782 > (size_t) (contents_end_aux - (bfd_byte *) everdaux))
6783 goto error_return_verdef;
6785 everdaux = ((Elf_External_Verdaux *)
6786 ((bfd_byte *) everdaux + iverdaux->vda_next));
6789 if (iverdef->vd_cnt)
6790 iverdef->vd_nodename = iverdef->vd_auxptr->vda_nodename;
6792 if ((size_t) (iverdef - iverdefarr) + 1 < maxidx)
6793 iverdef->vd_nextdef = iverdef + 1;
6795 iverdef->vd_nextdef = NULL;
6797 everdef = ((Elf_External_Verdef *)
6798 ((bfd_byte *) everdef + iverdef->vd_next));
6804 else if (default_imported_symver)
6811 elf_tdata (abfd)->verdef = bfd_zalloc2 (abfd, freeidx,
6812 sizeof (Elf_Internal_Verdef));
6813 if (elf_tdata (abfd)->verdef == NULL)
6816 elf_tdata (abfd)->cverdefs = freeidx;
6819 /* Create a default version based on the soname. */
6820 if (default_imported_symver)
6822 Elf_Internal_Verdef *iverdef;
6823 Elf_Internal_Verdaux *iverdaux;
6825 iverdef = &elf_tdata (abfd)->verdef[freeidx - 1];;
6827 iverdef->vd_version = VER_DEF_CURRENT;
6828 iverdef->vd_flags = 0;
6829 iverdef->vd_ndx = freeidx;
6830 iverdef->vd_cnt = 1;
6832 iverdef->vd_bfd = abfd;
6834 iverdef->vd_nodename = bfd_elf_get_dt_soname (abfd);
6835 if (iverdef->vd_nodename == NULL)
6836 goto error_return_verdef;
6837 iverdef->vd_nextdef = NULL;
6838 iverdef->vd_auxptr = bfd_alloc (abfd, sizeof (Elf_Internal_Verdaux));
6839 if (iverdef->vd_auxptr == NULL)
6840 goto error_return_verdef;
6842 iverdaux = iverdef->vd_auxptr;
6843 iverdaux->vda_nodename = iverdef->vd_nodename;
6844 iverdaux->vda_nextptr = NULL;
6850 if (contents != NULL)
6856 _bfd_elf_make_empty_symbol (bfd *abfd)
6858 elf_symbol_type *newsym;
6859 bfd_size_type amt = sizeof (elf_symbol_type);
6861 newsym = bfd_zalloc (abfd, amt);
6866 newsym->symbol.the_bfd = abfd;
6867 return &newsym->symbol;
6872 _bfd_elf_get_symbol_info (bfd *abfd ATTRIBUTE_UNUSED,
6876 bfd_symbol_info (symbol, ret);
6879 /* Return whether a symbol name implies a local symbol. Most targets
6880 use this function for the is_local_label_name entry point, but some
6884 _bfd_elf_is_local_label_name (bfd *abfd ATTRIBUTE_UNUSED,
6887 /* Normal local symbols start with ``.L''. */
6888 if (name[0] == '.' && name[1] == 'L')
6891 /* At least some SVR4 compilers (e.g., UnixWare 2.1 cc) generate
6892 DWARF debugging symbols starting with ``..''. */
6893 if (name[0] == '.' && name[1] == '.')
6896 /* gcc will sometimes generate symbols beginning with ``_.L_'' when
6897 emitting DWARF debugging output. I suspect this is actually a
6898 small bug in gcc (it calls ASM_OUTPUT_LABEL when it should call
6899 ASM_GENERATE_INTERNAL_LABEL, and this causes the leading
6900 underscore to be emitted on some ELF targets). For ease of use,
6901 we treat such symbols as local. */
6902 if (name[0] == '_' && name[1] == '.' && name[2] == 'L' && name[3] == '_')
6909 _bfd_elf_get_lineno (bfd *abfd ATTRIBUTE_UNUSED,
6910 asymbol *symbol ATTRIBUTE_UNUSED)
6917 _bfd_elf_set_arch_mach (bfd *abfd,
6918 enum bfd_architecture arch,
6919 unsigned long machine)
6921 /* If this isn't the right architecture for this backend, and this
6922 isn't the generic backend, fail. */
6923 if (arch != get_elf_backend_data (abfd)->arch
6924 && arch != bfd_arch_unknown
6925 && get_elf_backend_data (abfd)->arch != bfd_arch_unknown)
6928 return bfd_default_set_arch_mach (abfd, arch, machine);
6931 /* Find the function to a particular section and offset,
6932 for error reporting. */
6935 elf_find_function (bfd *abfd ATTRIBUTE_UNUSED,
6939 const char **filename_ptr,
6940 const char **functionname_ptr)
6942 const char *filename;
6943 asymbol *func, *file;
6946 /* ??? Given multiple file symbols, it is impossible to reliably
6947 choose the right file name for global symbols. File symbols are
6948 local symbols, and thus all file symbols must sort before any
6949 global symbols. The ELF spec may be interpreted to say that a
6950 file symbol must sort before other local symbols, but currently
6951 ld -r doesn't do this. So, for ld -r output, it is possible to
6952 make a better choice of file name for local symbols by ignoring
6953 file symbols appearing after a given local symbol. */
6954 enum { nothing_seen, symbol_seen, file_after_symbol_seen } state;
6960 state = nothing_seen;
6962 for (p = symbols; *p != NULL; p++)
6966 q = (elf_symbol_type *) *p;
6968 switch (ELF_ST_TYPE (q->internal_elf_sym.st_info))
6974 if (state == symbol_seen)
6975 state = file_after_symbol_seen;
6979 if (bfd_get_section (&q->symbol) == section
6980 && q->symbol.value >= low_func
6981 && q->symbol.value <= offset)
6983 func = (asymbol *) q;
6984 low_func = q->symbol.value;
6987 && (ELF_ST_BIND (q->internal_elf_sym.st_info) == STB_LOCAL
6988 || state != file_after_symbol_seen))
6989 filename = bfd_asymbol_name (file);
6993 if (state == nothing_seen)
6994 state = symbol_seen;
7001 *filename_ptr = filename;
7002 if (functionname_ptr)
7003 *functionname_ptr = bfd_asymbol_name (func);
7008 /* Find the nearest line to a particular section and offset,
7009 for error reporting. */
7012 _bfd_elf_find_nearest_line (bfd *abfd,
7016 const char **filename_ptr,
7017 const char **functionname_ptr,
7018 unsigned int *line_ptr)
7022 if (_bfd_dwarf1_find_nearest_line (abfd, section, symbols, offset,
7023 filename_ptr, functionname_ptr,
7026 if (!*functionname_ptr)
7027 elf_find_function (abfd, section, symbols, offset,
7028 *filename_ptr ? NULL : filename_ptr,
7034 if (_bfd_dwarf2_find_nearest_line (abfd, section, symbols, offset,
7035 filename_ptr, functionname_ptr,
7037 &elf_tdata (abfd)->dwarf2_find_line_info))
7039 if (!*functionname_ptr)
7040 elf_find_function (abfd, section, symbols, offset,
7041 *filename_ptr ? NULL : filename_ptr,
7047 if (! _bfd_stab_section_find_nearest_line (abfd, symbols, section, offset,
7048 &found, filename_ptr,
7049 functionname_ptr, line_ptr,
7050 &elf_tdata (abfd)->line_info))
7052 if (found && (*functionname_ptr || *line_ptr))
7055 if (symbols == NULL)
7058 if (! elf_find_function (abfd, section, symbols, offset,
7059 filename_ptr, functionname_ptr))
7066 /* Find the line for a symbol. */
7069 _bfd_elf_find_line (bfd *abfd, asymbol **symbols, asymbol *symbol,
7070 const char **filename_ptr, unsigned int *line_ptr)
7072 return _bfd_dwarf2_find_line (abfd, symbols, symbol,
7073 filename_ptr, line_ptr, 0,
7074 &elf_tdata (abfd)->dwarf2_find_line_info);
7077 /* After a call to bfd_find_nearest_line, successive calls to
7078 bfd_find_inliner_info can be used to get source information about
7079 each level of function inlining that terminated at the address
7080 passed to bfd_find_nearest_line. Currently this is only supported
7081 for DWARF2 with appropriate DWARF3 extensions. */
7084 _bfd_elf_find_inliner_info (bfd *abfd,
7085 const char **filename_ptr,
7086 const char **functionname_ptr,
7087 unsigned int *line_ptr)
7090 found = _bfd_dwarf2_find_inliner_info (abfd, filename_ptr,
7091 functionname_ptr, line_ptr,
7092 & elf_tdata (abfd)->dwarf2_find_line_info);
7097 _bfd_elf_sizeof_headers (bfd *abfd, struct bfd_link_info *info)
7099 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
7100 int ret = bed->s->sizeof_ehdr;
7102 if (!info->relocatable)
7104 bfd_size_type phdr_size = elf_tdata (abfd)->program_header_size;
7106 if (phdr_size == (bfd_size_type) -1)
7108 struct elf_segment_map *m;
7111 for (m = elf_tdata (abfd)->segment_map; m != NULL; m = m->next)
7112 phdr_size += bed->s->sizeof_phdr;
7115 phdr_size = get_program_header_size (abfd, info);
7118 elf_tdata (abfd)->program_header_size = phdr_size;
7126 _bfd_elf_set_section_contents (bfd *abfd,
7128 const void *location,
7130 bfd_size_type count)
7132 Elf_Internal_Shdr *hdr;
7135 if (! abfd->output_has_begun
7136 && ! _bfd_elf_compute_section_file_positions (abfd, NULL))
7139 hdr = &elf_section_data (section)->this_hdr;
7140 pos = hdr->sh_offset + offset;
7141 if (bfd_seek (abfd, pos, SEEK_SET) != 0
7142 || bfd_bwrite (location, count, abfd) != count)
7149 _bfd_elf_no_info_to_howto (bfd *abfd ATTRIBUTE_UNUSED,
7150 arelent *cache_ptr ATTRIBUTE_UNUSED,
7151 Elf_Internal_Rela *dst ATTRIBUTE_UNUSED)
7156 /* Try to convert a non-ELF reloc into an ELF one. */
7159 _bfd_elf_validate_reloc (bfd *abfd, arelent *areloc)
7161 /* Check whether we really have an ELF howto. */
7163 if ((*areloc->sym_ptr_ptr)->the_bfd->xvec != abfd->xvec)
7165 bfd_reloc_code_real_type code;
7166 reloc_howto_type *howto;
7168 /* Alien reloc: Try to determine its type to replace it with an
7169 equivalent ELF reloc. */
7171 if (areloc->howto->pc_relative)
7173 switch (areloc->howto->bitsize)
7176 code = BFD_RELOC_8_PCREL;
7179 code = BFD_RELOC_12_PCREL;
7182 code = BFD_RELOC_16_PCREL;
7185 code = BFD_RELOC_24_PCREL;
7188 code = BFD_RELOC_32_PCREL;
7191 code = BFD_RELOC_64_PCREL;
7197 howto = bfd_reloc_type_lookup (abfd, code);
7199 if (areloc->howto->pcrel_offset != howto->pcrel_offset)
7201 if (howto->pcrel_offset)
7202 areloc->addend += areloc->address;
7204 areloc->addend -= areloc->address; /* addend is unsigned!! */
7209 switch (areloc->howto->bitsize)
7215 code = BFD_RELOC_14;
7218 code = BFD_RELOC_16;
7221 code = BFD_RELOC_26;
7224 code = BFD_RELOC_32;
7227 code = BFD_RELOC_64;
7233 howto = bfd_reloc_type_lookup (abfd, code);
7237 areloc->howto = howto;
7245 (*_bfd_error_handler)
7246 (_("%B: unsupported relocation type %s"),
7247 abfd, areloc->howto->name);
7248 bfd_set_error (bfd_error_bad_value);
7253 _bfd_elf_close_and_cleanup (bfd *abfd)
7255 if (bfd_get_format (abfd) == bfd_object)
7257 if (elf_tdata (abfd) != NULL && elf_shstrtab (abfd) != NULL)
7258 _bfd_elf_strtab_free (elf_shstrtab (abfd));
7259 _bfd_dwarf2_cleanup_debug_info (abfd);
7262 return _bfd_generic_close_and_cleanup (abfd);
7265 /* For Rel targets, we encode meaningful data for BFD_RELOC_VTABLE_ENTRY
7266 in the relocation's offset. Thus we cannot allow any sort of sanity
7267 range-checking to interfere. There is nothing else to do in processing
7270 bfd_reloc_status_type
7271 _bfd_elf_rel_vtable_reloc_fn
7272 (bfd *abfd ATTRIBUTE_UNUSED, arelent *re ATTRIBUTE_UNUSED,
7273 struct bfd_symbol *symbol ATTRIBUTE_UNUSED,
7274 void *data ATTRIBUTE_UNUSED, asection *is ATTRIBUTE_UNUSED,
7275 bfd *obfd ATTRIBUTE_UNUSED, char **errmsg ATTRIBUTE_UNUSED)
7277 return bfd_reloc_ok;
7280 /* Elf core file support. Much of this only works on native
7281 toolchains, since we rely on knowing the
7282 machine-dependent procfs structure in order to pick
7283 out details about the corefile. */
7285 #ifdef HAVE_SYS_PROCFS_H
7286 # include <sys/procfs.h>
7289 /* FIXME: this is kinda wrong, but it's what gdb wants. */
7292 elfcore_make_pid (bfd *abfd)
7294 return ((elf_tdata (abfd)->core_lwpid << 16)
7295 + (elf_tdata (abfd)->core_pid));
7298 /* If there isn't a section called NAME, make one, using
7299 data from SECT. Note, this function will generate a
7300 reference to NAME, so you shouldn't deallocate or
7304 elfcore_maybe_make_sect (bfd *abfd, char *name, asection *sect)
7308 if (bfd_get_section_by_name (abfd, name) != NULL)
7311 sect2 = bfd_make_section_with_flags (abfd, name, sect->flags);
7315 sect2->size = sect->size;
7316 sect2->filepos = sect->filepos;
7317 sect2->alignment_power = sect->alignment_power;
7321 /* Create a pseudosection containing SIZE bytes at FILEPOS. This
7322 actually creates up to two pseudosections:
7323 - For the single-threaded case, a section named NAME, unless
7324 such a section already exists.
7325 - For the multi-threaded case, a section named "NAME/PID", where
7326 PID is elfcore_make_pid (abfd).
7327 Both pseudosections have identical contents. */
7329 _bfd_elfcore_make_pseudosection (bfd *abfd,
7335 char *threaded_name;
7339 /* Build the section name. */
7341 sprintf (buf, "%s/%d", name, elfcore_make_pid (abfd));
7342 len = strlen (buf) + 1;
7343 threaded_name = bfd_alloc (abfd, len);
7344 if (threaded_name == NULL)
7346 memcpy (threaded_name, buf, len);
7348 sect = bfd_make_section_anyway_with_flags (abfd, threaded_name,
7353 sect->filepos = filepos;
7354 sect->alignment_power = 2;
7356 return elfcore_maybe_make_sect (abfd, name, sect);
7359 /* prstatus_t exists on:
7361 linux 2.[01] + glibc
7365 #if defined (HAVE_PRSTATUS_T)
7368 elfcore_grok_prstatus (bfd *abfd, Elf_Internal_Note *note)
7373 if (note->descsz == sizeof (prstatus_t))
7377 size = sizeof (prstat.pr_reg);
7378 offset = offsetof (prstatus_t, pr_reg);
7379 memcpy (&prstat, note->descdata, sizeof (prstat));
7381 /* Do not overwrite the core signal if it
7382 has already been set by another thread. */
7383 if (elf_tdata (abfd)->core_signal == 0)
7384 elf_tdata (abfd)->core_signal = prstat.pr_cursig;
7385 elf_tdata (abfd)->core_pid = prstat.pr_pid;
7387 /* pr_who exists on:
7390 pr_who doesn't exist on:
7393 #if defined (HAVE_PRSTATUS_T_PR_WHO)
7394 elf_tdata (abfd)->core_lwpid = prstat.pr_who;
7397 #if defined (HAVE_PRSTATUS32_T)
7398 else if (note->descsz == sizeof (prstatus32_t))
7400 /* 64-bit host, 32-bit corefile */
7401 prstatus32_t prstat;
7403 size = sizeof (prstat.pr_reg);
7404 offset = offsetof (prstatus32_t, pr_reg);
7405 memcpy (&prstat, note->descdata, sizeof (prstat));
7407 /* Do not overwrite the core signal if it
7408 has already been set by another thread. */
7409 if (elf_tdata (abfd)->core_signal == 0)
7410 elf_tdata (abfd)->core_signal = prstat.pr_cursig;
7411 elf_tdata (abfd)->core_pid = prstat.pr_pid;
7413 /* pr_who exists on:
7416 pr_who doesn't exist on:
7419 #if defined (HAVE_PRSTATUS32_T_PR_WHO)
7420 elf_tdata (abfd)->core_lwpid = prstat.pr_who;
7423 #endif /* HAVE_PRSTATUS32_T */
7426 /* Fail - we don't know how to handle any other
7427 note size (ie. data object type). */
7431 /* Make a ".reg/999" section and a ".reg" section. */
7432 return _bfd_elfcore_make_pseudosection (abfd, ".reg",
7433 size, note->descpos + offset);
7435 #endif /* defined (HAVE_PRSTATUS_T) */
7437 /* Create a pseudosection containing the exact contents of NOTE. */
7439 elfcore_make_note_pseudosection (bfd *abfd,
7441 Elf_Internal_Note *note)
7443 return _bfd_elfcore_make_pseudosection (abfd, name,
7444 note->descsz, note->descpos);
7447 /* There isn't a consistent prfpregset_t across platforms,
7448 but it doesn't matter, because we don't have to pick this
7449 data structure apart. */
7452 elfcore_grok_prfpreg (bfd *abfd, Elf_Internal_Note *note)
7454 return elfcore_make_note_pseudosection (abfd, ".reg2", note);
7457 /* Linux dumps the Intel SSE regs in a note named "LINUX" with a note
7458 type of NT_PRXFPREG. Just include the whole note's contents
7462 elfcore_grok_prxfpreg (bfd *abfd, Elf_Internal_Note *note)
7464 return elfcore_make_note_pseudosection (abfd, ".reg-xfp", note);
7468 elfcore_grok_ppc_vmx (bfd *abfd, Elf_Internal_Note *note)
7470 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-vmx", note);
7474 #if defined (HAVE_PRPSINFO_T)
7475 typedef prpsinfo_t elfcore_psinfo_t;
7476 #if defined (HAVE_PRPSINFO32_T) /* Sparc64 cross Sparc32 */
7477 typedef prpsinfo32_t elfcore_psinfo32_t;
7481 #if defined (HAVE_PSINFO_T)
7482 typedef psinfo_t elfcore_psinfo_t;
7483 #if defined (HAVE_PSINFO32_T) /* Sparc64 cross Sparc32 */
7484 typedef psinfo32_t elfcore_psinfo32_t;
7488 /* return a malloc'ed copy of a string at START which is at
7489 most MAX bytes long, possibly without a terminating '\0'.
7490 the copy will always have a terminating '\0'. */
7493 _bfd_elfcore_strndup (bfd *abfd, char *start, size_t max)
7496 char *end = memchr (start, '\0', max);
7504 dups = bfd_alloc (abfd, len + 1);
7508 memcpy (dups, start, len);
7514 #if defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T)
7516 elfcore_grok_psinfo (bfd *abfd, Elf_Internal_Note *note)
7518 if (note->descsz == sizeof (elfcore_psinfo_t))
7520 elfcore_psinfo_t psinfo;
7522 memcpy (&psinfo, note->descdata, sizeof (psinfo));
7524 elf_tdata (abfd)->core_program
7525 = _bfd_elfcore_strndup (abfd, psinfo.pr_fname,
7526 sizeof (psinfo.pr_fname));
7528 elf_tdata (abfd)->core_command
7529 = _bfd_elfcore_strndup (abfd, psinfo.pr_psargs,
7530 sizeof (psinfo.pr_psargs));
7532 #if defined (HAVE_PRPSINFO32_T) || defined (HAVE_PSINFO32_T)
7533 else if (note->descsz == sizeof (elfcore_psinfo32_t))
7535 /* 64-bit host, 32-bit corefile */
7536 elfcore_psinfo32_t psinfo;
7538 memcpy (&psinfo, note->descdata, sizeof (psinfo));
7540 elf_tdata (abfd)->core_program
7541 = _bfd_elfcore_strndup (abfd, psinfo.pr_fname,
7542 sizeof (psinfo.pr_fname));
7544 elf_tdata (abfd)->core_command
7545 = _bfd_elfcore_strndup (abfd, psinfo.pr_psargs,
7546 sizeof (psinfo.pr_psargs));
7552 /* Fail - we don't know how to handle any other
7553 note size (ie. data object type). */
7557 /* Note that for some reason, a spurious space is tacked
7558 onto the end of the args in some (at least one anyway)
7559 implementations, so strip it off if it exists. */
7562 char *command = elf_tdata (abfd)->core_command;
7563 int n = strlen (command);
7565 if (0 < n && command[n - 1] == ' ')
7566 command[n - 1] = '\0';
7571 #endif /* defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T) */
7573 #if defined (HAVE_PSTATUS_T)
7575 elfcore_grok_pstatus (bfd *abfd, Elf_Internal_Note *note)
7577 if (note->descsz == sizeof (pstatus_t)
7578 #if defined (HAVE_PXSTATUS_T)
7579 || note->descsz == sizeof (pxstatus_t)
7585 memcpy (&pstat, note->descdata, sizeof (pstat));
7587 elf_tdata (abfd)->core_pid = pstat.pr_pid;
7589 #if defined (HAVE_PSTATUS32_T)
7590 else if (note->descsz == sizeof (pstatus32_t))
7592 /* 64-bit host, 32-bit corefile */
7595 memcpy (&pstat, note->descdata, sizeof (pstat));
7597 elf_tdata (abfd)->core_pid = pstat.pr_pid;
7600 /* Could grab some more details from the "representative"
7601 lwpstatus_t in pstat.pr_lwp, but we'll catch it all in an
7602 NT_LWPSTATUS note, presumably. */
7606 #endif /* defined (HAVE_PSTATUS_T) */
7608 #if defined (HAVE_LWPSTATUS_T)
7610 elfcore_grok_lwpstatus (bfd *abfd, Elf_Internal_Note *note)
7612 lwpstatus_t lwpstat;
7618 if (note->descsz != sizeof (lwpstat)
7619 #if defined (HAVE_LWPXSTATUS_T)
7620 && note->descsz != sizeof (lwpxstatus_t)
7625 memcpy (&lwpstat, note->descdata, sizeof (lwpstat));
7627 elf_tdata (abfd)->core_lwpid = lwpstat.pr_lwpid;
7628 elf_tdata (abfd)->core_signal = lwpstat.pr_cursig;
7630 /* Make a ".reg/999" section. */
7632 sprintf (buf, ".reg/%d", elfcore_make_pid (abfd));
7633 len = strlen (buf) + 1;
7634 name = bfd_alloc (abfd, len);
7637 memcpy (name, buf, len);
7639 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
7643 #if defined (HAVE_LWPSTATUS_T_PR_CONTEXT)
7644 sect->size = sizeof (lwpstat.pr_context.uc_mcontext.gregs);
7645 sect->filepos = note->descpos
7646 + offsetof (lwpstatus_t, pr_context.uc_mcontext.gregs);
7649 #if defined (HAVE_LWPSTATUS_T_PR_REG)
7650 sect->size = sizeof (lwpstat.pr_reg);
7651 sect->filepos = note->descpos + offsetof (lwpstatus_t, pr_reg);
7654 sect->alignment_power = 2;
7656 if (!elfcore_maybe_make_sect (abfd, ".reg", sect))
7659 /* Make a ".reg2/999" section */
7661 sprintf (buf, ".reg2/%d", elfcore_make_pid (abfd));
7662 len = strlen (buf) + 1;
7663 name = bfd_alloc (abfd, len);
7666 memcpy (name, buf, len);
7668 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
7672 #if defined (HAVE_LWPSTATUS_T_PR_CONTEXT)
7673 sect->size = sizeof (lwpstat.pr_context.uc_mcontext.fpregs);
7674 sect->filepos = note->descpos
7675 + offsetof (lwpstatus_t, pr_context.uc_mcontext.fpregs);
7678 #if defined (HAVE_LWPSTATUS_T_PR_FPREG)
7679 sect->size = sizeof (lwpstat.pr_fpreg);
7680 sect->filepos = note->descpos + offsetof (lwpstatus_t, pr_fpreg);
7683 sect->alignment_power = 2;
7685 return elfcore_maybe_make_sect (abfd, ".reg2", sect);
7687 #endif /* defined (HAVE_LWPSTATUS_T) */
7690 elfcore_grok_win32pstatus (bfd *abfd, Elf_Internal_Note *note)
7697 int is_active_thread;
7700 if (note->descsz < 728)
7703 if (! CONST_STRNEQ (note->namedata, "win32"))
7706 type = bfd_get_32 (abfd, note->descdata);
7710 case 1 /* NOTE_INFO_PROCESS */:
7711 /* FIXME: need to add ->core_command. */
7712 /* process_info.pid */
7713 elf_tdata (abfd)->core_pid = bfd_get_32 (abfd, note->descdata + 8);
7714 /* process_info.signal */
7715 elf_tdata (abfd)->core_signal = bfd_get_32 (abfd, note->descdata + 12);
7718 case 2 /* NOTE_INFO_THREAD */:
7719 /* Make a ".reg/999" section. */
7720 /* thread_info.tid */
7721 sprintf (buf, ".reg/%ld", (long) bfd_get_32 (abfd, note->descdata + 8));
7723 len = strlen (buf) + 1;
7724 name = bfd_alloc (abfd, len);
7728 memcpy (name, buf, len);
7730 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
7734 /* sizeof (thread_info.thread_context) */
7736 /* offsetof (thread_info.thread_context) */
7737 sect->filepos = note->descpos + 12;
7738 sect->alignment_power = 2;
7740 /* thread_info.is_active_thread */
7741 is_active_thread = bfd_get_32 (abfd, note->descdata + 8);
7743 if (is_active_thread)
7744 if (! elfcore_maybe_make_sect (abfd, ".reg", sect))
7748 case 3 /* NOTE_INFO_MODULE */:
7749 /* Make a ".module/xxxxxxxx" section. */
7750 /* module_info.base_address */
7751 base_addr = bfd_get_32 (abfd, note->descdata + 4);
7752 sprintf (buf, ".module/%08lx", (long) base_addr);
7754 len = strlen (buf) + 1;
7755 name = bfd_alloc (abfd, len);
7759 memcpy (name, buf, len);
7761 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
7766 sect->size = note->descsz;
7767 sect->filepos = note->descpos;
7768 sect->alignment_power = 2;
7779 elfcore_grok_note (bfd *abfd, Elf_Internal_Note *note)
7781 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
7789 if (bed->elf_backend_grok_prstatus)
7790 if ((*bed->elf_backend_grok_prstatus) (abfd, note))
7792 #if defined (HAVE_PRSTATUS_T)
7793 return elfcore_grok_prstatus (abfd, note);
7798 #if defined (HAVE_PSTATUS_T)
7800 return elfcore_grok_pstatus (abfd, note);
7803 #if defined (HAVE_LWPSTATUS_T)
7805 return elfcore_grok_lwpstatus (abfd, note);
7808 case NT_FPREGSET: /* FIXME: rename to NT_PRFPREG */
7809 return elfcore_grok_prfpreg (abfd, note);
7811 case NT_WIN32PSTATUS:
7812 return elfcore_grok_win32pstatus (abfd, note);
7814 case NT_PRXFPREG: /* Linux SSE extension */
7815 if (note->namesz == 6
7816 && strcmp (note->namedata, "LINUX") == 0)
7817 return elfcore_grok_prxfpreg (abfd, note);
7822 if (note->namesz == 6
7823 && strcmp (note->namedata, "LINUX") == 0)
7824 return elfcore_grok_ppc_vmx (abfd, note);
7830 if (bed->elf_backend_grok_psinfo)
7831 if ((*bed->elf_backend_grok_psinfo) (abfd, note))
7833 #if defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T)
7834 return elfcore_grok_psinfo (abfd, note);
7841 asection *sect = bfd_make_section_anyway_with_flags (abfd, ".auxv",
7846 sect->size = note->descsz;
7847 sect->filepos = note->descpos;
7848 sect->alignment_power = 1 + bfd_get_arch_size (abfd) / 32;
7856 elfobj_grok_gnu_build_id (bfd *abfd, Elf_Internal_Note *note)
7858 elf_tdata (abfd)->build_id_size = note->descsz;
7859 elf_tdata (abfd)->build_id = bfd_alloc (abfd, note->descsz);
7860 if (elf_tdata (abfd)->build_id == NULL)
7863 memcpy (elf_tdata (abfd)->build_id, note->descdata, note->descsz);
7869 elfobj_grok_gnu_note (bfd *abfd, Elf_Internal_Note *note)
7876 case NT_GNU_BUILD_ID:
7877 return elfobj_grok_gnu_build_id (abfd, note);
7882 elfcore_netbsd_get_lwpid (Elf_Internal_Note *note, int *lwpidp)
7886 cp = strchr (note->namedata, '@');
7889 *lwpidp = atoi(cp + 1);
7896 elfcore_grok_netbsd_procinfo (bfd *abfd, Elf_Internal_Note *note)
7898 /* Signal number at offset 0x08. */
7899 elf_tdata (abfd)->core_signal
7900 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + 0x08);
7902 /* Process ID at offset 0x50. */
7903 elf_tdata (abfd)->core_pid
7904 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + 0x50);
7906 /* Command name at 0x7c (max 32 bytes, including nul). */
7907 elf_tdata (abfd)->core_command
7908 = _bfd_elfcore_strndup (abfd, note->descdata + 0x7c, 31);
7910 return elfcore_make_note_pseudosection (abfd, ".note.netbsdcore.procinfo",
7915 elfcore_grok_netbsd_note (bfd *abfd, Elf_Internal_Note *note)
7919 if (elfcore_netbsd_get_lwpid (note, &lwp))
7920 elf_tdata (abfd)->core_lwpid = lwp;
7922 if (note->type == NT_NETBSDCORE_PROCINFO)
7924 /* NetBSD-specific core "procinfo". Note that we expect to
7925 find this note before any of the others, which is fine,
7926 since the kernel writes this note out first when it
7927 creates a core file. */
7929 return elfcore_grok_netbsd_procinfo (abfd, note);
7932 /* As of Jan 2002 there are no other machine-independent notes
7933 defined for NetBSD core files. If the note type is less
7934 than the start of the machine-dependent note types, we don't
7937 if (note->type < NT_NETBSDCORE_FIRSTMACH)
7941 switch (bfd_get_arch (abfd))
7943 /* On the Alpha, SPARC (32-bit and 64-bit), PT_GETREGS == mach+0 and
7944 PT_GETFPREGS == mach+2. */
7946 case bfd_arch_alpha:
7947 case bfd_arch_sparc:
7950 case NT_NETBSDCORE_FIRSTMACH+0:
7951 return elfcore_make_note_pseudosection (abfd, ".reg", note);
7953 case NT_NETBSDCORE_FIRSTMACH+2:
7954 return elfcore_make_note_pseudosection (abfd, ".reg2", note);
7960 /* On all other arch's, PT_GETREGS == mach+1 and
7961 PT_GETFPREGS == mach+3. */
7966 case NT_NETBSDCORE_FIRSTMACH+1:
7967 return elfcore_make_note_pseudosection (abfd, ".reg", note);
7969 case NT_NETBSDCORE_FIRSTMACH+3:
7970 return elfcore_make_note_pseudosection (abfd, ".reg2", note);
7980 elfcore_grok_nto_status (bfd *abfd, Elf_Internal_Note *note, long *tid)
7982 void *ddata = note->descdata;
7989 /* nto_procfs_status 'pid' field is at offset 0. */
7990 elf_tdata (abfd)->core_pid = bfd_get_32 (abfd, (bfd_byte *) ddata);
7992 /* nto_procfs_status 'tid' field is at offset 4. Pass it back. */
7993 *tid = bfd_get_32 (abfd, (bfd_byte *) ddata + 4);
7995 /* nto_procfs_status 'flags' field is at offset 8. */
7996 flags = bfd_get_32 (abfd, (bfd_byte *) ddata + 8);
7998 /* nto_procfs_status 'what' field is at offset 14. */
7999 if ((sig = bfd_get_16 (abfd, (bfd_byte *) ddata + 14)) > 0)
8001 elf_tdata (abfd)->core_signal = sig;
8002 elf_tdata (abfd)->core_lwpid = *tid;
8005 /* _DEBUG_FLAG_CURTID (current thread) is 0x80. Some cores
8006 do not come from signals so we make sure we set the current
8007 thread just in case. */
8008 if (flags & 0x00000080)
8009 elf_tdata (abfd)->core_lwpid = *tid;
8011 /* Make a ".qnx_core_status/%d" section. */
8012 sprintf (buf, ".qnx_core_status/%ld", *tid);
8014 name = bfd_alloc (abfd, strlen (buf) + 1);
8019 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
8023 sect->size = note->descsz;
8024 sect->filepos = note->descpos;
8025 sect->alignment_power = 2;
8027 return (elfcore_maybe_make_sect (abfd, ".qnx_core_status", sect));
8031 elfcore_grok_nto_regs (bfd *abfd,
8032 Elf_Internal_Note *note,
8040 /* Make a "(base)/%d" section. */
8041 sprintf (buf, "%s/%ld", base, tid);
8043 name = bfd_alloc (abfd, strlen (buf) + 1);
8048 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
8052 sect->size = note->descsz;
8053 sect->filepos = note->descpos;
8054 sect->alignment_power = 2;
8056 /* This is the current thread. */
8057 if (elf_tdata (abfd)->core_lwpid == tid)
8058 return elfcore_maybe_make_sect (abfd, base, sect);
8063 #define BFD_QNT_CORE_INFO 7
8064 #define BFD_QNT_CORE_STATUS 8
8065 #define BFD_QNT_CORE_GREG 9
8066 #define BFD_QNT_CORE_FPREG 10
8069 elfcore_grok_nto_note (bfd *abfd, Elf_Internal_Note *note)
8071 /* Every GREG section has a STATUS section before it. Store the
8072 tid from the previous call to pass down to the next gregs
8074 static long tid = 1;
8078 case BFD_QNT_CORE_INFO:
8079 return elfcore_make_note_pseudosection (abfd, ".qnx_core_info", note);
8080 case BFD_QNT_CORE_STATUS:
8081 return elfcore_grok_nto_status (abfd, note, &tid);
8082 case BFD_QNT_CORE_GREG:
8083 return elfcore_grok_nto_regs (abfd, note, tid, ".reg");
8084 case BFD_QNT_CORE_FPREG:
8085 return elfcore_grok_nto_regs (abfd, note, tid, ".reg2");
8092 elfcore_grok_spu_note (bfd *abfd, Elf_Internal_Note *note)
8098 /* Use note name as section name. */
8100 name = bfd_alloc (abfd, len);
8103 memcpy (name, note->namedata, len);
8104 name[len - 1] = '\0';
8106 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
8110 sect->size = note->descsz;
8111 sect->filepos = note->descpos;
8112 sect->alignment_power = 1;
8117 /* Function: elfcore_write_note
8120 buffer to hold note, and current size of buffer
8124 size of data for note
8126 Writes note to end of buffer. ELF64 notes are written exactly as
8127 for ELF32, despite the current (as of 2006) ELF gabi specifying
8128 that they ought to have 8-byte namesz and descsz field, and have
8129 8-byte alignment. Other writers, eg. Linux kernel, do the same.
8132 Pointer to realloc'd buffer, *BUFSIZ updated. */
8135 elfcore_write_note (bfd *abfd,
8143 Elf_External_Note *xnp;
8150 namesz = strlen (name) + 1;
8152 newspace = 12 + ((namesz + 3) & -4) + ((size + 3) & -4);
8154 buf = realloc (buf, *bufsiz + newspace);
8157 dest = buf + *bufsiz;
8158 *bufsiz += newspace;
8159 xnp = (Elf_External_Note *) dest;
8160 H_PUT_32 (abfd, namesz, xnp->namesz);
8161 H_PUT_32 (abfd, size, xnp->descsz);
8162 H_PUT_32 (abfd, type, xnp->type);
8166 memcpy (dest, name, namesz);
8174 memcpy (dest, input, size);
8184 #if defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T)
8186 elfcore_write_prpsinfo (bfd *abfd,
8192 const char *note_name = "CORE";
8193 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
8195 if (bed->elf_backend_write_core_note != NULL)
8198 ret = (*bed->elf_backend_write_core_note) (abfd, buf, bufsiz,
8199 NT_PRPSINFO, fname, psargs);
8204 #if defined (HAVE_PRPSINFO32_T) || defined (HAVE_PSINFO32_T)
8205 if (bed->s->elfclass == ELFCLASS32)
8207 #if defined (HAVE_PSINFO32_T)
8209 int note_type = NT_PSINFO;
8212 int note_type = NT_PRPSINFO;
8215 memset (&data, 0, sizeof (data));
8216 strncpy (data.pr_fname, fname, sizeof (data.pr_fname));
8217 strncpy (data.pr_psargs, psargs, sizeof (data.pr_psargs));
8218 return elfcore_write_note (abfd, buf, bufsiz,
8219 note_name, note_type, &data, sizeof (data));
8224 #if defined (HAVE_PSINFO_T)
8226 int note_type = NT_PSINFO;
8229 int note_type = NT_PRPSINFO;
8232 memset (&data, 0, sizeof (data));
8233 strncpy (data.pr_fname, fname, sizeof (data.pr_fname));
8234 strncpy (data.pr_psargs, psargs, sizeof (data.pr_psargs));
8235 return elfcore_write_note (abfd, buf, bufsiz,
8236 note_name, note_type, &data, sizeof (data));
8239 #endif /* PSINFO_T or PRPSINFO_T */
8241 #if defined (HAVE_PRSTATUS_T)
8243 elfcore_write_prstatus (bfd *abfd,
8250 const char *note_name = "CORE";
8251 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
8253 if (bed->elf_backend_write_core_note != NULL)
8256 ret = (*bed->elf_backend_write_core_note) (abfd, buf, bufsiz,
8258 pid, cursig, gregs);
8263 #if defined (HAVE_PRSTATUS32_T)
8264 if (bed->s->elfclass == ELFCLASS32)
8266 prstatus32_t prstat;
8268 memset (&prstat, 0, sizeof (prstat));
8269 prstat.pr_pid = pid;
8270 prstat.pr_cursig = cursig;
8271 memcpy (&prstat.pr_reg, gregs, sizeof (prstat.pr_reg));
8272 return elfcore_write_note (abfd, buf, bufsiz, note_name,
8273 NT_PRSTATUS, &prstat, sizeof (prstat));
8280 memset (&prstat, 0, sizeof (prstat));
8281 prstat.pr_pid = pid;
8282 prstat.pr_cursig = cursig;
8283 memcpy (&prstat.pr_reg, gregs, sizeof (prstat.pr_reg));
8284 return elfcore_write_note (abfd, buf, bufsiz, note_name,
8285 NT_PRSTATUS, &prstat, sizeof (prstat));
8288 #endif /* HAVE_PRSTATUS_T */
8290 #if defined (HAVE_LWPSTATUS_T)
8292 elfcore_write_lwpstatus (bfd *abfd,
8299 lwpstatus_t lwpstat;
8300 const char *note_name = "CORE";
8302 memset (&lwpstat, 0, sizeof (lwpstat));
8303 lwpstat.pr_lwpid = pid >> 16;
8304 lwpstat.pr_cursig = cursig;
8305 #if defined (HAVE_LWPSTATUS_T_PR_REG)
8306 memcpy (lwpstat.pr_reg, gregs, sizeof (lwpstat.pr_reg));
8307 #elif defined (HAVE_LWPSTATUS_T_PR_CONTEXT)
8309 memcpy (lwpstat.pr_context.uc_mcontext.gregs,
8310 gregs, sizeof (lwpstat.pr_context.uc_mcontext.gregs));
8312 memcpy (lwpstat.pr_context.uc_mcontext.__gregs,
8313 gregs, sizeof (lwpstat.pr_context.uc_mcontext.__gregs));
8316 return elfcore_write_note (abfd, buf, bufsiz, note_name,
8317 NT_LWPSTATUS, &lwpstat, sizeof (lwpstat));
8319 #endif /* HAVE_LWPSTATUS_T */
8321 #if defined (HAVE_PSTATUS_T)
8323 elfcore_write_pstatus (bfd *abfd,
8327 int cursig ATTRIBUTE_UNUSED,
8328 const void *gregs ATTRIBUTE_UNUSED)
8330 const char *note_name = "CORE";
8331 #if defined (HAVE_PSTATUS32_T)
8332 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
8334 if (bed->s->elfclass == ELFCLASS32)
8338 memset (&pstat, 0, sizeof (pstat));
8339 pstat.pr_pid = pid & 0xffff;
8340 buf = elfcore_write_note (abfd, buf, bufsiz, note_name,
8341 NT_PSTATUS, &pstat, sizeof (pstat));
8349 memset (&pstat, 0, sizeof (pstat));
8350 pstat.pr_pid = pid & 0xffff;
8351 buf = elfcore_write_note (abfd, buf, bufsiz, note_name,
8352 NT_PSTATUS, &pstat, sizeof (pstat));
8356 #endif /* HAVE_PSTATUS_T */
8359 elfcore_write_prfpreg (bfd *abfd,
8365 const char *note_name = "CORE";
8366 return elfcore_write_note (abfd, buf, bufsiz,
8367 note_name, NT_FPREGSET, fpregs, size);
8371 elfcore_write_prxfpreg (bfd *abfd,
8374 const void *xfpregs,
8377 char *note_name = "LINUX";
8378 return elfcore_write_note (abfd, buf, bufsiz,
8379 note_name, NT_PRXFPREG, xfpregs, size);
8383 elfcore_write_ppc_vmx (bfd *abfd,
8386 const void *ppc_vmx,
8389 char *note_name = "LINUX";
8390 return elfcore_write_note (abfd, buf, bufsiz,
8391 note_name, NT_PPC_VMX, ppc_vmx, size);
8395 elf_parse_notes (bfd *abfd, char *buf, size_t size, file_ptr offset)
8400 while (p < buf + size)
8402 /* FIXME: bad alignment assumption. */
8403 Elf_External_Note *xnp = (Elf_External_Note *) p;
8404 Elf_Internal_Note in;
8406 in.type = H_GET_32 (abfd, xnp->type);
8408 in.namesz = H_GET_32 (abfd, xnp->namesz);
8409 in.namedata = xnp->name;
8411 in.descsz = H_GET_32 (abfd, xnp->descsz);
8412 in.descdata = in.namedata + BFD_ALIGN (in.namesz, 4);
8413 in.descpos = offset + (in.descdata - buf);
8415 switch (bfd_get_format (abfd))
8421 if (CONST_STRNEQ (in.namedata, "NetBSD-CORE"))
8423 if (! elfcore_grok_netbsd_note (abfd, &in))
8426 else if (CONST_STRNEQ (in.namedata, "QNX"))
8428 if (! elfcore_grok_nto_note (abfd, &in))
8431 else if (CONST_STRNEQ (in.namedata, "SPU/"))
8433 if (! elfcore_grok_spu_note (abfd, &in))
8438 if (! elfcore_grok_note (abfd, &in))
8444 if (in.namesz == sizeof "GNU" && strcmp (in.namedata, "GNU") == 0)
8446 if (! elfobj_grok_gnu_note (abfd, &in))
8452 p = in.descdata + BFD_ALIGN (in.descsz, 4);
8459 elf_read_notes (bfd *abfd, file_ptr offset, bfd_size_type size)
8466 if (bfd_seek (abfd, offset, SEEK_SET) != 0)
8469 buf = bfd_malloc (size);
8473 if (bfd_bread (buf, size, abfd) != size
8474 || !elf_parse_notes (abfd, buf, size, offset))
8484 /* Providing external access to the ELF program header table. */
8486 /* Return an upper bound on the number of bytes required to store a
8487 copy of ABFD's program header table entries. Return -1 if an error
8488 occurs; bfd_get_error will return an appropriate code. */
8491 bfd_get_elf_phdr_upper_bound (bfd *abfd)
8493 if (abfd->xvec->flavour != bfd_target_elf_flavour)
8495 bfd_set_error (bfd_error_wrong_format);
8499 return elf_elfheader (abfd)->e_phnum * sizeof (Elf_Internal_Phdr);
8502 /* Copy ABFD's program header table entries to *PHDRS. The entries
8503 will be stored as an array of Elf_Internal_Phdr structures, as
8504 defined in include/elf/internal.h. To find out how large the
8505 buffer needs to be, call bfd_get_elf_phdr_upper_bound.
8507 Return the number of program header table entries read, or -1 if an
8508 error occurs; bfd_get_error will return an appropriate code. */
8511 bfd_get_elf_phdrs (bfd *abfd, void *phdrs)
8515 if (abfd->xvec->flavour != bfd_target_elf_flavour)
8517 bfd_set_error (bfd_error_wrong_format);
8521 num_phdrs = elf_elfheader (abfd)->e_phnum;
8522 memcpy (phdrs, elf_tdata (abfd)->phdr,
8523 num_phdrs * sizeof (Elf_Internal_Phdr));
8528 enum elf_reloc_type_class
8529 _bfd_elf_reloc_type_class (const Elf_Internal_Rela *rela ATTRIBUTE_UNUSED)
8531 return reloc_class_normal;
8534 /* For RELA architectures, return the relocation value for a
8535 relocation against a local symbol. */
8538 _bfd_elf_rela_local_sym (bfd *abfd,
8539 Elf_Internal_Sym *sym,
8541 Elf_Internal_Rela *rel)
8543 asection *sec = *psec;
8546 relocation = (sec->output_section->vma
8547 + sec->output_offset
8549 if ((sec->flags & SEC_MERGE)
8550 && ELF_ST_TYPE (sym->st_info) == STT_SECTION
8551 && sec->sec_info_type == ELF_INFO_TYPE_MERGE)
8554 _bfd_merged_section_offset (abfd, psec,
8555 elf_section_data (sec)->sec_info,
8556 sym->st_value + rel->r_addend);
8559 /* If we have changed the section, and our original section is
8560 marked with SEC_EXCLUDE, it means that the original
8561 SEC_MERGE section has been completely subsumed in some
8562 other SEC_MERGE section. In this case, we need to leave
8563 some info around for --emit-relocs. */
8564 if ((sec->flags & SEC_EXCLUDE) != 0)
8565 sec->kept_section = *psec;
8568 rel->r_addend -= relocation;
8569 rel->r_addend += sec->output_section->vma + sec->output_offset;
8575 _bfd_elf_rel_local_sym (bfd *abfd,
8576 Elf_Internal_Sym *sym,
8580 asection *sec = *psec;
8582 if (sec->sec_info_type != ELF_INFO_TYPE_MERGE)
8583 return sym->st_value + addend;
8585 return _bfd_merged_section_offset (abfd, psec,
8586 elf_section_data (sec)->sec_info,
8587 sym->st_value + addend);
8591 _bfd_elf_section_offset (bfd *abfd,
8592 struct bfd_link_info *info,
8596 switch (sec->sec_info_type)
8598 case ELF_INFO_TYPE_STABS:
8599 return _bfd_stab_section_offset (sec, elf_section_data (sec)->sec_info,
8601 case ELF_INFO_TYPE_EH_FRAME:
8602 return _bfd_elf_eh_frame_section_offset (abfd, info, sec, offset);
8608 /* Create a new BFD as if by bfd_openr. Rather than opening a file,
8609 reconstruct an ELF file by reading the segments out of remote memory
8610 based on the ELF file header at EHDR_VMA and the ELF program headers it
8611 points to. If not null, *LOADBASEP is filled in with the difference
8612 between the VMAs from which the segments were read, and the VMAs the
8613 file headers (and hence BFD's idea of each section's VMA) put them at.
8615 The function TARGET_READ_MEMORY is called to copy LEN bytes from the
8616 remote memory at target address VMA into the local buffer at MYADDR; it
8617 should return zero on success or an `errno' code on failure. TEMPL must
8618 be a BFD for an ELF target with the word size and byte order found in
8619 the remote memory. */
8622 bfd_elf_bfd_from_remote_memory
8626 int (*target_read_memory) (bfd_vma, bfd_byte *, int))
8628 return (*get_elf_backend_data (templ)->elf_backend_bfd_from_remote_memory)
8629 (templ, ehdr_vma, loadbasep, target_read_memory);
8633 _bfd_elf_get_synthetic_symtab (bfd *abfd,
8634 long symcount ATTRIBUTE_UNUSED,
8635 asymbol **syms ATTRIBUTE_UNUSED,
8640 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
8643 const char *relplt_name;
8644 bfd_boolean (*slurp_relocs) (bfd *, asection *, asymbol **, bfd_boolean);
8648 Elf_Internal_Shdr *hdr;
8654 if ((abfd->flags & (DYNAMIC | EXEC_P)) == 0)
8657 if (dynsymcount <= 0)
8660 if (!bed->plt_sym_val)
8663 relplt_name = bed->relplt_name;
8664 if (relplt_name == NULL)
8665 relplt_name = bed->default_use_rela_p ? ".rela.plt" : ".rel.plt";
8666 relplt = bfd_get_section_by_name (abfd, relplt_name);
8670 hdr = &elf_section_data (relplt)->this_hdr;
8671 if (hdr->sh_link != elf_dynsymtab (abfd)
8672 || (hdr->sh_type != SHT_REL && hdr->sh_type != SHT_RELA))
8675 plt = bfd_get_section_by_name (abfd, ".plt");
8679 slurp_relocs = get_elf_backend_data (abfd)->s->slurp_reloc_table;
8680 if (! (*slurp_relocs) (abfd, relplt, dynsyms, TRUE))
8683 count = relplt->size / hdr->sh_entsize;
8684 size = count * sizeof (asymbol);
8685 p = relplt->relocation;
8686 for (i = 0; i < count; i++, p++)
8687 size += strlen ((*p->sym_ptr_ptr)->name) + sizeof ("@plt");
8689 s = *ret = bfd_malloc (size);
8693 names = (char *) (s + count);
8694 p = relplt->relocation;
8696 for (i = 0; i < count; i++, p++)
8701 addr = bed->plt_sym_val (i, plt, p);
8702 if (addr == (bfd_vma) -1)
8705 *s = **p->sym_ptr_ptr;
8706 /* Undefined syms won't have BSF_LOCAL or BSF_GLOBAL set. Since
8707 we are defining a symbol, ensure one of them is set. */
8708 if ((s->flags & BSF_LOCAL) == 0)
8709 s->flags |= BSF_GLOBAL;
8711 s->value = addr - plt->vma;
8714 len = strlen ((*p->sym_ptr_ptr)->name);
8715 memcpy (names, (*p->sym_ptr_ptr)->name, len);
8717 memcpy (names, "@plt", sizeof ("@plt"));
8718 names += sizeof ("@plt");
8725 /* It is only used by x86-64 so far. */
8726 asection _bfd_elf_large_com_section
8727 = BFD_FAKE_SECTION (_bfd_elf_large_com_section,
8728 SEC_IS_COMMON, NULL, "LARGE_COMMON", 0);
8731 _bfd_elf_set_osabi (bfd * abfd,
8732 struct bfd_link_info * link_info ATTRIBUTE_UNUSED)
8734 Elf_Internal_Ehdr * i_ehdrp; /* ELF file header, internal form. */
8736 i_ehdrp = elf_elfheader (abfd);
8738 i_ehdrp->e_ident[EI_OSABI] = get_elf_backend_data (abfd)->elf_osabi;
8742 /* Return TRUE for ELF symbol types that represent functions.
8743 This is the default version of this function, which is sufficient for
8744 most targets. It returns true if TYPE is STT_FUNC. */
8747 _bfd_elf_is_function_type (unsigned int type)
8749 return (type == STT_FUNC);