1 /* ELF executable support for BFD.
3 Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
4 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
6 This file is part of BFD, the Binary File Descriptor library.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */
26 BFD support for ELF formats is being worked on.
27 Currently, the best supported back ends are for sparc and i386
28 (running svr4 or Solaris 2).
30 Documentation of the internals of the support code still needs
31 to be written. The code is changing quickly enough that we
32 haven't bothered yet. */
34 /* For sparc64-cross-sparc32. */
42 #include "libiberty.h"
44 static int elf_sort_sections (const void *, const void *);
45 static bfd_boolean
assign_file_positions_except_relocs (bfd
*, struct bfd_link_info
*);
46 static bfd_boolean
prep_headers (bfd
*);
47 static bfd_boolean
swap_out_syms (bfd
*, struct bfd_strtab_hash
**, int) ;
48 static bfd_boolean
elfcore_read_notes (bfd
*, file_ptr
, bfd_size_type
) ;
50 /* Swap version information in and out. The version information is
51 currently size independent. If that ever changes, this code will
52 need to move into elfcode.h. */
54 /* Swap in a Verdef structure. */
57 _bfd_elf_swap_verdef_in (bfd
*abfd
,
58 const Elf_External_Verdef
*src
,
59 Elf_Internal_Verdef
*dst
)
61 dst
->vd_version
= H_GET_16 (abfd
, src
->vd_version
);
62 dst
->vd_flags
= H_GET_16 (abfd
, src
->vd_flags
);
63 dst
->vd_ndx
= H_GET_16 (abfd
, src
->vd_ndx
);
64 dst
->vd_cnt
= H_GET_16 (abfd
, src
->vd_cnt
);
65 dst
->vd_hash
= H_GET_32 (abfd
, src
->vd_hash
);
66 dst
->vd_aux
= H_GET_32 (abfd
, src
->vd_aux
);
67 dst
->vd_next
= H_GET_32 (abfd
, src
->vd_next
);
70 /* Swap out a Verdef structure. */
73 _bfd_elf_swap_verdef_out (bfd
*abfd
,
74 const Elf_Internal_Verdef
*src
,
75 Elf_External_Verdef
*dst
)
77 H_PUT_16 (abfd
, src
->vd_version
, dst
->vd_version
);
78 H_PUT_16 (abfd
, src
->vd_flags
, dst
->vd_flags
);
79 H_PUT_16 (abfd
, src
->vd_ndx
, dst
->vd_ndx
);
80 H_PUT_16 (abfd
, src
->vd_cnt
, dst
->vd_cnt
);
81 H_PUT_32 (abfd
, src
->vd_hash
, dst
->vd_hash
);
82 H_PUT_32 (abfd
, src
->vd_aux
, dst
->vd_aux
);
83 H_PUT_32 (abfd
, src
->vd_next
, dst
->vd_next
);
86 /* Swap in a Verdaux structure. */
89 _bfd_elf_swap_verdaux_in (bfd
*abfd
,
90 const Elf_External_Verdaux
*src
,
91 Elf_Internal_Verdaux
*dst
)
93 dst
->vda_name
= H_GET_32 (abfd
, src
->vda_name
);
94 dst
->vda_next
= H_GET_32 (abfd
, src
->vda_next
);
97 /* Swap out a Verdaux structure. */
100 _bfd_elf_swap_verdaux_out (bfd
*abfd
,
101 const Elf_Internal_Verdaux
*src
,
102 Elf_External_Verdaux
*dst
)
104 H_PUT_32 (abfd
, src
->vda_name
, dst
->vda_name
);
105 H_PUT_32 (abfd
, src
->vda_next
, dst
->vda_next
);
108 /* Swap in a Verneed structure. */
111 _bfd_elf_swap_verneed_in (bfd
*abfd
,
112 const Elf_External_Verneed
*src
,
113 Elf_Internal_Verneed
*dst
)
115 dst
->vn_version
= H_GET_16 (abfd
, src
->vn_version
);
116 dst
->vn_cnt
= H_GET_16 (abfd
, src
->vn_cnt
);
117 dst
->vn_file
= H_GET_32 (abfd
, src
->vn_file
);
118 dst
->vn_aux
= H_GET_32 (abfd
, src
->vn_aux
);
119 dst
->vn_next
= H_GET_32 (abfd
, src
->vn_next
);
122 /* Swap out a Verneed structure. */
125 _bfd_elf_swap_verneed_out (bfd
*abfd
,
126 const Elf_Internal_Verneed
*src
,
127 Elf_External_Verneed
*dst
)
129 H_PUT_16 (abfd
, src
->vn_version
, dst
->vn_version
);
130 H_PUT_16 (abfd
, src
->vn_cnt
, dst
->vn_cnt
);
131 H_PUT_32 (abfd
, src
->vn_file
, dst
->vn_file
);
132 H_PUT_32 (abfd
, src
->vn_aux
, dst
->vn_aux
);
133 H_PUT_32 (abfd
, src
->vn_next
, dst
->vn_next
);
136 /* Swap in a Vernaux structure. */
139 _bfd_elf_swap_vernaux_in (bfd
*abfd
,
140 const Elf_External_Vernaux
*src
,
141 Elf_Internal_Vernaux
*dst
)
143 dst
->vna_hash
= H_GET_32 (abfd
, src
->vna_hash
);
144 dst
->vna_flags
= H_GET_16 (abfd
, src
->vna_flags
);
145 dst
->vna_other
= H_GET_16 (abfd
, src
->vna_other
);
146 dst
->vna_name
= H_GET_32 (abfd
, src
->vna_name
);
147 dst
->vna_next
= H_GET_32 (abfd
, src
->vna_next
);
150 /* Swap out a Vernaux structure. */
153 _bfd_elf_swap_vernaux_out (bfd
*abfd
,
154 const Elf_Internal_Vernaux
*src
,
155 Elf_External_Vernaux
*dst
)
157 H_PUT_32 (abfd
, src
->vna_hash
, dst
->vna_hash
);
158 H_PUT_16 (abfd
, src
->vna_flags
, dst
->vna_flags
);
159 H_PUT_16 (abfd
, src
->vna_other
, dst
->vna_other
);
160 H_PUT_32 (abfd
, src
->vna_name
, dst
->vna_name
);
161 H_PUT_32 (abfd
, src
->vna_next
, dst
->vna_next
);
164 /* Swap in a Versym structure. */
167 _bfd_elf_swap_versym_in (bfd
*abfd
,
168 const Elf_External_Versym
*src
,
169 Elf_Internal_Versym
*dst
)
171 dst
->vs_vers
= H_GET_16 (abfd
, src
->vs_vers
);
174 /* Swap out a Versym structure. */
177 _bfd_elf_swap_versym_out (bfd
*abfd
,
178 const Elf_Internal_Versym
*src
,
179 Elf_External_Versym
*dst
)
181 H_PUT_16 (abfd
, src
->vs_vers
, dst
->vs_vers
);
184 /* Standard ELF hash function. Do not change this function; you will
185 cause invalid hash tables to be generated. */
188 bfd_elf_hash (const char *namearg
)
190 const unsigned char *name
= (const unsigned char *) namearg
;
195 while ((ch
= *name
++) != '\0')
198 if ((g
= (h
& 0xf0000000)) != 0)
201 /* The ELF ABI says `h &= ~g', but this is equivalent in
202 this case and on some machines one insn instead of two. */
206 return h
& 0xffffffff;
210 bfd_elf_mkobject (bfd
*abfd
)
212 /* This just does initialization. */
213 /* coff_mkobject zalloc's space for tdata.coff_obj_data ... */
214 elf_tdata (abfd
) = bfd_zalloc (abfd
, sizeof (struct elf_obj_tdata
));
215 if (elf_tdata (abfd
) == 0)
217 /* Since everything is done at close time, do we need any
224 bfd_elf_mkcorefile (bfd
*abfd
)
226 /* I think this can be done just like an object file. */
227 return bfd_elf_mkobject (abfd
);
231 bfd_elf_get_str_section (bfd
*abfd
, unsigned int shindex
)
233 Elf_Internal_Shdr
**i_shdrp
;
234 bfd_byte
*shstrtab
= NULL
;
236 bfd_size_type shstrtabsize
;
238 i_shdrp
= elf_elfsections (abfd
);
239 if (i_shdrp
== 0 || i_shdrp
[shindex
] == 0)
242 shstrtab
= i_shdrp
[shindex
]->contents
;
243 if (shstrtab
== NULL
)
245 /* No cached one, attempt to read, and cache what we read. */
246 offset
= i_shdrp
[shindex
]->sh_offset
;
247 shstrtabsize
= i_shdrp
[shindex
]->sh_size
;
249 /* Allocate and clear an extra byte at the end, to prevent crashes
250 in case the string table is not terminated. */
251 if (shstrtabsize
+ 1 == 0
252 || (shstrtab
= bfd_alloc (abfd
, shstrtabsize
+ 1)) == NULL
253 || bfd_seek (abfd
, offset
, SEEK_SET
) != 0)
255 else if (bfd_bread (shstrtab
, shstrtabsize
, abfd
) != shstrtabsize
)
257 if (bfd_get_error () != bfd_error_system_call
)
258 bfd_set_error (bfd_error_file_truncated
);
262 shstrtab
[shstrtabsize
] = '\0';
263 i_shdrp
[shindex
]->contents
= shstrtab
;
265 return (char *) shstrtab
;
269 bfd_elf_string_from_elf_section (bfd
*abfd
,
270 unsigned int shindex
,
271 unsigned int strindex
)
273 Elf_Internal_Shdr
*hdr
;
278 hdr
= elf_elfsections (abfd
)[shindex
];
280 if (hdr
->contents
== NULL
281 && bfd_elf_get_str_section (abfd
, shindex
) == NULL
)
284 if (strindex
>= hdr
->sh_size
)
286 unsigned int shstrndx
= elf_elfheader(abfd
)->e_shstrndx
;
287 (*_bfd_error_handler
)
288 (_("%B: invalid string offset %u >= %lu for section `%s'"),
289 abfd
, strindex
, (unsigned long) hdr
->sh_size
,
290 (shindex
== shstrndx
&& strindex
== hdr
->sh_name
292 : bfd_elf_string_from_elf_section (abfd
, shstrndx
, hdr
->sh_name
)));
296 return ((char *) hdr
->contents
) + strindex
;
299 /* Read and convert symbols to internal format.
300 SYMCOUNT specifies the number of symbols to read, starting from
301 symbol SYMOFFSET. If any of INTSYM_BUF, EXTSYM_BUF or EXTSHNDX_BUF
302 are non-NULL, they are used to store the internal symbols, external
303 symbols, and symbol section index extensions, respectively. */
306 bfd_elf_get_elf_syms (bfd
*ibfd
,
307 Elf_Internal_Shdr
*symtab_hdr
,
310 Elf_Internal_Sym
*intsym_buf
,
312 Elf_External_Sym_Shndx
*extshndx_buf
)
314 Elf_Internal_Shdr
*shndx_hdr
;
316 const bfd_byte
*esym
;
317 Elf_External_Sym_Shndx
*alloc_extshndx
;
318 Elf_External_Sym_Shndx
*shndx
;
319 Elf_Internal_Sym
*isym
;
320 Elf_Internal_Sym
*isymend
;
321 const struct elf_backend_data
*bed
;
329 /* Normal syms might have section extension entries. */
331 if (symtab_hdr
== &elf_tdata (ibfd
)->symtab_hdr
)
332 shndx_hdr
= &elf_tdata (ibfd
)->symtab_shndx_hdr
;
334 /* Read the symbols. */
336 alloc_extshndx
= NULL
;
337 bed
= get_elf_backend_data (ibfd
);
338 extsym_size
= bed
->s
->sizeof_sym
;
339 amt
= symcount
* extsym_size
;
340 pos
= symtab_hdr
->sh_offset
+ symoffset
* extsym_size
;
341 if (extsym_buf
== NULL
)
343 alloc_ext
= bfd_malloc2 (symcount
, extsym_size
);
344 extsym_buf
= alloc_ext
;
346 if (extsym_buf
== NULL
347 || bfd_seek (ibfd
, pos
, SEEK_SET
) != 0
348 || bfd_bread (extsym_buf
, amt
, ibfd
) != amt
)
354 if (shndx_hdr
== NULL
|| shndx_hdr
->sh_size
== 0)
358 amt
= symcount
* sizeof (Elf_External_Sym_Shndx
);
359 pos
= shndx_hdr
->sh_offset
+ symoffset
* sizeof (Elf_External_Sym_Shndx
);
360 if (extshndx_buf
== NULL
)
362 alloc_extshndx
= bfd_malloc2 (symcount
,
363 sizeof (Elf_External_Sym_Shndx
));
364 extshndx_buf
= alloc_extshndx
;
366 if (extshndx_buf
== NULL
367 || bfd_seek (ibfd
, pos
, SEEK_SET
) != 0
368 || bfd_bread (extshndx_buf
, amt
, ibfd
) != amt
)
375 if (intsym_buf
== NULL
)
377 intsym_buf
= bfd_malloc2 (symcount
, sizeof (Elf_Internal_Sym
));
378 if (intsym_buf
== NULL
)
382 /* Convert the symbols to internal form. */
383 isymend
= intsym_buf
+ symcount
;
384 for (esym
= extsym_buf
, isym
= intsym_buf
, shndx
= extshndx_buf
;
386 esym
+= extsym_size
, isym
++, shndx
= shndx
!= NULL
? shndx
+ 1 : NULL
)
387 (*bed
->s
->swap_symbol_in
) (ibfd
, esym
, shndx
, isym
);
390 if (alloc_ext
!= NULL
)
392 if (alloc_extshndx
!= NULL
)
393 free (alloc_extshndx
);
398 /* Look up a symbol name. */
400 bfd_elf_sym_name (bfd
*abfd
,
401 Elf_Internal_Shdr
*symtab_hdr
,
402 Elf_Internal_Sym
*isym
,
406 unsigned int iname
= isym
->st_name
;
407 unsigned int shindex
= symtab_hdr
->sh_link
;
409 if (iname
== 0 && ELF_ST_TYPE (isym
->st_info
) == STT_SECTION
410 /* Check for a bogus st_shndx to avoid crashing. */
411 && isym
->st_shndx
< elf_numsections (abfd
)
412 && !(isym
->st_shndx
>= SHN_LORESERVE
&& isym
->st_shndx
<= SHN_HIRESERVE
))
414 iname
= elf_elfsections (abfd
)[isym
->st_shndx
]->sh_name
;
415 shindex
= elf_elfheader (abfd
)->e_shstrndx
;
418 name
= bfd_elf_string_from_elf_section (abfd
, shindex
, iname
);
421 else if (sym_sec
&& *name
== '\0')
422 name
= bfd_section_name (abfd
, sym_sec
);
427 /* Elf_Internal_Shdr->contents is an array of these for SHT_GROUP
428 sections. The first element is the flags, the rest are section
431 typedef union elf_internal_group
{
432 Elf_Internal_Shdr
*shdr
;
434 } Elf_Internal_Group
;
436 /* Return the name of the group signature symbol. Why isn't the
437 signature just a string? */
440 group_signature (bfd
*abfd
, Elf_Internal_Shdr
*ghdr
)
442 Elf_Internal_Shdr
*hdr
;
443 unsigned char esym
[sizeof (Elf64_External_Sym
)];
444 Elf_External_Sym_Shndx eshndx
;
445 Elf_Internal_Sym isym
;
447 /* First we need to ensure the symbol table is available. Make sure
448 that it is a symbol table section. */
449 hdr
= elf_elfsections (abfd
) [ghdr
->sh_link
];
450 if (hdr
->sh_type
!= SHT_SYMTAB
451 || ! bfd_section_from_shdr (abfd
, ghdr
->sh_link
))
454 /* Go read the symbol. */
455 hdr
= &elf_tdata (abfd
)->symtab_hdr
;
456 if (bfd_elf_get_elf_syms (abfd
, hdr
, 1, ghdr
->sh_info
,
457 &isym
, esym
, &eshndx
) == NULL
)
460 return bfd_elf_sym_name (abfd
, hdr
, &isym
, NULL
);
463 /* Set next_in_group list pointer, and group name for NEWSECT. */
466 setup_group (bfd
*abfd
, Elf_Internal_Shdr
*hdr
, asection
*newsect
)
468 unsigned int num_group
= elf_tdata (abfd
)->num_group
;
470 /* If num_group is zero, read in all SHT_GROUP sections. The count
471 is set to -1 if there are no SHT_GROUP sections. */
474 unsigned int i
, shnum
;
476 /* First count the number of groups. If we have a SHT_GROUP
477 section with just a flag word (ie. sh_size is 4), ignore it. */
478 shnum
= elf_numsections (abfd
);
480 for (i
= 0; i
< shnum
; i
++)
482 Elf_Internal_Shdr
*shdr
= elf_elfsections (abfd
)[i
];
483 if (shdr
->sh_type
== SHT_GROUP
&& shdr
->sh_size
>= 8)
489 num_group
= (unsigned) -1;
490 elf_tdata (abfd
)->num_group
= num_group
;
494 /* We keep a list of elf section headers for group sections,
495 so we can find them quickly. */
498 elf_tdata (abfd
)->num_group
= num_group
;
499 elf_tdata (abfd
)->group_sect_ptr
500 = bfd_alloc2 (abfd
, num_group
, sizeof (Elf_Internal_Shdr
*));
501 if (elf_tdata (abfd
)->group_sect_ptr
== NULL
)
505 for (i
= 0; i
< shnum
; i
++)
507 Elf_Internal_Shdr
*shdr
= elf_elfsections (abfd
)[i
];
508 if (shdr
->sh_type
== SHT_GROUP
&& shdr
->sh_size
>= 8)
511 Elf_Internal_Group
*dest
;
513 /* Add to list of sections. */
514 elf_tdata (abfd
)->group_sect_ptr
[num_group
] = shdr
;
517 /* Read the raw contents. */
518 BFD_ASSERT (sizeof (*dest
) >= 4);
519 amt
= shdr
->sh_size
* sizeof (*dest
) / 4;
520 shdr
->contents
= bfd_alloc2 (abfd
, shdr
->sh_size
,
522 if (shdr
->contents
== NULL
523 || bfd_seek (abfd
, shdr
->sh_offset
, SEEK_SET
) != 0
524 || (bfd_bread (shdr
->contents
, shdr
->sh_size
, abfd
)
528 /* Translate raw contents, a flag word followed by an
529 array of elf section indices all in target byte order,
530 to the flag word followed by an array of elf section
532 src
= shdr
->contents
+ shdr
->sh_size
;
533 dest
= (Elf_Internal_Group
*) (shdr
->contents
+ amt
);
540 idx
= H_GET_32 (abfd
, src
);
541 if (src
== shdr
->contents
)
544 if (shdr
->bfd_section
!= NULL
&& (idx
& GRP_COMDAT
))
545 shdr
->bfd_section
->flags
546 |= SEC_LINK_ONCE
| SEC_LINK_DUPLICATES_DISCARD
;
551 ((*_bfd_error_handler
)
552 (_("%B: invalid SHT_GROUP entry"), abfd
));
555 dest
->shdr
= elf_elfsections (abfd
)[idx
];
562 if (num_group
!= (unsigned) -1)
566 for (i
= 0; i
< num_group
; i
++)
568 Elf_Internal_Shdr
*shdr
= elf_tdata (abfd
)->group_sect_ptr
[i
];
569 Elf_Internal_Group
*idx
= (Elf_Internal_Group
*) shdr
->contents
;
570 unsigned int n_elt
= shdr
->sh_size
/ 4;
572 /* Look through this group's sections to see if current
573 section is a member. */
575 if ((++idx
)->shdr
== hdr
)
579 /* We are a member of this group. Go looking through
580 other members to see if any others are linked via
582 idx
= (Elf_Internal_Group
*) shdr
->contents
;
583 n_elt
= shdr
->sh_size
/ 4;
585 if ((s
= (++idx
)->shdr
->bfd_section
) != NULL
586 && elf_next_in_group (s
) != NULL
)
590 /* Snarf the group name from other member, and
591 insert current section in circular list. */
592 elf_group_name (newsect
) = elf_group_name (s
);
593 elf_next_in_group (newsect
) = elf_next_in_group (s
);
594 elf_next_in_group (s
) = newsect
;
600 gname
= group_signature (abfd
, shdr
);
603 elf_group_name (newsect
) = gname
;
605 /* Start a circular list with one element. */
606 elf_next_in_group (newsect
) = newsect
;
609 /* If the group section has been created, point to the
611 if (shdr
->bfd_section
!= NULL
)
612 elf_next_in_group (shdr
->bfd_section
) = newsect
;
620 if (elf_group_name (newsect
) == NULL
)
622 (*_bfd_error_handler
) (_("%B: no group info for section %A"),
629 _bfd_elf_setup_sections (bfd
*abfd
)
632 unsigned int num_group
= elf_tdata (abfd
)->num_group
;
633 bfd_boolean result
= TRUE
;
636 /* Process SHF_LINK_ORDER. */
637 for (s
= abfd
->sections
; s
!= NULL
; s
= s
->next
)
639 Elf_Internal_Shdr
*this_hdr
= &elf_section_data (s
)->this_hdr
;
640 if ((this_hdr
->sh_flags
& SHF_LINK_ORDER
) != 0)
642 unsigned int elfsec
= this_hdr
->sh_link
;
643 /* FIXME: The old Intel compiler and old strip/objcopy may
644 not set the sh_link or sh_info fields. Hence we could
645 get the situation where elfsec is 0. */
648 const struct elf_backend_data
*bed
649 = get_elf_backend_data (abfd
);
650 if (bed
->link_order_error_handler
)
651 bed
->link_order_error_handler
652 (_("%B: warning: sh_link not set for section `%A'"),
657 this_hdr
= elf_elfsections (abfd
)[elfsec
];
658 elf_linked_to_section (s
) = this_hdr
->bfd_section
;
663 /* Process section groups. */
664 if (num_group
== (unsigned) -1)
667 for (i
= 0; i
< num_group
; i
++)
669 Elf_Internal_Shdr
*shdr
= elf_tdata (abfd
)->group_sect_ptr
[i
];
670 Elf_Internal_Group
*idx
= (Elf_Internal_Group
*) shdr
->contents
;
671 unsigned int n_elt
= shdr
->sh_size
/ 4;
674 if ((++idx
)->shdr
->bfd_section
)
675 elf_sec_group (idx
->shdr
->bfd_section
) = shdr
->bfd_section
;
676 else if (idx
->shdr
->sh_type
== SHT_RELA
677 || idx
->shdr
->sh_type
== SHT_REL
)
678 /* We won't include relocation sections in section groups in
679 output object files. We adjust the group section size here
680 so that relocatable link will work correctly when
681 relocation sections are in section group in input object
683 shdr
->bfd_section
->size
-= 4;
686 /* There are some unknown sections in the group. */
687 (*_bfd_error_handler
)
688 (_("%B: unknown [%d] section `%s' in group [%s]"),
690 (unsigned int) idx
->shdr
->sh_type
,
691 bfd_elf_string_from_elf_section (abfd
,
692 (elf_elfheader (abfd
)
695 shdr
->bfd_section
->name
);
703 bfd_elf_is_group_section (bfd
*abfd ATTRIBUTE_UNUSED
, const asection
*sec
)
705 return elf_next_in_group (sec
) != NULL
;
708 /* Make a BFD section from an ELF section. We store a pointer to the
709 BFD section in the bfd_section field of the header. */
712 _bfd_elf_make_section_from_shdr (bfd
*abfd
,
713 Elf_Internal_Shdr
*hdr
,
719 const struct elf_backend_data
*bed
;
721 if (hdr
->bfd_section
!= NULL
)
723 BFD_ASSERT (strcmp (name
,
724 bfd_get_section_name (abfd
, hdr
->bfd_section
)) == 0);
728 newsect
= bfd_make_section_anyway (abfd
, name
);
732 hdr
->bfd_section
= newsect
;
733 elf_section_data (newsect
)->this_hdr
= *hdr
;
734 elf_section_data (newsect
)->this_idx
= shindex
;
736 /* Always use the real type/flags. */
737 elf_section_type (newsect
) = hdr
->sh_type
;
738 elf_section_flags (newsect
) = hdr
->sh_flags
;
740 newsect
->filepos
= hdr
->sh_offset
;
742 if (! bfd_set_section_vma (abfd
, newsect
, hdr
->sh_addr
)
743 || ! bfd_set_section_size (abfd
, newsect
, hdr
->sh_size
)
744 || ! bfd_set_section_alignment (abfd
, newsect
,
745 bfd_log2 ((bfd_vma
) hdr
->sh_addralign
)))
748 flags
= SEC_NO_FLAGS
;
749 if (hdr
->sh_type
!= SHT_NOBITS
)
750 flags
|= SEC_HAS_CONTENTS
;
751 if (hdr
->sh_type
== SHT_GROUP
)
752 flags
|= SEC_GROUP
| SEC_EXCLUDE
;
753 if ((hdr
->sh_flags
& SHF_ALLOC
) != 0)
756 if (hdr
->sh_type
!= SHT_NOBITS
)
759 if ((hdr
->sh_flags
& SHF_WRITE
) == 0)
760 flags
|= SEC_READONLY
;
761 if ((hdr
->sh_flags
& SHF_EXECINSTR
) != 0)
763 else if ((flags
& SEC_LOAD
) != 0)
765 if ((hdr
->sh_flags
& SHF_MERGE
) != 0)
768 newsect
->entsize
= hdr
->sh_entsize
;
769 if ((hdr
->sh_flags
& SHF_STRINGS
) != 0)
770 flags
|= SEC_STRINGS
;
772 if (hdr
->sh_flags
& SHF_GROUP
)
773 if (!setup_group (abfd
, hdr
, newsect
))
775 if ((hdr
->sh_flags
& SHF_TLS
) != 0)
776 flags
|= SEC_THREAD_LOCAL
;
778 if ((flags
& SEC_ALLOC
) == 0)
780 /* The debugging sections appear to be recognized only by name,
781 not any sort of flag. Their SEC_ALLOC bits are cleared. */
786 } debug_sections
[] =
788 { "debug", 5 }, /* 'd' */
789 { NULL
, 0 }, /* 'e' */
790 { NULL
, 0 }, /* 'f' */
791 { "gnu.linkonce.wi.", 17 }, /* 'g' */
792 { NULL
, 0 }, /* 'h' */
793 { NULL
, 0 }, /* 'i' */
794 { NULL
, 0 }, /* 'j' */
795 { NULL
, 0 }, /* 'k' */
796 { "line", 4 }, /* 'l' */
797 { NULL
, 0 }, /* 'm' */
798 { NULL
, 0 }, /* 'n' */
799 { NULL
, 0 }, /* 'o' */
800 { NULL
, 0 }, /* 'p' */
801 { NULL
, 0 }, /* 'q' */
802 { NULL
, 0 }, /* 'r' */
803 { "stab", 4 } /* 's' */
808 int i
= name
[1] - 'd';
810 && i
< (int) ARRAY_SIZE (debug_sections
)
811 && debug_sections
[i
].name
!= NULL
812 && strncmp (&name
[1], debug_sections
[i
].name
,
813 debug_sections
[i
].len
) == 0)
814 flags
|= SEC_DEBUGGING
;
818 /* As a GNU extension, if the name begins with .gnu.linkonce, we
819 only link a single copy of the section. This is used to support
820 g++. g++ will emit each template expansion in its own section.
821 The symbols will be defined as weak, so that multiple definitions
822 are permitted. The GNU linker extension is to actually discard
823 all but one of the sections. */
824 if (strncmp (name
, ".gnu.linkonce", sizeof ".gnu.linkonce" - 1) == 0
825 && elf_next_in_group (newsect
) == NULL
)
826 flags
|= SEC_LINK_ONCE
| SEC_LINK_DUPLICATES_DISCARD
;
828 bed
= get_elf_backend_data (abfd
);
829 if (bed
->elf_backend_section_flags
)
830 if (! bed
->elf_backend_section_flags (&flags
, hdr
))
833 if (! bfd_set_section_flags (abfd
, newsect
, flags
))
836 if ((flags
& SEC_ALLOC
) != 0)
838 Elf_Internal_Phdr
*phdr
;
841 /* Look through the phdrs to see if we need to adjust the lma.
842 If all the p_paddr fields are zero, we ignore them, since
843 some ELF linkers produce such output. */
844 phdr
= elf_tdata (abfd
)->phdr
;
845 for (i
= 0; i
< elf_elfheader (abfd
)->e_phnum
; i
++, phdr
++)
847 if (phdr
->p_paddr
!= 0)
850 if (i
< elf_elfheader (abfd
)->e_phnum
)
852 phdr
= elf_tdata (abfd
)->phdr
;
853 for (i
= 0; i
< elf_elfheader (abfd
)->e_phnum
; i
++, phdr
++)
855 /* This section is part of this segment if its file
856 offset plus size lies within the segment's memory
857 span and, if the section is loaded, the extent of the
858 loaded data lies within the extent of the segment.
860 Note - we used to check the p_paddr field as well, and
861 refuse to set the LMA if it was 0. This is wrong
862 though, as a perfectly valid initialised segment can
863 have a p_paddr of zero. Some architectures, eg ARM,
864 place special significance on the address 0 and
865 executables need to be able to have a segment which
866 covers this address. */
867 if (phdr
->p_type
== PT_LOAD
868 && (bfd_vma
) hdr
->sh_offset
>= phdr
->p_offset
869 && (hdr
->sh_offset
+ hdr
->sh_size
870 <= phdr
->p_offset
+ phdr
->p_memsz
)
871 && ((flags
& SEC_LOAD
) == 0
872 || (hdr
->sh_offset
+ hdr
->sh_size
873 <= phdr
->p_offset
+ phdr
->p_filesz
)))
875 if ((flags
& SEC_LOAD
) == 0)
876 newsect
->lma
= (phdr
->p_paddr
877 + hdr
->sh_addr
- phdr
->p_vaddr
);
879 /* We used to use the same adjustment for SEC_LOAD
880 sections, but that doesn't work if the segment
881 is packed with code from multiple VMAs.
882 Instead we calculate the section LMA based on
883 the segment LMA. It is assumed that the
884 segment will contain sections with contiguous
885 LMAs, even if the VMAs are not. */
886 newsect
->lma
= (phdr
->p_paddr
887 + hdr
->sh_offset
- phdr
->p_offset
);
889 /* With contiguous segments, we can't tell from file
890 offsets whether a section with zero size should
891 be placed at the end of one segment or the
892 beginning of the next. Decide based on vaddr. */
893 if (hdr
->sh_addr
>= phdr
->p_vaddr
894 && (hdr
->sh_addr
+ hdr
->sh_size
895 <= phdr
->p_vaddr
+ phdr
->p_memsz
))
910 struct elf_internal_shdr *bfd_elf_find_section (bfd *abfd, char *name);
913 Helper functions for GDB to locate the string tables.
914 Since BFD hides string tables from callers, GDB needs to use an
915 internal hook to find them. Sun's .stabstr, in particular,
916 isn't even pointed to by the .stab section, so ordinary
917 mechanisms wouldn't work to find it, even if we had some.
920 struct elf_internal_shdr
*
921 bfd_elf_find_section (bfd
*abfd
, char *name
)
923 Elf_Internal_Shdr
**i_shdrp
;
928 i_shdrp
= elf_elfsections (abfd
);
931 shstrtab
= bfd_elf_get_str_section (abfd
,
932 elf_elfheader (abfd
)->e_shstrndx
);
933 if (shstrtab
!= NULL
)
935 max
= elf_numsections (abfd
);
936 for (i
= 1; i
< max
; i
++)
937 if (!strcmp (&shstrtab
[i_shdrp
[i
]->sh_name
], name
))
944 const char *const bfd_elf_section_type_names
[] = {
945 "SHT_NULL", "SHT_PROGBITS", "SHT_SYMTAB", "SHT_STRTAB",
946 "SHT_RELA", "SHT_HASH", "SHT_DYNAMIC", "SHT_NOTE",
947 "SHT_NOBITS", "SHT_REL", "SHT_SHLIB", "SHT_DYNSYM",
950 /* ELF relocs are against symbols. If we are producing relocatable
951 output, and the reloc is against an external symbol, and nothing
952 has given us any additional addend, the resulting reloc will also
953 be against the same symbol. In such a case, we don't want to
954 change anything about the way the reloc is handled, since it will
955 all be done at final link time. Rather than put special case code
956 into bfd_perform_relocation, all the reloc types use this howto
957 function. It just short circuits the reloc if producing
958 relocatable output against an external symbol. */
960 bfd_reloc_status_type
961 bfd_elf_generic_reloc (bfd
*abfd ATTRIBUTE_UNUSED
,
962 arelent
*reloc_entry
,
964 void *data ATTRIBUTE_UNUSED
,
965 asection
*input_section
,
967 char **error_message ATTRIBUTE_UNUSED
)
969 if (output_bfd
!= NULL
970 && (symbol
->flags
& BSF_SECTION_SYM
) == 0
971 && (! reloc_entry
->howto
->partial_inplace
972 || reloc_entry
->addend
== 0))
974 reloc_entry
->address
+= input_section
->output_offset
;
978 return bfd_reloc_continue
;
981 /* Make sure sec_info_type is cleared if sec_info is cleared too. */
984 merge_sections_remove_hook (bfd
*abfd ATTRIBUTE_UNUSED
,
987 BFD_ASSERT (sec
->sec_info_type
== ELF_INFO_TYPE_MERGE
);
988 sec
->sec_info_type
= ELF_INFO_TYPE_NONE
;
991 /* Finish SHF_MERGE section merging. */
994 _bfd_elf_merge_sections (bfd
*abfd
, struct bfd_link_info
*info
)
999 if (!is_elf_hash_table (info
->hash
))
1002 for (ibfd
= info
->input_bfds
; ibfd
!= NULL
; ibfd
= ibfd
->link_next
)
1003 if ((ibfd
->flags
& DYNAMIC
) == 0)
1004 for (sec
= ibfd
->sections
; sec
!= NULL
; sec
= sec
->next
)
1005 if ((sec
->flags
& SEC_MERGE
) != 0
1006 && !bfd_is_abs_section (sec
->output_section
))
1008 struct bfd_elf_section_data
*secdata
;
1010 secdata
= elf_section_data (sec
);
1011 if (! _bfd_add_merge_section (abfd
,
1012 &elf_hash_table (info
)->merge_info
,
1013 sec
, &secdata
->sec_info
))
1015 else if (secdata
->sec_info
)
1016 sec
->sec_info_type
= ELF_INFO_TYPE_MERGE
;
1019 if (elf_hash_table (info
)->merge_info
!= NULL
)
1020 _bfd_merge_sections (abfd
, info
, elf_hash_table (info
)->merge_info
,
1021 merge_sections_remove_hook
);
1026 _bfd_elf_link_just_syms (asection
*sec
, struct bfd_link_info
*info
)
1028 sec
->output_section
= bfd_abs_section_ptr
;
1029 sec
->output_offset
= sec
->vma
;
1030 if (!is_elf_hash_table (info
->hash
))
1033 sec
->sec_info_type
= ELF_INFO_TYPE_JUST_SYMS
;
1036 /* Copy the program header and other data from one object module to
1040 _bfd_elf_copy_private_bfd_data (bfd
*ibfd
, bfd
*obfd
)
1042 if (bfd_get_flavour (ibfd
) != bfd_target_elf_flavour
1043 || bfd_get_flavour (obfd
) != bfd_target_elf_flavour
)
1046 BFD_ASSERT (!elf_flags_init (obfd
)
1047 || (elf_elfheader (obfd
)->e_flags
1048 == elf_elfheader (ibfd
)->e_flags
));
1050 elf_gp (obfd
) = elf_gp (ibfd
);
1051 elf_elfheader (obfd
)->e_flags
= elf_elfheader (ibfd
)->e_flags
;
1052 elf_flags_init (obfd
) = TRUE
;
1056 /* Print out the program headers. */
1059 _bfd_elf_print_private_bfd_data (bfd
*abfd
, void *farg
)
1062 Elf_Internal_Phdr
*p
;
1064 bfd_byte
*dynbuf
= NULL
;
1066 p
= elf_tdata (abfd
)->phdr
;
1071 fprintf (f
, _("\nProgram Header:\n"));
1072 c
= elf_elfheader (abfd
)->e_phnum
;
1073 for (i
= 0; i
< c
; i
++, p
++)
1080 case PT_NULL
: pt
= "NULL"; break;
1081 case PT_LOAD
: pt
= "LOAD"; break;
1082 case PT_DYNAMIC
: pt
= "DYNAMIC"; break;
1083 case PT_INTERP
: pt
= "INTERP"; break;
1084 case PT_NOTE
: pt
= "NOTE"; break;
1085 case PT_SHLIB
: pt
= "SHLIB"; break;
1086 case PT_PHDR
: pt
= "PHDR"; break;
1087 case PT_TLS
: pt
= "TLS"; break;
1088 case PT_GNU_EH_FRAME
: pt
= "EH_FRAME"; break;
1089 case PT_GNU_STACK
: pt
= "STACK"; break;
1090 case PT_GNU_RELRO
: pt
= "RELRO"; break;
1091 default: sprintf (buf
, "0x%lx", p
->p_type
); pt
= buf
; break;
1093 fprintf (f
, "%8s off 0x", pt
);
1094 bfd_fprintf_vma (abfd
, f
, p
->p_offset
);
1095 fprintf (f
, " vaddr 0x");
1096 bfd_fprintf_vma (abfd
, f
, p
->p_vaddr
);
1097 fprintf (f
, " paddr 0x");
1098 bfd_fprintf_vma (abfd
, f
, p
->p_paddr
);
1099 fprintf (f
, " align 2**%u\n", bfd_log2 (p
->p_align
));
1100 fprintf (f
, " filesz 0x");
1101 bfd_fprintf_vma (abfd
, f
, p
->p_filesz
);
1102 fprintf (f
, " memsz 0x");
1103 bfd_fprintf_vma (abfd
, f
, p
->p_memsz
);
1104 fprintf (f
, " flags %c%c%c",
1105 (p
->p_flags
& PF_R
) != 0 ? 'r' : '-',
1106 (p
->p_flags
& PF_W
) != 0 ? 'w' : '-',
1107 (p
->p_flags
& PF_X
) != 0 ? 'x' : '-');
1108 if ((p
->p_flags
&~ (unsigned) (PF_R
| PF_W
| PF_X
)) != 0)
1109 fprintf (f
, " %lx", p
->p_flags
&~ (unsigned) (PF_R
| PF_W
| PF_X
));
1114 s
= bfd_get_section_by_name (abfd
, ".dynamic");
1118 unsigned long shlink
;
1119 bfd_byte
*extdyn
, *extdynend
;
1121 void (*swap_dyn_in
) (bfd
*, const void *, Elf_Internal_Dyn
*);
1123 fprintf (f
, _("\nDynamic Section:\n"));
1125 if (!bfd_malloc_and_get_section (abfd
, s
, &dynbuf
))
1128 elfsec
= _bfd_elf_section_from_bfd_section (abfd
, s
);
1131 shlink
= elf_elfsections (abfd
)[elfsec
]->sh_link
;
1133 extdynsize
= get_elf_backend_data (abfd
)->s
->sizeof_dyn
;
1134 swap_dyn_in
= get_elf_backend_data (abfd
)->s
->swap_dyn_in
;
1137 extdynend
= extdyn
+ s
->size
;
1138 for (; extdyn
< extdynend
; extdyn
+= extdynsize
)
1140 Elf_Internal_Dyn dyn
;
1143 bfd_boolean stringp
;
1145 (*swap_dyn_in
) (abfd
, extdyn
, &dyn
);
1147 if (dyn
.d_tag
== DT_NULL
)
1154 sprintf (ab
, "0x%lx", (unsigned long) dyn
.d_tag
);
1158 case DT_NEEDED
: name
= "NEEDED"; stringp
= TRUE
; break;
1159 case DT_PLTRELSZ
: name
= "PLTRELSZ"; break;
1160 case DT_PLTGOT
: name
= "PLTGOT"; break;
1161 case DT_HASH
: name
= "HASH"; break;
1162 case DT_STRTAB
: name
= "STRTAB"; break;
1163 case DT_SYMTAB
: name
= "SYMTAB"; break;
1164 case DT_RELA
: name
= "RELA"; break;
1165 case DT_RELASZ
: name
= "RELASZ"; break;
1166 case DT_RELAENT
: name
= "RELAENT"; break;
1167 case DT_STRSZ
: name
= "STRSZ"; break;
1168 case DT_SYMENT
: name
= "SYMENT"; break;
1169 case DT_INIT
: name
= "INIT"; break;
1170 case DT_FINI
: name
= "FINI"; break;
1171 case DT_SONAME
: name
= "SONAME"; stringp
= TRUE
; break;
1172 case DT_RPATH
: name
= "RPATH"; stringp
= TRUE
; break;
1173 case DT_SYMBOLIC
: name
= "SYMBOLIC"; break;
1174 case DT_REL
: name
= "REL"; break;
1175 case DT_RELSZ
: name
= "RELSZ"; break;
1176 case DT_RELENT
: name
= "RELENT"; break;
1177 case DT_PLTREL
: name
= "PLTREL"; break;
1178 case DT_DEBUG
: name
= "DEBUG"; break;
1179 case DT_TEXTREL
: name
= "TEXTREL"; break;
1180 case DT_JMPREL
: name
= "JMPREL"; break;
1181 case DT_BIND_NOW
: name
= "BIND_NOW"; break;
1182 case DT_INIT_ARRAY
: name
= "INIT_ARRAY"; break;
1183 case DT_FINI_ARRAY
: name
= "FINI_ARRAY"; break;
1184 case DT_INIT_ARRAYSZ
: name
= "INIT_ARRAYSZ"; break;
1185 case DT_FINI_ARRAYSZ
: name
= "FINI_ARRAYSZ"; break;
1186 case DT_RUNPATH
: name
= "RUNPATH"; stringp
= TRUE
; break;
1187 case DT_FLAGS
: name
= "FLAGS"; break;
1188 case DT_PREINIT_ARRAY
: name
= "PREINIT_ARRAY"; break;
1189 case DT_PREINIT_ARRAYSZ
: name
= "PREINIT_ARRAYSZ"; break;
1190 case DT_CHECKSUM
: name
= "CHECKSUM"; break;
1191 case DT_PLTPADSZ
: name
= "PLTPADSZ"; break;
1192 case DT_MOVEENT
: name
= "MOVEENT"; break;
1193 case DT_MOVESZ
: name
= "MOVESZ"; break;
1194 case DT_FEATURE
: name
= "FEATURE"; break;
1195 case DT_POSFLAG_1
: name
= "POSFLAG_1"; break;
1196 case DT_SYMINSZ
: name
= "SYMINSZ"; break;
1197 case DT_SYMINENT
: name
= "SYMINENT"; break;
1198 case DT_CONFIG
: name
= "CONFIG"; stringp
= TRUE
; break;
1199 case DT_DEPAUDIT
: name
= "DEPAUDIT"; stringp
= TRUE
; break;
1200 case DT_AUDIT
: name
= "AUDIT"; stringp
= TRUE
; break;
1201 case DT_PLTPAD
: name
= "PLTPAD"; break;
1202 case DT_MOVETAB
: name
= "MOVETAB"; break;
1203 case DT_SYMINFO
: name
= "SYMINFO"; break;
1204 case DT_RELACOUNT
: name
= "RELACOUNT"; break;
1205 case DT_RELCOUNT
: name
= "RELCOUNT"; break;
1206 case DT_FLAGS_1
: name
= "FLAGS_1"; break;
1207 case DT_VERSYM
: name
= "VERSYM"; break;
1208 case DT_VERDEF
: name
= "VERDEF"; break;
1209 case DT_VERDEFNUM
: name
= "VERDEFNUM"; break;
1210 case DT_VERNEED
: name
= "VERNEED"; break;
1211 case DT_VERNEEDNUM
: name
= "VERNEEDNUM"; break;
1212 case DT_AUXILIARY
: name
= "AUXILIARY"; stringp
= TRUE
; break;
1213 case DT_USED
: name
= "USED"; break;
1214 case DT_FILTER
: name
= "FILTER"; stringp
= TRUE
; break;
1217 fprintf (f
, " %-11s ", name
);
1219 fprintf (f
, "0x%lx", (unsigned long) dyn
.d_un
.d_val
);
1223 unsigned int tagv
= dyn
.d_un
.d_val
;
1225 string
= bfd_elf_string_from_elf_section (abfd
, shlink
, tagv
);
1228 fprintf (f
, "%s", string
);
1237 if ((elf_dynverdef (abfd
) != 0 && elf_tdata (abfd
)->verdef
== NULL
)
1238 || (elf_dynverref (abfd
) != 0 && elf_tdata (abfd
)->verref
== NULL
))
1240 if (! _bfd_elf_slurp_version_tables (abfd
, FALSE
))
1244 if (elf_dynverdef (abfd
) != 0)
1246 Elf_Internal_Verdef
*t
;
1248 fprintf (f
, _("\nVersion definitions:\n"));
1249 for (t
= elf_tdata (abfd
)->verdef
; t
!= NULL
; t
= t
->vd_nextdef
)
1251 fprintf (f
, "%d 0x%2.2x 0x%8.8lx %s\n", t
->vd_ndx
,
1252 t
->vd_flags
, t
->vd_hash
,
1253 t
->vd_nodename
? t
->vd_nodename
: "<corrupt>");
1254 if (t
->vd_auxptr
!= NULL
&& t
->vd_auxptr
->vda_nextptr
!= NULL
)
1256 Elf_Internal_Verdaux
*a
;
1259 for (a
= t
->vd_auxptr
->vda_nextptr
;
1263 a
->vda_nodename
? a
->vda_nodename
: "<corrupt>");
1269 if (elf_dynverref (abfd
) != 0)
1271 Elf_Internal_Verneed
*t
;
1273 fprintf (f
, _("\nVersion References:\n"));
1274 for (t
= elf_tdata (abfd
)->verref
; t
!= NULL
; t
= t
->vn_nextref
)
1276 Elf_Internal_Vernaux
*a
;
1278 fprintf (f
, _(" required from %s:\n"),
1279 t
->vn_filename
? t
->vn_filename
: "<corrupt>");
1280 for (a
= t
->vn_auxptr
; a
!= NULL
; a
= a
->vna_nextptr
)
1281 fprintf (f
, " 0x%8.8lx 0x%2.2x %2.2d %s\n", a
->vna_hash
,
1282 a
->vna_flags
, a
->vna_other
,
1283 a
->vna_nodename
? a
->vna_nodename
: "<corrupt>");
1295 /* Display ELF-specific fields of a symbol. */
1298 bfd_elf_print_symbol (bfd
*abfd
,
1301 bfd_print_symbol_type how
)
1306 case bfd_print_symbol_name
:
1307 fprintf (file
, "%s", symbol
->name
);
1309 case bfd_print_symbol_more
:
1310 fprintf (file
, "elf ");
1311 bfd_fprintf_vma (abfd
, file
, symbol
->value
);
1312 fprintf (file
, " %lx", (long) symbol
->flags
);
1314 case bfd_print_symbol_all
:
1316 const char *section_name
;
1317 const char *name
= NULL
;
1318 const struct elf_backend_data
*bed
;
1319 unsigned char st_other
;
1322 section_name
= symbol
->section
? symbol
->section
->name
: "(*none*)";
1324 bed
= get_elf_backend_data (abfd
);
1325 if (bed
->elf_backend_print_symbol_all
)
1326 name
= (*bed
->elf_backend_print_symbol_all
) (abfd
, filep
, symbol
);
1330 name
= symbol
->name
;
1331 bfd_print_symbol_vandf (abfd
, file
, symbol
);
1334 fprintf (file
, " %s\t", section_name
);
1335 /* Print the "other" value for a symbol. For common symbols,
1336 we've already printed the size; now print the alignment.
1337 For other symbols, we have no specified alignment, and
1338 we've printed the address; now print the size. */
1339 if (bfd_is_com_section (symbol
->section
))
1340 val
= ((elf_symbol_type
*) symbol
)->internal_elf_sym
.st_value
;
1342 val
= ((elf_symbol_type
*) symbol
)->internal_elf_sym
.st_size
;
1343 bfd_fprintf_vma (abfd
, file
, val
);
1345 /* If we have version information, print it. */
1346 if (elf_tdata (abfd
)->dynversym_section
!= 0
1347 && (elf_tdata (abfd
)->dynverdef_section
!= 0
1348 || elf_tdata (abfd
)->dynverref_section
!= 0))
1350 unsigned int vernum
;
1351 const char *version_string
;
1353 vernum
= ((elf_symbol_type
*) symbol
)->version
& VERSYM_VERSION
;
1356 version_string
= "";
1357 else if (vernum
== 1)
1358 version_string
= "Base";
1359 else if (vernum
<= elf_tdata (abfd
)->cverdefs
)
1361 elf_tdata (abfd
)->verdef
[vernum
- 1].vd_nodename
;
1364 Elf_Internal_Verneed
*t
;
1366 version_string
= "";
1367 for (t
= elf_tdata (abfd
)->verref
;
1371 Elf_Internal_Vernaux
*a
;
1373 for (a
= t
->vn_auxptr
; a
!= NULL
; a
= a
->vna_nextptr
)
1375 if (a
->vna_other
== vernum
)
1377 version_string
= a
->vna_nodename
;
1384 if ((((elf_symbol_type
*) symbol
)->version
& VERSYM_HIDDEN
) == 0)
1385 fprintf (file
, " %-11s", version_string
);
1390 fprintf (file
, " (%s)", version_string
);
1391 for (i
= 10 - strlen (version_string
); i
> 0; --i
)
1396 /* If the st_other field is not zero, print it. */
1397 st_other
= ((elf_symbol_type
*) symbol
)->internal_elf_sym
.st_other
;
1402 case STV_INTERNAL
: fprintf (file
, " .internal"); break;
1403 case STV_HIDDEN
: fprintf (file
, " .hidden"); break;
1404 case STV_PROTECTED
: fprintf (file
, " .protected"); break;
1406 /* Some other non-defined flags are also present, so print
1408 fprintf (file
, " 0x%02x", (unsigned int) st_other
);
1411 fprintf (file
, " %s", name
);
1417 /* Create an entry in an ELF linker hash table. */
1419 struct bfd_hash_entry
*
1420 _bfd_elf_link_hash_newfunc (struct bfd_hash_entry
*entry
,
1421 struct bfd_hash_table
*table
,
1424 /* Allocate the structure if it has not already been allocated by a
1428 entry
= bfd_hash_allocate (table
, sizeof (struct elf_link_hash_entry
));
1433 /* Call the allocation method of the superclass. */
1434 entry
= _bfd_link_hash_newfunc (entry
, table
, string
);
1437 struct elf_link_hash_entry
*ret
= (struct elf_link_hash_entry
*) entry
;
1438 struct elf_link_hash_table
*htab
= (struct elf_link_hash_table
*) table
;
1440 /* Set local fields. */
1443 ret
->got
= htab
->init_got_refcount
;
1444 ret
->plt
= htab
->init_plt_refcount
;
1445 memset (&ret
->size
, 0, (sizeof (struct elf_link_hash_entry
)
1446 - offsetof (struct elf_link_hash_entry
, size
)));
1447 /* Assume that we have been called by a non-ELF symbol reader.
1448 This flag is then reset by the code which reads an ELF input
1449 file. This ensures that a symbol created by a non-ELF symbol
1450 reader will have the flag set correctly. */
1457 /* Copy data from an indirect symbol to its direct symbol, hiding the
1458 old indirect symbol. Also used for copying flags to a weakdef. */
1461 _bfd_elf_link_hash_copy_indirect (struct bfd_link_info
*info
,
1462 struct elf_link_hash_entry
*dir
,
1463 struct elf_link_hash_entry
*ind
)
1465 struct elf_link_hash_table
*htab
;
1467 /* Copy down any references that we may have already seen to the
1468 symbol which just became indirect. */
1470 dir
->ref_dynamic
|= ind
->ref_dynamic
;
1471 dir
->ref_regular
|= ind
->ref_regular
;
1472 dir
->ref_regular_nonweak
|= ind
->ref_regular_nonweak
;
1473 dir
->non_got_ref
|= ind
->non_got_ref
;
1474 dir
->needs_plt
|= ind
->needs_plt
;
1475 dir
->pointer_equality_needed
|= ind
->pointer_equality_needed
;
1477 if (ind
->root
.type
!= bfd_link_hash_indirect
)
1480 /* Copy over the global and procedure linkage table refcount entries.
1481 These may have been already set up by a check_relocs routine. */
1482 htab
= elf_hash_table (info
);
1483 if (ind
->got
.refcount
> htab
->init_got_refcount
.refcount
)
1485 if (dir
->got
.refcount
< 0)
1486 dir
->got
.refcount
= 0;
1487 dir
->got
.refcount
+= ind
->got
.refcount
;
1488 ind
->got
.refcount
= htab
->init_got_refcount
.refcount
;
1491 if (ind
->plt
.refcount
> htab
->init_plt_refcount
.refcount
)
1493 if (dir
->plt
.refcount
< 0)
1494 dir
->plt
.refcount
= 0;
1495 dir
->plt
.refcount
+= ind
->plt
.refcount
;
1496 ind
->plt
.refcount
= htab
->init_plt_refcount
.refcount
;
1499 if (ind
->dynindx
!= -1)
1501 if (dir
->dynindx
!= -1)
1502 _bfd_elf_strtab_delref (htab
->dynstr
, dir
->dynstr_index
);
1503 dir
->dynindx
= ind
->dynindx
;
1504 dir
->dynstr_index
= ind
->dynstr_index
;
1506 ind
->dynstr_index
= 0;
1511 _bfd_elf_link_hash_hide_symbol (struct bfd_link_info
*info
,
1512 struct elf_link_hash_entry
*h
,
1513 bfd_boolean force_local
)
1515 h
->plt
= elf_hash_table (info
)->init_plt_offset
;
1519 h
->forced_local
= 1;
1520 if (h
->dynindx
!= -1)
1523 _bfd_elf_strtab_delref (elf_hash_table (info
)->dynstr
,
1529 /* Initialize an ELF linker hash table. */
1532 _bfd_elf_link_hash_table_init
1533 (struct elf_link_hash_table
*table
,
1535 struct bfd_hash_entry
*(*newfunc
) (struct bfd_hash_entry
*,
1536 struct bfd_hash_table
*,
1540 int can_refcount
= get_elf_backend_data (abfd
)->can_refcount
;
1542 table
->dynamic_sections_created
= FALSE
;
1543 table
->dynobj
= NULL
;
1544 table
->init_got_refcount
.refcount
= can_refcount
- 1;
1545 table
->init_plt_refcount
.refcount
= can_refcount
- 1;
1546 table
->init_got_offset
.offset
= -(bfd_vma
) 1;
1547 table
->init_plt_offset
.offset
= -(bfd_vma
) 1;
1548 /* The first dynamic symbol is a dummy. */
1549 table
->dynsymcount
= 1;
1550 table
->dynstr
= NULL
;
1551 table
->bucketcount
= 0;
1552 table
->needed
= NULL
;
1554 table
->merge_info
= NULL
;
1555 memset (&table
->stab_info
, 0, sizeof (table
->stab_info
));
1556 memset (&table
->eh_info
, 0, sizeof (table
->eh_info
));
1557 table
->dynlocal
= NULL
;
1558 table
->runpath
= NULL
;
1559 table
->tls_sec
= NULL
;
1560 table
->tls_size
= 0;
1561 table
->loaded
= NULL
;
1562 table
->is_relocatable_executable
= FALSE
;
1564 ret
= _bfd_link_hash_table_init (&table
->root
, abfd
, newfunc
);
1565 table
->root
.type
= bfd_link_elf_hash_table
;
1570 /* Create an ELF linker hash table. */
1572 struct bfd_link_hash_table
*
1573 _bfd_elf_link_hash_table_create (bfd
*abfd
)
1575 struct elf_link_hash_table
*ret
;
1576 bfd_size_type amt
= sizeof (struct elf_link_hash_table
);
1578 ret
= bfd_malloc (amt
);
1582 if (! _bfd_elf_link_hash_table_init (ret
, abfd
, _bfd_elf_link_hash_newfunc
))
1591 /* This is a hook for the ELF emulation code in the generic linker to
1592 tell the backend linker what file name to use for the DT_NEEDED
1593 entry for a dynamic object. */
1596 bfd_elf_set_dt_needed_name (bfd
*abfd
, const char *name
)
1598 if (bfd_get_flavour (abfd
) == bfd_target_elf_flavour
1599 && bfd_get_format (abfd
) == bfd_object
)
1600 elf_dt_name (abfd
) = name
;
1604 bfd_elf_get_dyn_lib_class (bfd
*abfd
)
1607 if (bfd_get_flavour (abfd
) == bfd_target_elf_flavour
1608 && bfd_get_format (abfd
) == bfd_object
)
1609 lib_class
= elf_dyn_lib_class (abfd
);
1616 bfd_elf_set_dyn_lib_class (bfd
*abfd
, int lib_class
)
1618 if (bfd_get_flavour (abfd
) == bfd_target_elf_flavour
1619 && bfd_get_format (abfd
) == bfd_object
)
1620 elf_dyn_lib_class (abfd
) = lib_class
;
1623 /* Get the list of DT_NEEDED entries for a link. This is a hook for
1624 the linker ELF emulation code. */
1626 struct bfd_link_needed_list
*
1627 bfd_elf_get_needed_list (bfd
*abfd ATTRIBUTE_UNUSED
,
1628 struct bfd_link_info
*info
)
1630 if (! is_elf_hash_table (info
->hash
))
1632 return elf_hash_table (info
)->needed
;
1635 /* Get the list of DT_RPATH/DT_RUNPATH entries for a link. This is a
1636 hook for the linker ELF emulation code. */
1638 struct bfd_link_needed_list
*
1639 bfd_elf_get_runpath_list (bfd
*abfd ATTRIBUTE_UNUSED
,
1640 struct bfd_link_info
*info
)
1642 if (! is_elf_hash_table (info
->hash
))
1644 return elf_hash_table (info
)->runpath
;
1647 /* Get the name actually used for a dynamic object for a link. This
1648 is the SONAME entry if there is one. Otherwise, it is the string
1649 passed to bfd_elf_set_dt_needed_name, or it is the filename. */
1652 bfd_elf_get_dt_soname (bfd
*abfd
)
1654 if (bfd_get_flavour (abfd
) == bfd_target_elf_flavour
1655 && bfd_get_format (abfd
) == bfd_object
)
1656 return elf_dt_name (abfd
);
1660 /* Get the list of DT_NEEDED entries from a BFD. This is a hook for
1661 the ELF linker emulation code. */
1664 bfd_elf_get_bfd_needed_list (bfd
*abfd
,
1665 struct bfd_link_needed_list
**pneeded
)
1668 bfd_byte
*dynbuf
= NULL
;
1670 unsigned long shlink
;
1671 bfd_byte
*extdyn
, *extdynend
;
1673 void (*swap_dyn_in
) (bfd
*, const void *, Elf_Internal_Dyn
*);
1677 if (bfd_get_flavour (abfd
) != bfd_target_elf_flavour
1678 || bfd_get_format (abfd
) != bfd_object
)
1681 s
= bfd_get_section_by_name (abfd
, ".dynamic");
1682 if (s
== NULL
|| s
->size
== 0)
1685 if (!bfd_malloc_and_get_section (abfd
, s
, &dynbuf
))
1688 elfsec
= _bfd_elf_section_from_bfd_section (abfd
, s
);
1692 shlink
= elf_elfsections (abfd
)[elfsec
]->sh_link
;
1694 extdynsize
= get_elf_backend_data (abfd
)->s
->sizeof_dyn
;
1695 swap_dyn_in
= get_elf_backend_data (abfd
)->s
->swap_dyn_in
;
1698 extdynend
= extdyn
+ s
->size
;
1699 for (; extdyn
< extdynend
; extdyn
+= extdynsize
)
1701 Elf_Internal_Dyn dyn
;
1703 (*swap_dyn_in
) (abfd
, extdyn
, &dyn
);
1705 if (dyn
.d_tag
== DT_NULL
)
1708 if (dyn
.d_tag
== DT_NEEDED
)
1711 struct bfd_link_needed_list
*l
;
1712 unsigned int tagv
= dyn
.d_un
.d_val
;
1715 string
= bfd_elf_string_from_elf_section (abfd
, shlink
, tagv
);
1720 l
= bfd_alloc (abfd
, amt
);
1741 /* Allocate an ELF string table--force the first byte to be zero. */
1743 struct bfd_strtab_hash
*
1744 _bfd_elf_stringtab_init (void)
1746 struct bfd_strtab_hash
*ret
;
1748 ret
= _bfd_stringtab_init ();
1753 loc
= _bfd_stringtab_add (ret
, "", TRUE
, FALSE
);
1754 BFD_ASSERT (loc
== 0 || loc
== (bfd_size_type
) -1);
1755 if (loc
== (bfd_size_type
) -1)
1757 _bfd_stringtab_free (ret
);
1764 /* ELF .o/exec file reading */
1766 /* Create a new bfd section from an ELF section header. */
1769 bfd_section_from_shdr (bfd
*abfd
, unsigned int shindex
)
1771 Elf_Internal_Shdr
*hdr
= elf_elfsections (abfd
)[shindex
];
1772 Elf_Internal_Ehdr
*ehdr
= elf_elfheader (abfd
);
1773 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
1776 name
= bfd_elf_string_from_elf_section (abfd
,
1777 elf_elfheader (abfd
)->e_shstrndx
,
1782 switch (hdr
->sh_type
)
1785 /* Inactive section. Throw it away. */
1788 case SHT_PROGBITS
: /* Normal section with contents. */
1789 case SHT_NOBITS
: /* .bss section. */
1790 case SHT_HASH
: /* .hash section. */
1791 case SHT_NOTE
: /* .note section. */
1792 case SHT_INIT_ARRAY
: /* .init_array section. */
1793 case SHT_FINI_ARRAY
: /* .fini_array section. */
1794 case SHT_PREINIT_ARRAY
: /* .preinit_array section. */
1795 case SHT_GNU_LIBLIST
: /* .gnu.liblist section. */
1796 return _bfd_elf_make_section_from_shdr (abfd
, hdr
, name
, shindex
);
1798 case SHT_DYNAMIC
: /* Dynamic linking information. */
1799 if (! _bfd_elf_make_section_from_shdr (abfd
, hdr
, name
, shindex
))
1801 if (hdr
->sh_link
> elf_numsections (abfd
)
1802 || elf_elfsections (abfd
)[hdr
->sh_link
] == NULL
)
1804 if (elf_elfsections (abfd
)[hdr
->sh_link
]->sh_type
!= SHT_STRTAB
)
1806 Elf_Internal_Shdr
*dynsymhdr
;
1808 /* The shared libraries distributed with hpux11 have a bogus
1809 sh_link field for the ".dynamic" section. Find the
1810 string table for the ".dynsym" section instead. */
1811 if (elf_dynsymtab (abfd
) != 0)
1813 dynsymhdr
= elf_elfsections (abfd
)[elf_dynsymtab (abfd
)];
1814 hdr
->sh_link
= dynsymhdr
->sh_link
;
1818 unsigned int i
, num_sec
;
1820 num_sec
= elf_numsections (abfd
);
1821 for (i
= 1; i
< num_sec
; i
++)
1823 dynsymhdr
= elf_elfsections (abfd
)[i
];
1824 if (dynsymhdr
->sh_type
== SHT_DYNSYM
)
1826 hdr
->sh_link
= dynsymhdr
->sh_link
;
1834 case SHT_SYMTAB
: /* A symbol table */
1835 if (elf_onesymtab (abfd
) == shindex
)
1838 if (hdr
->sh_entsize
!= bed
->s
->sizeof_sym
)
1840 BFD_ASSERT (elf_onesymtab (abfd
) == 0);
1841 elf_onesymtab (abfd
) = shindex
;
1842 elf_tdata (abfd
)->symtab_hdr
= *hdr
;
1843 elf_elfsections (abfd
)[shindex
] = hdr
= &elf_tdata (abfd
)->symtab_hdr
;
1844 abfd
->flags
|= HAS_SYMS
;
1846 /* Sometimes a shared object will map in the symbol table. If
1847 SHF_ALLOC is set, and this is a shared object, then we also
1848 treat this section as a BFD section. We can not base the
1849 decision purely on SHF_ALLOC, because that flag is sometimes
1850 set in a relocatable object file, which would confuse the
1852 if ((hdr
->sh_flags
& SHF_ALLOC
) != 0
1853 && (abfd
->flags
& DYNAMIC
) != 0
1854 && ! _bfd_elf_make_section_from_shdr (abfd
, hdr
, name
,
1858 /* Go looking for SHT_SYMTAB_SHNDX too, since if there is one we
1859 can't read symbols without that section loaded as well. It
1860 is most likely specified by the next section header. */
1861 if (elf_elfsections (abfd
)[elf_symtab_shndx (abfd
)]->sh_link
!= shindex
)
1863 unsigned int i
, num_sec
;
1865 num_sec
= elf_numsections (abfd
);
1866 for (i
= shindex
+ 1; i
< num_sec
; i
++)
1868 Elf_Internal_Shdr
*hdr2
= elf_elfsections (abfd
)[i
];
1869 if (hdr2
->sh_type
== SHT_SYMTAB_SHNDX
1870 && hdr2
->sh_link
== shindex
)
1874 for (i
= 1; i
< shindex
; i
++)
1876 Elf_Internal_Shdr
*hdr2
= elf_elfsections (abfd
)[i
];
1877 if (hdr2
->sh_type
== SHT_SYMTAB_SHNDX
1878 && hdr2
->sh_link
== shindex
)
1882 return bfd_section_from_shdr (abfd
, i
);
1886 case SHT_DYNSYM
: /* A dynamic symbol table */
1887 if (elf_dynsymtab (abfd
) == shindex
)
1890 if (hdr
->sh_entsize
!= bed
->s
->sizeof_sym
)
1892 BFD_ASSERT (elf_dynsymtab (abfd
) == 0);
1893 elf_dynsymtab (abfd
) = shindex
;
1894 elf_tdata (abfd
)->dynsymtab_hdr
= *hdr
;
1895 elf_elfsections (abfd
)[shindex
] = hdr
= &elf_tdata (abfd
)->dynsymtab_hdr
;
1896 abfd
->flags
|= HAS_SYMS
;
1898 /* Besides being a symbol table, we also treat this as a regular
1899 section, so that objcopy can handle it. */
1900 return _bfd_elf_make_section_from_shdr (abfd
, hdr
, name
, shindex
);
1902 case SHT_SYMTAB_SHNDX
: /* Symbol section indices when >64k sections */
1903 if (elf_symtab_shndx (abfd
) == shindex
)
1906 BFD_ASSERT (elf_symtab_shndx (abfd
) == 0);
1907 elf_symtab_shndx (abfd
) = shindex
;
1908 elf_tdata (abfd
)->symtab_shndx_hdr
= *hdr
;
1909 elf_elfsections (abfd
)[shindex
] = &elf_tdata (abfd
)->symtab_shndx_hdr
;
1912 case SHT_STRTAB
: /* A string table */
1913 if (hdr
->bfd_section
!= NULL
)
1915 if (ehdr
->e_shstrndx
== shindex
)
1917 elf_tdata (abfd
)->shstrtab_hdr
= *hdr
;
1918 elf_elfsections (abfd
)[shindex
] = &elf_tdata (abfd
)->shstrtab_hdr
;
1921 if (elf_elfsections (abfd
)[elf_onesymtab (abfd
)]->sh_link
== shindex
)
1924 elf_tdata (abfd
)->strtab_hdr
= *hdr
;
1925 elf_elfsections (abfd
)[shindex
] = &elf_tdata (abfd
)->strtab_hdr
;
1928 if (elf_elfsections (abfd
)[elf_dynsymtab (abfd
)]->sh_link
== shindex
)
1931 elf_tdata (abfd
)->dynstrtab_hdr
= *hdr
;
1932 hdr
= &elf_tdata (abfd
)->dynstrtab_hdr
;
1933 elf_elfsections (abfd
)[shindex
] = hdr
;
1934 /* We also treat this as a regular section, so that objcopy
1936 return _bfd_elf_make_section_from_shdr (abfd
, hdr
, name
,
1940 /* If the string table isn't one of the above, then treat it as a
1941 regular section. We need to scan all the headers to be sure,
1942 just in case this strtab section appeared before the above. */
1943 if (elf_onesymtab (abfd
) == 0 || elf_dynsymtab (abfd
) == 0)
1945 unsigned int i
, num_sec
;
1947 num_sec
= elf_numsections (abfd
);
1948 for (i
= 1; i
< num_sec
; i
++)
1950 Elf_Internal_Shdr
*hdr2
= elf_elfsections (abfd
)[i
];
1951 if (hdr2
->sh_link
== shindex
)
1953 /* Prevent endless recursion on broken objects. */
1956 if (! bfd_section_from_shdr (abfd
, i
))
1958 if (elf_onesymtab (abfd
) == i
)
1960 if (elf_dynsymtab (abfd
) == i
)
1961 goto dynsymtab_strtab
;
1965 return _bfd_elf_make_section_from_shdr (abfd
, hdr
, name
, shindex
);
1969 /* *These* do a lot of work -- but build no sections! */
1971 asection
*target_sect
;
1972 Elf_Internal_Shdr
*hdr2
;
1973 unsigned int num_sec
= elf_numsections (abfd
);
1976 != (bfd_size_type
) (hdr
->sh_type
== SHT_REL
1977 ? bed
->s
->sizeof_rel
: bed
->s
->sizeof_rela
))
1980 /* Check for a bogus link to avoid crashing. */
1981 if ((hdr
->sh_link
>= SHN_LORESERVE
&& hdr
->sh_link
<= SHN_HIRESERVE
)
1982 || hdr
->sh_link
>= num_sec
)
1984 ((*_bfd_error_handler
)
1985 (_("%B: invalid link %lu for reloc section %s (index %u)"),
1986 abfd
, hdr
->sh_link
, name
, shindex
));
1987 return _bfd_elf_make_section_from_shdr (abfd
, hdr
, name
,
1991 /* For some incomprehensible reason Oracle distributes
1992 libraries for Solaris in which some of the objects have
1993 bogus sh_link fields. It would be nice if we could just
1994 reject them, but, unfortunately, some people need to use
1995 them. We scan through the section headers; if we find only
1996 one suitable symbol table, we clobber the sh_link to point
1997 to it. I hope this doesn't break anything. */
1998 if (elf_elfsections (abfd
)[hdr
->sh_link
]->sh_type
!= SHT_SYMTAB
1999 && elf_elfsections (abfd
)[hdr
->sh_link
]->sh_type
!= SHT_DYNSYM
)
2005 for (scan
= 1; scan
< num_sec
; scan
++)
2007 if (elf_elfsections (abfd
)[scan
]->sh_type
== SHT_SYMTAB
2008 || elf_elfsections (abfd
)[scan
]->sh_type
== SHT_DYNSYM
)
2019 hdr
->sh_link
= found
;
2022 /* Get the symbol table. */
2023 if ((elf_elfsections (abfd
)[hdr
->sh_link
]->sh_type
== SHT_SYMTAB
2024 || elf_elfsections (abfd
)[hdr
->sh_link
]->sh_type
== SHT_DYNSYM
)
2025 && ! bfd_section_from_shdr (abfd
, hdr
->sh_link
))
2028 /* If this reloc section does not use the main symbol table we
2029 don't treat it as a reloc section. BFD can't adequately
2030 represent such a section, so at least for now, we don't
2031 try. We just present it as a normal section. We also
2032 can't use it as a reloc section if it points to the null
2034 if (hdr
->sh_link
!= elf_onesymtab (abfd
) || hdr
->sh_info
== SHN_UNDEF
)
2035 return _bfd_elf_make_section_from_shdr (abfd
, hdr
, name
,
2038 /* Prevent endless recursion on broken objects. */
2039 if (elf_elfsections (abfd
)[hdr
->sh_info
]->sh_type
== SHT_REL
2040 || elf_elfsections (abfd
)[hdr
->sh_info
]->sh_type
== SHT_RELA
)
2042 if (! bfd_section_from_shdr (abfd
, hdr
->sh_info
))
2044 target_sect
= bfd_section_from_elf_index (abfd
, hdr
->sh_info
);
2045 if (target_sect
== NULL
)
2048 if ((target_sect
->flags
& SEC_RELOC
) == 0
2049 || target_sect
->reloc_count
== 0)
2050 hdr2
= &elf_section_data (target_sect
)->rel_hdr
;
2054 BFD_ASSERT (elf_section_data (target_sect
)->rel_hdr2
== NULL
);
2055 amt
= sizeof (*hdr2
);
2056 hdr2
= bfd_alloc (abfd
, amt
);
2057 elf_section_data (target_sect
)->rel_hdr2
= hdr2
;
2060 elf_elfsections (abfd
)[shindex
] = hdr2
;
2061 target_sect
->reloc_count
+= NUM_SHDR_ENTRIES (hdr
);
2062 target_sect
->flags
|= SEC_RELOC
;
2063 target_sect
->relocation
= NULL
;
2064 target_sect
->rel_filepos
= hdr
->sh_offset
;
2065 /* In the section to which the relocations apply, mark whether
2066 its relocations are of the REL or RELA variety. */
2067 if (hdr
->sh_size
!= 0)
2068 target_sect
->use_rela_p
= hdr
->sh_type
== SHT_RELA
;
2069 abfd
->flags
|= HAS_RELOC
;
2074 case SHT_GNU_verdef
:
2075 elf_dynverdef (abfd
) = shindex
;
2076 elf_tdata (abfd
)->dynverdef_hdr
= *hdr
;
2077 return _bfd_elf_make_section_from_shdr (abfd
, hdr
, name
, shindex
);
2080 case SHT_GNU_versym
:
2081 if (hdr
->sh_entsize
!= sizeof (Elf_External_Versym
))
2083 elf_dynversym (abfd
) = shindex
;
2084 elf_tdata (abfd
)->dynversym_hdr
= *hdr
;
2085 return _bfd_elf_make_section_from_shdr (abfd
, hdr
, name
, shindex
);
2088 case SHT_GNU_verneed
:
2089 elf_dynverref (abfd
) = shindex
;
2090 elf_tdata (abfd
)->dynverref_hdr
= *hdr
;
2091 return _bfd_elf_make_section_from_shdr (abfd
, hdr
, name
, shindex
);
2098 /* We need a BFD section for objcopy and relocatable linking,
2099 and it's handy to have the signature available as the section
2101 if (hdr
->sh_entsize
!= GRP_ENTRY_SIZE
)
2103 name
= group_signature (abfd
, hdr
);
2106 if (!_bfd_elf_make_section_from_shdr (abfd
, hdr
, name
, shindex
))
2108 if (hdr
->contents
!= NULL
)
2110 Elf_Internal_Group
*idx
= (Elf_Internal_Group
*) hdr
->contents
;
2111 unsigned int n_elt
= hdr
->sh_size
/ 4;
2114 if (idx
->flags
& GRP_COMDAT
)
2115 hdr
->bfd_section
->flags
2116 |= SEC_LINK_ONCE
| SEC_LINK_DUPLICATES_DISCARD
;
2118 /* We try to keep the same section order as it comes in. */
2120 while (--n_elt
!= 0)
2121 if ((s
= (--idx
)->shdr
->bfd_section
) != NULL
2122 && elf_next_in_group (s
) != NULL
)
2124 elf_next_in_group (hdr
->bfd_section
) = s
;
2131 /* Check for any processor-specific section types. */
2132 return bed
->elf_backend_section_from_shdr (abfd
, hdr
, name
,
2139 /* Return the section for the local symbol specified by ABFD, R_SYMNDX.
2140 Return SEC for sections that have no elf section, and NULL on error. */
2143 bfd_section_from_r_symndx (bfd
*abfd
,
2144 struct sym_sec_cache
*cache
,
2146 unsigned long r_symndx
)
2148 Elf_Internal_Shdr
*symtab_hdr
;
2149 unsigned char esym
[sizeof (Elf64_External_Sym
)];
2150 Elf_External_Sym_Shndx eshndx
;
2151 Elf_Internal_Sym isym
;
2152 unsigned int ent
= r_symndx
% LOCAL_SYM_CACHE_SIZE
;
2154 if (cache
->abfd
== abfd
&& cache
->indx
[ent
] == r_symndx
)
2155 return cache
->sec
[ent
];
2157 symtab_hdr
= &elf_tdata (abfd
)->symtab_hdr
;
2158 if (bfd_elf_get_elf_syms (abfd
, symtab_hdr
, 1, r_symndx
,
2159 &isym
, esym
, &eshndx
) == NULL
)
2162 if (cache
->abfd
!= abfd
)
2164 memset (cache
->indx
, -1, sizeof (cache
->indx
));
2167 cache
->indx
[ent
] = r_symndx
;
2168 cache
->sec
[ent
] = sec
;
2169 if ((isym
.st_shndx
!= SHN_UNDEF
&& isym
.st_shndx
< SHN_LORESERVE
)
2170 || isym
.st_shndx
> SHN_HIRESERVE
)
2173 s
= bfd_section_from_elf_index (abfd
, isym
.st_shndx
);
2175 cache
->sec
[ent
] = s
;
2177 return cache
->sec
[ent
];
2180 /* Given an ELF section number, retrieve the corresponding BFD
2184 bfd_section_from_elf_index (bfd
*abfd
, unsigned int index
)
2186 if (index
>= elf_numsections (abfd
))
2188 return elf_elfsections (abfd
)[index
]->bfd_section
;
2191 static const struct bfd_elf_special_section special_sections_b
[] =
2193 { ".bss", 4, -2, SHT_NOBITS
, SHF_ALLOC
+ SHF_WRITE
},
2194 { NULL
, 0, 0, 0, 0 }
2197 static const struct bfd_elf_special_section special_sections_c
[] =
2199 { ".comment", 8, 0, SHT_PROGBITS
, 0 },
2200 { NULL
, 0, 0, 0, 0 }
2203 static const struct bfd_elf_special_section special_sections_d
[] =
2205 { ".data", 5, -2, SHT_PROGBITS
, SHF_ALLOC
+ SHF_WRITE
},
2206 { ".data1", 6, 0, SHT_PROGBITS
, SHF_ALLOC
+ SHF_WRITE
},
2207 { ".debug", 6, 0, SHT_PROGBITS
, 0 },
2208 { ".debug_line", 11, 0, SHT_PROGBITS
, 0 },
2209 { ".debug_info", 11, 0, SHT_PROGBITS
, 0 },
2210 { ".debug_abbrev", 13, 0, SHT_PROGBITS
, 0 },
2211 { ".debug_aranges", 14, 0, SHT_PROGBITS
, 0 },
2212 { ".dynamic", 8, 0, SHT_DYNAMIC
, SHF_ALLOC
},
2213 { ".dynstr", 7, 0, SHT_STRTAB
, SHF_ALLOC
},
2214 { ".dynsym", 7, 0, SHT_DYNSYM
, SHF_ALLOC
},
2215 { NULL
, 0, 0, 0, 0 }
2218 static const struct bfd_elf_special_section special_sections_f
[] =
2220 { ".fini", 5, 0, SHT_PROGBITS
, SHF_ALLOC
+ SHF_EXECINSTR
},
2221 { ".fini_array", 11, 0, SHT_FINI_ARRAY
, SHF_ALLOC
+ SHF_WRITE
},
2222 { NULL
, 0, 0, 0, 0 }
2225 static const struct bfd_elf_special_section special_sections_g
[] =
2227 { ".gnu.linkonce.b",15, -2, SHT_NOBITS
, SHF_ALLOC
+ SHF_WRITE
},
2228 { ".got", 4, 0, SHT_PROGBITS
, SHF_ALLOC
+ SHF_WRITE
},
2229 { ".gnu.version", 12, 0, SHT_GNU_versym
, 0 },
2230 { ".gnu.version_d", 14, 0, SHT_GNU_verdef
, 0 },
2231 { ".gnu.version_r", 14, 0, SHT_GNU_verneed
, 0 },
2232 { ".gnu.liblist", 12, 0, SHT_GNU_LIBLIST
, SHF_ALLOC
},
2233 { ".gnu.conflict", 13, 0, SHT_RELA
, SHF_ALLOC
},
2234 { NULL
, 0, 0, 0, 0 }
2237 static const struct bfd_elf_special_section special_sections_h
[] =
2239 { ".hash", 5, 0, SHT_HASH
, SHF_ALLOC
},
2240 { NULL
, 0, 0, 0, 0 }
2243 static const struct bfd_elf_special_section special_sections_i
[] =
2245 { ".init", 5, 0, SHT_PROGBITS
, SHF_ALLOC
+ SHF_EXECINSTR
},
2246 { ".init_array", 11, 0, SHT_INIT_ARRAY
, SHF_ALLOC
+ SHF_WRITE
},
2247 { ".interp", 7, 0, SHT_PROGBITS
, 0 },
2248 { NULL
, 0, 0, 0, 0 }
2251 static const struct bfd_elf_special_section special_sections_l
[] =
2253 { ".line", 5, 0, SHT_PROGBITS
, 0 },
2254 { NULL
, 0, 0, 0, 0 }
2257 static const struct bfd_elf_special_section special_sections_n
[] =
2259 { ".note.GNU-stack",15, 0, SHT_PROGBITS
, 0 },
2260 { ".note", 5, -1, SHT_NOTE
, 0 },
2261 { NULL
, 0, 0, 0, 0 }
2264 static const struct bfd_elf_special_section special_sections_p
[] =
2266 { ".preinit_array", 14, 0, SHT_PREINIT_ARRAY
, SHF_ALLOC
+ SHF_WRITE
},
2267 { ".plt", 4, 0, SHT_PROGBITS
, SHF_ALLOC
+ SHF_EXECINSTR
},
2268 { NULL
, 0, 0, 0, 0 }
2271 static const struct bfd_elf_special_section special_sections_r
[] =
2273 { ".rodata", 7, -2, SHT_PROGBITS
, SHF_ALLOC
},
2274 { ".rodata1", 8, 0, SHT_PROGBITS
, SHF_ALLOC
},
2275 { ".rela", 5, -1, SHT_RELA
, 0 },
2276 { ".rel", 4, -1, SHT_REL
, 0 },
2277 { NULL
, 0, 0, 0, 0 }
2280 static const struct bfd_elf_special_section special_sections_s
[] =
2282 { ".shstrtab", 9, 0, SHT_STRTAB
, 0 },
2283 { ".strtab", 7, 0, SHT_STRTAB
, 0 },
2284 { ".symtab", 7, 0, SHT_SYMTAB
, 0 },
2285 { ".stabstr", 5, 3, SHT_STRTAB
, 0 },
2286 { NULL
, 0, 0, 0, 0 }
2289 static const struct bfd_elf_special_section special_sections_t
[] =
2291 { ".text", 5, -2, SHT_PROGBITS
, SHF_ALLOC
+ SHF_EXECINSTR
},
2292 { ".tbss", 5, -2, SHT_NOBITS
, SHF_ALLOC
+ SHF_WRITE
+ SHF_TLS
},
2293 { ".tdata", 6, -2, SHT_PROGBITS
, SHF_ALLOC
+ SHF_WRITE
+ SHF_TLS
},
2294 { NULL
, 0, 0, 0, 0 }
2297 static const struct bfd_elf_special_section
*special_sections
[] =
2299 special_sections_b
, /* 'b' */
2300 special_sections_c
, /* 'b' */
2301 special_sections_d
, /* 'd' */
2303 special_sections_f
, /* 'f' */
2304 special_sections_g
, /* 'g' */
2305 special_sections_h
, /* 'h' */
2306 special_sections_i
, /* 'i' */
2309 special_sections_l
, /* 'l' */
2311 special_sections_n
, /* 'n' */
2313 special_sections_p
, /* 'p' */
2315 special_sections_r
, /* 'r' */
2316 special_sections_s
, /* 's' */
2317 special_sections_t
, /* 't' */
2320 const struct bfd_elf_special_section
*
2321 _bfd_elf_get_special_section (const char *name
,
2322 const struct bfd_elf_special_section
*spec
,
2328 len
= strlen (name
);
2330 for (i
= 0; spec
[i
].prefix
!= NULL
; i
++)
2333 int prefix_len
= spec
[i
].prefix_length
;
2335 if (len
< prefix_len
)
2337 if (memcmp (name
, spec
[i
].prefix
, prefix_len
) != 0)
2340 suffix_len
= spec
[i
].suffix_length
;
2341 if (suffix_len
<= 0)
2343 if (name
[prefix_len
] != 0)
2345 if (suffix_len
== 0)
2347 if (name
[prefix_len
] != '.'
2348 && (suffix_len
== -2
2349 || (rela
&& spec
[i
].type
== SHT_REL
)))
2355 if (len
< prefix_len
+ suffix_len
)
2357 if (memcmp (name
+ len
- suffix_len
,
2358 spec
[i
].prefix
+ prefix_len
,
2368 const struct bfd_elf_special_section
*
2369 _bfd_elf_get_sec_type_attr (bfd
*abfd
, asection
*sec
)
2372 const struct bfd_elf_special_section
*spec
;
2373 const struct elf_backend_data
*bed
;
2375 /* See if this is one of the special sections. */
2376 if (sec
->name
== NULL
)
2379 bed
= get_elf_backend_data (abfd
);
2380 spec
= bed
->special_sections
;
2383 spec
= _bfd_elf_get_special_section (sec
->name
,
2384 bed
->special_sections
,
2390 if (sec
->name
[0] != '.')
2393 i
= sec
->name
[1] - 'b';
2394 if (i
< 0 || i
> 't' - 'b')
2397 spec
= special_sections
[i
];
2402 return _bfd_elf_get_special_section (sec
->name
, spec
, sec
->use_rela_p
);
2406 _bfd_elf_new_section_hook (bfd
*abfd
, asection
*sec
)
2408 struct bfd_elf_section_data
*sdata
;
2409 const struct elf_backend_data
*bed
;
2410 const struct bfd_elf_special_section
*ssect
;
2412 sdata
= (struct bfd_elf_section_data
*) sec
->used_by_bfd
;
2415 sdata
= bfd_zalloc (abfd
, sizeof (*sdata
));
2418 sec
->used_by_bfd
= sdata
;
2421 /* Indicate whether or not this section should use RELA relocations. */
2422 bed
= get_elf_backend_data (abfd
);
2423 sec
->use_rela_p
= bed
->default_use_rela_p
;
2425 /* When we read a file, we don't need section type and flags unless
2426 it is a linker created section. They will be overridden in
2427 _bfd_elf_make_section_from_shdr anyway. */
2428 if (abfd
->direction
!= read_direction
2429 || (sec
->flags
& SEC_LINKER_CREATED
) != 0)
2431 ssect
= (*bed
->get_sec_type_attr
) (abfd
, sec
);
2434 elf_section_type (sec
) = ssect
->type
;
2435 elf_section_flags (sec
) = ssect
->attr
;
2442 /* Create a new bfd section from an ELF program header.
2444 Since program segments have no names, we generate a synthetic name
2445 of the form segment<NUM>, where NUM is generally the index in the
2446 program header table. For segments that are split (see below) we
2447 generate the names segment<NUM>a and segment<NUM>b.
2449 Note that some program segments may have a file size that is different than
2450 (less than) the memory size. All this means is that at execution the
2451 system must allocate the amount of memory specified by the memory size,
2452 but only initialize it with the first "file size" bytes read from the
2453 file. This would occur for example, with program segments consisting
2454 of combined data+bss.
2456 To handle the above situation, this routine generates TWO bfd sections
2457 for the single program segment. The first has the length specified by
2458 the file size of the segment, and the second has the length specified
2459 by the difference between the two sizes. In effect, the segment is split
2460 into it's initialized and uninitialized parts.
2465 _bfd_elf_make_section_from_phdr (bfd
*abfd
,
2466 Elf_Internal_Phdr
*hdr
,
2468 const char *typename
)
2476 split
= ((hdr
->p_memsz
> 0)
2477 && (hdr
->p_filesz
> 0)
2478 && (hdr
->p_memsz
> hdr
->p_filesz
));
2479 sprintf (namebuf
, "%s%d%s", typename
, index
, split
? "a" : "");
2480 len
= strlen (namebuf
) + 1;
2481 name
= bfd_alloc (abfd
, len
);
2484 memcpy (name
, namebuf
, len
);
2485 newsect
= bfd_make_section (abfd
, name
);
2486 if (newsect
== NULL
)
2488 newsect
->vma
= hdr
->p_vaddr
;
2489 newsect
->lma
= hdr
->p_paddr
;
2490 newsect
->size
= hdr
->p_filesz
;
2491 newsect
->filepos
= hdr
->p_offset
;
2492 newsect
->flags
|= SEC_HAS_CONTENTS
;
2493 newsect
->alignment_power
= bfd_log2 (hdr
->p_align
);
2494 if (hdr
->p_type
== PT_LOAD
)
2496 newsect
->flags
|= SEC_ALLOC
;
2497 newsect
->flags
|= SEC_LOAD
;
2498 if (hdr
->p_flags
& PF_X
)
2500 /* FIXME: all we known is that it has execute PERMISSION,
2502 newsect
->flags
|= SEC_CODE
;
2505 if (!(hdr
->p_flags
& PF_W
))
2507 newsect
->flags
|= SEC_READONLY
;
2512 sprintf (namebuf
, "%s%db", typename
, index
);
2513 len
= strlen (namebuf
) + 1;
2514 name
= bfd_alloc (abfd
, len
);
2517 memcpy (name
, namebuf
, len
);
2518 newsect
= bfd_make_section (abfd
, name
);
2519 if (newsect
== NULL
)
2521 newsect
->vma
= hdr
->p_vaddr
+ hdr
->p_filesz
;
2522 newsect
->lma
= hdr
->p_paddr
+ hdr
->p_filesz
;
2523 newsect
->size
= hdr
->p_memsz
- hdr
->p_filesz
;
2524 if (hdr
->p_type
== PT_LOAD
)
2526 newsect
->flags
|= SEC_ALLOC
;
2527 if (hdr
->p_flags
& PF_X
)
2528 newsect
->flags
|= SEC_CODE
;
2530 if (!(hdr
->p_flags
& PF_W
))
2531 newsect
->flags
|= SEC_READONLY
;
2538 bfd_section_from_phdr (bfd
*abfd
, Elf_Internal_Phdr
*hdr
, int index
)
2540 const struct elf_backend_data
*bed
;
2542 switch (hdr
->p_type
)
2545 return _bfd_elf_make_section_from_phdr (abfd
, hdr
, index
, "null");
2548 return _bfd_elf_make_section_from_phdr (abfd
, hdr
, index
, "load");
2551 return _bfd_elf_make_section_from_phdr (abfd
, hdr
, index
, "dynamic");
2554 return _bfd_elf_make_section_from_phdr (abfd
, hdr
, index
, "interp");
2557 if (! _bfd_elf_make_section_from_phdr (abfd
, hdr
, index
, "note"))
2559 if (! elfcore_read_notes (abfd
, hdr
->p_offset
, hdr
->p_filesz
))
2564 return _bfd_elf_make_section_from_phdr (abfd
, hdr
, index
, "shlib");
2567 return _bfd_elf_make_section_from_phdr (abfd
, hdr
, index
, "phdr");
2569 case PT_GNU_EH_FRAME
:
2570 return _bfd_elf_make_section_from_phdr (abfd
, hdr
, index
,
2574 return _bfd_elf_make_section_from_phdr (abfd
, hdr
, index
, "stack");
2577 return _bfd_elf_make_section_from_phdr (abfd
, hdr
, index
, "relro");
2580 /* Check for any processor-specific program segment types. */
2581 bed
= get_elf_backend_data (abfd
);
2582 return bed
->elf_backend_section_from_phdr (abfd
, hdr
, index
, "proc");
2586 /* Initialize REL_HDR, the section-header for new section, containing
2587 relocations against ASECT. If USE_RELA_P is TRUE, we use RELA
2588 relocations; otherwise, we use REL relocations. */
2591 _bfd_elf_init_reloc_shdr (bfd
*abfd
,
2592 Elf_Internal_Shdr
*rel_hdr
,
2594 bfd_boolean use_rela_p
)
2597 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
2598 bfd_size_type amt
= sizeof ".rela" + strlen (asect
->name
);
2600 name
= bfd_alloc (abfd
, amt
);
2603 sprintf (name
, "%s%s", use_rela_p
? ".rela" : ".rel", asect
->name
);
2605 (unsigned int) _bfd_elf_strtab_add (elf_shstrtab (abfd
), name
,
2607 if (rel_hdr
->sh_name
== (unsigned int) -1)
2609 rel_hdr
->sh_type
= use_rela_p
? SHT_RELA
: SHT_REL
;
2610 rel_hdr
->sh_entsize
= (use_rela_p
2611 ? bed
->s
->sizeof_rela
2612 : bed
->s
->sizeof_rel
);
2613 rel_hdr
->sh_addralign
= 1 << bed
->s
->log_file_align
;
2614 rel_hdr
->sh_flags
= 0;
2615 rel_hdr
->sh_addr
= 0;
2616 rel_hdr
->sh_size
= 0;
2617 rel_hdr
->sh_offset
= 0;
2622 /* Set up an ELF internal section header for a section. */
2625 elf_fake_sections (bfd
*abfd
, asection
*asect
, void *failedptrarg
)
2627 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
2628 bfd_boolean
*failedptr
= failedptrarg
;
2629 Elf_Internal_Shdr
*this_hdr
;
2633 /* We already failed; just get out of the bfd_map_over_sections
2638 this_hdr
= &elf_section_data (asect
)->this_hdr
;
2640 this_hdr
->sh_name
= (unsigned int) _bfd_elf_strtab_add (elf_shstrtab (abfd
),
2641 asect
->name
, FALSE
);
2642 if (this_hdr
->sh_name
== (unsigned int) -1)
2648 /* Don't clear sh_flags. Assembler may set additional bits. */
2650 if ((asect
->flags
& SEC_ALLOC
) != 0
2651 || asect
->user_set_vma
)
2652 this_hdr
->sh_addr
= asect
->vma
;
2654 this_hdr
->sh_addr
= 0;
2656 this_hdr
->sh_offset
= 0;
2657 this_hdr
->sh_size
= asect
->size
;
2658 this_hdr
->sh_link
= 0;
2659 this_hdr
->sh_addralign
= 1 << asect
->alignment_power
;
2660 /* The sh_entsize and sh_info fields may have been set already by
2661 copy_private_section_data. */
2663 this_hdr
->bfd_section
= asect
;
2664 this_hdr
->contents
= NULL
;
2666 /* If the section type is unspecified, we set it based on
2668 if (this_hdr
->sh_type
== SHT_NULL
)
2670 if ((asect
->flags
& SEC_GROUP
) != 0)
2671 this_hdr
->sh_type
= SHT_GROUP
;
2672 else if ((asect
->flags
& SEC_ALLOC
) != 0
2673 && (((asect
->flags
& (SEC_LOAD
| SEC_HAS_CONTENTS
)) == 0)
2674 || (asect
->flags
& SEC_NEVER_LOAD
) != 0))
2675 this_hdr
->sh_type
= SHT_NOBITS
;
2677 this_hdr
->sh_type
= SHT_PROGBITS
;
2680 switch (this_hdr
->sh_type
)
2686 case SHT_INIT_ARRAY
:
2687 case SHT_FINI_ARRAY
:
2688 case SHT_PREINIT_ARRAY
:
2695 this_hdr
->sh_entsize
= bed
->s
->sizeof_hash_entry
;
2699 this_hdr
->sh_entsize
= bed
->s
->sizeof_sym
;
2703 this_hdr
->sh_entsize
= bed
->s
->sizeof_dyn
;
2707 if (get_elf_backend_data (abfd
)->may_use_rela_p
)
2708 this_hdr
->sh_entsize
= bed
->s
->sizeof_rela
;
2712 if (get_elf_backend_data (abfd
)->may_use_rel_p
)
2713 this_hdr
->sh_entsize
= bed
->s
->sizeof_rel
;
2716 case SHT_GNU_versym
:
2717 this_hdr
->sh_entsize
= sizeof (Elf_External_Versym
);
2720 case SHT_GNU_verdef
:
2721 this_hdr
->sh_entsize
= 0;
2722 /* objcopy or strip will copy over sh_info, but may not set
2723 cverdefs. The linker will set cverdefs, but sh_info will be
2725 if (this_hdr
->sh_info
== 0)
2726 this_hdr
->sh_info
= elf_tdata (abfd
)->cverdefs
;
2728 BFD_ASSERT (elf_tdata (abfd
)->cverdefs
== 0
2729 || this_hdr
->sh_info
== elf_tdata (abfd
)->cverdefs
);
2732 case SHT_GNU_verneed
:
2733 this_hdr
->sh_entsize
= 0;
2734 /* objcopy or strip will copy over sh_info, but may not set
2735 cverrefs. The linker will set cverrefs, but sh_info will be
2737 if (this_hdr
->sh_info
== 0)
2738 this_hdr
->sh_info
= elf_tdata (abfd
)->cverrefs
;
2740 BFD_ASSERT (elf_tdata (abfd
)->cverrefs
== 0
2741 || this_hdr
->sh_info
== elf_tdata (abfd
)->cverrefs
);
2745 this_hdr
->sh_entsize
= 4;
2749 if ((asect
->flags
& SEC_ALLOC
) != 0)
2750 this_hdr
->sh_flags
|= SHF_ALLOC
;
2751 if ((asect
->flags
& SEC_READONLY
) == 0)
2752 this_hdr
->sh_flags
|= SHF_WRITE
;
2753 if ((asect
->flags
& SEC_CODE
) != 0)
2754 this_hdr
->sh_flags
|= SHF_EXECINSTR
;
2755 if ((asect
->flags
& SEC_MERGE
) != 0)
2757 this_hdr
->sh_flags
|= SHF_MERGE
;
2758 this_hdr
->sh_entsize
= asect
->entsize
;
2759 if ((asect
->flags
& SEC_STRINGS
) != 0)
2760 this_hdr
->sh_flags
|= SHF_STRINGS
;
2762 if ((asect
->flags
& SEC_GROUP
) == 0 && elf_group_name (asect
) != NULL
)
2763 this_hdr
->sh_flags
|= SHF_GROUP
;
2764 if ((asect
->flags
& SEC_THREAD_LOCAL
) != 0)
2766 this_hdr
->sh_flags
|= SHF_TLS
;
2767 if (asect
->size
== 0
2768 && (asect
->flags
& SEC_HAS_CONTENTS
) == 0)
2770 struct bfd_link_order
*o
= asect
->map_tail
.link_order
;
2772 this_hdr
->sh_size
= 0;
2775 this_hdr
->sh_size
= o
->offset
+ o
->size
;
2776 if (this_hdr
->sh_size
!= 0)
2777 this_hdr
->sh_type
= SHT_NOBITS
;
2782 /* Check for processor-specific section types. */
2783 if (bed
->elf_backend_fake_sections
2784 && !(*bed
->elf_backend_fake_sections
) (abfd
, this_hdr
, asect
))
2787 /* If the section has relocs, set up a section header for the
2788 SHT_REL[A] section. If two relocation sections are required for
2789 this section, it is up to the processor-specific back-end to
2790 create the other. */
2791 if ((asect
->flags
& SEC_RELOC
) != 0
2792 && !_bfd_elf_init_reloc_shdr (abfd
,
2793 &elf_section_data (asect
)->rel_hdr
,
2799 /* Fill in the contents of a SHT_GROUP section. */
2802 bfd_elf_set_group_contents (bfd
*abfd
, asection
*sec
, void *failedptrarg
)
2804 bfd_boolean
*failedptr
= failedptrarg
;
2805 unsigned long symindx
;
2806 asection
*elt
, *first
;
2810 /* Ignore linker created group section. See elfNN_ia64_object_p in
2812 if (((sec
->flags
& (SEC_GROUP
| SEC_LINKER_CREATED
)) != SEC_GROUP
)
2817 if (elf_group_id (sec
) != NULL
)
2818 symindx
= elf_group_id (sec
)->udata
.i
;
2822 /* If called from the assembler, swap_out_syms will have set up
2823 elf_section_syms; If called for "ld -r", use target_index. */
2824 if (elf_section_syms (abfd
) != NULL
)
2825 symindx
= elf_section_syms (abfd
)[sec
->index
]->udata
.i
;
2827 symindx
= sec
->target_index
;
2829 elf_section_data (sec
)->this_hdr
.sh_info
= symindx
;
2831 /* The contents won't be allocated for "ld -r" or objcopy. */
2833 if (sec
->contents
== NULL
)
2836 sec
->contents
= bfd_alloc (abfd
, sec
->size
);
2838 /* Arrange for the section to be written out. */
2839 elf_section_data (sec
)->this_hdr
.contents
= sec
->contents
;
2840 if (sec
->contents
== NULL
)
2847 loc
= sec
->contents
+ sec
->size
;
2849 /* Get the pointer to the first section in the group that gas
2850 squirreled away here. objcopy arranges for this to be set to the
2851 start of the input section group. */
2852 first
= elt
= elf_next_in_group (sec
);
2854 /* First element is a flag word. Rest of section is elf section
2855 indices for all the sections of the group. Write them backwards
2856 just to keep the group in the same order as given in .section
2857 directives, not that it matters. */
2866 s
= s
->output_section
;
2869 idx
= elf_section_data (s
)->this_idx
;
2870 H_PUT_32 (abfd
, idx
, loc
);
2871 elt
= elf_next_in_group (elt
);
2876 if ((loc
-= 4) != sec
->contents
)
2879 H_PUT_32 (abfd
, sec
->flags
& SEC_LINK_ONCE
? GRP_COMDAT
: 0, loc
);
2882 /* Assign all ELF section numbers. The dummy first section is handled here
2883 too. The link/info pointers for the standard section types are filled
2884 in here too, while we're at it. */
2887 assign_section_numbers (bfd
*abfd
, struct bfd_link_info
*link_info
)
2889 struct elf_obj_tdata
*t
= elf_tdata (abfd
);
2891 unsigned int section_number
, secn
;
2892 Elf_Internal_Shdr
**i_shdrp
;
2893 struct bfd_elf_section_data
*d
;
2897 _bfd_elf_strtab_clear_all_refs (elf_shstrtab (abfd
));
2899 /* SHT_GROUP sections are in relocatable files only. */
2900 if (link_info
== NULL
|| link_info
->relocatable
)
2902 /* Put SHT_GROUP sections first. */
2903 for (sec
= abfd
->sections
; sec
!= NULL
; sec
= sec
->next
)
2905 d
= elf_section_data (sec
);
2907 if (d
->this_hdr
.sh_type
== SHT_GROUP
)
2909 if (sec
->flags
& SEC_LINKER_CREATED
)
2911 /* Remove the linker created SHT_GROUP sections. */
2912 bfd_section_list_remove (abfd
, sec
);
2913 abfd
->section_count
--;
2917 if (section_number
== SHN_LORESERVE
)
2918 section_number
+= SHN_HIRESERVE
+ 1 - SHN_LORESERVE
;
2919 d
->this_idx
= section_number
++;
2925 for (sec
= abfd
->sections
; sec
; sec
= sec
->next
)
2927 d
= elf_section_data (sec
);
2929 if (d
->this_hdr
.sh_type
!= SHT_GROUP
)
2931 if (section_number
== SHN_LORESERVE
)
2932 section_number
+= SHN_HIRESERVE
+ 1 - SHN_LORESERVE
;
2933 d
->this_idx
= section_number
++;
2935 _bfd_elf_strtab_addref (elf_shstrtab (abfd
), d
->this_hdr
.sh_name
);
2936 if ((sec
->flags
& SEC_RELOC
) == 0)
2940 if (section_number
== SHN_LORESERVE
)
2941 section_number
+= SHN_HIRESERVE
+ 1 - SHN_LORESERVE
;
2942 d
->rel_idx
= section_number
++;
2943 _bfd_elf_strtab_addref (elf_shstrtab (abfd
), d
->rel_hdr
.sh_name
);
2948 if (section_number
== SHN_LORESERVE
)
2949 section_number
+= SHN_HIRESERVE
+ 1 - SHN_LORESERVE
;
2950 d
->rel_idx2
= section_number
++;
2951 _bfd_elf_strtab_addref (elf_shstrtab (abfd
), d
->rel_hdr2
->sh_name
);
2957 if (section_number
== SHN_LORESERVE
)
2958 section_number
+= SHN_HIRESERVE
+ 1 - SHN_LORESERVE
;
2959 t
->shstrtab_section
= section_number
++;
2960 _bfd_elf_strtab_addref (elf_shstrtab (abfd
), t
->shstrtab_hdr
.sh_name
);
2961 elf_elfheader (abfd
)->e_shstrndx
= t
->shstrtab_section
;
2963 if (bfd_get_symcount (abfd
) > 0)
2965 if (section_number
== SHN_LORESERVE
)
2966 section_number
+= SHN_HIRESERVE
+ 1 - SHN_LORESERVE
;
2967 t
->symtab_section
= section_number
++;
2968 _bfd_elf_strtab_addref (elf_shstrtab (abfd
), t
->symtab_hdr
.sh_name
);
2969 if (section_number
> SHN_LORESERVE
- 2)
2971 if (section_number
== SHN_LORESERVE
)
2972 section_number
+= SHN_HIRESERVE
+ 1 - SHN_LORESERVE
;
2973 t
->symtab_shndx_section
= section_number
++;
2974 t
->symtab_shndx_hdr
.sh_name
2975 = (unsigned int) _bfd_elf_strtab_add (elf_shstrtab (abfd
),
2976 ".symtab_shndx", FALSE
);
2977 if (t
->symtab_shndx_hdr
.sh_name
== (unsigned int) -1)
2980 if (section_number
== SHN_LORESERVE
)
2981 section_number
+= SHN_HIRESERVE
+ 1 - SHN_LORESERVE
;
2982 t
->strtab_section
= section_number
++;
2983 _bfd_elf_strtab_addref (elf_shstrtab (abfd
), t
->strtab_hdr
.sh_name
);
2986 _bfd_elf_strtab_finalize (elf_shstrtab (abfd
));
2987 t
->shstrtab_hdr
.sh_size
= _bfd_elf_strtab_size (elf_shstrtab (abfd
));
2989 elf_numsections (abfd
) = section_number
;
2990 elf_elfheader (abfd
)->e_shnum
= section_number
;
2991 if (section_number
> SHN_LORESERVE
)
2992 elf_elfheader (abfd
)->e_shnum
-= SHN_HIRESERVE
+ 1 - SHN_LORESERVE
;
2994 /* Set up the list of section header pointers, in agreement with the
2996 i_shdrp
= bfd_zalloc2 (abfd
, section_number
, sizeof (Elf_Internal_Shdr
*));
2997 if (i_shdrp
== NULL
)
3000 i_shdrp
[0] = bfd_zalloc (abfd
, sizeof (Elf_Internal_Shdr
));
3001 if (i_shdrp
[0] == NULL
)
3003 bfd_release (abfd
, i_shdrp
);
3007 elf_elfsections (abfd
) = i_shdrp
;
3009 i_shdrp
[t
->shstrtab_section
] = &t
->shstrtab_hdr
;
3010 if (bfd_get_symcount (abfd
) > 0)
3012 i_shdrp
[t
->symtab_section
] = &t
->symtab_hdr
;
3013 if (elf_numsections (abfd
) > SHN_LORESERVE
)
3015 i_shdrp
[t
->symtab_shndx_section
] = &t
->symtab_shndx_hdr
;
3016 t
->symtab_shndx_hdr
.sh_link
= t
->symtab_section
;
3018 i_shdrp
[t
->strtab_section
] = &t
->strtab_hdr
;
3019 t
->symtab_hdr
.sh_link
= t
->strtab_section
;
3022 for (sec
= abfd
->sections
; sec
; sec
= sec
->next
)
3024 struct bfd_elf_section_data
*d
= elf_section_data (sec
);
3028 i_shdrp
[d
->this_idx
] = &d
->this_hdr
;
3029 if (d
->rel_idx
!= 0)
3030 i_shdrp
[d
->rel_idx
] = &d
->rel_hdr
;
3031 if (d
->rel_idx2
!= 0)
3032 i_shdrp
[d
->rel_idx2
] = d
->rel_hdr2
;
3034 /* Fill in the sh_link and sh_info fields while we're at it. */
3036 /* sh_link of a reloc section is the section index of the symbol
3037 table. sh_info is the section index of the section to which
3038 the relocation entries apply. */
3039 if (d
->rel_idx
!= 0)
3041 d
->rel_hdr
.sh_link
= t
->symtab_section
;
3042 d
->rel_hdr
.sh_info
= d
->this_idx
;
3044 if (d
->rel_idx2
!= 0)
3046 d
->rel_hdr2
->sh_link
= t
->symtab_section
;
3047 d
->rel_hdr2
->sh_info
= d
->this_idx
;
3050 /* We need to set up sh_link for SHF_LINK_ORDER. */
3051 if ((d
->this_hdr
.sh_flags
& SHF_LINK_ORDER
) != 0)
3053 s
= elf_linked_to_section (sec
);
3056 if (link_info
!= NULL
)
3058 /* For linker, elf_linked_to_section points to the
3060 if (elf_discarded_section (s
))
3063 (*_bfd_error_handler
)
3064 (_("%B: sh_link of section `%A' points to discarded section `%A' of `%B'"),
3065 abfd
, d
->this_hdr
.bfd_section
,
3067 /* Point to the kept section if it has the same
3068 size as the discarded one. */
3069 kept
= _bfd_elf_check_kept_section (s
);
3072 bfd_set_error (bfd_error_bad_value
);
3077 s
= s
->output_section
;
3078 BFD_ASSERT (s
!= NULL
);
3080 d
->this_hdr
.sh_link
= elf_section_data (s
)->this_idx
;
3085 The Intel C compiler generates SHT_IA_64_UNWIND with
3086 SHF_LINK_ORDER. But it doesn't set the sh_link or
3087 sh_info fields. Hence we could get the situation
3089 const struct elf_backend_data
*bed
3090 = get_elf_backend_data (abfd
);
3091 if (bed
->link_order_error_handler
)
3092 bed
->link_order_error_handler
3093 (_("%B: warning: sh_link not set for section `%A'"),
3098 switch (d
->this_hdr
.sh_type
)
3102 /* A reloc section which we are treating as a normal BFD
3103 section. sh_link is the section index of the symbol
3104 table. sh_info is the section index of the section to
3105 which the relocation entries apply. We assume that an
3106 allocated reloc section uses the dynamic symbol table.
3107 FIXME: How can we be sure? */
3108 s
= bfd_get_section_by_name (abfd
, ".dynsym");
3110 d
->this_hdr
.sh_link
= elf_section_data (s
)->this_idx
;
3112 /* We look up the section the relocs apply to by name. */
3114 if (d
->this_hdr
.sh_type
== SHT_REL
)
3118 s
= bfd_get_section_by_name (abfd
, name
);
3120 d
->this_hdr
.sh_info
= elf_section_data (s
)->this_idx
;
3124 /* We assume that a section named .stab*str is a stabs
3125 string section. We look for a section with the same name
3126 but without the trailing ``str'', and set its sh_link
3127 field to point to this section. */
3128 if (strncmp (sec
->name
, ".stab", sizeof ".stab" - 1) == 0
3129 && strcmp (sec
->name
+ strlen (sec
->name
) - 3, "str") == 0)
3134 len
= strlen (sec
->name
);
3135 alc
= bfd_malloc (len
- 2);
3138 memcpy (alc
, sec
->name
, len
- 3);
3139 alc
[len
- 3] = '\0';
3140 s
= bfd_get_section_by_name (abfd
, alc
);
3144 elf_section_data (s
)->this_hdr
.sh_link
= d
->this_idx
;
3146 /* This is a .stab section. */
3147 if (elf_section_data (s
)->this_hdr
.sh_entsize
== 0)
3148 elf_section_data (s
)->this_hdr
.sh_entsize
3149 = 4 + 2 * bfd_get_arch_size (abfd
) / 8;
3156 case SHT_GNU_verneed
:
3157 case SHT_GNU_verdef
:
3158 /* sh_link is the section header index of the string table
3159 used for the dynamic entries, or the symbol table, or the
3161 s
= bfd_get_section_by_name (abfd
, ".dynstr");
3163 d
->this_hdr
.sh_link
= elf_section_data (s
)->this_idx
;
3166 case SHT_GNU_LIBLIST
:
3167 /* sh_link is the section header index of the prelink library
3169 used for the dynamic entries, or the symbol table, or the
3171 s
= bfd_get_section_by_name (abfd
, (sec
->flags
& SEC_ALLOC
)
3172 ? ".dynstr" : ".gnu.libstr");
3174 d
->this_hdr
.sh_link
= elf_section_data (s
)->this_idx
;
3178 case SHT_GNU_versym
:
3179 /* sh_link is the section header index of the symbol table
3180 this hash table or version table is for. */
3181 s
= bfd_get_section_by_name (abfd
, ".dynsym");
3183 d
->this_hdr
.sh_link
= elf_section_data (s
)->this_idx
;
3187 d
->this_hdr
.sh_link
= t
->symtab_section
;
3191 for (secn
= 1; secn
< section_number
; ++secn
)
3192 if (i_shdrp
[secn
] == NULL
)
3193 i_shdrp
[secn
] = i_shdrp
[0];
3195 i_shdrp
[secn
]->sh_name
= _bfd_elf_strtab_offset (elf_shstrtab (abfd
),
3196 i_shdrp
[secn
]->sh_name
);
3200 /* Map symbol from it's internal number to the external number, moving
3201 all local symbols to be at the head of the list. */
3204 sym_is_global (bfd
*abfd
, asymbol
*sym
)
3206 /* If the backend has a special mapping, use it. */
3207 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
3208 if (bed
->elf_backend_sym_is_global
)
3209 return (*bed
->elf_backend_sym_is_global
) (abfd
, sym
);
3211 return ((sym
->flags
& (BSF_GLOBAL
| BSF_WEAK
)) != 0
3212 || bfd_is_und_section (bfd_get_section (sym
))
3213 || bfd_is_com_section (bfd_get_section (sym
)));
3217 elf_map_symbols (bfd
*abfd
)
3219 unsigned int symcount
= bfd_get_symcount (abfd
);
3220 asymbol
**syms
= bfd_get_outsymbols (abfd
);
3221 asymbol
**sect_syms
;
3222 unsigned int num_locals
= 0;
3223 unsigned int num_globals
= 0;
3224 unsigned int num_locals2
= 0;
3225 unsigned int num_globals2
= 0;
3232 fprintf (stderr
, "elf_map_symbols\n");
3236 for (asect
= abfd
->sections
; asect
; asect
= asect
->next
)
3238 if (max_index
< asect
->index
)
3239 max_index
= asect
->index
;
3243 sect_syms
= bfd_zalloc2 (abfd
, max_index
, sizeof (asymbol
*));
3244 if (sect_syms
== NULL
)
3246 elf_section_syms (abfd
) = sect_syms
;
3247 elf_num_section_syms (abfd
) = max_index
;
3249 /* Init sect_syms entries for any section symbols we have already
3250 decided to output. */
3251 for (idx
= 0; idx
< symcount
; idx
++)
3253 asymbol
*sym
= syms
[idx
];
3255 if ((sym
->flags
& BSF_SECTION_SYM
) != 0
3262 if (sec
->owner
!= NULL
)
3264 if (sec
->owner
!= abfd
)
3266 if (sec
->output_offset
!= 0)
3269 sec
= sec
->output_section
;
3271 /* Empty sections in the input files may have had a
3272 section symbol created for them. (See the comment
3273 near the end of _bfd_generic_link_output_symbols in
3274 linker.c). If the linker script discards such
3275 sections then we will reach this point. Since we know
3276 that we cannot avoid this case, we detect it and skip
3277 the abort and the assignment to the sect_syms array.
3278 To reproduce this particular case try running the
3279 linker testsuite test ld-scripts/weak.exp for an ELF
3280 port that uses the generic linker. */
3281 if (sec
->owner
== NULL
)
3284 BFD_ASSERT (sec
->owner
== abfd
);
3286 sect_syms
[sec
->index
] = syms
[idx
];
3291 /* Classify all of the symbols. */
3292 for (idx
= 0; idx
< symcount
; idx
++)
3294 if (!sym_is_global (abfd
, syms
[idx
]))
3300 /* We will be adding a section symbol for each BFD section. Most normal
3301 sections will already have a section symbol in outsymbols, but
3302 eg. SHT_GROUP sections will not, and we need the section symbol mapped
3303 at least in that case. */
3304 for (asect
= abfd
->sections
; asect
; asect
= asect
->next
)
3306 if (sect_syms
[asect
->index
] == NULL
)
3308 if (!sym_is_global (abfd
, asect
->symbol
))
3315 /* Now sort the symbols so the local symbols are first. */
3316 new_syms
= bfd_alloc2 (abfd
, num_locals
+ num_globals
, sizeof (asymbol
*));
3318 if (new_syms
== NULL
)
3321 for (idx
= 0; idx
< symcount
; idx
++)
3323 asymbol
*sym
= syms
[idx
];
3326 if (!sym_is_global (abfd
, sym
))
3329 i
= num_locals
+ num_globals2
++;
3331 sym
->udata
.i
= i
+ 1;
3333 for (asect
= abfd
->sections
; asect
; asect
= asect
->next
)
3335 if (sect_syms
[asect
->index
] == NULL
)
3337 asymbol
*sym
= asect
->symbol
;
3340 sect_syms
[asect
->index
] = sym
;
3341 if (!sym_is_global (abfd
, sym
))
3344 i
= num_locals
+ num_globals2
++;
3346 sym
->udata
.i
= i
+ 1;
3350 bfd_set_symtab (abfd
, new_syms
, num_locals
+ num_globals
);
3352 elf_num_locals (abfd
) = num_locals
;
3353 elf_num_globals (abfd
) = num_globals
;
3357 /* Align to the maximum file alignment that could be required for any
3358 ELF data structure. */
3360 static inline file_ptr
3361 align_file_position (file_ptr off
, int align
)
3363 return (off
+ align
- 1) & ~(align
- 1);
3366 /* Assign a file position to a section, optionally aligning to the
3367 required section alignment. */
3370 _bfd_elf_assign_file_position_for_section (Elf_Internal_Shdr
*i_shdrp
,
3378 al
= i_shdrp
->sh_addralign
;
3380 offset
= BFD_ALIGN (offset
, al
);
3382 i_shdrp
->sh_offset
= offset
;
3383 if (i_shdrp
->bfd_section
!= NULL
)
3384 i_shdrp
->bfd_section
->filepos
= offset
;
3385 if (i_shdrp
->sh_type
!= SHT_NOBITS
)
3386 offset
+= i_shdrp
->sh_size
;
3390 /* Compute the file positions we are going to put the sections at, and
3391 otherwise prepare to begin writing out the ELF file. If LINK_INFO
3392 is not NULL, this is being called by the ELF backend linker. */
3395 _bfd_elf_compute_section_file_positions (bfd
*abfd
,
3396 struct bfd_link_info
*link_info
)
3398 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
3400 struct bfd_strtab_hash
*strtab
= NULL
;
3401 Elf_Internal_Shdr
*shstrtab_hdr
;
3403 if (abfd
->output_has_begun
)
3406 /* Do any elf backend specific processing first. */
3407 if (bed
->elf_backend_begin_write_processing
)
3408 (*bed
->elf_backend_begin_write_processing
) (abfd
, link_info
);
3410 if (! prep_headers (abfd
))
3413 /* Post process the headers if necessary. */
3414 if (bed
->elf_backend_post_process_headers
)
3415 (*bed
->elf_backend_post_process_headers
) (abfd
, link_info
);
3418 bfd_map_over_sections (abfd
, elf_fake_sections
, &failed
);
3422 if (!assign_section_numbers (abfd
, link_info
))
3425 /* The backend linker builds symbol table information itself. */
3426 if (link_info
== NULL
&& bfd_get_symcount (abfd
) > 0)
3428 /* Non-zero if doing a relocatable link. */
3429 int relocatable_p
= ! (abfd
->flags
& (EXEC_P
| DYNAMIC
));
3431 if (! swap_out_syms (abfd
, &strtab
, relocatable_p
))
3435 if (link_info
== NULL
)
3437 bfd_map_over_sections (abfd
, bfd_elf_set_group_contents
, &failed
);
3442 shstrtab_hdr
= &elf_tdata (abfd
)->shstrtab_hdr
;
3443 /* sh_name was set in prep_headers. */
3444 shstrtab_hdr
->sh_type
= SHT_STRTAB
;
3445 shstrtab_hdr
->sh_flags
= 0;
3446 shstrtab_hdr
->sh_addr
= 0;
3447 shstrtab_hdr
->sh_size
= _bfd_elf_strtab_size (elf_shstrtab (abfd
));
3448 shstrtab_hdr
->sh_entsize
= 0;
3449 shstrtab_hdr
->sh_link
= 0;
3450 shstrtab_hdr
->sh_info
= 0;
3451 /* sh_offset is set in assign_file_positions_except_relocs. */
3452 shstrtab_hdr
->sh_addralign
= 1;
3454 if (!assign_file_positions_except_relocs (abfd
, link_info
))
3457 if (link_info
== NULL
&& bfd_get_symcount (abfd
) > 0)
3460 Elf_Internal_Shdr
*hdr
;
3462 off
= elf_tdata (abfd
)->next_file_pos
;
3464 hdr
= &elf_tdata (abfd
)->symtab_hdr
;
3465 off
= _bfd_elf_assign_file_position_for_section (hdr
, off
, TRUE
);
3467 hdr
= &elf_tdata (abfd
)->symtab_shndx_hdr
;
3468 if (hdr
->sh_size
!= 0)
3469 off
= _bfd_elf_assign_file_position_for_section (hdr
, off
, TRUE
);
3471 hdr
= &elf_tdata (abfd
)->strtab_hdr
;
3472 off
= _bfd_elf_assign_file_position_for_section (hdr
, off
, TRUE
);
3474 elf_tdata (abfd
)->next_file_pos
= off
;
3476 /* Now that we know where the .strtab section goes, write it
3478 if (bfd_seek (abfd
, hdr
->sh_offset
, SEEK_SET
) != 0
3479 || ! _bfd_stringtab_emit (abfd
, strtab
))
3481 _bfd_stringtab_free (strtab
);
3484 abfd
->output_has_begun
= TRUE
;
3489 /* Create a mapping from a set of sections to a program segment. */
3491 static struct elf_segment_map
*
3492 make_mapping (bfd
*abfd
,
3493 asection
**sections
,
3498 struct elf_segment_map
*m
;
3503 amt
= sizeof (struct elf_segment_map
);
3504 amt
+= (to
- from
- 1) * sizeof (asection
*);
3505 m
= bfd_zalloc (abfd
, amt
);
3509 m
->p_type
= PT_LOAD
;
3510 for (i
= from
, hdrpp
= sections
+ from
; i
< to
; i
++, hdrpp
++)
3511 m
->sections
[i
- from
] = *hdrpp
;
3512 m
->count
= to
- from
;
3514 if (from
== 0 && phdr
)
3516 /* Include the headers in the first PT_LOAD segment. */
3517 m
->includes_filehdr
= 1;
3518 m
->includes_phdrs
= 1;
3524 /* Create the PT_DYNAMIC segment, which includes DYNSEC. Returns NULL
3527 struct elf_segment_map
*
3528 _bfd_elf_make_dynamic_segment (bfd
*abfd
, asection
*dynsec
)
3530 struct elf_segment_map
*m
;
3532 m
= bfd_zalloc (abfd
, sizeof (struct elf_segment_map
));
3536 m
->p_type
= PT_DYNAMIC
;
3538 m
->sections
[0] = dynsec
;
3543 /* Set up a mapping from BFD sections to program segments. */
3546 map_sections_to_segments (bfd
*abfd
)
3548 asection
**sections
= NULL
;
3552 struct elf_segment_map
*mfirst
;
3553 struct elf_segment_map
**pm
;
3554 struct elf_segment_map
*m
;
3557 unsigned int phdr_index
;
3558 bfd_vma maxpagesize
;
3560 bfd_boolean phdr_in_segment
= TRUE
;
3561 bfd_boolean writable
;
3563 asection
*first_tls
= NULL
;
3564 asection
*dynsec
, *eh_frame_hdr
;
3567 if (elf_tdata (abfd
)->segment_map
!= NULL
)
3570 if (bfd_count_sections (abfd
) == 0)
3573 /* Select the allocated sections, and sort them. */
3575 sections
= bfd_malloc2 (bfd_count_sections (abfd
), sizeof (asection
*));
3576 if (sections
== NULL
)
3580 for (s
= abfd
->sections
; s
!= NULL
; s
= s
->next
)
3582 if ((s
->flags
& SEC_ALLOC
) != 0)
3588 BFD_ASSERT (i
<= bfd_count_sections (abfd
));
3591 qsort (sections
, (size_t) count
, sizeof (asection
*), elf_sort_sections
);
3593 /* Build the mapping. */
3598 /* If we have a .interp section, then create a PT_PHDR segment for
3599 the program headers and a PT_INTERP segment for the .interp
3601 s
= bfd_get_section_by_name (abfd
, ".interp");
3602 if (s
!= NULL
&& (s
->flags
& SEC_LOAD
) != 0)
3604 amt
= sizeof (struct elf_segment_map
);
3605 m
= bfd_zalloc (abfd
, amt
);
3609 m
->p_type
= PT_PHDR
;
3610 /* FIXME: UnixWare and Solaris set PF_X, Irix 5 does not. */
3611 m
->p_flags
= PF_R
| PF_X
;
3612 m
->p_flags_valid
= 1;
3613 m
->includes_phdrs
= 1;
3618 amt
= sizeof (struct elf_segment_map
);
3619 m
= bfd_zalloc (abfd
, amt
);
3623 m
->p_type
= PT_INTERP
;
3631 /* Look through the sections. We put sections in the same program
3632 segment when the start of the second section can be placed within
3633 a few bytes of the end of the first section. */
3637 maxpagesize
= get_elf_backend_data (abfd
)->maxpagesize
;
3639 dynsec
= bfd_get_section_by_name (abfd
, ".dynamic");
3641 && (dynsec
->flags
& SEC_LOAD
) == 0)
3644 /* Deal with -Ttext or something similar such that the first section
3645 is not adjacent to the program headers. This is an
3646 approximation, since at this point we don't know exactly how many
3647 program headers we will need. */
3650 bfd_size_type phdr_size
;
3652 phdr_size
= elf_tdata (abfd
)->program_header_size
;
3654 phdr_size
= get_elf_backend_data (abfd
)->s
->sizeof_phdr
;
3655 if ((abfd
->flags
& D_PAGED
) == 0
3656 || sections
[0]->lma
< phdr_size
3657 || sections
[0]->lma
% maxpagesize
< phdr_size
% maxpagesize
)
3658 phdr_in_segment
= FALSE
;
3661 for (i
= 0, hdrpp
= sections
; i
< count
; i
++, hdrpp
++)
3664 bfd_boolean new_segment
;
3668 /* See if this section and the last one will fit in the same
3671 if (last_hdr
== NULL
)
3673 /* If we don't have a segment yet, then we don't need a new
3674 one (we build the last one after this loop). */
3675 new_segment
= FALSE
;
3677 else if (last_hdr
->lma
- last_hdr
->vma
!= hdr
->lma
- hdr
->vma
)
3679 /* If this section has a different relation between the
3680 virtual address and the load address, then we need a new
3684 else if (BFD_ALIGN (last_hdr
->lma
+ last_size
, maxpagesize
)
3685 < BFD_ALIGN (hdr
->lma
, maxpagesize
))
3687 /* If putting this section in this segment would force us to
3688 skip a page in the segment, then we need a new segment. */
3691 else if ((last_hdr
->flags
& (SEC_LOAD
| SEC_THREAD_LOCAL
)) == 0
3692 && (hdr
->flags
& (SEC_LOAD
| SEC_THREAD_LOCAL
)) != 0)
3694 /* We don't want to put a loadable section after a
3695 nonloadable section in the same segment.
3696 Consider .tbss sections as loadable for this purpose. */
3699 else if ((abfd
->flags
& D_PAGED
) == 0)
3701 /* If the file is not demand paged, which means that we
3702 don't require the sections to be correctly aligned in the
3703 file, then there is no other reason for a new segment. */
3704 new_segment
= FALSE
;
3707 && (hdr
->flags
& SEC_READONLY
) == 0
3708 && (((last_hdr
->lma
+ last_size
- 1)
3709 & ~(maxpagesize
- 1))
3710 != (hdr
->lma
& ~(maxpagesize
- 1))))
3712 /* We don't want to put a writable section in a read only
3713 segment, unless they are on the same page in memory
3714 anyhow. We already know that the last section does not
3715 bring us past the current section on the page, so the
3716 only case in which the new section is not on the same
3717 page as the previous section is when the previous section
3718 ends precisely on a page boundary. */
3723 /* Otherwise, we can use the same segment. */
3724 new_segment
= FALSE
;
3729 if ((hdr
->flags
& SEC_READONLY
) == 0)
3732 /* .tbss sections effectively have zero size. */
3733 if ((hdr
->flags
& (SEC_THREAD_LOCAL
| SEC_LOAD
)) != SEC_THREAD_LOCAL
)
3734 last_size
= hdr
->size
;
3740 /* We need a new program segment. We must create a new program
3741 header holding all the sections from phdr_index until hdr. */
3743 m
= make_mapping (abfd
, sections
, phdr_index
, i
, phdr_in_segment
);
3750 if ((hdr
->flags
& SEC_READONLY
) == 0)
3756 /* .tbss sections effectively have zero size. */
3757 if ((hdr
->flags
& (SEC_THREAD_LOCAL
| SEC_LOAD
)) != SEC_THREAD_LOCAL
)
3758 last_size
= hdr
->size
;
3762 phdr_in_segment
= FALSE
;
3765 /* Create a final PT_LOAD program segment. */
3766 if (last_hdr
!= NULL
)
3768 m
= make_mapping (abfd
, sections
, phdr_index
, i
, phdr_in_segment
);
3776 /* If there is a .dynamic section, throw in a PT_DYNAMIC segment. */
3779 m
= _bfd_elf_make_dynamic_segment (abfd
, dynsec
);
3786 /* For each loadable .note section, add a PT_NOTE segment. We don't
3787 use bfd_get_section_by_name, because if we link together
3788 nonloadable .note sections and loadable .note sections, we will
3789 generate two .note sections in the output file. FIXME: Using
3790 names for section types is bogus anyhow. */
3791 for (s
= abfd
->sections
; s
!= NULL
; s
= s
->next
)
3793 if ((s
->flags
& SEC_LOAD
) != 0
3794 && strncmp (s
->name
, ".note", 5) == 0)
3796 amt
= sizeof (struct elf_segment_map
);
3797 m
= bfd_zalloc (abfd
, amt
);
3801 m
->p_type
= PT_NOTE
;
3808 if (s
->flags
& SEC_THREAD_LOCAL
)
3816 /* If there are any SHF_TLS output sections, add PT_TLS segment. */
3821 amt
= sizeof (struct elf_segment_map
);
3822 amt
+= (tls_count
- 1) * sizeof (asection
*);
3823 m
= bfd_zalloc (abfd
, amt
);
3828 m
->count
= tls_count
;
3829 /* Mandated PF_R. */
3831 m
->p_flags_valid
= 1;
3832 for (i
= 0; i
< tls_count
; ++i
)
3834 BFD_ASSERT (first_tls
->flags
& SEC_THREAD_LOCAL
);
3835 m
->sections
[i
] = first_tls
;
3836 first_tls
= first_tls
->next
;
3843 /* If there is a .eh_frame_hdr section, throw in a PT_GNU_EH_FRAME
3845 eh_frame_hdr
= elf_tdata (abfd
)->eh_frame_hdr
;
3846 if (eh_frame_hdr
!= NULL
3847 && (eh_frame_hdr
->output_section
->flags
& SEC_LOAD
) != 0)
3849 amt
= sizeof (struct elf_segment_map
);
3850 m
= bfd_zalloc (abfd
, amt
);
3854 m
->p_type
= PT_GNU_EH_FRAME
;
3856 m
->sections
[0] = eh_frame_hdr
->output_section
;
3862 if (elf_tdata (abfd
)->stack_flags
)
3864 amt
= sizeof (struct elf_segment_map
);
3865 m
= bfd_zalloc (abfd
, amt
);
3869 m
->p_type
= PT_GNU_STACK
;
3870 m
->p_flags
= elf_tdata (abfd
)->stack_flags
;
3871 m
->p_flags_valid
= 1;
3877 if (elf_tdata (abfd
)->relro
)
3879 amt
= sizeof (struct elf_segment_map
);
3880 m
= bfd_zalloc (abfd
, amt
);
3884 m
->p_type
= PT_GNU_RELRO
;
3886 m
->p_flags_valid
= 1;
3895 elf_tdata (abfd
)->segment_map
= mfirst
;
3899 if (sections
!= NULL
)
3904 /* Sort sections by address. */
3907 elf_sort_sections (const void *arg1
, const void *arg2
)
3909 const asection
*sec1
= *(const asection
**) arg1
;
3910 const asection
*sec2
= *(const asection
**) arg2
;
3911 bfd_size_type size1
, size2
;
3913 /* Sort by LMA first, since this is the address used to
3914 place the section into a segment. */
3915 if (sec1
->lma
< sec2
->lma
)
3917 else if (sec1
->lma
> sec2
->lma
)
3920 /* Then sort by VMA. Normally the LMA and the VMA will be
3921 the same, and this will do nothing. */
3922 if (sec1
->vma
< sec2
->vma
)
3924 else if (sec1
->vma
> sec2
->vma
)
3927 /* Put !SEC_LOAD sections after SEC_LOAD ones. */
3929 #define TOEND(x) (((x)->flags & (SEC_LOAD | SEC_THREAD_LOCAL)) == 0)
3935 /* If the indicies are the same, do not return 0
3936 here, but continue to try the next comparison. */
3937 if (sec1
->target_index
- sec2
->target_index
!= 0)
3938 return sec1
->target_index
- sec2
->target_index
;
3943 else if (TOEND (sec2
))
3948 /* Sort by size, to put zero sized sections
3949 before others at the same address. */
3951 size1
= (sec1
->flags
& SEC_LOAD
) ? sec1
->size
: 0;
3952 size2
= (sec2
->flags
& SEC_LOAD
) ? sec2
->size
: 0;
3959 return sec1
->target_index
- sec2
->target_index
;
3962 /* Ian Lance Taylor writes:
3964 We shouldn't be using % with a negative signed number. That's just
3965 not good. We have to make sure either that the number is not
3966 negative, or that the number has an unsigned type. When the types
3967 are all the same size they wind up as unsigned. When file_ptr is a
3968 larger signed type, the arithmetic winds up as signed long long,
3971 What we're trying to say here is something like ``increase OFF by
3972 the least amount that will cause it to be equal to the VMA modulo
3974 /* In other words, something like:
3976 vma_offset = m->sections[0]->vma % bed->maxpagesize;
3977 off_offset = off % bed->maxpagesize;
3978 if (vma_offset < off_offset)
3979 adjustment = vma_offset + bed->maxpagesize - off_offset;
3981 adjustment = vma_offset - off_offset;
3983 which can can be collapsed into the expression below. */
3986 vma_page_aligned_bias (bfd_vma vma
, ufile_ptr off
, bfd_vma maxpagesize
)
3988 return ((vma
- off
) % maxpagesize
);
3991 /* Assign file positions to the sections based on the mapping from
3992 sections to segments. This function also sets up some fields in
3993 the file header, and writes out the program headers. */
3996 assign_file_positions_for_segments (bfd
*abfd
, struct bfd_link_info
*link_info
)
3998 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
4000 struct elf_segment_map
*m
;
4002 Elf_Internal_Phdr
*phdrs
;
4004 bfd_vma filehdr_vaddr
, filehdr_paddr
;
4005 bfd_vma phdrs_vaddr
, phdrs_paddr
;
4006 Elf_Internal_Phdr
*p
;
4008 if (elf_tdata (abfd
)->segment_map
== NULL
)
4010 if (! map_sections_to_segments (abfd
))
4015 /* The placement algorithm assumes that non allocated sections are
4016 not in PT_LOAD segments. We ensure this here by removing such
4017 sections from the segment map. We also remove excluded
4019 for (m
= elf_tdata (abfd
)->segment_map
;
4023 unsigned int new_count
;
4027 for (i
= 0; i
< m
->count
; i
++)
4029 if ((m
->sections
[i
]->flags
& SEC_EXCLUDE
) == 0
4030 && ((m
->sections
[i
]->flags
& SEC_ALLOC
) != 0
4031 || m
->p_type
!= PT_LOAD
))
4034 m
->sections
[new_count
] = m
->sections
[i
];
4040 if (new_count
!= m
->count
)
4041 m
->count
= new_count
;
4045 if (bed
->elf_backend_modify_segment_map
)
4047 if (! (*bed
->elf_backend_modify_segment_map
) (abfd
, link_info
))
4052 for (m
= elf_tdata (abfd
)->segment_map
; m
!= NULL
; m
= m
->next
)
4055 elf_elfheader (abfd
)->e_phoff
= bed
->s
->sizeof_ehdr
;
4056 elf_elfheader (abfd
)->e_phentsize
= bed
->s
->sizeof_phdr
;
4057 elf_elfheader (abfd
)->e_phnum
= count
;
4061 elf_tdata (abfd
)->next_file_pos
= bed
->s
->sizeof_ehdr
;
4065 /* If we already counted the number of program segments, make sure
4066 that we allocated enough space. This happens when SIZEOF_HEADERS
4067 is used in a linker script. */
4068 alloc
= elf_tdata (abfd
)->program_header_size
/ bed
->s
->sizeof_phdr
;
4069 if (alloc
!= 0 && count
> alloc
)
4071 ((*_bfd_error_handler
)
4072 (_("%B: Not enough room for program headers (allocated %u, need %u)"),
4073 abfd
, alloc
, count
));
4074 bfd_set_error (bfd_error_bad_value
);
4081 phdrs
= bfd_alloc2 (abfd
, alloc
, sizeof (Elf_Internal_Phdr
));
4085 off
= bed
->s
->sizeof_ehdr
;
4086 off
+= alloc
* bed
->s
->sizeof_phdr
;
4093 for (m
= elf_tdata (abfd
)->segment_map
, p
= phdrs
;
4100 /* If elf_segment_map is not from map_sections_to_segments, the
4101 sections may not be correctly ordered. NOTE: sorting should
4102 not be done to the PT_NOTE section of a corefile, which may
4103 contain several pseudo-sections artificially created by bfd.
4104 Sorting these pseudo-sections breaks things badly. */
4106 && !(elf_elfheader (abfd
)->e_type
== ET_CORE
4107 && m
->p_type
== PT_NOTE
))
4108 qsort (m
->sections
, (size_t) m
->count
, sizeof (asection
*),
4111 /* An ELF segment (described by Elf_Internal_Phdr) may contain a
4112 number of sections with contents contributing to both p_filesz
4113 and p_memsz, followed by a number of sections with no contents
4114 that just contribute to p_memsz. In this loop, OFF tracks next
4115 available file offset for PT_LOAD and PT_NOTE segments. VOFF is
4116 an adjustment we use for segments that have no file contents
4117 but need zero filled memory allocation. */
4119 p
->p_type
= m
->p_type
;
4120 p
->p_flags
= m
->p_flags
;
4122 if (p
->p_type
== PT_LOAD
4125 bfd_size_type align
;
4127 unsigned int align_power
= 0;
4129 for (i
= 0, secpp
= m
->sections
; i
< m
->count
; i
++, secpp
++)
4131 unsigned int secalign
;
4133 secalign
= bfd_get_section_alignment (abfd
, *secpp
);
4134 if (secalign
> align_power
)
4135 align_power
= secalign
;
4137 align
= (bfd_size_type
) 1 << align_power
;
4139 if ((abfd
->flags
& D_PAGED
) != 0 && bed
->maxpagesize
> align
)
4140 align
= bed
->maxpagesize
;
4142 adjust
= vma_page_aligned_bias (m
->sections
[0]->vma
, off
, align
);
4145 && !m
->includes_filehdr
4146 && !m
->includes_phdrs
4147 && (ufile_ptr
) off
>= align
)
4149 /* If the first section isn't loadable, the same holds for
4150 any other sections. Since the segment won't need file
4151 space, we can make p_offset overlap some prior segment.
4152 However, .tbss is special. If a segment starts with
4153 .tbss, we need to look at the next section to decide
4154 whether the segment has any loadable sections. */
4156 while ((m
->sections
[i
]->flags
& SEC_LOAD
) == 0)
4158 if ((m
->sections
[i
]->flags
& SEC_THREAD_LOCAL
) == 0
4162 voff
= adjust
- align
;
4168 /* Make sure the .dynamic section is the first section in the
4169 PT_DYNAMIC segment. */
4170 else if (p
->p_type
== PT_DYNAMIC
4172 && strcmp (m
->sections
[0]->name
, ".dynamic") != 0)
4175 (_("%B: The first section in the PT_DYNAMIC segment is not the .dynamic section"),
4177 bfd_set_error (bfd_error_bad_value
);
4184 p
->p_vaddr
= m
->sections
[0]->vma
;
4186 if (m
->p_paddr_valid
)
4187 p
->p_paddr
= m
->p_paddr
;
4188 else if (m
->count
== 0)
4191 p
->p_paddr
= m
->sections
[0]->lma
;
4193 if (p
->p_type
== PT_LOAD
4194 && (abfd
->flags
& D_PAGED
) != 0)
4195 p
->p_align
= bed
->maxpagesize
;
4196 else if (m
->count
== 0)
4197 p
->p_align
= 1 << bed
->s
->log_file_align
;
4205 if (m
->includes_filehdr
)
4207 if (! m
->p_flags_valid
)
4210 p
->p_filesz
= bed
->s
->sizeof_ehdr
;
4211 p
->p_memsz
= bed
->s
->sizeof_ehdr
;
4214 BFD_ASSERT (p
->p_type
== PT_LOAD
);
4216 if (p
->p_vaddr
< (bfd_vma
) off
)
4218 (*_bfd_error_handler
)
4219 (_("%B: Not enough room for program headers, try linking with -N"),
4221 bfd_set_error (bfd_error_bad_value
);
4226 if (! m
->p_paddr_valid
)
4229 if (p
->p_type
== PT_LOAD
)
4231 filehdr_vaddr
= p
->p_vaddr
;
4232 filehdr_paddr
= p
->p_paddr
;
4236 if (m
->includes_phdrs
)
4238 if (! m
->p_flags_valid
)
4241 if (m
->includes_filehdr
)
4243 if (p
->p_type
== PT_LOAD
)
4245 phdrs_vaddr
= p
->p_vaddr
+ bed
->s
->sizeof_ehdr
;
4246 phdrs_paddr
= p
->p_paddr
+ bed
->s
->sizeof_ehdr
;
4251 p
->p_offset
= bed
->s
->sizeof_ehdr
;
4255 BFD_ASSERT (p
->p_type
== PT_LOAD
);
4256 p
->p_vaddr
-= off
- p
->p_offset
;
4257 if (! m
->p_paddr_valid
)
4258 p
->p_paddr
-= off
- p
->p_offset
;
4261 if (p
->p_type
== PT_LOAD
)
4263 phdrs_vaddr
= p
->p_vaddr
;
4264 phdrs_paddr
= p
->p_paddr
;
4267 phdrs_vaddr
= bed
->maxpagesize
+ bed
->s
->sizeof_ehdr
;
4270 p
->p_filesz
+= alloc
* bed
->s
->sizeof_phdr
;
4271 p
->p_memsz
+= alloc
* bed
->s
->sizeof_phdr
;
4274 if (p
->p_type
== PT_LOAD
4275 || (p
->p_type
== PT_NOTE
&& bfd_get_format (abfd
) == bfd_core
))
4277 if (! m
->includes_filehdr
&& ! m
->includes_phdrs
)
4278 p
->p_offset
= off
+ voff
;
4283 adjust
= off
- (p
->p_offset
+ p
->p_filesz
);
4284 p
->p_filesz
+= adjust
;
4285 p
->p_memsz
+= adjust
;
4289 for (i
= 0, secpp
= m
->sections
; i
< m
->count
; i
++, secpp
++)
4293 bfd_size_type align
;
4297 align
= 1 << bfd_get_section_alignment (abfd
, sec
);
4299 if (p
->p_type
== PT_LOAD
4300 || p
->p_type
== PT_TLS
)
4302 bfd_signed_vma adjust
;
4304 if ((flags
& SEC_LOAD
) != 0)
4306 adjust
= sec
->lma
- (p
->p_paddr
+ p
->p_filesz
);
4309 (*_bfd_error_handler
)
4310 (_("%B: section %A lma 0x%lx overlaps previous sections"),
4311 abfd
, sec
, (unsigned long) sec
->lma
);
4315 p
->p_filesz
+= adjust
;
4316 p
->p_memsz
+= adjust
;
4318 /* .tbss is special. It doesn't contribute to p_memsz of
4320 else if ((flags
& SEC_THREAD_LOCAL
) == 0
4321 || p
->p_type
== PT_TLS
)
4323 /* The section VMA must equal the file position
4324 modulo the page size. */
4325 bfd_size_type page
= align
;
4326 if ((abfd
->flags
& D_PAGED
) != 0 && bed
->maxpagesize
> page
)
4327 page
= bed
->maxpagesize
;
4328 adjust
= vma_page_aligned_bias (sec
->vma
,
4329 p
->p_vaddr
+ p
->p_memsz
,
4331 p
->p_memsz
+= adjust
;
4335 if (p
->p_type
== PT_NOTE
&& bfd_get_format (abfd
) == bfd_core
)
4337 /* The section at i == 0 is the one that actually contains
4343 p
->p_filesz
= sec
->size
;
4349 /* The rest are fake sections that shouldn't be written. */
4358 if (p
->p_type
== PT_LOAD
)
4361 /* FIXME: The SEC_HAS_CONTENTS test here dates back to
4362 1997, and the exact reason for it isn't clear. One
4363 plausible explanation is that it is to work around
4364 a problem we have with linker scripts using data
4365 statements in NOLOAD sections. I don't think it
4366 makes a great deal of sense to have such a section
4367 assigned to a PT_LOAD segment, but apparently
4368 people do this. The data statement results in a
4369 bfd_data_link_order being built, and these need
4370 section contents to write into. Eventually, we get
4371 to _bfd_elf_write_object_contents which writes any
4372 section with contents to the output. Make room
4373 here for the write, so that following segments are
4375 if ((flags
& SEC_LOAD
) != 0
4376 || (flags
& SEC_HAS_CONTENTS
) != 0)
4380 if ((flags
& SEC_LOAD
) != 0)
4382 p
->p_filesz
+= sec
->size
;
4383 p
->p_memsz
+= sec
->size
;
4385 /* PR ld/594: Sections in note segments which are not loaded
4386 contribute to the file size but not the in-memory size. */
4387 else if (p
->p_type
== PT_NOTE
4388 && (flags
& SEC_HAS_CONTENTS
) != 0)
4389 p
->p_filesz
+= sec
->size
;
4391 /* .tbss is special. It doesn't contribute to p_memsz of
4393 else if ((flags
& SEC_THREAD_LOCAL
) == 0
4394 || p
->p_type
== PT_TLS
)
4395 p
->p_memsz
+= sec
->size
;
4397 if (p
->p_type
== PT_TLS
4399 && (sec
->flags
& SEC_HAS_CONTENTS
) == 0)
4401 struct bfd_link_order
*o
= sec
->map_tail
.link_order
;
4403 p
->p_memsz
+= o
->offset
+ o
->size
;
4406 if (align
> p
->p_align
4407 && (p
->p_type
!= PT_LOAD
|| (abfd
->flags
& D_PAGED
) == 0))
4411 if (! m
->p_flags_valid
)
4414 if ((flags
& SEC_CODE
) != 0)
4416 if ((flags
& SEC_READONLY
) == 0)
4422 /* Now that we have set the section file positions, we can set up
4423 the file positions for the non PT_LOAD segments. */
4424 for (m
= elf_tdata (abfd
)->segment_map
, p
= phdrs
;
4428 if (p
->p_type
!= PT_LOAD
&& m
->count
> 0)
4430 BFD_ASSERT (! m
->includes_filehdr
&& ! m
->includes_phdrs
);
4431 /* If the section has not yet been assigned a file position,
4432 do so now. The ARM BPABI requires that .dynamic section
4433 not be marked SEC_ALLOC because it is not part of any
4434 PT_LOAD segment, so it will not be processed above. */
4435 if (p
->p_type
== PT_DYNAMIC
&& m
->sections
[0]->filepos
== 0)
4438 Elf_Internal_Shdr
** const i_shdrpp
= elf_elfsections (abfd
);
4441 while (i_shdrpp
[i
]->bfd_section
!= m
->sections
[0])
4443 off
= (_bfd_elf_assign_file_position_for_section
4444 (i_shdrpp
[i
], off
, TRUE
));
4445 p
->p_filesz
= m
->sections
[0]->size
;
4447 p
->p_offset
= m
->sections
[0]->filepos
;
4451 if (m
->includes_filehdr
)
4453 p
->p_vaddr
= filehdr_vaddr
;
4454 if (! m
->p_paddr_valid
)
4455 p
->p_paddr
= filehdr_paddr
;
4457 else if (m
->includes_phdrs
)
4459 p
->p_vaddr
= phdrs_vaddr
;
4460 if (! m
->p_paddr_valid
)
4461 p
->p_paddr
= phdrs_paddr
;
4463 else if (p
->p_type
== PT_GNU_RELRO
)
4465 Elf_Internal_Phdr
*lp
;
4467 for (lp
= phdrs
; lp
< phdrs
+ count
; ++lp
)
4469 if (lp
->p_type
== PT_LOAD
4470 && lp
->p_vaddr
<= link_info
->relro_end
4471 && lp
->p_vaddr
>= link_info
->relro_start
4472 && lp
->p_vaddr
+ lp
->p_filesz
4473 >= link_info
->relro_end
)
4477 if (lp
< phdrs
+ count
4478 && link_info
->relro_end
> lp
->p_vaddr
)
4480 p
->p_vaddr
= lp
->p_vaddr
;
4481 p
->p_paddr
= lp
->p_paddr
;
4482 p
->p_offset
= lp
->p_offset
;
4483 p
->p_filesz
= link_info
->relro_end
- lp
->p_vaddr
;
4484 p
->p_memsz
= p
->p_filesz
;
4486 p
->p_flags
= (lp
->p_flags
& ~PF_W
);
4490 memset (p
, 0, sizeof *p
);
4491 p
->p_type
= PT_NULL
;
4497 /* Clear out any program headers we allocated but did not use. */
4498 for (; count
< alloc
; count
++, p
++)
4500 memset (p
, 0, sizeof *p
);
4501 p
->p_type
= PT_NULL
;
4504 elf_tdata (abfd
)->phdr
= phdrs
;
4506 elf_tdata (abfd
)->next_file_pos
= off
;
4508 /* Write out the program headers. */
4509 if (bfd_seek (abfd
, (bfd_signed_vma
) bed
->s
->sizeof_ehdr
, SEEK_SET
) != 0
4510 || bed
->s
->write_out_phdrs (abfd
, phdrs
, alloc
) != 0)
4516 /* Get the size of the program header.
4518 If this is called by the linker before any of the section VMA's are set, it
4519 can't calculate the correct value for a strange memory layout. This only
4520 happens when SIZEOF_HEADERS is used in a linker script. In this case,
4521 SORTED_HDRS is NULL and we assume the normal scenario of one text and one
4522 data segment (exclusive of .interp and .dynamic).
4524 ??? User written scripts must either not use SIZEOF_HEADERS, or assume there
4525 will be two segments. */
4527 static bfd_size_type
4528 get_program_header_size (bfd
*abfd
)
4532 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
4534 /* We can't return a different result each time we're called. */
4535 if (elf_tdata (abfd
)->program_header_size
!= 0)
4536 return elf_tdata (abfd
)->program_header_size
;
4538 if (elf_tdata (abfd
)->segment_map
!= NULL
)
4540 struct elf_segment_map
*m
;
4543 for (m
= elf_tdata (abfd
)->segment_map
; m
!= NULL
; m
= m
->next
)
4545 elf_tdata (abfd
)->program_header_size
= segs
* bed
->s
->sizeof_phdr
;
4546 return elf_tdata (abfd
)->program_header_size
;
4549 /* Assume we will need exactly two PT_LOAD segments: one for text
4550 and one for data. */
4553 s
= bfd_get_section_by_name (abfd
, ".interp");
4554 if (s
!= NULL
&& (s
->flags
& SEC_LOAD
) != 0)
4556 /* If we have a loadable interpreter section, we need a
4557 PT_INTERP segment. In this case, assume we also need a
4558 PT_PHDR segment, although that may not be true for all
4563 if (bfd_get_section_by_name (abfd
, ".dynamic") != NULL
)
4565 /* We need a PT_DYNAMIC segment. */
4569 if (elf_tdata (abfd
)->eh_frame_hdr
)
4571 /* We need a PT_GNU_EH_FRAME segment. */
4575 if (elf_tdata (abfd
)->stack_flags
)
4577 /* We need a PT_GNU_STACK segment. */
4581 if (elf_tdata (abfd
)->relro
)
4583 /* We need a PT_GNU_RELRO segment. */
4587 for (s
= abfd
->sections
; s
!= NULL
; s
= s
->next
)
4589 if ((s
->flags
& SEC_LOAD
) != 0
4590 && strncmp (s
->name
, ".note", 5) == 0)
4592 /* We need a PT_NOTE segment. */
4597 for (s
= abfd
->sections
; s
!= NULL
; s
= s
->next
)
4599 if (s
->flags
& SEC_THREAD_LOCAL
)
4601 /* We need a PT_TLS segment. */
4607 /* Let the backend count up any program headers it might need. */
4608 if (bed
->elf_backend_additional_program_headers
)
4612 a
= (*bed
->elf_backend_additional_program_headers
) (abfd
);
4618 elf_tdata (abfd
)->program_header_size
= segs
* bed
->s
->sizeof_phdr
;
4619 return elf_tdata (abfd
)->program_header_size
;
4622 /* Work out the file positions of all the sections. This is called by
4623 _bfd_elf_compute_section_file_positions. All the section sizes and
4624 VMAs must be known before this is called.
4626 Reloc sections come in two flavours: Those processed specially as
4627 "side-channel" data attached to a section to which they apply, and
4628 those that bfd doesn't process as relocations. The latter sort are
4629 stored in a normal bfd section by bfd_section_from_shdr. We don't
4630 consider the former sort here, unless they form part of the loadable
4631 image. Reloc sections not assigned here will be handled later by
4632 assign_file_positions_for_relocs.
4634 We also don't set the positions of the .symtab and .strtab here. */
4637 assign_file_positions_except_relocs (bfd
*abfd
,
4638 struct bfd_link_info
*link_info
)
4640 struct elf_obj_tdata
* const tdata
= elf_tdata (abfd
);
4641 Elf_Internal_Ehdr
* const i_ehdrp
= elf_elfheader (abfd
);
4642 Elf_Internal_Shdr
** const i_shdrpp
= elf_elfsections (abfd
);
4643 unsigned int num_sec
= elf_numsections (abfd
);
4645 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
4647 if ((abfd
->flags
& (EXEC_P
| DYNAMIC
)) == 0
4648 && bfd_get_format (abfd
) != bfd_core
)
4650 Elf_Internal_Shdr
**hdrpp
;
4653 /* Start after the ELF header. */
4654 off
= i_ehdrp
->e_ehsize
;
4656 /* We are not creating an executable, which means that we are
4657 not creating a program header, and that the actual order of
4658 the sections in the file is unimportant. */
4659 for (i
= 1, hdrpp
= i_shdrpp
+ 1; i
< num_sec
; i
++, hdrpp
++)
4661 Elf_Internal_Shdr
*hdr
;
4664 if (((hdr
->sh_type
== SHT_REL
|| hdr
->sh_type
== SHT_RELA
)
4665 && hdr
->bfd_section
== NULL
)
4666 || i
== tdata
->symtab_section
4667 || i
== tdata
->symtab_shndx_section
4668 || i
== tdata
->strtab_section
)
4670 hdr
->sh_offset
= -1;
4673 off
= _bfd_elf_assign_file_position_for_section (hdr
, off
, TRUE
);
4675 if (i
== SHN_LORESERVE
- 1)
4677 i
+= SHN_HIRESERVE
+ 1 - SHN_LORESERVE
;
4678 hdrpp
+= SHN_HIRESERVE
+ 1 - SHN_LORESERVE
;
4685 Elf_Internal_Shdr
**hdrpp
;
4687 /* Assign file positions for the loaded sections based on the
4688 assignment of sections to segments. */
4689 if (! assign_file_positions_for_segments (abfd
, link_info
))
4692 /* Assign file positions for the other sections. */
4694 off
= elf_tdata (abfd
)->next_file_pos
;
4695 for (i
= 1, hdrpp
= i_shdrpp
+ 1; i
< num_sec
; i
++, hdrpp
++)
4697 Elf_Internal_Shdr
*hdr
;
4700 if (hdr
->bfd_section
!= NULL
4701 && hdr
->bfd_section
->filepos
!= 0)
4702 hdr
->sh_offset
= hdr
->bfd_section
->filepos
;
4703 else if ((hdr
->sh_flags
& SHF_ALLOC
) != 0)
4705 ((*_bfd_error_handler
)
4706 (_("%B: warning: allocated section `%s' not in segment"),
4708 (hdr
->bfd_section
== NULL
4710 : hdr
->bfd_section
->name
)));
4711 if ((abfd
->flags
& D_PAGED
) != 0)
4712 off
+= vma_page_aligned_bias (hdr
->sh_addr
, off
,
4715 off
+= vma_page_aligned_bias (hdr
->sh_addr
, off
,
4717 off
= _bfd_elf_assign_file_position_for_section (hdr
, off
,
4720 else if (((hdr
->sh_type
== SHT_REL
|| hdr
->sh_type
== SHT_RELA
)
4721 && hdr
->bfd_section
== NULL
)
4722 || hdr
== i_shdrpp
[tdata
->symtab_section
]
4723 || hdr
== i_shdrpp
[tdata
->symtab_shndx_section
]
4724 || hdr
== i_shdrpp
[tdata
->strtab_section
])
4725 hdr
->sh_offset
= -1;
4727 off
= _bfd_elf_assign_file_position_for_section (hdr
, off
, TRUE
);
4729 if (i
== SHN_LORESERVE
- 1)
4731 i
+= SHN_HIRESERVE
+ 1 - SHN_LORESERVE
;
4732 hdrpp
+= SHN_HIRESERVE
+ 1 - SHN_LORESERVE
;
4737 /* Place the section headers. */
4738 off
= align_file_position (off
, 1 << bed
->s
->log_file_align
);
4739 i_ehdrp
->e_shoff
= off
;
4740 off
+= i_ehdrp
->e_shnum
* i_ehdrp
->e_shentsize
;
4742 elf_tdata (abfd
)->next_file_pos
= off
;
4748 prep_headers (bfd
*abfd
)
4750 Elf_Internal_Ehdr
*i_ehdrp
; /* Elf file header, internal form */
4751 Elf_Internal_Phdr
*i_phdrp
= 0; /* Program header table, internal form */
4752 Elf_Internal_Shdr
**i_shdrp
; /* Section header table, internal form */
4753 struct elf_strtab_hash
*shstrtab
;
4754 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
4756 i_ehdrp
= elf_elfheader (abfd
);
4757 i_shdrp
= elf_elfsections (abfd
);
4759 shstrtab
= _bfd_elf_strtab_init ();
4760 if (shstrtab
== NULL
)
4763 elf_shstrtab (abfd
) = shstrtab
;
4765 i_ehdrp
->e_ident
[EI_MAG0
] = ELFMAG0
;
4766 i_ehdrp
->e_ident
[EI_MAG1
] = ELFMAG1
;
4767 i_ehdrp
->e_ident
[EI_MAG2
] = ELFMAG2
;
4768 i_ehdrp
->e_ident
[EI_MAG3
] = ELFMAG3
;
4770 i_ehdrp
->e_ident
[EI_CLASS
] = bed
->s
->elfclass
;
4771 i_ehdrp
->e_ident
[EI_DATA
] =
4772 bfd_big_endian (abfd
) ? ELFDATA2MSB
: ELFDATA2LSB
;
4773 i_ehdrp
->e_ident
[EI_VERSION
] = bed
->s
->ev_current
;
4775 if ((abfd
->flags
& DYNAMIC
) != 0)
4776 i_ehdrp
->e_type
= ET_DYN
;
4777 else if ((abfd
->flags
& EXEC_P
) != 0)
4778 i_ehdrp
->e_type
= ET_EXEC
;
4779 else if (bfd_get_format (abfd
) == bfd_core
)
4780 i_ehdrp
->e_type
= ET_CORE
;
4782 i_ehdrp
->e_type
= ET_REL
;
4784 switch (bfd_get_arch (abfd
))
4786 case bfd_arch_unknown
:
4787 i_ehdrp
->e_machine
= EM_NONE
;
4790 /* There used to be a long list of cases here, each one setting
4791 e_machine to the same EM_* macro #defined as ELF_MACHINE_CODE
4792 in the corresponding bfd definition. To avoid duplication,
4793 the switch was removed. Machines that need special handling
4794 can generally do it in elf_backend_final_write_processing(),
4795 unless they need the information earlier than the final write.
4796 Such need can generally be supplied by replacing the tests for
4797 e_machine with the conditions used to determine it. */
4799 i_ehdrp
->e_machine
= bed
->elf_machine_code
;
4802 i_ehdrp
->e_version
= bed
->s
->ev_current
;
4803 i_ehdrp
->e_ehsize
= bed
->s
->sizeof_ehdr
;
4805 /* No program header, for now. */
4806 i_ehdrp
->e_phoff
= 0;
4807 i_ehdrp
->e_phentsize
= 0;
4808 i_ehdrp
->e_phnum
= 0;
4810 /* Each bfd section is section header entry. */
4811 i_ehdrp
->e_entry
= bfd_get_start_address (abfd
);
4812 i_ehdrp
->e_shentsize
= bed
->s
->sizeof_shdr
;
4814 /* If we're building an executable, we'll need a program header table. */
4815 if (abfd
->flags
& EXEC_P
)
4816 /* It all happens later. */
4820 i_ehdrp
->e_phentsize
= 0;
4822 i_ehdrp
->e_phoff
= 0;
4825 elf_tdata (abfd
)->symtab_hdr
.sh_name
=
4826 (unsigned int) _bfd_elf_strtab_add (shstrtab
, ".symtab", FALSE
);
4827 elf_tdata (abfd
)->strtab_hdr
.sh_name
=
4828 (unsigned int) _bfd_elf_strtab_add (shstrtab
, ".strtab", FALSE
);
4829 elf_tdata (abfd
)->shstrtab_hdr
.sh_name
=
4830 (unsigned int) _bfd_elf_strtab_add (shstrtab
, ".shstrtab", FALSE
);
4831 if (elf_tdata (abfd
)->symtab_hdr
.sh_name
== (unsigned int) -1
4832 || elf_tdata (abfd
)->symtab_hdr
.sh_name
== (unsigned int) -1
4833 || elf_tdata (abfd
)->shstrtab_hdr
.sh_name
== (unsigned int) -1)
4839 /* Assign file positions for all the reloc sections which are not part
4840 of the loadable file image. */
4843 _bfd_elf_assign_file_positions_for_relocs (bfd
*abfd
)
4846 unsigned int i
, num_sec
;
4847 Elf_Internal_Shdr
**shdrpp
;
4849 off
= elf_tdata (abfd
)->next_file_pos
;
4851 num_sec
= elf_numsections (abfd
);
4852 for (i
= 1, shdrpp
= elf_elfsections (abfd
) + 1; i
< num_sec
; i
++, shdrpp
++)
4854 Elf_Internal_Shdr
*shdrp
;
4857 if ((shdrp
->sh_type
== SHT_REL
|| shdrp
->sh_type
== SHT_RELA
)
4858 && shdrp
->sh_offset
== -1)
4859 off
= _bfd_elf_assign_file_position_for_section (shdrp
, off
, TRUE
);
4862 elf_tdata (abfd
)->next_file_pos
= off
;
4866 _bfd_elf_write_object_contents (bfd
*abfd
)
4868 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
4869 Elf_Internal_Ehdr
*i_ehdrp
;
4870 Elf_Internal_Shdr
**i_shdrp
;
4872 unsigned int count
, num_sec
;
4874 if (! abfd
->output_has_begun
4875 && ! _bfd_elf_compute_section_file_positions (abfd
, NULL
))
4878 i_shdrp
= elf_elfsections (abfd
);
4879 i_ehdrp
= elf_elfheader (abfd
);
4882 bfd_map_over_sections (abfd
, bed
->s
->write_relocs
, &failed
);
4886 _bfd_elf_assign_file_positions_for_relocs (abfd
);
4888 /* After writing the headers, we need to write the sections too... */
4889 num_sec
= elf_numsections (abfd
);
4890 for (count
= 1; count
< num_sec
; count
++)
4892 if (bed
->elf_backend_section_processing
)
4893 (*bed
->elf_backend_section_processing
) (abfd
, i_shdrp
[count
]);
4894 if (i_shdrp
[count
]->contents
)
4896 bfd_size_type amt
= i_shdrp
[count
]->sh_size
;
4898 if (bfd_seek (abfd
, i_shdrp
[count
]->sh_offset
, SEEK_SET
) != 0
4899 || bfd_bwrite (i_shdrp
[count
]->contents
, amt
, abfd
) != amt
)
4902 if (count
== SHN_LORESERVE
- 1)
4903 count
+= SHN_HIRESERVE
+ 1 - SHN_LORESERVE
;
4906 /* Write out the section header names. */
4907 if (elf_shstrtab (abfd
) != NULL
4908 && (bfd_seek (abfd
, elf_tdata (abfd
)->shstrtab_hdr
.sh_offset
, SEEK_SET
) != 0
4909 || ! _bfd_elf_strtab_emit (abfd
, elf_shstrtab (abfd
))))
4912 if (bed
->elf_backend_final_write_processing
)
4913 (*bed
->elf_backend_final_write_processing
) (abfd
,
4914 elf_tdata (abfd
)->linker
);
4916 return bed
->s
->write_shdrs_and_ehdr (abfd
);
4920 _bfd_elf_write_corefile_contents (bfd
*abfd
)
4922 /* Hopefully this can be done just like an object file. */
4923 return _bfd_elf_write_object_contents (abfd
);
4926 /* Given a section, search the header to find them. */
4929 _bfd_elf_section_from_bfd_section (bfd
*abfd
, struct bfd_section
*asect
)
4931 const struct elf_backend_data
*bed
;
4934 if (elf_section_data (asect
) != NULL
4935 && elf_section_data (asect
)->this_idx
!= 0)
4936 return elf_section_data (asect
)->this_idx
;
4938 if (bfd_is_abs_section (asect
))
4940 else if (bfd_is_com_section (asect
))
4942 else if (bfd_is_und_section (asect
))
4947 bed
= get_elf_backend_data (abfd
);
4948 if (bed
->elf_backend_section_from_bfd_section
)
4952 if ((*bed
->elf_backend_section_from_bfd_section
) (abfd
, asect
, &retval
))
4957 bfd_set_error (bfd_error_nonrepresentable_section
);
4962 /* Given a BFD symbol, return the index in the ELF symbol table, or -1
4966 _bfd_elf_symbol_from_bfd_symbol (bfd
*abfd
, asymbol
**asym_ptr_ptr
)
4968 asymbol
*asym_ptr
= *asym_ptr_ptr
;
4970 flagword flags
= asym_ptr
->flags
;
4972 /* When gas creates relocations against local labels, it creates its
4973 own symbol for the section, but does put the symbol into the
4974 symbol chain, so udata is 0. When the linker is generating
4975 relocatable output, this section symbol may be for one of the
4976 input sections rather than the output section. */
4977 if (asym_ptr
->udata
.i
== 0
4978 && (flags
& BSF_SECTION_SYM
)
4979 && asym_ptr
->section
)
4983 if (asym_ptr
->section
->output_section
!= NULL
)
4984 indx
= asym_ptr
->section
->output_section
->index
;
4986 indx
= asym_ptr
->section
->index
;
4987 if (indx
< elf_num_section_syms (abfd
)
4988 && elf_section_syms (abfd
)[indx
] != NULL
)
4989 asym_ptr
->udata
.i
= elf_section_syms (abfd
)[indx
]->udata
.i
;
4992 idx
= asym_ptr
->udata
.i
;
4996 /* This case can occur when using --strip-symbol on a symbol
4997 which is used in a relocation entry. */
4998 (*_bfd_error_handler
)
4999 (_("%B: symbol `%s' required but not present"),
5000 abfd
, bfd_asymbol_name (asym_ptr
));
5001 bfd_set_error (bfd_error_no_symbols
);
5008 "elf_symbol_from_bfd_symbol 0x%.8lx, name = %s, sym num = %d, flags = 0x%.8lx%s\n",
5009 (long) asym_ptr
, asym_ptr
->name
, idx
, flags
,
5010 elf_symbol_flags (flags
));
5018 /* Copy private BFD data. This copies any program header information. */
5021 copy_private_bfd_data (bfd
*ibfd
, bfd
*obfd
)
5023 Elf_Internal_Ehdr
*iehdr
;
5024 struct elf_segment_map
*map
;
5025 struct elf_segment_map
*map_first
;
5026 struct elf_segment_map
**pointer_to_map
;
5027 Elf_Internal_Phdr
*segment
;
5030 unsigned int num_segments
;
5031 bfd_boolean phdr_included
= FALSE
;
5032 bfd_vma maxpagesize
;
5033 struct elf_segment_map
*phdr_adjust_seg
= NULL
;
5034 unsigned int phdr_adjust_num
= 0;
5035 const struct elf_backend_data
*bed
;
5037 if (bfd_get_flavour (ibfd
) != bfd_target_elf_flavour
5038 || bfd_get_flavour (obfd
) != bfd_target_elf_flavour
)
5041 if (elf_tdata (ibfd
)->phdr
== NULL
)
5044 bed
= get_elf_backend_data (ibfd
);
5045 iehdr
= elf_elfheader (ibfd
);
5048 pointer_to_map
= &map_first
;
5050 num_segments
= elf_elfheader (ibfd
)->e_phnum
;
5051 maxpagesize
= get_elf_backend_data (obfd
)->maxpagesize
;
5053 /* Returns the end address of the segment + 1. */
5054 #define SEGMENT_END(segment, start) \
5055 (start + (segment->p_memsz > segment->p_filesz \
5056 ? segment->p_memsz : segment->p_filesz))
5058 #define SECTION_SIZE(section, segment) \
5059 (((section->flags & (SEC_HAS_CONTENTS | SEC_THREAD_LOCAL)) \
5060 != SEC_THREAD_LOCAL || segment->p_type == PT_TLS) \
5061 ? section->size : 0)
5063 /* Returns TRUE if the given section is contained within
5064 the given segment. VMA addresses are compared. */
5065 #define IS_CONTAINED_BY_VMA(section, segment) \
5066 (section->vma >= segment->p_vaddr \
5067 && (section->vma + SECTION_SIZE (section, segment) \
5068 <= (SEGMENT_END (segment, segment->p_vaddr))))
5070 /* Returns TRUE if the given section is contained within
5071 the given segment. LMA addresses are compared. */
5072 #define IS_CONTAINED_BY_LMA(section, segment, base) \
5073 (section->lma >= base \
5074 && (section->lma + SECTION_SIZE (section, segment) \
5075 <= SEGMENT_END (segment, base)))
5077 /* Special case: corefile "NOTE" section containing regs, prpsinfo etc. */
5078 #define IS_COREFILE_NOTE(p, s) \
5079 (p->p_type == PT_NOTE \
5080 && bfd_get_format (ibfd) == bfd_core \
5081 && s->vma == 0 && s->lma == 0 \
5082 && (bfd_vma) s->filepos >= p->p_offset \
5083 && ((bfd_vma) s->filepos + s->size \
5084 <= p->p_offset + p->p_filesz))
5086 /* The complicated case when p_vaddr is 0 is to handle the Solaris
5087 linker, which generates a PT_INTERP section with p_vaddr and
5088 p_memsz set to 0. */
5089 #define IS_SOLARIS_PT_INTERP(p, s) \
5091 && p->p_paddr == 0 \
5092 && p->p_memsz == 0 \
5093 && p->p_filesz > 0 \
5094 && (s->flags & SEC_HAS_CONTENTS) != 0 \
5096 && (bfd_vma) s->filepos >= p->p_offset \
5097 && ((bfd_vma) s->filepos + s->size \
5098 <= p->p_offset + p->p_filesz))
5100 /* Decide if the given section should be included in the given segment.
5101 A section will be included if:
5102 1. It is within the address space of the segment -- we use the LMA
5103 if that is set for the segment and the VMA otherwise,
5104 2. It is an allocated segment,
5105 3. There is an output section associated with it,
5106 4. The section has not already been allocated to a previous segment.
5107 5. PT_GNU_STACK segments do not include any sections.
5108 6. PT_TLS segment includes only SHF_TLS sections.
5109 7. SHF_TLS sections are only in PT_TLS or PT_LOAD segments.
5110 8. PT_DYNAMIC should not contain empty sections at the beginning
5111 (with the possible exception of .dynamic). */
5112 #define INCLUDE_SECTION_IN_SEGMENT(section, segment, bed) \
5113 ((((segment->p_paddr \
5114 ? IS_CONTAINED_BY_LMA (section, segment, segment->p_paddr) \
5115 : IS_CONTAINED_BY_VMA (section, segment)) \
5116 && (section->flags & SEC_ALLOC) != 0) \
5117 || IS_COREFILE_NOTE (segment, section)) \
5118 && section->output_section != NULL \
5119 && segment->p_type != PT_GNU_STACK \
5120 && (segment->p_type != PT_TLS \
5121 || (section->flags & SEC_THREAD_LOCAL)) \
5122 && (segment->p_type == PT_LOAD \
5123 || segment->p_type == PT_TLS \
5124 || (section->flags & SEC_THREAD_LOCAL) == 0) \
5125 && (segment->p_type != PT_DYNAMIC \
5126 || SECTION_SIZE (section, segment) > 0 \
5127 || (segment->p_paddr \
5128 ? segment->p_paddr != section->lma \
5129 : segment->p_vaddr != section->vma) \
5130 || (strcmp (bfd_get_section_name (ibfd, section), ".dynamic") \
5132 && ! section->segment_mark)
5134 /* Returns TRUE iff seg1 starts after the end of seg2. */
5135 #define SEGMENT_AFTER_SEGMENT(seg1, seg2, field) \
5136 (seg1->field >= SEGMENT_END (seg2, seg2->field))
5138 /* Returns TRUE iff seg1 and seg2 overlap. Segments overlap iff both
5139 their VMA address ranges and their LMA address ranges overlap.
5140 It is possible to have overlapping VMA ranges without overlapping LMA
5141 ranges. RedBoot images for example can have both .data and .bss mapped
5142 to the same VMA range, but with the .data section mapped to a different
5144 #define SEGMENT_OVERLAPS(seg1, seg2) \
5145 ( !(SEGMENT_AFTER_SEGMENT (seg1, seg2, p_vaddr) \
5146 || SEGMENT_AFTER_SEGMENT (seg2, seg1, p_vaddr)) \
5147 && !(SEGMENT_AFTER_SEGMENT (seg1, seg2, p_paddr) \
5148 || SEGMENT_AFTER_SEGMENT (seg2, seg1, p_paddr)))
5150 /* Initialise the segment mark field. */
5151 for (section
= ibfd
->sections
; section
!= NULL
; section
= section
->next
)
5152 section
->segment_mark
= FALSE
;
5154 /* Scan through the segments specified in the program header
5155 of the input BFD. For this first scan we look for overlaps
5156 in the loadable segments. These can be created by weird
5157 parameters to objcopy. Also, fix some solaris weirdness. */
5158 for (i
= 0, segment
= elf_tdata (ibfd
)->phdr
;
5163 Elf_Internal_Phdr
*segment2
;
5165 if (segment
->p_type
== PT_INTERP
)
5166 for (section
= ibfd
->sections
; section
; section
= section
->next
)
5167 if (IS_SOLARIS_PT_INTERP (segment
, section
))
5169 /* Mininal change so that the normal section to segment
5170 assignment code will work. */
5171 segment
->p_vaddr
= section
->vma
;
5175 if (segment
->p_type
!= PT_LOAD
)
5178 /* Determine if this segment overlaps any previous segments. */
5179 for (j
= 0, segment2
= elf_tdata (ibfd
)->phdr
; j
< i
; j
++, segment2
++)
5181 bfd_signed_vma extra_length
;
5183 if (segment2
->p_type
!= PT_LOAD
5184 || ! SEGMENT_OVERLAPS (segment
, segment2
))
5187 /* Merge the two segments together. */
5188 if (segment2
->p_vaddr
< segment
->p_vaddr
)
5190 /* Extend SEGMENT2 to include SEGMENT and then delete
5193 SEGMENT_END (segment
, segment
->p_vaddr
)
5194 - SEGMENT_END (segment2
, segment2
->p_vaddr
);
5196 if (extra_length
> 0)
5198 segment2
->p_memsz
+= extra_length
;
5199 segment2
->p_filesz
+= extra_length
;
5202 segment
->p_type
= PT_NULL
;
5204 /* Since we have deleted P we must restart the outer loop. */
5206 segment
= elf_tdata (ibfd
)->phdr
;
5211 /* Extend SEGMENT to include SEGMENT2 and then delete
5214 SEGMENT_END (segment2
, segment2
->p_vaddr
)
5215 - SEGMENT_END (segment
, segment
->p_vaddr
);
5217 if (extra_length
> 0)
5219 segment
->p_memsz
+= extra_length
;
5220 segment
->p_filesz
+= extra_length
;
5223 segment2
->p_type
= PT_NULL
;
5228 /* The second scan attempts to assign sections to segments. */
5229 for (i
= 0, segment
= elf_tdata (ibfd
)->phdr
;
5233 unsigned int section_count
;
5234 asection
** sections
;
5235 asection
* output_section
;
5237 bfd_vma matching_lma
;
5238 bfd_vma suggested_lma
;
5242 if (segment
->p_type
== PT_NULL
)
5245 /* Compute how many sections might be placed into this segment. */
5246 for (section
= ibfd
->sections
, section_count
= 0;
5248 section
= section
->next
)
5249 if (INCLUDE_SECTION_IN_SEGMENT (section
, segment
, bed
))
5252 /* Allocate a segment map big enough to contain
5253 all of the sections we have selected. */
5254 amt
= sizeof (struct elf_segment_map
);
5255 amt
+= ((bfd_size_type
) section_count
- 1) * sizeof (asection
*);
5256 map
= bfd_alloc (obfd
, amt
);
5260 /* Initialise the fields of the segment map. Default to
5261 using the physical address of the segment in the input BFD. */
5263 map
->p_type
= segment
->p_type
;
5264 map
->p_flags
= segment
->p_flags
;
5265 map
->p_flags_valid
= 1;
5266 map
->p_paddr
= segment
->p_paddr
;
5267 map
->p_paddr_valid
= 1;
5269 /* Determine if this segment contains the ELF file header
5270 and if it contains the program headers themselves. */
5271 map
->includes_filehdr
= (segment
->p_offset
== 0
5272 && segment
->p_filesz
>= iehdr
->e_ehsize
);
5274 map
->includes_phdrs
= 0;
5276 if (! phdr_included
|| segment
->p_type
!= PT_LOAD
)
5278 map
->includes_phdrs
=
5279 (segment
->p_offset
<= (bfd_vma
) iehdr
->e_phoff
5280 && (segment
->p_offset
+ segment
->p_filesz
5281 >= ((bfd_vma
) iehdr
->e_phoff
5282 + iehdr
->e_phnum
* iehdr
->e_phentsize
)));
5284 if (segment
->p_type
== PT_LOAD
&& map
->includes_phdrs
)
5285 phdr_included
= TRUE
;
5288 if (section_count
== 0)
5290 /* Special segments, such as the PT_PHDR segment, may contain
5291 no sections, but ordinary, loadable segments should contain
5292 something. They are allowed by the ELF spec however, so only
5293 a warning is produced. */
5294 if (segment
->p_type
== PT_LOAD
)
5295 (*_bfd_error_handler
)
5296 (_("%B: warning: Empty loadable segment detected, is this intentional ?\n"),
5300 *pointer_to_map
= map
;
5301 pointer_to_map
= &map
->next
;
5306 /* Now scan the sections in the input BFD again and attempt
5307 to add their corresponding output sections to the segment map.
5308 The problem here is how to handle an output section which has
5309 been moved (ie had its LMA changed). There are four possibilities:
5311 1. None of the sections have been moved.
5312 In this case we can continue to use the segment LMA from the
5315 2. All of the sections have been moved by the same amount.
5316 In this case we can change the segment's LMA to match the LMA
5317 of the first section.
5319 3. Some of the sections have been moved, others have not.
5320 In this case those sections which have not been moved can be
5321 placed in the current segment which will have to have its size,
5322 and possibly its LMA changed, and a new segment or segments will
5323 have to be created to contain the other sections.
5325 4. The sections have been moved, but not by the same amount.
5326 In this case we can change the segment's LMA to match the LMA
5327 of the first section and we will have to create a new segment
5328 or segments to contain the other sections.
5330 In order to save time, we allocate an array to hold the section
5331 pointers that we are interested in. As these sections get assigned
5332 to a segment, they are removed from this array. */
5334 /* Gcc 2.96 miscompiles this code on mips. Don't do casting here
5335 to work around this long long bug. */
5336 sections
= bfd_malloc2 (section_count
, sizeof (asection
*));
5337 if (sections
== NULL
)
5340 /* Step One: Scan for segment vs section LMA conflicts.
5341 Also add the sections to the section array allocated above.
5342 Also add the sections to the current segment. In the common
5343 case, where the sections have not been moved, this means that
5344 we have completely filled the segment, and there is nothing
5350 for (j
= 0, section
= ibfd
->sections
;
5352 section
= section
->next
)
5354 if (INCLUDE_SECTION_IN_SEGMENT (section
, segment
, bed
))
5356 output_section
= section
->output_section
;
5358 sections
[j
++] = section
;
5360 /* The Solaris native linker always sets p_paddr to 0.
5361 We try to catch that case here, and set it to the
5362 correct value. Note - some backends require that
5363 p_paddr be left as zero. */
5364 if (segment
->p_paddr
== 0
5365 && segment
->p_vaddr
!= 0
5366 && (! bed
->want_p_paddr_set_to_zero
)
5368 && output_section
->lma
!= 0
5369 && (output_section
->vma
== (segment
->p_vaddr
5370 + (map
->includes_filehdr
5373 + (map
->includes_phdrs
5375 * iehdr
->e_phentsize
)
5377 map
->p_paddr
= segment
->p_vaddr
;
5379 /* Match up the physical address of the segment with the
5380 LMA address of the output section. */
5381 if (IS_CONTAINED_BY_LMA (output_section
, segment
, map
->p_paddr
)
5382 || IS_COREFILE_NOTE (segment
, section
)
5383 || (bed
->want_p_paddr_set_to_zero
&&
5384 IS_CONTAINED_BY_VMA (output_section
, segment
))
5387 if (matching_lma
== 0)
5388 matching_lma
= output_section
->lma
;
5390 /* We assume that if the section fits within the segment
5391 then it does not overlap any other section within that
5393 map
->sections
[isec
++] = output_section
;
5395 else if (suggested_lma
== 0)
5396 suggested_lma
= output_section
->lma
;
5400 BFD_ASSERT (j
== section_count
);
5402 /* Step Two: Adjust the physical address of the current segment,
5404 if (isec
== section_count
)
5406 /* All of the sections fitted within the segment as currently
5407 specified. This is the default case. Add the segment to
5408 the list of built segments and carry on to process the next
5409 program header in the input BFD. */
5410 map
->count
= section_count
;
5411 *pointer_to_map
= map
;
5412 pointer_to_map
= &map
->next
;
5419 if (matching_lma
!= 0)
5421 /* At least one section fits inside the current segment.
5422 Keep it, but modify its physical address to match the
5423 LMA of the first section that fitted. */
5424 map
->p_paddr
= matching_lma
;
5428 /* None of the sections fitted inside the current segment.
5429 Change the current segment's physical address to match
5430 the LMA of the first section. */
5431 map
->p_paddr
= suggested_lma
;
5434 /* Offset the segment physical address from the lma
5435 to allow for space taken up by elf headers. */
5436 if (map
->includes_filehdr
)
5437 map
->p_paddr
-= iehdr
->e_ehsize
;
5439 if (map
->includes_phdrs
)
5441 map
->p_paddr
-= iehdr
->e_phnum
* iehdr
->e_phentsize
;
5443 /* iehdr->e_phnum is just an estimate of the number
5444 of program headers that we will need. Make a note
5445 here of the number we used and the segment we chose
5446 to hold these headers, so that we can adjust the
5447 offset when we know the correct value. */
5448 phdr_adjust_num
= iehdr
->e_phnum
;
5449 phdr_adjust_seg
= map
;
5453 /* Step Three: Loop over the sections again, this time assigning
5454 those that fit to the current segment and removing them from the
5455 sections array; but making sure not to leave large gaps. Once all
5456 possible sections have been assigned to the current segment it is
5457 added to the list of built segments and if sections still remain
5458 to be assigned, a new segment is constructed before repeating
5466 /* Fill the current segment with sections that fit. */
5467 for (j
= 0; j
< section_count
; j
++)
5469 section
= sections
[j
];
5471 if (section
== NULL
)
5474 output_section
= section
->output_section
;
5476 BFD_ASSERT (output_section
!= NULL
);
5478 if (IS_CONTAINED_BY_LMA (output_section
, segment
, map
->p_paddr
)
5479 || IS_COREFILE_NOTE (segment
, section
))
5481 if (map
->count
== 0)
5483 /* If the first section in a segment does not start at
5484 the beginning of the segment, then something is
5486 if (output_section
->lma
!=
5488 + (map
->includes_filehdr
? iehdr
->e_ehsize
: 0)
5489 + (map
->includes_phdrs
5490 ? iehdr
->e_phnum
* iehdr
->e_phentsize
5496 asection
* prev_sec
;
5498 prev_sec
= map
->sections
[map
->count
- 1];
5500 /* If the gap between the end of the previous section
5501 and the start of this section is more than
5502 maxpagesize then we need to start a new segment. */
5503 if ((BFD_ALIGN (prev_sec
->lma
+ prev_sec
->size
,
5505 < BFD_ALIGN (output_section
->lma
, maxpagesize
))
5506 || ((prev_sec
->lma
+ prev_sec
->size
)
5507 > output_section
->lma
))
5509 if (suggested_lma
== 0)
5510 suggested_lma
= output_section
->lma
;
5516 map
->sections
[map
->count
++] = output_section
;
5519 section
->segment_mark
= TRUE
;
5521 else if (suggested_lma
== 0)
5522 suggested_lma
= output_section
->lma
;
5525 BFD_ASSERT (map
->count
> 0);
5527 /* Add the current segment to the list of built segments. */
5528 *pointer_to_map
= map
;
5529 pointer_to_map
= &map
->next
;
5531 if (isec
< section_count
)
5533 /* We still have not allocated all of the sections to
5534 segments. Create a new segment here, initialise it
5535 and carry on looping. */
5536 amt
= sizeof (struct elf_segment_map
);
5537 amt
+= ((bfd_size_type
) section_count
- 1) * sizeof (asection
*);
5538 map
= bfd_alloc (obfd
, amt
);
5545 /* Initialise the fields of the segment map. Set the physical
5546 physical address to the LMA of the first section that has
5547 not yet been assigned. */
5549 map
->p_type
= segment
->p_type
;
5550 map
->p_flags
= segment
->p_flags
;
5551 map
->p_flags_valid
= 1;
5552 map
->p_paddr
= suggested_lma
;
5553 map
->p_paddr_valid
= 1;
5554 map
->includes_filehdr
= 0;
5555 map
->includes_phdrs
= 0;
5558 while (isec
< section_count
);
5563 /* The Solaris linker creates program headers in which all the
5564 p_paddr fields are zero. When we try to objcopy or strip such a
5565 file, we get confused. Check for this case, and if we find it
5566 reset the p_paddr_valid fields. */
5567 for (map
= map_first
; map
!= NULL
; map
= map
->next
)
5568 if (map
->p_paddr
!= 0)
5571 for (map
= map_first
; map
!= NULL
; map
= map
->next
)
5572 map
->p_paddr_valid
= 0;
5574 elf_tdata (obfd
)->segment_map
= map_first
;
5576 /* If we had to estimate the number of program headers that were
5577 going to be needed, then check our estimate now and adjust
5578 the offset if necessary. */
5579 if (phdr_adjust_seg
!= NULL
)
5583 for (count
= 0, map
= map_first
; map
!= NULL
; map
= map
->next
)
5586 if (count
> phdr_adjust_num
)
5587 phdr_adjust_seg
->p_paddr
5588 -= (count
- phdr_adjust_num
) * iehdr
->e_phentsize
;
5593 #undef IS_CONTAINED_BY_VMA
5594 #undef IS_CONTAINED_BY_LMA
5595 #undef IS_COREFILE_NOTE
5596 #undef IS_SOLARIS_PT_INTERP
5597 #undef INCLUDE_SECTION_IN_SEGMENT
5598 #undef SEGMENT_AFTER_SEGMENT
5599 #undef SEGMENT_OVERLAPS
5603 /* Initialize private output section information from input section. */
5606 _bfd_elf_init_private_section_data (bfd
*ibfd
,
5610 struct bfd_link_info
*link_info
)
5613 Elf_Internal_Shdr
*ihdr
, *ohdr
;
5614 bfd_boolean need_group
= link_info
== NULL
|| link_info
->relocatable
;
5616 if (ibfd
->xvec
->flavour
!= bfd_target_elf_flavour
5617 || obfd
->xvec
->flavour
!= bfd_target_elf_flavour
)
5620 /* FIXME: What if the output ELF section type has been set to
5621 something different? */
5622 if (elf_section_type (osec
) == SHT_NULL
)
5623 elf_section_type (osec
) = elf_section_type (isec
);
5625 /* Set things up for objcopy and relocatable link. The output
5626 SHT_GROUP section will have its elf_next_in_group pointing back
5627 to the input group members. Ignore linker created group section.
5628 See elfNN_ia64_object_p in elfxx-ia64.c. */
5632 if (elf_sec_group (isec
) == NULL
5633 || (elf_sec_group (isec
)->flags
& SEC_LINKER_CREATED
) == 0)
5635 if (elf_section_flags (isec
) & SHF_GROUP
)
5636 elf_section_flags (osec
) |= SHF_GROUP
;
5637 elf_next_in_group (osec
) = elf_next_in_group (isec
);
5638 elf_group_name (osec
) = elf_group_name (isec
);
5642 ihdr
= &elf_section_data (isec
)->this_hdr
;
5644 /* We need to handle elf_linked_to_section for SHF_LINK_ORDER. We
5645 don't use the output section of the linked-to section since it
5646 may be NULL at this point. */
5647 if ((ihdr
->sh_flags
& SHF_LINK_ORDER
) != 0)
5649 ohdr
= &elf_section_data (osec
)->this_hdr
;
5650 ohdr
->sh_flags
|= SHF_LINK_ORDER
;
5651 elf_linked_to_section (osec
) = elf_linked_to_section (isec
);
5654 osec
->use_rela_p
= isec
->use_rela_p
;
5659 /* Copy private section information. This copies over the entsize
5660 field, and sometimes the info field. */
5663 _bfd_elf_copy_private_section_data (bfd
*ibfd
,
5668 Elf_Internal_Shdr
*ihdr
, *ohdr
;
5670 if (ibfd
->xvec
->flavour
!= bfd_target_elf_flavour
5671 || obfd
->xvec
->flavour
!= bfd_target_elf_flavour
)
5674 ihdr
= &elf_section_data (isec
)->this_hdr
;
5675 ohdr
= &elf_section_data (osec
)->this_hdr
;
5677 ohdr
->sh_entsize
= ihdr
->sh_entsize
;
5679 if (ihdr
->sh_type
== SHT_SYMTAB
5680 || ihdr
->sh_type
== SHT_DYNSYM
5681 || ihdr
->sh_type
== SHT_GNU_verneed
5682 || ihdr
->sh_type
== SHT_GNU_verdef
)
5683 ohdr
->sh_info
= ihdr
->sh_info
;
5685 return _bfd_elf_init_private_section_data (ibfd
, isec
, obfd
, osec
,
5689 /* Copy private header information. */
5692 _bfd_elf_copy_private_header_data (bfd
*ibfd
, bfd
*obfd
)
5694 if (bfd_get_flavour (ibfd
) != bfd_target_elf_flavour
5695 || bfd_get_flavour (obfd
) != bfd_target_elf_flavour
)
5698 /* Copy over private BFD data if it has not already been copied.
5699 This must be done here, rather than in the copy_private_bfd_data
5700 entry point, because the latter is called after the section
5701 contents have been set, which means that the program headers have
5702 already been worked out. */
5703 if (elf_tdata (obfd
)->segment_map
== NULL
&& elf_tdata (ibfd
)->phdr
!= NULL
)
5705 if (! copy_private_bfd_data (ibfd
, obfd
))
5712 /* Copy private symbol information. If this symbol is in a section
5713 which we did not map into a BFD section, try to map the section
5714 index correctly. We use special macro definitions for the mapped
5715 section indices; these definitions are interpreted by the
5716 swap_out_syms function. */
5718 #define MAP_ONESYMTAB (SHN_HIOS + 1)
5719 #define MAP_DYNSYMTAB (SHN_HIOS + 2)
5720 #define MAP_STRTAB (SHN_HIOS + 3)
5721 #define MAP_SHSTRTAB (SHN_HIOS + 4)
5722 #define MAP_SYM_SHNDX (SHN_HIOS + 5)
5725 _bfd_elf_copy_private_symbol_data (bfd
*ibfd
,
5730 elf_symbol_type
*isym
, *osym
;
5732 if (bfd_get_flavour (ibfd
) != bfd_target_elf_flavour
5733 || bfd_get_flavour (obfd
) != bfd_target_elf_flavour
)
5736 isym
= elf_symbol_from (ibfd
, isymarg
);
5737 osym
= elf_symbol_from (obfd
, osymarg
);
5741 && bfd_is_abs_section (isym
->symbol
.section
))
5745 shndx
= isym
->internal_elf_sym
.st_shndx
;
5746 if (shndx
== elf_onesymtab (ibfd
))
5747 shndx
= MAP_ONESYMTAB
;
5748 else if (shndx
== elf_dynsymtab (ibfd
))
5749 shndx
= MAP_DYNSYMTAB
;
5750 else if (shndx
== elf_tdata (ibfd
)->strtab_section
)
5752 else if (shndx
== elf_tdata (ibfd
)->shstrtab_section
)
5753 shndx
= MAP_SHSTRTAB
;
5754 else if (shndx
== elf_tdata (ibfd
)->symtab_shndx_section
)
5755 shndx
= MAP_SYM_SHNDX
;
5756 osym
->internal_elf_sym
.st_shndx
= shndx
;
5762 /* Swap out the symbols. */
5765 swap_out_syms (bfd
*abfd
,
5766 struct bfd_strtab_hash
**sttp
,
5769 const struct elf_backend_data
*bed
;
5772 struct bfd_strtab_hash
*stt
;
5773 Elf_Internal_Shdr
*symtab_hdr
;
5774 Elf_Internal_Shdr
*symtab_shndx_hdr
;
5775 Elf_Internal_Shdr
*symstrtab_hdr
;
5776 bfd_byte
*outbound_syms
;
5777 bfd_byte
*outbound_shndx
;
5780 bfd_boolean name_local_sections
;
5782 if (!elf_map_symbols (abfd
))
5785 /* Dump out the symtabs. */
5786 stt
= _bfd_elf_stringtab_init ();
5790 bed
= get_elf_backend_data (abfd
);
5791 symcount
= bfd_get_symcount (abfd
);
5792 symtab_hdr
= &elf_tdata (abfd
)->symtab_hdr
;
5793 symtab_hdr
->sh_type
= SHT_SYMTAB
;
5794 symtab_hdr
->sh_entsize
= bed
->s
->sizeof_sym
;
5795 symtab_hdr
->sh_size
= symtab_hdr
->sh_entsize
* (symcount
+ 1);
5796 symtab_hdr
->sh_info
= elf_num_locals (abfd
) + 1;
5797 symtab_hdr
->sh_addralign
= 1 << bed
->s
->log_file_align
;
5799 symstrtab_hdr
= &elf_tdata (abfd
)->strtab_hdr
;
5800 symstrtab_hdr
->sh_type
= SHT_STRTAB
;
5802 outbound_syms
= bfd_alloc2 (abfd
, 1 + symcount
, bed
->s
->sizeof_sym
);
5803 if (outbound_syms
== NULL
)
5805 _bfd_stringtab_free (stt
);
5808 symtab_hdr
->contents
= outbound_syms
;
5810 outbound_shndx
= NULL
;
5811 symtab_shndx_hdr
= &elf_tdata (abfd
)->symtab_shndx_hdr
;
5812 if (symtab_shndx_hdr
->sh_name
!= 0)
5814 amt
= (bfd_size_type
) (1 + symcount
) * sizeof (Elf_External_Sym_Shndx
);
5815 outbound_shndx
= bfd_zalloc2 (abfd
, 1 + symcount
,
5816 sizeof (Elf_External_Sym_Shndx
));
5817 if (outbound_shndx
== NULL
)
5819 _bfd_stringtab_free (stt
);
5823 symtab_shndx_hdr
->contents
= outbound_shndx
;
5824 symtab_shndx_hdr
->sh_type
= SHT_SYMTAB_SHNDX
;
5825 symtab_shndx_hdr
->sh_size
= amt
;
5826 symtab_shndx_hdr
->sh_addralign
= sizeof (Elf_External_Sym_Shndx
);
5827 symtab_shndx_hdr
->sh_entsize
= sizeof (Elf_External_Sym_Shndx
);
5830 /* Now generate the data (for "contents"). */
5832 /* Fill in zeroth symbol and swap it out. */
5833 Elf_Internal_Sym sym
;
5839 sym
.st_shndx
= SHN_UNDEF
;
5840 bed
->s
->swap_symbol_out (abfd
, &sym
, outbound_syms
, outbound_shndx
);
5841 outbound_syms
+= bed
->s
->sizeof_sym
;
5842 if (outbound_shndx
!= NULL
)
5843 outbound_shndx
+= sizeof (Elf_External_Sym_Shndx
);
5847 = (bed
->elf_backend_name_local_section_symbols
5848 && bed
->elf_backend_name_local_section_symbols (abfd
));
5850 syms
= bfd_get_outsymbols (abfd
);
5851 for (idx
= 0; idx
< symcount
; idx
++)
5853 Elf_Internal_Sym sym
;
5854 bfd_vma value
= syms
[idx
]->value
;
5855 elf_symbol_type
*type_ptr
;
5856 flagword flags
= syms
[idx
]->flags
;
5859 if (!name_local_sections
5860 && (flags
& (BSF_SECTION_SYM
| BSF_GLOBAL
)) == BSF_SECTION_SYM
)
5862 /* Local section symbols have no name. */
5867 sym
.st_name
= (unsigned long) _bfd_stringtab_add (stt
,
5870 if (sym
.st_name
== (unsigned long) -1)
5872 _bfd_stringtab_free (stt
);
5877 type_ptr
= elf_symbol_from (abfd
, syms
[idx
]);
5879 if ((flags
& BSF_SECTION_SYM
) == 0
5880 && bfd_is_com_section (syms
[idx
]->section
))
5882 /* ELF common symbols put the alignment into the `value' field,
5883 and the size into the `size' field. This is backwards from
5884 how BFD handles it, so reverse it here. */
5885 sym
.st_size
= value
;
5886 if (type_ptr
== NULL
5887 || type_ptr
->internal_elf_sym
.st_value
== 0)
5888 sym
.st_value
= value
>= 16 ? 16 : (1 << bfd_log2 (value
));
5890 sym
.st_value
= type_ptr
->internal_elf_sym
.st_value
;
5891 sym
.st_shndx
= _bfd_elf_section_from_bfd_section
5892 (abfd
, syms
[idx
]->section
);
5896 asection
*sec
= syms
[idx
]->section
;
5899 if (sec
->output_section
)
5901 value
+= sec
->output_offset
;
5902 sec
= sec
->output_section
;
5905 /* Don't add in the section vma for relocatable output. */
5906 if (! relocatable_p
)
5908 sym
.st_value
= value
;
5909 sym
.st_size
= type_ptr
? type_ptr
->internal_elf_sym
.st_size
: 0;
5911 if (bfd_is_abs_section (sec
)
5913 && type_ptr
->internal_elf_sym
.st_shndx
!= 0)
5915 /* This symbol is in a real ELF section which we did
5916 not create as a BFD section. Undo the mapping done
5917 by copy_private_symbol_data. */
5918 shndx
= type_ptr
->internal_elf_sym
.st_shndx
;
5922 shndx
= elf_onesymtab (abfd
);
5925 shndx
= elf_dynsymtab (abfd
);
5928 shndx
= elf_tdata (abfd
)->strtab_section
;
5931 shndx
= elf_tdata (abfd
)->shstrtab_section
;
5934 shndx
= elf_tdata (abfd
)->symtab_shndx_section
;
5942 shndx
= _bfd_elf_section_from_bfd_section (abfd
, sec
);
5948 /* Writing this would be a hell of a lot easier if
5949 we had some decent documentation on bfd, and
5950 knew what to expect of the library, and what to
5951 demand of applications. For example, it
5952 appears that `objcopy' might not set the
5953 section of a symbol to be a section that is
5954 actually in the output file. */
5955 sec2
= bfd_get_section_by_name (abfd
, sec
->name
);
5958 _bfd_error_handler (_("\
5959 Unable to find equivalent output section for symbol '%s' from section '%s'"),
5960 syms
[idx
]->name
? syms
[idx
]->name
: "<Local sym>",
5962 bfd_set_error (bfd_error_invalid_operation
);
5963 _bfd_stringtab_free (stt
);
5967 shndx
= _bfd_elf_section_from_bfd_section (abfd
, sec2
);
5968 BFD_ASSERT (shndx
!= -1);
5972 sym
.st_shndx
= shndx
;
5975 if ((flags
& BSF_THREAD_LOCAL
) != 0)
5977 else if ((flags
& BSF_FUNCTION
) != 0)
5979 else if ((flags
& BSF_OBJECT
) != 0)
5984 if (syms
[idx
]->section
->flags
& SEC_THREAD_LOCAL
)
5987 /* Processor-specific types. */
5988 if (type_ptr
!= NULL
5989 && bed
->elf_backend_get_symbol_type
)
5990 type
= ((*bed
->elf_backend_get_symbol_type
)
5991 (&type_ptr
->internal_elf_sym
, type
));
5993 if (flags
& BSF_SECTION_SYM
)
5995 if (flags
& BSF_GLOBAL
)
5996 sym
.st_info
= ELF_ST_INFO (STB_GLOBAL
, STT_SECTION
);
5998 sym
.st_info
= ELF_ST_INFO (STB_LOCAL
, STT_SECTION
);
6000 else if (bfd_is_com_section (syms
[idx
]->section
))
6001 sym
.st_info
= ELF_ST_INFO (STB_GLOBAL
, type
);
6002 else if (bfd_is_und_section (syms
[idx
]->section
))
6003 sym
.st_info
= ELF_ST_INFO (((flags
& BSF_WEAK
)
6007 else if (flags
& BSF_FILE
)
6008 sym
.st_info
= ELF_ST_INFO (STB_LOCAL
, STT_FILE
);
6011 int bind
= STB_LOCAL
;
6013 if (flags
& BSF_LOCAL
)
6015 else if (flags
& BSF_WEAK
)
6017 else if (flags
& BSF_GLOBAL
)
6020 sym
.st_info
= ELF_ST_INFO (bind
, type
);
6023 if (type_ptr
!= NULL
)
6024 sym
.st_other
= type_ptr
->internal_elf_sym
.st_other
;
6028 bed
->s
->swap_symbol_out (abfd
, &sym
, outbound_syms
, outbound_shndx
);
6029 outbound_syms
+= bed
->s
->sizeof_sym
;
6030 if (outbound_shndx
!= NULL
)
6031 outbound_shndx
+= sizeof (Elf_External_Sym_Shndx
);
6035 symstrtab_hdr
->sh_size
= _bfd_stringtab_size (stt
);
6036 symstrtab_hdr
->sh_type
= SHT_STRTAB
;
6038 symstrtab_hdr
->sh_flags
= 0;
6039 symstrtab_hdr
->sh_addr
= 0;
6040 symstrtab_hdr
->sh_entsize
= 0;
6041 symstrtab_hdr
->sh_link
= 0;
6042 symstrtab_hdr
->sh_info
= 0;
6043 symstrtab_hdr
->sh_addralign
= 1;
6048 /* Return the number of bytes required to hold the symtab vector.
6050 Note that we base it on the count plus 1, since we will null terminate
6051 the vector allocated based on this size. However, the ELF symbol table
6052 always has a dummy entry as symbol #0, so it ends up even. */
6055 _bfd_elf_get_symtab_upper_bound (bfd
*abfd
)
6059 Elf_Internal_Shdr
*hdr
= &elf_tdata (abfd
)->symtab_hdr
;
6061 symcount
= hdr
->sh_size
/ get_elf_backend_data (abfd
)->s
->sizeof_sym
;
6062 symtab_size
= (symcount
+ 1) * (sizeof (asymbol
*));
6064 symtab_size
-= sizeof (asymbol
*);
6070 _bfd_elf_get_dynamic_symtab_upper_bound (bfd
*abfd
)
6074 Elf_Internal_Shdr
*hdr
= &elf_tdata (abfd
)->dynsymtab_hdr
;
6076 if (elf_dynsymtab (abfd
) == 0)
6078 bfd_set_error (bfd_error_invalid_operation
);
6082 symcount
= hdr
->sh_size
/ get_elf_backend_data (abfd
)->s
->sizeof_sym
;
6083 symtab_size
= (symcount
+ 1) * (sizeof (asymbol
*));
6085 symtab_size
-= sizeof (asymbol
*);
6091 _bfd_elf_get_reloc_upper_bound (bfd
*abfd ATTRIBUTE_UNUSED
,
6094 return (asect
->reloc_count
+ 1) * sizeof (arelent
*);
6097 /* Canonicalize the relocs. */
6100 _bfd_elf_canonicalize_reloc (bfd
*abfd
,
6107 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
6109 if (! bed
->s
->slurp_reloc_table (abfd
, section
, symbols
, FALSE
))
6112 tblptr
= section
->relocation
;
6113 for (i
= 0; i
< section
->reloc_count
; i
++)
6114 *relptr
++ = tblptr
++;
6118 return section
->reloc_count
;
6122 _bfd_elf_canonicalize_symtab (bfd
*abfd
, asymbol
**allocation
)
6124 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
6125 long symcount
= bed
->s
->slurp_symbol_table (abfd
, allocation
, FALSE
);
6128 bfd_get_symcount (abfd
) = symcount
;
6133 _bfd_elf_canonicalize_dynamic_symtab (bfd
*abfd
,
6134 asymbol
**allocation
)
6136 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
6137 long symcount
= bed
->s
->slurp_symbol_table (abfd
, allocation
, TRUE
);
6140 bfd_get_dynamic_symcount (abfd
) = symcount
;
6144 /* Return the size required for the dynamic reloc entries. Any loadable
6145 section that was actually installed in the BFD, and has type SHT_REL
6146 or SHT_RELA, and uses the dynamic symbol table, is considered to be a
6147 dynamic reloc section. */
6150 _bfd_elf_get_dynamic_reloc_upper_bound (bfd
*abfd
)
6155 if (elf_dynsymtab (abfd
) == 0)
6157 bfd_set_error (bfd_error_invalid_operation
);
6161 ret
= sizeof (arelent
*);
6162 for (s
= abfd
->sections
; s
!= NULL
; s
= s
->next
)
6163 if ((s
->flags
& SEC_LOAD
) != 0
6164 && elf_section_data (s
)->this_hdr
.sh_link
== elf_dynsymtab (abfd
)
6165 && (elf_section_data (s
)->this_hdr
.sh_type
== SHT_REL
6166 || elf_section_data (s
)->this_hdr
.sh_type
== SHT_RELA
))
6167 ret
+= ((s
->size
/ elf_section_data (s
)->this_hdr
.sh_entsize
)
6168 * sizeof (arelent
*));
6173 /* Canonicalize the dynamic relocation entries. Note that we return the
6174 dynamic relocations as a single block, although they are actually
6175 associated with particular sections; the interface, which was
6176 designed for SunOS style shared libraries, expects that there is only
6177 one set of dynamic relocs. Any loadable section that was actually
6178 installed in the BFD, and has type SHT_REL or SHT_RELA, and uses the
6179 dynamic symbol table, is considered to be a dynamic reloc section. */
6182 _bfd_elf_canonicalize_dynamic_reloc (bfd
*abfd
,
6186 bfd_boolean (*slurp_relocs
) (bfd
*, asection
*, asymbol
**, bfd_boolean
);
6190 if (elf_dynsymtab (abfd
) == 0)
6192 bfd_set_error (bfd_error_invalid_operation
);
6196 slurp_relocs
= get_elf_backend_data (abfd
)->s
->slurp_reloc_table
;
6198 for (s
= abfd
->sections
; s
!= NULL
; s
= s
->next
)
6200 if ((s
->flags
& SEC_LOAD
) != 0
6201 && elf_section_data (s
)->this_hdr
.sh_link
== elf_dynsymtab (abfd
)
6202 && (elf_section_data (s
)->this_hdr
.sh_type
== SHT_REL
6203 || elf_section_data (s
)->this_hdr
.sh_type
== SHT_RELA
))
6208 if (! (*slurp_relocs
) (abfd
, s
, syms
, TRUE
))
6210 count
= s
->size
/ elf_section_data (s
)->this_hdr
.sh_entsize
;
6212 for (i
= 0; i
< count
; i
++)
6223 /* Read in the version information. */
6226 _bfd_elf_slurp_version_tables (bfd
*abfd
, bfd_boolean default_imported_symver
)
6228 bfd_byte
*contents
= NULL
;
6229 unsigned int freeidx
= 0;
6231 if (elf_dynverref (abfd
) != 0)
6233 Elf_Internal_Shdr
*hdr
;
6234 Elf_External_Verneed
*everneed
;
6235 Elf_Internal_Verneed
*iverneed
;
6237 bfd_byte
*contents_end
;
6239 hdr
= &elf_tdata (abfd
)->dynverref_hdr
;
6241 elf_tdata (abfd
)->verref
= bfd_zalloc2 (abfd
, hdr
->sh_info
,
6242 sizeof (Elf_Internal_Verneed
));
6243 if (elf_tdata (abfd
)->verref
== NULL
)
6246 elf_tdata (abfd
)->cverrefs
= hdr
->sh_info
;
6248 contents
= bfd_malloc (hdr
->sh_size
);
6249 if (contents
== NULL
)
6251 error_return_verref
:
6252 elf_tdata (abfd
)->verref
= NULL
;
6253 elf_tdata (abfd
)->cverrefs
= 0;
6256 if (bfd_seek (abfd
, hdr
->sh_offset
, SEEK_SET
) != 0
6257 || bfd_bread (contents
, hdr
->sh_size
, abfd
) != hdr
->sh_size
)
6258 goto error_return_verref
;
6260 if (hdr
->sh_info
&& hdr
->sh_size
< sizeof (Elf_External_Verneed
))
6261 goto error_return_verref
;
6263 BFD_ASSERT (sizeof (Elf_External_Verneed
)
6264 == sizeof (Elf_External_Vernaux
));
6265 contents_end
= contents
+ hdr
->sh_size
- sizeof (Elf_External_Verneed
);
6266 everneed
= (Elf_External_Verneed
*) contents
;
6267 iverneed
= elf_tdata (abfd
)->verref
;
6268 for (i
= 0; i
< hdr
->sh_info
; i
++, iverneed
++)
6270 Elf_External_Vernaux
*evernaux
;
6271 Elf_Internal_Vernaux
*ivernaux
;
6274 _bfd_elf_swap_verneed_in (abfd
, everneed
, iverneed
);
6276 iverneed
->vn_bfd
= abfd
;
6278 iverneed
->vn_filename
=
6279 bfd_elf_string_from_elf_section (abfd
, hdr
->sh_link
,
6281 if (iverneed
->vn_filename
== NULL
)
6282 goto error_return_verref
;
6284 if (iverneed
->vn_cnt
== 0)
6285 iverneed
->vn_auxptr
= NULL
;
6288 iverneed
->vn_auxptr
= bfd_alloc2 (abfd
, iverneed
->vn_cnt
,
6289 sizeof (Elf_Internal_Vernaux
));
6290 if (iverneed
->vn_auxptr
== NULL
)
6291 goto error_return_verref
;
6294 if (iverneed
->vn_aux
6295 > (size_t) (contents_end
- (bfd_byte
*) everneed
))
6296 goto error_return_verref
;
6298 evernaux
= ((Elf_External_Vernaux
*)
6299 ((bfd_byte
*) everneed
+ iverneed
->vn_aux
));
6300 ivernaux
= iverneed
->vn_auxptr
;
6301 for (j
= 0; j
< iverneed
->vn_cnt
; j
++, ivernaux
++)
6303 _bfd_elf_swap_vernaux_in (abfd
, evernaux
, ivernaux
);
6305 ivernaux
->vna_nodename
=
6306 bfd_elf_string_from_elf_section (abfd
, hdr
->sh_link
,
6307 ivernaux
->vna_name
);
6308 if (ivernaux
->vna_nodename
== NULL
)
6309 goto error_return_verref
;
6311 if (j
+ 1 < iverneed
->vn_cnt
)
6312 ivernaux
->vna_nextptr
= ivernaux
+ 1;
6314 ivernaux
->vna_nextptr
= NULL
;
6316 if (ivernaux
->vna_next
6317 > (size_t) (contents_end
- (bfd_byte
*) evernaux
))
6318 goto error_return_verref
;
6320 evernaux
= ((Elf_External_Vernaux
*)
6321 ((bfd_byte
*) evernaux
+ ivernaux
->vna_next
));
6323 if (ivernaux
->vna_other
> freeidx
)
6324 freeidx
= ivernaux
->vna_other
;
6327 if (i
+ 1 < hdr
->sh_info
)
6328 iverneed
->vn_nextref
= iverneed
+ 1;
6330 iverneed
->vn_nextref
= NULL
;
6332 if (iverneed
->vn_next
6333 > (size_t) (contents_end
- (bfd_byte
*) everneed
))
6334 goto error_return_verref
;
6336 everneed
= ((Elf_External_Verneed
*)
6337 ((bfd_byte
*) everneed
+ iverneed
->vn_next
));
6344 if (elf_dynverdef (abfd
) != 0)
6346 Elf_Internal_Shdr
*hdr
;
6347 Elf_External_Verdef
*everdef
;
6348 Elf_Internal_Verdef
*iverdef
;
6349 Elf_Internal_Verdef
*iverdefarr
;
6350 Elf_Internal_Verdef iverdefmem
;
6352 unsigned int maxidx
;
6353 bfd_byte
*contents_end_def
, *contents_end_aux
;
6355 hdr
= &elf_tdata (abfd
)->dynverdef_hdr
;
6357 contents
= bfd_malloc (hdr
->sh_size
);
6358 if (contents
== NULL
)
6360 if (bfd_seek (abfd
, hdr
->sh_offset
, SEEK_SET
) != 0
6361 || bfd_bread (contents
, hdr
->sh_size
, abfd
) != hdr
->sh_size
)
6364 if (hdr
->sh_info
&& hdr
->sh_size
< sizeof (Elf_External_Verdef
))
6367 BFD_ASSERT (sizeof (Elf_External_Verdef
)
6368 >= sizeof (Elf_External_Verdaux
));
6369 contents_end_def
= contents
+ hdr
->sh_size
6370 - sizeof (Elf_External_Verdef
);
6371 contents_end_aux
= contents
+ hdr
->sh_size
6372 - sizeof (Elf_External_Verdaux
);
6374 /* We know the number of entries in the section but not the maximum
6375 index. Therefore we have to run through all entries and find
6377 everdef
= (Elf_External_Verdef
*) contents
;
6379 for (i
= 0; i
< hdr
->sh_info
; ++i
)
6381 _bfd_elf_swap_verdef_in (abfd
, everdef
, &iverdefmem
);
6383 if ((iverdefmem
.vd_ndx
& ((unsigned) VERSYM_VERSION
)) > maxidx
)
6384 maxidx
= iverdefmem
.vd_ndx
& ((unsigned) VERSYM_VERSION
);
6386 if (iverdefmem
.vd_next
6387 > (size_t) (contents_end_def
- (bfd_byte
*) everdef
))
6390 everdef
= ((Elf_External_Verdef
*)
6391 ((bfd_byte
*) everdef
+ iverdefmem
.vd_next
));
6394 if (default_imported_symver
)
6396 if (freeidx
> maxidx
)
6401 elf_tdata (abfd
)->verdef
= bfd_zalloc2 (abfd
, maxidx
,
6402 sizeof (Elf_Internal_Verdef
));
6403 if (elf_tdata (abfd
)->verdef
== NULL
)
6406 elf_tdata (abfd
)->cverdefs
= maxidx
;
6408 everdef
= (Elf_External_Verdef
*) contents
;
6409 iverdefarr
= elf_tdata (abfd
)->verdef
;
6410 for (i
= 0; i
< hdr
->sh_info
; i
++)
6412 Elf_External_Verdaux
*everdaux
;
6413 Elf_Internal_Verdaux
*iverdaux
;
6416 _bfd_elf_swap_verdef_in (abfd
, everdef
, &iverdefmem
);
6418 if ((iverdefmem
.vd_ndx
& VERSYM_VERSION
) == 0)
6420 error_return_verdef
:
6421 elf_tdata (abfd
)->verdef
= NULL
;
6422 elf_tdata (abfd
)->cverdefs
= 0;
6426 iverdef
= &iverdefarr
[(iverdefmem
.vd_ndx
& VERSYM_VERSION
) - 1];
6427 memcpy (iverdef
, &iverdefmem
, sizeof (Elf_Internal_Verdef
));
6429 iverdef
->vd_bfd
= abfd
;
6431 if (iverdef
->vd_cnt
== 0)
6432 iverdef
->vd_auxptr
= NULL
;
6435 iverdef
->vd_auxptr
= bfd_alloc2 (abfd
, iverdef
->vd_cnt
,
6436 sizeof (Elf_Internal_Verdaux
));
6437 if (iverdef
->vd_auxptr
== NULL
)
6438 goto error_return_verdef
;
6442 > (size_t) (contents_end_aux
- (bfd_byte
*) everdef
))
6443 goto error_return_verdef
;
6445 everdaux
= ((Elf_External_Verdaux
*)
6446 ((bfd_byte
*) everdef
+ iverdef
->vd_aux
));
6447 iverdaux
= iverdef
->vd_auxptr
;
6448 for (j
= 0; j
< iverdef
->vd_cnt
; j
++, iverdaux
++)
6450 _bfd_elf_swap_verdaux_in (abfd
, everdaux
, iverdaux
);
6452 iverdaux
->vda_nodename
=
6453 bfd_elf_string_from_elf_section (abfd
, hdr
->sh_link
,
6454 iverdaux
->vda_name
);
6455 if (iverdaux
->vda_nodename
== NULL
)
6456 goto error_return_verdef
;
6458 if (j
+ 1 < iverdef
->vd_cnt
)
6459 iverdaux
->vda_nextptr
= iverdaux
+ 1;
6461 iverdaux
->vda_nextptr
= NULL
;
6463 if (iverdaux
->vda_next
6464 > (size_t) (contents_end_aux
- (bfd_byte
*) everdaux
))
6465 goto error_return_verdef
;
6467 everdaux
= ((Elf_External_Verdaux
*)
6468 ((bfd_byte
*) everdaux
+ iverdaux
->vda_next
));
6471 if (iverdef
->vd_cnt
)
6472 iverdef
->vd_nodename
= iverdef
->vd_auxptr
->vda_nodename
;
6474 if ((size_t) (iverdef
- iverdefarr
) + 1 < maxidx
)
6475 iverdef
->vd_nextdef
= iverdef
+ 1;
6477 iverdef
->vd_nextdef
= NULL
;
6479 everdef
= ((Elf_External_Verdef
*)
6480 ((bfd_byte
*) everdef
+ iverdef
->vd_next
));
6486 else if (default_imported_symver
)
6493 elf_tdata (abfd
)->verdef
= bfd_zalloc2 (abfd
, freeidx
,
6494 sizeof (Elf_Internal_Verdef
));
6495 if (elf_tdata (abfd
)->verdef
== NULL
)
6498 elf_tdata (abfd
)->cverdefs
= freeidx
;
6501 /* Create a default version based on the soname. */
6502 if (default_imported_symver
)
6504 Elf_Internal_Verdef
*iverdef
;
6505 Elf_Internal_Verdaux
*iverdaux
;
6507 iverdef
= &elf_tdata (abfd
)->verdef
[freeidx
- 1];;
6509 iverdef
->vd_version
= VER_DEF_CURRENT
;
6510 iverdef
->vd_flags
= 0;
6511 iverdef
->vd_ndx
= freeidx
;
6512 iverdef
->vd_cnt
= 1;
6514 iverdef
->vd_bfd
= abfd
;
6516 iverdef
->vd_nodename
= bfd_elf_get_dt_soname (abfd
);
6517 if (iverdef
->vd_nodename
== NULL
)
6518 goto error_return_verdef
;
6519 iverdef
->vd_nextdef
= NULL
;
6520 iverdef
->vd_auxptr
= bfd_alloc (abfd
, sizeof (Elf_Internal_Verdaux
));
6521 if (iverdef
->vd_auxptr
== NULL
)
6522 goto error_return_verdef
;
6524 iverdaux
= iverdef
->vd_auxptr
;
6525 iverdaux
->vda_nodename
= iverdef
->vd_nodename
;
6526 iverdaux
->vda_nextptr
= NULL
;
6532 if (contents
!= NULL
)
6538 _bfd_elf_make_empty_symbol (bfd
*abfd
)
6540 elf_symbol_type
*newsym
;
6541 bfd_size_type amt
= sizeof (elf_symbol_type
);
6543 newsym
= bfd_zalloc (abfd
, amt
);
6548 newsym
->symbol
.the_bfd
= abfd
;
6549 return &newsym
->symbol
;
6554 _bfd_elf_get_symbol_info (bfd
*abfd ATTRIBUTE_UNUSED
,
6558 bfd_symbol_info (symbol
, ret
);
6561 /* Return whether a symbol name implies a local symbol. Most targets
6562 use this function for the is_local_label_name entry point, but some
6566 _bfd_elf_is_local_label_name (bfd
*abfd ATTRIBUTE_UNUSED
,
6569 /* Normal local symbols start with ``.L''. */
6570 if (name
[0] == '.' && name
[1] == 'L')
6573 /* At least some SVR4 compilers (e.g., UnixWare 2.1 cc) generate
6574 DWARF debugging symbols starting with ``..''. */
6575 if (name
[0] == '.' && name
[1] == '.')
6578 /* gcc will sometimes generate symbols beginning with ``_.L_'' when
6579 emitting DWARF debugging output. I suspect this is actually a
6580 small bug in gcc (it calls ASM_OUTPUT_LABEL when it should call
6581 ASM_GENERATE_INTERNAL_LABEL, and this causes the leading
6582 underscore to be emitted on some ELF targets). For ease of use,
6583 we treat such symbols as local. */
6584 if (name
[0] == '_' && name
[1] == '.' && name
[2] == 'L' && name
[3] == '_')
6591 _bfd_elf_get_lineno (bfd
*abfd ATTRIBUTE_UNUSED
,
6592 asymbol
*symbol ATTRIBUTE_UNUSED
)
6599 _bfd_elf_set_arch_mach (bfd
*abfd
,
6600 enum bfd_architecture arch
,
6601 unsigned long machine
)
6603 /* If this isn't the right architecture for this backend, and this
6604 isn't the generic backend, fail. */
6605 if (arch
!= get_elf_backend_data (abfd
)->arch
6606 && arch
!= bfd_arch_unknown
6607 && get_elf_backend_data (abfd
)->arch
!= bfd_arch_unknown
)
6610 return bfd_default_set_arch_mach (abfd
, arch
, machine
);
6613 /* Find the function to a particular section and offset,
6614 for error reporting. */
6617 elf_find_function (bfd
*abfd ATTRIBUTE_UNUSED
,
6621 const char **filename_ptr
,
6622 const char **functionname_ptr
)
6624 const char *filename
;
6625 asymbol
*func
, *file
;
6628 /* ??? Given multiple file symbols, it is impossible to reliably
6629 choose the right file name for global symbols. File symbols are
6630 local symbols, and thus all file symbols must sort before any
6631 global symbols. The ELF spec may be interpreted to say that a
6632 file symbol must sort before other local symbols, but currently
6633 ld -r doesn't do this. So, for ld -r output, it is possible to
6634 make a better choice of file name for local symbols by ignoring
6635 file symbols appearing after a given local symbol. */
6636 enum { nothing_seen
, symbol_seen
, file_after_symbol_seen
} state
;
6642 state
= nothing_seen
;
6644 for (p
= symbols
; *p
!= NULL
; p
++)
6648 q
= (elf_symbol_type
*) *p
;
6650 switch (ELF_ST_TYPE (q
->internal_elf_sym
.st_info
))
6656 if (state
== symbol_seen
)
6657 state
= file_after_symbol_seen
;
6663 if (bfd_get_section (&q
->symbol
) == section
6664 && q
->symbol
.value
>= low_func
6665 && q
->symbol
.value
<= offset
)
6667 func
= (asymbol
*) q
;
6668 low_func
= q
->symbol
.value
;
6671 else if (ELF_ST_BIND (q
->internal_elf_sym
.st_info
) != STB_LOCAL
6672 && state
== file_after_symbol_seen
)
6675 filename
= bfd_asymbol_name (file
);
6679 if (state
== nothing_seen
)
6680 state
= symbol_seen
;
6687 *filename_ptr
= filename
;
6688 if (functionname_ptr
)
6689 *functionname_ptr
= bfd_asymbol_name (func
);
6694 /* Find the nearest line to a particular section and offset,
6695 for error reporting. */
6698 _bfd_elf_find_nearest_line (bfd
*abfd
,
6702 const char **filename_ptr
,
6703 const char **functionname_ptr
,
6704 unsigned int *line_ptr
)
6708 if (_bfd_dwarf1_find_nearest_line (abfd
, section
, symbols
, offset
,
6709 filename_ptr
, functionname_ptr
,
6712 if (!*functionname_ptr
)
6713 elf_find_function (abfd
, section
, symbols
, offset
,
6714 *filename_ptr
? NULL
: filename_ptr
,
6720 if (_bfd_dwarf2_find_nearest_line (abfd
, section
, symbols
, offset
,
6721 filename_ptr
, functionname_ptr
,
6723 &elf_tdata (abfd
)->dwarf2_find_line_info
))
6725 if (!*functionname_ptr
)
6726 elf_find_function (abfd
, section
, symbols
, offset
,
6727 *filename_ptr
? NULL
: filename_ptr
,
6733 if (! _bfd_stab_section_find_nearest_line (abfd
, symbols
, section
, offset
,
6734 &found
, filename_ptr
,
6735 functionname_ptr
, line_ptr
,
6736 &elf_tdata (abfd
)->line_info
))
6738 if (found
&& (*functionname_ptr
|| *line_ptr
))
6741 if (symbols
== NULL
)
6744 if (! elf_find_function (abfd
, section
, symbols
, offset
,
6745 filename_ptr
, functionname_ptr
))
6752 /* Find the line for a symbol. */
6755 _bfd_elf_find_line (bfd
*abfd
, asymbol
**symbols
, asymbol
*symbol
,
6756 const char **filename_ptr
, unsigned int *line_ptr
)
6758 return _bfd_dwarf2_find_line (abfd
, symbols
, symbol
,
6759 filename_ptr
, line_ptr
, 0,
6760 &elf_tdata (abfd
)->dwarf2_find_line_info
);
6763 /* After a call to bfd_find_nearest_line, successive calls to
6764 bfd_find_inliner_info can be used to get source information about
6765 each level of function inlining that terminated at the address
6766 passed to bfd_find_nearest_line. Currently this is only supported
6767 for DWARF2 with appropriate DWARF3 extensions. */
6770 _bfd_elf_find_inliner_info (bfd
*abfd
,
6771 const char **filename_ptr
,
6772 const char **functionname_ptr
,
6773 unsigned int *line_ptr
)
6776 found
= _bfd_dwarf2_find_inliner_info (abfd
, filename_ptr
,
6777 functionname_ptr
, line_ptr
,
6778 & elf_tdata (abfd
)->dwarf2_find_line_info
);
6783 _bfd_elf_sizeof_headers (bfd
*abfd
, bfd_boolean reloc
)
6787 ret
= get_elf_backend_data (abfd
)->s
->sizeof_ehdr
;
6789 ret
+= get_program_header_size (abfd
);
6794 _bfd_elf_set_section_contents (bfd
*abfd
,
6796 const void *location
,
6798 bfd_size_type count
)
6800 Elf_Internal_Shdr
*hdr
;
6803 if (! abfd
->output_has_begun
6804 && ! _bfd_elf_compute_section_file_positions (abfd
, NULL
))
6807 hdr
= &elf_section_data (section
)->this_hdr
;
6808 pos
= hdr
->sh_offset
+ offset
;
6809 if (bfd_seek (abfd
, pos
, SEEK_SET
) != 0
6810 || bfd_bwrite (location
, count
, abfd
) != count
)
6817 _bfd_elf_no_info_to_howto (bfd
*abfd ATTRIBUTE_UNUSED
,
6818 arelent
*cache_ptr ATTRIBUTE_UNUSED
,
6819 Elf_Internal_Rela
*dst ATTRIBUTE_UNUSED
)
6824 /* Try to convert a non-ELF reloc into an ELF one. */
6827 _bfd_elf_validate_reloc (bfd
*abfd
, arelent
*areloc
)
6829 /* Check whether we really have an ELF howto. */
6831 if ((*areloc
->sym_ptr_ptr
)->the_bfd
->xvec
!= abfd
->xvec
)
6833 bfd_reloc_code_real_type code
;
6834 reloc_howto_type
*howto
;
6836 /* Alien reloc: Try to determine its type to replace it with an
6837 equivalent ELF reloc. */
6839 if (areloc
->howto
->pc_relative
)
6841 switch (areloc
->howto
->bitsize
)
6844 code
= BFD_RELOC_8_PCREL
;
6847 code
= BFD_RELOC_12_PCREL
;
6850 code
= BFD_RELOC_16_PCREL
;
6853 code
= BFD_RELOC_24_PCREL
;
6856 code
= BFD_RELOC_32_PCREL
;
6859 code
= BFD_RELOC_64_PCREL
;
6865 howto
= bfd_reloc_type_lookup (abfd
, code
);
6867 if (areloc
->howto
->pcrel_offset
!= howto
->pcrel_offset
)
6869 if (howto
->pcrel_offset
)
6870 areloc
->addend
+= areloc
->address
;
6872 areloc
->addend
-= areloc
->address
; /* addend is unsigned!! */
6877 switch (areloc
->howto
->bitsize
)
6883 code
= BFD_RELOC_14
;
6886 code
= BFD_RELOC_16
;
6889 code
= BFD_RELOC_26
;
6892 code
= BFD_RELOC_32
;
6895 code
= BFD_RELOC_64
;
6901 howto
= bfd_reloc_type_lookup (abfd
, code
);
6905 areloc
->howto
= howto
;
6913 (*_bfd_error_handler
)
6914 (_("%B: unsupported relocation type %s"),
6915 abfd
, areloc
->howto
->name
);
6916 bfd_set_error (bfd_error_bad_value
);
6921 _bfd_elf_close_and_cleanup (bfd
*abfd
)
6923 if (bfd_get_format (abfd
) == bfd_object
)
6925 if (elf_shstrtab (abfd
) != NULL
)
6926 _bfd_elf_strtab_free (elf_shstrtab (abfd
));
6927 _bfd_dwarf2_cleanup_debug_info (abfd
);
6930 return _bfd_generic_close_and_cleanup (abfd
);
6933 /* For Rel targets, we encode meaningful data for BFD_RELOC_VTABLE_ENTRY
6934 in the relocation's offset. Thus we cannot allow any sort of sanity
6935 range-checking to interfere. There is nothing else to do in processing
6938 bfd_reloc_status_type
6939 _bfd_elf_rel_vtable_reloc_fn
6940 (bfd
*abfd ATTRIBUTE_UNUSED
, arelent
*re ATTRIBUTE_UNUSED
,
6941 struct bfd_symbol
*symbol ATTRIBUTE_UNUSED
,
6942 void *data ATTRIBUTE_UNUSED
, asection
*is ATTRIBUTE_UNUSED
,
6943 bfd
*obfd ATTRIBUTE_UNUSED
, char **errmsg ATTRIBUTE_UNUSED
)
6945 return bfd_reloc_ok
;
6948 /* Elf core file support. Much of this only works on native
6949 toolchains, since we rely on knowing the
6950 machine-dependent procfs structure in order to pick
6951 out details about the corefile. */
6953 #ifdef HAVE_SYS_PROCFS_H
6954 # include <sys/procfs.h>
6957 /* FIXME: this is kinda wrong, but it's what gdb wants. */
6960 elfcore_make_pid (bfd
*abfd
)
6962 return ((elf_tdata (abfd
)->core_lwpid
<< 16)
6963 + (elf_tdata (abfd
)->core_pid
));
6966 /* If there isn't a section called NAME, make one, using
6967 data from SECT. Note, this function will generate a
6968 reference to NAME, so you shouldn't deallocate or
6972 elfcore_maybe_make_sect (bfd
*abfd
, char *name
, asection
*sect
)
6976 if (bfd_get_section_by_name (abfd
, name
) != NULL
)
6979 sect2
= bfd_make_section (abfd
, name
);
6983 sect2
->size
= sect
->size
;
6984 sect2
->filepos
= sect
->filepos
;
6985 sect2
->flags
= sect
->flags
;
6986 sect2
->alignment_power
= sect
->alignment_power
;
6990 /* Create a pseudosection containing SIZE bytes at FILEPOS. This
6991 actually creates up to two pseudosections:
6992 - For the single-threaded case, a section named NAME, unless
6993 such a section already exists.
6994 - For the multi-threaded case, a section named "NAME/PID", where
6995 PID is elfcore_make_pid (abfd).
6996 Both pseudosections have identical contents. */
6998 _bfd_elfcore_make_pseudosection (bfd
*abfd
,
7004 char *threaded_name
;
7008 /* Build the section name. */
7010 sprintf (buf
, "%s/%d", name
, elfcore_make_pid (abfd
));
7011 len
= strlen (buf
) + 1;
7012 threaded_name
= bfd_alloc (abfd
, len
);
7013 if (threaded_name
== NULL
)
7015 memcpy (threaded_name
, buf
, len
);
7017 sect
= bfd_make_section_anyway (abfd
, threaded_name
);
7021 sect
->filepos
= filepos
;
7022 sect
->flags
= SEC_HAS_CONTENTS
;
7023 sect
->alignment_power
= 2;
7025 return elfcore_maybe_make_sect (abfd
, name
, sect
);
7028 /* prstatus_t exists on:
7030 linux 2.[01] + glibc
7034 #if defined (HAVE_PRSTATUS_T)
7037 elfcore_grok_prstatus (bfd
*abfd
, Elf_Internal_Note
*note
)
7042 if (note
->descsz
== sizeof (prstatus_t
))
7046 size
= sizeof (prstat
.pr_reg
);
7047 offset
= offsetof (prstatus_t
, pr_reg
);
7048 memcpy (&prstat
, note
->descdata
, sizeof (prstat
));
7050 /* Do not overwrite the core signal if it
7051 has already been set by another thread. */
7052 if (elf_tdata (abfd
)->core_signal
== 0)
7053 elf_tdata (abfd
)->core_signal
= prstat
.pr_cursig
;
7054 elf_tdata (abfd
)->core_pid
= prstat
.pr_pid
;
7056 /* pr_who exists on:
7059 pr_who doesn't exist on:
7062 #if defined (HAVE_PRSTATUS_T_PR_WHO)
7063 elf_tdata (abfd
)->core_lwpid
= prstat
.pr_who
;
7066 #if defined (HAVE_PRSTATUS32_T)
7067 else if (note
->descsz
== sizeof (prstatus32_t
))
7069 /* 64-bit host, 32-bit corefile */
7070 prstatus32_t prstat
;
7072 size
= sizeof (prstat
.pr_reg
);
7073 offset
= offsetof (prstatus32_t
, pr_reg
);
7074 memcpy (&prstat
, note
->descdata
, sizeof (prstat
));
7076 /* Do not overwrite the core signal if it
7077 has already been set by another thread. */
7078 if (elf_tdata (abfd
)->core_signal
== 0)
7079 elf_tdata (abfd
)->core_signal
= prstat
.pr_cursig
;
7080 elf_tdata (abfd
)->core_pid
= prstat
.pr_pid
;
7082 /* pr_who exists on:
7085 pr_who doesn't exist on:
7088 #if defined (HAVE_PRSTATUS32_T_PR_WHO)
7089 elf_tdata (abfd
)->core_lwpid
= prstat
.pr_who
;
7092 #endif /* HAVE_PRSTATUS32_T */
7095 /* Fail - we don't know how to handle any other
7096 note size (ie. data object type). */
7100 /* Make a ".reg/999" section and a ".reg" section. */
7101 return _bfd_elfcore_make_pseudosection (abfd
, ".reg",
7102 size
, note
->descpos
+ offset
);
7104 #endif /* defined (HAVE_PRSTATUS_T) */
7106 /* Create a pseudosection containing the exact contents of NOTE. */
7108 elfcore_make_note_pseudosection (bfd
*abfd
,
7110 Elf_Internal_Note
*note
)
7112 return _bfd_elfcore_make_pseudosection (abfd
, name
,
7113 note
->descsz
, note
->descpos
);
7116 /* There isn't a consistent prfpregset_t across platforms,
7117 but it doesn't matter, because we don't have to pick this
7118 data structure apart. */
7121 elfcore_grok_prfpreg (bfd
*abfd
, Elf_Internal_Note
*note
)
7123 return elfcore_make_note_pseudosection (abfd
, ".reg2", note
);
7126 /* Linux dumps the Intel SSE regs in a note named "LINUX" with a note
7127 type of 5 (NT_PRXFPREG). Just include the whole note's contents
7131 elfcore_grok_prxfpreg (bfd
*abfd
, Elf_Internal_Note
*note
)
7133 return elfcore_make_note_pseudosection (abfd
, ".reg-xfp", note
);
7136 #if defined (HAVE_PRPSINFO_T)
7137 typedef prpsinfo_t elfcore_psinfo_t
;
7138 #if defined (HAVE_PRPSINFO32_T) /* Sparc64 cross Sparc32 */
7139 typedef prpsinfo32_t elfcore_psinfo32_t
;
7143 #if defined (HAVE_PSINFO_T)
7144 typedef psinfo_t elfcore_psinfo_t
;
7145 #if defined (HAVE_PSINFO32_T) /* Sparc64 cross Sparc32 */
7146 typedef psinfo32_t elfcore_psinfo32_t
;
7150 /* return a malloc'ed copy of a string at START which is at
7151 most MAX bytes long, possibly without a terminating '\0'.
7152 the copy will always have a terminating '\0'. */
7155 _bfd_elfcore_strndup (bfd
*abfd
, char *start
, size_t max
)
7158 char *end
= memchr (start
, '\0', max
);
7166 dups
= bfd_alloc (abfd
, len
+ 1);
7170 memcpy (dups
, start
, len
);
7176 #if defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T)
7178 elfcore_grok_psinfo (bfd
*abfd
, Elf_Internal_Note
*note
)
7180 if (note
->descsz
== sizeof (elfcore_psinfo_t
))
7182 elfcore_psinfo_t psinfo
;
7184 memcpy (&psinfo
, note
->descdata
, sizeof (psinfo
));
7186 elf_tdata (abfd
)->core_program
7187 = _bfd_elfcore_strndup (abfd
, psinfo
.pr_fname
,
7188 sizeof (psinfo
.pr_fname
));
7190 elf_tdata (abfd
)->core_command
7191 = _bfd_elfcore_strndup (abfd
, psinfo
.pr_psargs
,
7192 sizeof (psinfo
.pr_psargs
));
7194 #if defined (HAVE_PRPSINFO32_T) || defined (HAVE_PSINFO32_T)
7195 else if (note
->descsz
== sizeof (elfcore_psinfo32_t
))
7197 /* 64-bit host, 32-bit corefile */
7198 elfcore_psinfo32_t psinfo
;
7200 memcpy (&psinfo
, note
->descdata
, sizeof (psinfo
));
7202 elf_tdata (abfd
)->core_program
7203 = _bfd_elfcore_strndup (abfd
, psinfo
.pr_fname
,
7204 sizeof (psinfo
.pr_fname
));
7206 elf_tdata (abfd
)->core_command
7207 = _bfd_elfcore_strndup (abfd
, psinfo
.pr_psargs
,
7208 sizeof (psinfo
.pr_psargs
));
7214 /* Fail - we don't know how to handle any other
7215 note size (ie. data object type). */
7219 /* Note that for some reason, a spurious space is tacked
7220 onto the end of the args in some (at least one anyway)
7221 implementations, so strip it off if it exists. */
7224 char *command
= elf_tdata (abfd
)->core_command
;
7225 int n
= strlen (command
);
7227 if (0 < n
&& command
[n
- 1] == ' ')
7228 command
[n
- 1] = '\0';
7233 #endif /* defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T) */
7235 #if defined (HAVE_PSTATUS_T)
7237 elfcore_grok_pstatus (bfd
*abfd
, Elf_Internal_Note
*note
)
7239 if (note
->descsz
== sizeof (pstatus_t
)
7240 #if defined (HAVE_PXSTATUS_T)
7241 || note
->descsz
== sizeof (pxstatus_t
)
7247 memcpy (&pstat
, note
->descdata
, sizeof (pstat
));
7249 elf_tdata (abfd
)->core_pid
= pstat
.pr_pid
;
7251 #if defined (HAVE_PSTATUS32_T)
7252 else if (note
->descsz
== sizeof (pstatus32_t
))
7254 /* 64-bit host, 32-bit corefile */
7257 memcpy (&pstat
, note
->descdata
, sizeof (pstat
));
7259 elf_tdata (abfd
)->core_pid
= pstat
.pr_pid
;
7262 /* Could grab some more details from the "representative"
7263 lwpstatus_t in pstat.pr_lwp, but we'll catch it all in an
7264 NT_LWPSTATUS note, presumably. */
7268 #endif /* defined (HAVE_PSTATUS_T) */
7270 #if defined (HAVE_LWPSTATUS_T)
7272 elfcore_grok_lwpstatus (bfd
*abfd
, Elf_Internal_Note
*note
)
7274 lwpstatus_t lwpstat
;
7280 if (note
->descsz
!= sizeof (lwpstat
)
7281 #if defined (HAVE_LWPXSTATUS_T)
7282 && note
->descsz
!= sizeof (lwpxstatus_t
)
7287 memcpy (&lwpstat
, note
->descdata
, sizeof (lwpstat
));
7289 elf_tdata (abfd
)->core_lwpid
= lwpstat
.pr_lwpid
;
7290 elf_tdata (abfd
)->core_signal
= lwpstat
.pr_cursig
;
7292 /* Make a ".reg/999" section. */
7294 sprintf (buf
, ".reg/%d", elfcore_make_pid (abfd
));
7295 len
= strlen (buf
) + 1;
7296 name
= bfd_alloc (abfd
, len
);
7299 memcpy (name
, buf
, len
);
7301 sect
= bfd_make_section_anyway (abfd
, name
);
7305 #if defined (HAVE_LWPSTATUS_T_PR_CONTEXT)
7306 sect
->size
= sizeof (lwpstat
.pr_context
.uc_mcontext
.gregs
);
7307 sect
->filepos
= note
->descpos
7308 + offsetof (lwpstatus_t
, pr_context
.uc_mcontext
.gregs
);
7311 #if defined (HAVE_LWPSTATUS_T_PR_REG)
7312 sect
->size
= sizeof (lwpstat
.pr_reg
);
7313 sect
->filepos
= note
->descpos
+ offsetof (lwpstatus_t
, pr_reg
);
7316 sect
->flags
= SEC_HAS_CONTENTS
;
7317 sect
->alignment_power
= 2;
7319 if (!elfcore_maybe_make_sect (abfd
, ".reg", sect
))
7322 /* Make a ".reg2/999" section */
7324 sprintf (buf
, ".reg2/%d", elfcore_make_pid (abfd
));
7325 len
= strlen (buf
) + 1;
7326 name
= bfd_alloc (abfd
, len
);
7329 memcpy (name
, buf
, len
);
7331 sect
= bfd_make_section_anyway (abfd
, name
);
7335 #if defined (HAVE_LWPSTATUS_T_PR_CONTEXT)
7336 sect
->size
= sizeof (lwpstat
.pr_context
.uc_mcontext
.fpregs
);
7337 sect
->filepos
= note
->descpos
7338 + offsetof (lwpstatus_t
, pr_context
.uc_mcontext
.fpregs
);
7341 #if defined (HAVE_LWPSTATUS_T_PR_FPREG)
7342 sect
->size
= sizeof (lwpstat
.pr_fpreg
);
7343 sect
->filepos
= note
->descpos
+ offsetof (lwpstatus_t
, pr_fpreg
);
7346 sect
->flags
= SEC_HAS_CONTENTS
;
7347 sect
->alignment_power
= 2;
7349 return elfcore_maybe_make_sect (abfd
, ".reg2", sect
);
7351 #endif /* defined (HAVE_LWPSTATUS_T) */
7353 #if defined (HAVE_WIN32_PSTATUS_T)
7355 elfcore_grok_win32pstatus (bfd
*abfd
, Elf_Internal_Note
*note
)
7361 win32_pstatus_t pstatus
;
7363 if (note
->descsz
< sizeof (pstatus
))
7366 memcpy (&pstatus
, note
->descdata
, sizeof (pstatus
));
7368 switch (pstatus
.data_type
)
7370 case NOTE_INFO_PROCESS
:
7371 /* FIXME: need to add ->core_command. */
7372 elf_tdata (abfd
)->core_signal
= pstatus
.data
.process_info
.signal
;
7373 elf_tdata (abfd
)->core_pid
= pstatus
.data
.process_info
.pid
;
7376 case NOTE_INFO_THREAD
:
7377 /* Make a ".reg/999" section. */
7378 sprintf (buf
, ".reg/%ld", (long) pstatus
.data
.thread_info
.tid
);
7380 len
= strlen (buf
) + 1;
7381 name
= bfd_alloc (abfd
, len
);
7385 memcpy (name
, buf
, len
);
7387 sect
= bfd_make_section_anyway (abfd
, name
);
7391 sect
->size
= sizeof (pstatus
.data
.thread_info
.thread_context
);
7392 sect
->filepos
= (note
->descpos
7393 + offsetof (struct win32_pstatus
,
7394 data
.thread_info
.thread_context
));
7395 sect
->flags
= SEC_HAS_CONTENTS
;
7396 sect
->alignment_power
= 2;
7398 if (pstatus
.data
.thread_info
.is_active_thread
)
7399 if (! elfcore_maybe_make_sect (abfd
, ".reg", sect
))
7403 case NOTE_INFO_MODULE
:
7404 /* Make a ".module/xxxxxxxx" section. */
7405 sprintf (buf
, ".module/%08lx",
7406 (long) pstatus
.data
.module_info
.base_address
);
7408 len
= strlen (buf
) + 1;
7409 name
= bfd_alloc (abfd
, len
);
7413 memcpy (name
, buf
, len
);
7415 sect
= bfd_make_section_anyway (abfd
, name
);
7420 sect
->size
= note
->descsz
;
7421 sect
->filepos
= note
->descpos
;
7422 sect
->flags
= SEC_HAS_CONTENTS
;
7423 sect
->alignment_power
= 2;
7432 #endif /* HAVE_WIN32_PSTATUS_T */
7435 elfcore_grok_note (bfd
*abfd
, Elf_Internal_Note
*note
)
7437 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
7445 if (bed
->elf_backend_grok_prstatus
)
7446 if ((*bed
->elf_backend_grok_prstatus
) (abfd
, note
))
7448 #if defined (HAVE_PRSTATUS_T)
7449 return elfcore_grok_prstatus (abfd
, note
);
7454 #if defined (HAVE_PSTATUS_T)
7456 return elfcore_grok_pstatus (abfd
, note
);
7459 #if defined (HAVE_LWPSTATUS_T)
7461 return elfcore_grok_lwpstatus (abfd
, note
);
7464 case NT_FPREGSET
: /* FIXME: rename to NT_PRFPREG */
7465 return elfcore_grok_prfpreg (abfd
, note
);
7467 #if defined (HAVE_WIN32_PSTATUS_T)
7468 case NT_WIN32PSTATUS
:
7469 return elfcore_grok_win32pstatus (abfd
, note
);
7472 case NT_PRXFPREG
: /* Linux SSE extension */
7473 if (note
->namesz
== 6
7474 && strcmp (note
->namedata
, "LINUX") == 0)
7475 return elfcore_grok_prxfpreg (abfd
, note
);
7481 if (bed
->elf_backend_grok_psinfo
)
7482 if ((*bed
->elf_backend_grok_psinfo
) (abfd
, note
))
7484 #if defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T)
7485 return elfcore_grok_psinfo (abfd
, note
);
7492 asection
*sect
= bfd_make_section_anyway (abfd
, ".auxv");
7496 sect
->size
= note
->descsz
;
7497 sect
->filepos
= note
->descpos
;
7498 sect
->flags
= SEC_HAS_CONTENTS
;
7499 sect
->alignment_power
= 1 + bfd_get_arch_size (abfd
) / 32;
7507 elfcore_netbsd_get_lwpid (Elf_Internal_Note
*note
, int *lwpidp
)
7511 cp
= strchr (note
->namedata
, '@');
7514 *lwpidp
= atoi(cp
+ 1);
7521 elfcore_grok_netbsd_procinfo (bfd
*abfd
, Elf_Internal_Note
*note
)
7524 /* Signal number at offset 0x08. */
7525 elf_tdata (abfd
)->core_signal
7526 = bfd_h_get_32 (abfd
, (bfd_byte
*) note
->descdata
+ 0x08);
7528 /* Process ID at offset 0x50. */
7529 elf_tdata (abfd
)->core_pid
7530 = bfd_h_get_32 (abfd
, (bfd_byte
*) note
->descdata
+ 0x50);
7532 /* Command name at 0x7c (max 32 bytes, including nul). */
7533 elf_tdata (abfd
)->core_command
7534 = _bfd_elfcore_strndup (abfd
, note
->descdata
+ 0x7c, 31);
7536 return elfcore_make_note_pseudosection (abfd
, ".note.netbsdcore.procinfo",
7541 elfcore_grok_netbsd_note (bfd
*abfd
, Elf_Internal_Note
*note
)
7545 if (elfcore_netbsd_get_lwpid (note
, &lwp
))
7546 elf_tdata (abfd
)->core_lwpid
= lwp
;
7548 if (note
->type
== NT_NETBSDCORE_PROCINFO
)
7550 /* NetBSD-specific core "procinfo". Note that we expect to
7551 find this note before any of the others, which is fine,
7552 since the kernel writes this note out first when it
7553 creates a core file. */
7555 return elfcore_grok_netbsd_procinfo (abfd
, note
);
7558 /* As of Jan 2002 there are no other machine-independent notes
7559 defined for NetBSD core files. If the note type is less
7560 than the start of the machine-dependent note types, we don't
7563 if (note
->type
< NT_NETBSDCORE_FIRSTMACH
)
7567 switch (bfd_get_arch (abfd
))
7569 /* On the Alpha, SPARC (32-bit and 64-bit), PT_GETREGS == mach+0 and
7570 PT_GETFPREGS == mach+2. */
7572 case bfd_arch_alpha
:
7573 case bfd_arch_sparc
:
7576 case NT_NETBSDCORE_FIRSTMACH
+0:
7577 return elfcore_make_note_pseudosection (abfd
, ".reg", note
);
7579 case NT_NETBSDCORE_FIRSTMACH
+2:
7580 return elfcore_make_note_pseudosection (abfd
, ".reg2", note
);
7586 /* On all other arch's, PT_GETREGS == mach+1 and
7587 PT_GETFPREGS == mach+3. */
7592 case NT_NETBSDCORE_FIRSTMACH
+1:
7593 return elfcore_make_note_pseudosection (abfd
, ".reg", note
);
7595 case NT_NETBSDCORE_FIRSTMACH
+3:
7596 return elfcore_make_note_pseudosection (abfd
, ".reg2", note
);
7606 elfcore_grok_nto_status (bfd
*abfd
, Elf_Internal_Note
*note
, pid_t
*tid
)
7608 void *ddata
= note
->descdata
;
7615 /* nto_procfs_status 'pid' field is at offset 0. */
7616 elf_tdata (abfd
)->core_pid
= bfd_get_32 (abfd
, (bfd_byte
*) ddata
);
7618 /* nto_procfs_status 'tid' field is at offset 4. Pass it back. */
7619 *tid
= bfd_get_32 (abfd
, (bfd_byte
*) ddata
+ 4);
7621 /* nto_procfs_status 'flags' field is at offset 8. */
7622 flags
= bfd_get_32 (abfd
, (bfd_byte
*) ddata
+ 8);
7624 /* nto_procfs_status 'what' field is at offset 14. */
7625 if ((sig
= bfd_get_16 (abfd
, (bfd_byte
*) ddata
+ 14)) > 0)
7627 elf_tdata (abfd
)->core_signal
= sig
;
7628 elf_tdata (abfd
)->core_lwpid
= *tid
;
7631 /* _DEBUG_FLAG_CURTID (current thread) is 0x80. Some cores
7632 do not come from signals so we make sure we set the current
7633 thread just in case. */
7634 if (flags
& 0x00000080)
7635 elf_tdata (abfd
)->core_lwpid
= *tid
;
7637 /* Make a ".qnx_core_status/%d" section. */
7638 sprintf (buf
, ".qnx_core_status/%ld", (long) *tid
);
7640 name
= bfd_alloc (abfd
, strlen (buf
) + 1);
7645 sect
= bfd_make_section_anyway (abfd
, name
);
7649 sect
->size
= note
->descsz
;
7650 sect
->filepos
= note
->descpos
;
7651 sect
->flags
= SEC_HAS_CONTENTS
;
7652 sect
->alignment_power
= 2;
7654 return (elfcore_maybe_make_sect (abfd
, ".qnx_core_status", sect
));
7658 elfcore_grok_nto_regs (bfd
*abfd
,
7659 Elf_Internal_Note
*note
,
7667 /* Make a "(base)/%d" section. */
7668 sprintf (buf
, "%s/%ld", base
, (long) tid
);
7670 name
= bfd_alloc (abfd
, strlen (buf
) + 1);
7675 sect
= bfd_make_section_anyway (abfd
, name
);
7679 sect
->size
= note
->descsz
;
7680 sect
->filepos
= note
->descpos
;
7681 sect
->flags
= SEC_HAS_CONTENTS
;
7682 sect
->alignment_power
= 2;
7684 /* This is the current thread. */
7685 if (elf_tdata (abfd
)->core_lwpid
== tid
)
7686 return elfcore_maybe_make_sect (abfd
, base
, sect
);
7691 #define BFD_QNT_CORE_INFO 7
7692 #define BFD_QNT_CORE_STATUS 8
7693 #define BFD_QNT_CORE_GREG 9
7694 #define BFD_QNT_CORE_FPREG 10
7697 elfcore_grok_nto_note (bfd
*abfd
, Elf_Internal_Note
*note
)
7699 /* Every GREG section has a STATUS section before it. Store the
7700 tid from the previous call to pass down to the next gregs
7702 static pid_t tid
= 1;
7706 case BFD_QNT_CORE_INFO
:
7707 return elfcore_make_note_pseudosection (abfd
, ".qnx_core_info", note
);
7708 case BFD_QNT_CORE_STATUS
:
7709 return elfcore_grok_nto_status (abfd
, note
, &tid
);
7710 case BFD_QNT_CORE_GREG
:
7711 return elfcore_grok_nto_regs (abfd
, note
, tid
, ".reg");
7712 case BFD_QNT_CORE_FPREG
:
7713 return elfcore_grok_nto_regs (abfd
, note
, tid
, ".reg2");
7719 /* Function: elfcore_write_note
7726 size of data for note
7729 End of buffer containing note. */
7732 elfcore_write_note (bfd
*abfd
,
7740 Elf_External_Note
*xnp
;
7750 const struct elf_backend_data
*bed
;
7752 namesz
= strlen (name
) + 1;
7753 bed
= get_elf_backend_data (abfd
);
7754 pad
= -namesz
& ((1 << bed
->s
->log_file_align
) - 1);
7757 newspace
= 12 + namesz
+ pad
+ size
;
7759 p
= realloc (buf
, *bufsiz
+ newspace
);
7761 *bufsiz
+= newspace
;
7762 xnp
= (Elf_External_Note
*) dest
;
7763 H_PUT_32 (abfd
, namesz
, xnp
->namesz
);
7764 H_PUT_32 (abfd
, size
, xnp
->descsz
);
7765 H_PUT_32 (abfd
, type
, xnp
->type
);
7769 memcpy (dest
, name
, namesz
);
7777 memcpy (dest
, input
, size
);
7781 #if defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T)
7783 elfcore_write_prpsinfo (bfd
*abfd
,
7790 char *note_name
= "CORE";
7792 #if defined (HAVE_PSINFO_T)
7794 note_type
= NT_PSINFO
;
7797 note_type
= NT_PRPSINFO
;
7800 memset (&data
, 0, sizeof (data
));
7801 strncpy (data
.pr_fname
, fname
, sizeof (data
.pr_fname
));
7802 strncpy (data
.pr_psargs
, psargs
, sizeof (data
.pr_psargs
));
7803 return elfcore_write_note (abfd
, buf
, bufsiz
,
7804 note_name
, note_type
, &data
, sizeof (data
));
7806 #endif /* PSINFO_T or PRPSINFO_T */
7808 #if defined (HAVE_PRSTATUS_T)
7810 elfcore_write_prstatus (bfd
*abfd
,
7818 char *note_name
= "CORE";
7820 memset (&prstat
, 0, sizeof (prstat
));
7821 prstat
.pr_pid
= pid
;
7822 prstat
.pr_cursig
= cursig
;
7823 memcpy (&prstat
.pr_reg
, gregs
, sizeof (prstat
.pr_reg
));
7824 return elfcore_write_note (abfd
, buf
, bufsiz
,
7825 note_name
, NT_PRSTATUS
, &prstat
, sizeof (prstat
));
7827 #endif /* HAVE_PRSTATUS_T */
7829 #if defined (HAVE_LWPSTATUS_T)
7831 elfcore_write_lwpstatus (bfd
*abfd
,
7838 lwpstatus_t lwpstat
;
7839 char *note_name
= "CORE";
7841 memset (&lwpstat
, 0, sizeof (lwpstat
));
7842 lwpstat
.pr_lwpid
= pid
>> 16;
7843 lwpstat
.pr_cursig
= cursig
;
7844 #if defined (HAVE_LWPSTATUS_T_PR_REG)
7845 memcpy (lwpstat
.pr_reg
, gregs
, sizeof (lwpstat
.pr_reg
));
7846 #elif defined (HAVE_LWPSTATUS_T_PR_CONTEXT)
7848 memcpy (lwpstat
.pr_context
.uc_mcontext
.gregs
,
7849 gregs
, sizeof (lwpstat
.pr_context
.uc_mcontext
.gregs
));
7851 memcpy (lwpstat
.pr_context
.uc_mcontext
.__gregs
,
7852 gregs
, sizeof (lwpstat
.pr_context
.uc_mcontext
.__gregs
));
7855 return elfcore_write_note (abfd
, buf
, bufsiz
, note_name
,
7856 NT_LWPSTATUS
, &lwpstat
, sizeof (lwpstat
));
7858 #endif /* HAVE_LWPSTATUS_T */
7860 #if defined (HAVE_PSTATUS_T)
7862 elfcore_write_pstatus (bfd
*abfd
,
7870 char *note_name
= "CORE";
7872 memset (&pstat
, 0, sizeof (pstat
));
7873 pstat
.pr_pid
= pid
& 0xffff;
7874 buf
= elfcore_write_note (abfd
, buf
, bufsiz
, note_name
,
7875 NT_PSTATUS
, &pstat
, sizeof (pstat
));
7878 #endif /* HAVE_PSTATUS_T */
7881 elfcore_write_prfpreg (bfd
*abfd
,
7887 char *note_name
= "CORE";
7888 return elfcore_write_note (abfd
, buf
, bufsiz
,
7889 note_name
, NT_FPREGSET
, fpregs
, size
);
7893 elfcore_write_prxfpreg (bfd
*abfd
,
7896 const void *xfpregs
,
7899 char *note_name
= "LINUX";
7900 return elfcore_write_note (abfd
, buf
, bufsiz
,
7901 note_name
, NT_PRXFPREG
, xfpregs
, size
);
7905 elfcore_read_notes (bfd
*abfd
, file_ptr offset
, bfd_size_type size
)
7913 if (bfd_seek (abfd
, offset
, SEEK_SET
) != 0)
7916 buf
= bfd_malloc (size
);
7920 if (bfd_bread (buf
, size
, abfd
) != size
)
7928 while (p
< buf
+ size
)
7930 /* FIXME: bad alignment assumption. */
7931 Elf_External_Note
*xnp
= (Elf_External_Note
*) p
;
7932 Elf_Internal_Note in
;
7934 in
.type
= H_GET_32 (abfd
, xnp
->type
);
7936 in
.namesz
= H_GET_32 (abfd
, xnp
->namesz
);
7937 in
.namedata
= xnp
->name
;
7939 in
.descsz
= H_GET_32 (abfd
, xnp
->descsz
);
7940 in
.descdata
= in
.namedata
+ BFD_ALIGN (in
.namesz
, 4);
7941 in
.descpos
= offset
+ (in
.descdata
- buf
);
7943 if (strncmp (in
.namedata
, "NetBSD-CORE", 11) == 0)
7945 if (! elfcore_grok_netbsd_note (abfd
, &in
))
7948 else if (strncmp (in
.namedata
, "QNX", 3) == 0)
7950 if (! elfcore_grok_nto_note (abfd
, &in
))
7955 if (! elfcore_grok_note (abfd
, &in
))
7959 p
= in
.descdata
+ BFD_ALIGN (in
.descsz
, 4);
7966 /* Providing external access to the ELF program header table. */
7968 /* Return an upper bound on the number of bytes required to store a
7969 copy of ABFD's program header table entries. Return -1 if an error
7970 occurs; bfd_get_error will return an appropriate code. */
7973 bfd_get_elf_phdr_upper_bound (bfd
*abfd
)
7975 if (abfd
->xvec
->flavour
!= bfd_target_elf_flavour
)
7977 bfd_set_error (bfd_error_wrong_format
);
7981 return elf_elfheader (abfd
)->e_phnum
* sizeof (Elf_Internal_Phdr
);
7984 /* Copy ABFD's program header table entries to *PHDRS. The entries
7985 will be stored as an array of Elf_Internal_Phdr structures, as
7986 defined in include/elf/internal.h. To find out how large the
7987 buffer needs to be, call bfd_get_elf_phdr_upper_bound.
7989 Return the number of program header table entries read, or -1 if an
7990 error occurs; bfd_get_error will return an appropriate code. */
7993 bfd_get_elf_phdrs (bfd
*abfd
, void *phdrs
)
7997 if (abfd
->xvec
->flavour
!= bfd_target_elf_flavour
)
7999 bfd_set_error (bfd_error_wrong_format
);
8003 num_phdrs
= elf_elfheader (abfd
)->e_phnum
;
8004 memcpy (phdrs
, elf_tdata (abfd
)->phdr
,
8005 num_phdrs
* sizeof (Elf_Internal_Phdr
));
8011 _bfd_elf_sprintf_vma (bfd
*abfd ATTRIBUTE_UNUSED
, char *buf
, bfd_vma value
)
8014 Elf_Internal_Ehdr
*i_ehdrp
; /* Elf file header, internal form */
8016 i_ehdrp
= elf_elfheader (abfd
);
8017 if (i_ehdrp
== NULL
)
8018 sprintf_vma (buf
, value
);
8021 if (i_ehdrp
->e_ident
[EI_CLASS
] == ELFCLASS64
)
8023 #if BFD_HOST_64BIT_LONG
8024 sprintf (buf
, "%016lx", value
);
8026 sprintf (buf
, "%08lx%08lx", _bfd_int64_high (value
),
8027 _bfd_int64_low (value
));
8031 sprintf (buf
, "%08lx", (unsigned long) (value
& 0xffffffff));
8034 sprintf_vma (buf
, value
);
8039 _bfd_elf_fprintf_vma (bfd
*abfd ATTRIBUTE_UNUSED
, void *stream
, bfd_vma value
)
8042 Elf_Internal_Ehdr
*i_ehdrp
; /* Elf file header, internal form */
8044 i_ehdrp
= elf_elfheader (abfd
);
8045 if (i_ehdrp
== NULL
)
8046 fprintf_vma ((FILE *) stream
, value
);
8049 if (i_ehdrp
->e_ident
[EI_CLASS
] == ELFCLASS64
)
8051 #if BFD_HOST_64BIT_LONG
8052 fprintf ((FILE *) stream
, "%016lx", value
);
8054 fprintf ((FILE *) stream
, "%08lx%08lx",
8055 _bfd_int64_high (value
), _bfd_int64_low (value
));
8059 fprintf ((FILE *) stream
, "%08lx",
8060 (unsigned long) (value
& 0xffffffff));
8063 fprintf_vma ((FILE *) stream
, value
);
8067 enum elf_reloc_type_class
8068 _bfd_elf_reloc_type_class (const Elf_Internal_Rela
*rela ATTRIBUTE_UNUSED
)
8070 return reloc_class_normal
;
8073 /* For RELA architectures, return the relocation value for a
8074 relocation against a local symbol. */
8077 _bfd_elf_rela_local_sym (bfd
*abfd
,
8078 Elf_Internal_Sym
*sym
,
8080 Elf_Internal_Rela
*rel
)
8082 asection
*sec
= *psec
;
8085 relocation
= (sec
->output_section
->vma
8086 + sec
->output_offset
8088 if ((sec
->flags
& SEC_MERGE
)
8089 && ELF_ST_TYPE (sym
->st_info
) == STT_SECTION
8090 && sec
->sec_info_type
== ELF_INFO_TYPE_MERGE
)
8093 _bfd_merged_section_offset (abfd
, psec
,
8094 elf_section_data (sec
)->sec_info
,
8095 sym
->st_value
+ rel
->r_addend
);
8098 /* If we have changed the section, and our original section is
8099 marked with SEC_EXCLUDE, it means that the original
8100 SEC_MERGE section has been completely subsumed in some
8101 other SEC_MERGE section. In this case, we need to leave
8102 some info around for --emit-relocs. */
8103 if ((sec
->flags
& SEC_EXCLUDE
) != 0)
8104 sec
->kept_section
= *psec
;
8107 rel
->r_addend
-= relocation
;
8108 rel
->r_addend
+= sec
->output_section
->vma
+ sec
->output_offset
;
8114 _bfd_elf_rel_local_sym (bfd
*abfd
,
8115 Elf_Internal_Sym
*sym
,
8119 asection
*sec
= *psec
;
8121 if (sec
->sec_info_type
!= ELF_INFO_TYPE_MERGE
)
8122 return sym
->st_value
+ addend
;
8124 return _bfd_merged_section_offset (abfd
, psec
,
8125 elf_section_data (sec
)->sec_info
,
8126 sym
->st_value
+ addend
);
8130 _bfd_elf_section_offset (bfd
*abfd
,
8131 struct bfd_link_info
*info
,
8135 switch (sec
->sec_info_type
)
8137 case ELF_INFO_TYPE_STABS
:
8138 return _bfd_stab_section_offset (sec
, elf_section_data (sec
)->sec_info
,
8140 case ELF_INFO_TYPE_EH_FRAME
:
8141 return _bfd_elf_eh_frame_section_offset (abfd
, info
, sec
, offset
);
8147 /* Create a new BFD as if by bfd_openr. Rather than opening a file,
8148 reconstruct an ELF file by reading the segments out of remote memory
8149 based on the ELF file header at EHDR_VMA and the ELF program headers it
8150 points to. If not null, *LOADBASEP is filled in with the difference
8151 between the VMAs from which the segments were read, and the VMAs the
8152 file headers (and hence BFD's idea of each section's VMA) put them at.
8154 The function TARGET_READ_MEMORY is called to copy LEN bytes from the
8155 remote memory at target address VMA into the local buffer at MYADDR; it
8156 should return zero on success or an `errno' code on failure. TEMPL must
8157 be a BFD for an ELF target with the word size and byte order found in
8158 the remote memory. */
8161 bfd_elf_bfd_from_remote_memory
8165 int (*target_read_memory
) (bfd_vma
, bfd_byte
*, int))
8167 return (*get_elf_backend_data (templ
)->elf_backend_bfd_from_remote_memory
)
8168 (templ
, ehdr_vma
, loadbasep
, target_read_memory
);
8172 _bfd_elf_get_synthetic_symtab (bfd
*abfd
,
8173 long symcount ATTRIBUTE_UNUSED
,
8174 asymbol
**syms ATTRIBUTE_UNUSED
,
8179 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
8182 const char *relplt_name
;
8183 bfd_boolean (*slurp_relocs
) (bfd
*, asection
*, asymbol
**, bfd_boolean
);
8187 Elf_Internal_Shdr
*hdr
;
8193 if ((abfd
->flags
& (DYNAMIC
| EXEC_P
)) == 0)
8196 if (dynsymcount
<= 0)
8199 if (!bed
->plt_sym_val
)
8202 relplt_name
= bed
->relplt_name
;
8203 if (relplt_name
== NULL
)
8204 relplt_name
= bed
->default_use_rela_p
? ".rela.plt" : ".rel.plt";
8205 relplt
= bfd_get_section_by_name (abfd
, relplt_name
);
8209 hdr
= &elf_section_data (relplt
)->this_hdr
;
8210 if (hdr
->sh_link
!= elf_dynsymtab (abfd
)
8211 || (hdr
->sh_type
!= SHT_REL
&& hdr
->sh_type
!= SHT_RELA
))
8214 plt
= bfd_get_section_by_name (abfd
, ".plt");
8218 slurp_relocs
= get_elf_backend_data (abfd
)->s
->slurp_reloc_table
;
8219 if (! (*slurp_relocs
) (abfd
, relplt
, dynsyms
, TRUE
))
8222 count
= relplt
->size
/ hdr
->sh_entsize
;
8223 size
= count
* sizeof (asymbol
);
8224 p
= relplt
->relocation
;
8225 for (i
= 0; i
< count
; i
++, s
++, p
++)
8226 size
+= strlen ((*p
->sym_ptr_ptr
)->name
) + sizeof ("@plt");
8228 s
= *ret
= bfd_malloc (size
);
8232 names
= (char *) (s
+ count
);
8233 p
= relplt
->relocation
;
8235 for (i
= 0; i
< count
; i
++, s
++, p
++)
8240 addr
= bed
->plt_sym_val (i
, plt
, p
);
8241 if (addr
== (bfd_vma
) -1)
8244 *s
= **p
->sym_ptr_ptr
;
8245 /* Undefined syms won't have BSF_LOCAL or BSF_GLOBAL set. Since
8246 we are defining a symbol, ensure one of them is set. */
8247 if ((s
->flags
& BSF_LOCAL
) == 0)
8248 s
->flags
|= BSF_GLOBAL
;
8250 s
->value
= addr
- plt
->vma
;
8252 len
= strlen ((*p
->sym_ptr_ptr
)->name
);
8253 memcpy (names
, (*p
->sym_ptr_ptr
)->name
, len
);
8255 memcpy (names
, "@plt", sizeof ("@plt"));
8256 names
+= sizeof ("@plt");
8263 /* Sort symbol by binding and section. We want to put definitions
8264 sorted by section at the beginning. */
8267 elf_sort_elf_symbol (const void *arg1
, const void *arg2
)
8269 const Elf_Internal_Sym
*s1
;
8270 const Elf_Internal_Sym
*s2
;
8273 /* Make sure that undefined symbols are at the end. */
8274 s1
= (const Elf_Internal_Sym
*) arg1
;
8275 if (s1
->st_shndx
== SHN_UNDEF
)
8277 s2
= (const Elf_Internal_Sym
*) arg2
;
8278 if (s2
->st_shndx
== SHN_UNDEF
)
8281 /* Sorted by section index. */
8282 shndx
= s1
->st_shndx
- s2
->st_shndx
;
8286 /* Sorted by binding. */
8287 return ELF_ST_BIND (s1
->st_info
) - ELF_ST_BIND (s2
->st_info
);
8292 Elf_Internal_Sym
*sym
;
8297 elf_sym_name_compare (const void *arg1
, const void *arg2
)
8299 const struct elf_symbol
*s1
= (const struct elf_symbol
*) arg1
;
8300 const struct elf_symbol
*s2
= (const struct elf_symbol
*) arg2
;
8301 return strcmp (s1
->name
, s2
->name
);
8304 /* Check if 2 sections define the same set of local and global
8308 bfd_elf_match_symbols_in_sections (asection
*sec1
, asection
*sec2
)
8311 const struct elf_backend_data
*bed1
, *bed2
;
8312 Elf_Internal_Shdr
*hdr1
, *hdr2
;
8313 bfd_size_type symcount1
, symcount2
;
8314 Elf_Internal_Sym
*isymbuf1
, *isymbuf2
;
8315 Elf_Internal_Sym
*isymstart1
= NULL
, *isymstart2
= NULL
, *isym
;
8316 Elf_Internal_Sym
*isymend
;
8317 struct elf_symbol
*symp
, *symtable1
= NULL
, *symtable2
= NULL
;
8318 bfd_size_type count1
, count2
, i
;
8325 /* If both are .gnu.linkonce sections, they have to have the same
8327 if (strncmp (sec1
->name
, ".gnu.linkonce",
8328 sizeof ".gnu.linkonce" - 1) == 0
8329 && strncmp (sec2
->name
, ".gnu.linkonce",
8330 sizeof ".gnu.linkonce" - 1) == 0)
8331 return strcmp (sec1
->name
+ sizeof ".gnu.linkonce",
8332 sec2
->name
+ sizeof ".gnu.linkonce") == 0;
8334 /* Both sections have to be in ELF. */
8335 if (bfd_get_flavour (bfd1
) != bfd_target_elf_flavour
8336 || bfd_get_flavour (bfd2
) != bfd_target_elf_flavour
)
8339 if (elf_section_type (sec1
) != elf_section_type (sec2
))
8342 if ((elf_section_flags (sec1
) & SHF_GROUP
) != 0
8343 && (elf_section_flags (sec2
) & SHF_GROUP
) != 0)
8345 /* If both are members of section groups, they have to have the
8347 if (strcmp (elf_group_name (sec1
), elf_group_name (sec2
)) != 0)
8351 shndx1
= _bfd_elf_section_from_bfd_section (bfd1
, sec1
);
8352 shndx2
= _bfd_elf_section_from_bfd_section (bfd2
, sec2
);
8353 if (shndx1
== -1 || shndx2
== -1)
8356 bed1
= get_elf_backend_data (bfd1
);
8357 bed2
= get_elf_backend_data (bfd2
);
8358 hdr1
= &elf_tdata (bfd1
)->symtab_hdr
;
8359 symcount1
= hdr1
->sh_size
/ bed1
->s
->sizeof_sym
;
8360 hdr2
= &elf_tdata (bfd2
)->symtab_hdr
;
8361 symcount2
= hdr2
->sh_size
/ bed2
->s
->sizeof_sym
;
8363 if (symcount1
== 0 || symcount2
== 0)
8366 isymbuf1
= bfd_elf_get_elf_syms (bfd1
, hdr1
, symcount1
, 0,
8368 isymbuf2
= bfd_elf_get_elf_syms (bfd2
, hdr2
, symcount2
, 0,
8372 if (isymbuf1
== NULL
|| isymbuf2
== NULL
)
8375 /* Sort symbols by binding and section. Global definitions are at
8377 qsort (isymbuf1
, symcount1
, sizeof (Elf_Internal_Sym
),
8378 elf_sort_elf_symbol
);
8379 qsort (isymbuf2
, symcount2
, sizeof (Elf_Internal_Sym
),
8380 elf_sort_elf_symbol
);
8382 /* Count definitions in the section. */
8384 for (isym
= isymbuf1
, isymend
= isym
+ symcount1
;
8385 isym
< isymend
; isym
++)
8387 if (isym
->st_shndx
== (unsigned int) shndx1
)
8394 if (count1
&& isym
->st_shndx
!= (unsigned int) shndx1
)
8399 for (isym
= isymbuf2
, isymend
= isym
+ symcount2
;
8400 isym
< isymend
; isym
++)
8402 if (isym
->st_shndx
== (unsigned int) shndx2
)
8409 if (count2
&& isym
->st_shndx
!= (unsigned int) shndx2
)
8413 if (count1
== 0 || count2
== 0 || count1
!= count2
)
8416 symtable1
= bfd_malloc (count1
* sizeof (struct elf_symbol
));
8417 symtable2
= bfd_malloc (count1
* sizeof (struct elf_symbol
));
8419 if (symtable1
== NULL
|| symtable2
== NULL
)
8423 for (isym
= isymstart1
, isymend
= isym
+ count1
;
8424 isym
< isymend
; isym
++)
8427 symp
->name
= bfd_elf_string_from_elf_section (bfd1
,
8434 for (isym
= isymstart2
, isymend
= isym
+ count1
;
8435 isym
< isymend
; isym
++)
8438 symp
->name
= bfd_elf_string_from_elf_section (bfd2
,
8444 /* Sort symbol by name. */
8445 qsort (symtable1
, count1
, sizeof (struct elf_symbol
),
8446 elf_sym_name_compare
);
8447 qsort (symtable2
, count1
, sizeof (struct elf_symbol
),
8448 elf_sym_name_compare
);
8450 for (i
= 0; i
< count1
; i
++)
8451 /* Two symbols must have the same binding, type and name. */
8452 if (symtable1
[i
].sym
->st_info
!= symtable2
[i
].sym
->st_info
8453 || symtable1
[i
].sym
->st_other
!= symtable2
[i
].sym
->st_other
8454 || strcmp (symtable1
[i
].name
, symtable2
[i
].name
) != 0)
8472 /* It is only used by x86-64 so far. */
8473 asection _bfd_elf_large_com_section
8474 = BFD_FAKE_SECTION (_bfd_elf_large_com_section
,
8475 SEC_IS_COMMON
, NULL
, NULL
, "LARGE_COMMON",
8478 /* Return TRUE if 2 section types are compatible. */
8481 _bfd_elf_match_sections_by_type (bfd
*abfd
, const asection
*asec
,
8482 bfd
*bbfd
, const asection
*bsec
)
8486 || abfd
->xvec
->flavour
!= bfd_target_elf_flavour
8487 || bbfd
->xvec
->flavour
!= bfd_target_elf_flavour
)
8490 return elf_section_type (asec
) == elf_section_type (bsec
);