1 /* ELF executable support for BFD.
3 Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
4 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
5 Free Software Foundation, Inc.
7 This file is part of BFD, the Binary File Descriptor library.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
22 MA 02110-1301, USA. */
29 BFD support for ELF formats is being worked on.
30 Currently, the best supported back ends are for sparc and i386
31 (running svr4 or Solaris 2).
33 Documentation of the internals of the support code still needs
34 to be written. The code is changing quickly enough that we
35 haven't bothered yet. */
37 /* For sparc64-cross-sparc32. */
45 #include "libiberty.h"
46 #include "safe-ctype.h"
52 static int elf_sort_sections (const void *, const void *);
53 static bfd_boolean
assign_file_positions_except_relocs (bfd
*, struct bfd_link_info
*);
54 static bfd_boolean
prep_headers (bfd
*);
55 static bfd_boolean
swap_out_syms (bfd
*, struct bfd_strtab_hash
**, int) ;
56 static bfd_boolean
elf_read_notes (bfd
*, file_ptr
, bfd_size_type
) ;
57 static bfd_boolean
elf_parse_notes (bfd
*abfd
, char *buf
, size_t size
,
60 /* Swap version information in and out. The version information is
61 currently size independent. If that ever changes, this code will
62 need to move into elfcode.h. */
64 /* Swap in a Verdef structure. */
67 _bfd_elf_swap_verdef_in (bfd
*abfd
,
68 const Elf_External_Verdef
*src
,
69 Elf_Internal_Verdef
*dst
)
71 dst
->vd_version
= H_GET_16 (abfd
, src
->vd_version
);
72 dst
->vd_flags
= H_GET_16 (abfd
, src
->vd_flags
);
73 dst
->vd_ndx
= H_GET_16 (abfd
, src
->vd_ndx
);
74 dst
->vd_cnt
= H_GET_16 (abfd
, src
->vd_cnt
);
75 dst
->vd_hash
= H_GET_32 (abfd
, src
->vd_hash
);
76 dst
->vd_aux
= H_GET_32 (abfd
, src
->vd_aux
);
77 dst
->vd_next
= H_GET_32 (abfd
, src
->vd_next
);
80 /* Swap out a Verdef structure. */
83 _bfd_elf_swap_verdef_out (bfd
*abfd
,
84 const Elf_Internal_Verdef
*src
,
85 Elf_External_Verdef
*dst
)
87 H_PUT_16 (abfd
, src
->vd_version
, dst
->vd_version
);
88 H_PUT_16 (abfd
, src
->vd_flags
, dst
->vd_flags
);
89 H_PUT_16 (abfd
, src
->vd_ndx
, dst
->vd_ndx
);
90 H_PUT_16 (abfd
, src
->vd_cnt
, dst
->vd_cnt
);
91 H_PUT_32 (abfd
, src
->vd_hash
, dst
->vd_hash
);
92 H_PUT_32 (abfd
, src
->vd_aux
, dst
->vd_aux
);
93 H_PUT_32 (abfd
, src
->vd_next
, dst
->vd_next
);
96 /* Swap in a Verdaux structure. */
99 _bfd_elf_swap_verdaux_in (bfd
*abfd
,
100 const Elf_External_Verdaux
*src
,
101 Elf_Internal_Verdaux
*dst
)
103 dst
->vda_name
= H_GET_32 (abfd
, src
->vda_name
);
104 dst
->vda_next
= H_GET_32 (abfd
, src
->vda_next
);
107 /* Swap out a Verdaux structure. */
110 _bfd_elf_swap_verdaux_out (bfd
*abfd
,
111 const Elf_Internal_Verdaux
*src
,
112 Elf_External_Verdaux
*dst
)
114 H_PUT_32 (abfd
, src
->vda_name
, dst
->vda_name
);
115 H_PUT_32 (abfd
, src
->vda_next
, dst
->vda_next
);
118 /* Swap in a Verneed structure. */
121 _bfd_elf_swap_verneed_in (bfd
*abfd
,
122 const Elf_External_Verneed
*src
,
123 Elf_Internal_Verneed
*dst
)
125 dst
->vn_version
= H_GET_16 (abfd
, src
->vn_version
);
126 dst
->vn_cnt
= H_GET_16 (abfd
, src
->vn_cnt
);
127 dst
->vn_file
= H_GET_32 (abfd
, src
->vn_file
);
128 dst
->vn_aux
= H_GET_32 (abfd
, src
->vn_aux
);
129 dst
->vn_next
= H_GET_32 (abfd
, src
->vn_next
);
132 /* Swap out a Verneed structure. */
135 _bfd_elf_swap_verneed_out (bfd
*abfd
,
136 const Elf_Internal_Verneed
*src
,
137 Elf_External_Verneed
*dst
)
139 H_PUT_16 (abfd
, src
->vn_version
, dst
->vn_version
);
140 H_PUT_16 (abfd
, src
->vn_cnt
, dst
->vn_cnt
);
141 H_PUT_32 (abfd
, src
->vn_file
, dst
->vn_file
);
142 H_PUT_32 (abfd
, src
->vn_aux
, dst
->vn_aux
);
143 H_PUT_32 (abfd
, src
->vn_next
, dst
->vn_next
);
146 /* Swap in a Vernaux structure. */
149 _bfd_elf_swap_vernaux_in (bfd
*abfd
,
150 const Elf_External_Vernaux
*src
,
151 Elf_Internal_Vernaux
*dst
)
153 dst
->vna_hash
= H_GET_32 (abfd
, src
->vna_hash
);
154 dst
->vna_flags
= H_GET_16 (abfd
, src
->vna_flags
);
155 dst
->vna_other
= H_GET_16 (abfd
, src
->vna_other
);
156 dst
->vna_name
= H_GET_32 (abfd
, src
->vna_name
);
157 dst
->vna_next
= H_GET_32 (abfd
, src
->vna_next
);
160 /* Swap out a Vernaux structure. */
163 _bfd_elf_swap_vernaux_out (bfd
*abfd
,
164 const Elf_Internal_Vernaux
*src
,
165 Elf_External_Vernaux
*dst
)
167 H_PUT_32 (abfd
, src
->vna_hash
, dst
->vna_hash
);
168 H_PUT_16 (abfd
, src
->vna_flags
, dst
->vna_flags
);
169 H_PUT_16 (abfd
, src
->vna_other
, dst
->vna_other
);
170 H_PUT_32 (abfd
, src
->vna_name
, dst
->vna_name
);
171 H_PUT_32 (abfd
, src
->vna_next
, dst
->vna_next
);
174 /* Swap in a Versym structure. */
177 _bfd_elf_swap_versym_in (bfd
*abfd
,
178 const Elf_External_Versym
*src
,
179 Elf_Internal_Versym
*dst
)
181 dst
->vs_vers
= H_GET_16 (abfd
, src
->vs_vers
);
184 /* Swap out a Versym structure. */
187 _bfd_elf_swap_versym_out (bfd
*abfd
,
188 const Elf_Internal_Versym
*src
,
189 Elf_External_Versym
*dst
)
191 H_PUT_16 (abfd
, src
->vs_vers
, dst
->vs_vers
);
194 /* Standard ELF hash function. Do not change this function; you will
195 cause invalid hash tables to be generated. */
198 bfd_elf_hash (const char *namearg
)
200 const unsigned char *name
= (const unsigned char *) namearg
;
205 while ((ch
= *name
++) != '\0')
208 if ((g
= (h
& 0xf0000000)) != 0)
211 /* The ELF ABI says `h &= ~g', but this is equivalent in
212 this case and on some machines one insn instead of two. */
216 return h
& 0xffffffff;
219 /* DT_GNU_HASH hash function. Do not change this function; you will
220 cause invalid hash tables to be generated. */
223 bfd_elf_gnu_hash (const char *namearg
)
225 const unsigned char *name
= (const unsigned char *) namearg
;
226 unsigned long h
= 5381;
229 while ((ch
= *name
++) != '\0')
230 h
= (h
<< 5) + h
+ ch
;
231 return h
& 0xffffffff;
234 /* Create a tdata field OBJECT_SIZE bytes in length, zeroed out and with
235 the object_id field of an elf_obj_tdata field set to OBJECT_ID. */
237 bfd_elf_allocate_object (bfd
*abfd
,
239 enum elf_target_id object_id
)
241 BFD_ASSERT (object_size
>= sizeof (struct elf_obj_tdata
));
242 abfd
->tdata
.any
= bfd_zalloc (abfd
, object_size
);
243 if (abfd
->tdata
.any
== NULL
)
246 elf_object_id (abfd
) = object_id
;
247 elf_program_header_size (abfd
) = (bfd_size_type
) -1;
253 bfd_elf_make_generic_object (bfd
*abfd
)
255 return bfd_elf_allocate_object (abfd
, sizeof (struct elf_obj_tdata
),
260 bfd_elf_mkcorefile (bfd
*abfd
)
262 /* I think this can be done just like an object file. */
263 return bfd_elf_make_generic_object (abfd
);
267 bfd_elf_get_str_section (bfd
*abfd
, unsigned int shindex
)
269 Elf_Internal_Shdr
**i_shdrp
;
270 bfd_byte
*shstrtab
= NULL
;
272 bfd_size_type shstrtabsize
;
274 i_shdrp
= elf_elfsections (abfd
);
276 || shindex
>= elf_numsections (abfd
)
277 || i_shdrp
[shindex
] == 0)
280 shstrtab
= i_shdrp
[shindex
]->contents
;
281 if (shstrtab
== NULL
)
283 /* No cached one, attempt to read, and cache what we read. */
284 offset
= i_shdrp
[shindex
]->sh_offset
;
285 shstrtabsize
= i_shdrp
[shindex
]->sh_size
;
287 /* Allocate and clear an extra byte at the end, to prevent crashes
288 in case the string table is not terminated. */
289 if (shstrtabsize
+ 1 <= 1
290 || (shstrtab
= (bfd_byte
*) bfd_alloc (abfd
, shstrtabsize
+ 1)) == NULL
291 || bfd_seek (abfd
, offset
, SEEK_SET
) != 0)
293 else if (bfd_bread (shstrtab
, shstrtabsize
, abfd
) != shstrtabsize
)
295 if (bfd_get_error () != bfd_error_system_call
)
296 bfd_set_error (bfd_error_file_truncated
);
298 /* Once we've failed to read it, make sure we don't keep
299 trying. Otherwise, we'll keep allocating space for
300 the string table over and over. */
301 i_shdrp
[shindex
]->sh_size
= 0;
304 shstrtab
[shstrtabsize
] = '\0';
305 i_shdrp
[shindex
]->contents
= shstrtab
;
307 return (char *) shstrtab
;
311 bfd_elf_string_from_elf_section (bfd
*abfd
,
312 unsigned int shindex
,
313 unsigned int strindex
)
315 Elf_Internal_Shdr
*hdr
;
320 if (elf_elfsections (abfd
) == NULL
|| shindex
>= elf_numsections (abfd
))
323 hdr
= elf_elfsections (abfd
)[shindex
];
325 if (hdr
->contents
== NULL
326 && bfd_elf_get_str_section (abfd
, shindex
) == NULL
)
329 if (strindex
>= hdr
->sh_size
)
331 unsigned int shstrndx
= elf_elfheader(abfd
)->e_shstrndx
;
332 (*_bfd_error_handler
)
333 (_("%B: invalid string offset %u >= %lu for section `%s'"),
334 abfd
, strindex
, (unsigned long) hdr
->sh_size
,
335 (shindex
== shstrndx
&& strindex
== hdr
->sh_name
337 : bfd_elf_string_from_elf_section (abfd
, shstrndx
, hdr
->sh_name
)));
341 return ((char *) hdr
->contents
) + strindex
;
344 /* Read and convert symbols to internal format.
345 SYMCOUNT specifies the number of symbols to read, starting from
346 symbol SYMOFFSET. If any of INTSYM_BUF, EXTSYM_BUF or EXTSHNDX_BUF
347 are non-NULL, they are used to store the internal symbols, external
348 symbols, and symbol section index extensions, respectively.
349 Returns a pointer to the internal symbol buffer (malloced if necessary)
350 or NULL if there were no symbols or some kind of problem. */
353 bfd_elf_get_elf_syms (bfd
*ibfd
,
354 Elf_Internal_Shdr
*symtab_hdr
,
357 Elf_Internal_Sym
*intsym_buf
,
359 Elf_External_Sym_Shndx
*extshndx_buf
)
361 Elf_Internal_Shdr
*shndx_hdr
;
363 const bfd_byte
*esym
;
364 Elf_External_Sym_Shndx
*alloc_extshndx
;
365 Elf_External_Sym_Shndx
*shndx
;
366 Elf_Internal_Sym
*alloc_intsym
;
367 Elf_Internal_Sym
*isym
;
368 Elf_Internal_Sym
*isymend
;
369 const struct elf_backend_data
*bed
;
374 if (bfd_get_flavour (ibfd
) != bfd_target_elf_flavour
)
380 /* Normal syms might have section extension entries. */
382 if (symtab_hdr
== &elf_tdata (ibfd
)->symtab_hdr
)
383 shndx_hdr
= &elf_tdata (ibfd
)->symtab_shndx_hdr
;
385 /* Read the symbols. */
387 alloc_extshndx
= NULL
;
389 bed
= get_elf_backend_data (ibfd
);
390 extsym_size
= bed
->s
->sizeof_sym
;
391 amt
= symcount
* extsym_size
;
392 pos
= symtab_hdr
->sh_offset
+ symoffset
* extsym_size
;
393 if (extsym_buf
== NULL
)
395 alloc_ext
= bfd_malloc2 (symcount
, extsym_size
);
396 extsym_buf
= alloc_ext
;
398 if (extsym_buf
== NULL
399 || bfd_seek (ibfd
, pos
, SEEK_SET
) != 0
400 || bfd_bread (extsym_buf
, amt
, ibfd
) != amt
)
406 if (shndx_hdr
== NULL
|| shndx_hdr
->sh_size
== 0)
410 amt
= symcount
* sizeof (Elf_External_Sym_Shndx
);
411 pos
= shndx_hdr
->sh_offset
+ symoffset
* sizeof (Elf_External_Sym_Shndx
);
412 if (extshndx_buf
== NULL
)
414 alloc_extshndx
= (Elf_External_Sym_Shndx
*)
415 bfd_malloc2 (symcount
, sizeof (Elf_External_Sym_Shndx
));
416 extshndx_buf
= alloc_extshndx
;
418 if (extshndx_buf
== NULL
419 || bfd_seek (ibfd
, pos
, SEEK_SET
) != 0
420 || bfd_bread (extshndx_buf
, amt
, ibfd
) != amt
)
427 if (intsym_buf
== NULL
)
429 alloc_intsym
= (Elf_Internal_Sym
*)
430 bfd_malloc2 (symcount
, sizeof (Elf_Internal_Sym
));
431 intsym_buf
= alloc_intsym
;
432 if (intsym_buf
== NULL
)
436 /* Convert the symbols to internal form. */
437 isymend
= intsym_buf
+ symcount
;
438 for (esym
= (const bfd_byte
*) extsym_buf
, isym
= intsym_buf
,
439 shndx
= extshndx_buf
;
441 esym
+= extsym_size
, isym
++, shndx
= shndx
!= NULL
? shndx
+ 1 : NULL
)
442 if (!(*bed
->s
->swap_symbol_in
) (ibfd
, esym
, shndx
, isym
))
444 symoffset
+= (esym
- (bfd_byte
*) extsym_buf
) / extsym_size
;
445 (*_bfd_error_handler
) (_("%B symbol number %lu references "
446 "nonexistent SHT_SYMTAB_SHNDX section"),
447 ibfd
, (unsigned long) symoffset
);
448 if (alloc_intsym
!= NULL
)
455 if (alloc_ext
!= NULL
)
457 if (alloc_extshndx
!= NULL
)
458 free (alloc_extshndx
);
463 /* Look up a symbol name. */
465 bfd_elf_sym_name (bfd
*abfd
,
466 Elf_Internal_Shdr
*symtab_hdr
,
467 Elf_Internal_Sym
*isym
,
471 unsigned int iname
= isym
->st_name
;
472 unsigned int shindex
= symtab_hdr
->sh_link
;
474 if (iname
== 0 && ELF_ST_TYPE (isym
->st_info
) == STT_SECTION
475 /* Check for a bogus st_shndx to avoid crashing. */
476 && isym
->st_shndx
< elf_numsections (abfd
))
478 iname
= elf_elfsections (abfd
)[isym
->st_shndx
]->sh_name
;
479 shindex
= elf_elfheader (abfd
)->e_shstrndx
;
482 name
= bfd_elf_string_from_elf_section (abfd
, shindex
, iname
);
485 else if (sym_sec
&& *name
== '\0')
486 name
= bfd_section_name (abfd
, sym_sec
);
491 /* Elf_Internal_Shdr->contents is an array of these for SHT_GROUP
492 sections. The first element is the flags, the rest are section
495 typedef union elf_internal_group
{
496 Elf_Internal_Shdr
*shdr
;
498 } Elf_Internal_Group
;
500 /* Return the name of the group signature symbol. Why isn't the
501 signature just a string? */
504 group_signature (bfd
*abfd
, Elf_Internal_Shdr
*ghdr
)
506 Elf_Internal_Shdr
*hdr
;
507 unsigned char esym
[sizeof (Elf64_External_Sym
)];
508 Elf_External_Sym_Shndx eshndx
;
509 Elf_Internal_Sym isym
;
511 /* First we need to ensure the symbol table is available. Make sure
512 that it is a symbol table section. */
513 if (ghdr
->sh_link
>= elf_numsections (abfd
))
515 hdr
= elf_elfsections (abfd
) [ghdr
->sh_link
];
516 if (hdr
->sh_type
!= SHT_SYMTAB
517 || ! bfd_section_from_shdr (abfd
, ghdr
->sh_link
))
520 /* Go read the symbol. */
521 hdr
= &elf_tdata (abfd
)->symtab_hdr
;
522 if (bfd_elf_get_elf_syms (abfd
, hdr
, 1, ghdr
->sh_info
,
523 &isym
, esym
, &eshndx
) == NULL
)
526 return bfd_elf_sym_name (abfd
, hdr
, &isym
, NULL
);
529 /* Set next_in_group list pointer, and group name for NEWSECT. */
532 setup_group (bfd
*abfd
, Elf_Internal_Shdr
*hdr
, asection
*newsect
)
534 unsigned int num_group
= elf_tdata (abfd
)->num_group
;
536 /* If num_group is zero, read in all SHT_GROUP sections. The count
537 is set to -1 if there are no SHT_GROUP sections. */
540 unsigned int i
, shnum
;
542 /* First count the number of groups. If we have a SHT_GROUP
543 section with just a flag word (ie. sh_size is 4), ignore it. */
544 shnum
= elf_numsections (abfd
);
547 #define IS_VALID_GROUP_SECTION_HEADER(shdr) \
548 ( (shdr)->sh_type == SHT_GROUP \
549 && (shdr)->sh_size >= (2 * GRP_ENTRY_SIZE) \
550 && (shdr)->sh_entsize == GRP_ENTRY_SIZE \
551 && ((shdr)->sh_size % GRP_ENTRY_SIZE) == 0)
553 for (i
= 0; i
< shnum
; i
++)
555 Elf_Internal_Shdr
*shdr
= elf_elfsections (abfd
)[i
];
557 if (IS_VALID_GROUP_SECTION_HEADER (shdr
))
563 num_group
= (unsigned) -1;
564 elf_tdata (abfd
)->num_group
= num_group
;
568 /* We keep a list of elf section headers for group sections,
569 so we can find them quickly. */
572 elf_tdata (abfd
)->num_group
= num_group
;
573 elf_tdata (abfd
)->group_sect_ptr
= (Elf_Internal_Shdr
**)
574 bfd_alloc2 (abfd
, num_group
, sizeof (Elf_Internal_Shdr
*));
575 if (elf_tdata (abfd
)->group_sect_ptr
== NULL
)
579 for (i
= 0; i
< shnum
; i
++)
581 Elf_Internal_Shdr
*shdr
= elf_elfsections (abfd
)[i
];
583 if (IS_VALID_GROUP_SECTION_HEADER (shdr
))
586 Elf_Internal_Group
*dest
;
588 /* Add to list of sections. */
589 elf_tdata (abfd
)->group_sect_ptr
[num_group
] = shdr
;
592 /* Read the raw contents. */
593 BFD_ASSERT (sizeof (*dest
) >= 4);
594 amt
= shdr
->sh_size
* sizeof (*dest
) / 4;
595 shdr
->contents
= (unsigned char *)
596 bfd_alloc2 (abfd
, shdr
->sh_size
, sizeof (*dest
) / 4);
597 /* PR binutils/4110: Handle corrupt group headers. */
598 if (shdr
->contents
== NULL
)
601 (_("%B: Corrupt size field in group section header: 0x%lx"), abfd
, shdr
->sh_size
);
602 bfd_set_error (bfd_error_bad_value
);
606 memset (shdr
->contents
, 0, amt
);
608 if (bfd_seek (abfd
, shdr
->sh_offset
, SEEK_SET
) != 0
609 || (bfd_bread (shdr
->contents
, shdr
->sh_size
, abfd
)
613 /* Translate raw contents, a flag word followed by an
614 array of elf section indices all in target byte order,
615 to the flag word followed by an array of elf section
617 src
= shdr
->contents
+ shdr
->sh_size
;
618 dest
= (Elf_Internal_Group
*) (shdr
->contents
+ amt
);
625 idx
= H_GET_32 (abfd
, src
);
626 if (src
== shdr
->contents
)
629 if (shdr
->bfd_section
!= NULL
&& (idx
& GRP_COMDAT
))
630 shdr
->bfd_section
->flags
631 |= SEC_LINK_ONCE
| SEC_LINK_DUPLICATES_DISCARD
;
636 ((*_bfd_error_handler
)
637 (_("%B: invalid SHT_GROUP entry"), abfd
));
640 dest
->shdr
= elf_elfsections (abfd
)[idx
];
647 if (num_group
!= (unsigned) -1)
651 for (i
= 0; i
< num_group
; i
++)
653 Elf_Internal_Shdr
*shdr
= elf_tdata (abfd
)->group_sect_ptr
[i
];
654 Elf_Internal_Group
*idx
= (Elf_Internal_Group
*) shdr
->contents
;
655 unsigned int n_elt
= shdr
->sh_size
/ 4;
657 /* Look through this group's sections to see if current
658 section is a member. */
660 if ((++idx
)->shdr
== hdr
)
664 /* We are a member of this group. Go looking through
665 other members to see if any others are linked via
667 idx
= (Elf_Internal_Group
*) shdr
->contents
;
668 n_elt
= shdr
->sh_size
/ 4;
670 if ((s
= (++idx
)->shdr
->bfd_section
) != NULL
671 && elf_next_in_group (s
) != NULL
)
675 /* Snarf the group name from other member, and
676 insert current section in circular list. */
677 elf_group_name (newsect
) = elf_group_name (s
);
678 elf_next_in_group (newsect
) = elf_next_in_group (s
);
679 elf_next_in_group (s
) = newsect
;
685 gname
= group_signature (abfd
, shdr
);
688 elf_group_name (newsect
) = gname
;
690 /* Start a circular list with one element. */
691 elf_next_in_group (newsect
) = newsect
;
694 /* If the group section has been created, point to the
696 if (shdr
->bfd_section
!= NULL
)
697 elf_next_in_group (shdr
->bfd_section
) = newsect
;
705 if (elf_group_name (newsect
) == NULL
)
707 (*_bfd_error_handler
) (_("%B: no group info for section %A"),
714 _bfd_elf_setup_sections (bfd
*abfd
)
717 unsigned int num_group
= elf_tdata (abfd
)->num_group
;
718 bfd_boolean result
= TRUE
;
721 /* Process SHF_LINK_ORDER. */
722 for (s
= abfd
->sections
; s
!= NULL
; s
= s
->next
)
724 Elf_Internal_Shdr
*this_hdr
= &elf_section_data (s
)->this_hdr
;
725 if ((this_hdr
->sh_flags
& SHF_LINK_ORDER
) != 0)
727 unsigned int elfsec
= this_hdr
->sh_link
;
728 /* FIXME: The old Intel compiler and old strip/objcopy may
729 not set the sh_link or sh_info fields. Hence we could
730 get the situation where elfsec is 0. */
733 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
734 if (bed
->link_order_error_handler
)
735 bed
->link_order_error_handler
736 (_("%B: warning: sh_link not set for section `%A'"),
741 asection
*linksec
= NULL
;
743 if (elfsec
< elf_numsections (abfd
))
745 this_hdr
= elf_elfsections (abfd
)[elfsec
];
746 linksec
= this_hdr
->bfd_section
;
750 Some strip/objcopy may leave an incorrect value in
751 sh_link. We don't want to proceed. */
754 (*_bfd_error_handler
)
755 (_("%B: sh_link [%d] in section `%A' is incorrect"),
756 s
->owner
, s
, elfsec
);
760 elf_linked_to_section (s
) = linksec
;
765 /* Process section groups. */
766 if (num_group
== (unsigned) -1)
769 for (i
= 0; i
< num_group
; i
++)
771 Elf_Internal_Shdr
*shdr
= elf_tdata (abfd
)->group_sect_ptr
[i
];
772 Elf_Internal_Group
*idx
= (Elf_Internal_Group
*) shdr
->contents
;
773 unsigned int n_elt
= shdr
->sh_size
/ 4;
776 if ((++idx
)->shdr
->bfd_section
)
777 elf_sec_group (idx
->shdr
->bfd_section
) = shdr
->bfd_section
;
778 else if (idx
->shdr
->sh_type
== SHT_RELA
779 || idx
->shdr
->sh_type
== SHT_REL
)
780 /* We won't include relocation sections in section groups in
781 output object files. We adjust the group section size here
782 so that relocatable link will work correctly when
783 relocation sections are in section group in input object
785 shdr
->bfd_section
->size
-= 4;
788 /* There are some unknown sections in the group. */
789 (*_bfd_error_handler
)
790 (_("%B: unknown [%d] section `%s' in group [%s]"),
792 (unsigned int) idx
->shdr
->sh_type
,
793 bfd_elf_string_from_elf_section (abfd
,
794 (elf_elfheader (abfd
)
797 shdr
->bfd_section
->name
);
805 bfd_elf_is_group_section (bfd
*abfd ATTRIBUTE_UNUSED
, const asection
*sec
)
807 return elf_next_in_group (sec
) != NULL
;
810 /* Make a BFD section from an ELF section. We store a pointer to the
811 BFD section in the bfd_section field of the header. */
814 _bfd_elf_make_section_from_shdr (bfd
*abfd
,
815 Elf_Internal_Shdr
*hdr
,
821 const struct elf_backend_data
*bed
;
823 if (hdr
->bfd_section
!= NULL
)
825 BFD_ASSERT (strcmp (name
,
826 bfd_get_section_name (abfd
, hdr
->bfd_section
)) == 0);
830 newsect
= bfd_make_section_anyway (abfd
, name
);
834 hdr
->bfd_section
= newsect
;
835 elf_section_data (newsect
)->this_hdr
= *hdr
;
836 elf_section_data (newsect
)->this_idx
= shindex
;
838 /* Always use the real type/flags. */
839 elf_section_type (newsect
) = hdr
->sh_type
;
840 elf_section_flags (newsect
) = hdr
->sh_flags
;
842 newsect
->filepos
= hdr
->sh_offset
;
844 if (! bfd_set_section_vma (abfd
, newsect
, hdr
->sh_addr
)
845 || ! bfd_set_section_size (abfd
, newsect
, hdr
->sh_size
)
846 || ! bfd_set_section_alignment (abfd
, newsect
,
847 bfd_log2 (hdr
->sh_addralign
)))
850 flags
= SEC_NO_FLAGS
;
851 if (hdr
->sh_type
!= SHT_NOBITS
)
852 flags
|= SEC_HAS_CONTENTS
;
853 if (hdr
->sh_type
== SHT_GROUP
)
854 flags
|= SEC_GROUP
| SEC_EXCLUDE
;
855 if ((hdr
->sh_flags
& SHF_ALLOC
) != 0)
858 if (hdr
->sh_type
!= SHT_NOBITS
)
861 if ((hdr
->sh_flags
& SHF_WRITE
) == 0)
862 flags
|= SEC_READONLY
;
863 if ((hdr
->sh_flags
& SHF_EXECINSTR
) != 0)
865 else if ((flags
& SEC_LOAD
) != 0)
867 if ((hdr
->sh_flags
& SHF_MERGE
) != 0)
870 newsect
->entsize
= hdr
->sh_entsize
;
871 if ((hdr
->sh_flags
& SHF_STRINGS
) != 0)
872 flags
|= SEC_STRINGS
;
874 if (hdr
->sh_flags
& SHF_GROUP
)
875 if (!setup_group (abfd
, hdr
, newsect
))
877 if ((hdr
->sh_flags
& SHF_TLS
) != 0)
878 flags
|= SEC_THREAD_LOCAL
;
880 if ((flags
& SEC_ALLOC
) == 0)
882 /* The debugging sections appear to be recognized only by name,
883 not any sort of flag. Their SEC_ALLOC bits are cleared. */
888 } debug_sections
[] =
890 { STRING_COMMA_LEN ("debug") }, /* 'd' */
891 { NULL
, 0 }, /* 'e' */
892 { NULL
, 0 }, /* 'f' */
893 { STRING_COMMA_LEN ("gnu.linkonce.wi.") }, /* 'g' */
894 { NULL
, 0 }, /* 'h' */
895 { NULL
, 0 }, /* 'i' */
896 { NULL
, 0 }, /* 'j' */
897 { NULL
, 0 }, /* 'k' */
898 { STRING_COMMA_LEN ("line") }, /* 'l' */
899 { NULL
, 0 }, /* 'm' */
900 { NULL
, 0 }, /* 'n' */
901 { NULL
, 0 }, /* 'o' */
902 { NULL
, 0 }, /* 'p' */
903 { NULL
, 0 }, /* 'q' */
904 { NULL
, 0 }, /* 'r' */
905 { STRING_COMMA_LEN ("stab") }, /* 's' */
906 { NULL
, 0 }, /* 't' */
907 { NULL
, 0 }, /* 'u' */
908 { NULL
, 0 }, /* 'v' */
909 { NULL
, 0 }, /* 'w' */
910 { NULL
, 0 }, /* 'x' */
911 { NULL
, 0 }, /* 'y' */
912 { STRING_COMMA_LEN ("zdebug") } /* 'z' */
917 int i
= name
[1] - 'd';
919 && i
< (int) ARRAY_SIZE (debug_sections
)
920 && debug_sections
[i
].name
!= NULL
921 && strncmp (&name
[1], debug_sections
[i
].name
,
922 debug_sections
[i
].len
) == 0)
923 flags
|= SEC_DEBUGGING
;
927 /* As a GNU extension, if the name begins with .gnu.linkonce, we
928 only link a single copy of the section. This is used to support
929 g++. g++ will emit each template expansion in its own section.
930 The symbols will be defined as weak, so that multiple definitions
931 are permitted. The GNU linker extension is to actually discard
932 all but one of the sections. */
933 if (CONST_STRNEQ (name
, ".gnu.linkonce")
934 && elf_next_in_group (newsect
) == NULL
)
935 flags
|= SEC_LINK_ONCE
| SEC_LINK_DUPLICATES_DISCARD
;
937 bed
= get_elf_backend_data (abfd
);
938 if (bed
->elf_backend_section_flags
)
939 if (! bed
->elf_backend_section_flags (&flags
, hdr
))
942 if (! bfd_set_section_flags (abfd
, newsect
, flags
))
945 /* We do not parse the PT_NOTE segments as we are interested even in the
946 separate debug info files which may have the segments offsets corrupted.
947 PT_NOTEs from the core files are currently not parsed using BFD. */
948 if (hdr
->sh_type
== SHT_NOTE
)
952 if (!bfd_malloc_and_get_section (abfd
, newsect
, &contents
))
955 elf_parse_notes (abfd
, (char *) contents
, hdr
->sh_size
, -1);
959 if ((flags
& SEC_ALLOC
) != 0)
961 Elf_Internal_Phdr
*phdr
;
962 unsigned int i
, nload
;
964 /* Some ELF linkers produce binaries with all the program header
965 p_paddr fields zero. If we have such a binary with more than
966 one PT_LOAD header, then leave the section lma equal to vma
967 so that we don't create sections with overlapping lma. */
968 phdr
= elf_tdata (abfd
)->phdr
;
969 for (nload
= 0, i
= 0; i
< elf_elfheader (abfd
)->e_phnum
; i
++, phdr
++)
970 if (phdr
->p_paddr
!= 0)
972 else if (phdr
->p_type
== PT_LOAD
&& phdr
->p_memsz
!= 0)
974 if (i
>= elf_elfheader (abfd
)->e_phnum
&& nload
> 1)
977 phdr
= elf_tdata (abfd
)->phdr
;
978 for (i
= 0; i
< elf_elfheader (abfd
)->e_phnum
; i
++, phdr
++)
980 if (phdr
->p_type
== PT_LOAD
981 && ELF_SECTION_IN_SEGMENT (hdr
, phdr
))
983 if ((flags
& SEC_LOAD
) == 0)
984 newsect
->lma
= (phdr
->p_paddr
985 + hdr
->sh_addr
- phdr
->p_vaddr
);
987 /* We used to use the same adjustment for SEC_LOAD
988 sections, but that doesn't work if the segment
989 is packed with code from multiple VMAs.
990 Instead we calculate the section LMA based on
991 the segment LMA. It is assumed that the
992 segment will contain sections with contiguous
993 LMAs, even if the VMAs are not. */
994 newsect
->lma
= (phdr
->p_paddr
995 + hdr
->sh_offset
- phdr
->p_offset
);
997 /* With contiguous segments, we can't tell from file
998 offsets whether a section with zero size should
999 be placed at the end of one segment or the
1000 beginning of the next. Decide based on vaddr. */
1001 if (hdr
->sh_addr
>= phdr
->p_vaddr
1002 && (hdr
->sh_addr
+ hdr
->sh_size
1003 <= phdr
->p_vaddr
+ phdr
->p_memsz
))
1012 const char *const bfd_elf_section_type_names
[] = {
1013 "SHT_NULL", "SHT_PROGBITS", "SHT_SYMTAB", "SHT_STRTAB",
1014 "SHT_RELA", "SHT_HASH", "SHT_DYNAMIC", "SHT_NOTE",
1015 "SHT_NOBITS", "SHT_REL", "SHT_SHLIB", "SHT_DYNSYM",
1018 /* ELF relocs are against symbols. If we are producing relocatable
1019 output, and the reloc is against an external symbol, and nothing
1020 has given us any additional addend, the resulting reloc will also
1021 be against the same symbol. In such a case, we don't want to
1022 change anything about the way the reloc is handled, since it will
1023 all be done at final link time. Rather than put special case code
1024 into bfd_perform_relocation, all the reloc types use this howto
1025 function. It just short circuits the reloc if producing
1026 relocatable output against an external symbol. */
1028 bfd_reloc_status_type
1029 bfd_elf_generic_reloc (bfd
*abfd ATTRIBUTE_UNUSED
,
1030 arelent
*reloc_entry
,
1032 void *data ATTRIBUTE_UNUSED
,
1033 asection
*input_section
,
1035 char **error_message ATTRIBUTE_UNUSED
)
1037 if (output_bfd
!= NULL
1038 && (symbol
->flags
& BSF_SECTION_SYM
) == 0
1039 && (! reloc_entry
->howto
->partial_inplace
1040 || reloc_entry
->addend
== 0))
1042 reloc_entry
->address
+= input_section
->output_offset
;
1043 return bfd_reloc_ok
;
1046 return bfd_reloc_continue
;
1049 /* Copy the program header and other data from one object module to
1053 _bfd_elf_copy_private_bfd_data (bfd
*ibfd
, bfd
*obfd
)
1055 if (bfd_get_flavour (ibfd
) != bfd_target_elf_flavour
1056 || bfd_get_flavour (obfd
) != bfd_target_elf_flavour
)
1059 BFD_ASSERT (!elf_flags_init (obfd
)
1060 || (elf_elfheader (obfd
)->e_flags
1061 == elf_elfheader (ibfd
)->e_flags
));
1063 elf_gp (obfd
) = elf_gp (ibfd
);
1064 elf_elfheader (obfd
)->e_flags
= elf_elfheader (ibfd
)->e_flags
;
1065 elf_flags_init (obfd
) = TRUE
;
1067 /* Copy object attributes. */
1068 _bfd_elf_copy_obj_attributes (ibfd
, obfd
);
1073 get_segment_type (unsigned int p_type
)
1078 case PT_NULL
: pt
= "NULL"; break;
1079 case PT_LOAD
: pt
= "LOAD"; break;
1080 case PT_DYNAMIC
: pt
= "DYNAMIC"; break;
1081 case PT_INTERP
: pt
= "INTERP"; break;
1082 case PT_NOTE
: pt
= "NOTE"; break;
1083 case PT_SHLIB
: pt
= "SHLIB"; break;
1084 case PT_PHDR
: pt
= "PHDR"; break;
1085 case PT_TLS
: pt
= "TLS"; break;
1086 case PT_GNU_EH_FRAME
: pt
= "EH_FRAME"; break;
1087 case PT_GNU_STACK
: pt
= "STACK"; break;
1088 case PT_GNU_RELRO
: pt
= "RELRO"; break;
1089 default: pt
= NULL
; break;
1094 /* Print out the program headers. */
1097 _bfd_elf_print_private_bfd_data (bfd
*abfd
, void *farg
)
1099 FILE *f
= (FILE *) farg
;
1100 Elf_Internal_Phdr
*p
;
1102 bfd_byte
*dynbuf
= NULL
;
1104 p
= elf_tdata (abfd
)->phdr
;
1109 fprintf (f
, _("\nProgram Header:\n"));
1110 c
= elf_elfheader (abfd
)->e_phnum
;
1111 for (i
= 0; i
< c
; i
++, p
++)
1113 const char *pt
= get_segment_type (p
->p_type
);
1118 sprintf (buf
, "0x%lx", p
->p_type
);
1121 fprintf (f
, "%8s off 0x", pt
);
1122 bfd_fprintf_vma (abfd
, f
, p
->p_offset
);
1123 fprintf (f
, " vaddr 0x");
1124 bfd_fprintf_vma (abfd
, f
, p
->p_vaddr
);
1125 fprintf (f
, " paddr 0x");
1126 bfd_fprintf_vma (abfd
, f
, p
->p_paddr
);
1127 fprintf (f
, " align 2**%u\n", bfd_log2 (p
->p_align
));
1128 fprintf (f
, " filesz 0x");
1129 bfd_fprintf_vma (abfd
, f
, p
->p_filesz
);
1130 fprintf (f
, " memsz 0x");
1131 bfd_fprintf_vma (abfd
, f
, p
->p_memsz
);
1132 fprintf (f
, " flags %c%c%c",
1133 (p
->p_flags
& PF_R
) != 0 ? 'r' : '-',
1134 (p
->p_flags
& PF_W
) != 0 ? 'w' : '-',
1135 (p
->p_flags
& PF_X
) != 0 ? 'x' : '-');
1136 if ((p
->p_flags
&~ (unsigned) (PF_R
| PF_W
| PF_X
)) != 0)
1137 fprintf (f
, " %lx", p
->p_flags
&~ (unsigned) (PF_R
| PF_W
| PF_X
));
1142 s
= bfd_get_section_by_name (abfd
, ".dynamic");
1145 unsigned int elfsec
;
1146 unsigned long shlink
;
1147 bfd_byte
*extdyn
, *extdynend
;
1149 void (*swap_dyn_in
) (bfd
*, const void *, Elf_Internal_Dyn
*);
1151 fprintf (f
, _("\nDynamic Section:\n"));
1153 if (!bfd_malloc_and_get_section (abfd
, s
, &dynbuf
))
1156 elfsec
= _bfd_elf_section_from_bfd_section (abfd
, s
);
1157 if (elfsec
== SHN_BAD
)
1159 shlink
= elf_elfsections (abfd
)[elfsec
]->sh_link
;
1161 extdynsize
= get_elf_backend_data (abfd
)->s
->sizeof_dyn
;
1162 swap_dyn_in
= get_elf_backend_data (abfd
)->s
->swap_dyn_in
;
1165 extdynend
= extdyn
+ s
->size
;
1166 for (; extdyn
< extdynend
; extdyn
+= extdynsize
)
1168 Elf_Internal_Dyn dyn
;
1169 const char *name
= "";
1171 bfd_boolean stringp
;
1172 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
1174 (*swap_dyn_in
) (abfd
, extdyn
, &dyn
);
1176 if (dyn
.d_tag
== DT_NULL
)
1183 if (bed
->elf_backend_get_target_dtag
)
1184 name
= (*bed
->elf_backend_get_target_dtag
) (dyn
.d_tag
);
1186 if (!strcmp (name
, ""))
1188 sprintf (ab
, "0x%lx", (unsigned long) dyn
.d_tag
);
1193 case DT_NEEDED
: name
= "NEEDED"; stringp
= TRUE
; break;
1194 case DT_PLTRELSZ
: name
= "PLTRELSZ"; break;
1195 case DT_PLTGOT
: name
= "PLTGOT"; break;
1196 case DT_HASH
: name
= "HASH"; break;
1197 case DT_STRTAB
: name
= "STRTAB"; break;
1198 case DT_SYMTAB
: name
= "SYMTAB"; break;
1199 case DT_RELA
: name
= "RELA"; break;
1200 case DT_RELASZ
: name
= "RELASZ"; break;
1201 case DT_RELAENT
: name
= "RELAENT"; break;
1202 case DT_STRSZ
: name
= "STRSZ"; break;
1203 case DT_SYMENT
: name
= "SYMENT"; break;
1204 case DT_INIT
: name
= "INIT"; break;
1205 case DT_FINI
: name
= "FINI"; break;
1206 case DT_SONAME
: name
= "SONAME"; stringp
= TRUE
; break;
1207 case DT_RPATH
: name
= "RPATH"; stringp
= TRUE
; break;
1208 case DT_SYMBOLIC
: name
= "SYMBOLIC"; break;
1209 case DT_REL
: name
= "REL"; break;
1210 case DT_RELSZ
: name
= "RELSZ"; break;
1211 case DT_RELENT
: name
= "RELENT"; break;
1212 case DT_PLTREL
: name
= "PLTREL"; break;
1213 case DT_DEBUG
: name
= "DEBUG"; break;
1214 case DT_TEXTREL
: name
= "TEXTREL"; break;
1215 case DT_JMPREL
: name
= "JMPREL"; break;
1216 case DT_BIND_NOW
: name
= "BIND_NOW"; break;
1217 case DT_INIT_ARRAY
: name
= "INIT_ARRAY"; break;
1218 case DT_FINI_ARRAY
: name
= "FINI_ARRAY"; break;
1219 case DT_INIT_ARRAYSZ
: name
= "INIT_ARRAYSZ"; break;
1220 case DT_FINI_ARRAYSZ
: name
= "FINI_ARRAYSZ"; break;
1221 case DT_RUNPATH
: name
= "RUNPATH"; stringp
= TRUE
; break;
1222 case DT_FLAGS
: name
= "FLAGS"; break;
1223 case DT_PREINIT_ARRAY
: name
= "PREINIT_ARRAY"; break;
1224 case DT_PREINIT_ARRAYSZ
: name
= "PREINIT_ARRAYSZ"; break;
1225 case DT_CHECKSUM
: name
= "CHECKSUM"; break;
1226 case DT_PLTPADSZ
: name
= "PLTPADSZ"; break;
1227 case DT_MOVEENT
: name
= "MOVEENT"; break;
1228 case DT_MOVESZ
: name
= "MOVESZ"; break;
1229 case DT_FEATURE
: name
= "FEATURE"; break;
1230 case DT_POSFLAG_1
: name
= "POSFLAG_1"; break;
1231 case DT_SYMINSZ
: name
= "SYMINSZ"; break;
1232 case DT_SYMINENT
: name
= "SYMINENT"; break;
1233 case DT_CONFIG
: name
= "CONFIG"; stringp
= TRUE
; break;
1234 case DT_DEPAUDIT
: name
= "DEPAUDIT"; stringp
= TRUE
; break;
1235 case DT_AUDIT
: name
= "AUDIT"; stringp
= TRUE
; break;
1236 case DT_PLTPAD
: name
= "PLTPAD"; break;
1237 case DT_MOVETAB
: name
= "MOVETAB"; break;
1238 case DT_SYMINFO
: name
= "SYMINFO"; break;
1239 case DT_RELACOUNT
: name
= "RELACOUNT"; break;
1240 case DT_RELCOUNT
: name
= "RELCOUNT"; break;
1241 case DT_FLAGS_1
: name
= "FLAGS_1"; break;
1242 case DT_VERSYM
: name
= "VERSYM"; break;
1243 case DT_VERDEF
: name
= "VERDEF"; break;
1244 case DT_VERDEFNUM
: name
= "VERDEFNUM"; break;
1245 case DT_VERNEED
: name
= "VERNEED"; break;
1246 case DT_VERNEEDNUM
: name
= "VERNEEDNUM"; break;
1247 case DT_AUXILIARY
: name
= "AUXILIARY"; stringp
= TRUE
; break;
1248 case DT_USED
: name
= "USED"; break;
1249 case DT_FILTER
: name
= "FILTER"; stringp
= TRUE
; break;
1250 case DT_GNU_HASH
: name
= "GNU_HASH"; break;
1253 fprintf (f
, " %-20s ", name
);
1257 bfd_fprintf_vma (abfd
, f
, dyn
.d_un
.d_val
);
1262 unsigned int tagv
= dyn
.d_un
.d_val
;
1264 string
= bfd_elf_string_from_elf_section (abfd
, shlink
, tagv
);
1267 fprintf (f
, "%s", string
);
1276 if ((elf_dynverdef (abfd
) != 0 && elf_tdata (abfd
)->verdef
== NULL
)
1277 || (elf_dynverref (abfd
) != 0 && elf_tdata (abfd
)->verref
== NULL
))
1279 if (! _bfd_elf_slurp_version_tables (abfd
, FALSE
))
1283 if (elf_dynverdef (abfd
) != 0)
1285 Elf_Internal_Verdef
*t
;
1287 fprintf (f
, _("\nVersion definitions:\n"));
1288 for (t
= elf_tdata (abfd
)->verdef
; t
!= NULL
; t
= t
->vd_nextdef
)
1290 fprintf (f
, "%d 0x%2.2x 0x%8.8lx %s\n", t
->vd_ndx
,
1291 t
->vd_flags
, t
->vd_hash
,
1292 t
->vd_nodename
? t
->vd_nodename
: "<corrupt>");
1293 if (t
->vd_auxptr
!= NULL
&& t
->vd_auxptr
->vda_nextptr
!= NULL
)
1295 Elf_Internal_Verdaux
*a
;
1298 for (a
= t
->vd_auxptr
->vda_nextptr
;
1302 a
->vda_nodename
? a
->vda_nodename
: "<corrupt>");
1308 if (elf_dynverref (abfd
) != 0)
1310 Elf_Internal_Verneed
*t
;
1312 fprintf (f
, _("\nVersion References:\n"));
1313 for (t
= elf_tdata (abfd
)->verref
; t
!= NULL
; t
= t
->vn_nextref
)
1315 Elf_Internal_Vernaux
*a
;
1317 fprintf (f
, _(" required from %s:\n"),
1318 t
->vn_filename
? t
->vn_filename
: "<corrupt>");
1319 for (a
= t
->vn_auxptr
; a
!= NULL
; a
= a
->vna_nextptr
)
1320 fprintf (f
, " 0x%8.8lx 0x%2.2x %2.2d %s\n", a
->vna_hash
,
1321 a
->vna_flags
, a
->vna_other
,
1322 a
->vna_nodename
? a
->vna_nodename
: "<corrupt>");
1334 /* Display ELF-specific fields of a symbol. */
1337 bfd_elf_print_symbol (bfd
*abfd
,
1340 bfd_print_symbol_type how
)
1342 FILE *file
= (FILE *) filep
;
1345 case bfd_print_symbol_name
:
1346 fprintf (file
, "%s", symbol
->name
);
1348 case bfd_print_symbol_more
:
1349 fprintf (file
, "elf ");
1350 bfd_fprintf_vma (abfd
, file
, symbol
->value
);
1351 fprintf (file
, " %lx", (unsigned long) symbol
->flags
);
1353 case bfd_print_symbol_all
:
1355 const char *section_name
;
1356 const char *name
= NULL
;
1357 const struct elf_backend_data
*bed
;
1358 unsigned char st_other
;
1361 section_name
= symbol
->section
? symbol
->section
->name
: "(*none*)";
1363 bed
= get_elf_backend_data (abfd
);
1364 if (bed
->elf_backend_print_symbol_all
)
1365 name
= (*bed
->elf_backend_print_symbol_all
) (abfd
, filep
, symbol
);
1369 name
= symbol
->name
;
1370 bfd_print_symbol_vandf (abfd
, file
, symbol
);
1373 fprintf (file
, " %s\t", section_name
);
1374 /* Print the "other" value for a symbol. For common symbols,
1375 we've already printed the size; now print the alignment.
1376 For other symbols, we have no specified alignment, and
1377 we've printed the address; now print the size. */
1378 if (symbol
->section
&& bfd_is_com_section (symbol
->section
))
1379 val
= ((elf_symbol_type
*) symbol
)->internal_elf_sym
.st_value
;
1381 val
= ((elf_symbol_type
*) symbol
)->internal_elf_sym
.st_size
;
1382 bfd_fprintf_vma (abfd
, file
, val
);
1384 /* If we have version information, print it. */
1385 if (elf_tdata (abfd
)->dynversym_section
!= 0
1386 && (elf_tdata (abfd
)->dynverdef_section
!= 0
1387 || elf_tdata (abfd
)->dynverref_section
!= 0))
1389 unsigned int vernum
;
1390 const char *version_string
;
1392 vernum
= ((elf_symbol_type
*) symbol
)->version
& VERSYM_VERSION
;
1395 version_string
= "";
1396 else if (vernum
== 1)
1397 version_string
= "Base";
1398 else if (vernum
<= elf_tdata (abfd
)->cverdefs
)
1400 elf_tdata (abfd
)->verdef
[vernum
- 1].vd_nodename
;
1403 Elf_Internal_Verneed
*t
;
1405 version_string
= "";
1406 for (t
= elf_tdata (abfd
)->verref
;
1410 Elf_Internal_Vernaux
*a
;
1412 for (a
= t
->vn_auxptr
; a
!= NULL
; a
= a
->vna_nextptr
)
1414 if (a
->vna_other
== vernum
)
1416 version_string
= a
->vna_nodename
;
1423 if ((((elf_symbol_type
*) symbol
)->version
& VERSYM_HIDDEN
) == 0)
1424 fprintf (file
, " %-11s", version_string
);
1429 fprintf (file
, " (%s)", version_string
);
1430 for (i
= 10 - strlen (version_string
); i
> 0; --i
)
1435 /* If the st_other field is not zero, print it. */
1436 st_other
= ((elf_symbol_type
*) symbol
)->internal_elf_sym
.st_other
;
1441 case STV_INTERNAL
: fprintf (file
, " .internal"); break;
1442 case STV_HIDDEN
: fprintf (file
, " .hidden"); break;
1443 case STV_PROTECTED
: fprintf (file
, " .protected"); break;
1445 /* Some other non-defined flags are also present, so print
1447 fprintf (file
, " 0x%02x", (unsigned int) st_other
);
1450 fprintf (file
, " %s", name
);
1456 /* Allocate an ELF string table--force the first byte to be zero. */
1458 struct bfd_strtab_hash
*
1459 _bfd_elf_stringtab_init (void)
1461 struct bfd_strtab_hash
*ret
;
1463 ret
= _bfd_stringtab_init ();
1468 loc
= _bfd_stringtab_add (ret
, "", TRUE
, FALSE
);
1469 BFD_ASSERT (loc
== 0 || loc
== (bfd_size_type
) -1);
1470 if (loc
== (bfd_size_type
) -1)
1472 _bfd_stringtab_free (ret
);
1479 /* ELF .o/exec file reading */
1481 /* Create a new bfd section from an ELF section header. */
1484 bfd_section_from_shdr (bfd
*abfd
, unsigned int shindex
)
1486 Elf_Internal_Shdr
*hdr
;
1487 Elf_Internal_Ehdr
*ehdr
;
1488 const struct elf_backend_data
*bed
;
1491 if (shindex
>= elf_numsections (abfd
))
1494 hdr
= elf_elfsections (abfd
)[shindex
];
1495 ehdr
= elf_elfheader (abfd
);
1496 name
= bfd_elf_string_from_elf_section (abfd
, ehdr
->e_shstrndx
,
1501 bed
= get_elf_backend_data (abfd
);
1502 switch (hdr
->sh_type
)
1505 /* Inactive section. Throw it away. */
1508 case SHT_PROGBITS
: /* Normal section with contents. */
1509 case SHT_NOBITS
: /* .bss section. */
1510 case SHT_HASH
: /* .hash section. */
1511 case SHT_NOTE
: /* .note section. */
1512 case SHT_INIT_ARRAY
: /* .init_array section. */
1513 case SHT_FINI_ARRAY
: /* .fini_array section. */
1514 case SHT_PREINIT_ARRAY
: /* .preinit_array section. */
1515 case SHT_GNU_LIBLIST
: /* .gnu.liblist section. */
1516 case SHT_GNU_HASH
: /* .gnu.hash section. */
1517 return _bfd_elf_make_section_from_shdr (abfd
, hdr
, name
, shindex
);
1519 case SHT_DYNAMIC
: /* Dynamic linking information. */
1520 if (! _bfd_elf_make_section_from_shdr (abfd
, hdr
, name
, shindex
))
1522 if (hdr
->sh_link
> elf_numsections (abfd
))
1524 /* PR 10478: Accept Solaris binaries with a sh_link
1525 field set to SHN_BEFORE or SHN_AFTER. */
1526 switch (bfd_get_arch (abfd
))
1529 case bfd_arch_sparc
:
1530 if (hdr
->sh_link
== (SHN_LORESERVE
& 0xffff) /* SHN_BEFORE */
1531 || hdr
->sh_link
== ((SHN_LORESERVE
+ 1) & 0xffff) /* SHN_AFTER */)
1533 /* Otherwise fall through. */
1538 else if (elf_elfsections (abfd
)[hdr
->sh_link
] == NULL
)
1540 else if (elf_elfsections (abfd
)[hdr
->sh_link
]->sh_type
!= SHT_STRTAB
)
1542 Elf_Internal_Shdr
*dynsymhdr
;
1544 /* The shared libraries distributed with hpux11 have a bogus
1545 sh_link field for the ".dynamic" section. Find the
1546 string table for the ".dynsym" section instead. */
1547 if (elf_dynsymtab (abfd
) != 0)
1549 dynsymhdr
= elf_elfsections (abfd
)[elf_dynsymtab (abfd
)];
1550 hdr
->sh_link
= dynsymhdr
->sh_link
;
1554 unsigned int i
, num_sec
;
1556 num_sec
= elf_numsections (abfd
);
1557 for (i
= 1; i
< num_sec
; i
++)
1559 dynsymhdr
= elf_elfsections (abfd
)[i
];
1560 if (dynsymhdr
->sh_type
== SHT_DYNSYM
)
1562 hdr
->sh_link
= dynsymhdr
->sh_link
;
1570 case SHT_SYMTAB
: /* A symbol table */
1571 if (elf_onesymtab (abfd
) == shindex
)
1574 if (hdr
->sh_entsize
!= bed
->s
->sizeof_sym
)
1576 if (hdr
->sh_info
* hdr
->sh_entsize
> hdr
->sh_size
)
1578 BFD_ASSERT (elf_onesymtab (abfd
) == 0);
1579 elf_onesymtab (abfd
) = shindex
;
1580 elf_tdata (abfd
)->symtab_hdr
= *hdr
;
1581 elf_elfsections (abfd
)[shindex
] = hdr
= &elf_tdata (abfd
)->symtab_hdr
;
1582 abfd
->flags
|= HAS_SYMS
;
1584 /* Sometimes a shared object will map in the symbol table. If
1585 SHF_ALLOC is set, and this is a shared object, then we also
1586 treat this section as a BFD section. We can not base the
1587 decision purely on SHF_ALLOC, because that flag is sometimes
1588 set in a relocatable object file, which would confuse the
1590 if ((hdr
->sh_flags
& SHF_ALLOC
) != 0
1591 && (abfd
->flags
& DYNAMIC
) != 0
1592 && ! _bfd_elf_make_section_from_shdr (abfd
, hdr
, name
,
1596 /* Go looking for SHT_SYMTAB_SHNDX too, since if there is one we
1597 can't read symbols without that section loaded as well. It
1598 is most likely specified by the next section header. */
1599 if (elf_elfsections (abfd
)[elf_symtab_shndx (abfd
)]->sh_link
!= shindex
)
1601 unsigned int i
, num_sec
;
1603 num_sec
= elf_numsections (abfd
);
1604 for (i
= shindex
+ 1; i
< num_sec
; i
++)
1606 Elf_Internal_Shdr
*hdr2
= elf_elfsections (abfd
)[i
];
1607 if (hdr2
->sh_type
== SHT_SYMTAB_SHNDX
1608 && hdr2
->sh_link
== shindex
)
1612 for (i
= 1; i
< shindex
; i
++)
1614 Elf_Internal_Shdr
*hdr2
= elf_elfsections (abfd
)[i
];
1615 if (hdr2
->sh_type
== SHT_SYMTAB_SHNDX
1616 && hdr2
->sh_link
== shindex
)
1620 return bfd_section_from_shdr (abfd
, i
);
1624 case SHT_DYNSYM
: /* A dynamic symbol table */
1625 if (elf_dynsymtab (abfd
) == shindex
)
1628 if (hdr
->sh_entsize
!= bed
->s
->sizeof_sym
)
1630 BFD_ASSERT (elf_dynsymtab (abfd
) == 0);
1631 elf_dynsymtab (abfd
) = shindex
;
1632 elf_tdata (abfd
)->dynsymtab_hdr
= *hdr
;
1633 elf_elfsections (abfd
)[shindex
] = hdr
= &elf_tdata (abfd
)->dynsymtab_hdr
;
1634 abfd
->flags
|= HAS_SYMS
;
1636 /* Besides being a symbol table, we also treat this as a regular
1637 section, so that objcopy can handle it. */
1638 return _bfd_elf_make_section_from_shdr (abfd
, hdr
, name
, shindex
);
1640 case SHT_SYMTAB_SHNDX
: /* Symbol section indices when >64k sections */
1641 if (elf_symtab_shndx (abfd
) == shindex
)
1644 BFD_ASSERT (elf_symtab_shndx (abfd
) == 0);
1645 elf_symtab_shndx (abfd
) = shindex
;
1646 elf_tdata (abfd
)->symtab_shndx_hdr
= *hdr
;
1647 elf_elfsections (abfd
)[shindex
] = &elf_tdata (abfd
)->symtab_shndx_hdr
;
1650 case SHT_STRTAB
: /* A string table */
1651 if (hdr
->bfd_section
!= NULL
)
1653 if (ehdr
->e_shstrndx
== shindex
)
1655 elf_tdata (abfd
)->shstrtab_hdr
= *hdr
;
1656 elf_elfsections (abfd
)[shindex
] = &elf_tdata (abfd
)->shstrtab_hdr
;
1659 if (elf_elfsections (abfd
)[elf_onesymtab (abfd
)]->sh_link
== shindex
)
1662 elf_tdata (abfd
)->strtab_hdr
= *hdr
;
1663 elf_elfsections (abfd
)[shindex
] = &elf_tdata (abfd
)->strtab_hdr
;
1666 if (elf_elfsections (abfd
)[elf_dynsymtab (abfd
)]->sh_link
== shindex
)
1669 elf_tdata (abfd
)->dynstrtab_hdr
= *hdr
;
1670 hdr
= &elf_tdata (abfd
)->dynstrtab_hdr
;
1671 elf_elfsections (abfd
)[shindex
] = hdr
;
1672 /* We also treat this as a regular section, so that objcopy
1674 return _bfd_elf_make_section_from_shdr (abfd
, hdr
, name
,
1678 /* If the string table isn't one of the above, then treat it as a
1679 regular section. We need to scan all the headers to be sure,
1680 just in case this strtab section appeared before the above. */
1681 if (elf_onesymtab (abfd
) == 0 || elf_dynsymtab (abfd
) == 0)
1683 unsigned int i
, num_sec
;
1685 num_sec
= elf_numsections (abfd
);
1686 for (i
= 1; i
< num_sec
; i
++)
1688 Elf_Internal_Shdr
*hdr2
= elf_elfsections (abfd
)[i
];
1689 if (hdr2
->sh_link
== shindex
)
1691 /* Prevent endless recursion on broken objects. */
1694 if (! bfd_section_from_shdr (abfd
, i
))
1696 if (elf_onesymtab (abfd
) == i
)
1698 if (elf_dynsymtab (abfd
) == i
)
1699 goto dynsymtab_strtab
;
1703 return _bfd_elf_make_section_from_shdr (abfd
, hdr
, name
, shindex
);
1707 /* *These* do a lot of work -- but build no sections! */
1709 asection
*target_sect
;
1710 Elf_Internal_Shdr
*hdr2
;
1711 unsigned int num_sec
= elf_numsections (abfd
);
1714 != (bfd_size_type
) (hdr
->sh_type
== SHT_REL
1715 ? bed
->s
->sizeof_rel
: bed
->s
->sizeof_rela
))
1718 /* Check for a bogus link to avoid crashing. */
1719 if (hdr
->sh_link
>= num_sec
)
1721 ((*_bfd_error_handler
)
1722 (_("%B: invalid link %lu for reloc section %s (index %u)"),
1723 abfd
, hdr
->sh_link
, name
, shindex
));
1724 return _bfd_elf_make_section_from_shdr (abfd
, hdr
, name
,
1728 /* For some incomprehensible reason Oracle distributes
1729 libraries for Solaris in which some of the objects have
1730 bogus sh_link fields. It would be nice if we could just
1731 reject them, but, unfortunately, some people need to use
1732 them. We scan through the section headers; if we find only
1733 one suitable symbol table, we clobber the sh_link to point
1734 to it. I hope this doesn't break anything.
1736 Don't do it on executable nor shared library. */
1737 if ((abfd
->flags
& (DYNAMIC
| EXEC_P
)) == 0
1738 && elf_elfsections (abfd
)[hdr
->sh_link
]->sh_type
!= SHT_SYMTAB
1739 && elf_elfsections (abfd
)[hdr
->sh_link
]->sh_type
!= SHT_DYNSYM
)
1745 for (scan
= 1; scan
< num_sec
; scan
++)
1747 if (elf_elfsections (abfd
)[scan
]->sh_type
== SHT_SYMTAB
1748 || elf_elfsections (abfd
)[scan
]->sh_type
== SHT_DYNSYM
)
1759 hdr
->sh_link
= found
;
1762 /* Get the symbol table. */
1763 if ((elf_elfsections (abfd
)[hdr
->sh_link
]->sh_type
== SHT_SYMTAB
1764 || elf_elfsections (abfd
)[hdr
->sh_link
]->sh_type
== SHT_DYNSYM
)
1765 && ! bfd_section_from_shdr (abfd
, hdr
->sh_link
))
1768 /* If this reloc section does not use the main symbol table we
1769 don't treat it as a reloc section. BFD can't adequately
1770 represent such a section, so at least for now, we don't
1771 try. We just present it as a normal section. We also
1772 can't use it as a reloc section if it points to the null
1773 section, an invalid section, another reloc section, or its
1774 sh_link points to the null section. */
1775 if (hdr
->sh_link
!= elf_onesymtab (abfd
)
1776 || hdr
->sh_link
== SHN_UNDEF
1777 || hdr
->sh_info
== SHN_UNDEF
1778 || hdr
->sh_info
>= num_sec
1779 || elf_elfsections (abfd
)[hdr
->sh_info
]->sh_type
== SHT_REL
1780 || elf_elfsections (abfd
)[hdr
->sh_info
]->sh_type
== SHT_RELA
)
1781 return _bfd_elf_make_section_from_shdr (abfd
, hdr
, name
,
1784 if (! bfd_section_from_shdr (abfd
, hdr
->sh_info
))
1786 target_sect
= bfd_section_from_elf_index (abfd
, hdr
->sh_info
);
1787 if (target_sect
== NULL
)
1790 if ((target_sect
->flags
& SEC_RELOC
) == 0
1791 || target_sect
->reloc_count
== 0)
1792 hdr2
= &elf_section_data (target_sect
)->rel_hdr
;
1796 BFD_ASSERT (elf_section_data (target_sect
)->rel_hdr2
== NULL
);
1797 amt
= sizeof (*hdr2
);
1798 hdr2
= (Elf_Internal_Shdr
*) bfd_alloc (abfd
, amt
);
1801 elf_section_data (target_sect
)->rel_hdr2
= hdr2
;
1804 elf_elfsections (abfd
)[shindex
] = hdr2
;
1805 target_sect
->reloc_count
+= NUM_SHDR_ENTRIES (hdr
);
1806 target_sect
->flags
|= SEC_RELOC
;
1807 target_sect
->relocation
= NULL
;
1808 target_sect
->rel_filepos
= hdr
->sh_offset
;
1809 /* In the section to which the relocations apply, mark whether
1810 its relocations are of the REL or RELA variety. */
1811 if (hdr
->sh_size
!= 0)
1812 target_sect
->use_rela_p
= hdr
->sh_type
== SHT_RELA
;
1813 abfd
->flags
|= HAS_RELOC
;
1817 case SHT_GNU_verdef
:
1818 elf_dynverdef (abfd
) = shindex
;
1819 elf_tdata (abfd
)->dynverdef_hdr
= *hdr
;
1820 return _bfd_elf_make_section_from_shdr (abfd
, hdr
, name
, shindex
);
1822 case SHT_GNU_versym
:
1823 if (hdr
->sh_entsize
!= sizeof (Elf_External_Versym
))
1825 elf_dynversym (abfd
) = shindex
;
1826 elf_tdata (abfd
)->dynversym_hdr
= *hdr
;
1827 return _bfd_elf_make_section_from_shdr (abfd
, hdr
, name
, shindex
);
1829 case SHT_GNU_verneed
:
1830 elf_dynverref (abfd
) = shindex
;
1831 elf_tdata (abfd
)->dynverref_hdr
= *hdr
;
1832 return _bfd_elf_make_section_from_shdr (abfd
, hdr
, name
, shindex
);
1838 if (! IS_VALID_GROUP_SECTION_HEADER (hdr
))
1840 if (!_bfd_elf_make_section_from_shdr (abfd
, hdr
, name
, shindex
))
1842 if (hdr
->contents
!= NULL
)
1844 Elf_Internal_Group
*idx
= (Elf_Internal_Group
*) hdr
->contents
;
1845 unsigned int n_elt
= hdr
->sh_size
/ GRP_ENTRY_SIZE
;
1848 if (idx
->flags
& GRP_COMDAT
)
1849 hdr
->bfd_section
->flags
1850 |= SEC_LINK_ONCE
| SEC_LINK_DUPLICATES_DISCARD
;
1852 /* We try to keep the same section order as it comes in. */
1854 while (--n_elt
!= 0)
1858 if (idx
->shdr
!= NULL
1859 && (s
= idx
->shdr
->bfd_section
) != NULL
1860 && elf_next_in_group (s
) != NULL
)
1862 elf_next_in_group (hdr
->bfd_section
) = s
;
1870 /* Possibly an attributes section. */
1871 if (hdr
->sh_type
== SHT_GNU_ATTRIBUTES
1872 || hdr
->sh_type
== bed
->obj_attrs_section_type
)
1874 if (! _bfd_elf_make_section_from_shdr (abfd
, hdr
, name
, shindex
))
1876 _bfd_elf_parse_attributes (abfd
, hdr
);
1880 /* Check for any processor-specific section types. */
1881 if (bed
->elf_backend_section_from_shdr (abfd
, hdr
, name
, shindex
))
1884 if (hdr
->sh_type
>= SHT_LOUSER
&& hdr
->sh_type
<= SHT_HIUSER
)
1886 if ((hdr
->sh_flags
& SHF_ALLOC
) != 0)
1887 /* FIXME: How to properly handle allocated section reserved
1888 for applications? */
1889 (*_bfd_error_handler
)
1890 (_("%B: don't know how to handle allocated, application "
1891 "specific section `%s' [0x%8x]"),
1892 abfd
, name
, hdr
->sh_type
);
1894 /* Allow sections reserved for applications. */
1895 return _bfd_elf_make_section_from_shdr (abfd
, hdr
, name
,
1898 else if (hdr
->sh_type
>= SHT_LOPROC
1899 && hdr
->sh_type
<= SHT_HIPROC
)
1900 /* FIXME: We should handle this section. */
1901 (*_bfd_error_handler
)
1902 (_("%B: don't know how to handle processor specific section "
1904 abfd
, name
, hdr
->sh_type
);
1905 else if (hdr
->sh_type
>= SHT_LOOS
&& hdr
->sh_type
<= SHT_HIOS
)
1907 /* Unrecognised OS-specific sections. */
1908 if ((hdr
->sh_flags
& SHF_OS_NONCONFORMING
) != 0)
1909 /* SHF_OS_NONCONFORMING indicates that special knowledge is
1910 required to correctly process the section and the file should
1911 be rejected with an error message. */
1912 (*_bfd_error_handler
)
1913 (_("%B: don't know how to handle OS specific section "
1915 abfd
, name
, hdr
->sh_type
);
1917 /* Otherwise it should be processed. */
1918 return _bfd_elf_make_section_from_shdr (abfd
, hdr
, name
, shindex
);
1921 /* FIXME: We should handle this section. */
1922 (*_bfd_error_handler
)
1923 (_("%B: don't know how to handle section `%s' [0x%8x]"),
1924 abfd
, name
, hdr
->sh_type
);
1932 /* Return the local symbol specified by ABFD, R_SYMNDX. */
1935 bfd_sym_from_r_symndx (struct sym_cache
*cache
,
1937 unsigned long r_symndx
)
1939 unsigned int ent
= r_symndx
% LOCAL_SYM_CACHE_SIZE
;
1941 if (cache
->abfd
!= abfd
|| cache
->indx
[ent
] != r_symndx
)
1943 Elf_Internal_Shdr
*symtab_hdr
;
1944 unsigned char esym
[sizeof (Elf64_External_Sym
)];
1945 Elf_External_Sym_Shndx eshndx
;
1947 symtab_hdr
= &elf_tdata (abfd
)->symtab_hdr
;
1948 if (bfd_elf_get_elf_syms (abfd
, symtab_hdr
, 1, r_symndx
,
1949 &cache
->sym
[ent
], esym
, &eshndx
) == NULL
)
1952 if (cache
->abfd
!= abfd
)
1954 memset (cache
->indx
, -1, sizeof (cache
->indx
));
1957 cache
->indx
[ent
] = r_symndx
;
1960 return &cache
->sym
[ent
];
1963 /* Given an ELF section number, retrieve the corresponding BFD
1967 bfd_section_from_elf_index (bfd
*abfd
, unsigned int sec_index
)
1969 if (sec_index
>= elf_numsections (abfd
))
1971 return elf_elfsections (abfd
)[sec_index
]->bfd_section
;
1974 static const struct bfd_elf_special_section special_sections_b
[] =
1976 { STRING_COMMA_LEN (".bss"), -2, SHT_NOBITS
, SHF_ALLOC
+ SHF_WRITE
},
1977 { NULL
, 0, 0, 0, 0 }
1980 static const struct bfd_elf_special_section special_sections_c
[] =
1982 { STRING_COMMA_LEN (".comment"), 0, SHT_PROGBITS
, 0 },
1983 { NULL
, 0, 0, 0, 0 }
1986 static const struct bfd_elf_special_section special_sections_d
[] =
1988 { STRING_COMMA_LEN (".data"), -2, SHT_PROGBITS
, SHF_ALLOC
+ SHF_WRITE
},
1989 { STRING_COMMA_LEN (".data1"), 0, SHT_PROGBITS
, SHF_ALLOC
+ SHF_WRITE
},
1990 { STRING_COMMA_LEN (".debug"), 0, SHT_PROGBITS
, 0 },
1991 { STRING_COMMA_LEN (".debug_line"), 0, SHT_PROGBITS
, 0 },
1992 { STRING_COMMA_LEN (".debug_info"), 0, SHT_PROGBITS
, 0 },
1993 { STRING_COMMA_LEN (".debug_abbrev"), 0, SHT_PROGBITS
, 0 },
1994 { STRING_COMMA_LEN (".debug_aranges"), 0, SHT_PROGBITS
, 0 },
1995 { STRING_COMMA_LEN (".dynamic"), 0, SHT_DYNAMIC
, SHF_ALLOC
},
1996 { STRING_COMMA_LEN (".dynstr"), 0, SHT_STRTAB
, SHF_ALLOC
},
1997 { STRING_COMMA_LEN (".dynsym"), 0, SHT_DYNSYM
, SHF_ALLOC
},
1998 { NULL
, 0, 0, 0, 0 }
2001 static const struct bfd_elf_special_section special_sections_f
[] =
2003 { STRING_COMMA_LEN (".fini"), 0, SHT_PROGBITS
, SHF_ALLOC
+ SHF_EXECINSTR
},
2004 { STRING_COMMA_LEN (".fini_array"), 0, SHT_FINI_ARRAY
, SHF_ALLOC
+ SHF_WRITE
},
2005 { NULL
, 0, 0, 0, 0 }
2008 static const struct bfd_elf_special_section special_sections_g
[] =
2010 { STRING_COMMA_LEN (".gnu.linkonce.b"), -2, SHT_NOBITS
, SHF_ALLOC
+ SHF_WRITE
},
2011 { STRING_COMMA_LEN (".got"), 0, SHT_PROGBITS
, SHF_ALLOC
+ SHF_WRITE
},
2012 { STRING_COMMA_LEN (".gnu.version"), 0, SHT_GNU_versym
, 0 },
2013 { STRING_COMMA_LEN (".gnu.version_d"), 0, SHT_GNU_verdef
, 0 },
2014 { STRING_COMMA_LEN (".gnu.version_r"), 0, SHT_GNU_verneed
, 0 },
2015 { STRING_COMMA_LEN (".gnu.liblist"), 0, SHT_GNU_LIBLIST
, SHF_ALLOC
},
2016 { STRING_COMMA_LEN (".gnu.conflict"), 0, SHT_RELA
, SHF_ALLOC
},
2017 { STRING_COMMA_LEN (".gnu.hash"), 0, SHT_GNU_HASH
, SHF_ALLOC
},
2018 { NULL
, 0, 0, 0, 0 }
2021 static const struct bfd_elf_special_section special_sections_h
[] =
2023 { STRING_COMMA_LEN (".hash"), 0, SHT_HASH
, SHF_ALLOC
},
2024 { NULL
, 0, 0, 0, 0 }
2027 static const struct bfd_elf_special_section special_sections_i
[] =
2029 { STRING_COMMA_LEN (".init"), 0, SHT_PROGBITS
, SHF_ALLOC
+ SHF_EXECINSTR
},
2030 { STRING_COMMA_LEN (".init_array"), 0, SHT_INIT_ARRAY
, SHF_ALLOC
+ SHF_WRITE
},
2031 { STRING_COMMA_LEN (".interp"), 0, SHT_PROGBITS
, 0 },
2032 { NULL
, 0, 0, 0, 0 }
2035 static const struct bfd_elf_special_section special_sections_l
[] =
2037 { STRING_COMMA_LEN (".line"), 0, SHT_PROGBITS
, 0 },
2038 { NULL
, 0, 0, 0, 0 }
2041 static const struct bfd_elf_special_section special_sections_n
[] =
2043 { STRING_COMMA_LEN (".note.GNU-stack"), 0, SHT_PROGBITS
, 0 },
2044 { STRING_COMMA_LEN (".note"), -1, SHT_NOTE
, 0 },
2045 { NULL
, 0, 0, 0, 0 }
2048 static const struct bfd_elf_special_section special_sections_p
[] =
2050 { STRING_COMMA_LEN (".preinit_array"), 0, SHT_PREINIT_ARRAY
, SHF_ALLOC
+ SHF_WRITE
},
2051 { STRING_COMMA_LEN (".plt"), 0, SHT_PROGBITS
, SHF_ALLOC
+ SHF_EXECINSTR
},
2052 { NULL
, 0, 0, 0, 0 }
2055 static const struct bfd_elf_special_section special_sections_r
[] =
2057 { STRING_COMMA_LEN (".rodata"), -2, SHT_PROGBITS
, SHF_ALLOC
},
2058 { STRING_COMMA_LEN (".rodata1"), 0, SHT_PROGBITS
, SHF_ALLOC
},
2059 { STRING_COMMA_LEN (".rela"), -1, SHT_RELA
, 0 },
2060 { STRING_COMMA_LEN (".rel"), -1, SHT_REL
, 0 },
2061 { NULL
, 0, 0, 0, 0 }
2064 static const struct bfd_elf_special_section special_sections_s
[] =
2066 { STRING_COMMA_LEN (".shstrtab"), 0, SHT_STRTAB
, 0 },
2067 { STRING_COMMA_LEN (".strtab"), 0, SHT_STRTAB
, 0 },
2068 { STRING_COMMA_LEN (".symtab"), 0, SHT_SYMTAB
, 0 },
2069 /* See struct bfd_elf_special_section declaration for the semantics of
2070 this special case where .prefix_length != strlen (.prefix). */
2071 { ".stabstr", 5, 3, SHT_STRTAB
, 0 },
2072 { NULL
, 0, 0, 0, 0 }
2075 static const struct bfd_elf_special_section special_sections_t
[] =
2077 { STRING_COMMA_LEN (".text"), -2, SHT_PROGBITS
, SHF_ALLOC
+ SHF_EXECINSTR
},
2078 { STRING_COMMA_LEN (".tbss"), -2, SHT_NOBITS
, SHF_ALLOC
+ SHF_WRITE
+ SHF_TLS
},
2079 { STRING_COMMA_LEN (".tdata"), -2, SHT_PROGBITS
, SHF_ALLOC
+ SHF_WRITE
+ SHF_TLS
},
2080 { NULL
, 0, 0, 0, 0 }
2083 static const struct bfd_elf_special_section special_sections_z
[] =
2085 { STRING_COMMA_LEN (".zdebug_line"), 0, SHT_PROGBITS
, 0 },
2086 { STRING_COMMA_LEN (".zdebug_info"), 0, SHT_PROGBITS
, 0 },
2087 { STRING_COMMA_LEN (".zdebug_abbrev"), 0, SHT_PROGBITS
, 0 },
2088 { STRING_COMMA_LEN (".zdebug_aranges"), 0, SHT_PROGBITS
, 0 },
2089 { NULL
, 0, 0, 0, 0 }
2092 static const struct bfd_elf_special_section
*special_sections
[] =
2094 special_sections_b
, /* 'b' */
2095 special_sections_c
, /* 'c' */
2096 special_sections_d
, /* 'd' */
2098 special_sections_f
, /* 'f' */
2099 special_sections_g
, /* 'g' */
2100 special_sections_h
, /* 'h' */
2101 special_sections_i
, /* 'i' */
2104 special_sections_l
, /* 'l' */
2106 special_sections_n
, /* 'n' */
2108 special_sections_p
, /* 'p' */
2110 special_sections_r
, /* 'r' */
2111 special_sections_s
, /* 's' */
2112 special_sections_t
, /* 't' */
2118 special_sections_z
/* 'z' */
2121 const struct bfd_elf_special_section
*
2122 _bfd_elf_get_special_section (const char *name
,
2123 const struct bfd_elf_special_section
*spec
,
2129 len
= strlen (name
);
2131 for (i
= 0; spec
[i
].prefix
!= NULL
; i
++)
2134 int prefix_len
= spec
[i
].prefix_length
;
2136 if (len
< prefix_len
)
2138 if (memcmp (name
, spec
[i
].prefix
, prefix_len
) != 0)
2141 suffix_len
= spec
[i
].suffix_length
;
2142 if (suffix_len
<= 0)
2144 if (name
[prefix_len
] != 0)
2146 if (suffix_len
== 0)
2148 if (name
[prefix_len
] != '.'
2149 && (suffix_len
== -2
2150 || (rela
&& spec
[i
].type
== SHT_REL
)))
2156 if (len
< prefix_len
+ suffix_len
)
2158 if (memcmp (name
+ len
- suffix_len
,
2159 spec
[i
].prefix
+ prefix_len
,
2169 const struct bfd_elf_special_section
*
2170 _bfd_elf_get_sec_type_attr (bfd
*abfd
, asection
*sec
)
2173 const struct bfd_elf_special_section
*spec
;
2174 const struct elf_backend_data
*bed
;
2176 /* See if this is one of the special sections. */
2177 if (sec
->name
== NULL
)
2180 bed
= get_elf_backend_data (abfd
);
2181 spec
= bed
->special_sections
;
2184 spec
= _bfd_elf_get_special_section (sec
->name
,
2185 bed
->special_sections
,
2191 if (sec
->name
[0] != '.')
2194 i
= sec
->name
[1] - 'b';
2195 if (i
< 0 || i
> 'z' - 'b')
2198 spec
= special_sections
[i
];
2203 return _bfd_elf_get_special_section (sec
->name
, spec
, sec
->use_rela_p
);
2207 _bfd_elf_new_section_hook (bfd
*abfd
, asection
*sec
)
2209 struct bfd_elf_section_data
*sdata
;
2210 const struct elf_backend_data
*bed
;
2211 const struct bfd_elf_special_section
*ssect
;
2213 sdata
= (struct bfd_elf_section_data
*) sec
->used_by_bfd
;
2216 sdata
= (struct bfd_elf_section_data
*) bfd_zalloc (abfd
,
2220 sec
->used_by_bfd
= sdata
;
2223 /* Indicate whether or not this section should use RELA relocations. */
2224 bed
= get_elf_backend_data (abfd
);
2225 sec
->use_rela_p
= bed
->default_use_rela_p
;
2227 /* When we read a file, we don't need to set ELF section type and
2228 flags. They will be overridden in _bfd_elf_make_section_from_shdr
2229 anyway. We will set ELF section type and flags for all linker
2230 created sections. If user specifies BFD section flags, we will
2231 set ELF section type and flags based on BFD section flags in
2232 elf_fake_sections. */
2233 if ((!sec
->flags
&& abfd
->direction
!= read_direction
)
2234 || (sec
->flags
& SEC_LINKER_CREATED
) != 0)
2236 ssect
= (*bed
->get_sec_type_attr
) (abfd
, sec
);
2239 elf_section_type (sec
) = ssect
->type
;
2240 elf_section_flags (sec
) = ssect
->attr
;
2244 return _bfd_generic_new_section_hook (abfd
, sec
);
2247 /* Create a new bfd section from an ELF program header.
2249 Since program segments have no names, we generate a synthetic name
2250 of the form segment<NUM>, where NUM is generally the index in the
2251 program header table. For segments that are split (see below) we
2252 generate the names segment<NUM>a and segment<NUM>b.
2254 Note that some program segments may have a file size that is different than
2255 (less than) the memory size. All this means is that at execution the
2256 system must allocate the amount of memory specified by the memory size,
2257 but only initialize it with the first "file size" bytes read from the
2258 file. This would occur for example, with program segments consisting
2259 of combined data+bss.
2261 To handle the above situation, this routine generates TWO bfd sections
2262 for the single program segment. The first has the length specified by
2263 the file size of the segment, and the second has the length specified
2264 by the difference between the two sizes. In effect, the segment is split
2265 into its initialized and uninitialized parts.
2270 _bfd_elf_make_section_from_phdr (bfd
*abfd
,
2271 Elf_Internal_Phdr
*hdr
,
2273 const char *type_name
)
2281 split
= ((hdr
->p_memsz
> 0)
2282 && (hdr
->p_filesz
> 0)
2283 && (hdr
->p_memsz
> hdr
->p_filesz
));
2285 if (hdr
->p_filesz
> 0)
2287 sprintf (namebuf
, "%s%d%s", type_name
, hdr_index
, split
? "a" : "");
2288 len
= strlen (namebuf
) + 1;
2289 name
= (char *) bfd_alloc (abfd
, len
);
2292 memcpy (name
, namebuf
, len
);
2293 newsect
= bfd_make_section (abfd
, name
);
2294 if (newsect
== NULL
)
2296 newsect
->vma
= hdr
->p_vaddr
;
2297 newsect
->lma
= hdr
->p_paddr
;
2298 newsect
->size
= hdr
->p_filesz
;
2299 newsect
->filepos
= hdr
->p_offset
;
2300 newsect
->flags
|= SEC_HAS_CONTENTS
;
2301 newsect
->alignment_power
= bfd_log2 (hdr
->p_align
);
2302 if (hdr
->p_type
== PT_LOAD
)
2304 newsect
->flags
|= SEC_ALLOC
;
2305 newsect
->flags
|= SEC_LOAD
;
2306 if (hdr
->p_flags
& PF_X
)
2308 /* FIXME: all we known is that it has execute PERMISSION,
2310 newsect
->flags
|= SEC_CODE
;
2313 if (!(hdr
->p_flags
& PF_W
))
2315 newsect
->flags
|= SEC_READONLY
;
2319 if (hdr
->p_memsz
> hdr
->p_filesz
)
2323 sprintf (namebuf
, "%s%d%s", type_name
, hdr_index
, split
? "b" : "");
2324 len
= strlen (namebuf
) + 1;
2325 name
= (char *) bfd_alloc (abfd
, len
);
2328 memcpy (name
, namebuf
, len
);
2329 newsect
= bfd_make_section (abfd
, name
);
2330 if (newsect
== NULL
)
2332 newsect
->vma
= hdr
->p_vaddr
+ hdr
->p_filesz
;
2333 newsect
->lma
= hdr
->p_paddr
+ hdr
->p_filesz
;
2334 newsect
->size
= hdr
->p_memsz
- hdr
->p_filesz
;
2335 newsect
->filepos
= hdr
->p_offset
+ hdr
->p_filesz
;
2336 align
= newsect
->vma
& -newsect
->vma
;
2337 if (align
== 0 || align
> hdr
->p_align
)
2338 align
= hdr
->p_align
;
2339 newsect
->alignment_power
= bfd_log2 (align
);
2340 if (hdr
->p_type
== PT_LOAD
)
2342 /* Hack for gdb. Segments that have not been modified do
2343 not have their contents written to a core file, on the
2344 assumption that a debugger can find the contents in the
2345 executable. We flag this case by setting the fake
2346 section size to zero. Note that "real" bss sections will
2347 always have their contents dumped to the core file. */
2348 if (bfd_get_format (abfd
) == bfd_core
)
2350 newsect
->flags
|= SEC_ALLOC
;
2351 if (hdr
->p_flags
& PF_X
)
2352 newsect
->flags
|= SEC_CODE
;
2354 if (!(hdr
->p_flags
& PF_W
))
2355 newsect
->flags
|= SEC_READONLY
;
2362 bfd_section_from_phdr (bfd
*abfd
, Elf_Internal_Phdr
*hdr
, int hdr_index
)
2364 const struct elf_backend_data
*bed
;
2366 switch (hdr
->p_type
)
2369 return _bfd_elf_make_section_from_phdr (abfd
, hdr
, hdr_index
, "null");
2372 return _bfd_elf_make_section_from_phdr (abfd
, hdr
, hdr_index
, "load");
2375 return _bfd_elf_make_section_from_phdr (abfd
, hdr
, hdr_index
, "dynamic");
2378 return _bfd_elf_make_section_from_phdr (abfd
, hdr
, hdr_index
, "interp");
2381 if (! _bfd_elf_make_section_from_phdr (abfd
, hdr
, hdr_index
, "note"))
2383 if (! elf_read_notes (abfd
, hdr
->p_offset
, hdr
->p_filesz
))
2388 return _bfd_elf_make_section_from_phdr (abfd
, hdr
, hdr_index
, "shlib");
2391 return _bfd_elf_make_section_from_phdr (abfd
, hdr
, hdr_index
, "phdr");
2393 case PT_GNU_EH_FRAME
:
2394 return _bfd_elf_make_section_from_phdr (abfd
, hdr
, hdr_index
,
2398 return _bfd_elf_make_section_from_phdr (abfd
, hdr
, hdr_index
, "stack");
2401 return _bfd_elf_make_section_from_phdr (abfd
, hdr
, hdr_index
, "relro");
2404 /* Check for any processor-specific program segment types. */
2405 bed
= get_elf_backend_data (abfd
);
2406 return bed
->elf_backend_section_from_phdr (abfd
, hdr
, hdr_index
, "proc");
2410 /* Initialize REL_HDR, the section-header for new section, containing
2411 relocations against ASECT. If USE_RELA_P is TRUE, we use RELA
2412 relocations; otherwise, we use REL relocations. */
2415 _bfd_elf_init_reloc_shdr (bfd
*abfd
,
2416 Elf_Internal_Shdr
*rel_hdr
,
2418 bfd_boolean use_rela_p
)
2421 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
2422 bfd_size_type amt
= sizeof ".rela" + strlen (asect
->name
);
2424 name
= (char *) bfd_alloc (abfd
, amt
);
2427 sprintf (name
, "%s%s", use_rela_p
? ".rela" : ".rel", asect
->name
);
2429 (unsigned int) _bfd_elf_strtab_add (elf_shstrtab (abfd
), name
,
2431 if (rel_hdr
->sh_name
== (unsigned int) -1)
2433 rel_hdr
->sh_type
= use_rela_p
? SHT_RELA
: SHT_REL
;
2434 rel_hdr
->sh_entsize
= (use_rela_p
2435 ? bed
->s
->sizeof_rela
2436 : bed
->s
->sizeof_rel
);
2437 rel_hdr
->sh_addralign
= (bfd_vma
) 1 << bed
->s
->log_file_align
;
2438 rel_hdr
->sh_flags
= 0;
2439 rel_hdr
->sh_addr
= 0;
2440 rel_hdr
->sh_size
= 0;
2441 rel_hdr
->sh_offset
= 0;
2446 /* Return the default section type based on the passed in section flags. */
2449 bfd_elf_get_default_section_type (flagword flags
)
2451 if ((flags
& SEC_ALLOC
) != 0
2452 && ((flags
& (SEC_LOAD
| SEC_HAS_CONTENTS
)) == 0
2453 || (flags
& SEC_NEVER_LOAD
) != 0))
2455 return SHT_PROGBITS
;
2458 /* Set up an ELF internal section header for a section. */
2461 elf_fake_sections (bfd
*abfd
, asection
*asect
, void *failedptrarg
)
2463 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
2464 bfd_boolean
*failedptr
= (bfd_boolean
*) failedptrarg
;
2465 Elf_Internal_Shdr
*this_hdr
;
2466 unsigned int sh_type
;
2470 /* We already failed; just get out of the bfd_map_over_sections
2475 this_hdr
= &elf_section_data (asect
)->this_hdr
;
2477 this_hdr
->sh_name
= (unsigned int) _bfd_elf_strtab_add (elf_shstrtab (abfd
),
2478 asect
->name
, FALSE
);
2479 if (this_hdr
->sh_name
== (unsigned int) -1)
2485 /* Don't clear sh_flags. Assembler may set additional bits. */
2487 if ((asect
->flags
& SEC_ALLOC
) != 0
2488 || asect
->user_set_vma
)
2489 this_hdr
->sh_addr
= asect
->vma
;
2491 this_hdr
->sh_addr
= 0;
2493 this_hdr
->sh_offset
= 0;
2494 this_hdr
->sh_size
= asect
->size
;
2495 this_hdr
->sh_link
= 0;
2496 this_hdr
->sh_addralign
= (bfd_vma
) 1 << asect
->alignment_power
;
2497 /* The sh_entsize and sh_info fields may have been set already by
2498 copy_private_section_data. */
2500 this_hdr
->bfd_section
= asect
;
2501 this_hdr
->contents
= NULL
;
2503 /* If the section type is unspecified, we set it based on
2505 if ((asect
->flags
& SEC_GROUP
) != 0)
2506 sh_type
= SHT_GROUP
;
2508 sh_type
= bfd_elf_get_default_section_type (asect
->flags
);
2510 if (this_hdr
->sh_type
== SHT_NULL
)
2511 this_hdr
->sh_type
= sh_type
;
2512 else if (this_hdr
->sh_type
== SHT_NOBITS
2513 && sh_type
== SHT_PROGBITS
2514 && (asect
->flags
& SEC_ALLOC
) != 0)
2516 /* Warn if we are changing a NOBITS section to PROGBITS, but
2517 allow the link to proceed. This can happen when users link
2518 non-bss input sections to bss output sections, or emit data
2519 to a bss output section via a linker script. */
2520 (*_bfd_error_handler
)
2521 (_("warning: section `%A' type changed to PROGBITS"), asect
);
2522 this_hdr
->sh_type
= sh_type
;
2525 switch (this_hdr
->sh_type
)
2531 case SHT_INIT_ARRAY
:
2532 case SHT_FINI_ARRAY
:
2533 case SHT_PREINIT_ARRAY
:
2540 this_hdr
->sh_entsize
= bed
->s
->sizeof_hash_entry
;
2544 this_hdr
->sh_entsize
= bed
->s
->sizeof_sym
;
2548 this_hdr
->sh_entsize
= bed
->s
->sizeof_dyn
;
2552 if (get_elf_backend_data (abfd
)->may_use_rela_p
)
2553 this_hdr
->sh_entsize
= bed
->s
->sizeof_rela
;
2557 if (get_elf_backend_data (abfd
)->may_use_rel_p
)
2558 this_hdr
->sh_entsize
= bed
->s
->sizeof_rel
;
2561 case SHT_GNU_versym
:
2562 this_hdr
->sh_entsize
= sizeof (Elf_External_Versym
);
2565 case SHT_GNU_verdef
:
2566 this_hdr
->sh_entsize
= 0;
2567 /* objcopy or strip will copy over sh_info, but may not set
2568 cverdefs. The linker will set cverdefs, but sh_info will be
2570 if (this_hdr
->sh_info
== 0)
2571 this_hdr
->sh_info
= elf_tdata (abfd
)->cverdefs
;
2573 BFD_ASSERT (elf_tdata (abfd
)->cverdefs
== 0
2574 || this_hdr
->sh_info
== elf_tdata (abfd
)->cverdefs
);
2577 case SHT_GNU_verneed
:
2578 this_hdr
->sh_entsize
= 0;
2579 /* objcopy or strip will copy over sh_info, but may not set
2580 cverrefs. The linker will set cverrefs, but sh_info will be
2582 if (this_hdr
->sh_info
== 0)
2583 this_hdr
->sh_info
= elf_tdata (abfd
)->cverrefs
;
2585 BFD_ASSERT (elf_tdata (abfd
)->cverrefs
== 0
2586 || this_hdr
->sh_info
== elf_tdata (abfd
)->cverrefs
);
2590 this_hdr
->sh_entsize
= GRP_ENTRY_SIZE
;
2594 this_hdr
->sh_entsize
= bed
->s
->arch_size
== 64 ? 0 : 4;
2598 if ((asect
->flags
& SEC_ALLOC
) != 0)
2599 this_hdr
->sh_flags
|= SHF_ALLOC
;
2600 if ((asect
->flags
& SEC_READONLY
) == 0)
2601 this_hdr
->sh_flags
|= SHF_WRITE
;
2602 if ((asect
->flags
& SEC_CODE
) != 0)
2603 this_hdr
->sh_flags
|= SHF_EXECINSTR
;
2604 if ((asect
->flags
& SEC_MERGE
) != 0)
2606 this_hdr
->sh_flags
|= SHF_MERGE
;
2607 this_hdr
->sh_entsize
= asect
->entsize
;
2608 if ((asect
->flags
& SEC_STRINGS
) != 0)
2609 this_hdr
->sh_flags
|= SHF_STRINGS
;
2611 if ((asect
->flags
& SEC_GROUP
) == 0 && elf_group_name (asect
) != NULL
)
2612 this_hdr
->sh_flags
|= SHF_GROUP
;
2613 if ((asect
->flags
& SEC_THREAD_LOCAL
) != 0)
2615 this_hdr
->sh_flags
|= SHF_TLS
;
2616 if (asect
->size
== 0
2617 && (asect
->flags
& SEC_HAS_CONTENTS
) == 0)
2619 struct bfd_link_order
*o
= asect
->map_tail
.link_order
;
2621 this_hdr
->sh_size
= 0;
2624 this_hdr
->sh_size
= o
->offset
+ o
->size
;
2625 if (this_hdr
->sh_size
!= 0)
2626 this_hdr
->sh_type
= SHT_NOBITS
;
2631 /* Check for processor-specific section types. */
2632 sh_type
= this_hdr
->sh_type
;
2633 if (bed
->elf_backend_fake_sections
2634 && !(*bed
->elf_backend_fake_sections
) (abfd
, this_hdr
, asect
))
2637 if (sh_type
== SHT_NOBITS
&& asect
->size
!= 0)
2639 /* Don't change the header type from NOBITS if we are being
2640 called for objcopy --only-keep-debug. */
2641 this_hdr
->sh_type
= sh_type
;
2644 /* If the section has relocs, set up a section header for the
2645 SHT_REL[A] section. If two relocation sections are required for
2646 this section, it is up to the processor-specific back-end to
2647 create the other. */
2648 if ((asect
->flags
& SEC_RELOC
) != 0
2649 && !_bfd_elf_init_reloc_shdr (abfd
,
2650 &elf_section_data (asect
)->rel_hdr
,
2656 /* Fill in the contents of a SHT_GROUP section. Called from
2657 _bfd_elf_compute_section_file_positions for gas, objcopy, and
2658 when ELF targets use the generic linker, ld. Called for ld -r
2659 from bfd_elf_final_link. */
2662 bfd_elf_set_group_contents (bfd
*abfd
, asection
*sec
, void *failedptrarg
)
2664 bfd_boolean
*failedptr
= (bfd_boolean
*) failedptrarg
;
2665 asection
*elt
, *first
;
2669 /* Ignore linker created group section. See elfNN_ia64_object_p in
2671 if (((sec
->flags
& (SEC_GROUP
| SEC_LINKER_CREATED
)) != SEC_GROUP
)
2675 if (elf_section_data (sec
)->this_hdr
.sh_info
== 0)
2677 unsigned long symindx
= 0;
2679 /* elf_group_id will have been set up by objcopy and the
2681 if (elf_group_id (sec
) != NULL
)
2682 symindx
= elf_group_id (sec
)->udata
.i
;
2686 /* If called from the assembler, swap_out_syms will have set up
2687 elf_section_syms. */
2688 BFD_ASSERT (elf_section_syms (abfd
) != NULL
);
2689 symindx
= elf_section_syms (abfd
)[sec
->index
]->udata
.i
;
2691 elf_section_data (sec
)->this_hdr
.sh_info
= symindx
;
2693 else if (elf_section_data (sec
)->this_hdr
.sh_info
== (unsigned int) -2)
2695 /* The ELF backend linker sets sh_info to -2 when the group
2696 signature symbol is global, and thus the index can't be
2697 set until all local symbols are output. */
2698 asection
*igroup
= elf_sec_group (elf_next_in_group (sec
));
2699 struct bfd_elf_section_data
*sec_data
= elf_section_data (igroup
);
2700 unsigned long symndx
= sec_data
->this_hdr
.sh_info
;
2701 unsigned long extsymoff
= 0;
2702 struct elf_link_hash_entry
*h
;
2704 if (!elf_bad_symtab (igroup
->owner
))
2706 Elf_Internal_Shdr
*symtab_hdr
;
2708 symtab_hdr
= &elf_tdata (igroup
->owner
)->symtab_hdr
;
2709 extsymoff
= symtab_hdr
->sh_info
;
2711 h
= elf_sym_hashes (igroup
->owner
)[symndx
- extsymoff
];
2712 while (h
->root
.type
== bfd_link_hash_indirect
2713 || h
->root
.type
== bfd_link_hash_warning
)
2714 h
= (struct elf_link_hash_entry
*) h
->root
.u
.i
.link
;
2716 elf_section_data (sec
)->this_hdr
.sh_info
= h
->indx
;
2719 /* The contents won't be allocated for "ld -r" or objcopy. */
2721 if (sec
->contents
== NULL
)
2724 sec
->contents
= (unsigned char *) bfd_alloc (abfd
, sec
->size
);
2726 /* Arrange for the section to be written out. */
2727 elf_section_data (sec
)->this_hdr
.contents
= sec
->contents
;
2728 if (sec
->contents
== NULL
)
2735 loc
= sec
->contents
+ sec
->size
;
2737 /* Get the pointer to the first section in the group that gas
2738 squirreled away here. objcopy arranges for this to be set to the
2739 start of the input section group. */
2740 first
= elt
= elf_next_in_group (sec
);
2742 /* First element is a flag word. Rest of section is elf section
2743 indices for all the sections of the group. Write them backwards
2744 just to keep the group in the same order as given in .section
2745 directives, not that it matters. */
2752 s
= s
->output_section
;
2754 && !bfd_is_abs_section (s
))
2756 unsigned int idx
= elf_section_data (s
)->this_idx
;
2759 H_PUT_32 (abfd
, idx
, loc
);
2761 elt
= elf_next_in_group (elt
);
2766 if ((loc
-= 4) != sec
->contents
)
2769 H_PUT_32 (abfd
, sec
->flags
& SEC_LINK_ONCE
? GRP_COMDAT
: 0, loc
);
2772 /* Assign all ELF section numbers. The dummy first section is handled here
2773 too. The link/info pointers for the standard section types are filled
2774 in here too, while we're at it. */
2777 assign_section_numbers (bfd
*abfd
, struct bfd_link_info
*link_info
)
2779 struct elf_obj_tdata
*t
= elf_tdata (abfd
);
2781 unsigned int section_number
, secn
;
2782 Elf_Internal_Shdr
**i_shdrp
;
2783 struct bfd_elf_section_data
*d
;
2784 bfd_boolean need_symtab
;
2788 _bfd_elf_strtab_clear_all_refs (elf_shstrtab (abfd
));
2790 /* SHT_GROUP sections are in relocatable files only. */
2791 if (link_info
== NULL
|| link_info
->relocatable
)
2793 /* Put SHT_GROUP sections first. */
2794 for (sec
= abfd
->sections
; sec
!= NULL
; sec
= sec
->next
)
2796 d
= elf_section_data (sec
);
2798 if (d
->this_hdr
.sh_type
== SHT_GROUP
)
2800 if (sec
->flags
& SEC_LINKER_CREATED
)
2802 /* Remove the linker created SHT_GROUP sections. */
2803 bfd_section_list_remove (abfd
, sec
);
2804 abfd
->section_count
--;
2807 d
->this_idx
= section_number
++;
2812 for (sec
= abfd
->sections
; sec
; sec
= sec
->next
)
2814 d
= elf_section_data (sec
);
2816 if (d
->this_hdr
.sh_type
!= SHT_GROUP
)
2817 d
->this_idx
= section_number
++;
2818 _bfd_elf_strtab_addref (elf_shstrtab (abfd
), d
->this_hdr
.sh_name
);
2819 if ((sec
->flags
& SEC_RELOC
) == 0)
2823 d
->rel_idx
= section_number
++;
2824 _bfd_elf_strtab_addref (elf_shstrtab (abfd
), d
->rel_hdr
.sh_name
);
2829 d
->rel_idx2
= section_number
++;
2830 _bfd_elf_strtab_addref (elf_shstrtab (abfd
), d
->rel_hdr2
->sh_name
);
2836 t
->shstrtab_section
= section_number
++;
2837 _bfd_elf_strtab_addref (elf_shstrtab (abfd
), t
->shstrtab_hdr
.sh_name
);
2838 elf_elfheader (abfd
)->e_shstrndx
= t
->shstrtab_section
;
2840 need_symtab
= (bfd_get_symcount (abfd
) > 0
2841 || (link_info
== NULL
2842 && ((abfd
->flags
& (EXEC_P
| DYNAMIC
| HAS_RELOC
))
2846 t
->symtab_section
= section_number
++;
2847 _bfd_elf_strtab_addref (elf_shstrtab (abfd
), t
->symtab_hdr
.sh_name
);
2848 if (section_number
> ((SHN_LORESERVE
- 2) & 0xFFFF))
2850 t
->symtab_shndx_section
= section_number
++;
2851 t
->symtab_shndx_hdr
.sh_name
2852 = (unsigned int) _bfd_elf_strtab_add (elf_shstrtab (abfd
),
2853 ".symtab_shndx", FALSE
);
2854 if (t
->symtab_shndx_hdr
.sh_name
== (unsigned int) -1)
2857 t
->strtab_section
= section_number
++;
2858 _bfd_elf_strtab_addref (elf_shstrtab (abfd
), t
->strtab_hdr
.sh_name
);
2861 _bfd_elf_strtab_finalize (elf_shstrtab (abfd
));
2862 t
->shstrtab_hdr
.sh_size
= _bfd_elf_strtab_size (elf_shstrtab (abfd
));
2864 elf_numsections (abfd
) = section_number
;
2865 elf_elfheader (abfd
)->e_shnum
= section_number
;
2867 /* Set up the list of section header pointers, in agreement with the
2869 i_shdrp
= (Elf_Internal_Shdr
**) bfd_zalloc2 (abfd
, section_number
,
2870 sizeof (Elf_Internal_Shdr
*));
2871 if (i_shdrp
== NULL
)
2874 i_shdrp
[0] = (Elf_Internal_Shdr
*) bfd_zalloc (abfd
,
2875 sizeof (Elf_Internal_Shdr
));
2876 if (i_shdrp
[0] == NULL
)
2878 bfd_release (abfd
, i_shdrp
);
2882 elf_elfsections (abfd
) = i_shdrp
;
2884 i_shdrp
[t
->shstrtab_section
] = &t
->shstrtab_hdr
;
2887 i_shdrp
[t
->symtab_section
] = &t
->symtab_hdr
;
2888 if (elf_numsections (abfd
) > (SHN_LORESERVE
& 0xFFFF))
2890 i_shdrp
[t
->symtab_shndx_section
] = &t
->symtab_shndx_hdr
;
2891 t
->symtab_shndx_hdr
.sh_link
= t
->symtab_section
;
2893 i_shdrp
[t
->strtab_section
] = &t
->strtab_hdr
;
2894 t
->symtab_hdr
.sh_link
= t
->strtab_section
;
2897 for (sec
= abfd
->sections
; sec
; sec
= sec
->next
)
2902 d
= elf_section_data (sec
);
2904 i_shdrp
[d
->this_idx
] = &d
->this_hdr
;
2905 if (d
->rel_idx
!= 0)
2906 i_shdrp
[d
->rel_idx
] = &d
->rel_hdr
;
2907 if (d
->rel_idx2
!= 0)
2908 i_shdrp
[d
->rel_idx2
] = d
->rel_hdr2
;
2910 /* Fill in the sh_link and sh_info fields while we're at it. */
2912 /* sh_link of a reloc section is the section index of the symbol
2913 table. sh_info is the section index of the section to which
2914 the relocation entries apply. */
2915 if (d
->rel_idx
!= 0)
2917 d
->rel_hdr
.sh_link
= t
->symtab_section
;
2918 d
->rel_hdr
.sh_info
= d
->this_idx
;
2920 if (d
->rel_idx2
!= 0)
2922 d
->rel_hdr2
->sh_link
= t
->symtab_section
;
2923 d
->rel_hdr2
->sh_info
= d
->this_idx
;
2926 /* We need to set up sh_link for SHF_LINK_ORDER. */
2927 if ((d
->this_hdr
.sh_flags
& SHF_LINK_ORDER
) != 0)
2929 s
= elf_linked_to_section (sec
);
2932 /* elf_linked_to_section points to the input section. */
2933 if (link_info
!= NULL
)
2935 /* Check discarded linkonce section. */
2936 if (elf_discarded_section (s
))
2939 (*_bfd_error_handler
)
2940 (_("%B: sh_link of section `%A' points to discarded section `%A' of `%B'"),
2941 abfd
, d
->this_hdr
.bfd_section
,
2943 /* Point to the kept section if it has the same
2944 size as the discarded one. */
2945 kept
= _bfd_elf_check_kept_section (s
, link_info
);
2948 bfd_set_error (bfd_error_bad_value
);
2954 s
= s
->output_section
;
2955 BFD_ASSERT (s
!= NULL
);
2959 /* Handle objcopy. */
2960 if (s
->output_section
== NULL
)
2962 (*_bfd_error_handler
)
2963 (_("%B: sh_link of section `%A' points to removed section `%A' of `%B'"),
2964 abfd
, d
->this_hdr
.bfd_section
, s
, s
->owner
);
2965 bfd_set_error (bfd_error_bad_value
);
2968 s
= s
->output_section
;
2970 d
->this_hdr
.sh_link
= elf_section_data (s
)->this_idx
;
2975 The Intel C compiler generates SHT_IA_64_UNWIND with
2976 SHF_LINK_ORDER. But it doesn't set the sh_link or
2977 sh_info fields. Hence we could get the situation
2979 const struct elf_backend_data
*bed
2980 = get_elf_backend_data (abfd
);
2981 if (bed
->link_order_error_handler
)
2982 bed
->link_order_error_handler
2983 (_("%B: warning: sh_link not set for section `%A'"),
2988 switch (d
->this_hdr
.sh_type
)
2992 /* A reloc section which we are treating as a normal BFD
2993 section. sh_link is the section index of the symbol
2994 table. sh_info is the section index of the section to
2995 which the relocation entries apply. We assume that an
2996 allocated reloc section uses the dynamic symbol table.
2997 FIXME: How can we be sure? */
2998 s
= bfd_get_section_by_name (abfd
, ".dynsym");
3000 d
->this_hdr
.sh_link
= elf_section_data (s
)->this_idx
;
3002 /* We look up the section the relocs apply to by name. */
3004 if (d
->this_hdr
.sh_type
== SHT_REL
)
3008 s
= bfd_get_section_by_name (abfd
, name
);
3010 d
->this_hdr
.sh_info
= elf_section_data (s
)->this_idx
;
3014 /* We assume that a section named .stab*str is a stabs
3015 string section. We look for a section with the same name
3016 but without the trailing ``str'', and set its sh_link
3017 field to point to this section. */
3018 if (CONST_STRNEQ (sec
->name
, ".stab")
3019 && strcmp (sec
->name
+ strlen (sec
->name
) - 3, "str") == 0)
3024 len
= strlen (sec
->name
);
3025 alc
= (char *) bfd_malloc (len
- 2);
3028 memcpy (alc
, sec
->name
, len
- 3);
3029 alc
[len
- 3] = '\0';
3030 s
= bfd_get_section_by_name (abfd
, alc
);
3034 elf_section_data (s
)->this_hdr
.sh_link
= d
->this_idx
;
3036 /* This is a .stab section. */
3037 if (elf_section_data (s
)->this_hdr
.sh_entsize
== 0)
3038 elf_section_data (s
)->this_hdr
.sh_entsize
3039 = 4 + 2 * bfd_get_arch_size (abfd
) / 8;
3046 case SHT_GNU_verneed
:
3047 case SHT_GNU_verdef
:
3048 /* sh_link is the section header index of the string table
3049 used for the dynamic entries, or the symbol table, or the
3051 s
= bfd_get_section_by_name (abfd
, ".dynstr");
3053 d
->this_hdr
.sh_link
= elf_section_data (s
)->this_idx
;
3056 case SHT_GNU_LIBLIST
:
3057 /* sh_link is the section header index of the prelink library
3058 list used for the dynamic entries, or the symbol table, or
3059 the version strings. */
3060 s
= bfd_get_section_by_name (abfd
, (sec
->flags
& SEC_ALLOC
)
3061 ? ".dynstr" : ".gnu.libstr");
3063 d
->this_hdr
.sh_link
= elf_section_data (s
)->this_idx
;
3068 case SHT_GNU_versym
:
3069 /* sh_link is the section header index of the symbol table
3070 this hash table or version table is for. */
3071 s
= bfd_get_section_by_name (abfd
, ".dynsym");
3073 d
->this_hdr
.sh_link
= elf_section_data (s
)->this_idx
;
3077 d
->this_hdr
.sh_link
= t
->symtab_section
;
3081 for (secn
= 1; secn
< section_number
; ++secn
)
3082 if (i_shdrp
[secn
] == NULL
)
3083 i_shdrp
[secn
] = i_shdrp
[0];
3085 i_shdrp
[secn
]->sh_name
= _bfd_elf_strtab_offset (elf_shstrtab (abfd
),
3086 i_shdrp
[secn
]->sh_name
);
3090 /* Map symbol from it's internal number to the external number, moving
3091 all local symbols to be at the head of the list. */
3094 sym_is_global (bfd
*abfd
, asymbol
*sym
)
3096 /* If the backend has a special mapping, use it. */
3097 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
3098 if (bed
->elf_backend_sym_is_global
)
3099 return (*bed
->elf_backend_sym_is_global
) (abfd
, sym
);
3101 return ((sym
->flags
& (BSF_GLOBAL
| BSF_WEAK
| BSF_GNU_UNIQUE
)) != 0
3102 || bfd_is_und_section (bfd_get_section (sym
))
3103 || bfd_is_com_section (bfd_get_section (sym
)));
3106 /* Don't output section symbols for sections that are not going to be
3110 ignore_section_sym (bfd
*abfd
, asymbol
*sym
)
3112 return ((sym
->flags
& BSF_SECTION_SYM
) != 0
3113 && !(sym
->section
->owner
== abfd
3114 || (sym
->section
->output_section
->owner
== abfd
3115 && sym
->section
->output_offset
== 0)));
3119 elf_map_symbols (bfd
*abfd
)
3121 unsigned int symcount
= bfd_get_symcount (abfd
);
3122 asymbol
**syms
= bfd_get_outsymbols (abfd
);
3123 asymbol
**sect_syms
;
3124 unsigned int num_locals
= 0;
3125 unsigned int num_globals
= 0;
3126 unsigned int num_locals2
= 0;
3127 unsigned int num_globals2
= 0;
3134 fprintf (stderr
, "elf_map_symbols\n");
3138 for (asect
= abfd
->sections
; asect
; asect
= asect
->next
)
3140 if (max_index
< asect
->index
)
3141 max_index
= asect
->index
;
3145 sect_syms
= (asymbol
**) bfd_zalloc2 (abfd
, max_index
, sizeof (asymbol
*));
3146 if (sect_syms
== NULL
)
3148 elf_section_syms (abfd
) = sect_syms
;
3149 elf_num_section_syms (abfd
) = max_index
;
3151 /* Init sect_syms entries for any section symbols we have already
3152 decided to output. */
3153 for (idx
= 0; idx
< symcount
; idx
++)
3155 asymbol
*sym
= syms
[idx
];
3157 if ((sym
->flags
& BSF_SECTION_SYM
) != 0
3159 && !ignore_section_sym (abfd
, sym
))
3161 asection
*sec
= sym
->section
;
3163 if (sec
->owner
!= abfd
)
3164 sec
= sec
->output_section
;
3166 sect_syms
[sec
->index
] = syms
[idx
];
3170 /* Classify all of the symbols. */
3171 for (idx
= 0; idx
< symcount
; idx
++)
3173 if (ignore_section_sym (abfd
, syms
[idx
]))
3175 if (!sym_is_global (abfd
, syms
[idx
]))
3181 /* We will be adding a section symbol for each normal BFD section. Most
3182 sections will already have a section symbol in outsymbols, but
3183 eg. SHT_GROUP sections will not, and we need the section symbol mapped
3184 at least in that case. */
3185 for (asect
= abfd
->sections
; asect
; asect
= asect
->next
)
3187 if (sect_syms
[asect
->index
] == NULL
)
3189 if (!sym_is_global (abfd
, asect
->symbol
))
3196 /* Now sort the symbols so the local symbols are first. */
3197 new_syms
= (asymbol
**) bfd_alloc2 (abfd
, num_locals
+ num_globals
,
3198 sizeof (asymbol
*));
3200 if (new_syms
== NULL
)
3203 for (idx
= 0; idx
< symcount
; idx
++)
3205 asymbol
*sym
= syms
[idx
];
3208 if (ignore_section_sym (abfd
, sym
))
3210 if (!sym_is_global (abfd
, sym
))
3213 i
= num_locals
+ num_globals2
++;
3215 sym
->udata
.i
= i
+ 1;
3217 for (asect
= abfd
->sections
; asect
; asect
= asect
->next
)
3219 if (sect_syms
[asect
->index
] == NULL
)
3221 asymbol
*sym
= asect
->symbol
;
3224 sect_syms
[asect
->index
] = sym
;
3225 if (!sym_is_global (abfd
, sym
))
3228 i
= num_locals
+ num_globals2
++;
3230 sym
->udata
.i
= i
+ 1;
3234 bfd_set_symtab (abfd
, new_syms
, num_locals
+ num_globals
);
3236 elf_num_locals (abfd
) = num_locals
;
3237 elf_num_globals (abfd
) = num_globals
;
3241 /* Align to the maximum file alignment that could be required for any
3242 ELF data structure. */
3244 static inline file_ptr
3245 align_file_position (file_ptr off
, int align
)
3247 return (off
+ align
- 1) & ~(align
- 1);
3250 /* Assign a file position to a section, optionally aligning to the
3251 required section alignment. */
3254 _bfd_elf_assign_file_position_for_section (Elf_Internal_Shdr
*i_shdrp
,
3258 if (align
&& i_shdrp
->sh_addralign
> 1)
3259 offset
= BFD_ALIGN (offset
, i_shdrp
->sh_addralign
);
3260 i_shdrp
->sh_offset
= offset
;
3261 if (i_shdrp
->bfd_section
!= NULL
)
3262 i_shdrp
->bfd_section
->filepos
= offset
;
3263 if (i_shdrp
->sh_type
!= SHT_NOBITS
)
3264 offset
+= i_shdrp
->sh_size
;
3268 /* Compute the file positions we are going to put the sections at, and
3269 otherwise prepare to begin writing out the ELF file. If LINK_INFO
3270 is not NULL, this is being called by the ELF backend linker. */
3273 _bfd_elf_compute_section_file_positions (bfd
*abfd
,
3274 struct bfd_link_info
*link_info
)
3276 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
3278 struct bfd_strtab_hash
*strtab
= NULL
;
3279 Elf_Internal_Shdr
*shstrtab_hdr
;
3280 bfd_boolean need_symtab
;
3282 if (abfd
->output_has_begun
)
3285 /* Do any elf backend specific processing first. */
3286 if (bed
->elf_backend_begin_write_processing
)
3287 (*bed
->elf_backend_begin_write_processing
) (abfd
, link_info
);
3289 if (! prep_headers (abfd
))
3292 /* Post process the headers if necessary. */
3293 if (bed
->elf_backend_post_process_headers
)
3294 (*bed
->elf_backend_post_process_headers
) (abfd
, link_info
);
3297 bfd_map_over_sections (abfd
, elf_fake_sections
, &failed
);
3301 if (!assign_section_numbers (abfd
, link_info
))
3304 /* The backend linker builds symbol table information itself. */
3305 need_symtab
= (link_info
== NULL
3306 && (bfd_get_symcount (abfd
) > 0
3307 || ((abfd
->flags
& (EXEC_P
| DYNAMIC
| HAS_RELOC
))
3311 /* Non-zero if doing a relocatable link. */
3312 int relocatable_p
= ! (abfd
->flags
& (EXEC_P
| DYNAMIC
));
3314 if (! swap_out_syms (abfd
, &strtab
, relocatable_p
))
3318 if (link_info
== NULL
)
3320 bfd_map_over_sections (abfd
, bfd_elf_set_group_contents
, &failed
);
3325 shstrtab_hdr
= &elf_tdata (abfd
)->shstrtab_hdr
;
3326 /* sh_name was set in prep_headers. */
3327 shstrtab_hdr
->sh_type
= SHT_STRTAB
;
3328 shstrtab_hdr
->sh_flags
= 0;
3329 shstrtab_hdr
->sh_addr
= 0;
3330 shstrtab_hdr
->sh_size
= _bfd_elf_strtab_size (elf_shstrtab (abfd
));
3331 shstrtab_hdr
->sh_entsize
= 0;
3332 shstrtab_hdr
->sh_link
= 0;
3333 shstrtab_hdr
->sh_info
= 0;
3334 /* sh_offset is set in assign_file_positions_except_relocs. */
3335 shstrtab_hdr
->sh_addralign
= 1;
3337 if (!assign_file_positions_except_relocs (abfd
, link_info
))
3343 Elf_Internal_Shdr
*hdr
;
3345 off
= elf_tdata (abfd
)->next_file_pos
;
3347 hdr
= &elf_tdata (abfd
)->symtab_hdr
;
3348 off
= _bfd_elf_assign_file_position_for_section (hdr
, off
, TRUE
);
3350 hdr
= &elf_tdata (abfd
)->symtab_shndx_hdr
;
3351 if (hdr
->sh_size
!= 0)
3352 off
= _bfd_elf_assign_file_position_for_section (hdr
, off
, TRUE
);
3354 hdr
= &elf_tdata (abfd
)->strtab_hdr
;
3355 off
= _bfd_elf_assign_file_position_for_section (hdr
, off
, TRUE
);
3357 elf_tdata (abfd
)->next_file_pos
= off
;
3359 /* Now that we know where the .strtab section goes, write it
3361 if (bfd_seek (abfd
, hdr
->sh_offset
, SEEK_SET
) != 0
3362 || ! _bfd_stringtab_emit (abfd
, strtab
))
3364 _bfd_stringtab_free (strtab
);
3367 abfd
->output_has_begun
= TRUE
;
3372 /* Make an initial estimate of the size of the program header. If we
3373 get the number wrong here, we'll redo section placement. */
3375 static bfd_size_type
3376 get_program_header_size (bfd
*abfd
, struct bfd_link_info
*info
)
3380 const struct elf_backend_data
*bed
;
3382 /* Assume we will need exactly two PT_LOAD segments: one for text
3383 and one for data. */
3386 s
= bfd_get_section_by_name (abfd
, ".interp");
3387 if (s
!= NULL
&& (s
->flags
& SEC_LOAD
) != 0)
3389 /* If we have a loadable interpreter section, we need a
3390 PT_INTERP segment. In this case, assume we also need a
3391 PT_PHDR segment, although that may not be true for all
3396 if (bfd_get_section_by_name (abfd
, ".dynamic") != NULL
)
3398 /* We need a PT_DYNAMIC segment. */
3402 if (info
!= NULL
&& info
->relro
)
3404 /* We need a PT_GNU_RELRO segment. */
3408 if (elf_tdata (abfd
)->eh_frame_hdr
)
3410 /* We need a PT_GNU_EH_FRAME segment. */
3414 if (elf_tdata (abfd
)->stack_flags
)
3416 /* We need a PT_GNU_STACK segment. */
3420 for (s
= abfd
->sections
; s
!= NULL
; s
= s
->next
)
3422 if ((s
->flags
& SEC_LOAD
) != 0
3423 && CONST_STRNEQ (s
->name
, ".note"))
3425 /* We need a PT_NOTE segment. */
3427 /* Try to create just one PT_NOTE segment
3428 for all adjacent loadable .note* sections.
3429 gABI requires that within a PT_NOTE segment
3430 (and also inside of each SHT_NOTE section)
3431 each note is padded to a multiple of 4 size,
3432 so we check whether the sections are correctly
3434 if (s
->alignment_power
== 2)
3435 while (s
->next
!= NULL
3436 && s
->next
->alignment_power
== 2
3437 && (s
->next
->flags
& SEC_LOAD
) != 0
3438 && CONST_STRNEQ (s
->next
->name
, ".note"))
3443 for (s
= abfd
->sections
; s
!= NULL
; s
= s
->next
)
3445 if (s
->flags
& SEC_THREAD_LOCAL
)
3447 /* We need a PT_TLS segment. */
3453 /* Let the backend count up any program headers it might need. */
3454 bed
= get_elf_backend_data (abfd
);
3455 if (bed
->elf_backend_additional_program_headers
)
3459 a
= (*bed
->elf_backend_additional_program_headers
) (abfd
, info
);
3465 return segs
* bed
->s
->sizeof_phdr
;
3468 /* Find the segment that contains the output_section of section. */
3471 _bfd_elf_find_segment_containing_section (bfd
* abfd
, asection
* section
)
3473 struct elf_segment_map
*m
;
3474 Elf_Internal_Phdr
*p
;
3476 for (m
= elf_tdata (abfd
)->segment_map
,
3477 p
= elf_tdata (abfd
)->phdr
;
3483 for (i
= m
->count
- 1; i
>= 0; i
--)
3484 if (m
->sections
[i
] == section
)
3491 /* Create a mapping from a set of sections to a program segment. */
3493 static struct elf_segment_map
*
3494 make_mapping (bfd
*abfd
,
3495 asection
**sections
,
3500 struct elf_segment_map
*m
;
3505 amt
= sizeof (struct elf_segment_map
);
3506 amt
+= (to
- from
- 1) * sizeof (asection
*);
3507 m
= (struct elf_segment_map
*) bfd_zalloc (abfd
, amt
);
3511 m
->p_type
= PT_LOAD
;
3512 for (i
= from
, hdrpp
= sections
+ from
; i
< to
; i
++, hdrpp
++)
3513 m
->sections
[i
- from
] = *hdrpp
;
3514 m
->count
= to
- from
;
3516 if (from
== 0 && phdr
)
3518 /* Include the headers in the first PT_LOAD segment. */
3519 m
->includes_filehdr
= 1;
3520 m
->includes_phdrs
= 1;
3526 /* Create the PT_DYNAMIC segment, which includes DYNSEC. Returns NULL
3529 struct elf_segment_map
*
3530 _bfd_elf_make_dynamic_segment (bfd
*abfd
, asection
*dynsec
)
3532 struct elf_segment_map
*m
;
3534 m
= (struct elf_segment_map
*) bfd_zalloc (abfd
,
3535 sizeof (struct elf_segment_map
));
3539 m
->p_type
= PT_DYNAMIC
;
3541 m
->sections
[0] = dynsec
;
3546 /* Possibly add or remove segments from the segment map. */
3549 elf_modify_segment_map (bfd
*abfd
,
3550 struct bfd_link_info
*info
,
3551 bfd_boolean remove_empty_load
)
3553 struct elf_segment_map
**m
;
3554 const struct elf_backend_data
*bed
;
3556 /* The placement algorithm assumes that non allocated sections are
3557 not in PT_LOAD segments. We ensure this here by removing such
3558 sections from the segment map. We also remove excluded
3559 sections. Finally, any PT_LOAD segment without sections is
3561 m
= &elf_tdata (abfd
)->segment_map
;
3564 unsigned int i
, new_count
;
3566 for (new_count
= 0, i
= 0; i
< (*m
)->count
; i
++)
3568 if (((*m
)->sections
[i
]->flags
& SEC_EXCLUDE
) == 0
3569 && (((*m
)->sections
[i
]->flags
& SEC_ALLOC
) != 0
3570 || (*m
)->p_type
!= PT_LOAD
))
3572 (*m
)->sections
[new_count
] = (*m
)->sections
[i
];
3576 (*m
)->count
= new_count
;
3578 if (remove_empty_load
&& (*m
)->p_type
== PT_LOAD
&& (*m
)->count
== 0)
3584 bed
= get_elf_backend_data (abfd
);
3585 if (bed
->elf_backend_modify_segment_map
!= NULL
)
3587 if (!(*bed
->elf_backend_modify_segment_map
) (abfd
, info
))
3594 /* Set up a mapping from BFD sections to program segments. */
3597 _bfd_elf_map_sections_to_segments (bfd
*abfd
, struct bfd_link_info
*info
)
3600 struct elf_segment_map
*m
;
3601 asection
**sections
= NULL
;
3602 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
3603 bfd_boolean no_user_phdrs
;
3605 no_user_phdrs
= elf_tdata (abfd
)->segment_map
== NULL
;
3606 if (no_user_phdrs
&& bfd_count_sections (abfd
) != 0)
3610 struct elf_segment_map
*mfirst
;
3611 struct elf_segment_map
**pm
;
3614 unsigned int phdr_index
;
3615 bfd_vma maxpagesize
;
3617 bfd_boolean phdr_in_segment
= TRUE
;
3618 bfd_boolean writable
;
3620 asection
*first_tls
= NULL
;
3621 asection
*dynsec
, *eh_frame_hdr
;
3624 /* Select the allocated sections, and sort them. */
3626 sections
= (asection
**) bfd_malloc2 (bfd_count_sections (abfd
),
3627 sizeof (asection
*));
3628 if (sections
== NULL
)
3632 for (s
= abfd
->sections
; s
!= NULL
; s
= s
->next
)
3634 if ((s
->flags
& SEC_ALLOC
) != 0)
3640 BFD_ASSERT (i
<= bfd_count_sections (abfd
));
3643 qsort (sections
, (size_t) count
, sizeof (asection
*), elf_sort_sections
);
3645 /* Build the mapping. */
3650 /* If we have a .interp section, then create a PT_PHDR segment for
3651 the program headers and a PT_INTERP segment for the .interp
3653 s
= bfd_get_section_by_name (abfd
, ".interp");
3654 if (s
!= NULL
&& (s
->flags
& SEC_LOAD
) != 0)
3656 amt
= sizeof (struct elf_segment_map
);
3657 m
= (struct elf_segment_map
*) bfd_zalloc (abfd
, amt
);
3661 m
->p_type
= PT_PHDR
;
3662 /* FIXME: UnixWare and Solaris set PF_X, Irix 5 does not. */
3663 m
->p_flags
= PF_R
| PF_X
;
3664 m
->p_flags_valid
= 1;
3665 m
->includes_phdrs
= 1;
3670 amt
= sizeof (struct elf_segment_map
);
3671 m
= (struct elf_segment_map
*) bfd_zalloc (abfd
, amt
);
3675 m
->p_type
= PT_INTERP
;
3683 /* Look through the sections. We put sections in the same program
3684 segment when the start of the second section can be placed within
3685 a few bytes of the end of the first section. */
3689 maxpagesize
= bed
->maxpagesize
;
3691 dynsec
= bfd_get_section_by_name (abfd
, ".dynamic");
3693 && (dynsec
->flags
& SEC_LOAD
) == 0)
3696 /* Deal with -Ttext or something similar such that the first section
3697 is not adjacent to the program headers. This is an
3698 approximation, since at this point we don't know exactly how many
3699 program headers we will need. */
3702 bfd_size_type phdr_size
= elf_tdata (abfd
)->program_header_size
;
3704 if (phdr_size
== (bfd_size_type
) -1)
3705 phdr_size
= get_program_header_size (abfd
, info
);
3706 if ((abfd
->flags
& D_PAGED
) == 0
3707 || sections
[0]->lma
< phdr_size
3708 || sections
[0]->lma
% maxpagesize
< phdr_size
% maxpagesize
)
3709 phdr_in_segment
= FALSE
;
3712 for (i
= 0, hdrpp
= sections
; i
< count
; i
++, hdrpp
++)
3715 bfd_boolean new_segment
;
3719 /* See if this section and the last one will fit in the same
3722 if (last_hdr
== NULL
)
3724 /* If we don't have a segment yet, then we don't need a new
3725 one (we build the last one after this loop). */
3726 new_segment
= FALSE
;
3728 else if (last_hdr
->lma
- last_hdr
->vma
!= hdr
->lma
- hdr
->vma
)
3730 /* If this section has a different relation between the
3731 virtual address and the load address, then we need a new
3735 /* In the next test we have to be careful when last_hdr->lma is close
3736 to the end of the address space. If the aligned address wraps
3737 around to the start of the address space, then there are no more
3738 pages left in memory and it is OK to assume that the current
3739 section can be included in the current segment. */
3740 else if ((BFD_ALIGN (last_hdr
->lma
+ last_size
, maxpagesize
) + maxpagesize
3742 && (BFD_ALIGN (last_hdr
->lma
+ last_size
, maxpagesize
) + maxpagesize
3745 /* If putting this section in this segment would force us to
3746 skip a page in the segment, then we need a new segment. */
3749 else if ((last_hdr
->flags
& (SEC_LOAD
| SEC_THREAD_LOCAL
)) == 0
3750 && (hdr
->flags
& (SEC_LOAD
| SEC_THREAD_LOCAL
)) != 0)
3752 /* We don't want to put a loadable section after a
3753 nonloadable section in the same segment.
3754 Consider .tbss sections as loadable for this purpose. */
3757 else if ((abfd
->flags
& D_PAGED
) == 0)
3759 /* If the file is not demand paged, which means that we
3760 don't require the sections to be correctly aligned in the
3761 file, then there is no other reason for a new segment. */
3762 new_segment
= FALSE
;
3765 && (hdr
->flags
& SEC_READONLY
) == 0
3766 && (((last_hdr
->lma
+ last_size
- 1)
3767 & ~(maxpagesize
- 1))
3768 != (hdr
->lma
& ~(maxpagesize
- 1))))
3770 /* We don't want to put a writable section in a read only
3771 segment, unless they are on the same page in memory
3772 anyhow. We already know that the last section does not
3773 bring us past the current section on the page, so the
3774 only case in which the new section is not on the same
3775 page as the previous section is when the previous section
3776 ends precisely on a page boundary. */
3781 /* Otherwise, we can use the same segment. */
3782 new_segment
= FALSE
;
3785 /* Allow interested parties a chance to override our decision. */
3786 if (last_hdr
!= NULL
3788 && info
->callbacks
->override_segment_assignment
!= NULL
)
3790 = info
->callbacks
->override_segment_assignment (info
, abfd
, hdr
,
3796 if ((hdr
->flags
& SEC_READONLY
) == 0)
3799 /* .tbss sections effectively have zero size. */
3800 if ((hdr
->flags
& (SEC_THREAD_LOCAL
| SEC_LOAD
))
3801 != SEC_THREAD_LOCAL
)
3802 last_size
= hdr
->size
;
3808 /* We need a new program segment. We must create a new program
3809 header holding all the sections from phdr_index until hdr. */
3811 m
= make_mapping (abfd
, sections
, phdr_index
, i
, phdr_in_segment
);
3818 if ((hdr
->flags
& SEC_READONLY
) == 0)
3824 /* .tbss sections effectively have zero size. */
3825 if ((hdr
->flags
& (SEC_THREAD_LOCAL
| SEC_LOAD
)) != SEC_THREAD_LOCAL
)
3826 last_size
= hdr
->size
;
3830 phdr_in_segment
= FALSE
;
3833 /* Create a final PT_LOAD program segment. */
3834 if (last_hdr
!= NULL
)
3836 m
= make_mapping (abfd
, sections
, phdr_index
, i
, phdr_in_segment
);
3844 /* If there is a .dynamic section, throw in a PT_DYNAMIC segment. */
3847 m
= _bfd_elf_make_dynamic_segment (abfd
, dynsec
);
3854 /* For each batch of consecutive loadable .note sections,
3855 add a PT_NOTE segment. We don't use bfd_get_section_by_name,
3856 because if we link together nonloadable .note sections and
3857 loadable .note sections, we will generate two .note sections
3858 in the output file. FIXME: Using names for section types is
3860 for (s
= abfd
->sections
; s
!= NULL
; s
= s
->next
)
3862 if ((s
->flags
& SEC_LOAD
) != 0
3863 && CONST_STRNEQ (s
->name
, ".note"))
3868 amt
= sizeof (struct elf_segment_map
);
3869 if (s
->alignment_power
== 2)
3870 for (s2
= s
; s2
->next
!= NULL
; s2
= s2
->next
)
3872 if (s2
->next
->alignment_power
== 2
3873 && (s2
->next
->flags
& SEC_LOAD
) != 0
3874 && CONST_STRNEQ (s2
->next
->name
, ".note")
3875 && align_power (s2
->vma
+ s2
->size
, 2)
3881 amt
+= (count
- 1) * sizeof (asection
*);
3882 m
= (struct elf_segment_map
*) bfd_zalloc (abfd
, amt
);
3886 m
->p_type
= PT_NOTE
;
3890 m
->sections
[m
->count
- count
--] = s
;
3891 BFD_ASSERT ((s
->flags
& SEC_THREAD_LOCAL
) == 0);
3894 m
->sections
[m
->count
- 1] = s
;
3895 BFD_ASSERT ((s
->flags
& SEC_THREAD_LOCAL
) == 0);
3899 if (s
->flags
& SEC_THREAD_LOCAL
)
3907 /* If there are any SHF_TLS output sections, add PT_TLS segment. */
3910 amt
= sizeof (struct elf_segment_map
);
3911 amt
+= (tls_count
- 1) * sizeof (asection
*);
3912 m
= (struct elf_segment_map
*) bfd_zalloc (abfd
, amt
);
3917 m
->count
= tls_count
;
3918 /* Mandated PF_R. */
3920 m
->p_flags_valid
= 1;
3921 for (i
= 0; i
< (unsigned int) tls_count
; ++i
)
3923 BFD_ASSERT (first_tls
->flags
& SEC_THREAD_LOCAL
);
3924 m
->sections
[i
] = first_tls
;
3925 first_tls
= first_tls
->next
;
3932 /* If there is a .eh_frame_hdr section, throw in a PT_GNU_EH_FRAME
3934 eh_frame_hdr
= elf_tdata (abfd
)->eh_frame_hdr
;
3935 if (eh_frame_hdr
!= NULL
3936 && (eh_frame_hdr
->output_section
->flags
& SEC_LOAD
) != 0)
3938 amt
= sizeof (struct elf_segment_map
);
3939 m
= (struct elf_segment_map
*) bfd_zalloc (abfd
, amt
);
3943 m
->p_type
= PT_GNU_EH_FRAME
;
3945 m
->sections
[0] = eh_frame_hdr
->output_section
;
3951 if (elf_tdata (abfd
)->stack_flags
)
3953 amt
= sizeof (struct elf_segment_map
);
3954 m
= (struct elf_segment_map
*) bfd_zalloc (abfd
, amt
);
3958 m
->p_type
= PT_GNU_STACK
;
3959 m
->p_flags
= elf_tdata (abfd
)->stack_flags
;
3960 m
->p_flags_valid
= 1;
3966 if (info
!= NULL
&& info
->relro
)
3968 for (m
= mfirst
; m
!= NULL
; m
= m
->next
)
3970 if (m
->p_type
== PT_LOAD
)
3972 asection
*last
= m
->sections
[m
->count
- 1];
3973 bfd_vma vaddr
= m
->sections
[0]->vma
;
3974 bfd_vma filesz
= last
->vma
- vaddr
+ last
->size
;
3976 if (vaddr
< info
->relro_end
3977 && vaddr
>= info
->relro_start
3978 && (vaddr
+ filesz
) >= info
->relro_end
)
3983 /* Make a PT_GNU_RELRO segment only when it isn't empty. */
3986 amt
= sizeof (struct elf_segment_map
);
3987 m
= (struct elf_segment_map
*) bfd_zalloc (abfd
, amt
);
3991 m
->p_type
= PT_GNU_RELRO
;
3993 m
->p_flags_valid
= 1;
4001 elf_tdata (abfd
)->segment_map
= mfirst
;
4004 if (!elf_modify_segment_map (abfd
, info
, no_user_phdrs
))
4007 for (count
= 0, m
= elf_tdata (abfd
)->segment_map
; m
!= NULL
; m
= m
->next
)
4009 elf_tdata (abfd
)->program_header_size
= count
* bed
->s
->sizeof_phdr
;
4014 if (sections
!= NULL
)
4019 /* Sort sections by address. */
4022 elf_sort_sections (const void *arg1
, const void *arg2
)
4024 const asection
*sec1
= *(const asection
**) arg1
;
4025 const asection
*sec2
= *(const asection
**) arg2
;
4026 bfd_size_type size1
, size2
;
4028 /* Sort by LMA first, since this is the address used to
4029 place the section into a segment. */
4030 if (sec1
->lma
< sec2
->lma
)
4032 else if (sec1
->lma
> sec2
->lma
)
4035 /* Then sort by VMA. Normally the LMA and the VMA will be
4036 the same, and this will do nothing. */
4037 if (sec1
->vma
< sec2
->vma
)
4039 else if (sec1
->vma
> sec2
->vma
)
4042 /* Put !SEC_LOAD sections after SEC_LOAD ones. */
4044 #define TOEND(x) (((x)->flags & (SEC_LOAD | SEC_THREAD_LOCAL)) == 0)
4050 /* If the indicies are the same, do not return 0
4051 here, but continue to try the next comparison. */
4052 if (sec1
->target_index
- sec2
->target_index
!= 0)
4053 return sec1
->target_index
- sec2
->target_index
;
4058 else if (TOEND (sec2
))
4063 /* Sort by size, to put zero sized sections
4064 before others at the same address. */
4066 size1
= (sec1
->flags
& SEC_LOAD
) ? sec1
->size
: 0;
4067 size2
= (sec2
->flags
& SEC_LOAD
) ? sec2
->size
: 0;
4074 return sec1
->target_index
- sec2
->target_index
;
4077 /* Ian Lance Taylor writes:
4079 We shouldn't be using % with a negative signed number. That's just
4080 not good. We have to make sure either that the number is not
4081 negative, or that the number has an unsigned type. When the types
4082 are all the same size they wind up as unsigned. When file_ptr is a
4083 larger signed type, the arithmetic winds up as signed long long,
4086 What we're trying to say here is something like ``increase OFF by
4087 the least amount that will cause it to be equal to the VMA modulo
4089 /* In other words, something like:
4091 vma_offset = m->sections[0]->vma % bed->maxpagesize;
4092 off_offset = off % bed->maxpagesize;
4093 if (vma_offset < off_offset)
4094 adjustment = vma_offset + bed->maxpagesize - off_offset;
4096 adjustment = vma_offset - off_offset;
4098 which can can be collapsed into the expression below. */
4101 vma_page_aligned_bias (bfd_vma vma
, ufile_ptr off
, bfd_vma maxpagesize
)
4103 return ((vma
- off
) % maxpagesize
);
4107 print_segment_map (const struct elf_segment_map
*m
)
4110 const char *pt
= get_segment_type (m
->p_type
);
4115 if (m
->p_type
>= PT_LOPROC
&& m
->p_type
<= PT_HIPROC
)
4116 sprintf (buf
, "LOPROC+%7.7x",
4117 (unsigned int) (m
->p_type
- PT_LOPROC
));
4118 else if (m
->p_type
>= PT_LOOS
&& m
->p_type
<= PT_HIOS
)
4119 sprintf (buf
, "LOOS+%7.7x",
4120 (unsigned int) (m
->p_type
- PT_LOOS
));
4122 snprintf (buf
, sizeof (buf
), "%8.8x",
4123 (unsigned int) m
->p_type
);
4126 fprintf (stderr
, "%s:", pt
);
4127 for (j
= 0; j
< m
->count
; j
++)
4128 fprintf (stderr
, " %s", m
->sections
[j
]->name
);
4133 write_zeros (bfd
*abfd
, file_ptr pos
, bfd_size_type len
)
4138 if (bfd_seek (abfd
, pos
, SEEK_SET
) != 0)
4140 buf
= bfd_zmalloc (len
);
4143 ret
= bfd_bwrite (buf
, len
, abfd
) == len
;
4148 /* Assign file positions to the sections based on the mapping from
4149 sections to segments. This function also sets up some fields in
4153 assign_file_positions_for_load_sections (bfd
*abfd
,
4154 struct bfd_link_info
*link_info
)
4156 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
4157 struct elf_segment_map
*m
;
4158 Elf_Internal_Phdr
*phdrs
;
4159 Elf_Internal_Phdr
*p
;
4161 bfd_size_type maxpagesize
;
4164 bfd_vma header_pad
= 0;
4166 if (link_info
== NULL
4167 && !_bfd_elf_map_sections_to_segments (abfd
, link_info
))
4171 for (m
= elf_tdata (abfd
)->segment_map
; m
!= NULL
; m
= m
->next
)
4175 header_pad
= m
->header_size
;
4178 elf_elfheader (abfd
)->e_phoff
= bed
->s
->sizeof_ehdr
;
4179 elf_elfheader (abfd
)->e_phentsize
= bed
->s
->sizeof_phdr
;
4180 elf_elfheader (abfd
)->e_phnum
= alloc
;
4182 if (elf_tdata (abfd
)->program_header_size
== (bfd_size_type
) -1)
4183 elf_tdata (abfd
)->program_header_size
= alloc
* bed
->s
->sizeof_phdr
;
4185 BFD_ASSERT (elf_tdata (abfd
)->program_header_size
4186 >= alloc
* bed
->s
->sizeof_phdr
);
4190 elf_tdata (abfd
)->next_file_pos
= bed
->s
->sizeof_ehdr
;
4194 /* We're writing the size in elf_tdata (abfd)->program_header_size,
4195 see assign_file_positions_except_relocs, so make sure we have
4196 that amount allocated, with trailing space cleared.
4197 The variable alloc contains the computed need, while elf_tdata
4198 (abfd)->program_header_size contains the size used for the
4200 See ld/emultempl/elf-generic.em:gld${EMULATION_NAME}_map_segments
4201 where the layout is forced to according to a larger size in the
4202 last iterations for the testcase ld-elf/header. */
4203 BFD_ASSERT (elf_tdata (abfd
)->program_header_size
% bed
->s
->sizeof_phdr
4205 phdrs
= (Elf_Internal_Phdr
*)
4207 (elf_tdata (abfd
)->program_header_size
/ bed
->s
->sizeof_phdr
),
4208 sizeof (Elf_Internal_Phdr
));
4209 elf_tdata (abfd
)->phdr
= phdrs
;
4214 if ((abfd
->flags
& D_PAGED
) != 0)
4215 maxpagesize
= bed
->maxpagesize
;
4217 off
= bed
->s
->sizeof_ehdr
;
4218 off
+= alloc
* bed
->s
->sizeof_phdr
;
4219 if (header_pad
< (bfd_vma
) off
)
4225 for (m
= elf_tdata (abfd
)->segment_map
, p
= phdrs
, j
= 0;
4227 m
= m
->next
, p
++, j
++)
4231 bfd_boolean no_contents
;
4233 /* If elf_segment_map is not from map_sections_to_segments, the
4234 sections may not be correctly ordered. NOTE: sorting should
4235 not be done to the PT_NOTE section of a corefile, which may
4236 contain several pseudo-sections artificially created by bfd.
4237 Sorting these pseudo-sections breaks things badly. */
4239 && !(elf_elfheader (abfd
)->e_type
== ET_CORE
4240 && m
->p_type
== PT_NOTE
))
4241 qsort (m
->sections
, (size_t) m
->count
, sizeof (asection
*),
4244 /* An ELF segment (described by Elf_Internal_Phdr) may contain a
4245 number of sections with contents contributing to both p_filesz
4246 and p_memsz, followed by a number of sections with no contents
4247 that just contribute to p_memsz. In this loop, OFF tracks next
4248 available file offset for PT_LOAD and PT_NOTE segments. */
4249 p
->p_type
= m
->p_type
;
4250 p
->p_flags
= m
->p_flags
;
4255 p
->p_vaddr
= m
->sections
[0]->vma
- m
->p_vaddr_offset
;
4257 if (m
->p_paddr_valid
)
4258 p
->p_paddr
= m
->p_paddr
;
4259 else if (m
->count
== 0)
4262 p
->p_paddr
= m
->sections
[0]->lma
- m
->p_vaddr_offset
;
4264 if (p
->p_type
== PT_LOAD
4265 && (abfd
->flags
& D_PAGED
) != 0)
4267 /* p_align in demand paged PT_LOAD segments effectively stores
4268 the maximum page size. When copying an executable with
4269 objcopy, we set m->p_align from the input file. Use this
4270 value for maxpagesize rather than bed->maxpagesize, which
4271 may be different. Note that we use maxpagesize for PT_TLS
4272 segment alignment later in this function, so we are relying
4273 on at least one PT_LOAD segment appearing before a PT_TLS
4275 if (m
->p_align_valid
)
4276 maxpagesize
= m
->p_align
;
4278 p
->p_align
= maxpagesize
;
4280 else if (m
->p_align_valid
)
4281 p
->p_align
= m
->p_align
;
4282 else if (m
->count
== 0)
4283 p
->p_align
= 1 << bed
->s
->log_file_align
;
4287 no_contents
= FALSE
;
4289 if (p
->p_type
== PT_LOAD
4292 bfd_size_type align
;
4293 unsigned int align_power
= 0;
4295 if (m
->p_align_valid
)
4299 for (i
= 0, secpp
= m
->sections
; i
< m
->count
; i
++, secpp
++)
4301 unsigned int secalign
;
4303 secalign
= bfd_get_section_alignment (abfd
, *secpp
);
4304 if (secalign
> align_power
)
4305 align_power
= secalign
;
4307 align
= (bfd_size_type
) 1 << align_power
;
4308 if (align
< maxpagesize
)
4309 align
= maxpagesize
;
4312 for (i
= 0; i
< m
->count
; i
++)
4313 if ((m
->sections
[i
]->flags
& (SEC_LOAD
| SEC_HAS_CONTENTS
)) == 0)
4314 /* If we aren't making room for this section, then
4315 it must be SHT_NOBITS regardless of what we've
4316 set via struct bfd_elf_special_section. */
4317 elf_section_type (m
->sections
[i
]) = SHT_NOBITS
;
4319 /* Find out whether this segment contains any loadable
4322 for (i
= 0; i
< m
->count
; i
++)
4323 if (elf_section_type (m
->sections
[i
]) != SHT_NOBITS
)
4325 no_contents
= FALSE
;
4329 off_adjust
= vma_page_aligned_bias (m
->sections
[0]->vma
, off
, align
);
4333 /* We shouldn't need to align the segment on disk since
4334 the segment doesn't need file space, but the gABI
4335 arguably requires the alignment and glibc ld.so
4336 checks it. So to comply with the alignment
4337 requirement but not waste file space, we adjust
4338 p_offset for just this segment. (OFF_ADJUST is
4339 subtracted from OFF later.) This may put p_offset
4340 past the end of file, but that shouldn't matter. */
4345 /* Make sure the .dynamic section is the first section in the
4346 PT_DYNAMIC segment. */
4347 else if (p
->p_type
== PT_DYNAMIC
4349 && strcmp (m
->sections
[0]->name
, ".dynamic") != 0)
4352 (_("%B: The first section in the PT_DYNAMIC segment is not the .dynamic section"),
4354 bfd_set_error (bfd_error_bad_value
);
4357 /* Set the note section type to SHT_NOTE. */
4358 else if (p
->p_type
== PT_NOTE
)
4359 for (i
= 0; i
< m
->count
; i
++)
4360 elf_section_type (m
->sections
[i
]) = SHT_NOTE
;
4366 if (m
->includes_filehdr
)
4368 if (!m
->p_flags_valid
)
4370 p
->p_filesz
= bed
->s
->sizeof_ehdr
;
4371 p
->p_memsz
= bed
->s
->sizeof_ehdr
;
4374 BFD_ASSERT (p
->p_type
== PT_LOAD
);
4376 if (p
->p_vaddr
< (bfd_vma
) off
)
4378 (*_bfd_error_handler
)
4379 (_("%B: Not enough room for program headers, try linking with -N"),
4381 bfd_set_error (bfd_error_bad_value
);
4386 if (!m
->p_paddr_valid
)
4391 if (m
->includes_phdrs
)
4393 if (!m
->p_flags_valid
)
4396 if (!m
->includes_filehdr
)
4398 p
->p_offset
= bed
->s
->sizeof_ehdr
;
4402 BFD_ASSERT (p
->p_type
== PT_LOAD
);
4403 p
->p_vaddr
-= off
- p
->p_offset
;
4404 if (!m
->p_paddr_valid
)
4405 p
->p_paddr
-= off
- p
->p_offset
;
4409 p
->p_filesz
+= alloc
* bed
->s
->sizeof_phdr
;
4410 p
->p_memsz
+= alloc
* bed
->s
->sizeof_phdr
;
4413 p
->p_filesz
+= header_pad
;
4414 p
->p_memsz
+= header_pad
;
4418 if (p
->p_type
== PT_LOAD
4419 || (p
->p_type
== PT_NOTE
&& bfd_get_format (abfd
) == bfd_core
))
4421 if (!m
->includes_filehdr
&& !m
->includes_phdrs
)
4427 adjust
= off
- (p
->p_offset
+ p
->p_filesz
);
4429 p
->p_filesz
+= adjust
;
4430 p
->p_memsz
+= adjust
;
4434 /* Set up p_filesz, p_memsz, p_align and p_flags from the section
4435 maps. Set filepos for sections in PT_LOAD segments, and in
4436 core files, for sections in PT_NOTE segments.
4437 assign_file_positions_for_non_load_sections will set filepos
4438 for other sections and update p_filesz for other segments. */
4439 for (i
= 0, secpp
= m
->sections
; i
< m
->count
; i
++, secpp
++)
4442 bfd_size_type align
;
4443 Elf_Internal_Shdr
*this_hdr
;
4446 this_hdr
= &elf_section_data (sec
)->this_hdr
;
4447 align
= (bfd_size_type
) 1 << bfd_get_section_alignment (abfd
, sec
);
4449 if ((p
->p_type
== PT_LOAD
4450 || p
->p_type
== PT_TLS
)
4451 && (this_hdr
->sh_type
!= SHT_NOBITS
4452 || ((this_hdr
->sh_flags
& SHF_ALLOC
) != 0
4453 && ((this_hdr
->sh_flags
& SHF_TLS
) == 0
4454 || p
->p_type
== PT_TLS
))))
4456 bfd_vma adjust
= sec
->lma
- (p
->p_paddr
+ p
->p_memsz
);
4458 if (sec
->lma
< p
->p_paddr
+ p
->p_memsz
)
4460 (*_bfd_error_handler
)
4461 (_("%B: section %A lma 0x%lx overlaps previous sections"),
4462 abfd
, sec
, (unsigned long) sec
->lma
);
4464 sec
->lma
= p
->p_paddr
+ p
->p_memsz
;
4466 p
->p_memsz
+= adjust
;
4468 if (this_hdr
->sh_type
!= SHT_NOBITS
)
4470 if (p
->p_filesz
+ adjust
< p
->p_memsz
)
4472 /* We have a PROGBITS section following NOBITS ones.
4473 Allocate file space for the NOBITS section(s) and
4475 adjust
= p
->p_memsz
- p
->p_filesz
;
4476 if (!write_zeros (abfd
, off
, adjust
))
4480 p
->p_filesz
+= adjust
;
4484 if (p
->p_type
== PT_NOTE
&& bfd_get_format (abfd
) == bfd_core
)
4486 /* The section at i == 0 is the one that actually contains
4490 this_hdr
->sh_offset
= sec
->filepos
= off
;
4491 off
+= this_hdr
->sh_size
;
4492 p
->p_filesz
= this_hdr
->sh_size
;
4498 /* The rest are fake sections that shouldn't be written. */
4507 if (p
->p_type
== PT_LOAD
)
4509 this_hdr
->sh_offset
= sec
->filepos
= off
;
4510 if (this_hdr
->sh_type
!= SHT_NOBITS
)
4511 off
+= this_hdr
->sh_size
;
4514 if (this_hdr
->sh_type
!= SHT_NOBITS
)
4516 p
->p_filesz
+= this_hdr
->sh_size
;
4517 /* A load section without SHF_ALLOC is something like
4518 a note section in a PT_NOTE segment. These take
4519 file space but are not loaded into memory. */
4520 if ((this_hdr
->sh_flags
& SHF_ALLOC
) != 0)
4521 p
->p_memsz
+= this_hdr
->sh_size
;
4523 else if ((this_hdr
->sh_flags
& SHF_ALLOC
) != 0)
4525 if (p
->p_type
== PT_TLS
)
4526 p
->p_memsz
+= this_hdr
->sh_size
;
4528 /* .tbss is special. It doesn't contribute to p_memsz of
4530 else if ((this_hdr
->sh_flags
& SHF_TLS
) == 0)
4531 p
->p_memsz
+= this_hdr
->sh_size
;
4534 if (align
> p
->p_align
4535 && !m
->p_align_valid
4536 && (p
->p_type
!= PT_LOAD
4537 || (abfd
->flags
& D_PAGED
) == 0))
4541 if (!m
->p_flags_valid
)
4544 if ((this_hdr
->sh_flags
& SHF_EXECINSTR
) != 0)
4546 if ((this_hdr
->sh_flags
& SHF_WRITE
) != 0)
4552 /* Check that all sections are in a PT_LOAD segment.
4553 Don't check funky gdb generated core files. */
4554 if (p
->p_type
== PT_LOAD
&& bfd_get_format (abfd
) != bfd_core
)
4556 bfd_boolean check_vma
= TRUE
;
4558 for (i
= 1; i
< m
->count
; i
++)
4559 if (m
->sections
[i
]->vma
== m
->sections
[i
- 1]->vma
4560 && ELF_SECTION_SIZE (&(elf_section_data (m
->sections
[i
])
4561 ->this_hdr
), p
) != 0
4562 && ELF_SECTION_SIZE (&(elf_section_data (m
->sections
[i
- 1])
4563 ->this_hdr
), p
) != 0)
4565 /* Looks like we have overlays packed into the segment. */
4570 for (i
= 0; i
< m
->count
; i
++)
4572 Elf_Internal_Shdr
*this_hdr
;
4575 sec
= m
->sections
[i
];
4576 this_hdr
= &(elf_section_data(sec
)->this_hdr
);
4577 if (this_hdr
->sh_size
!= 0
4578 && !ELF_SECTION_IN_SEGMENT_1 (this_hdr
, p
, check_vma
))
4580 (*_bfd_error_handler
)
4581 (_("%B: section `%A' can't be allocated in segment %d"),
4583 print_segment_map (m
);
4589 elf_tdata (abfd
)->next_file_pos
= off
;
4593 /* Assign file positions for the other sections. */
4596 assign_file_positions_for_non_load_sections (bfd
*abfd
,
4597 struct bfd_link_info
*link_info
)
4599 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
4600 Elf_Internal_Shdr
**i_shdrpp
;
4601 Elf_Internal_Shdr
**hdrpp
;
4602 Elf_Internal_Phdr
*phdrs
;
4603 Elf_Internal_Phdr
*p
;
4604 struct elf_segment_map
*m
;
4605 bfd_vma filehdr_vaddr
, filehdr_paddr
;
4606 bfd_vma phdrs_vaddr
, phdrs_paddr
;
4608 unsigned int num_sec
;
4612 i_shdrpp
= elf_elfsections (abfd
);
4613 num_sec
= elf_numsections (abfd
);
4614 off
= elf_tdata (abfd
)->next_file_pos
;
4615 for (i
= 1, hdrpp
= i_shdrpp
+ 1; i
< num_sec
; i
++, hdrpp
++)
4617 struct elf_obj_tdata
*tdata
= elf_tdata (abfd
);
4618 Elf_Internal_Shdr
*hdr
;
4621 if (hdr
->bfd_section
!= NULL
4622 && (hdr
->bfd_section
->filepos
!= 0
4623 || (hdr
->sh_type
== SHT_NOBITS
4624 && hdr
->contents
== NULL
)))
4625 BFD_ASSERT (hdr
->sh_offset
== hdr
->bfd_section
->filepos
);
4626 else if ((hdr
->sh_flags
& SHF_ALLOC
) != 0)
4628 if (hdr
->sh_size
!= 0)
4629 ((*_bfd_error_handler
)
4630 (_("%B: warning: allocated section `%s' not in segment"),
4632 (hdr
->bfd_section
== NULL
4634 : hdr
->bfd_section
->name
)));
4635 /* We don't need to page align empty sections. */
4636 if ((abfd
->flags
& D_PAGED
) != 0 && hdr
->sh_size
!= 0)
4637 off
+= vma_page_aligned_bias (hdr
->sh_addr
, off
,
4640 off
+= vma_page_aligned_bias (hdr
->sh_addr
, off
,
4642 off
= _bfd_elf_assign_file_position_for_section (hdr
, off
,
4645 else if (((hdr
->sh_type
== SHT_REL
|| hdr
->sh_type
== SHT_RELA
)
4646 && hdr
->bfd_section
== NULL
)
4647 || hdr
== i_shdrpp
[tdata
->symtab_section
]
4648 || hdr
== i_shdrpp
[tdata
->symtab_shndx_section
]
4649 || hdr
== i_shdrpp
[tdata
->strtab_section
])
4650 hdr
->sh_offset
= -1;
4652 off
= _bfd_elf_assign_file_position_for_section (hdr
, off
, TRUE
);
4655 /* Now that we have set the section file positions, we can set up
4656 the file positions for the non PT_LOAD segments. */
4660 phdrs_vaddr
= bed
->maxpagesize
+ bed
->s
->sizeof_ehdr
;
4662 phdrs
= elf_tdata (abfd
)->phdr
;
4663 for (m
= elf_tdata (abfd
)->segment_map
, p
= phdrs
;
4668 if (p
->p_type
!= PT_LOAD
)
4671 if (m
->includes_filehdr
)
4673 filehdr_vaddr
= p
->p_vaddr
;
4674 filehdr_paddr
= p
->p_paddr
;
4676 if (m
->includes_phdrs
)
4678 phdrs_vaddr
= p
->p_vaddr
;
4679 phdrs_paddr
= p
->p_paddr
;
4680 if (m
->includes_filehdr
)
4682 phdrs_vaddr
+= bed
->s
->sizeof_ehdr
;
4683 phdrs_paddr
+= bed
->s
->sizeof_ehdr
;
4688 for (m
= elf_tdata (abfd
)->segment_map
, p
= phdrs
;
4692 if (p
->p_type
== PT_GNU_RELRO
)
4694 const Elf_Internal_Phdr
*lp
;
4696 BFD_ASSERT (!m
->includes_filehdr
&& !m
->includes_phdrs
);
4698 if (link_info
!= NULL
)
4700 /* During linking the range of the RELRO segment is passed
4702 for (lp
= phdrs
; lp
< phdrs
+ count
; ++lp
)
4704 if (lp
->p_type
== PT_LOAD
4705 && lp
->p_vaddr
>= link_info
->relro_start
4706 && lp
->p_vaddr
< link_info
->relro_end
4707 && lp
->p_vaddr
+ lp
->p_filesz
>= link_info
->relro_end
)
4713 /* Otherwise we are copying an executable or shared
4714 library, but we need to use the same linker logic. */
4715 for (lp
= phdrs
; lp
< phdrs
+ count
; ++lp
)
4717 if (lp
->p_type
== PT_LOAD
4718 && lp
->p_paddr
== p
->p_paddr
)
4723 if (lp
< phdrs
+ count
)
4725 p
->p_vaddr
= lp
->p_vaddr
;
4726 p
->p_paddr
= lp
->p_paddr
;
4727 p
->p_offset
= lp
->p_offset
;
4728 if (link_info
!= NULL
)
4729 p
->p_filesz
= link_info
->relro_end
- lp
->p_vaddr
;
4730 else if (m
->p_size_valid
)
4731 p
->p_filesz
= m
->p_size
;
4734 p
->p_memsz
= p
->p_filesz
;
4736 p
->p_flags
= (lp
->p_flags
& ~PF_W
);
4740 memset (p
, 0, sizeof *p
);
4741 p
->p_type
= PT_NULL
;
4744 else if (m
->count
!= 0)
4746 if (p
->p_type
!= PT_LOAD
4747 && (p
->p_type
!= PT_NOTE
4748 || bfd_get_format (abfd
) != bfd_core
))
4750 Elf_Internal_Shdr
*hdr
;
4753 BFD_ASSERT (!m
->includes_filehdr
&& !m
->includes_phdrs
);
4755 sect
= m
->sections
[m
->count
- 1];
4756 hdr
= &elf_section_data (sect
)->this_hdr
;
4757 p
->p_filesz
= sect
->filepos
- m
->sections
[0]->filepos
;
4758 if (hdr
->sh_type
!= SHT_NOBITS
)
4759 p
->p_filesz
+= hdr
->sh_size
;
4760 p
->p_offset
= m
->sections
[0]->filepos
;
4763 else if (m
->includes_filehdr
)
4765 p
->p_vaddr
= filehdr_vaddr
;
4766 if (! m
->p_paddr_valid
)
4767 p
->p_paddr
= filehdr_paddr
;
4769 else if (m
->includes_phdrs
)
4771 p
->p_vaddr
= phdrs_vaddr
;
4772 if (! m
->p_paddr_valid
)
4773 p
->p_paddr
= phdrs_paddr
;
4777 elf_tdata (abfd
)->next_file_pos
= off
;
4782 /* Work out the file positions of all the sections. This is called by
4783 _bfd_elf_compute_section_file_positions. All the section sizes and
4784 VMAs must be known before this is called.
4786 Reloc sections come in two flavours: Those processed specially as
4787 "side-channel" data attached to a section to which they apply, and
4788 those that bfd doesn't process as relocations. The latter sort are
4789 stored in a normal bfd section by bfd_section_from_shdr. We don't
4790 consider the former sort here, unless they form part of the loadable
4791 image. Reloc sections not assigned here will be handled later by
4792 assign_file_positions_for_relocs.
4794 We also don't set the positions of the .symtab and .strtab here. */
4797 assign_file_positions_except_relocs (bfd
*abfd
,
4798 struct bfd_link_info
*link_info
)
4800 struct elf_obj_tdata
*tdata
= elf_tdata (abfd
);
4801 Elf_Internal_Ehdr
*i_ehdrp
= elf_elfheader (abfd
);
4803 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
4805 if ((abfd
->flags
& (EXEC_P
| DYNAMIC
)) == 0
4806 && bfd_get_format (abfd
) != bfd_core
)
4808 Elf_Internal_Shdr
** const i_shdrpp
= elf_elfsections (abfd
);
4809 unsigned int num_sec
= elf_numsections (abfd
);
4810 Elf_Internal_Shdr
**hdrpp
;
4813 /* Start after the ELF header. */
4814 off
= i_ehdrp
->e_ehsize
;
4816 /* We are not creating an executable, which means that we are
4817 not creating a program header, and that the actual order of
4818 the sections in the file is unimportant. */
4819 for (i
= 1, hdrpp
= i_shdrpp
+ 1; i
< num_sec
; i
++, hdrpp
++)
4821 Elf_Internal_Shdr
*hdr
;
4824 if (((hdr
->sh_type
== SHT_REL
|| hdr
->sh_type
== SHT_RELA
)
4825 && hdr
->bfd_section
== NULL
)
4826 || i
== tdata
->symtab_section
4827 || i
== tdata
->symtab_shndx_section
4828 || i
== tdata
->strtab_section
)
4830 hdr
->sh_offset
= -1;
4833 off
= _bfd_elf_assign_file_position_for_section (hdr
, off
, TRUE
);
4840 /* Assign file positions for the loaded sections based on the
4841 assignment of sections to segments. */
4842 if (!assign_file_positions_for_load_sections (abfd
, link_info
))
4845 /* And for non-load sections. */
4846 if (!assign_file_positions_for_non_load_sections (abfd
, link_info
))
4849 if (bed
->elf_backend_modify_program_headers
!= NULL
)
4851 if (!(*bed
->elf_backend_modify_program_headers
) (abfd
, link_info
))
4855 /* Write out the program headers. */
4856 alloc
= tdata
->program_header_size
/ bed
->s
->sizeof_phdr
;
4857 if (bfd_seek (abfd
, (bfd_signed_vma
) bed
->s
->sizeof_ehdr
, SEEK_SET
) != 0
4858 || bed
->s
->write_out_phdrs (abfd
, tdata
->phdr
, alloc
) != 0)
4861 off
= tdata
->next_file_pos
;
4864 /* Place the section headers. */
4865 off
= align_file_position (off
, 1 << bed
->s
->log_file_align
);
4866 i_ehdrp
->e_shoff
= off
;
4867 off
+= i_ehdrp
->e_shnum
* i_ehdrp
->e_shentsize
;
4869 tdata
->next_file_pos
= off
;
4875 prep_headers (bfd
*abfd
)
4877 Elf_Internal_Ehdr
*i_ehdrp
; /* Elf file header, internal form. */
4878 struct elf_strtab_hash
*shstrtab
;
4879 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
4881 i_ehdrp
= elf_elfheader (abfd
);
4883 shstrtab
= _bfd_elf_strtab_init ();
4884 if (shstrtab
== NULL
)
4887 elf_shstrtab (abfd
) = shstrtab
;
4889 i_ehdrp
->e_ident
[EI_MAG0
] = ELFMAG0
;
4890 i_ehdrp
->e_ident
[EI_MAG1
] = ELFMAG1
;
4891 i_ehdrp
->e_ident
[EI_MAG2
] = ELFMAG2
;
4892 i_ehdrp
->e_ident
[EI_MAG3
] = ELFMAG3
;
4894 i_ehdrp
->e_ident
[EI_CLASS
] = bed
->s
->elfclass
;
4895 i_ehdrp
->e_ident
[EI_DATA
] =
4896 bfd_big_endian (abfd
) ? ELFDATA2MSB
: ELFDATA2LSB
;
4897 i_ehdrp
->e_ident
[EI_VERSION
] = bed
->s
->ev_current
;
4899 if ((abfd
->flags
& DYNAMIC
) != 0)
4900 i_ehdrp
->e_type
= ET_DYN
;
4901 else if ((abfd
->flags
& EXEC_P
) != 0)
4902 i_ehdrp
->e_type
= ET_EXEC
;
4903 else if (bfd_get_format (abfd
) == bfd_core
)
4904 i_ehdrp
->e_type
= ET_CORE
;
4906 i_ehdrp
->e_type
= ET_REL
;
4908 switch (bfd_get_arch (abfd
))
4910 case bfd_arch_unknown
:
4911 i_ehdrp
->e_machine
= EM_NONE
;
4914 /* There used to be a long list of cases here, each one setting
4915 e_machine to the same EM_* macro #defined as ELF_MACHINE_CODE
4916 in the corresponding bfd definition. To avoid duplication,
4917 the switch was removed. Machines that need special handling
4918 can generally do it in elf_backend_final_write_processing(),
4919 unless they need the information earlier than the final write.
4920 Such need can generally be supplied by replacing the tests for
4921 e_machine with the conditions used to determine it. */
4923 i_ehdrp
->e_machine
= bed
->elf_machine_code
;
4926 i_ehdrp
->e_version
= bed
->s
->ev_current
;
4927 i_ehdrp
->e_ehsize
= bed
->s
->sizeof_ehdr
;
4929 /* No program header, for now. */
4930 i_ehdrp
->e_phoff
= 0;
4931 i_ehdrp
->e_phentsize
= 0;
4932 i_ehdrp
->e_phnum
= 0;
4934 /* Each bfd section is section header entry. */
4935 i_ehdrp
->e_entry
= bfd_get_start_address (abfd
);
4936 i_ehdrp
->e_shentsize
= bed
->s
->sizeof_shdr
;
4938 /* If we're building an executable, we'll need a program header table. */
4939 if (abfd
->flags
& EXEC_P
)
4940 /* It all happens later. */
4944 i_ehdrp
->e_phentsize
= 0;
4945 i_ehdrp
->e_phoff
= 0;
4948 elf_tdata (abfd
)->symtab_hdr
.sh_name
=
4949 (unsigned int) _bfd_elf_strtab_add (shstrtab
, ".symtab", FALSE
);
4950 elf_tdata (abfd
)->strtab_hdr
.sh_name
=
4951 (unsigned int) _bfd_elf_strtab_add (shstrtab
, ".strtab", FALSE
);
4952 elf_tdata (abfd
)->shstrtab_hdr
.sh_name
=
4953 (unsigned int) _bfd_elf_strtab_add (shstrtab
, ".shstrtab", FALSE
);
4954 if (elf_tdata (abfd
)->symtab_hdr
.sh_name
== (unsigned int) -1
4955 || elf_tdata (abfd
)->symtab_hdr
.sh_name
== (unsigned int) -1
4956 || elf_tdata (abfd
)->shstrtab_hdr
.sh_name
== (unsigned int) -1)
4962 /* Assign file positions for all the reloc sections which are not part
4963 of the loadable file image. */
4966 _bfd_elf_assign_file_positions_for_relocs (bfd
*abfd
)
4969 unsigned int i
, num_sec
;
4970 Elf_Internal_Shdr
**shdrpp
;
4972 off
= elf_tdata (abfd
)->next_file_pos
;
4974 num_sec
= elf_numsections (abfd
);
4975 for (i
= 1, shdrpp
= elf_elfsections (abfd
) + 1; i
< num_sec
; i
++, shdrpp
++)
4977 Elf_Internal_Shdr
*shdrp
;
4980 if ((shdrp
->sh_type
== SHT_REL
|| shdrp
->sh_type
== SHT_RELA
)
4981 && shdrp
->sh_offset
== -1)
4982 off
= _bfd_elf_assign_file_position_for_section (shdrp
, off
, TRUE
);
4985 elf_tdata (abfd
)->next_file_pos
= off
;
4989 _bfd_elf_write_object_contents (bfd
*abfd
)
4991 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
4992 Elf_Internal_Shdr
**i_shdrp
;
4994 unsigned int count
, num_sec
;
4996 if (! abfd
->output_has_begun
4997 && ! _bfd_elf_compute_section_file_positions (abfd
, NULL
))
5000 i_shdrp
= elf_elfsections (abfd
);
5003 bfd_map_over_sections (abfd
, bed
->s
->write_relocs
, &failed
);
5007 _bfd_elf_assign_file_positions_for_relocs (abfd
);
5009 /* After writing the headers, we need to write the sections too... */
5010 num_sec
= elf_numsections (abfd
);
5011 for (count
= 1; count
< num_sec
; count
++)
5013 if (bed
->elf_backend_section_processing
)
5014 (*bed
->elf_backend_section_processing
) (abfd
, i_shdrp
[count
]);
5015 if (i_shdrp
[count
]->contents
)
5017 bfd_size_type amt
= i_shdrp
[count
]->sh_size
;
5019 if (bfd_seek (abfd
, i_shdrp
[count
]->sh_offset
, SEEK_SET
) != 0
5020 || bfd_bwrite (i_shdrp
[count
]->contents
, amt
, abfd
) != amt
)
5025 /* Write out the section header names. */
5026 if (elf_shstrtab (abfd
) != NULL
5027 && (bfd_seek (abfd
, elf_tdata (abfd
)->shstrtab_hdr
.sh_offset
, SEEK_SET
) != 0
5028 || !_bfd_elf_strtab_emit (abfd
, elf_shstrtab (abfd
))))
5031 if (bed
->elf_backend_final_write_processing
)
5032 (*bed
->elf_backend_final_write_processing
) (abfd
,
5033 elf_tdata (abfd
)->linker
);
5035 if (!bed
->s
->write_shdrs_and_ehdr (abfd
))
5038 /* This is last since write_shdrs_and_ehdr can touch i_shdrp[0]. */
5039 if (elf_tdata (abfd
)->after_write_object_contents
)
5040 return (*elf_tdata (abfd
)->after_write_object_contents
) (abfd
);
5046 _bfd_elf_write_corefile_contents (bfd
*abfd
)
5048 /* Hopefully this can be done just like an object file. */
5049 return _bfd_elf_write_object_contents (abfd
);
5052 /* Given a section, search the header to find them. */
5055 _bfd_elf_section_from_bfd_section (bfd
*abfd
, struct bfd_section
*asect
)
5057 const struct elf_backend_data
*bed
;
5058 unsigned int sec_index
;
5060 if (elf_section_data (asect
) != NULL
5061 && elf_section_data (asect
)->this_idx
!= 0)
5062 return elf_section_data (asect
)->this_idx
;
5064 if (bfd_is_abs_section (asect
))
5065 sec_index
= SHN_ABS
;
5066 else if (bfd_is_com_section (asect
))
5067 sec_index
= SHN_COMMON
;
5068 else if (bfd_is_und_section (asect
))
5069 sec_index
= SHN_UNDEF
;
5071 sec_index
= SHN_BAD
;
5073 bed
= get_elf_backend_data (abfd
);
5074 if (bed
->elf_backend_section_from_bfd_section
)
5076 int retval
= sec_index
;
5078 if ((*bed
->elf_backend_section_from_bfd_section
) (abfd
, asect
, &retval
))
5082 if (sec_index
== SHN_BAD
)
5083 bfd_set_error (bfd_error_nonrepresentable_section
);
5088 /* Given a BFD symbol, return the index in the ELF symbol table, or -1
5092 _bfd_elf_symbol_from_bfd_symbol (bfd
*abfd
, asymbol
**asym_ptr_ptr
)
5094 asymbol
*asym_ptr
= *asym_ptr_ptr
;
5096 flagword flags
= asym_ptr
->flags
;
5098 /* When gas creates relocations against local labels, it creates its
5099 own symbol for the section, but does put the symbol into the
5100 symbol chain, so udata is 0. When the linker is generating
5101 relocatable output, this section symbol may be for one of the
5102 input sections rather than the output section. */
5103 if (asym_ptr
->udata
.i
== 0
5104 && (flags
& BSF_SECTION_SYM
)
5105 && asym_ptr
->section
)
5110 sec
= asym_ptr
->section
;
5111 if (sec
->owner
!= abfd
&& sec
->output_section
!= NULL
)
5112 sec
= sec
->output_section
;
5113 if (sec
->owner
== abfd
5114 && (indx
= sec
->index
) < elf_num_section_syms (abfd
)
5115 && elf_section_syms (abfd
)[indx
] != NULL
)
5116 asym_ptr
->udata
.i
= elf_section_syms (abfd
)[indx
]->udata
.i
;
5119 idx
= asym_ptr
->udata
.i
;
5123 /* This case can occur when using --strip-symbol on a symbol
5124 which is used in a relocation entry. */
5125 (*_bfd_error_handler
)
5126 (_("%B: symbol `%s' required but not present"),
5127 abfd
, bfd_asymbol_name (asym_ptr
));
5128 bfd_set_error (bfd_error_no_symbols
);
5135 "elf_symbol_from_bfd_symbol 0x%.8lx, name = %s, sym num = %d, flags = 0x%.8lx%s\n",
5136 (long) asym_ptr
, asym_ptr
->name
, idx
, flags
,
5137 elf_symbol_flags (flags
));
5145 /* Rewrite program header information. */
5148 rewrite_elf_program_header (bfd
*ibfd
, bfd
*obfd
)
5150 Elf_Internal_Ehdr
*iehdr
;
5151 struct elf_segment_map
*map
;
5152 struct elf_segment_map
*map_first
;
5153 struct elf_segment_map
**pointer_to_map
;
5154 Elf_Internal_Phdr
*segment
;
5157 unsigned int num_segments
;
5158 bfd_boolean phdr_included
= FALSE
;
5159 bfd_boolean p_paddr_valid
;
5160 bfd_vma maxpagesize
;
5161 struct elf_segment_map
*phdr_adjust_seg
= NULL
;
5162 unsigned int phdr_adjust_num
= 0;
5163 const struct elf_backend_data
*bed
;
5165 bed
= get_elf_backend_data (ibfd
);
5166 iehdr
= elf_elfheader (ibfd
);
5169 pointer_to_map
= &map_first
;
5171 num_segments
= elf_elfheader (ibfd
)->e_phnum
;
5172 maxpagesize
= get_elf_backend_data (obfd
)->maxpagesize
;
5174 /* Returns the end address of the segment + 1. */
5175 #define SEGMENT_END(segment, start) \
5176 (start + (segment->p_memsz > segment->p_filesz \
5177 ? segment->p_memsz : segment->p_filesz))
5179 #define SECTION_SIZE(section, segment) \
5180 (((section->flags & (SEC_HAS_CONTENTS | SEC_THREAD_LOCAL)) \
5181 != SEC_THREAD_LOCAL || segment->p_type == PT_TLS) \
5182 ? section->size : 0)
5184 /* Returns TRUE if the given section is contained within
5185 the given segment. VMA addresses are compared. */
5186 #define IS_CONTAINED_BY_VMA(section, segment) \
5187 (section->vma >= segment->p_vaddr \
5188 && (section->vma + SECTION_SIZE (section, segment) \
5189 <= (SEGMENT_END (segment, segment->p_vaddr))))
5191 /* Returns TRUE if the given section is contained within
5192 the given segment. LMA addresses are compared. */
5193 #define IS_CONTAINED_BY_LMA(section, segment, base) \
5194 (section->lma >= base \
5195 && (section->lma + SECTION_SIZE (section, segment) \
5196 <= SEGMENT_END (segment, base)))
5198 /* Handle PT_NOTE segment. */
5199 #define IS_NOTE(p, s) \
5200 (p->p_type == PT_NOTE \
5201 && elf_section_type (s) == SHT_NOTE \
5202 && (bfd_vma) s->filepos >= p->p_offset \
5203 && ((bfd_vma) s->filepos + s->size \
5204 <= p->p_offset + p->p_filesz))
5206 /* Special case: corefile "NOTE" section containing regs, prpsinfo
5208 #define IS_COREFILE_NOTE(p, s) \
5210 && bfd_get_format (ibfd) == bfd_core \
5214 /* The complicated case when p_vaddr is 0 is to handle the Solaris
5215 linker, which generates a PT_INTERP section with p_vaddr and
5216 p_memsz set to 0. */
5217 #define IS_SOLARIS_PT_INTERP(p, s) \
5219 && p->p_paddr == 0 \
5220 && p->p_memsz == 0 \
5221 && p->p_filesz > 0 \
5222 && (s->flags & SEC_HAS_CONTENTS) != 0 \
5224 && (bfd_vma) s->filepos >= p->p_offset \
5225 && ((bfd_vma) s->filepos + s->size \
5226 <= p->p_offset + p->p_filesz))
5228 /* Decide if the given section should be included in the given segment.
5229 A section will be included if:
5230 1. It is within the address space of the segment -- we use the LMA
5231 if that is set for the segment and the VMA otherwise,
5232 2. It is an allocated section or a NOTE section in a PT_NOTE
5234 3. There is an output section associated with it,
5235 4. The section has not already been allocated to a previous segment.
5236 5. PT_GNU_STACK segments do not include any sections.
5237 6. PT_TLS segment includes only SHF_TLS sections.
5238 7. SHF_TLS sections are only in PT_TLS or PT_LOAD segments.
5239 8. PT_DYNAMIC should not contain empty sections at the beginning
5240 (with the possible exception of .dynamic). */
5241 #define IS_SECTION_IN_INPUT_SEGMENT(section, segment, bed) \
5242 ((((segment->p_paddr \
5243 ? IS_CONTAINED_BY_LMA (section, segment, segment->p_paddr) \
5244 : IS_CONTAINED_BY_VMA (section, segment)) \
5245 && (section->flags & SEC_ALLOC) != 0) \
5246 || IS_NOTE (segment, section)) \
5247 && segment->p_type != PT_GNU_STACK \
5248 && (segment->p_type != PT_TLS \
5249 || (section->flags & SEC_THREAD_LOCAL)) \
5250 && (segment->p_type == PT_LOAD \
5251 || segment->p_type == PT_TLS \
5252 || (section->flags & SEC_THREAD_LOCAL) == 0) \
5253 && (segment->p_type != PT_DYNAMIC \
5254 || SECTION_SIZE (section, segment) > 0 \
5255 || (segment->p_paddr \
5256 ? segment->p_paddr != section->lma \
5257 : segment->p_vaddr != section->vma) \
5258 || (strcmp (bfd_get_section_name (ibfd, section), ".dynamic") \
5260 && !section->segment_mark)
5262 /* If the output section of a section in the input segment is NULL,
5263 it is removed from the corresponding output segment. */
5264 #define INCLUDE_SECTION_IN_SEGMENT(section, segment, bed) \
5265 (IS_SECTION_IN_INPUT_SEGMENT (section, segment, bed) \
5266 && section->output_section != NULL)
5268 /* Returns TRUE iff seg1 starts after the end of seg2. */
5269 #define SEGMENT_AFTER_SEGMENT(seg1, seg2, field) \
5270 (seg1->field >= SEGMENT_END (seg2, seg2->field))
5272 /* Returns TRUE iff seg1 and seg2 overlap. Segments overlap iff both
5273 their VMA address ranges and their LMA address ranges overlap.
5274 It is possible to have overlapping VMA ranges without overlapping LMA
5275 ranges. RedBoot images for example can have both .data and .bss mapped
5276 to the same VMA range, but with the .data section mapped to a different
5278 #define SEGMENT_OVERLAPS(seg1, seg2) \
5279 ( !(SEGMENT_AFTER_SEGMENT (seg1, seg2, p_vaddr) \
5280 || SEGMENT_AFTER_SEGMENT (seg2, seg1, p_vaddr)) \
5281 && !(SEGMENT_AFTER_SEGMENT (seg1, seg2, p_paddr) \
5282 || SEGMENT_AFTER_SEGMENT (seg2, seg1, p_paddr)))
5284 /* Initialise the segment mark field. */
5285 for (section
= ibfd
->sections
; section
!= NULL
; section
= section
->next
)
5286 section
->segment_mark
= FALSE
;
5288 /* The Solaris linker creates program headers in which all the
5289 p_paddr fields are zero. When we try to objcopy or strip such a
5290 file, we get confused. Check for this case, and if we find it
5291 don't set the p_paddr_valid fields. */
5292 p_paddr_valid
= FALSE
;
5293 for (i
= 0, segment
= elf_tdata (ibfd
)->phdr
;
5296 if (segment
->p_paddr
!= 0)
5298 p_paddr_valid
= TRUE
;
5302 /* Scan through the segments specified in the program header
5303 of the input BFD. For this first scan we look for overlaps
5304 in the loadable segments. These can be created by weird
5305 parameters to objcopy. Also, fix some solaris weirdness. */
5306 for (i
= 0, segment
= elf_tdata (ibfd
)->phdr
;
5311 Elf_Internal_Phdr
*segment2
;
5313 if (segment
->p_type
== PT_INTERP
)
5314 for (section
= ibfd
->sections
; section
; section
= section
->next
)
5315 if (IS_SOLARIS_PT_INTERP (segment
, section
))
5317 /* Mininal change so that the normal section to segment
5318 assignment code will work. */
5319 segment
->p_vaddr
= section
->vma
;
5323 if (segment
->p_type
!= PT_LOAD
)
5325 /* Remove PT_GNU_RELRO segment. */
5326 if (segment
->p_type
== PT_GNU_RELRO
)
5327 segment
->p_type
= PT_NULL
;
5331 /* Determine if this segment overlaps any previous segments. */
5332 for (j
= 0, segment2
= elf_tdata (ibfd
)->phdr
; j
< i
; j
++, segment2
++)
5334 bfd_signed_vma extra_length
;
5336 if (segment2
->p_type
!= PT_LOAD
5337 || !SEGMENT_OVERLAPS (segment
, segment2
))
5340 /* Merge the two segments together. */
5341 if (segment2
->p_vaddr
< segment
->p_vaddr
)
5343 /* Extend SEGMENT2 to include SEGMENT and then delete
5345 extra_length
= (SEGMENT_END (segment
, segment
->p_vaddr
)
5346 - SEGMENT_END (segment2
, segment2
->p_vaddr
));
5348 if (extra_length
> 0)
5350 segment2
->p_memsz
+= extra_length
;
5351 segment2
->p_filesz
+= extra_length
;
5354 segment
->p_type
= PT_NULL
;
5356 /* Since we have deleted P we must restart the outer loop. */
5358 segment
= elf_tdata (ibfd
)->phdr
;
5363 /* Extend SEGMENT to include SEGMENT2 and then delete
5365 extra_length
= (SEGMENT_END (segment2
, segment2
->p_vaddr
)
5366 - SEGMENT_END (segment
, segment
->p_vaddr
));
5368 if (extra_length
> 0)
5370 segment
->p_memsz
+= extra_length
;
5371 segment
->p_filesz
+= extra_length
;
5374 segment2
->p_type
= PT_NULL
;
5379 /* The second scan attempts to assign sections to segments. */
5380 for (i
= 0, segment
= elf_tdata (ibfd
)->phdr
;
5384 unsigned int section_count
;
5385 asection
**sections
;
5386 asection
*output_section
;
5388 bfd_vma matching_lma
;
5389 bfd_vma suggested_lma
;
5392 asection
*first_section
;
5393 bfd_boolean first_matching_lma
;
5394 bfd_boolean first_suggested_lma
;
5396 if (segment
->p_type
== PT_NULL
)
5399 first_section
= NULL
;
5400 /* Compute how many sections might be placed into this segment. */
5401 for (section
= ibfd
->sections
, section_count
= 0;
5403 section
= section
->next
)
5405 /* Find the first section in the input segment, which may be
5406 removed from the corresponding output segment. */
5407 if (IS_SECTION_IN_INPUT_SEGMENT (section
, segment
, bed
))
5409 if (first_section
== NULL
)
5410 first_section
= section
;
5411 if (section
->output_section
!= NULL
)
5416 /* Allocate a segment map big enough to contain
5417 all of the sections we have selected. */
5418 amt
= sizeof (struct elf_segment_map
);
5419 amt
+= ((bfd_size_type
) section_count
- 1) * sizeof (asection
*);
5420 map
= (struct elf_segment_map
*) bfd_zalloc (obfd
, amt
);
5424 /* Initialise the fields of the segment map. Default to
5425 using the physical address of the segment in the input BFD. */
5427 map
->p_type
= segment
->p_type
;
5428 map
->p_flags
= segment
->p_flags
;
5429 map
->p_flags_valid
= 1;
5431 /* If the first section in the input segment is removed, there is
5432 no need to preserve segment physical address in the corresponding
5434 if (!first_section
|| first_section
->output_section
!= NULL
)
5436 map
->p_paddr
= segment
->p_paddr
;
5437 map
->p_paddr_valid
= p_paddr_valid
;
5440 /* Determine if this segment contains the ELF file header
5441 and if it contains the program headers themselves. */
5442 map
->includes_filehdr
= (segment
->p_offset
== 0
5443 && segment
->p_filesz
>= iehdr
->e_ehsize
);
5444 map
->includes_phdrs
= 0;
5446 if (!phdr_included
|| segment
->p_type
!= PT_LOAD
)
5448 map
->includes_phdrs
=
5449 (segment
->p_offset
<= (bfd_vma
) iehdr
->e_phoff
5450 && (segment
->p_offset
+ segment
->p_filesz
5451 >= ((bfd_vma
) iehdr
->e_phoff
5452 + iehdr
->e_phnum
* iehdr
->e_phentsize
)));
5454 if (segment
->p_type
== PT_LOAD
&& map
->includes_phdrs
)
5455 phdr_included
= TRUE
;
5458 if (section_count
== 0)
5460 /* Special segments, such as the PT_PHDR segment, may contain
5461 no sections, but ordinary, loadable segments should contain
5462 something. They are allowed by the ELF spec however, so only
5463 a warning is produced. */
5464 if (segment
->p_type
== PT_LOAD
)
5465 (*_bfd_error_handler
) (_("%B: warning: Empty loadable segment"
5466 " detected, is this intentional ?\n"),
5470 *pointer_to_map
= map
;
5471 pointer_to_map
= &map
->next
;
5476 /* Now scan the sections in the input BFD again and attempt
5477 to add their corresponding output sections to the segment map.
5478 The problem here is how to handle an output section which has
5479 been moved (ie had its LMA changed). There are four possibilities:
5481 1. None of the sections have been moved.
5482 In this case we can continue to use the segment LMA from the
5485 2. All of the sections have been moved by the same amount.
5486 In this case we can change the segment's LMA to match the LMA
5487 of the first section.
5489 3. Some of the sections have been moved, others have not.
5490 In this case those sections which have not been moved can be
5491 placed in the current segment which will have to have its size,
5492 and possibly its LMA changed, and a new segment or segments will
5493 have to be created to contain the other sections.
5495 4. The sections have been moved, but not by the same amount.
5496 In this case we can change the segment's LMA to match the LMA
5497 of the first section and we will have to create a new segment
5498 or segments to contain the other sections.
5500 In order to save time, we allocate an array to hold the section
5501 pointers that we are interested in. As these sections get assigned
5502 to a segment, they are removed from this array. */
5504 sections
= (asection
**) bfd_malloc2 (section_count
, sizeof (asection
*));
5505 if (sections
== NULL
)
5508 /* Step One: Scan for segment vs section LMA conflicts.
5509 Also add the sections to the section array allocated above.
5510 Also add the sections to the current segment. In the common
5511 case, where the sections have not been moved, this means that
5512 we have completely filled the segment, and there is nothing
5517 first_matching_lma
= TRUE
;
5518 first_suggested_lma
= TRUE
;
5520 for (section
= ibfd
->sections
;
5522 section
= section
->next
)
5523 if (section
== first_section
)
5526 for (j
= 0; section
!= NULL
; section
= section
->next
)
5528 if (INCLUDE_SECTION_IN_SEGMENT (section
, segment
, bed
))
5530 output_section
= section
->output_section
;
5532 sections
[j
++] = section
;
5534 /* The Solaris native linker always sets p_paddr to 0.
5535 We try to catch that case here, and set it to the
5536 correct value. Note - some backends require that
5537 p_paddr be left as zero. */
5539 && segment
->p_vaddr
!= 0
5540 && !bed
->want_p_paddr_set_to_zero
5542 && output_section
->lma
!= 0
5543 && output_section
->vma
== (segment
->p_vaddr
5544 + (map
->includes_filehdr
5547 + (map
->includes_phdrs
5549 * iehdr
->e_phentsize
)
5551 map
->p_paddr
= segment
->p_vaddr
;
5553 /* Match up the physical address of the segment with the
5554 LMA address of the output section. */
5555 if (IS_CONTAINED_BY_LMA (output_section
, segment
, map
->p_paddr
)
5556 || IS_COREFILE_NOTE (segment
, section
)
5557 || (bed
->want_p_paddr_set_to_zero
5558 && IS_CONTAINED_BY_VMA (output_section
, segment
)))
5560 if (first_matching_lma
|| output_section
->lma
< matching_lma
)
5562 matching_lma
= output_section
->lma
;
5563 first_matching_lma
= FALSE
;
5566 /* We assume that if the section fits within the segment
5567 then it does not overlap any other section within that
5569 map
->sections
[isec
++] = output_section
;
5571 else if (first_suggested_lma
)
5573 suggested_lma
= output_section
->lma
;
5574 first_suggested_lma
= FALSE
;
5577 if (j
== section_count
)
5582 BFD_ASSERT (j
== section_count
);
5584 /* Step Two: Adjust the physical address of the current segment,
5586 if (isec
== section_count
)
5588 /* All of the sections fitted within the segment as currently
5589 specified. This is the default case. Add the segment to
5590 the list of built segments and carry on to process the next
5591 program header in the input BFD. */
5592 map
->count
= section_count
;
5593 *pointer_to_map
= map
;
5594 pointer_to_map
= &map
->next
;
5597 && !bed
->want_p_paddr_set_to_zero
5598 && matching_lma
!= map
->p_paddr
5599 && !map
->includes_filehdr
5600 && !map
->includes_phdrs
)
5601 /* There is some padding before the first section in the
5602 segment. So, we must account for that in the output
5604 map
->p_vaddr_offset
= matching_lma
- map
->p_paddr
;
5611 if (!first_matching_lma
)
5613 /* At least one section fits inside the current segment.
5614 Keep it, but modify its physical address to match the
5615 LMA of the first section that fitted. */
5616 map
->p_paddr
= matching_lma
;
5620 /* None of the sections fitted inside the current segment.
5621 Change the current segment's physical address to match
5622 the LMA of the first section. */
5623 map
->p_paddr
= suggested_lma
;
5626 /* Offset the segment physical address from the lma
5627 to allow for space taken up by elf headers. */
5628 if (map
->includes_filehdr
)
5630 if (map
->p_paddr
>= iehdr
->e_ehsize
)
5631 map
->p_paddr
-= iehdr
->e_ehsize
;
5634 map
->includes_filehdr
= FALSE
;
5635 map
->includes_phdrs
= FALSE
;
5639 if (map
->includes_phdrs
)
5641 if (map
->p_paddr
>= iehdr
->e_phnum
* iehdr
->e_phentsize
)
5643 map
->p_paddr
-= iehdr
->e_phnum
* iehdr
->e_phentsize
;
5645 /* iehdr->e_phnum is just an estimate of the number
5646 of program headers that we will need. Make a note
5647 here of the number we used and the segment we chose
5648 to hold these headers, so that we can adjust the
5649 offset when we know the correct value. */
5650 phdr_adjust_num
= iehdr
->e_phnum
;
5651 phdr_adjust_seg
= map
;
5654 map
->includes_phdrs
= FALSE
;
5658 /* Step Three: Loop over the sections again, this time assigning
5659 those that fit to the current segment and removing them from the
5660 sections array; but making sure not to leave large gaps. Once all
5661 possible sections have been assigned to the current segment it is
5662 added to the list of built segments and if sections still remain
5663 to be assigned, a new segment is constructed before repeating
5670 first_suggested_lma
= TRUE
;
5672 /* Fill the current segment with sections that fit. */
5673 for (j
= 0; j
< section_count
; j
++)
5675 section
= sections
[j
];
5677 if (section
== NULL
)
5680 output_section
= section
->output_section
;
5682 BFD_ASSERT (output_section
!= NULL
);
5684 if (IS_CONTAINED_BY_LMA (output_section
, segment
, map
->p_paddr
)
5685 || IS_COREFILE_NOTE (segment
, section
))
5687 if (map
->count
== 0)
5689 /* If the first section in a segment does not start at
5690 the beginning of the segment, then something is
5692 if (output_section
->lma
5694 + (map
->includes_filehdr
? iehdr
->e_ehsize
: 0)
5695 + (map
->includes_phdrs
5696 ? iehdr
->e_phnum
* iehdr
->e_phentsize
5704 prev_sec
= map
->sections
[map
->count
- 1];
5706 /* If the gap between the end of the previous section
5707 and the start of this section is more than
5708 maxpagesize then we need to start a new segment. */
5709 if ((BFD_ALIGN (prev_sec
->lma
+ prev_sec
->size
,
5711 < BFD_ALIGN (output_section
->lma
, maxpagesize
))
5712 || (prev_sec
->lma
+ prev_sec
->size
5713 > output_section
->lma
))
5715 if (first_suggested_lma
)
5717 suggested_lma
= output_section
->lma
;
5718 first_suggested_lma
= FALSE
;
5725 map
->sections
[map
->count
++] = output_section
;
5728 section
->segment_mark
= TRUE
;
5730 else if (first_suggested_lma
)
5732 suggested_lma
= output_section
->lma
;
5733 first_suggested_lma
= FALSE
;
5737 BFD_ASSERT (map
->count
> 0);
5739 /* Add the current segment to the list of built segments. */
5740 *pointer_to_map
= map
;
5741 pointer_to_map
= &map
->next
;
5743 if (isec
< section_count
)
5745 /* We still have not allocated all of the sections to
5746 segments. Create a new segment here, initialise it
5747 and carry on looping. */
5748 amt
= sizeof (struct elf_segment_map
);
5749 amt
+= ((bfd_size_type
) section_count
- 1) * sizeof (asection
*);
5750 map
= (struct elf_segment_map
*) bfd_alloc (obfd
, amt
);
5757 /* Initialise the fields of the segment map. Set the physical
5758 physical address to the LMA of the first section that has
5759 not yet been assigned. */
5761 map
->p_type
= segment
->p_type
;
5762 map
->p_flags
= segment
->p_flags
;
5763 map
->p_flags_valid
= 1;
5764 map
->p_paddr
= suggested_lma
;
5765 map
->p_paddr_valid
= p_paddr_valid
;
5766 map
->includes_filehdr
= 0;
5767 map
->includes_phdrs
= 0;
5770 while (isec
< section_count
);
5775 elf_tdata (obfd
)->segment_map
= map_first
;
5777 /* If we had to estimate the number of program headers that were
5778 going to be needed, then check our estimate now and adjust
5779 the offset if necessary. */
5780 if (phdr_adjust_seg
!= NULL
)
5784 for (count
= 0, map
= map_first
; map
!= NULL
; map
= map
->next
)
5787 if (count
> phdr_adjust_num
)
5788 phdr_adjust_seg
->p_paddr
5789 -= (count
- phdr_adjust_num
) * iehdr
->e_phentsize
;
5794 #undef IS_CONTAINED_BY_VMA
5795 #undef IS_CONTAINED_BY_LMA
5797 #undef IS_COREFILE_NOTE
5798 #undef IS_SOLARIS_PT_INTERP
5799 #undef IS_SECTION_IN_INPUT_SEGMENT
5800 #undef INCLUDE_SECTION_IN_SEGMENT
5801 #undef SEGMENT_AFTER_SEGMENT
5802 #undef SEGMENT_OVERLAPS
5806 /* Copy ELF program header information. */
5809 copy_elf_program_header (bfd
*ibfd
, bfd
*obfd
)
5811 Elf_Internal_Ehdr
*iehdr
;
5812 struct elf_segment_map
*map
;
5813 struct elf_segment_map
*map_first
;
5814 struct elf_segment_map
**pointer_to_map
;
5815 Elf_Internal_Phdr
*segment
;
5817 unsigned int num_segments
;
5818 bfd_boolean phdr_included
= FALSE
;
5819 bfd_boolean p_paddr_valid
;
5821 iehdr
= elf_elfheader (ibfd
);
5824 pointer_to_map
= &map_first
;
5826 /* If all the segment p_paddr fields are zero, don't set
5827 map->p_paddr_valid. */
5828 p_paddr_valid
= FALSE
;
5829 num_segments
= elf_elfheader (ibfd
)->e_phnum
;
5830 for (i
= 0, segment
= elf_tdata (ibfd
)->phdr
;
5833 if (segment
->p_paddr
!= 0)
5835 p_paddr_valid
= TRUE
;
5839 for (i
= 0, segment
= elf_tdata (ibfd
)->phdr
;
5844 unsigned int section_count
;
5846 Elf_Internal_Shdr
*this_hdr
;
5847 asection
*first_section
= NULL
;
5848 asection
*lowest_section
= NULL
;
5850 /* Compute how many sections are in this segment. */
5851 for (section
= ibfd
->sections
, section_count
= 0;
5853 section
= section
->next
)
5855 this_hdr
= &(elf_section_data(section
)->this_hdr
);
5856 if (this_hdr
->sh_size
!= 0
5857 && ELF_SECTION_IN_SEGMENT (this_hdr
, segment
))
5860 first_section
= lowest_section
= section
;
5861 if (section
->lma
< lowest_section
->lma
)
5862 lowest_section
= section
;
5867 /* Allocate a segment map big enough to contain
5868 all of the sections we have selected. */
5869 amt
= sizeof (struct elf_segment_map
);
5870 if (section_count
!= 0)
5871 amt
+= ((bfd_size_type
) section_count
- 1) * sizeof (asection
*);
5872 map
= (struct elf_segment_map
*) bfd_zalloc (obfd
, amt
);
5876 /* Initialize the fields of the output segment map with the
5879 map
->p_type
= segment
->p_type
;
5880 map
->p_flags
= segment
->p_flags
;
5881 map
->p_flags_valid
= 1;
5882 map
->p_paddr
= segment
->p_paddr
;
5883 map
->p_paddr_valid
= p_paddr_valid
;
5884 map
->p_align
= segment
->p_align
;
5885 map
->p_align_valid
= 1;
5886 map
->p_vaddr_offset
= 0;
5888 if (map
->p_type
== PT_GNU_RELRO
)
5890 /* The PT_GNU_RELRO segment may contain the first a few
5891 bytes in the .got.plt section even if the whole .got.plt
5892 section isn't in the PT_GNU_RELRO segment. We won't
5893 change the size of the PT_GNU_RELRO segment. */
5894 map
->p_size
= segment
->p_memsz
;
5895 map
->p_size_valid
= 1;
5898 /* Determine if this segment contains the ELF file header
5899 and if it contains the program headers themselves. */
5900 map
->includes_filehdr
= (segment
->p_offset
== 0
5901 && segment
->p_filesz
>= iehdr
->e_ehsize
);
5903 map
->includes_phdrs
= 0;
5904 if (! phdr_included
|| segment
->p_type
!= PT_LOAD
)
5906 map
->includes_phdrs
=
5907 (segment
->p_offset
<= (bfd_vma
) iehdr
->e_phoff
5908 && (segment
->p_offset
+ segment
->p_filesz
5909 >= ((bfd_vma
) iehdr
->e_phoff
5910 + iehdr
->e_phnum
* iehdr
->e_phentsize
)));
5912 if (segment
->p_type
== PT_LOAD
&& map
->includes_phdrs
)
5913 phdr_included
= TRUE
;
5916 if (map
->includes_filehdr
&& first_section
)
5917 /* We need to keep the space used by the headers fixed. */
5918 map
->header_size
= first_section
->vma
- segment
->p_vaddr
;
5920 if (!map
->includes_phdrs
5921 && !map
->includes_filehdr
5922 && map
->p_paddr_valid
)
5923 /* There is some other padding before the first section. */
5924 map
->p_vaddr_offset
= ((lowest_section
? lowest_section
->lma
: 0)
5925 - segment
->p_paddr
);
5927 if (section_count
!= 0)
5929 unsigned int isec
= 0;
5931 for (section
= first_section
;
5933 section
= section
->next
)
5935 this_hdr
= &(elf_section_data(section
)->this_hdr
);
5936 if (this_hdr
->sh_size
!= 0
5937 && ELF_SECTION_IN_SEGMENT (this_hdr
, segment
))
5939 map
->sections
[isec
++] = section
->output_section
;
5940 if (isec
== section_count
)
5946 map
->count
= section_count
;
5947 *pointer_to_map
= map
;
5948 pointer_to_map
= &map
->next
;
5951 elf_tdata (obfd
)->segment_map
= map_first
;
5955 /* Copy private BFD data. This copies or rewrites ELF program header
5959 copy_private_bfd_data (bfd
*ibfd
, bfd
*obfd
)
5961 if (bfd_get_flavour (ibfd
) != bfd_target_elf_flavour
5962 || bfd_get_flavour (obfd
) != bfd_target_elf_flavour
)
5965 if (elf_tdata (ibfd
)->phdr
== NULL
)
5968 if (ibfd
->xvec
== obfd
->xvec
)
5970 /* Check to see if any sections in the input BFD
5971 covered by ELF program header have changed. */
5972 Elf_Internal_Phdr
*segment
;
5973 asection
*section
, *osec
;
5974 unsigned int i
, num_segments
;
5975 Elf_Internal_Shdr
*this_hdr
;
5976 const struct elf_backend_data
*bed
;
5978 bed
= get_elf_backend_data (ibfd
);
5980 /* Regenerate the segment map if p_paddr is set to 0. */
5981 if (bed
->want_p_paddr_set_to_zero
)
5984 /* Initialize the segment mark field. */
5985 for (section
= obfd
->sections
; section
!= NULL
;
5986 section
= section
->next
)
5987 section
->segment_mark
= FALSE
;
5989 num_segments
= elf_elfheader (ibfd
)->e_phnum
;
5990 for (i
= 0, segment
= elf_tdata (ibfd
)->phdr
;
5994 /* PR binutils/3535. The Solaris linker always sets the p_paddr
5995 and p_memsz fields of special segments (DYNAMIC, INTERP) to 0
5996 which severly confuses things, so always regenerate the segment
5997 map in this case. */
5998 if (segment
->p_paddr
== 0
5999 && segment
->p_memsz
== 0
6000 && (segment
->p_type
== PT_INTERP
|| segment
->p_type
== PT_DYNAMIC
))
6003 for (section
= ibfd
->sections
;
6004 section
!= NULL
; section
= section
->next
)
6006 /* We mark the output section so that we know it comes
6007 from the input BFD. */
6008 osec
= section
->output_section
;
6010 osec
->segment_mark
= TRUE
;
6012 /* Check if this section is covered by the segment. */
6013 this_hdr
= &(elf_section_data(section
)->this_hdr
);
6014 if (this_hdr
->sh_size
!= 0
6015 && ELF_SECTION_IN_SEGMENT (this_hdr
, segment
))
6017 /* FIXME: Check if its output section is changed or
6018 removed. What else do we need to check? */
6020 || section
->flags
!= osec
->flags
6021 || section
->lma
!= osec
->lma
6022 || section
->vma
!= osec
->vma
6023 || section
->size
!= osec
->size
6024 || section
->rawsize
!= osec
->rawsize
6025 || section
->alignment_power
!= osec
->alignment_power
)
6031 /* Check to see if any output section do not come from the
6033 for (section
= obfd
->sections
; section
!= NULL
;
6034 section
= section
->next
)
6036 if (section
->segment_mark
== FALSE
)
6039 section
->segment_mark
= FALSE
;
6042 return copy_elf_program_header (ibfd
, obfd
);
6046 return rewrite_elf_program_header (ibfd
, obfd
);
6049 /* Initialize private output section information from input section. */
6052 _bfd_elf_init_private_section_data (bfd
*ibfd
,
6056 struct bfd_link_info
*link_info
)
6059 Elf_Internal_Shdr
*ihdr
, *ohdr
;
6060 bfd_boolean final_link
= link_info
!= NULL
&& !link_info
->relocatable
;
6062 if (ibfd
->xvec
->flavour
!= bfd_target_elf_flavour
6063 || obfd
->xvec
->flavour
!= bfd_target_elf_flavour
)
6066 /* For objcopy and relocatable link, don't copy the output ELF
6067 section type from input if the output BFD section flags have been
6068 set to something different. For a final link allow some flags
6069 that the linker clears to differ. */
6070 if (elf_section_type (osec
) == SHT_NULL
6071 && (osec
->flags
== isec
->flags
6073 && ((osec
->flags
^ isec
->flags
)
6074 & ~ (SEC_LINK_ONCE
| SEC_LINK_DUPLICATES
)) == 0)))
6075 elf_section_type (osec
) = elf_section_type (isec
);
6077 /* FIXME: Is this correct for all OS/PROC specific flags? */
6078 elf_section_flags (osec
) |= (elf_section_flags (isec
)
6079 & (SHF_MASKOS
| SHF_MASKPROC
));
6081 /* Set things up for objcopy and relocatable link. The output
6082 SHT_GROUP section will have its elf_next_in_group pointing back
6083 to the input group members. Ignore linker created group section.
6084 See elfNN_ia64_object_p in elfxx-ia64.c. */
6087 if (elf_sec_group (isec
) == NULL
6088 || (elf_sec_group (isec
)->flags
& SEC_LINKER_CREATED
) == 0)
6090 if (elf_section_flags (isec
) & SHF_GROUP
)
6091 elf_section_flags (osec
) |= SHF_GROUP
;
6092 elf_next_in_group (osec
) = elf_next_in_group (isec
);
6093 elf_section_data (osec
)->group
= elf_section_data (isec
)->group
;
6097 ihdr
= &elf_section_data (isec
)->this_hdr
;
6099 /* We need to handle elf_linked_to_section for SHF_LINK_ORDER. We
6100 don't use the output section of the linked-to section since it
6101 may be NULL at this point. */
6102 if ((ihdr
->sh_flags
& SHF_LINK_ORDER
) != 0)
6104 ohdr
= &elf_section_data (osec
)->this_hdr
;
6105 ohdr
->sh_flags
|= SHF_LINK_ORDER
;
6106 elf_linked_to_section (osec
) = elf_linked_to_section (isec
);
6109 osec
->use_rela_p
= isec
->use_rela_p
;
6114 /* Copy private section information. This copies over the entsize
6115 field, and sometimes the info field. */
6118 _bfd_elf_copy_private_section_data (bfd
*ibfd
,
6123 Elf_Internal_Shdr
*ihdr
, *ohdr
;
6125 if (ibfd
->xvec
->flavour
!= bfd_target_elf_flavour
6126 || obfd
->xvec
->flavour
!= bfd_target_elf_flavour
)
6129 ihdr
= &elf_section_data (isec
)->this_hdr
;
6130 ohdr
= &elf_section_data (osec
)->this_hdr
;
6132 ohdr
->sh_entsize
= ihdr
->sh_entsize
;
6134 if (ihdr
->sh_type
== SHT_SYMTAB
6135 || ihdr
->sh_type
== SHT_DYNSYM
6136 || ihdr
->sh_type
== SHT_GNU_verneed
6137 || ihdr
->sh_type
== SHT_GNU_verdef
)
6138 ohdr
->sh_info
= ihdr
->sh_info
;
6140 return _bfd_elf_init_private_section_data (ibfd
, isec
, obfd
, osec
,
6144 /* Look at all the SHT_GROUP sections in IBFD, making any adjustments
6145 necessary if we are removing either the SHT_GROUP section or any of
6146 the group member sections. DISCARDED is the value that a section's
6147 output_section has if the section will be discarded, NULL when this
6148 function is called from objcopy, bfd_abs_section_ptr when called
6152 _bfd_elf_fixup_group_sections (bfd
*ibfd
, asection
*discarded
)
6156 for (isec
= ibfd
->sections
; isec
!= NULL
; isec
= isec
->next
)
6157 if (elf_section_type (isec
) == SHT_GROUP
)
6159 asection
*first
= elf_next_in_group (isec
);
6160 asection
*s
= first
;
6161 bfd_size_type removed
= 0;
6165 /* If this member section is being output but the
6166 SHT_GROUP section is not, then clear the group info
6167 set up by _bfd_elf_copy_private_section_data. */
6168 if (s
->output_section
!= discarded
6169 && isec
->output_section
== discarded
)
6171 elf_section_flags (s
->output_section
) &= ~SHF_GROUP
;
6172 elf_group_name (s
->output_section
) = NULL
;
6174 /* Conversely, if the member section is not being output
6175 but the SHT_GROUP section is, then adjust its size. */
6176 else if (s
->output_section
== discarded
6177 && isec
->output_section
!= discarded
)
6179 s
= elf_next_in_group (s
);
6185 if (discarded
!= NULL
)
6187 /* If we've been called for ld -r, then we need to
6188 adjust the input section size. This function may
6189 be called multiple times, so save the original
6191 if (isec
->rawsize
== 0)
6192 isec
->rawsize
= isec
->size
;
6193 isec
->size
= isec
->rawsize
- removed
;
6197 /* Adjust the output section size when called from
6199 isec
->output_section
->size
-= removed
;
6207 /* Copy private header information. */
6210 _bfd_elf_copy_private_header_data (bfd
*ibfd
, bfd
*obfd
)
6212 if (bfd_get_flavour (ibfd
) != bfd_target_elf_flavour
6213 || bfd_get_flavour (obfd
) != bfd_target_elf_flavour
)
6216 /* Copy over private BFD data if it has not already been copied.
6217 This must be done here, rather than in the copy_private_bfd_data
6218 entry point, because the latter is called after the section
6219 contents have been set, which means that the program headers have
6220 already been worked out. */
6221 if (elf_tdata (obfd
)->segment_map
== NULL
&& elf_tdata (ibfd
)->phdr
!= NULL
)
6223 if (! copy_private_bfd_data (ibfd
, obfd
))
6227 return _bfd_elf_fixup_group_sections (ibfd
, NULL
);
6230 /* Copy private symbol information. If this symbol is in a section
6231 which we did not map into a BFD section, try to map the section
6232 index correctly. We use special macro definitions for the mapped
6233 section indices; these definitions are interpreted by the
6234 swap_out_syms function. */
6236 #define MAP_ONESYMTAB (SHN_HIOS + 1)
6237 #define MAP_DYNSYMTAB (SHN_HIOS + 2)
6238 #define MAP_STRTAB (SHN_HIOS + 3)
6239 #define MAP_SHSTRTAB (SHN_HIOS + 4)
6240 #define MAP_SYM_SHNDX (SHN_HIOS + 5)
6243 _bfd_elf_copy_private_symbol_data (bfd
*ibfd
,
6248 elf_symbol_type
*isym
, *osym
;
6250 if (bfd_get_flavour (ibfd
) != bfd_target_elf_flavour
6251 || bfd_get_flavour (obfd
) != bfd_target_elf_flavour
)
6254 isym
= elf_symbol_from (ibfd
, isymarg
);
6255 osym
= elf_symbol_from (obfd
, osymarg
);
6258 && isym
->internal_elf_sym
.st_shndx
!= 0
6260 && bfd_is_abs_section (isym
->symbol
.section
))
6264 shndx
= isym
->internal_elf_sym
.st_shndx
;
6265 if (shndx
== elf_onesymtab (ibfd
))
6266 shndx
= MAP_ONESYMTAB
;
6267 else if (shndx
== elf_dynsymtab (ibfd
))
6268 shndx
= MAP_DYNSYMTAB
;
6269 else if (shndx
== elf_tdata (ibfd
)->strtab_section
)
6271 else if (shndx
== elf_tdata (ibfd
)->shstrtab_section
)
6272 shndx
= MAP_SHSTRTAB
;
6273 else if (shndx
== elf_tdata (ibfd
)->symtab_shndx_section
)
6274 shndx
= MAP_SYM_SHNDX
;
6275 osym
->internal_elf_sym
.st_shndx
= shndx
;
6281 /* Swap out the symbols. */
6284 swap_out_syms (bfd
*abfd
,
6285 struct bfd_strtab_hash
**sttp
,
6288 const struct elf_backend_data
*bed
;
6291 struct bfd_strtab_hash
*stt
;
6292 Elf_Internal_Shdr
*symtab_hdr
;
6293 Elf_Internal_Shdr
*symtab_shndx_hdr
;
6294 Elf_Internal_Shdr
*symstrtab_hdr
;
6295 bfd_byte
*outbound_syms
;
6296 bfd_byte
*outbound_shndx
;
6299 bfd_boolean name_local_sections
;
6301 if (!elf_map_symbols (abfd
))
6304 /* Dump out the symtabs. */
6305 stt
= _bfd_elf_stringtab_init ();
6309 bed
= get_elf_backend_data (abfd
);
6310 symcount
= bfd_get_symcount (abfd
);
6311 symtab_hdr
= &elf_tdata (abfd
)->symtab_hdr
;
6312 symtab_hdr
->sh_type
= SHT_SYMTAB
;
6313 symtab_hdr
->sh_entsize
= bed
->s
->sizeof_sym
;
6314 symtab_hdr
->sh_size
= symtab_hdr
->sh_entsize
* (symcount
+ 1);
6315 symtab_hdr
->sh_info
= elf_num_locals (abfd
) + 1;
6316 symtab_hdr
->sh_addralign
= (bfd_vma
) 1 << bed
->s
->log_file_align
;
6318 symstrtab_hdr
= &elf_tdata (abfd
)->strtab_hdr
;
6319 symstrtab_hdr
->sh_type
= SHT_STRTAB
;
6321 outbound_syms
= (bfd_byte
*) bfd_alloc2 (abfd
, 1 + symcount
,
6322 bed
->s
->sizeof_sym
);
6323 if (outbound_syms
== NULL
)
6325 _bfd_stringtab_free (stt
);
6328 symtab_hdr
->contents
= outbound_syms
;
6330 outbound_shndx
= NULL
;
6331 symtab_shndx_hdr
= &elf_tdata (abfd
)->symtab_shndx_hdr
;
6332 if (symtab_shndx_hdr
->sh_name
!= 0)
6334 amt
= (bfd_size_type
) (1 + symcount
) * sizeof (Elf_External_Sym_Shndx
);
6335 outbound_shndx
= (bfd_byte
*)
6336 bfd_zalloc2 (abfd
, 1 + symcount
, sizeof (Elf_External_Sym_Shndx
));
6337 if (outbound_shndx
== NULL
)
6339 _bfd_stringtab_free (stt
);
6343 symtab_shndx_hdr
->contents
= outbound_shndx
;
6344 symtab_shndx_hdr
->sh_type
= SHT_SYMTAB_SHNDX
;
6345 symtab_shndx_hdr
->sh_size
= amt
;
6346 symtab_shndx_hdr
->sh_addralign
= sizeof (Elf_External_Sym_Shndx
);
6347 symtab_shndx_hdr
->sh_entsize
= sizeof (Elf_External_Sym_Shndx
);
6350 /* Now generate the data (for "contents"). */
6352 /* Fill in zeroth symbol and swap it out. */
6353 Elf_Internal_Sym sym
;
6359 sym
.st_shndx
= SHN_UNDEF
;
6360 bed
->s
->swap_symbol_out (abfd
, &sym
, outbound_syms
, outbound_shndx
);
6361 outbound_syms
+= bed
->s
->sizeof_sym
;
6362 if (outbound_shndx
!= NULL
)
6363 outbound_shndx
+= sizeof (Elf_External_Sym_Shndx
);
6367 = (bed
->elf_backend_name_local_section_symbols
6368 && bed
->elf_backend_name_local_section_symbols (abfd
));
6370 syms
= bfd_get_outsymbols (abfd
);
6371 for (idx
= 0; idx
< symcount
; idx
++)
6373 Elf_Internal_Sym sym
;
6374 bfd_vma value
= syms
[idx
]->value
;
6375 elf_symbol_type
*type_ptr
;
6376 flagword flags
= syms
[idx
]->flags
;
6379 if (!name_local_sections
6380 && (flags
& (BSF_SECTION_SYM
| BSF_GLOBAL
)) == BSF_SECTION_SYM
)
6382 /* Local section symbols have no name. */
6387 sym
.st_name
= (unsigned long) _bfd_stringtab_add (stt
,
6390 if (sym
.st_name
== (unsigned long) -1)
6392 _bfd_stringtab_free (stt
);
6397 type_ptr
= elf_symbol_from (abfd
, syms
[idx
]);
6399 if ((flags
& BSF_SECTION_SYM
) == 0
6400 && bfd_is_com_section (syms
[idx
]->section
))
6402 /* ELF common symbols put the alignment into the `value' field,
6403 and the size into the `size' field. This is backwards from
6404 how BFD handles it, so reverse it here. */
6405 sym
.st_size
= value
;
6406 if (type_ptr
== NULL
6407 || type_ptr
->internal_elf_sym
.st_value
== 0)
6408 sym
.st_value
= value
>= 16 ? 16 : (1 << bfd_log2 (value
));
6410 sym
.st_value
= type_ptr
->internal_elf_sym
.st_value
;
6411 sym
.st_shndx
= _bfd_elf_section_from_bfd_section
6412 (abfd
, syms
[idx
]->section
);
6416 asection
*sec
= syms
[idx
]->section
;
6419 if (sec
->output_section
)
6421 value
+= sec
->output_offset
;
6422 sec
= sec
->output_section
;
6425 /* Don't add in the section vma for relocatable output. */
6426 if (! relocatable_p
)
6428 sym
.st_value
= value
;
6429 sym
.st_size
= type_ptr
? type_ptr
->internal_elf_sym
.st_size
: 0;
6431 if (bfd_is_abs_section (sec
)
6433 && type_ptr
->internal_elf_sym
.st_shndx
!= 0)
6435 /* This symbol is in a real ELF section which we did
6436 not create as a BFD section. Undo the mapping done
6437 by copy_private_symbol_data. */
6438 shndx
= type_ptr
->internal_elf_sym
.st_shndx
;
6442 shndx
= elf_onesymtab (abfd
);
6445 shndx
= elf_dynsymtab (abfd
);
6448 shndx
= elf_tdata (abfd
)->strtab_section
;
6451 shndx
= elf_tdata (abfd
)->shstrtab_section
;
6454 shndx
= elf_tdata (abfd
)->symtab_shndx_section
;
6462 shndx
= _bfd_elf_section_from_bfd_section (abfd
, sec
);
6464 if (shndx
== SHN_BAD
)
6468 /* Writing this would be a hell of a lot easier if
6469 we had some decent documentation on bfd, and
6470 knew what to expect of the library, and what to
6471 demand of applications. For example, it
6472 appears that `objcopy' might not set the
6473 section of a symbol to be a section that is
6474 actually in the output file. */
6475 sec2
= bfd_get_section_by_name (abfd
, sec
->name
);
6478 _bfd_error_handler (_("\
6479 Unable to find equivalent output section for symbol '%s' from section '%s'"),
6480 syms
[idx
]->name
? syms
[idx
]->name
: "<Local sym>",
6482 bfd_set_error (bfd_error_invalid_operation
);
6483 _bfd_stringtab_free (stt
);
6487 shndx
= _bfd_elf_section_from_bfd_section (abfd
, sec2
);
6488 BFD_ASSERT (shndx
!= SHN_BAD
);
6492 sym
.st_shndx
= shndx
;
6495 if ((flags
& BSF_THREAD_LOCAL
) != 0)
6497 else if ((flags
& BSF_GNU_INDIRECT_FUNCTION
) != 0)
6498 type
= STT_GNU_IFUNC
;
6499 else if ((flags
& BSF_FUNCTION
) != 0)
6501 else if ((flags
& BSF_OBJECT
) != 0)
6503 else if ((flags
& BSF_RELC
) != 0)
6505 else if ((flags
& BSF_SRELC
) != 0)
6510 if (syms
[idx
]->section
->flags
& SEC_THREAD_LOCAL
)
6513 /* Processor-specific types. */
6514 if (type_ptr
!= NULL
6515 && bed
->elf_backend_get_symbol_type
)
6516 type
= ((*bed
->elf_backend_get_symbol_type
)
6517 (&type_ptr
->internal_elf_sym
, type
));
6519 if (flags
& BSF_SECTION_SYM
)
6521 if (flags
& BSF_GLOBAL
)
6522 sym
.st_info
= ELF_ST_INFO (STB_GLOBAL
, STT_SECTION
);
6524 sym
.st_info
= ELF_ST_INFO (STB_LOCAL
, STT_SECTION
);
6526 else if (bfd_is_com_section (syms
[idx
]->section
))
6528 #ifdef USE_STT_COMMON
6529 if (type
== STT_OBJECT
)
6530 sym
.st_info
= ELF_ST_INFO (STB_GLOBAL
, STT_COMMON
);
6533 sym
.st_info
= ELF_ST_INFO (STB_GLOBAL
, type
);
6535 else if (bfd_is_und_section (syms
[idx
]->section
))
6536 sym
.st_info
= ELF_ST_INFO (((flags
& BSF_WEAK
)
6540 else if (flags
& BSF_FILE
)
6541 sym
.st_info
= ELF_ST_INFO (STB_LOCAL
, STT_FILE
);
6544 int bind
= STB_LOCAL
;
6546 if (flags
& BSF_LOCAL
)
6548 else if (flags
& BSF_GNU_UNIQUE
)
6549 bind
= STB_GNU_UNIQUE
;
6550 else if (flags
& BSF_WEAK
)
6552 else if (flags
& BSF_GLOBAL
)
6555 sym
.st_info
= ELF_ST_INFO (bind
, type
);
6558 if (type_ptr
!= NULL
)
6559 sym
.st_other
= type_ptr
->internal_elf_sym
.st_other
;
6563 bed
->s
->swap_symbol_out (abfd
, &sym
, outbound_syms
, outbound_shndx
);
6564 outbound_syms
+= bed
->s
->sizeof_sym
;
6565 if (outbound_shndx
!= NULL
)
6566 outbound_shndx
+= sizeof (Elf_External_Sym_Shndx
);
6570 symstrtab_hdr
->sh_size
= _bfd_stringtab_size (stt
);
6571 symstrtab_hdr
->sh_type
= SHT_STRTAB
;
6573 symstrtab_hdr
->sh_flags
= 0;
6574 symstrtab_hdr
->sh_addr
= 0;
6575 symstrtab_hdr
->sh_entsize
= 0;
6576 symstrtab_hdr
->sh_link
= 0;
6577 symstrtab_hdr
->sh_info
= 0;
6578 symstrtab_hdr
->sh_addralign
= 1;
6583 /* Return the number of bytes required to hold the symtab vector.
6585 Note that we base it on the count plus 1, since we will null terminate
6586 the vector allocated based on this size. However, the ELF symbol table
6587 always has a dummy entry as symbol #0, so it ends up even. */
6590 _bfd_elf_get_symtab_upper_bound (bfd
*abfd
)
6594 Elf_Internal_Shdr
*hdr
= &elf_tdata (abfd
)->symtab_hdr
;
6596 symcount
= hdr
->sh_size
/ get_elf_backend_data (abfd
)->s
->sizeof_sym
;
6597 symtab_size
= (symcount
+ 1) * (sizeof (asymbol
*));
6599 symtab_size
-= sizeof (asymbol
*);
6605 _bfd_elf_get_dynamic_symtab_upper_bound (bfd
*abfd
)
6609 Elf_Internal_Shdr
*hdr
= &elf_tdata (abfd
)->dynsymtab_hdr
;
6611 if (elf_dynsymtab (abfd
) == 0)
6613 bfd_set_error (bfd_error_invalid_operation
);
6617 symcount
= hdr
->sh_size
/ get_elf_backend_data (abfd
)->s
->sizeof_sym
;
6618 symtab_size
= (symcount
+ 1) * (sizeof (asymbol
*));
6620 symtab_size
-= sizeof (asymbol
*);
6626 _bfd_elf_get_reloc_upper_bound (bfd
*abfd ATTRIBUTE_UNUSED
,
6629 return (asect
->reloc_count
+ 1) * sizeof (arelent
*);
6632 /* Canonicalize the relocs. */
6635 _bfd_elf_canonicalize_reloc (bfd
*abfd
,
6642 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
6644 if (! bed
->s
->slurp_reloc_table (abfd
, section
, symbols
, FALSE
))
6647 tblptr
= section
->relocation
;
6648 for (i
= 0; i
< section
->reloc_count
; i
++)
6649 *relptr
++ = tblptr
++;
6653 return section
->reloc_count
;
6657 _bfd_elf_canonicalize_symtab (bfd
*abfd
, asymbol
**allocation
)
6659 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
6660 long symcount
= bed
->s
->slurp_symbol_table (abfd
, allocation
, FALSE
);
6663 bfd_get_symcount (abfd
) = symcount
;
6668 _bfd_elf_canonicalize_dynamic_symtab (bfd
*abfd
,
6669 asymbol
**allocation
)
6671 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
6672 long symcount
= bed
->s
->slurp_symbol_table (abfd
, allocation
, TRUE
);
6675 bfd_get_dynamic_symcount (abfd
) = symcount
;
6679 /* Return the size required for the dynamic reloc entries. Any loadable
6680 section that was actually installed in the BFD, and has type SHT_REL
6681 or SHT_RELA, and uses the dynamic symbol table, is considered to be a
6682 dynamic reloc section. */
6685 _bfd_elf_get_dynamic_reloc_upper_bound (bfd
*abfd
)
6690 if (elf_dynsymtab (abfd
) == 0)
6692 bfd_set_error (bfd_error_invalid_operation
);
6696 ret
= sizeof (arelent
*);
6697 for (s
= abfd
->sections
; s
!= NULL
; s
= s
->next
)
6698 if (elf_section_data (s
)->this_hdr
.sh_link
== elf_dynsymtab (abfd
)
6699 && (elf_section_data (s
)->this_hdr
.sh_type
== SHT_REL
6700 || elf_section_data (s
)->this_hdr
.sh_type
== SHT_RELA
))
6701 ret
+= ((s
->size
/ elf_section_data (s
)->this_hdr
.sh_entsize
)
6702 * sizeof (arelent
*));
6707 /* Canonicalize the dynamic relocation entries. Note that we return the
6708 dynamic relocations as a single block, although they are actually
6709 associated with particular sections; the interface, which was
6710 designed for SunOS style shared libraries, expects that there is only
6711 one set of dynamic relocs. Any loadable section that was actually
6712 installed in the BFD, and has type SHT_REL or SHT_RELA, and uses the
6713 dynamic symbol table, is considered to be a dynamic reloc section. */
6716 _bfd_elf_canonicalize_dynamic_reloc (bfd
*abfd
,
6720 bfd_boolean (*slurp_relocs
) (bfd
*, asection
*, asymbol
**, bfd_boolean
);
6724 if (elf_dynsymtab (abfd
) == 0)
6726 bfd_set_error (bfd_error_invalid_operation
);
6730 slurp_relocs
= get_elf_backend_data (abfd
)->s
->slurp_reloc_table
;
6732 for (s
= abfd
->sections
; s
!= NULL
; s
= s
->next
)
6734 if (elf_section_data (s
)->this_hdr
.sh_link
== elf_dynsymtab (abfd
)
6735 && (elf_section_data (s
)->this_hdr
.sh_type
== SHT_REL
6736 || elf_section_data (s
)->this_hdr
.sh_type
== SHT_RELA
))
6741 if (! (*slurp_relocs
) (abfd
, s
, syms
, TRUE
))
6743 count
= s
->size
/ elf_section_data (s
)->this_hdr
.sh_entsize
;
6745 for (i
= 0; i
< count
; i
++)
6756 /* Read in the version information. */
6759 _bfd_elf_slurp_version_tables (bfd
*abfd
, bfd_boolean default_imported_symver
)
6761 bfd_byte
*contents
= NULL
;
6762 unsigned int freeidx
= 0;
6764 if (elf_dynverref (abfd
) != 0)
6766 Elf_Internal_Shdr
*hdr
;
6767 Elf_External_Verneed
*everneed
;
6768 Elf_Internal_Verneed
*iverneed
;
6770 bfd_byte
*contents_end
;
6772 hdr
= &elf_tdata (abfd
)->dynverref_hdr
;
6774 elf_tdata (abfd
)->verref
= (Elf_Internal_Verneed
*)
6775 bfd_zalloc2 (abfd
, hdr
->sh_info
, sizeof (Elf_Internal_Verneed
));
6776 if (elf_tdata (abfd
)->verref
== NULL
)
6779 elf_tdata (abfd
)->cverrefs
= hdr
->sh_info
;
6781 contents
= (bfd_byte
*) bfd_malloc (hdr
->sh_size
);
6782 if (contents
== NULL
)
6784 error_return_verref
:
6785 elf_tdata (abfd
)->verref
= NULL
;
6786 elf_tdata (abfd
)->cverrefs
= 0;
6789 if (bfd_seek (abfd
, hdr
->sh_offset
, SEEK_SET
) != 0
6790 || bfd_bread (contents
, hdr
->sh_size
, abfd
) != hdr
->sh_size
)
6791 goto error_return_verref
;
6793 if (hdr
->sh_info
&& hdr
->sh_size
< sizeof (Elf_External_Verneed
))
6794 goto error_return_verref
;
6796 BFD_ASSERT (sizeof (Elf_External_Verneed
)
6797 == sizeof (Elf_External_Vernaux
));
6798 contents_end
= contents
+ hdr
->sh_size
- sizeof (Elf_External_Verneed
);
6799 everneed
= (Elf_External_Verneed
*) contents
;
6800 iverneed
= elf_tdata (abfd
)->verref
;
6801 for (i
= 0; i
< hdr
->sh_info
; i
++, iverneed
++)
6803 Elf_External_Vernaux
*evernaux
;
6804 Elf_Internal_Vernaux
*ivernaux
;
6807 _bfd_elf_swap_verneed_in (abfd
, everneed
, iverneed
);
6809 iverneed
->vn_bfd
= abfd
;
6811 iverneed
->vn_filename
=
6812 bfd_elf_string_from_elf_section (abfd
, hdr
->sh_link
,
6814 if (iverneed
->vn_filename
== NULL
)
6815 goto error_return_verref
;
6817 if (iverneed
->vn_cnt
== 0)
6818 iverneed
->vn_auxptr
= NULL
;
6821 iverneed
->vn_auxptr
= (struct elf_internal_vernaux
*)
6822 bfd_alloc2 (abfd
, iverneed
->vn_cnt
,
6823 sizeof (Elf_Internal_Vernaux
));
6824 if (iverneed
->vn_auxptr
== NULL
)
6825 goto error_return_verref
;
6828 if (iverneed
->vn_aux
6829 > (size_t) (contents_end
- (bfd_byte
*) everneed
))
6830 goto error_return_verref
;
6832 evernaux
= ((Elf_External_Vernaux
*)
6833 ((bfd_byte
*) everneed
+ iverneed
->vn_aux
));
6834 ivernaux
= iverneed
->vn_auxptr
;
6835 for (j
= 0; j
< iverneed
->vn_cnt
; j
++, ivernaux
++)
6837 _bfd_elf_swap_vernaux_in (abfd
, evernaux
, ivernaux
);
6839 ivernaux
->vna_nodename
=
6840 bfd_elf_string_from_elf_section (abfd
, hdr
->sh_link
,
6841 ivernaux
->vna_name
);
6842 if (ivernaux
->vna_nodename
== NULL
)
6843 goto error_return_verref
;
6845 if (j
+ 1 < iverneed
->vn_cnt
)
6846 ivernaux
->vna_nextptr
= ivernaux
+ 1;
6848 ivernaux
->vna_nextptr
= NULL
;
6850 if (ivernaux
->vna_next
6851 > (size_t) (contents_end
- (bfd_byte
*) evernaux
))
6852 goto error_return_verref
;
6854 evernaux
= ((Elf_External_Vernaux
*)
6855 ((bfd_byte
*) evernaux
+ ivernaux
->vna_next
));
6857 if (ivernaux
->vna_other
> freeidx
)
6858 freeidx
= ivernaux
->vna_other
;
6861 if (i
+ 1 < hdr
->sh_info
)
6862 iverneed
->vn_nextref
= iverneed
+ 1;
6864 iverneed
->vn_nextref
= NULL
;
6866 if (iverneed
->vn_next
6867 > (size_t) (contents_end
- (bfd_byte
*) everneed
))
6868 goto error_return_verref
;
6870 everneed
= ((Elf_External_Verneed
*)
6871 ((bfd_byte
*) everneed
+ iverneed
->vn_next
));
6878 if (elf_dynverdef (abfd
) != 0)
6880 Elf_Internal_Shdr
*hdr
;
6881 Elf_External_Verdef
*everdef
;
6882 Elf_Internal_Verdef
*iverdef
;
6883 Elf_Internal_Verdef
*iverdefarr
;
6884 Elf_Internal_Verdef iverdefmem
;
6886 unsigned int maxidx
;
6887 bfd_byte
*contents_end_def
, *contents_end_aux
;
6889 hdr
= &elf_tdata (abfd
)->dynverdef_hdr
;
6891 contents
= (bfd_byte
*) bfd_malloc (hdr
->sh_size
);
6892 if (contents
== NULL
)
6894 if (bfd_seek (abfd
, hdr
->sh_offset
, SEEK_SET
) != 0
6895 || bfd_bread (contents
, hdr
->sh_size
, abfd
) != hdr
->sh_size
)
6898 if (hdr
->sh_info
&& hdr
->sh_size
< sizeof (Elf_External_Verdef
))
6901 BFD_ASSERT (sizeof (Elf_External_Verdef
)
6902 >= sizeof (Elf_External_Verdaux
));
6903 contents_end_def
= contents
+ hdr
->sh_size
6904 - sizeof (Elf_External_Verdef
);
6905 contents_end_aux
= contents
+ hdr
->sh_size
6906 - sizeof (Elf_External_Verdaux
);
6908 /* We know the number of entries in the section but not the maximum
6909 index. Therefore we have to run through all entries and find
6911 everdef
= (Elf_External_Verdef
*) contents
;
6913 for (i
= 0; i
< hdr
->sh_info
; ++i
)
6915 _bfd_elf_swap_verdef_in (abfd
, everdef
, &iverdefmem
);
6917 if ((iverdefmem
.vd_ndx
& ((unsigned) VERSYM_VERSION
)) > maxidx
)
6918 maxidx
= iverdefmem
.vd_ndx
& ((unsigned) VERSYM_VERSION
);
6920 if (iverdefmem
.vd_next
6921 > (size_t) (contents_end_def
- (bfd_byte
*) everdef
))
6924 everdef
= ((Elf_External_Verdef
*)
6925 ((bfd_byte
*) everdef
+ iverdefmem
.vd_next
));
6928 if (default_imported_symver
)
6930 if (freeidx
> maxidx
)
6935 elf_tdata (abfd
)->verdef
= (Elf_Internal_Verdef
*)
6936 bfd_zalloc2 (abfd
, maxidx
, sizeof (Elf_Internal_Verdef
));
6937 if (elf_tdata (abfd
)->verdef
== NULL
)
6940 elf_tdata (abfd
)->cverdefs
= maxidx
;
6942 everdef
= (Elf_External_Verdef
*) contents
;
6943 iverdefarr
= elf_tdata (abfd
)->verdef
;
6944 for (i
= 0; i
< hdr
->sh_info
; i
++)
6946 Elf_External_Verdaux
*everdaux
;
6947 Elf_Internal_Verdaux
*iverdaux
;
6950 _bfd_elf_swap_verdef_in (abfd
, everdef
, &iverdefmem
);
6952 if ((iverdefmem
.vd_ndx
& VERSYM_VERSION
) == 0)
6954 error_return_verdef
:
6955 elf_tdata (abfd
)->verdef
= NULL
;
6956 elf_tdata (abfd
)->cverdefs
= 0;
6960 iverdef
= &iverdefarr
[(iverdefmem
.vd_ndx
& VERSYM_VERSION
) - 1];
6961 memcpy (iverdef
, &iverdefmem
, sizeof (Elf_Internal_Verdef
));
6963 iverdef
->vd_bfd
= abfd
;
6965 if (iverdef
->vd_cnt
== 0)
6966 iverdef
->vd_auxptr
= NULL
;
6969 iverdef
->vd_auxptr
= (struct elf_internal_verdaux
*)
6970 bfd_alloc2 (abfd
, iverdef
->vd_cnt
,
6971 sizeof (Elf_Internal_Verdaux
));
6972 if (iverdef
->vd_auxptr
== NULL
)
6973 goto error_return_verdef
;
6977 > (size_t) (contents_end_aux
- (bfd_byte
*) everdef
))
6978 goto error_return_verdef
;
6980 everdaux
= ((Elf_External_Verdaux
*)
6981 ((bfd_byte
*) everdef
+ iverdef
->vd_aux
));
6982 iverdaux
= iverdef
->vd_auxptr
;
6983 for (j
= 0; j
< iverdef
->vd_cnt
; j
++, iverdaux
++)
6985 _bfd_elf_swap_verdaux_in (abfd
, everdaux
, iverdaux
);
6987 iverdaux
->vda_nodename
=
6988 bfd_elf_string_from_elf_section (abfd
, hdr
->sh_link
,
6989 iverdaux
->vda_name
);
6990 if (iverdaux
->vda_nodename
== NULL
)
6991 goto error_return_verdef
;
6993 if (j
+ 1 < iverdef
->vd_cnt
)
6994 iverdaux
->vda_nextptr
= iverdaux
+ 1;
6996 iverdaux
->vda_nextptr
= NULL
;
6998 if (iverdaux
->vda_next
6999 > (size_t) (contents_end_aux
- (bfd_byte
*) everdaux
))
7000 goto error_return_verdef
;
7002 everdaux
= ((Elf_External_Verdaux
*)
7003 ((bfd_byte
*) everdaux
+ iverdaux
->vda_next
));
7006 if (iverdef
->vd_cnt
)
7007 iverdef
->vd_nodename
= iverdef
->vd_auxptr
->vda_nodename
;
7009 if ((size_t) (iverdef
- iverdefarr
) + 1 < maxidx
)
7010 iverdef
->vd_nextdef
= iverdef
+ 1;
7012 iverdef
->vd_nextdef
= NULL
;
7014 everdef
= ((Elf_External_Verdef
*)
7015 ((bfd_byte
*) everdef
+ iverdef
->vd_next
));
7021 else if (default_imported_symver
)
7028 elf_tdata (abfd
)->verdef
= (Elf_Internal_Verdef
*)
7029 bfd_zalloc2 (abfd
, freeidx
, sizeof (Elf_Internal_Verdef
));
7030 if (elf_tdata (abfd
)->verdef
== NULL
)
7033 elf_tdata (abfd
)->cverdefs
= freeidx
;
7036 /* Create a default version based on the soname. */
7037 if (default_imported_symver
)
7039 Elf_Internal_Verdef
*iverdef
;
7040 Elf_Internal_Verdaux
*iverdaux
;
7042 iverdef
= &elf_tdata (abfd
)->verdef
[freeidx
- 1];;
7044 iverdef
->vd_version
= VER_DEF_CURRENT
;
7045 iverdef
->vd_flags
= 0;
7046 iverdef
->vd_ndx
= freeidx
;
7047 iverdef
->vd_cnt
= 1;
7049 iverdef
->vd_bfd
= abfd
;
7051 iverdef
->vd_nodename
= bfd_elf_get_dt_soname (abfd
);
7052 if (iverdef
->vd_nodename
== NULL
)
7053 goto error_return_verdef
;
7054 iverdef
->vd_nextdef
= NULL
;
7055 iverdef
->vd_auxptr
= (struct elf_internal_verdaux
*)
7056 bfd_alloc (abfd
, sizeof (Elf_Internal_Verdaux
));
7057 if (iverdef
->vd_auxptr
== NULL
)
7058 goto error_return_verdef
;
7060 iverdaux
= iverdef
->vd_auxptr
;
7061 iverdaux
->vda_nodename
= iverdef
->vd_nodename
;
7062 iverdaux
->vda_nextptr
= NULL
;
7068 if (contents
!= NULL
)
7074 _bfd_elf_make_empty_symbol (bfd
*abfd
)
7076 elf_symbol_type
*newsym
;
7077 bfd_size_type amt
= sizeof (elf_symbol_type
);
7079 newsym
= (elf_symbol_type
*) bfd_zalloc (abfd
, amt
);
7084 newsym
->symbol
.the_bfd
= abfd
;
7085 return &newsym
->symbol
;
7090 _bfd_elf_get_symbol_info (bfd
*abfd ATTRIBUTE_UNUSED
,
7094 bfd_symbol_info (symbol
, ret
);
7097 /* Return whether a symbol name implies a local symbol. Most targets
7098 use this function for the is_local_label_name entry point, but some
7102 _bfd_elf_is_local_label_name (bfd
*abfd ATTRIBUTE_UNUSED
,
7105 /* Normal local symbols start with ``.L''. */
7106 if (name
[0] == '.' && name
[1] == 'L')
7109 /* At least some SVR4 compilers (e.g., UnixWare 2.1 cc) generate
7110 DWARF debugging symbols starting with ``..''. */
7111 if (name
[0] == '.' && name
[1] == '.')
7114 /* gcc will sometimes generate symbols beginning with ``_.L_'' when
7115 emitting DWARF debugging output. I suspect this is actually a
7116 small bug in gcc (it calls ASM_OUTPUT_LABEL when it should call
7117 ASM_GENERATE_INTERNAL_LABEL, and this causes the leading
7118 underscore to be emitted on some ELF targets). For ease of use,
7119 we treat such symbols as local. */
7120 if (name
[0] == '_' && name
[1] == '.' && name
[2] == 'L' && name
[3] == '_')
7127 _bfd_elf_get_lineno (bfd
*abfd ATTRIBUTE_UNUSED
,
7128 asymbol
*symbol ATTRIBUTE_UNUSED
)
7135 _bfd_elf_set_arch_mach (bfd
*abfd
,
7136 enum bfd_architecture arch
,
7137 unsigned long machine
)
7139 /* If this isn't the right architecture for this backend, and this
7140 isn't the generic backend, fail. */
7141 if (arch
!= get_elf_backend_data (abfd
)->arch
7142 && arch
!= bfd_arch_unknown
7143 && get_elf_backend_data (abfd
)->arch
!= bfd_arch_unknown
)
7146 return bfd_default_set_arch_mach (abfd
, arch
, machine
);
7149 /* Find the function to a particular section and offset,
7150 for error reporting. */
7153 elf_find_function (bfd
*abfd
,
7157 const char **filename_ptr
,
7158 const char **functionname_ptr
)
7160 const char *filename
;
7161 asymbol
*func
, *file
;
7164 /* ??? Given multiple file symbols, it is impossible to reliably
7165 choose the right file name for global symbols. File symbols are
7166 local symbols, and thus all file symbols must sort before any
7167 global symbols. The ELF spec may be interpreted to say that a
7168 file symbol must sort before other local symbols, but currently
7169 ld -r doesn't do this. So, for ld -r output, it is possible to
7170 make a better choice of file name for local symbols by ignoring
7171 file symbols appearing after a given local symbol. */
7172 enum { nothing_seen
, symbol_seen
, file_after_symbol_seen
} state
;
7173 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
7179 state
= nothing_seen
;
7181 for (p
= symbols
; *p
!= NULL
; p
++)
7186 q
= (elf_symbol_type
*) *p
;
7188 type
= ELF_ST_TYPE (q
->internal_elf_sym
.st_info
);
7193 if (state
== symbol_seen
)
7194 state
= file_after_symbol_seen
;
7197 if (!bed
->is_function_type (type
))
7200 if (bfd_get_section (&q
->symbol
) == section
7201 && q
->symbol
.value
>= low_func
7202 && q
->symbol
.value
<= offset
)
7204 func
= (asymbol
*) q
;
7205 low_func
= q
->symbol
.value
;
7208 && (ELF_ST_BIND (q
->internal_elf_sym
.st_info
) == STB_LOCAL
7209 || state
!= file_after_symbol_seen
))
7210 filename
= bfd_asymbol_name (file
);
7214 if (state
== nothing_seen
)
7215 state
= symbol_seen
;
7222 *filename_ptr
= filename
;
7223 if (functionname_ptr
)
7224 *functionname_ptr
= bfd_asymbol_name (func
);
7229 /* Find the nearest line to a particular section and offset,
7230 for error reporting. */
7233 _bfd_elf_find_nearest_line (bfd
*abfd
,
7237 const char **filename_ptr
,
7238 const char **functionname_ptr
,
7239 unsigned int *line_ptr
)
7243 if (_bfd_dwarf1_find_nearest_line (abfd
, section
, symbols
, offset
,
7244 filename_ptr
, functionname_ptr
,
7247 if (!*functionname_ptr
)
7248 elf_find_function (abfd
, section
, symbols
, offset
,
7249 *filename_ptr
? NULL
: filename_ptr
,
7255 if (_bfd_dwarf2_find_nearest_line (abfd
, section
, symbols
, offset
,
7256 filename_ptr
, functionname_ptr
,
7258 &elf_tdata (abfd
)->dwarf2_find_line_info
))
7260 if (!*functionname_ptr
)
7261 elf_find_function (abfd
, section
, symbols
, offset
,
7262 *filename_ptr
? NULL
: filename_ptr
,
7268 if (! _bfd_stab_section_find_nearest_line (abfd
, symbols
, section
, offset
,
7269 &found
, filename_ptr
,
7270 functionname_ptr
, line_ptr
,
7271 &elf_tdata (abfd
)->line_info
))
7273 if (found
&& (*functionname_ptr
|| *line_ptr
))
7276 if (symbols
== NULL
)
7279 if (! elf_find_function (abfd
, section
, symbols
, offset
,
7280 filename_ptr
, functionname_ptr
))
7287 /* Find the line for a symbol. */
7290 _bfd_elf_find_line (bfd
*abfd
, asymbol
**symbols
, asymbol
*symbol
,
7291 const char **filename_ptr
, unsigned int *line_ptr
)
7293 return _bfd_dwarf2_find_line (abfd
, symbols
, symbol
,
7294 filename_ptr
, line_ptr
, 0,
7295 &elf_tdata (abfd
)->dwarf2_find_line_info
);
7298 /* After a call to bfd_find_nearest_line, successive calls to
7299 bfd_find_inliner_info can be used to get source information about
7300 each level of function inlining that terminated at the address
7301 passed to bfd_find_nearest_line. Currently this is only supported
7302 for DWARF2 with appropriate DWARF3 extensions. */
7305 _bfd_elf_find_inliner_info (bfd
*abfd
,
7306 const char **filename_ptr
,
7307 const char **functionname_ptr
,
7308 unsigned int *line_ptr
)
7311 found
= _bfd_dwarf2_find_inliner_info (abfd
, filename_ptr
,
7312 functionname_ptr
, line_ptr
,
7313 & elf_tdata (abfd
)->dwarf2_find_line_info
);
7318 _bfd_elf_sizeof_headers (bfd
*abfd
, struct bfd_link_info
*info
)
7320 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
7321 int ret
= bed
->s
->sizeof_ehdr
;
7323 if (!info
->relocatable
)
7325 bfd_size_type phdr_size
= elf_tdata (abfd
)->program_header_size
;
7327 if (phdr_size
== (bfd_size_type
) -1)
7329 struct elf_segment_map
*m
;
7332 for (m
= elf_tdata (abfd
)->segment_map
; m
!= NULL
; m
= m
->next
)
7333 phdr_size
+= bed
->s
->sizeof_phdr
;
7336 phdr_size
= get_program_header_size (abfd
, info
);
7339 elf_tdata (abfd
)->program_header_size
= phdr_size
;
7347 _bfd_elf_set_section_contents (bfd
*abfd
,
7349 const void *location
,
7351 bfd_size_type count
)
7353 Elf_Internal_Shdr
*hdr
;
7356 if (! abfd
->output_has_begun
7357 && ! _bfd_elf_compute_section_file_positions (abfd
, NULL
))
7360 hdr
= &elf_section_data (section
)->this_hdr
;
7361 pos
= hdr
->sh_offset
+ offset
;
7362 if (bfd_seek (abfd
, pos
, SEEK_SET
) != 0
7363 || bfd_bwrite (location
, count
, abfd
) != count
)
7370 _bfd_elf_no_info_to_howto (bfd
*abfd ATTRIBUTE_UNUSED
,
7371 arelent
*cache_ptr ATTRIBUTE_UNUSED
,
7372 Elf_Internal_Rela
*dst ATTRIBUTE_UNUSED
)
7377 /* Try to convert a non-ELF reloc into an ELF one. */
7380 _bfd_elf_validate_reloc (bfd
*abfd
, arelent
*areloc
)
7382 /* Check whether we really have an ELF howto. */
7384 if ((*areloc
->sym_ptr_ptr
)->the_bfd
->xvec
!= abfd
->xvec
)
7386 bfd_reloc_code_real_type code
;
7387 reloc_howto_type
*howto
;
7389 /* Alien reloc: Try to determine its type to replace it with an
7390 equivalent ELF reloc. */
7392 if (areloc
->howto
->pc_relative
)
7394 switch (areloc
->howto
->bitsize
)
7397 code
= BFD_RELOC_8_PCREL
;
7400 code
= BFD_RELOC_12_PCREL
;
7403 code
= BFD_RELOC_16_PCREL
;
7406 code
= BFD_RELOC_24_PCREL
;
7409 code
= BFD_RELOC_32_PCREL
;
7412 code
= BFD_RELOC_64_PCREL
;
7418 howto
= bfd_reloc_type_lookup (abfd
, code
);
7420 if (areloc
->howto
->pcrel_offset
!= howto
->pcrel_offset
)
7422 if (howto
->pcrel_offset
)
7423 areloc
->addend
+= areloc
->address
;
7425 areloc
->addend
-= areloc
->address
; /* addend is unsigned!! */
7430 switch (areloc
->howto
->bitsize
)
7436 code
= BFD_RELOC_14
;
7439 code
= BFD_RELOC_16
;
7442 code
= BFD_RELOC_26
;
7445 code
= BFD_RELOC_32
;
7448 code
= BFD_RELOC_64
;
7454 howto
= bfd_reloc_type_lookup (abfd
, code
);
7458 areloc
->howto
= howto
;
7466 (*_bfd_error_handler
)
7467 (_("%B: unsupported relocation type %s"),
7468 abfd
, areloc
->howto
->name
);
7469 bfd_set_error (bfd_error_bad_value
);
7474 _bfd_elf_close_and_cleanup (bfd
*abfd
)
7476 if (bfd_get_format (abfd
) == bfd_object
)
7478 if (elf_tdata (abfd
) != NULL
&& elf_shstrtab (abfd
) != NULL
)
7479 _bfd_elf_strtab_free (elf_shstrtab (abfd
));
7480 _bfd_dwarf2_cleanup_debug_info (abfd
);
7483 return _bfd_generic_close_and_cleanup (abfd
);
7486 /* For Rel targets, we encode meaningful data for BFD_RELOC_VTABLE_ENTRY
7487 in the relocation's offset. Thus we cannot allow any sort of sanity
7488 range-checking to interfere. There is nothing else to do in processing
7491 bfd_reloc_status_type
7492 _bfd_elf_rel_vtable_reloc_fn
7493 (bfd
*abfd ATTRIBUTE_UNUSED
, arelent
*re ATTRIBUTE_UNUSED
,
7494 struct bfd_symbol
*symbol ATTRIBUTE_UNUSED
,
7495 void *data ATTRIBUTE_UNUSED
, asection
*is ATTRIBUTE_UNUSED
,
7496 bfd
*obfd ATTRIBUTE_UNUSED
, char **errmsg ATTRIBUTE_UNUSED
)
7498 return bfd_reloc_ok
;
7501 /* Elf core file support. Much of this only works on native
7502 toolchains, since we rely on knowing the
7503 machine-dependent procfs structure in order to pick
7504 out details about the corefile. */
7506 #ifdef HAVE_SYS_PROCFS_H
7507 /* Needed for new procfs interface on sparc-solaris. */
7508 # define _STRUCTURED_PROC 1
7509 # include <sys/procfs.h>
7512 /* FIXME: this is kinda wrong, but it's what gdb wants. */
7515 elfcore_make_pid (bfd
*abfd
)
7517 return ((elf_tdata (abfd
)->core_lwpid
<< 16)
7518 + (elf_tdata (abfd
)->core_pid
));
7521 /* If there isn't a section called NAME, make one, using
7522 data from SECT. Note, this function will generate a
7523 reference to NAME, so you shouldn't deallocate or
7527 elfcore_maybe_make_sect (bfd
*abfd
, char *name
, asection
*sect
)
7531 if (bfd_get_section_by_name (abfd
, name
) != NULL
)
7534 sect2
= bfd_make_section_with_flags (abfd
, name
, sect
->flags
);
7538 sect2
->size
= sect
->size
;
7539 sect2
->filepos
= sect
->filepos
;
7540 sect2
->alignment_power
= sect
->alignment_power
;
7544 /* Create a pseudosection containing SIZE bytes at FILEPOS. This
7545 actually creates up to two pseudosections:
7546 - For the single-threaded case, a section named NAME, unless
7547 such a section already exists.
7548 - For the multi-threaded case, a section named "NAME/PID", where
7549 PID is elfcore_make_pid (abfd).
7550 Both pseudosections have identical contents. */
7552 _bfd_elfcore_make_pseudosection (bfd
*abfd
,
7558 char *threaded_name
;
7562 /* Build the section name. */
7564 sprintf (buf
, "%s/%d", name
, elfcore_make_pid (abfd
));
7565 len
= strlen (buf
) + 1;
7566 threaded_name
= (char *) bfd_alloc (abfd
, len
);
7567 if (threaded_name
== NULL
)
7569 memcpy (threaded_name
, buf
, len
);
7571 sect
= bfd_make_section_anyway_with_flags (abfd
, threaded_name
,
7576 sect
->filepos
= filepos
;
7577 sect
->alignment_power
= 2;
7579 return elfcore_maybe_make_sect (abfd
, name
, sect
);
7582 /* prstatus_t exists on:
7584 linux 2.[01] + glibc
7588 #if defined (HAVE_PRSTATUS_T)
7591 elfcore_grok_prstatus (bfd
*abfd
, Elf_Internal_Note
*note
)
7596 if (note
->descsz
== sizeof (prstatus_t
))
7600 size
= sizeof (prstat
.pr_reg
);
7601 offset
= offsetof (prstatus_t
, pr_reg
);
7602 memcpy (&prstat
, note
->descdata
, sizeof (prstat
));
7604 /* Do not overwrite the core signal if it
7605 has already been set by another thread. */
7606 if (elf_tdata (abfd
)->core_signal
== 0)
7607 elf_tdata (abfd
)->core_signal
= prstat
.pr_cursig
;
7608 elf_tdata (abfd
)->core_pid
= prstat
.pr_pid
;
7610 /* pr_who exists on:
7613 pr_who doesn't exist on:
7616 #if defined (HAVE_PRSTATUS_T_PR_WHO)
7617 elf_tdata (abfd
)->core_lwpid
= prstat
.pr_who
;
7620 #if defined (HAVE_PRSTATUS32_T)
7621 else if (note
->descsz
== sizeof (prstatus32_t
))
7623 /* 64-bit host, 32-bit corefile */
7624 prstatus32_t prstat
;
7626 size
= sizeof (prstat
.pr_reg
);
7627 offset
= offsetof (prstatus32_t
, pr_reg
);
7628 memcpy (&prstat
, note
->descdata
, sizeof (prstat
));
7630 /* Do not overwrite the core signal if it
7631 has already been set by another thread. */
7632 if (elf_tdata (abfd
)->core_signal
== 0)
7633 elf_tdata (abfd
)->core_signal
= prstat
.pr_cursig
;
7634 elf_tdata (abfd
)->core_pid
= prstat
.pr_pid
;
7636 /* pr_who exists on:
7639 pr_who doesn't exist on:
7642 #if defined (HAVE_PRSTATUS32_T_PR_WHO)
7643 elf_tdata (abfd
)->core_lwpid
= prstat
.pr_who
;
7646 #endif /* HAVE_PRSTATUS32_T */
7649 /* Fail - we don't know how to handle any other
7650 note size (ie. data object type). */
7654 /* Make a ".reg/999" section and a ".reg" section. */
7655 return _bfd_elfcore_make_pseudosection (abfd
, ".reg",
7656 size
, note
->descpos
+ offset
);
7658 #endif /* defined (HAVE_PRSTATUS_T) */
7660 /* Create a pseudosection containing the exact contents of NOTE. */
7662 elfcore_make_note_pseudosection (bfd
*abfd
,
7664 Elf_Internal_Note
*note
)
7666 return _bfd_elfcore_make_pseudosection (abfd
, name
,
7667 note
->descsz
, note
->descpos
);
7670 /* There isn't a consistent prfpregset_t across platforms,
7671 but it doesn't matter, because we don't have to pick this
7672 data structure apart. */
7675 elfcore_grok_prfpreg (bfd
*abfd
, Elf_Internal_Note
*note
)
7677 return elfcore_make_note_pseudosection (abfd
, ".reg2", note
);
7680 /* Linux dumps the Intel SSE regs in a note named "LINUX" with a note
7681 type of NT_PRXFPREG. Just include the whole note's contents
7685 elfcore_grok_prxfpreg (bfd
*abfd
, Elf_Internal_Note
*note
)
7687 return elfcore_make_note_pseudosection (abfd
, ".reg-xfp", note
);
7690 /* Linux dumps the Intel XSAVE extended state in a note named "LINUX"
7691 with a note type of NT_X86_XSTATE. Just include the whole note's
7692 contents literally. */
7695 elfcore_grok_xstatereg (bfd
*abfd
, Elf_Internal_Note
*note
)
7697 return elfcore_make_note_pseudosection (abfd
, ".reg-xstate", note
);
7701 elfcore_grok_ppc_vmx (bfd
*abfd
, Elf_Internal_Note
*note
)
7703 return elfcore_make_note_pseudosection (abfd
, ".reg-ppc-vmx", note
);
7707 elfcore_grok_ppc_vsx (bfd
*abfd
, Elf_Internal_Note
*note
)
7709 return elfcore_make_note_pseudosection (abfd
, ".reg-ppc-vsx", note
);
7713 elfcore_grok_s390_high_gprs (bfd
*abfd
, Elf_Internal_Note
*note
)
7715 return elfcore_make_note_pseudosection (abfd
, ".reg-s390-high-gprs", note
);
7719 elfcore_grok_s390_timer (bfd
*abfd
, Elf_Internal_Note
*note
)
7721 return elfcore_make_note_pseudosection (abfd
, ".reg-s390-timer", note
);
7725 elfcore_grok_s390_todcmp (bfd
*abfd
, Elf_Internal_Note
*note
)
7727 return elfcore_make_note_pseudosection (abfd
, ".reg-s390-todcmp", note
);
7731 elfcore_grok_s390_todpreg (bfd
*abfd
, Elf_Internal_Note
*note
)
7733 return elfcore_make_note_pseudosection (abfd
, ".reg-s390-todpreg", note
);
7737 elfcore_grok_s390_ctrs (bfd
*abfd
, Elf_Internal_Note
*note
)
7739 return elfcore_make_note_pseudosection (abfd
, ".reg-s390-ctrs", note
);
7743 elfcore_grok_s390_prefix (bfd
*abfd
, Elf_Internal_Note
*note
)
7745 return elfcore_make_note_pseudosection (abfd
, ".reg-s390-prefix", note
);
7748 #if defined (HAVE_PRPSINFO_T)
7749 typedef prpsinfo_t elfcore_psinfo_t
;
7750 #if defined (HAVE_PRPSINFO32_T) /* Sparc64 cross Sparc32 */
7751 typedef prpsinfo32_t elfcore_psinfo32_t
;
7755 #if defined (HAVE_PSINFO_T)
7756 typedef psinfo_t elfcore_psinfo_t
;
7757 #if defined (HAVE_PSINFO32_T) /* Sparc64 cross Sparc32 */
7758 typedef psinfo32_t elfcore_psinfo32_t
;
7762 /* return a malloc'ed copy of a string at START which is at
7763 most MAX bytes long, possibly without a terminating '\0'.
7764 the copy will always have a terminating '\0'. */
7767 _bfd_elfcore_strndup (bfd
*abfd
, char *start
, size_t max
)
7770 char *end
= (char *) memchr (start
, '\0', max
);
7778 dups
= (char *) bfd_alloc (abfd
, len
+ 1);
7782 memcpy (dups
, start
, len
);
7788 #if defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T)
7790 elfcore_grok_psinfo (bfd
*abfd
, Elf_Internal_Note
*note
)
7792 if (note
->descsz
== sizeof (elfcore_psinfo_t
))
7794 elfcore_psinfo_t psinfo
;
7796 memcpy (&psinfo
, note
->descdata
, sizeof (psinfo
));
7798 elf_tdata (abfd
)->core_program
7799 = _bfd_elfcore_strndup (abfd
, psinfo
.pr_fname
,
7800 sizeof (psinfo
.pr_fname
));
7802 elf_tdata (abfd
)->core_command
7803 = _bfd_elfcore_strndup (abfd
, psinfo
.pr_psargs
,
7804 sizeof (psinfo
.pr_psargs
));
7806 #if defined (HAVE_PRPSINFO32_T) || defined (HAVE_PSINFO32_T)
7807 else if (note
->descsz
== sizeof (elfcore_psinfo32_t
))
7809 /* 64-bit host, 32-bit corefile */
7810 elfcore_psinfo32_t psinfo
;
7812 memcpy (&psinfo
, note
->descdata
, sizeof (psinfo
));
7814 elf_tdata (abfd
)->core_program
7815 = _bfd_elfcore_strndup (abfd
, psinfo
.pr_fname
,
7816 sizeof (psinfo
.pr_fname
));
7818 elf_tdata (abfd
)->core_command
7819 = _bfd_elfcore_strndup (abfd
, psinfo
.pr_psargs
,
7820 sizeof (psinfo
.pr_psargs
));
7826 /* Fail - we don't know how to handle any other
7827 note size (ie. data object type). */
7831 /* Note that for some reason, a spurious space is tacked
7832 onto the end of the args in some (at least one anyway)
7833 implementations, so strip it off if it exists. */
7836 char *command
= elf_tdata (abfd
)->core_command
;
7837 int n
= strlen (command
);
7839 if (0 < n
&& command
[n
- 1] == ' ')
7840 command
[n
- 1] = '\0';
7845 #endif /* defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T) */
7847 #if defined (HAVE_PSTATUS_T)
7849 elfcore_grok_pstatus (bfd
*abfd
, Elf_Internal_Note
*note
)
7851 if (note
->descsz
== sizeof (pstatus_t
)
7852 #if defined (HAVE_PXSTATUS_T)
7853 || note
->descsz
== sizeof (pxstatus_t
)
7859 memcpy (&pstat
, note
->descdata
, sizeof (pstat
));
7861 elf_tdata (abfd
)->core_pid
= pstat
.pr_pid
;
7863 #if defined (HAVE_PSTATUS32_T)
7864 else if (note
->descsz
== sizeof (pstatus32_t
))
7866 /* 64-bit host, 32-bit corefile */
7869 memcpy (&pstat
, note
->descdata
, sizeof (pstat
));
7871 elf_tdata (abfd
)->core_pid
= pstat
.pr_pid
;
7874 /* Could grab some more details from the "representative"
7875 lwpstatus_t in pstat.pr_lwp, but we'll catch it all in an
7876 NT_LWPSTATUS note, presumably. */
7880 #endif /* defined (HAVE_PSTATUS_T) */
7882 #if defined (HAVE_LWPSTATUS_T)
7884 elfcore_grok_lwpstatus (bfd
*abfd
, Elf_Internal_Note
*note
)
7886 lwpstatus_t lwpstat
;
7892 if (note
->descsz
!= sizeof (lwpstat
)
7893 #if defined (HAVE_LWPXSTATUS_T)
7894 && note
->descsz
!= sizeof (lwpxstatus_t
)
7899 memcpy (&lwpstat
, note
->descdata
, sizeof (lwpstat
));
7901 elf_tdata (abfd
)->core_lwpid
= lwpstat
.pr_lwpid
;
7902 /* Do not overwrite the core signal if it has already been set by
7904 if (elf_tdata (abfd
)->core_signal
== 0)
7905 elf_tdata (abfd
)->core_signal
= lwpstat
.pr_cursig
;
7907 /* Make a ".reg/999" section. */
7909 sprintf (buf
, ".reg/%d", elfcore_make_pid (abfd
));
7910 len
= strlen (buf
) + 1;
7911 name
= bfd_alloc (abfd
, len
);
7914 memcpy (name
, buf
, len
);
7916 sect
= bfd_make_section_anyway_with_flags (abfd
, name
, SEC_HAS_CONTENTS
);
7920 #if defined (HAVE_LWPSTATUS_T_PR_CONTEXT)
7921 sect
->size
= sizeof (lwpstat
.pr_context
.uc_mcontext
.gregs
);
7922 sect
->filepos
= note
->descpos
7923 + offsetof (lwpstatus_t
, pr_context
.uc_mcontext
.gregs
);
7926 #if defined (HAVE_LWPSTATUS_T_PR_REG)
7927 sect
->size
= sizeof (lwpstat
.pr_reg
);
7928 sect
->filepos
= note
->descpos
+ offsetof (lwpstatus_t
, pr_reg
);
7931 sect
->alignment_power
= 2;
7933 if (!elfcore_maybe_make_sect (abfd
, ".reg", sect
))
7936 /* Make a ".reg2/999" section */
7938 sprintf (buf
, ".reg2/%d", elfcore_make_pid (abfd
));
7939 len
= strlen (buf
) + 1;
7940 name
= bfd_alloc (abfd
, len
);
7943 memcpy (name
, buf
, len
);
7945 sect
= bfd_make_section_anyway_with_flags (abfd
, name
, SEC_HAS_CONTENTS
);
7949 #if defined (HAVE_LWPSTATUS_T_PR_CONTEXT)
7950 sect
->size
= sizeof (lwpstat
.pr_context
.uc_mcontext
.fpregs
);
7951 sect
->filepos
= note
->descpos
7952 + offsetof (lwpstatus_t
, pr_context
.uc_mcontext
.fpregs
);
7955 #if defined (HAVE_LWPSTATUS_T_PR_FPREG)
7956 sect
->size
= sizeof (lwpstat
.pr_fpreg
);
7957 sect
->filepos
= note
->descpos
+ offsetof (lwpstatus_t
, pr_fpreg
);
7960 sect
->alignment_power
= 2;
7962 return elfcore_maybe_make_sect (abfd
, ".reg2", sect
);
7964 #endif /* defined (HAVE_LWPSTATUS_T) */
7967 elfcore_grok_win32pstatus (bfd
*abfd
, Elf_Internal_Note
*note
)
7974 int is_active_thread
;
7977 if (note
->descsz
< 728)
7980 if (! CONST_STRNEQ (note
->namedata
, "win32"))
7983 type
= bfd_get_32 (abfd
, note
->descdata
);
7987 case 1 /* NOTE_INFO_PROCESS */:
7988 /* FIXME: need to add ->core_command. */
7989 /* process_info.pid */
7990 elf_tdata (abfd
)->core_pid
= bfd_get_32 (abfd
, note
->descdata
+ 8);
7991 /* process_info.signal */
7992 elf_tdata (abfd
)->core_signal
= bfd_get_32 (abfd
, note
->descdata
+ 12);
7995 case 2 /* NOTE_INFO_THREAD */:
7996 /* Make a ".reg/999" section. */
7997 /* thread_info.tid */
7998 sprintf (buf
, ".reg/%ld", (long) bfd_get_32 (abfd
, note
->descdata
+ 8));
8000 len
= strlen (buf
) + 1;
8001 name
= (char *) bfd_alloc (abfd
, len
);
8005 memcpy (name
, buf
, len
);
8007 sect
= bfd_make_section_anyway_with_flags (abfd
, name
, SEC_HAS_CONTENTS
);
8011 /* sizeof (thread_info.thread_context) */
8013 /* offsetof (thread_info.thread_context) */
8014 sect
->filepos
= note
->descpos
+ 12;
8015 sect
->alignment_power
= 2;
8017 /* thread_info.is_active_thread */
8018 is_active_thread
= bfd_get_32 (abfd
, note
->descdata
+ 8);
8020 if (is_active_thread
)
8021 if (! elfcore_maybe_make_sect (abfd
, ".reg", sect
))
8025 case 3 /* NOTE_INFO_MODULE */:
8026 /* Make a ".module/xxxxxxxx" section. */
8027 /* module_info.base_address */
8028 base_addr
= bfd_get_32 (abfd
, note
->descdata
+ 4);
8029 sprintf (buf
, ".module/%08lx", (unsigned long) base_addr
);
8031 len
= strlen (buf
) + 1;
8032 name
= (char *) bfd_alloc (abfd
, len
);
8036 memcpy (name
, buf
, len
);
8038 sect
= bfd_make_section_anyway_with_flags (abfd
, name
, SEC_HAS_CONTENTS
);
8043 sect
->size
= note
->descsz
;
8044 sect
->filepos
= note
->descpos
;
8045 sect
->alignment_power
= 2;
8056 elfcore_grok_note (bfd
*abfd
, Elf_Internal_Note
*note
)
8058 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
8066 if (bed
->elf_backend_grok_prstatus
)
8067 if ((*bed
->elf_backend_grok_prstatus
) (abfd
, note
))
8069 #if defined (HAVE_PRSTATUS_T)
8070 return elfcore_grok_prstatus (abfd
, note
);
8075 #if defined (HAVE_PSTATUS_T)
8077 return elfcore_grok_pstatus (abfd
, note
);
8080 #if defined (HAVE_LWPSTATUS_T)
8082 return elfcore_grok_lwpstatus (abfd
, note
);
8085 case NT_FPREGSET
: /* FIXME: rename to NT_PRFPREG */
8086 return elfcore_grok_prfpreg (abfd
, note
);
8088 case NT_WIN32PSTATUS
:
8089 return elfcore_grok_win32pstatus (abfd
, note
);
8091 case NT_PRXFPREG
: /* Linux SSE extension */
8092 if (note
->namesz
== 6
8093 && strcmp (note
->namedata
, "LINUX") == 0)
8094 return elfcore_grok_prxfpreg (abfd
, note
);
8098 case NT_X86_XSTATE
: /* Linux XSAVE extension */
8099 if (note
->namesz
== 6
8100 && strcmp (note
->namedata
, "LINUX") == 0)
8101 return elfcore_grok_xstatereg (abfd
, note
);
8106 if (note
->namesz
== 6
8107 && strcmp (note
->namedata
, "LINUX") == 0)
8108 return elfcore_grok_ppc_vmx (abfd
, note
);
8113 if (note
->namesz
== 6
8114 && strcmp (note
->namedata
, "LINUX") == 0)
8115 return elfcore_grok_ppc_vsx (abfd
, note
);
8119 case NT_S390_HIGH_GPRS
:
8120 if (note
->namesz
== 6
8121 && strcmp (note
->namedata
, "LINUX") == 0)
8122 return elfcore_grok_s390_high_gprs (abfd
, note
);
8127 if (note
->namesz
== 6
8128 && strcmp (note
->namedata
, "LINUX") == 0)
8129 return elfcore_grok_s390_timer (abfd
, note
);
8133 case NT_S390_TODCMP
:
8134 if (note
->namesz
== 6
8135 && strcmp (note
->namedata
, "LINUX") == 0)
8136 return elfcore_grok_s390_todcmp (abfd
, note
);
8140 case NT_S390_TODPREG
:
8141 if (note
->namesz
== 6
8142 && strcmp (note
->namedata
, "LINUX") == 0)
8143 return elfcore_grok_s390_todpreg (abfd
, note
);
8148 if (note
->namesz
== 6
8149 && strcmp (note
->namedata
, "LINUX") == 0)
8150 return elfcore_grok_s390_ctrs (abfd
, note
);
8154 case NT_S390_PREFIX
:
8155 if (note
->namesz
== 6
8156 && strcmp (note
->namedata
, "LINUX") == 0)
8157 return elfcore_grok_s390_prefix (abfd
, note
);
8163 if (bed
->elf_backend_grok_psinfo
)
8164 if ((*bed
->elf_backend_grok_psinfo
) (abfd
, note
))
8166 #if defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T)
8167 return elfcore_grok_psinfo (abfd
, note
);
8174 asection
*sect
= bfd_make_section_anyway_with_flags (abfd
, ".auxv",
8179 sect
->size
= note
->descsz
;
8180 sect
->filepos
= note
->descpos
;
8181 sect
->alignment_power
= 1 + bfd_get_arch_size (abfd
) / 32;
8189 elfobj_grok_gnu_build_id (bfd
*abfd
, Elf_Internal_Note
*note
)
8191 elf_tdata (abfd
)->build_id_size
= note
->descsz
;
8192 elf_tdata (abfd
)->build_id
= (bfd_byte
*) bfd_alloc (abfd
, note
->descsz
);
8193 if (elf_tdata (abfd
)->build_id
== NULL
)
8196 memcpy (elf_tdata (abfd
)->build_id
, note
->descdata
, note
->descsz
);
8202 elfobj_grok_gnu_note (bfd
*abfd
, Elf_Internal_Note
*note
)
8209 case NT_GNU_BUILD_ID
:
8210 return elfobj_grok_gnu_build_id (abfd
, note
);
8215 elfcore_netbsd_get_lwpid (Elf_Internal_Note
*note
, int *lwpidp
)
8219 cp
= strchr (note
->namedata
, '@');
8222 *lwpidp
= atoi(cp
+ 1);
8229 elfcore_grok_netbsd_procinfo (bfd
*abfd
, Elf_Internal_Note
*note
)
8231 /* Signal number at offset 0x08. */
8232 elf_tdata (abfd
)->core_signal
8233 = bfd_h_get_32 (abfd
, (bfd_byte
*) note
->descdata
+ 0x08);
8235 /* Process ID at offset 0x50. */
8236 elf_tdata (abfd
)->core_pid
8237 = bfd_h_get_32 (abfd
, (bfd_byte
*) note
->descdata
+ 0x50);
8239 /* Command name at 0x7c (max 32 bytes, including nul). */
8240 elf_tdata (abfd
)->core_command
8241 = _bfd_elfcore_strndup (abfd
, note
->descdata
+ 0x7c, 31);
8243 return elfcore_make_note_pseudosection (abfd
, ".note.netbsdcore.procinfo",
8248 elfcore_grok_netbsd_note (bfd
*abfd
, Elf_Internal_Note
*note
)
8252 if (elfcore_netbsd_get_lwpid (note
, &lwp
))
8253 elf_tdata (abfd
)->core_lwpid
= lwp
;
8255 if (note
->type
== NT_NETBSDCORE_PROCINFO
)
8257 /* NetBSD-specific core "procinfo". Note that we expect to
8258 find this note before any of the others, which is fine,
8259 since the kernel writes this note out first when it
8260 creates a core file. */
8262 return elfcore_grok_netbsd_procinfo (abfd
, note
);
8265 /* As of Jan 2002 there are no other machine-independent notes
8266 defined for NetBSD core files. If the note type is less
8267 than the start of the machine-dependent note types, we don't
8270 if (note
->type
< NT_NETBSDCORE_FIRSTMACH
)
8274 switch (bfd_get_arch (abfd
))
8276 /* On the Alpha, SPARC (32-bit and 64-bit), PT_GETREGS == mach+0 and
8277 PT_GETFPREGS == mach+2. */
8279 case bfd_arch_alpha
:
8280 case bfd_arch_sparc
:
8283 case NT_NETBSDCORE_FIRSTMACH
+0:
8284 return elfcore_make_note_pseudosection (abfd
, ".reg", note
);
8286 case NT_NETBSDCORE_FIRSTMACH
+2:
8287 return elfcore_make_note_pseudosection (abfd
, ".reg2", note
);
8293 /* On all other arch's, PT_GETREGS == mach+1 and
8294 PT_GETFPREGS == mach+3. */
8299 case NT_NETBSDCORE_FIRSTMACH
+1:
8300 return elfcore_make_note_pseudosection (abfd
, ".reg", note
);
8302 case NT_NETBSDCORE_FIRSTMACH
+3:
8303 return elfcore_make_note_pseudosection (abfd
, ".reg2", note
);
8313 elfcore_grok_openbsd_procinfo (bfd
*abfd
, Elf_Internal_Note
*note
)
8315 /* Signal number at offset 0x08. */
8316 elf_tdata (abfd
)->core_signal
8317 = bfd_h_get_32 (abfd
, (bfd_byte
*) note
->descdata
+ 0x08);
8319 /* Process ID at offset 0x20. */
8320 elf_tdata (abfd
)->core_pid
8321 = bfd_h_get_32 (abfd
, (bfd_byte
*) note
->descdata
+ 0x20);
8323 /* Command name at 0x48 (max 32 bytes, including nul). */
8324 elf_tdata (abfd
)->core_command
8325 = _bfd_elfcore_strndup (abfd
, note
->descdata
+ 0x48, 31);
8331 elfcore_grok_openbsd_note (bfd
*abfd
, Elf_Internal_Note
*note
)
8333 if (note
->type
== NT_OPENBSD_PROCINFO
)
8334 return elfcore_grok_openbsd_procinfo (abfd
, note
);
8336 if (note
->type
== NT_OPENBSD_REGS
)
8337 return elfcore_make_note_pseudosection (abfd
, ".reg", note
);
8339 if (note
->type
== NT_OPENBSD_FPREGS
)
8340 return elfcore_make_note_pseudosection (abfd
, ".reg2", note
);
8342 if (note
->type
== NT_OPENBSD_XFPREGS
)
8343 return elfcore_make_note_pseudosection (abfd
, ".reg-xfp", note
);
8345 if (note
->type
== NT_OPENBSD_AUXV
)
8347 asection
*sect
= bfd_make_section_anyway_with_flags (abfd
, ".auxv",
8352 sect
->size
= note
->descsz
;
8353 sect
->filepos
= note
->descpos
;
8354 sect
->alignment_power
= 1 + bfd_get_arch_size (abfd
) / 32;
8359 if (note
->type
== NT_OPENBSD_WCOOKIE
)
8361 asection
*sect
= bfd_make_section_anyway_with_flags (abfd
, ".wcookie",
8366 sect
->size
= note
->descsz
;
8367 sect
->filepos
= note
->descpos
;
8368 sect
->alignment_power
= 1 + bfd_get_arch_size (abfd
) / 32;
8377 elfcore_grok_nto_status (bfd
*abfd
, Elf_Internal_Note
*note
, long *tid
)
8379 void *ddata
= note
->descdata
;
8386 /* nto_procfs_status 'pid' field is at offset 0. */
8387 elf_tdata (abfd
)->core_pid
= bfd_get_32 (abfd
, (bfd_byte
*) ddata
);
8389 /* nto_procfs_status 'tid' field is at offset 4. Pass it back. */
8390 *tid
= bfd_get_32 (abfd
, (bfd_byte
*) ddata
+ 4);
8392 /* nto_procfs_status 'flags' field is at offset 8. */
8393 flags
= bfd_get_32 (abfd
, (bfd_byte
*) ddata
+ 8);
8395 /* nto_procfs_status 'what' field is at offset 14. */
8396 if ((sig
= bfd_get_16 (abfd
, (bfd_byte
*) ddata
+ 14)) > 0)
8398 elf_tdata (abfd
)->core_signal
= sig
;
8399 elf_tdata (abfd
)->core_lwpid
= *tid
;
8402 /* _DEBUG_FLAG_CURTID (current thread) is 0x80. Some cores
8403 do not come from signals so we make sure we set the current
8404 thread just in case. */
8405 if (flags
& 0x00000080)
8406 elf_tdata (abfd
)->core_lwpid
= *tid
;
8408 /* Make a ".qnx_core_status/%d" section. */
8409 sprintf (buf
, ".qnx_core_status/%ld", *tid
);
8411 name
= (char *) bfd_alloc (abfd
, strlen (buf
) + 1);
8416 sect
= bfd_make_section_anyway_with_flags (abfd
, name
, SEC_HAS_CONTENTS
);
8420 sect
->size
= note
->descsz
;
8421 sect
->filepos
= note
->descpos
;
8422 sect
->alignment_power
= 2;
8424 return (elfcore_maybe_make_sect (abfd
, ".qnx_core_status", sect
));
8428 elfcore_grok_nto_regs (bfd
*abfd
,
8429 Elf_Internal_Note
*note
,
8437 /* Make a "(base)/%d" section. */
8438 sprintf (buf
, "%s/%ld", base
, tid
);
8440 name
= (char *) bfd_alloc (abfd
, strlen (buf
) + 1);
8445 sect
= bfd_make_section_anyway_with_flags (abfd
, name
, SEC_HAS_CONTENTS
);
8449 sect
->size
= note
->descsz
;
8450 sect
->filepos
= note
->descpos
;
8451 sect
->alignment_power
= 2;
8453 /* This is the current thread. */
8454 if (elf_tdata (abfd
)->core_lwpid
== tid
)
8455 return elfcore_maybe_make_sect (abfd
, base
, sect
);
8460 #define BFD_QNT_CORE_INFO 7
8461 #define BFD_QNT_CORE_STATUS 8
8462 #define BFD_QNT_CORE_GREG 9
8463 #define BFD_QNT_CORE_FPREG 10
8466 elfcore_grok_nto_note (bfd
*abfd
, Elf_Internal_Note
*note
)
8468 /* Every GREG section has a STATUS section before it. Store the
8469 tid from the previous call to pass down to the next gregs
8471 static long tid
= 1;
8475 case BFD_QNT_CORE_INFO
:
8476 return elfcore_make_note_pseudosection (abfd
, ".qnx_core_info", note
);
8477 case BFD_QNT_CORE_STATUS
:
8478 return elfcore_grok_nto_status (abfd
, note
, &tid
);
8479 case BFD_QNT_CORE_GREG
:
8480 return elfcore_grok_nto_regs (abfd
, note
, tid
, ".reg");
8481 case BFD_QNT_CORE_FPREG
:
8482 return elfcore_grok_nto_regs (abfd
, note
, tid
, ".reg2");
8489 elfcore_grok_spu_note (bfd
*abfd
, Elf_Internal_Note
*note
)
8495 /* Use note name as section name. */
8497 name
= (char *) bfd_alloc (abfd
, len
);
8500 memcpy (name
, note
->namedata
, len
);
8501 name
[len
- 1] = '\0';
8503 sect
= bfd_make_section_anyway_with_flags (abfd
, name
, SEC_HAS_CONTENTS
);
8507 sect
->size
= note
->descsz
;
8508 sect
->filepos
= note
->descpos
;
8509 sect
->alignment_power
= 1;
8514 /* Function: elfcore_write_note
8517 buffer to hold note, and current size of buffer
8521 size of data for note
8523 Writes note to end of buffer. ELF64 notes are written exactly as
8524 for ELF32, despite the current (as of 2006) ELF gabi specifying
8525 that they ought to have 8-byte namesz and descsz field, and have
8526 8-byte alignment. Other writers, eg. Linux kernel, do the same.
8529 Pointer to realloc'd buffer, *BUFSIZ updated. */
8532 elfcore_write_note (bfd
*abfd
,
8540 Elf_External_Note
*xnp
;
8547 namesz
= strlen (name
) + 1;
8549 newspace
= 12 + ((namesz
+ 3) & -4) + ((size
+ 3) & -4);
8551 buf
= (char *) realloc (buf
, *bufsiz
+ newspace
);
8554 dest
= buf
+ *bufsiz
;
8555 *bufsiz
+= newspace
;
8556 xnp
= (Elf_External_Note
*) dest
;
8557 H_PUT_32 (abfd
, namesz
, xnp
->namesz
);
8558 H_PUT_32 (abfd
, size
, xnp
->descsz
);
8559 H_PUT_32 (abfd
, type
, xnp
->type
);
8563 memcpy (dest
, name
, namesz
);
8571 memcpy (dest
, input
, size
);
8581 #if defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T)
8583 elfcore_write_prpsinfo (bfd
*abfd
,
8589 const char *note_name
= "CORE";
8590 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
8592 if (bed
->elf_backend_write_core_note
!= NULL
)
8595 ret
= (*bed
->elf_backend_write_core_note
) (abfd
, buf
, bufsiz
,
8596 NT_PRPSINFO
, fname
, psargs
);
8601 #if defined (HAVE_PRPSINFO32_T) || defined (HAVE_PSINFO32_T)
8602 if (bed
->s
->elfclass
== ELFCLASS32
)
8604 #if defined (HAVE_PSINFO32_T)
8606 int note_type
= NT_PSINFO
;
8609 int note_type
= NT_PRPSINFO
;
8612 memset (&data
, 0, sizeof (data
));
8613 strncpy (data
.pr_fname
, fname
, sizeof (data
.pr_fname
));
8614 strncpy (data
.pr_psargs
, psargs
, sizeof (data
.pr_psargs
));
8615 return elfcore_write_note (abfd
, buf
, bufsiz
,
8616 note_name
, note_type
, &data
, sizeof (data
));
8621 #if defined (HAVE_PSINFO_T)
8623 int note_type
= NT_PSINFO
;
8626 int note_type
= NT_PRPSINFO
;
8629 memset (&data
, 0, sizeof (data
));
8630 strncpy (data
.pr_fname
, fname
, sizeof (data
.pr_fname
));
8631 strncpy (data
.pr_psargs
, psargs
, sizeof (data
.pr_psargs
));
8632 return elfcore_write_note (abfd
, buf
, bufsiz
,
8633 note_name
, note_type
, &data
, sizeof (data
));
8636 #endif /* PSINFO_T or PRPSINFO_T */
8638 #if defined (HAVE_PRSTATUS_T)
8640 elfcore_write_prstatus (bfd
*abfd
,
8647 const char *note_name
= "CORE";
8648 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
8650 if (bed
->elf_backend_write_core_note
!= NULL
)
8653 ret
= (*bed
->elf_backend_write_core_note
) (abfd
, buf
, bufsiz
,
8655 pid
, cursig
, gregs
);
8660 #if defined (HAVE_PRSTATUS32_T)
8661 if (bed
->s
->elfclass
== ELFCLASS32
)
8663 prstatus32_t prstat
;
8665 memset (&prstat
, 0, sizeof (prstat
));
8666 prstat
.pr_pid
= pid
;
8667 prstat
.pr_cursig
= cursig
;
8668 memcpy (&prstat
.pr_reg
, gregs
, sizeof (prstat
.pr_reg
));
8669 return elfcore_write_note (abfd
, buf
, bufsiz
, note_name
,
8670 NT_PRSTATUS
, &prstat
, sizeof (prstat
));
8677 memset (&prstat
, 0, sizeof (prstat
));
8678 prstat
.pr_pid
= pid
;
8679 prstat
.pr_cursig
= cursig
;
8680 memcpy (&prstat
.pr_reg
, gregs
, sizeof (prstat
.pr_reg
));
8681 return elfcore_write_note (abfd
, buf
, bufsiz
, note_name
,
8682 NT_PRSTATUS
, &prstat
, sizeof (prstat
));
8685 #endif /* HAVE_PRSTATUS_T */
8687 #if defined (HAVE_LWPSTATUS_T)
8689 elfcore_write_lwpstatus (bfd
*abfd
,
8696 lwpstatus_t lwpstat
;
8697 const char *note_name
= "CORE";
8699 memset (&lwpstat
, 0, sizeof (lwpstat
));
8700 lwpstat
.pr_lwpid
= pid
>> 16;
8701 lwpstat
.pr_cursig
= cursig
;
8702 #if defined (HAVE_LWPSTATUS_T_PR_REG)
8703 memcpy (lwpstat
.pr_reg
, gregs
, sizeof (lwpstat
.pr_reg
));
8704 #elif defined (HAVE_LWPSTATUS_T_PR_CONTEXT)
8706 memcpy (lwpstat
.pr_context
.uc_mcontext
.gregs
,
8707 gregs
, sizeof (lwpstat
.pr_context
.uc_mcontext
.gregs
));
8709 memcpy (lwpstat
.pr_context
.uc_mcontext
.__gregs
,
8710 gregs
, sizeof (lwpstat
.pr_context
.uc_mcontext
.__gregs
));
8713 return elfcore_write_note (abfd
, buf
, bufsiz
, note_name
,
8714 NT_LWPSTATUS
, &lwpstat
, sizeof (lwpstat
));
8716 #endif /* HAVE_LWPSTATUS_T */
8718 #if defined (HAVE_PSTATUS_T)
8720 elfcore_write_pstatus (bfd
*abfd
,
8724 int cursig ATTRIBUTE_UNUSED
,
8725 const void *gregs ATTRIBUTE_UNUSED
)
8727 const char *note_name
= "CORE";
8728 #if defined (HAVE_PSTATUS32_T)
8729 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
8731 if (bed
->s
->elfclass
== ELFCLASS32
)
8735 memset (&pstat
, 0, sizeof (pstat
));
8736 pstat
.pr_pid
= pid
& 0xffff;
8737 buf
= elfcore_write_note (abfd
, buf
, bufsiz
, note_name
,
8738 NT_PSTATUS
, &pstat
, sizeof (pstat
));
8746 memset (&pstat
, 0, sizeof (pstat
));
8747 pstat
.pr_pid
= pid
& 0xffff;
8748 buf
= elfcore_write_note (abfd
, buf
, bufsiz
, note_name
,
8749 NT_PSTATUS
, &pstat
, sizeof (pstat
));
8753 #endif /* HAVE_PSTATUS_T */
8756 elfcore_write_prfpreg (bfd
*abfd
,
8762 const char *note_name
= "CORE";
8763 return elfcore_write_note (abfd
, buf
, bufsiz
,
8764 note_name
, NT_FPREGSET
, fpregs
, size
);
8768 elfcore_write_prxfpreg (bfd
*abfd
,
8771 const void *xfpregs
,
8774 char *note_name
= "LINUX";
8775 return elfcore_write_note (abfd
, buf
, bufsiz
,
8776 note_name
, NT_PRXFPREG
, xfpregs
, size
);
8780 elfcore_write_xstatereg (bfd
*abfd
, char *buf
, int *bufsiz
,
8781 const void *xfpregs
, int size
)
8783 char *note_name
= "LINUX";
8784 return elfcore_write_note (abfd
, buf
, bufsiz
,
8785 note_name
, NT_X86_XSTATE
, xfpregs
, size
);
8789 elfcore_write_ppc_vmx (bfd
*abfd
,
8792 const void *ppc_vmx
,
8795 char *note_name
= "LINUX";
8796 return elfcore_write_note (abfd
, buf
, bufsiz
,
8797 note_name
, NT_PPC_VMX
, ppc_vmx
, size
);
8801 elfcore_write_ppc_vsx (bfd
*abfd
,
8804 const void *ppc_vsx
,
8807 char *note_name
= "LINUX";
8808 return elfcore_write_note (abfd
, buf
, bufsiz
,
8809 note_name
, NT_PPC_VSX
, ppc_vsx
, size
);
8813 elfcore_write_s390_high_gprs (bfd
*abfd
,
8816 const void *s390_high_gprs
,
8819 char *note_name
= "LINUX";
8820 return elfcore_write_note (abfd
, buf
, bufsiz
,
8821 note_name
, NT_S390_HIGH_GPRS
,
8822 s390_high_gprs
, size
);
8826 elfcore_write_s390_timer (bfd
*abfd
,
8829 const void *s390_timer
,
8832 char *note_name
= "LINUX";
8833 return elfcore_write_note (abfd
, buf
, bufsiz
,
8834 note_name
, NT_S390_TIMER
, s390_timer
, size
);
8838 elfcore_write_s390_todcmp (bfd
*abfd
,
8841 const void *s390_todcmp
,
8844 char *note_name
= "LINUX";
8845 return elfcore_write_note (abfd
, buf
, bufsiz
,
8846 note_name
, NT_S390_TODCMP
, s390_todcmp
, size
);
8850 elfcore_write_s390_todpreg (bfd
*abfd
,
8853 const void *s390_todpreg
,
8856 char *note_name
= "LINUX";
8857 return elfcore_write_note (abfd
, buf
, bufsiz
,
8858 note_name
, NT_S390_TODPREG
, s390_todpreg
, size
);
8862 elfcore_write_s390_ctrs (bfd
*abfd
,
8865 const void *s390_ctrs
,
8868 char *note_name
= "LINUX";
8869 return elfcore_write_note (abfd
, buf
, bufsiz
,
8870 note_name
, NT_S390_CTRS
, s390_ctrs
, size
);
8874 elfcore_write_s390_prefix (bfd
*abfd
,
8877 const void *s390_prefix
,
8880 char *note_name
= "LINUX";
8881 return elfcore_write_note (abfd
, buf
, bufsiz
,
8882 note_name
, NT_S390_PREFIX
, s390_prefix
, size
);
8886 elfcore_write_register_note (bfd
*abfd
,
8889 const char *section
,
8893 if (strcmp (section
, ".reg2") == 0)
8894 return elfcore_write_prfpreg (abfd
, buf
, bufsiz
, data
, size
);
8895 if (strcmp (section
, ".reg-xfp") == 0)
8896 return elfcore_write_prxfpreg (abfd
, buf
, bufsiz
, data
, size
);
8897 if (strcmp (section
, ".reg-xstate") == 0)
8898 return elfcore_write_xstatereg (abfd
, buf
, bufsiz
, data
, size
);
8899 if (strcmp (section
, ".reg-ppc-vmx") == 0)
8900 return elfcore_write_ppc_vmx (abfd
, buf
, bufsiz
, data
, size
);
8901 if (strcmp (section
, ".reg-ppc-vsx") == 0)
8902 return elfcore_write_ppc_vsx (abfd
, buf
, bufsiz
, data
, size
);
8903 if (strcmp (section
, ".reg-s390-high-gprs") == 0)
8904 return elfcore_write_s390_high_gprs (abfd
, buf
, bufsiz
, data
, size
);
8905 if (strcmp (section
, ".reg-s390-timer") == 0)
8906 return elfcore_write_s390_timer (abfd
, buf
, bufsiz
, data
, size
);
8907 if (strcmp (section
, ".reg-s390-todcmp") == 0)
8908 return elfcore_write_s390_todcmp (abfd
, buf
, bufsiz
, data
, size
);
8909 if (strcmp (section
, ".reg-s390-todpreg") == 0)
8910 return elfcore_write_s390_todpreg (abfd
, buf
, bufsiz
, data
, size
);
8911 if (strcmp (section
, ".reg-s390-ctrs") == 0)
8912 return elfcore_write_s390_ctrs (abfd
, buf
, bufsiz
, data
, size
);
8913 if (strcmp (section
, ".reg-s390-prefix") == 0)
8914 return elfcore_write_s390_prefix (abfd
, buf
, bufsiz
, data
, size
);
8919 elf_parse_notes (bfd
*abfd
, char *buf
, size_t size
, file_ptr offset
)
8924 while (p
< buf
+ size
)
8926 /* FIXME: bad alignment assumption. */
8927 Elf_External_Note
*xnp
= (Elf_External_Note
*) p
;
8928 Elf_Internal_Note in
;
8930 if (offsetof (Elf_External_Note
, name
) > buf
- p
+ size
)
8933 in
.type
= H_GET_32 (abfd
, xnp
->type
);
8935 in
.namesz
= H_GET_32 (abfd
, xnp
->namesz
);
8936 in
.namedata
= xnp
->name
;
8937 if (in
.namesz
> buf
- in
.namedata
+ size
)
8940 in
.descsz
= H_GET_32 (abfd
, xnp
->descsz
);
8941 in
.descdata
= in
.namedata
+ BFD_ALIGN (in
.namesz
, 4);
8942 in
.descpos
= offset
+ (in
.descdata
- buf
);
8944 && (in
.descdata
>= buf
+ size
8945 || in
.descsz
> buf
- in
.descdata
+ size
))
8948 switch (bfd_get_format (abfd
))
8954 if (CONST_STRNEQ (in
.namedata
, "NetBSD-CORE"))
8956 if (! elfcore_grok_netbsd_note (abfd
, &in
))
8959 else if (CONST_STRNEQ (in
.namedata
, "OpenBSD"))
8961 if (! elfcore_grok_openbsd_note (abfd
, &in
))
8964 else if (CONST_STRNEQ (in
.namedata
, "QNX"))
8966 if (! elfcore_grok_nto_note (abfd
, &in
))
8969 else if (CONST_STRNEQ (in
.namedata
, "SPU/"))
8971 if (! elfcore_grok_spu_note (abfd
, &in
))
8976 if (! elfcore_grok_note (abfd
, &in
))
8982 if (in
.namesz
== sizeof "GNU" && strcmp (in
.namedata
, "GNU") == 0)
8984 if (! elfobj_grok_gnu_note (abfd
, &in
))
8990 p
= in
.descdata
+ BFD_ALIGN (in
.descsz
, 4);
8997 elf_read_notes (bfd
*abfd
, file_ptr offset
, bfd_size_type size
)
9004 if (bfd_seek (abfd
, offset
, SEEK_SET
) != 0)
9007 buf
= (char *) bfd_malloc (size
);
9011 if (bfd_bread (buf
, size
, abfd
) != size
9012 || !elf_parse_notes (abfd
, buf
, size
, offset
))
9022 /* Providing external access to the ELF program header table. */
9024 /* Return an upper bound on the number of bytes required to store a
9025 copy of ABFD's program header table entries. Return -1 if an error
9026 occurs; bfd_get_error will return an appropriate code. */
9029 bfd_get_elf_phdr_upper_bound (bfd
*abfd
)
9031 if (abfd
->xvec
->flavour
!= bfd_target_elf_flavour
)
9033 bfd_set_error (bfd_error_wrong_format
);
9037 return elf_elfheader (abfd
)->e_phnum
* sizeof (Elf_Internal_Phdr
);
9040 /* Copy ABFD's program header table entries to *PHDRS. The entries
9041 will be stored as an array of Elf_Internal_Phdr structures, as
9042 defined in include/elf/internal.h. To find out how large the
9043 buffer needs to be, call bfd_get_elf_phdr_upper_bound.
9045 Return the number of program header table entries read, or -1 if an
9046 error occurs; bfd_get_error will return an appropriate code. */
9049 bfd_get_elf_phdrs (bfd
*abfd
, void *phdrs
)
9053 if (abfd
->xvec
->flavour
!= bfd_target_elf_flavour
)
9055 bfd_set_error (bfd_error_wrong_format
);
9059 num_phdrs
= elf_elfheader (abfd
)->e_phnum
;
9060 memcpy (phdrs
, elf_tdata (abfd
)->phdr
,
9061 num_phdrs
* sizeof (Elf_Internal_Phdr
));
9066 enum elf_reloc_type_class
9067 _bfd_elf_reloc_type_class (const Elf_Internal_Rela
*rela ATTRIBUTE_UNUSED
)
9069 return reloc_class_normal
;
9072 /* For RELA architectures, return the relocation value for a
9073 relocation against a local symbol. */
9076 _bfd_elf_rela_local_sym (bfd
*abfd
,
9077 Elf_Internal_Sym
*sym
,
9079 Elf_Internal_Rela
*rel
)
9081 asection
*sec
= *psec
;
9084 relocation
= (sec
->output_section
->vma
9085 + sec
->output_offset
9087 if ((sec
->flags
& SEC_MERGE
)
9088 && ELF_ST_TYPE (sym
->st_info
) == STT_SECTION
9089 && sec
->sec_info_type
== ELF_INFO_TYPE_MERGE
)
9092 _bfd_merged_section_offset (abfd
, psec
,
9093 elf_section_data (sec
)->sec_info
,
9094 sym
->st_value
+ rel
->r_addend
);
9097 /* If we have changed the section, and our original section is
9098 marked with SEC_EXCLUDE, it means that the original
9099 SEC_MERGE section has been completely subsumed in some
9100 other SEC_MERGE section. In this case, we need to leave
9101 some info around for --emit-relocs. */
9102 if ((sec
->flags
& SEC_EXCLUDE
) != 0)
9103 sec
->kept_section
= *psec
;
9106 rel
->r_addend
-= relocation
;
9107 rel
->r_addend
+= sec
->output_section
->vma
+ sec
->output_offset
;
9113 _bfd_elf_rel_local_sym (bfd
*abfd
,
9114 Elf_Internal_Sym
*sym
,
9118 asection
*sec
= *psec
;
9120 if (sec
->sec_info_type
!= ELF_INFO_TYPE_MERGE
)
9121 return sym
->st_value
+ addend
;
9123 return _bfd_merged_section_offset (abfd
, psec
,
9124 elf_section_data (sec
)->sec_info
,
9125 sym
->st_value
+ addend
);
9129 _bfd_elf_section_offset (bfd
*abfd
,
9130 struct bfd_link_info
*info
,
9134 switch (sec
->sec_info_type
)
9136 case ELF_INFO_TYPE_STABS
:
9137 return _bfd_stab_section_offset (sec
, elf_section_data (sec
)->sec_info
,
9139 case ELF_INFO_TYPE_EH_FRAME
:
9140 return _bfd_elf_eh_frame_section_offset (abfd
, info
, sec
, offset
);
9146 /* Create a new BFD as if by bfd_openr. Rather than opening a file,
9147 reconstruct an ELF file by reading the segments out of remote memory
9148 based on the ELF file header at EHDR_VMA and the ELF program headers it
9149 points to. If not null, *LOADBASEP is filled in with the difference
9150 between the VMAs from which the segments were read, and the VMAs the
9151 file headers (and hence BFD's idea of each section's VMA) put them at.
9153 The function TARGET_READ_MEMORY is called to copy LEN bytes from the
9154 remote memory at target address VMA into the local buffer at MYADDR; it
9155 should return zero on success or an `errno' code on failure. TEMPL must
9156 be a BFD for an ELF target with the word size and byte order found in
9157 the remote memory. */
9160 bfd_elf_bfd_from_remote_memory
9164 int (*target_read_memory
) (bfd_vma
, bfd_byte
*, int))
9166 return (*get_elf_backend_data (templ
)->elf_backend_bfd_from_remote_memory
)
9167 (templ
, ehdr_vma
, loadbasep
, target_read_memory
);
9171 _bfd_elf_get_synthetic_symtab (bfd
*abfd
,
9172 long symcount ATTRIBUTE_UNUSED
,
9173 asymbol
**syms ATTRIBUTE_UNUSED
,
9178 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
9181 const char *relplt_name
;
9182 bfd_boolean (*slurp_relocs
) (bfd
*, asection
*, asymbol
**, bfd_boolean
);
9186 Elf_Internal_Shdr
*hdr
;
9192 if ((abfd
->flags
& (DYNAMIC
| EXEC_P
)) == 0)
9195 if (dynsymcount
<= 0)
9198 if (!bed
->plt_sym_val
)
9201 relplt_name
= bed
->relplt_name
;
9202 if (relplt_name
== NULL
)
9203 relplt_name
= bed
->rela_plts_and_copies_p
? ".rela.plt" : ".rel.plt";
9204 relplt
= bfd_get_section_by_name (abfd
, relplt_name
);
9208 hdr
= &elf_section_data (relplt
)->this_hdr
;
9209 if (hdr
->sh_link
!= elf_dynsymtab (abfd
)
9210 || (hdr
->sh_type
!= SHT_REL
&& hdr
->sh_type
!= SHT_RELA
))
9213 plt
= bfd_get_section_by_name (abfd
, ".plt");
9217 slurp_relocs
= get_elf_backend_data (abfd
)->s
->slurp_reloc_table
;
9218 if (! (*slurp_relocs
) (abfd
, relplt
, dynsyms
, TRUE
))
9221 count
= relplt
->size
/ hdr
->sh_entsize
;
9222 size
= count
* sizeof (asymbol
);
9223 p
= relplt
->relocation
;
9224 for (i
= 0; i
< count
; i
++, p
+= bed
->s
->int_rels_per_ext_rel
)
9226 size
+= strlen ((*p
->sym_ptr_ptr
)->name
) + sizeof ("@plt");
9230 size
+= sizeof ("+0x") - 1 + 8 + 8 * (bed
->s
->elfclass
== ELFCLASS64
);
9232 size
+= sizeof ("+0x") - 1 + 8;
9237 s
= *ret
= (asymbol
*) bfd_malloc (size
);
9241 names
= (char *) (s
+ count
);
9242 p
= relplt
->relocation
;
9244 for (i
= 0; i
< count
; i
++, p
+= bed
->s
->int_rels_per_ext_rel
)
9249 addr
= bed
->plt_sym_val (i
, plt
, p
);
9250 if (addr
== (bfd_vma
) -1)
9253 *s
= **p
->sym_ptr_ptr
;
9254 /* Undefined syms won't have BSF_LOCAL or BSF_GLOBAL set. Since
9255 we are defining a symbol, ensure one of them is set. */
9256 if ((s
->flags
& BSF_LOCAL
) == 0)
9257 s
->flags
|= BSF_GLOBAL
;
9258 s
->flags
|= BSF_SYNTHETIC
;
9260 s
->value
= addr
- plt
->vma
;
9263 len
= strlen ((*p
->sym_ptr_ptr
)->name
);
9264 memcpy (names
, (*p
->sym_ptr_ptr
)->name
, len
);
9270 memcpy (names
, "+0x", sizeof ("+0x") - 1);
9271 names
+= sizeof ("+0x") - 1;
9272 bfd_sprintf_vma (abfd
, buf
, p
->addend
);
9273 for (a
= buf
; *a
== '0'; ++a
)
9276 memcpy (names
, a
, len
);
9279 memcpy (names
, "@plt", sizeof ("@plt"));
9280 names
+= sizeof ("@plt");
9287 /* It is only used by x86-64 so far. */
9288 asection _bfd_elf_large_com_section
9289 = BFD_FAKE_SECTION (_bfd_elf_large_com_section
,
9290 SEC_IS_COMMON
, NULL
, "LARGE_COMMON", 0);
9293 _bfd_elf_set_osabi (bfd
* abfd
,
9294 struct bfd_link_info
* link_info ATTRIBUTE_UNUSED
)
9296 Elf_Internal_Ehdr
* i_ehdrp
; /* ELF file header, internal form. */
9298 i_ehdrp
= elf_elfheader (abfd
);
9300 i_ehdrp
->e_ident
[EI_OSABI
] = get_elf_backend_data (abfd
)->elf_osabi
;
9302 /* To make things simpler for the loader on Linux systems we set the
9303 osabi field to ELFOSABI_LINUX if the binary contains symbols of
9304 the STT_GNU_IFUNC type. */
9305 if (i_ehdrp
->e_ident
[EI_OSABI
] == ELFOSABI_NONE
9306 && elf_tdata (abfd
)->has_ifunc_symbols
)
9307 i_ehdrp
->e_ident
[EI_OSABI
] = ELFOSABI_LINUX
;
9311 /* Return TRUE for ELF symbol types that represent functions.
9312 This is the default version of this function, which is sufficient for
9313 most targets. It returns true if TYPE is STT_FUNC or STT_GNU_IFUNC. */
9316 _bfd_elf_is_function_type (unsigned int type
)
9318 return (type
== STT_FUNC
9319 || type
== STT_GNU_IFUNC
);