1 /* ELF executable support for BFD.
3 Copyright (C) 1993-2022 Free Software Foundation, Inc.
5 This file is part of BFD, the Binary File Descriptor library.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
20 MA 02110-1301, USA. */
27 BFD support for ELF formats is being worked on.
28 Currently, the best supported back ends are for sparc and i386
29 (running svr4 or Solaris 2).
31 Documentation of the internals of the support code still needs
32 to be written. The code is changing quickly enough that we
33 haven't bothered yet. */
35 /* For sparc64-cross-sparc32. */
44 #include "libiberty.h"
45 #include "safe-ctype.h"
46 #include "elf-linux-core.h"
52 static int elf_sort_sections (const void *, const void *);
53 static bool assign_file_positions_except_relocs (bfd
*, struct bfd_link_info
*);
54 static bool swap_out_syms (bfd
*, struct elf_strtab_hash
**, int,
55 struct bfd_link_info
*);
56 static bool elf_parse_notes (bfd
*abfd
, char *buf
, size_t size
,
57 file_ptr offset
, size_t align
);
59 /* Swap version information in and out. The version information is
60 currently size independent. If that ever changes, this code will
61 need to move into elfcode.h. */
63 /* Swap in a Verdef structure. */
66 _bfd_elf_swap_verdef_in (bfd
*abfd
,
67 const Elf_External_Verdef
*src
,
68 Elf_Internal_Verdef
*dst
)
70 dst
->vd_version
= H_GET_16 (abfd
, src
->vd_version
);
71 dst
->vd_flags
= H_GET_16 (abfd
, src
->vd_flags
);
72 dst
->vd_ndx
= H_GET_16 (abfd
, src
->vd_ndx
);
73 dst
->vd_cnt
= H_GET_16 (abfd
, src
->vd_cnt
);
74 dst
->vd_hash
= H_GET_32 (abfd
, src
->vd_hash
);
75 dst
->vd_aux
= H_GET_32 (abfd
, src
->vd_aux
);
76 dst
->vd_next
= H_GET_32 (abfd
, src
->vd_next
);
79 /* Swap out a Verdef structure. */
82 _bfd_elf_swap_verdef_out (bfd
*abfd
,
83 const Elf_Internal_Verdef
*src
,
84 Elf_External_Verdef
*dst
)
86 H_PUT_16 (abfd
, src
->vd_version
, dst
->vd_version
);
87 H_PUT_16 (abfd
, src
->vd_flags
, dst
->vd_flags
);
88 H_PUT_16 (abfd
, src
->vd_ndx
, dst
->vd_ndx
);
89 H_PUT_16 (abfd
, src
->vd_cnt
, dst
->vd_cnt
);
90 H_PUT_32 (abfd
, src
->vd_hash
, dst
->vd_hash
);
91 H_PUT_32 (abfd
, src
->vd_aux
, dst
->vd_aux
);
92 H_PUT_32 (abfd
, src
->vd_next
, dst
->vd_next
);
95 /* Swap in a Verdaux structure. */
98 _bfd_elf_swap_verdaux_in (bfd
*abfd
,
99 const Elf_External_Verdaux
*src
,
100 Elf_Internal_Verdaux
*dst
)
102 dst
->vda_name
= H_GET_32 (abfd
, src
->vda_name
);
103 dst
->vda_next
= H_GET_32 (abfd
, src
->vda_next
);
106 /* Swap out a Verdaux structure. */
109 _bfd_elf_swap_verdaux_out (bfd
*abfd
,
110 const Elf_Internal_Verdaux
*src
,
111 Elf_External_Verdaux
*dst
)
113 H_PUT_32 (abfd
, src
->vda_name
, dst
->vda_name
);
114 H_PUT_32 (abfd
, src
->vda_next
, dst
->vda_next
);
117 /* Swap in a Verneed structure. */
120 _bfd_elf_swap_verneed_in (bfd
*abfd
,
121 const Elf_External_Verneed
*src
,
122 Elf_Internal_Verneed
*dst
)
124 dst
->vn_version
= H_GET_16 (abfd
, src
->vn_version
);
125 dst
->vn_cnt
= H_GET_16 (abfd
, src
->vn_cnt
);
126 dst
->vn_file
= H_GET_32 (abfd
, src
->vn_file
);
127 dst
->vn_aux
= H_GET_32 (abfd
, src
->vn_aux
);
128 dst
->vn_next
= H_GET_32 (abfd
, src
->vn_next
);
131 /* Swap out a Verneed structure. */
134 _bfd_elf_swap_verneed_out (bfd
*abfd
,
135 const Elf_Internal_Verneed
*src
,
136 Elf_External_Verneed
*dst
)
138 H_PUT_16 (abfd
, src
->vn_version
, dst
->vn_version
);
139 H_PUT_16 (abfd
, src
->vn_cnt
, dst
->vn_cnt
);
140 H_PUT_32 (abfd
, src
->vn_file
, dst
->vn_file
);
141 H_PUT_32 (abfd
, src
->vn_aux
, dst
->vn_aux
);
142 H_PUT_32 (abfd
, src
->vn_next
, dst
->vn_next
);
145 /* Swap in a Vernaux structure. */
148 _bfd_elf_swap_vernaux_in (bfd
*abfd
,
149 const Elf_External_Vernaux
*src
,
150 Elf_Internal_Vernaux
*dst
)
152 dst
->vna_hash
= H_GET_32 (abfd
, src
->vna_hash
);
153 dst
->vna_flags
= H_GET_16 (abfd
, src
->vna_flags
);
154 dst
->vna_other
= H_GET_16 (abfd
, src
->vna_other
);
155 dst
->vna_name
= H_GET_32 (abfd
, src
->vna_name
);
156 dst
->vna_next
= H_GET_32 (abfd
, src
->vna_next
);
159 /* Swap out a Vernaux structure. */
162 _bfd_elf_swap_vernaux_out (bfd
*abfd
,
163 const Elf_Internal_Vernaux
*src
,
164 Elf_External_Vernaux
*dst
)
166 H_PUT_32 (abfd
, src
->vna_hash
, dst
->vna_hash
);
167 H_PUT_16 (abfd
, src
->vna_flags
, dst
->vna_flags
);
168 H_PUT_16 (abfd
, src
->vna_other
, dst
->vna_other
);
169 H_PUT_32 (abfd
, src
->vna_name
, dst
->vna_name
);
170 H_PUT_32 (abfd
, src
->vna_next
, dst
->vna_next
);
173 /* Swap in a Versym structure. */
176 _bfd_elf_swap_versym_in (bfd
*abfd
,
177 const Elf_External_Versym
*src
,
178 Elf_Internal_Versym
*dst
)
180 dst
->vs_vers
= H_GET_16 (abfd
, src
->vs_vers
);
183 /* Swap out a Versym structure. */
186 _bfd_elf_swap_versym_out (bfd
*abfd
,
187 const Elf_Internal_Versym
*src
,
188 Elf_External_Versym
*dst
)
190 H_PUT_16 (abfd
, src
->vs_vers
, dst
->vs_vers
);
193 /* Standard ELF hash function. Do not change this function; you will
194 cause invalid hash tables to be generated. */
197 bfd_elf_hash (const char *namearg
)
199 const unsigned char *name
= (const unsigned char *) namearg
;
204 while ((ch
= *name
++) != '\0')
207 if ((g
= (h
& 0xf0000000)) != 0)
210 /* The ELF ABI says `h &= ~g', but this is equivalent in
211 this case and on some machines one insn instead of two. */
215 return h
& 0xffffffff;
218 /* DT_GNU_HASH hash function. Do not change this function; you will
219 cause invalid hash tables to be generated. */
222 bfd_elf_gnu_hash (const char *namearg
)
224 const unsigned char *name
= (const unsigned char *) namearg
;
225 unsigned long h
= 5381;
228 while ((ch
= *name
++) != '\0')
229 h
= (h
<< 5) + h
+ ch
;
230 return h
& 0xffffffff;
233 /* Create a tdata field OBJECT_SIZE bytes in length, zeroed out and with
234 the object_id field of an elf_obj_tdata field set to OBJECT_ID. */
236 bfd_elf_allocate_object (bfd
*abfd
,
238 enum elf_target_id object_id
)
240 BFD_ASSERT (object_size
>= sizeof (struct elf_obj_tdata
));
241 abfd
->tdata
.any
= bfd_zalloc (abfd
, object_size
);
242 if (abfd
->tdata
.any
== NULL
)
245 elf_object_id (abfd
) = object_id
;
246 if (abfd
->direction
!= read_direction
)
248 struct output_elf_obj_tdata
*o
= bfd_zalloc (abfd
, sizeof *o
);
251 elf_tdata (abfd
)->o
= o
;
252 elf_program_header_size (abfd
) = (bfd_size_type
) -1;
259 bfd_elf_make_object (bfd
*abfd
)
261 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
262 return bfd_elf_allocate_object (abfd
, sizeof (struct elf_obj_tdata
),
267 bfd_elf_mkcorefile (bfd
*abfd
)
269 /* I think this can be done just like an object file. */
270 if (!abfd
->xvec
->_bfd_set_format
[(int) bfd_object
] (abfd
))
272 elf_tdata (abfd
)->core
= bfd_zalloc (abfd
, sizeof (*elf_tdata (abfd
)->core
));
273 return elf_tdata (abfd
)->core
!= NULL
;
277 bfd_elf_get_str_section (bfd
*abfd
, unsigned int shindex
)
279 Elf_Internal_Shdr
**i_shdrp
;
280 bfd_byte
*shstrtab
= NULL
;
282 bfd_size_type shstrtabsize
;
284 i_shdrp
= elf_elfsections (abfd
);
286 || shindex
>= elf_numsections (abfd
)
287 || i_shdrp
[shindex
] == 0)
290 shstrtab
= i_shdrp
[shindex
]->contents
;
291 if (shstrtab
== NULL
)
293 /* No cached one, attempt to read, and cache what we read. */
294 offset
= i_shdrp
[shindex
]->sh_offset
;
295 shstrtabsize
= i_shdrp
[shindex
]->sh_size
;
297 /* Allocate and clear an extra byte at the end, to prevent crashes
298 in case the string table is not terminated. */
299 if (shstrtabsize
+ 1 <= 1
300 || bfd_seek (abfd
, offset
, SEEK_SET
) != 0
301 || (shstrtab
= _bfd_alloc_and_read (abfd
, shstrtabsize
+ 1,
302 shstrtabsize
)) == NULL
)
304 /* Once we've failed to read it, make sure we don't keep
305 trying. Otherwise, we'll keep allocating space for
306 the string table over and over. */
307 i_shdrp
[shindex
]->sh_size
= 0;
310 shstrtab
[shstrtabsize
] = '\0';
311 i_shdrp
[shindex
]->contents
= shstrtab
;
313 return (char *) shstrtab
;
317 bfd_elf_string_from_elf_section (bfd
*abfd
,
318 unsigned int shindex
,
319 unsigned int strindex
)
321 Elf_Internal_Shdr
*hdr
;
326 if (elf_elfsections (abfd
) == NULL
|| shindex
>= elf_numsections (abfd
))
329 hdr
= elf_elfsections (abfd
)[shindex
];
331 if (hdr
->contents
== NULL
)
333 if (hdr
->sh_type
!= SHT_STRTAB
&& hdr
->sh_type
< SHT_LOOS
)
335 /* PR 17512: file: f057ec89. */
336 /* xgettext:c-format */
337 _bfd_error_handler (_("%pB: attempt to load strings from"
338 " a non-string section (number %d)"),
343 if (bfd_elf_get_str_section (abfd
, shindex
) == NULL
)
348 /* PR 24273: The string section's contents may have already
349 been loaded elsewhere, eg because a corrupt file has the
350 string section index in the ELF header pointing at a group
351 section. So be paranoid, and test that the last byte of
352 the section is zero. */
353 if (hdr
->sh_size
== 0 || hdr
->contents
[hdr
->sh_size
- 1] != 0)
357 if (strindex
>= hdr
->sh_size
)
359 unsigned int shstrndx
= elf_elfheader(abfd
)->e_shstrndx
;
361 /* xgettext:c-format */
362 (_("%pB: invalid string offset %u >= %" PRIu64
" for section `%s'"),
363 abfd
, strindex
, (uint64_t) hdr
->sh_size
,
364 (shindex
== shstrndx
&& strindex
== hdr
->sh_name
366 : bfd_elf_string_from_elf_section (abfd
, shstrndx
, hdr
->sh_name
)));
370 return ((char *) hdr
->contents
) + strindex
;
373 /* Read and convert symbols to internal format.
374 SYMCOUNT specifies the number of symbols to read, starting from
375 symbol SYMOFFSET. If any of INTSYM_BUF, EXTSYM_BUF or EXTSHNDX_BUF
376 are non-NULL, they are used to store the internal symbols, external
377 symbols, and symbol section index extensions, respectively.
378 Returns a pointer to the internal symbol buffer (malloced if necessary)
379 or NULL if there were no symbols or some kind of problem. */
382 bfd_elf_get_elf_syms (bfd
*ibfd
,
383 Elf_Internal_Shdr
*symtab_hdr
,
386 Elf_Internal_Sym
*intsym_buf
,
388 Elf_External_Sym_Shndx
*extshndx_buf
)
390 Elf_Internal_Shdr
*shndx_hdr
;
392 const bfd_byte
*esym
;
393 Elf_External_Sym_Shndx
*alloc_extshndx
;
394 Elf_External_Sym_Shndx
*shndx
;
395 Elf_Internal_Sym
*alloc_intsym
;
396 Elf_Internal_Sym
*isym
;
397 Elf_Internal_Sym
*isymend
;
398 const struct elf_backend_data
*bed
;
403 if (bfd_get_flavour (ibfd
) != bfd_target_elf_flavour
)
409 /* Normal syms might have section extension entries. */
411 if (elf_symtab_shndx_list (ibfd
) != NULL
)
413 elf_section_list
* entry
;
414 Elf_Internal_Shdr
**sections
= elf_elfsections (ibfd
);
416 /* Find an index section that is linked to this symtab section. */
417 for (entry
= elf_symtab_shndx_list (ibfd
); entry
!= NULL
; entry
= entry
->next
)
420 if (entry
->hdr
.sh_link
>= elf_numsections (ibfd
))
423 if (sections
[entry
->hdr
.sh_link
] == symtab_hdr
)
425 shndx_hdr
= & entry
->hdr
;
430 if (shndx_hdr
== NULL
)
432 if (symtab_hdr
== & elf_symtab_hdr (ibfd
))
433 /* Not really accurate, but this was how the old code used to work. */
434 shndx_hdr
= & elf_symtab_shndx_list (ibfd
)->hdr
;
435 /* Otherwise we do nothing. The assumption is that
436 the index table will not be needed. */
440 /* Read the symbols. */
442 alloc_extshndx
= NULL
;
444 bed
= get_elf_backend_data (ibfd
);
445 extsym_size
= bed
->s
->sizeof_sym
;
446 if (_bfd_mul_overflow (symcount
, extsym_size
, &amt
))
448 bfd_set_error (bfd_error_file_too_big
);
452 pos
= symtab_hdr
->sh_offset
+ symoffset
* extsym_size
;
453 if (extsym_buf
== NULL
)
455 alloc_ext
= bfd_malloc (amt
);
456 extsym_buf
= alloc_ext
;
458 if (extsym_buf
== NULL
459 || bfd_seek (ibfd
, pos
, SEEK_SET
) != 0
460 || bfd_bread (extsym_buf
, amt
, ibfd
) != amt
)
466 if (shndx_hdr
== NULL
|| shndx_hdr
->sh_size
== 0)
470 if (_bfd_mul_overflow (symcount
, sizeof (Elf_External_Sym_Shndx
), &amt
))
472 bfd_set_error (bfd_error_file_too_big
);
476 pos
= shndx_hdr
->sh_offset
+ symoffset
* sizeof (Elf_External_Sym_Shndx
);
477 if (extshndx_buf
== NULL
)
479 alloc_extshndx
= (Elf_External_Sym_Shndx
*) bfd_malloc (amt
);
480 extshndx_buf
= alloc_extshndx
;
482 if (extshndx_buf
== NULL
483 || bfd_seek (ibfd
, pos
, SEEK_SET
) != 0
484 || bfd_bread (extshndx_buf
, amt
, ibfd
) != amt
)
491 if (intsym_buf
== NULL
)
493 if (_bfd_mul_overflow (symcount
, sizeof (Elf_Internal_Sym
), &amt
))
495 bfd_set_error (bfd_error_file_too_big
);
498 alloc_intsym
= (Elf_Internal_Sym
*) bfd_malloc (amt
);
499 intsym_buf
= alloc_intsym
;
500 if (intsym_buf
== NULL
)
504 /* Convert the symbols to internal form. */
505 isymend
= intsym_buf
+ symcount
;
506 for (esym
= (const bfd_byte
*) extsym_buf
, isym
= intsym_buf
,
507 shndx
= extshndx_buf
;
509 esym
+= extsym_size
, isym
++, shndx
= shndx
!= NULL
? shndx
+ 1 : NULL
)
510 if (!(*bed
->s
->swap_symbol_in
) (ibfd
, esym
, shndx
, isym
))
512 symoffset
+= (esym
- (bfd_byte
*) extsym_buf
) / extsym_size
;
513 /* xgettext:c-format */
514 _bfd_error_handler (_("%pB symbol number %lu references"
515 " nonexistent SHT_SYMTAB_SHNDX section"),
516 ibfd
, (unsigned long) symoffset
);
524 free (alloc_extshndx
);
529 /* Look up a symbol name. */
531 bfd_elf_sym_name (bfd
*abfd
,
532 Elf_Internal_Shdr
*symtab_hdr
,
533 Elf_Internal_Sym
*isym
,
537 unsigned int iname
= isym
->st_name
;
538 unsigned int shindex
= symtab_hdr
->sh_link
;
540 if (iname
== 0 && ELF_ST_TYPE (isym
->st_info
) == STT_SECTION
541 /* Check for a bogus st_shndx to avoid crashing. */
542 && isym
->st_shndx
< elf_numsections (abfd
))
544 iname
= elf_elfsections (abfd
)[isym
->st_shndx
]->sh_name
;
545 shindex
= elf_elfheader (abfd
)->e_shstrndx
;
548 name
= bfd_elf_string_from_elf_section (abfd
, shindex
, iname
);
551 else if (sym_sec
&& *name
== '\0')
552 name
= bfd_section_name (sym_sec
);
557 /* Elf_Internal_Shdr->contents is an array of these for SHT_GROUP
558 sections. The first element is the flags, the rest are section
561 typedef union elf_internal_group
{
562 Elf_Internal_Shdr
*shdr
;
564 } Elf_Internal_Group
;
566 /* Return the name of the group signature symbol. Why isn't the
567 signature just a string? */
570 group_signature (bfd
*abfd
, Elf_Internal_Shdr
*ghdr
)
572 Elf_Internal_Shdr
*hdr
;
573 unsigned char esym
[sizeof (Elf64_External_Sym
)];
574 Elf_External_Sym_Shndx eshndx
;
575 Elf_Internal_Sym isym
;
577 /* First we need to ensure the symbol table is available. Make sure
578 that it is a symbol table section. */
579 if (ghdr
->sh_link
>= elf_numsections (abfd
))
581 hdr
= elf_elfsections (abfd
) [ghdr
->sh_link
];
582 if (hdr
->sh_type
!= SHT_SYMTAB
583 || ! bfd_section_from_shdr (abfd
, ghdr
->sh_link
))
586 /* Go read the symbol. */
587 hdr
= &elf_tdata (abfd
)->symtab_hdr
;
588 if (bfd_elf_get_elf_syms (abfd
, hdr
, 1, ghdr
->sh_info
,
589 &isym
, esym
, &eshndx
) == NULL
)
592 return bfd_elf_sym_name (abfd
, hdr
, &isym
, NULL
);
595 /* Set next_in_group list pointer, and group name for NEWSECT. */
598 setup_group (bfd
*abfd
, Elf_Internal_Shdr
*hdr
, asection
*newsect
)
600 unsigned int num_group
= elf_tdata (abfd
)->num_group
;
602 /* If num_group is zero, read in all SHT_GROUP sections. The count
603 is set to -1 if there are no SHT_GROUP sections. */
606 unsigned int i
, shnum
;
608 /* First count the number of groups. If we have a SHT_GROUP
609 section with just a flag word (ie. sh_size is 4), ignore it. */
610 shnum
= elf_numsections (abfd
);
613 #define IS_VALID_GROUP_SECTION_HEADER(shdr, minsize) \
614 ( (shdr)->sh_type == SHT_GROUP \
615 && (shdr)->sh_size >= minsize \
616 && (shdr)->sh_entsize == GRP_ENTRY_SIZE \
617 && ((shdr)->sh_size % GRP_ENTRY_SIZE) == 0)
619 for (i
= 0; i
< shnum
; i
++)
621 Elf_Internal_Shdr
*shdr
= elf_elfsections (abfd
)[i
];
623 if (IS_VALID_GROUP_SECTION_HEADER (shdr
, 2 * GRP_ENTRY_SIZE
))
629 num_group
= (unsigned) -1;
630 elf_tdata (abfd
)->num_group
= num_group
;
631 elf_tdata (abfd
)->group_sect_ptr
= NULL
;
635 /* We keep a list of elf section headers for group sections,
636 so we can find them quickly. */
639 elf_tdata (abfd
)->num_group
= num_group
;
640 amt
= num_group
* sizeof (Elf_Internal_Shdr
*);
641 elf_tdata (abfd
)->group_sect_ptr
642 = (Elf_Internal_Shdr
**) bfd_zalloc (abfd
, amt
);
643 if (elf_tdata (abfd
)->group_sect_ptr
== NULL
)
647 for (i
= 0; i
< shnum
; i
++)
649 Elf_Internal_Shdr
*shdr
= elf_elfsections (abfd
)[i
];
651 if (IS_VALID_GROUP_SECTION_HEADER (shdr
, 2 * GRP_ENTRY_SIZE
))
654 Elf_Internal_Group
*dest
;
656 /* Make sure the group section has a BFD section
658 if (!bfd_section_from_shdr (abfd
, i
))
661 /* Add to list of sections. */
662 elf_tdata (abfd
)->group_sect_ptr
[num_group
] = shdr
;
665 /* Read the raw contents. */
666 BFD_ASSERT (sizeof (*dest
) >= 4 && sizeof (*dest
) % 4 == 0);
667 shdr
->contents
= NULL
;
668 if (_bfd_mul_overflow (shdr
->sh_size
,
669 sizeof (*dest
) / 4, &amt
)
670 || bfd_seek (abfd
, shdr
->sh_offset
, SEEK_SET
) != 0
672 = _bfd_alloc_and_read (abfd
, amt
, shdr
->sh_size
)))
675 /* xgettext:c-format */
676 (_("%pB: invalid size field in group section"
677 " header: %#" PRIx64
""),
678 abfd
, (uint64_t) shdr
->sh_size
);
679 bfd_set_error (bfd_error_bad_value
);
684 /* Translate raw contents, a flag word followed by an
685 array of elf section indices all in target byte order,
686 to the flag word followed by an array of elf section
688 src
= shdr
->contents
+ shdr
->sh_size
;
689 dest
= (Elf_Internal_Group
*) (shdr
->contents
+ amt
);
697 idx
= H_GET_32 (abfd
, src
);
698 if (src
== shdr
->contents
)
702 if (shdr
->bfd_section
!= NULL
&& (idx
& GRP_COMDAT
))
703 shdr
->bfd_section
->flags
704 |= SEC_LINK_ONCE
| SEC_LINK_DUPLICATES_DISCARD
;
709 dest
->shdr
= elf_elfsections (abfd
)[idx
];
710 /* PR binutils/23199: All sections in a
711 section group should be marked with
712 SHF_GROUP. But some tools generate
713 broken objects without SHF_GROUP. Fix
715 dest
->shdr
->sh_flags
|= SHF_GROUP
;
718 || dest
->shdr
->sh_type
== SHT_GROUP
)
721 (_("%pB: invalid entry in SHT_GROUP section [%u]"),
729 /* PR 17510: Corrupt binaries might contain invalid groups. */
730 if (num_group
!= (unsigned) elf_tdata (abfd
)->num_group
)
732 elf_tdata (abfd
)->num_group
= num_group
;
734 /* If all groups are invalid then fail. */
737 elf_tdata (abfd
)->group_sect_ptr
= NULL
;
738 elf_tdata (abfd
)->num_group
= num_group
= -1;
740 (_("%pB: no valid group sections found"), abfd
);
741 bfd_set_error (bfd_error_bad_value
);
747 if (num_group
!= (unsigned) -1)
749 unsigned int search_offset
= elf_tdata (abfd
)->group_search_offset
;
752 for (j
= 0; j
< num_group
; j
++)
754 /* Begin search from previous found group. */
755 unsigned i
= (j
+ search_offset
) % num_group
;
757 Elf_Internal_Shdr
*shdr
= elf_tdata (abfd
)->group_sect_ptr
[i
];
758 Elf_Internal_Group
*idx
;
764 idx
= (Elf_Internal_Group
*) shdr
->contents
;
765 if (idx
== NULL
|| shdr
->sh_size
< 4)
767 /* See PR 21957 for a reproducer. */
768 /* xgettext:c-format */
769 _bfd_error_handler (_("%pB: group section '%pA' has no contents"),
770 abfd
, shdr
->bfd_section
);
771 elf_tdata (abfd
)->group_sect_ptr
[i
] = NULL
;
772 bfd_set_error (bfd_error_bad_value
);
775 n_elt
= shdr
->sh_size
/ 4;
777 /* Look through this group's sections to see if current
778 section is a member. */
780 if ((++idx
)->shdr
== hdr
)
784 /* We are a member of this group. Go looking through
785 other members to see if any others are linked via
787 idx
= (Elf_Internal_Group
*) shdr
->contents
;
788 n_elt
= shdr
->sh_size
/ 4;
790 if ((++idx
)->shdr
!= NULL
791 && (s
= idx
->shdr
->bfd_section
) != NULL
792 && elf_next_in_group (s
) != NULL
)
796 /* Snarf the group name from other member, and
797 insert current section in circular list. */
798 elf_group_name (newsect
) = elf_group_name (s
);
799 elf_next_in_group (newsect
) = elf_next_in_group (s
);
800 elf_next_in_group (s
) = newsect
;
806 gname
= group_signature (abfd
, shdr
);
809 elf_group_name (newsect
) = gname
;
811 /* Start a circular list with one element. */
812 elf_next_in_group (newsect
) = newsect
;
815 /* If the group section has been created, point to the
817 if (shdr
->bfd_section
!= NULL
)
818 elf_next_in_group (shdr
->bfd_section
) = newsect
;
820 elf_tdata (abfd
)->group_search_offset
= i
;
827 if (elf_group_name (newsect
) == NULL
)
829 /* xgettext:c-format */
830 _bfd_error_handler (_("%pB: no group info for section '%pA'"),
838 _bfd_elf_setup_sections (bfd
*abfd
)
841 unsigned int num_group
= elf_tdata (abfd
)->num_group
;
845 /* Process SHF_LINK_ORDER. */
846 for (s
= abfd
->sections
; s
!= NULL
; s
= s
->next
)
848 Elf_Internal_Shdr
*this_hdr
= &elf_section_data (s
)->this_hdr
;
849 if ((this_hdr
->sh_flags
& SHF_LINK_ORDER
) != 0)
851 unsigned int elfsec
= this_hdr
->sh_link
;
852 /* An sh_link value of 0 is now allowed. It indicates that linked
853 to section has already been discarded, but that the current
854 section has been retained for some other reason. This linking
855 section is still a candidate for later garbage collection
859 elf_linked_to_section (s
) = NULL
;
863 asection
*linksec
= NULL
;
865 if (elfsec
< elf_numsections (abfd
))
867 this_hdr
= elf_elfsections (abfd
)[elfsec
];
868 linksec
= this_hdr
->bfd_section
;
872 Some strip/objcopy may leave an incorrect value in
873 sh_link. We don't want to proceed. */
877 /* xgettext:c-format */
878 (_("%pB: sh_link [%d] in section `%pA' is incorrect"),
879 s
->owner
, elfsec
, s
);
883 elf_linked_to_section (s
) = linksec
;
886 else if (this_hdr
->sh_type
== SHT_GROUP
887 && elf_next_in_group (s
) == NULL
)
890 /* xgettext:c-format */
891 (_("%pB: SHT_GROUP section [index %d] has no SHF_GROUP sections"),
892 abfd
, elf_section_data (s
)->this_idx
);
897 /* Process section groups. */
898 if (num_group
== (unsigned) -1)
901 for (i
= 0; i
< num_group
; i
++)
903 Elf_Internal_Shdr
*shdr
= elf_tdata (abfd
)->group_sect_ptr
[i
];
904 Elf_Internal_Group
*idx
;
907 /* PR binutils/18758: Beware of corrupt binaries with invalid group data. */
908 if (shdr
== NULL
|| shdr
->bfd_section
== NULL
|| shdr
->contents
== NULL
)
911 /* xgettext:c-format */
912 (_("%pB: section group entry number %u is corrupt"),
918 idx
= (Elf_Internal_Group
*) shdr
->contents
;
919 n_elt
= shdr
->sh_size
/ 4;
925 if (idx
->shdr
== NULL
)
927 else if (idx
->shdr
->bfd_section
)
928 elf_sec_group (idx
->shdr
->bfd_section
) = shdr
->bfd_section
;
929 else if (idx
->shdr
->sh_type
!= SHT_RELA
930 && idx
->shdr
->sh_type
!= SHT_REL
)
932 /* There are some unknown sections in the group. */
934 /* xgettext:c-format */
935 (_("%pB: unknown type [%#x] section `%s' in group [%pA]"),
938 bfd_elf_string_from_elf_section (abfd
,
939 (elf_elfheader (abfd
)
952 bfd_elf_is_group_section (bfd
*abfd ATTRIBUTE_UNUSED
, const asection
*sec
)
954 return elf_next_in_group (sec
) != NULL
;
958 bfd_elf_group_name (bfd
*abfd ATTRIBUTE_UNUSED
, const asection
*sec
)
960 if (elf_sec_group (sec
) != NULL
)
961 return elf_group_name (sec
);
966 convert_debug_to_zdebug (bfd
*abfd
, const char *name
)
968 unsigned int len
= strlen (name
);
969 char *new_name
= bfd_alloc (abfd
, len
+ 2);
970 if (new_name
== NULL
)
974 memcpy (new_name
+ 2, name
+ 1, len
);
979 convert_zdebug_to_debug (bfd
*abfd
, const char *name
)
981 unsigned int len
= strlen (name
);
982 char *new_name
= bfd_alloc (abfd
, len
);
983 if (new_name
== NULL
)
986 memcpy (new_name
+ 1, name
+ 2, len
- 1);
990 /* This a copy of lto_section defined in GCC (lto-streamer.h). */
994 int16_t major_version
;
995 int16_t minor_version
;
996 unsigned char slim_object
;
998 /* Flags is a private field that is not defined publicly. */
1002 /* Make a BFD section from an ELF section. We store a pointer to the
1003 BFD section in the bfd_section field of the header. */
1006 _bfd_elf_make_section_from_shdr (bfd
*abfd
,
1007 Elf_Internal_Shdr
*hdr
,
1013 const struct elf_backend_data
*bed
;
1014 unsigned int opb
= bfd_octets_per_byte (abfd
, NULL
);
1016 if (hdr
->bfd_section
!= NULL
)
1019 newsect
= bfd_make_section_anyway (abfd
, name
);
1020 if (newsect
== NULL
)
1023 hdr
->bfd_section
= newsect
;
1024 elf_section_data (newsect
)->this_hdr
= *hdr
;
1025 elf_section_data (newsect
)->this_idx
= shindex
;
1027 /* Always use the real type/flags. */
1028 elf_section_type (newsect
) = hdr
->sh_type
;
1029 elf_section_flags (newsect
) = hdr
->sh_flags
;
1031 newsect
->filepos
= hdr
->sh_offset
;
1033 flags
= SEC_NO_FLAGS
;
1034 if (hdr
->sh_type
!= SHT_NOBITS
)
1035 flags
|= SEC_HAS_CONTENTS
;
1036 if (hdr
->sh_type
== SHT_GROUP
)
1038 if ((hdr
->sh_flags
& SHF_ALLOC
) != 0)
1041 if (hdr
->sh_type
!= SHT_NOBITS
)
1044 if ((hdr
->sh_flags
& SHF_WRITE
) == 0)
1045 flags
|= SEC_READONLY
;
1046 if ((hdr
->sh_flags
& SHF_EXECINSTR
) != 0)
1048 else if ((flags
& SEC_LOAD
) != 0)
1050 if ((hdr
->sh_flags
& SHF_MERGE
) != 0)
1053 newsect
->entsize
= hdr
->sh_entsize
;
1055 if ((hdr
->sh_flags
& SHF_STRINGS
) != 0)
1056 flags
|= SEC_STRINGS
;
1057 if (hdr
->sh_flags
& SHF_GROUP
)
1058 if (!setup_group (abfd
, hdr
, newsect
))
1060 if ((hdr
->sh_flags
& SHF_TLS
) != 0)
1061 flags
|= SEC_THREAD_LOCAL
;
1062 if ((hdr
->sh_flags
& SHF_EXCLUDE
) != 0)
1063 flags
|= SEC_EXCLUDE
;
1065 switch (elf_elfheader (abfd
)->e_ident
[EI_OSABI
])
1067 /* FIXME: We should not recognize SHF_GNU_MBIND for ELFOSABI_NONE,
1068 but binutils as of 2019-07-23 did not set the EI_OSABI header
1071 case ELFOSABI_FREEBSD
:
1072 if ((hdr
->sh_flags
& SHF_GNU_RETAIN
) != 0)
1073 elf_tdata (abfd
)->has_gnu_osabi
|= elf_gnu_osabi_retain
;
1076 if ((hdr
->sh_flags
& SHF_GNU_MBIND
) != 0)
1077 elf_tdata (abfd
)->has_gnu_osabi
|= elf_gnu_osabi_mbind
;
1081 if ((flags
& SEC_ALLOC
) == 0)
1083 /* The debugging sections appear to be recognized only by name,
1084 not any sort of flag. Their SEC_ALLOC bits are cleared. */
1085 if (name
[0] == '.')
1087 if (startswith (name
, ".debug")
1088 || startswith (name
, ".gnu.debuglto_.debug_")
1089 || startswith (name
, ".gnu.linkonce.wi.")
1090 || startswith (name
, ".zdebug"))
1091 flags
|= SEC_DEBUGGING
| SEC_ELF_OCTETS
;
1092 else if (startswith (name
, GNU_BUILD_ATTRS_SECTION_NAME
)
1093 || startswith (name
, ".note.gnu"))
1095 flags
|= SEC_ELF_OCTETS
;
1098 else if (startswith (name
, ".line")
1099 || startswith (name
, ".stab")
1100 || strcmp (name
, ".gdb_index") == 0)
1101 flags
|= SEC_DEBUGGING
;
1105 if (!bfd_set_section_vma (newsect
, hdr
->sh_addr
/ opb
)
1106 || !bfd_set_section_size (newsect
, hdr
->sh_size
)
1107 || !bfd_set_section_alignment (newsect
, bfd_log2 (hdr
->sh_addralign
1108 & -hdr
->sh_addralign
)))
1111 /* As a GNU extension, if the name begins with .gnu.linkonce, we
1112 only link a single copy of the section. This is used to support
1113 g++. g++ will emit each template expansion in its own section.
1114 The symbols will be defined as weak, so that multiple definitions
1115 are permitted. The GNU linker extension is to actually discard
1116 all but one of the sections. */
1117 if (startswith (name
, ".gnu.linkonce")
1118 && elf_next_in_group (newsect
) == NULL
)
1119 flags
|= SEC_LINK_ONCE
| SEC_LINK_DUPLICATES_DISCARD
;
1121 if (!bfd_set_section_flags (newsect
, flags
))
1124 bed
= get_elf_backend_data (abfd
);
1125 if (bed
->elf_backend_section_flags
)
1126 if (!bed
->elf_backend_section_flags (hdr
))
1129 /* We do not parse the PT_NOTE segments as we are interested even in the
1130 separate debug info files which may have the segments offsets corrupted.
1131 PT_NOTEs from the core files are currently not parsed using BFD. */
1132 if (hdr
->sh_type
== SHT_NOTE
)
1136 if (!bfd_malloc_and_get_section (abfd
, newsect
, &contents
))
1139 elf_parse_notes (abfd
, (char *) contents
, hdr
->sh_size
,
1140 hdr
->sh_offset
, hdr
->sh_addralign
);
1144 if ((newsect
->flags
& SEC_ALLOC
) != 0)
1146 Elf_Internal_Phdr
*phdr
;
1147 unsigned int i
, nload
;
1149 /* Some ELF linkers produce binaries with all the program header
1150 p_paddr fields zero. If we have such a binary with more than
1151 one PT_LOAD header, then leave the section lma equal to vma
1152 so that we don't create sections with overlapping lma. */
1153 phdr
= elf_tdata (abfd
)->phdr
;
1154 for (nload
= 0, i
= 0; i
< elf_elfheader (abfd
)->e_phnum
; i
++, phdr
++)
1155 if (phdr
->p_paddr
!= 0)
1157 else if (phdr
->p_type
== PT_LOAD
&& phdr
->p_memsz
!= 0)
1159 if (i
>= elf_elfheader (abfd
)->e_phnum
&& nload
> 1)
1162 phdr
= elf_tdata (abfd
)->phdr
;
1163 for (i
= 0; i
< elf_elfheader (abfd
)->e_phnum
; i
++, phdr
++)
1165 if (((phdr
->p_type
== PT_LOAD
1166 && (hdr
->sh_flags
& SHF_TLS
) == 0)
1167 || phdr
->p_type
== PT_TLS
)
1168 && ELF_SECTION_IN_SEGMENT (hdr
, phdr
))
1170 if ((newsect
->flags
& SEC_LOAD
) == 0)
1171 newsect
->lma
= (phdr
->p_paddr
1172 + hdr
->sh_addr
- phdr
->p_vaddr
) / opb
;
1174 /* We used to use the same adjustment for SEC_LOAD
1175 sections, but that doesn't work if the segment
1176 is packed with code from multiple VMAs.
1177 Instead we calculate the section LMA based on
1178 the segment LMA. It is assumed that the
1179 segment will contain sections with contiguous
1180 LMAs, even if the VMAs are not. */
1181 newsect
->lma
= (phdr
->p_paddr
1182 + hdr
->sh_offset
- phdr
->p_offset
) / opb
;
1184 /* With contiguous segments, we can't tell from file
1185 offsets whether a section with zero size should
1186 be placed at the end of one segment or the
1187 beginning of the next. Decide based on vaddr. */
1188 if (hdr
->sh_addr
>= phdr
->p_vaddr
1189 && (hdr
->sh_addr
+ hdr
->sh_size
1190 <= phdr
->p_vaddr
+ phdr
->p_memsz
))
1196 /* Compress/decompress DWARF debug sections with names: .debug_* and
1197 .zdebug_*, after the section flags is set. */
1198 if ((newsect
->flags
& SEC_DEBUGGING
)
1199 && ((name
[1] == 'd' && name
[6] == '_')
1200 || (name
[1] == 'z' && name
[7] == '_')))
1202 enum { nothing
, compress
, decompress
} action
= nothing
;
1203 int compression_header_size
;
1204 bfd_size_type uncompressed_size
;
1205 unsigned int uncompressed_align_power
;
1207 = bfd_is_section_compressed_with_header (abfd
, newsect
,
1208 &compression_header_size
,
1210 &uncompressed_align_power
);
1213 /* Compressed section. Check if we should decompress. */
1214 if ((abfd
->flags
& BFD_DECOMPRESS
))
1215 action
= decompress
;
1218 /* Compress the uncompressed section or convert from/to .zdebug*
1219 section. Check if we should compress. */
1220 if (action
== nothing
)
1222 if (newsect
->size
!= 0
1223 && (abfd
->flags
& BFD_COMPRESS
)
1224 && compression_header_size
>= 0
1225 && uncompressed_size
> 0
1227 || ((compression_header_size
> 0)
1228 != ((abfd
->flags
& BFD_COMPRESS_GABI
) != 0))))
1234 if (action
== compress
)
1236 if (!bfd_init_section_compress_status (abfd
, newsect
))
1239 /* xgettext:c-format */
1240 (_("%pB: unable to initialize compress status for section %s"),
1247 if (!bfd_init_section_decompress_status (abfd
, newsect
))
1250 /* xgettext:c-format */
1251 (_("%pB: unable to initialize decompress status for section %s"),
1257 if (abfd
->is_linker_input
)
1260 && (action
== decompress
1261 || (action
== compress
1262 && (abfd
->flags
& BFD_COMPRESS_GABI
) != 0)))
1264 /* Convert section name from .zdebug_* to .debug_* so
1265 that linker will consider this section as a debug
1267 char *new_name
= convert_zdebug_to_debug (abfd
, name
);
1268 if (new_name
== NULL
)
1270 bfd_rename_section (newsect
, new_name
);
1274 /* For objdump, don't rename the section. For objcopy, delay
1275 section rename to elf_fake_sections. */
1276 newsect
->flags
|= SEC_ELF_RENAME
;
1279 /* GCC uses .gnu.lto_.lto.<some_hash> as a LTO bytecode information
1281 if (startswith (name
, ".gnu.lto_.lto."))
1283 struct lto_section lsection
;
1284 if (bfd_get_section_contents (abfd
, newsect
, &lsection
, 0,
1285 sizeof (struct lto_section
)))
1286 abfd
->lto_slim_object
= lsection
.slim_object
;
1292 const char *const bfd_elf_section_type_names
[] =
1294 "SHT_NULL", "SHT_PROGBITS", "SHT_SYMTAB", "SHT_STRTAB",
1295 "SHT_RELA", "SHT_HASH", "SHT_DYNAMIC", "SHT_NOTE",
1296 "SHT_NOBITS", "SHT_REL", "SHT_SHLIB", "SHT_DYNSYM",
1299 /* ELF relocs are against symbols. If we are producing relocatable
1300 output, and the reloc is against an external symbol, and nothing
1301 has given us any additional addend, the resulting reloc will also
1302 be against the same symbol. In such a case, we don't want to
1303 change anything about the way the reloc is handled, since it will
1304 all be done at final link time. Rather than put special case code
1305 into bfd_perform_relocation, all the reloc types use this howto
1306 function, or should call this function for relocatable output. */
1308 bfd_reloc_status_type
1309 bfd_elf_generic_reloc (bfd
*abfd ATTRIBUTE_UNUSED
,
1310 arelent
*reloc_entry
,
1312 void *data ATTRIBUTE_UNUSED
,
1313 asection
*input_section
,
1315 char **error_message ATTRIBUTE_UNUSED
)
1317 if (output_bfd
!= NULL
1318 && (symbol
->flags
& BSF_SECTION_SYM
) == 0
1319 && (! reloc_entry
->howto
->partial_inplace
1320 || reloc_entry
->addend
== 0))
1322 reloc_entry
->address
+= input_section
->output_offset
;
1323 return bfd_reloc_ok
;
1326 /* In some cases the relocation should be treated as output section
1327 relative, as when linking ELF DWARF into PE COFF. Many ELF
1328 targets lack section relative relocations and instead use
1329 ordinary absolute relocations for references between DWARF
1330 sections. That is arguably a bug in those targets but it happens
1331 to work for the usual case of linking to non-loaded ELF debug
1332 sections with VMAs forced to zero. PE COFF on the other hand
1333 doesn't allow a section VMA of zero. */
1334 if (output_bfd
== NULL
1335 && !reloc_entry
->howto
->pc_relative
1336 && (symbol
->section
->flags
& SEC_DEBUGGING
) != 0
1337 && (input_section
->flags
& SEC_DEBUGGING
) != 0)
1338 reloc_entry
->addend
-= symbol
->section
->output_section
->vma
;
1340 return bfd_reloc_continue
;
1343 /* Returns TRUE if section A matches section B.
1344 Names, addresses and links may be different, but everything else
1345 should be the same. */
1348 section_match (const Elf_Internal_Shdr
* a
,
1349 const Elf_Internal_Shdr
* b
)
1351 if (a
->sh_type
!= b
->sh_type
1352 || ((a
->sh_flags
^ b
->sh_flags
) & ~SHF_INFO_LINK
) != 0
1353 || a
->sh_addralign
!= b
->sh_addralign
1354 || a
->sh_entsize
!= b
->sh_entsize
)
1356 if (a
->sh_type
== SHT_SYMTAB
1357 || a
->sh_type
== SHT_STRTAB
)
1359 return a
->sh_size
== b
->sh_size
;
1362 /* Find a section in OBFD that has the same characteristics
1363 as IHEADER. Return the index of this section or SHN_UNDEF if
1364 none can be found. Check's section HINT first, as this is likely
1365 to be the correct section. */
1368 find_link (const bfd
*obfd
, const Elf_Internal_Shdr
*iheader
,
1369 const unsigned int hint
)
1371 Elf_Internal_Shdr
** oheaders
= elf_elfsections (obfd
);
1374 BFD_ASSERT (iheader
!= NULL
);
1376 /* See PR 20922 for a reproducer of the NULL test. */
1377 if (hint
< elf_numsections (obfd
)
1378 && oheaders
[hint
] != NULL
1379 && section_match (oheaders
[hint
], iheader
))
1382 for (i
= 1; i
< elf_numsections (obfd
); i
++)
1384 Elf_Internal_Shdr
* oheader
= oheaders
[i
];
1386 if (oheader
== NULL
)
1388 if (section_match (oheader
, iheader
))
1389 /* FIXME: Do we care if there is a potential for
1390 multiple matches ? */
1397 /* PR 19938: Attempt to set the ELF section header fields of an OS or
1398 Processor specific section, based upon a matching input section.
1399 Returns TRUE upon success, FALSE otherwise. */
1402 copy_special_section_fields (const bfd
*ibfd
,
1404 const Elf_Internal_Shdr
*iheader
,
1405 Elf_Internal_Shdr
*oheader
,
1406 const unsigned int secnum
)
1408 const struct elf_backend_data
*bed
= get_elf_backend_data (obfd
);
1409 const Elf_Internal_Shdr
**iheaders
= (const Elf_Internal_Shdr
**) elf_elfsections (ibfd
);
1410 bool changed
= false;
1411 unsigned int sh_link
;
1413 if (oheader
->sh_type
== SHT_NOBITS
)
1415 /* This is a feature for objcopy --only-keep-debug:
1416 When a section's type is changed to NOBITS, we preserve
1417 the sh_link and sh_info fields so that they can be
1418 matched up with the original.
1420 Note: Strictly speaking these assignments are wrong.
1421 The sh_link and sh_info fields should point to the
1422 relevent sections in the output BFD, which may not be in
1423 the same location as they were in the input BFD. But
1424 the whole point of this action is to preserve the
1425 original values of the sh_link and sh_info fields, so
1426 that they can be matched up with the section headers in
1427 the original file. So strictly speaking we may be
1428 creating an invalid ELF file, but it is only for a file
1429 that just contains debug info and only for sections
1430 without any contents. */
1431 if (oheader
->sh_link
== 0)
1432 oheader
->sh_link
= iheader
->sh_link
;
1433 if (oheader
->sh_info
== 0)
1434 oheader
->sh_info
= iheader
->sh_info
;
1438 /* Allow the target a chance to decide how these fields should be set. */
1439 if (bed
->elf_backend_copy_special_section_fields (ibfd
, obfd
,
1443 /* We have an iheader which might match oheader, and which has non-zero
1444 sh_info and/or sh_link fields. Attempt to follow those links and find
1445 the section in the output bfd which corresponds to the linked section
1446 in the input bfd. */
1447 if (iheader
->sh_link
!= SHN_UNDEF
)
1449 /* See PR 20931 for a reproducer. */
1450 if (iheader
->sh_link
>= elf_numsections (ibfd
))
1453 /* xgettext:c-format */
1454 (_("%pB: invalid sh_link field (%d) in section number %d"),
1455 ibfd
, iheader
->sh_link
, secnum
);
1459 sh_link
= find_link (obfd
, iheaders
[iheader
->sh_link
], iheader
->sh_link
);
1460 if (sh_link
!= SHN_UNDEF
)
1462 oheader
->sh_link
= sh_link
;
1466 /* FIXME: Should we install iheader->sh_link
1467 if we could not find a match ? */
1469 /* xgettext:c-format */
1470 (_("%pB: failed to find link section for section %d"), obfd
, secnum
);
1473 if (iheader
->sh_info
)
1475 /* The sh_info field can hold arbitrary information, but if the
1476 SHF_LINK_INFO flag is set then it should be interpreted as a
1478 if (iheader
->sh_flags
& SHF_INFO_LINK
)
1480 sh_link
= find_link (obfd
, iheaders
[iheader
->sh_info
],
1482 if (sh_link
!= SHN_UNDEF
)
1483 oheader
->sh_flags
|= SHF_INFO_LINK
;
1486 /* No idea what it means - just copy it. */
1487 sh_link
= iheader
->sh_info
;
1489 if (sh_link
!= SHN_UNDEF
)
1491 oheader
->sh_info
= sh_link
;
1496 /* xgettext:c-format */
1497 (_("%pB: failed to find info section for section %d"), obfd
, secnum
);
1503 /* Copy the program header and other data from one object module to
1507 _bfd_elf_copy_private_bfd_data (bfd
*ibfd
, bfd
*obfd
)
1509 const Elf_Internal_Shdr
**iheaders
= (const Elf_Internal_Shdr
**) elf_elfsections (ibfd
);
1510 Elf_Internal_Shdr
**oheaders
= elf_elfsections (obfd
);
1511 const struct elf_backend_data
*bed
;
1514 if (bfd_get_flavour (ibfd
) != bfd_target_elf_flavour
1515 || bfd_get_flavour (obfd
) != bfd_target_elf_flavour
)
1518 if (!elf_flags_init (obfd
))
1520 elf_elfheader (obfd
)->e_flags
= elf_elfheader (ibfd
)->e_flags
;
1521 elf_flags_init (obfd
) = true;
1524 elf_gp (obfd
) = elf_gp (ibfd
);
1526 /* Also copy the EI_OSABI field. */
1527 elf_elfheader (obfd
)->e_ident
[EI_OSABI
] =
1528 elf_elfheader (ibfd
)->e_ident
[EI_OSABI
];
1530 /* If set, copy the EI_ABIVERSION field. */
1531 if (elf_elfheader (ibfd
)->e_ident
[EI_ABIVERSION
])
1532 elf_elfheader (obfd
)->e_ident
[EI_ABIVERSION
]
1533 = elf_elfheader (ibfd
)->e_ident
[EI_ABIVERSION
];
1535 /* Copy object attributes. */
1536 _bfd_elf_copy_obj_attributes (ibfd
, obfd
);
1538 if (iheaders
== NULL
|| oheaders
== NULL
)
1541 bed
= get_elf_backend_data (obfd
);
1543 /* Possibly copy other fields in the section header. */
1544 for (i
= 1; i
< elf_numsections (obfd
); i
++)
1547 Elf_Internal_Shdr
* oheader
= oheaders
[i
];
1549 /* Ignore ordinary sections. SHT_NOBITS sections are considered however
1550 because of a special case need for generating separate debug info
1551 files. See below for more details. */
1553 || (oheader
->sh_type
!= SHT_NOBITS
1554 && oheader
->sh_type
< SHT_LOOS
))
1557 /* Ignore empty sections, and sections whose
1558 fields have already been initialised. */
1559 if (oheader
->sh_size
== 0
1560 || (oheader
->sh_info
!= 0 && oheader
->sh_link
!= 0))
1563 /* Scan for the matching section in the input bfd.
1564 First we try for a direct mapping between the input and output sections. */
1565 for (j
= 1; j
< elf_numsections (ibfd
); j
++)
1567 const Elf_Internal_Shdr
* iheader
= iheaders
[j
];
1569 if (iheader
== NULL
)
1572 if (oheader
->bfd_section
!= NULL
1573 && iheader
->bfd_section
!= NULL
1574 && iheader
->bfd_section
->output_section
!= NULL
1575 && iheader
->bfd_section
->output_section
== oheader
->bfd_section
)
1577 /* We have found a connection from the input section to the
1578 output section. Attempt to copy the header fields. If
1579 this fails then do not try any further sections - there
1580 should only be a one-to-one mapping between input and output. */
1581 if (! copy_special_section_fields (ibfd
, obfd
, iheader
, oheader
, i
))
1582 j
= elf_numsections (ibfd
);
1587 if (j
< elf_numsections (ibfd
))
1590 /* That failed. So try to deduce the corresponding input section.
1591 Unfortunately we cannot compare names as the output string table
1592 is empty, so instead we check size, address and type. */
1593 for (j
= 1; j
< elf_numsections (ibfd
); j
++)
1595 const Elf_Internal_Shdr
* iheader
= iheaders
[j
];
1597 if (iheader
== NULL
)
1600 /* Try matching fields in the input section's header.
1601 Since --only-keep-debug turns all non-debug sections into
1602 SHT_NOBITS sections, the output SHT_NOBITS type matches any
1604 if ((oheader
->sh_type
== SHT_NOBITS
1605 || iheader
->sh_type
== oheader
->sh_type
)
1606 && (iheader
->sh_flags
& ~ SHF_INFO_LINK
)
1607 == (oheader
->sh_flags
& ~ SHF_INFO_LINK
)
1608 && iheader
->sh_addralign
== oheader
->sh_addralign
1609 && iheader
->sh_entsize
== oheader
->sh_entsize
1610 && iheader
->sh_size
== oheader
->sh_size
1611 && iheader
->sh_addr
== oheader
->sh_addr
1612 && (iheader
->sh_info
!= oheader
->sh_info
1613 || iheader
->sh_link
!= oheader
->sh_link
))
1615 if (copy_special_section_fields (ibfd
, obfd
, iheader
, oheader
, i
))
1620 if (j
== elf_numsections (ibfd
) && oheader
->sh_type
>= SHT_LOOS
)
1622 /* Final attempt. Call the backend copy function
1623 with a NULL input section. */
1624 (void) bed
->elf_backend_copy_special_section_fields (ibfd
, obfd
,
1633 get_segment_type (unsigned int p_type
)
1638 case PT_NULL
: pt
= "NULL"; break;
1639 case PT_LOAD
: pt
= "LOAD"; break;
1640 case PT_DYNAMIC
: pt
= "DYNAMIC"; break;
1641 case PT_INTERP
: pt
= "INTERP"; break;
1642 case PT_NOTE
: pt
= "NOTE"; break;
1643 case PT_SHLIB
: pt
= "SHLIB"; break;
1644 case PT_PHDR
: pt
= "PHDR"; break;
1645 case PT_TLS
: pt
= "TLS"; break;
1646 case PT_GNU_EH_FRAME
: pt
= "EH_FRAME"; break;
1647 case PT_GNU_STACK
: pt
= "STACK"; break;
1648 case PT_GNU_RELRO
: pt
= "RELRO"; break;
1649 default: pt
= NULL
; break;
1654 /* Print out the program headers. */
1657 _bfd_elf_print_private_bfd_data (bfd
*abfd
, void *farg
)
1659 FILE *f
= (FILE *) farg
;
1660 Elf_Internal_Phdr
*p
;
1662 bfd_byte
*dynbuf
= NULL
;
1664 p
= elf_tdata (abfd
)->phdr
;
1669 fprintf (f
, _("\nProgram Header:\n"));
1670 c
= elf_elfheader (abfd
)->e_phnum
;
1671 for (i
= 0; i
< c
; i
++, p
++)
1673 const char *pt
= get_segment_type (p
->p_type
);
1678 sprintf (buf
, "0x%lx", p
->p_type
);
1681 fprintf (f
, "%8s off 0x", pt
);
1682 bfd_fprintf_vma (abfd
, f
, p
->p_offset
);
1683 fprintf (f
, " vaddr 0x");
1684 bfd_fprintf_vma (abfd
, f
, p
->p_vaddr
);
1685 fprintf (f
, " paddr 0x");
1686 bfd_fprintf_vma (abfd
, f
, p
->p_paddr
);
1687 fprintf (f
, " align 2**%u\n", bfd_log2 (p
->p_align
));
1688 fprintf (f
, " filesz 0x");
1689 bfd_fprintf_vma (abfd
, f
, p
->p_filesz
);
1690 fprintf (f
, " memsz 0x");
1691 bfd_fprintf_vma (abfd
, f
, p
->p_memsz
);
1692 fprintf (f
, " flags %c%c%c",
1693 (p
->p_flags
& PF_R
) != 0 ? 'r' : '-',
1694 (p
->p_flags
& PF_W
) != 0 ? 'w' : '-',
1695 (p
->p_flags
& PF_X
) != 0 ? 'x' : '-');
1696 if ((p
->p_flags
&~ (unsigned) (PF_R
| PF_W
| PF_X
)) != 0)
1697 fprintf (f
, " %lx", p
->p_flags
&~ (unsigned) (PF_R
| PF_W
| PF_X
));
1702 s
= bfd_get_section_by_name (abfd
, ".dynamic");
1705 unsigned int elfsec
;
1706 unsigned long shlink
;
1707 bfd_byte
*extdyn
, *extdynend
;
1709 void (*swap_dyn_in
) (bfd
*, const void *, Elf_Internal_Dyn
*);
1711 fprintf (f
, _("\nDynamic Section:\n"));
1713 if (!bfd_malloc_and_get_section (abfd
, s
, &dynbuf
))
1716 elfsec
= _bfd_elf_section_from_bfd_section (abfd
, s
);
1717 if (elfsec
== SHN_BAD
)
1719 shlink
= elf_elfsections (abfd
)[elfsec
]->sh_link
;
1721 extdynsize
= get_elf_backend_data (abfd
)->s
->sizeof_dyn
;
1722 swap_dyn_in
= get_elf_backend_data (abfd
)->s
->swap_dyn_in
;
1725 /* PR 17512: file: 6f427532. */
1726 if (s
->size
< extdynsize
)
1728 extdynend
= extdyn
+ s
->size
;
1729 /* PR 17512: file: id:000006,sig:06,src:000000,op:flip4,pos:5664.
1731 for (; extdyn
<= (extdynend
- extdynsize
); extdyn
+= extdynsize
)
1733 Elf_Internal_Dyn dyn
;
1734 const char *name
= "";
1737 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
1739 (*swap_dyn_in
) (abfd
, extdyn
, &dyn
);
1741 if (dyn
.d_tag
== DT_NULL
)
1748 if (bed
->elf_backend_get_target_dtag
)
1749 name
= (*bed
->elf_backend_get_target_dtag
) (dyn
.d_tag
);
1751 if (!strcmp (name
, ""))
1753 sprintf (ab
, "%#" BFD_VMA_FMT
"x", dyn
.d_tag
);
1758 case DT_NEEDED
: name
= "NEEDED"; stringp
= true; break;
1759 case DT_PLTRELSZ
: name
= "PLTRELSZ"; break;
1760 case DT_PLTGOT
: name
= "PLTGOT"; break;
1761 case DT_HASH
: name
= "HASH"; break;
1762 case DT_STRTAB
: name
= "STRTAB"; break;
1763 case DT_SYMTAB
: name
= "SYMTAB"; break;
1764 case DT_RELA
: name
= "RELA"; break;
1765 case DT_RELASZ
: name
= "RELASZ"; break;
1766 case DT_RELAENT
: name
= "RELAENT"; break;
1767 case DT_STRSZ
: name
= "STRSZ"; break;
1768 case DT_SYMENT
: name
= "SYMENT"; break;
1769 case DT_INIT
: name
= "INIT"; break;
1770 case DT_FINI
: name
= "FINI"; break;
1771 case DT_SONAME
: name
= "SONAME"; stringp
= true; break;
1772 case DT_RPATH
: name
= "RPATH"; stringp
= true; break;
1773 case DT_SYMBOLIC
: name
= "SYMBOLIC"; break;
1774 case DT_REL
: name
= "REL"; break;
1775 case DT_RELSZ
: name
= "RELSZ"; break;
1776 case DT_RELENT
: name
= "RELENT"; break;
1777 case DT_RELR
: name
= "RELR"; break;
1778 case DT_RELRSZ
: name
= "RELRSZ"; break;
1779 case DT_RELRENT
: name
= "RELRENT"; break;
1780 case DT_PLTREL
: name
= "PLTREL"; break;
1781 case DT_DEBUG
: name
= "DEBUG"; break;
1782 case DT_TEXTREL
: name
= "TEXTREL"; break;
1783 case DT_JMPREL
: name
= "JMPREL"; break;
1784 case DT_BIND_NOW
: name
= "BIND_NOW"; break;
1785 case DT_INIT_ARRAY
: name
= "INIT_ARRAY"; break;
1786 case DT_FINI_ARRAY
: name
= "FINI_ARRAY"; break;
1787 case DT_INIT_ARRAYSZ
: name
= "INIT_ARRAYSZ"; break;
1788 case DT_FINI_ARRAYSZ
: name
= "FINI_ARRAYSZ"; break;
1789 case DT_RUNPATH
: name
= "RUNPATH"; stringp
= true; break;
1790 case DT_FLAGS
: name
= "FLAGS"; break;
1791 case DT_PREINIT_ARRAY
: name
= "PREINIT_ARRAY"; break;
1792 case DT_PREINIT_ARRAYSZ
: name
= "PREINIT_ARRAYSZ"; break;
1793 case DT_CHECKSUM
: name
= "CHECKSUM"; break;
1794 case DT_PLTPADSZ
: name
= "PLTPADSZ"; break;
1795 case DT_MOVEENT
: name
= "MOVEENT"; break;
1796 case DT_MOVESZ
: name
= "MOVESZ"; break;
1797 case DT_FEATURE
: name
= "FEATURE"; break;
1798 case DT_POSFLAG_1
: name
= "POSFLAG_1"; break;
1799 case DT_SYMINSZ
: name
= "SYMINSZ"; break;
1800 case DT_SYMINENT
: name
= "SYMINENT"; break;
1801 case DT_CONFIG
: name
= "CONFIG"; stringp
= true; break;
1802 case DT_DEPAUDIT
: name
= "DEPAUDIT"; stringp
= true; break;
1803 case DT_AUDIT
: name
= "AUDIT"; stringp
= true; break;
1804 case DT_PLTPAD
: name
= "PLTPAD"; break;
1805 case DT_MOVETAB
: name
= "MOVETAB"; break;
1806 case DT_SYMINFO
: name
= "SYMINFO"; break;
1807 case DT_RELACOUNT
: name
= "RELACOUNT"; break;
1808 case DT_RELCOUNT
: name
= "RELCOUNT"; break;
1809 case DT_FLAGS_1
: name
= "FLAGS_1"; break;
1810 case DT_VERSYM
: name
= "VERSYM"; break;
1811 case DT_VERDEF
: name
= "VERDEF"; break;
1812 case DT_VERDEFNUM
: name
= "VERDEFNUM"; break;
1813 case DT_VERNEED
: name
= "VERNEED"; break;
1814 case DT_VERNEEDNUM
: name
= "VERNEEDNUM"; break;
1815 case DT_AUXILIARY
: name
= "AUXILIARY"; stringp
= true; break;
1816 case DT_USED
: name
= "USED"; break;
1817 case DT_FILTER
: name
= "FILTER"; stringp
= true; break;
1818 case DT_GNU_HASH
: name
= "GNU_HASH"; break;
1821 fprintf (f
, " %-20s ", name
);
1825 bfd_fprintf_vma (abfd
, f
, dyn
.d_un
.d_val
);
1830 unsigned int tagv
= dyn
.d_un
.d_val
;
1832 string
= bfd_elf_string_from_elf_section (abfd
, shlink
, tagv
);
1835 fprintf (f
, "%s", string
);
1844 if ((elf_dynverdef (abfd
) != 0 && elf_tdata (abfd
)->verdef
== NULL
)
1845 || (elf_dynverref (abfd
) != 0 && elf_tdata (abfd
)->verref
== NULL
))
1847 if (! _bfd_elf_slurp_version_tables (abfd
, false))
1851 if (elf_dynverdef (abfd
) != 0)
1853 Elf_Internal_Verdef
*t
;
1855 fprintf (f
, _("\nVersion definitions:\n"));
1856 for (t
= elf_tdata (abfd
)->verdef
; t
!= NULL
; t
= t
->vd_nextdef
)
1858 fprintf (f
, "%d 0x%2.2x 0x%8.8lx %s\n", t
->vd_ndx
,
1859 t
->vd_flags
, t
->vd_hash
,
1860 t
->vd_nodename
? t
->vd_nodename
: "<corrupt>");
1861 if (t
->vd_auxptr
!= NULL
&& t
->vd_auxptr
->vda_nextptr
!= NULL
)
1863 Elf_Internal_Verdaux
*a
;
1866 for (a
= t
->vd_auxptr
->vda_nextptr
;
1870 a
->vda_nodename
? a
->vda_nodename
: "<corrupt>");
1876 if (elf_dynverref (abfd
) != 0)
1878 Elf_Internal_Verneed
*t
;
1880 fprintf (f
, _("\nVersion References:\n"));
1881 for (t
= elf_tdata (abfd
)->verref
; t
!= NULL
; t
= t
->vn_nextref
)
1883 Elf_Internal_Vernaux
*a
;
1885 fprintf (f
, _(" required from %s:\n"),
1886 t
->vn_filename
? t
->vn_filename
: "<corrupt>");
1887 for (a
= t
->vn_auxptr
; a
!= NULL
; a
= a
->vna_nextptr
)
1888 fprintf (f
, " 0x%8.8lx 0x%2.2x %2.2d %s\n", a
->vna_hash
,
1889 a
->vna_flags
, a
->vna_other
,
1890 a
->vna_nodename
? a
->vna_nodename
: "<corrupt>");
1901 /* Get version name. If BASE_P is TRUE, return "Base" for VER_FLG_BASE
1902 and return symbol version for symbol version itself. */
1905 _bfd_elf_get_symbol_version_string (bfd
*abfd
, asymbol
*symbol
,
1909 const char *version_string
= NULL
;
1910 if (elf_dynversym (abfd
) != 0
1911 && (elf_dynverdef (abfd
) != 0 || elf_dynverref (abfd
) != 0))
1913 unsigned int vernum
= ((elf_symbol_type
*) symbol
)->version
;
1915 *hidden
= (vernum
& VERSYM_HIDDEN
) != 0;
1916 vernum
&= VERSYM_VERSION
;
1919 version_string
= "";
1920 else if (vernum
== 1
1921 && (vernum
> elf_tdata (abfd
)->cverdefs
1922 || (elf_tdata (abfd
)->verdef
[0].vd_flags
1924 version_string
= base_p
? "Base" : "";
1925 else if (vernum
<= elf_tdata (abfd
)->cverdefs
)
1927 const char *nodename
1928 = elf_tdata (abfd
)->verdef
[vernum
- 1].vd_nodename
;
1929 version_string
= "";
1932 || symbol
->name
== NULL
1933 || strcmp (symbol
->name
, nodename
) != 0)
1934 version_string
= nodename
;
1938 Elf_Internal_Verneed
*t
;
1940 version_string
= _("<corrupt>");
1941 for (t
= elf_tdata (abfd
)->verref
;
1945 Elf_Internal_Vernaux
*a
;
1947 for (a
= t
->vn_auxptr
; a
!= NULL
; a
= a
->vna_nextptr
)
1949 if (a
->vna_other
== vernum
)
1952 version_string
= a
->vna_nodename
;
1959 return version_string
;
1962 /* Display ELF-specific fields of a symbol. */
1965 bfd_elf_print_symbol (bfd
*abfd
,
1968 bfd_print_symbol_type how
)
1970 FILE *file
= (FILE *) filep
;
1973 case bfd_print_symbol_name
:
1974 fprintf (file
, "%s", symbol
->name
);
1976 case bfd_print_symbol_more
:
1977 fprintf (file
, "elf ");
1978 bfd_fprintf_vma (abfd
, file
, symbol
->value
);
1979 fprintf (file
, " %x", symbol
->flags
);
1981 case bfd_print_symbol_all
:
1983 const char *section_name
;
1984 const char *name
= NULL
;
1985 const struct elf_backend_data
*bed
;
1986 unsigned char st_other
;
1988 const char *version_string
;
1991 section_name
= symbol
->section
? symbol
->section
->name
: "(*none*)";
1993 bed
= get_elf_backend_data (abfd
);
1994 if (bed
->elf_backend_print_symbol_all
)
1995 name
= (*bed
->elf_backend_print_symbol_all
) (abfd
, filep
, symbol
);
1999 name
= symbol
->name
;
2000 bfd_print_symbol_vandf (abfd
, file
, symbol
);
2003 fprintf (file
, " %s\t", section_name
);
2004 /* Print the "other" value for a symbol. For common symbols,
2005 we've already printed the size; now print the alignment.
2006 For other symbols, we have no specified alignment, and
2007 we've printed the address; now print the size. */
2008 if (symbol
->section
&& bfd_is_com_section (symbol
->section
))
2009 val
= ((elf_symbol_type
*) symbol
)->internal_elf_sym
.st_value
;
2011 val
= ((elf_symbol_type
*) symbol
)->internal_elf_sym
.st_size
;
2012 bfd_fprintf_vma (abfd
, file
, val
);
2014 /* If we have version information, print it. */
2015 version_string
= _bfd_elf_get_symbol_version_string (abfd
,
2022 fprintf (file
, " %-11s", version_string
);
2027 fprintf (file
, " (%s)", version_string
);
2028 for (i
= 10 - strlen (version_string
); i
> 0; --i
)
2033 /* If the st_other field is not zero, print it. */
2034 st_other
= ((elf_symbol_type
*) symbol
)->internal_elf_sym
.st_other
;
2039 case STV_INTERNAL
: fprintf (file
, " .internal"); break;
2040 case STV_HIDDEN
: fprintf (file
, " .hidden"); break;
2041 case STV_PROTECTED
: fprintf (file
, " .protected"); break;
2043 /* Some other non-defined flags are also present, so print
2045 fprintf (file
, " 0x%02x", (unsigned int) st_other
);
2048 fprintf (file
, " %s", name
);
2054 /* ELF .o/exec file reading */
2056 /* Create a new bfd section from an ELF section header. */
2059 bfd_section_from_shdr (bfd
*abfd
, unsigned int shindex
)
2061 Elf_Internal_Shdr
*hdr
;
2062 Elf_Internal_Ehdr
*ehdr
;
2063 const struct elf_backend_data
*bed
;
2067 if (shindex
>= elf_numsections (abfd
))
2070 /* PR17512: A corrupt ELF binary might contain a loop of sections via
2071 sh_link or sh_info. Detect this here, by refusing to load a
2072 section that we are already in the process of loading. */
2073 if (elf_tdata (abfd
)->being_created
[shindex
])
2076 (_("%pB: warning: loop in section dependencies detected"), abfd
);
2079 elf_tdata (abfd
)->being_created
[shindex
] = true;
2081 hdr
= elf_elfsections (abfd
)[shindex
];
2082 ehdr
= elf_elfheader (abfd
);
2083 name
= bfd_elf_string_from_elf_section (abfd
, ehdr
->e_shstrndx
,
2088 bed
= get_elf_backend_data (abfd
);
2089 switch (hdr
->sh_type
)
2092 /* Inactive section. Throw it away. */
2095 case SHT_PROGBITS
: /* Normal section with contents. */
2096 case SHT_NOBITS
: /* .bss section. */
2097 case SHT_HASH
: /* .hash section. */
2098 case SHT_NOTE
: /* .note section. */
2099 case SHT_INIT_ARRAY
: /* .init_array section. */
2100 case SHT_FINI_ARRAY
: /* .fini_array section. */
2101 case SHT_PREINIT_ARRAY
: /* .preinit_array section. */
2102 case SHT_GNU_LIBLIST
: /* .gnu.liblist section. */
2103 case SHT_GNU_HASH
: /* .gnu.hash section. */
2104 ret
= _bfd_elf_make_section_from_shdr (abfd
, hdr
, name
, shindex
);
2107 case SHT_DYNAMIC
: /* Dynamic linking information. */
2108 if (! _bfd_elf_make_section_from_shdr (abfd
, hdr
, name
, shindex
))
2111 if (hdr
->sh_link
> elf_numsections (abfd
))
2113 /* PR 10478: Accept Solaris binaries with a sh_link
2114 field set to SHN_BEFORE or SHN_AFTER. */
2115 switch (bfd_get_arch (abfd
))
2118 case bfd_arch_sparc
:
2119 if (hdr
->sh_link
== (SHN_LORESERVE
& 0xffff) /* SHN_BEFORE */
2120 || hdr
->sh_link
== ((SHN_LORESERVE
+ 1) & 0xffff) /* SHN_AFTER */)
2122 /* Otherwise fall through. */
2127 else if (elf_elfsections (abfd
)[hdr
->sh_link
] == NULL
)
2129 else if (elf_elfsections (abfd
)[hdr
->sh_link
]->sh_type
!= SHT_STRTAB
)
2131 Elf_Internal_Shdr
*dynsymhdr
;
2133 /* The shared libraries distributed with hpux11 have a bogus
2134 sh_link field for the ".dynamic" section. Find the
2135 string table for the ".dynsym" section instead. */
2136 if (elf_dynsymtab (abfd
) != 0)
2138 dynsymhdr
= elf_elfsections (abfd
)[elf_dynsymtab (abfd
)];
2139 hdr
->sh_link
= dynsymhdr
->sh_link
;
2143 unsigned int i
, num_sec
;
2145 num_sec
= elf_numsections (abfd
);
2146 for (i
= 1; i
< num_sec
; i
++)
2148 dynsymhdr
= elf_elfsections (abfd
)[i
];
2149 if (dynsymhdr
->sh_type
== SHT_DYNSYM
)
2151 hdr
->sh_link
= dynsymhdr
->sh_link
;
2159 case SHT_SYMTAB
: /* A symbol table. */
2160 if (elf_onesymtab (abfd
) == shindex
)
2163 if (hdr
->sh_entsize
!= bed
->s
->sizeof_sym
)
2166 if (hdr
->sh_info
* hdr
->sh_entsize
> hdr
->sh_size
)
2168 if (hdr
->sh_size
!= 0)
2170 /* Some assemblers erroneously set sh_info to one with a
2171 zero sh_size. ld sees this as a global symbol count
2172 of (unsigned) -1. Fix it here. */
2177 /* PR 18854: A binary might contain more than one symbol table.
2178 Unusual, but possible. Warn, but continue. */
2179 if (elf_onesymtab (abfd
) != 0)
2182 /* xgettext:c-format */
2183 (_("%pB: warning: multiple symbol tables detected"
2184 " - ignoring the table in section %u"),
2188 elf_onesymtab (abfd
) = shindex
;
2189 elf_symtab_hdr (abfd
) = *hdr
;
2190 elf_elfsections (abfd
)[shindex
] = hdr
= & elf_symtab_hdr (abfd
);
2191 abfd
->flags
|= HAS_SYMS
;
2193 /* Sometimes a shared object will map in the symbol table. If
2194 SHF_ALLOC is set, and this is a shared object, then we also
2195 treat this section as a BFD section. We can not base the
2196 decision purely on SHF_ALLOC, because that flag is sometimes
2197 set in a relocatable object file, which would confuse the
2199 if ((hdr
->sh_flags
& SHF_ALLOC
) != 0
2200 && (abfd
->flags
& DYNAMIC
) != 0
2201 && ! _bfd_elf_make_section_from_shdr (abfd
, hdr
, name
,
2205 /* Go looking for SHT_SYMTAB_SHNDX too, since if there is one we
2206 can't read symbols without that section loaded as well. It
2207 is most likely specified by the next section header. */
2209 elf_section_list
* entry
;
2210 unsigned int i
, num_sec
;
2212 for (entry
= elf_symtab_shndx_list (abfd
); entry
!= NULL
; entry
= entry
->next
)
2213 if (entry
->hdr
.sh_link
== shindex
)
2216 num_sec
= elf_numsections (abfd
);
2217 for (i
= shindex
+ 1; i
< num_sec
; i
++)
2219 Elf_Internal_Shdr
*hdr2
= elf_elfsections (abfd
)[i
];
2221 if (hdr2
->sh_type
== SHT_SYMTAB_SHNDX
2222 && hdr2
->sh_link
== shindex
)
2227 for (i
= 1; i
< shindex
; i
++)
2229 Elf_Internal_Shdr
*hdr2
= elf_elfsections (abfd
)[i
];
2231 if (hdr2
->sh_type
== SHT_SYMTAB_SHNDX
2232 && hdr2
->sh_link
== shindex
)
2237 ret
= bfd_section_from_shdr (abfd
, i
);
2238 /* else FIXME: we have failed to find the symbol table - should we issue an error ? */
2242 case SHT_DYNSYM
: /* A dynamic symbol table. */
2243 if (elf_dynsymtab (abfd
) == shindex
)
2246 if (hdr
->sh_entsize
!= bed
->s
->sizeof_sym
)
2249 if (hdr
->sh_info
* hdr
->sh_entsize
> hdr
->sh_size
)
2251 if (hdr
->sh_size
!= 0)
2254 /* Some linkers erroneously set sh_info to one with a
2255 zero sh_size. ld sees this as a global symbol count
2256 of (unsigned) -1. Fix it here. */
2261 /* PR 18854: A binary might contain more than one dynamic symbol table.
2262 Unusual, but possible. Warn, but continue. */
2263 if (elf_dynsymtab (abfd
) != 0)
2266 /* xgettext:c-format */
2267 (_("%pB: warning: multiple dynamic symbol tables detected"
2268 " - ignoring the table in section %u"),
2272 elf_dynsymtab (abfd
) = shindex
;
2273 elf_tdata (abfd
)->dynsymtab_hdr
= *hdr
;
2274 elf_elfsections (abfd
)[shindex
] = hdr
= &elf_tdata (abfd
)->dynsymtab_hdr
;
2275 abfd
->flags
|= HAS_SYMS
;
2277 /* Besides being a symbol table, we also treat this as a regular
2278 section, so that objcopy can handle it. */
2279 ret
= _bfd_elf_make_section_from_shdr (abfd
, hdr
, name
, shindex
);
2282 case SHT_SYMTAB_SHNDX
: /* Symbol section indices when >64k sections. */
2284 elf_section_list
* entry
;
2286 for (entry
= elf_symtab_shndx_list (abfd
); entry
!= NULL
; entry
= entry
->next
)
2287 if (entry
->ndx
== shindex
)
2290 entry
= bfd_alloc (abfd
, sizeof (*entry
));
2293 entry
->ndx
= shindex
;
2295 entry
->next
= elf_symtab_shndx_list (abfd
);
2296 elf_symtab_shndx_list (abfd
) = entry
;
2297 elf_elfsections (abfd
)[shindex
] = & entry
->hdr
;
2301 case SHT_STRTAB
: /* A string table. */
2302 if (hdr
->bfd_section
!= NULL
)
2305 if (ehdr
->e_shstrndx
== shindex
)
2307 elf_tdata (abfd
)->shstrtab_hdr
= *hdr
;
2308 elf_elfsections (abfd
)[shindex
] = &elf_tdata (abfd
)->shstrtab_hdr
;
2312 if (elf_elfsections (abfd
)[elf_onesymtab (abfd
)]->sh_link
== shindex
)
2315 elf_tdata (abfd
)->strtab_hdr
= *hdr
;
2316 elf_elfsections (abfd
)[shindex
] = &elf_tdata (abfd
)->strtab_hdr
;
2320 if (elf_elfsections (abfd
)[elf_dynsymtab (abfd
)]->sh_link
== shindex
)
2323 elf_tdata (abfd
)->dynstrtab_hdr
= *hdr
;
2324 hdr
= &elf_tdata (abfd
)->dynstrtab_hdr
;
2325 elf_elfsections (abfd
)[shindex
] = hdr
;
2326 /* We also treat this as a regular section, so that objcopy
2328 ret
= _bfd_elf_make_section_from_shdr (abfd
, hdr
, name
,
2333 /* If the string table isn't one of the above, then treat it as a
2334 regular section. We need to scan all the headers to be sure,
2335 just in case this strtab section appeared before the above. */
2336 if (elf_onesymtab (abfd
) == 0 || elf_dynsymtab (abfd
) == 0)
2338 unsigned int i
, num_sec
;
2340 num_sec
= elf_numsections (abfd
);
2341 for (i
= 1; i
< num_sec
; i
++)
2343 Elf_Internal_Shdr
*hdr2
= elf_elfsections (abfd
)[i
];
2344 if (hdr2
->sh_link
== shindex
)
2346 /* Prevent endless recursion on broken objects. */
2349 if (! bfd_section_from_shdr (abfd
, i
))
2351 if (elf_onesymtab (abfd
) == i
)
2353 if (elf_dynsymtab (abfd
) == i
)
2354 goto dynsymtab_strtab
;
2358 ret
= _bfd_elf_make_section_from_shdr (abfd
, hdr
, name
, shindex
);
2364 /* *These* do a lot of work -- but build no sections! */
2366 asection
*target_sect
;
2367 Elf_Internal_Shdr
*hdr2
, **p_hdr
;
2368 unsigned int num_sec
= elf_numsections (abfd
);
2369 struct bfd_elf_section_data
*esdt
;
2372 if (hdr
->sh_type
== SHT_REL
)
2373 size
= bed
->s
->sizeof_rel
;
2374 else if (hdr
->sh_type
== SHT_RELA
)
2375 size
= bed
->s
->sizeof_rela
;
2377 size
= bed
->s
->arch_size
/ 8;
2378 if (hdr
->sh_entsize
!= size
)
2381 /* Check for a bogus link to avoid crashing. */
2382 if (hdr
->sh_link
>= num_sec
)
2385 /* xgettext:c-format */
2386 (_("%pB: invalid link %u for reloc section %s (index %u)"),
2387 abfd
, hdr
->sh_link
, name
, shindex
);
2388 ret
= _bfd_elf_make_section_from_shdr (abfd
, hdr
, name
,
2393 /* Get the symbol table. */
2394 if ((elf_elfsections (abfd
)[hdr
->sh_link
]->sh_type
== SHT_SYMTAB
2395 || elf_elfsections (abfd
)[hdr
->sh_link
]->sh_type
== SHT_DYNSYM
)
2396 && ! bfd_section_from_shdr (abfd
, hdr
->sh_link
))
2399 /* If this is an alloc section in an executable or shared
2400 library, or the reloc section does not use the main symbol
2401 table we don't treat it as a reloc section. BFD can't
2402 adequately represent such a section, so at least for now,
2403 we don't try. We just present it as a normal section. We
2404 also can't use it as a reloc section if it points to the
2405 null section, an invalid section, another reloc section, or
2406 its sh_link points to the null section. */
2407 if (((abfd
->flags
& (DYNAMIC
| EXEC_P
)) != 0
2408 && (hdr
->sh_flags
& SHF_ALLOC
) != 0)
2409 || hdr
->sh_link
== SHN_UNDEF
2410 || hdr
->sh_link
!= elf_onesymtab (abfd
)
2411 || hdr
->sh_info
== SHN_UNDEF
2412 || hdr
->sh_info
>= num_sec
2413 || elf_elfsections (abfd
)[hdr
->sh_info
]->sh_type
== SHT_REL
2414 || elf_elfsections (abfd
)[hdr
->sh_info
]->sh_type
== SHT_RELA
)
2416 ret
= _bfd_elf_make_section_from_shdr (abfd
, hdr
, name
,
2421 if (! bfd_section_from_shdr (abfd
, hdr
->sh_info
))
2424 target_sect
= bfd_section_from_elf_index (abfd
, hdr
->sh_info
);
2425 if (target_sect
== NULL
)
2428 esdt
= elf_section_data (target_sect
);
2429 if (hdr
->sh_type
== SHT_RELA
)
2430 p_hdr
= &esdt
->rela
.hdr
;
2432 p_hdr
= &esdt
->rel
.hdr
;
2434 /* PR 17512: file: 0b4f81b7.
2435 Also see PR 24456, for a file which deliberately has two reloc
2439 if (!bed
->init_secondary_reloc_section (abfd
, hdr
, name
, shindex
))
2442 /* xgettext:c-format */
2443 (_("%pB: warning: secondary relocation section '%s' "
2444 "for section %pA found - ignoring"),
2445 abfd
, name
, target_sect
);
2448 esdt
->has_secondary_relocs
= true;
2452 hdr2
= (Elf_Internal_Shdr
*) bfd_alloc (abfd
, sizeof (*hdr2
));
2457 elf_elfsections (abfd
)[shindex
] = hdr2
;
2458 target_sect
->reloc_count
+= (NUM_SHDR_ENTRIES (hdr
)
2459 * bed
->s
->int_rels_per_ext_rel
);
2460 target_sect
->flags
|= SEC_RELOC
;
2461 target_sect
->relocation
= NULL
;
2462 target_sect
->rel_filepos
= hdr
->sh_offset
;
2463 /* In the section to which the relocations apply, mark whether
2464 its relocations are of the REL or RELA variety. */
2465 if (hdr
->sh_size
!= 0)
2467 if (hdr
->sh_type
== SHT_RELA
)
2468 target_sect
->use_rela_p
= 1;
2470 abfd
->flags
|= HAS_RELOC
;
2474 case SHT_GNU_verdef
:
2475 elf_dynverdef (abfd
) = shindex
;
2476 elf_tdata (abfd
)->dynverdef_hdr
= *hdr
;
2477 ret
= _bfd_elf_make_section_from_shdr (abfd
, hdr
, name
, shindex
);
2480 case SHT_GNU_versym
:
2481 if (hdr
->sh_entsize
!= sizeof (Elf_External_Versym
))
2484 elf_dynversym (abfd
) = shindex
;
2485 elf_tdata (abfd
)->dynversym_hdr
= *hdr
;
2486 ret
= _bfd_elf_make_section_from_shdr (abfd
, hdr
, name
, shindex
);
2489 case SHT_GNU_verneed
:
2490 elf_dynverref (abfd
) = shindex
;
2491 elf_tdata (abfd
)->dynverref_hdr
= *hdr
;
2492 ret
= _bfd_elf_make_section_from_shdr (abfd
, hdr
, name
, shindex
);
2499 if (! IS_VALID_GROUP_SECTION_HEADER (hdr
, GRP_ENTRY_SIZE
))
2502 if (!_bfd_elf_make_section_from_shdr (abfd
, hdr
, name
, shindex
))
2508 /* Possibly an attributes section. */
2509 if (hdr
->sh_type
== SHT_GNU_ATTRIBUTES
2510 || hdr
->sh_type
== bed
->obj_attrs_section_type
)
2512 if (! _bfd_elf_make_section_from_shdr (abfd
, hdr
, name
, shindex
))
2514 _bfd_elf_parse_attributes (abfd
, hdr
);
2518 /* Check for any processor-specific section types. */
2519 if (bed
->elf_backend_section_from_shdr (abfd
, hdr
, name
, shindex
))
2522 if (hdr
->sh_type
>= SHT_LOUSER
&& hdr
->sh_type
<= SHT_HIUSER
)
2524 if ((hdr
->sh_flags
& SHF_ALLOC
) != 0)
2525 /* FIXME: How to properly handle allocated section reserved
2526 for applications? */
2528 /* xgettext:c-format */
2529 (_("%pB: unknown type [%#x] section `%s'"),
2530 abfd
, hdr
->sh_type
, name
);
2533 /* Allow sections reserved for applications. */
2534 ret
= _bfd_elf_make_section_from_shdr (abfd
, hdr
, name
,
2539 else if (hdr
->sh_type
>= SHT_LOPROC
2540 && hdr
->sh_type
<= SHT_HIPROC
)
2541 /* FIXME: We should handle this section. */
2543 /* xgettext:c-format */
2544 (_("%pB: unknown type [%#x] section `%s'"),
2545 abfd
, hdr
->sh_type
, name
);
2546 else if (hdr
->sh_type
>= SHT_LOOS
&& hdr
->sh_type
<= SHT_HIOS
)
2548 /* Unrecognised OS-specific sections. */
2549 if ((hdr
->sh_flags
& SHF_OS_NONCONFORMING
) != 0)
2550 /* SHF_OS_NONCONFORMING indicates that special knowledge is
2551 required to correctly process the section and the file should
2552 be rejected with an error message. */
2554 /* xgettext:c-format */
2555 (_("%pB: unknown type [%#x] section `%s'"),
2556 abfd
, hdr
->sh_type
, name
);
2559 /* Otherwise it should be processed. */
2560 ret
= _bfd_elf_make_section_from_shdr (abfd
, hdr
, name
, shindex
);
2565 /* FIXME: We should handle this section. */
2567 /* xgettext:c-format */
2568 (_("%pB: unknown type [%#x] section `%s'"),
2569 abfd
, hdr
->sh_type
, name
);
2577 elf_tdata (abfd
)->being_created
[shindex
] = false;
2581 /* Return the local symbol specified by ABFD, R_SYMNDX. */
2584 bfd_sym_from_r_symndx (struct sym_cache
*cache
,
2586 unsigned long r_symndx
)
2588 unsigned int ent
= r_symndx
% LOCAL_SYM_CACHE_SIZE
;
2590 if (cache
->abfd
!= abfd
|| cache
->indx
[ent
] != r_symndx
)
2592 Elf_Internal_Shdr
*symtab_hdr
;
2593 unsigned char esym
[sizeof (Elf64_External_Sym
)];
2594 Elf_External_Sym_Shndx eshndx
;
2596 symtab_hdr
= &elf_tdata (abfd
)->symtab_hdr
;
2597 if (bfd_elf_get_elf_syms (abfd
, symtab_hdr
, 1, r_symndx
,
2598 &cache
->sym
[ent
], esym
, &eshndx
) == NULL
)
2601 if (cache
->abfd
!= abfd
)
2603 memset (cache
->indx
, -1, sizeof (cache
->indx
));
2606 cache
->indx
[ent
] = r_symndx
;
2609 return &cache
->sym
[ent
];
2612 /* Given an ELF section number, retrieve the corresponding BFD
2616 bfd_section_from_elf_index (bfd
*abfd
, unsigned int sec_index
)
2618 if (sec_index
>= elf_numsections (abfd
))
2620 return elf_elfsections (abfd
)[sec_index
]->bfd_section
;
2623 static const struct bfd_elf_special_section special_sections_b
[] =
2625 { STRING_COMMA_LEN (".bss"), -2, SHT_NOBITS
, SHF_ALLOC
+ SHF_WRITE
},
2626 { NULL
, 0, 0, 0, 0 }
2629 static const struct bfd_elf_special_section special_sections_c
[] =
2631 { STRING_COMMA_LEN (".comment"), 0, SHT_PROGBITS
, 0 },
2632 { STRING_COMMA_LEN (".ctf"), 0, SHT_PROGBITS
, 0 },
2633 { NULL
, 0, 0, 0, 0 }
2636 static const struct bfd_elf_special_section special_sections_d
[] =
2638 { STRING_COMMA_LEN (".data"), -2, SHT_PROGBITS
, SHF_ALLOC
+ SHF_WRITE
},
2639 { STRING_COMMA_LEN (".data1"), 0, SHT_PROGBITS
, SHF_ALLOC
+ SHF_WRITE
},
2640 /* There are more DWARF sections than these, but they needn't be added here
2641 unless you have to cope with broken compilers that don't emit section
2642 attributes or you want to help the user writing assembler. */
2643 { STRING_COMMA_LEN (".debug"), 0, SHT_PROGBITS
, 0 },
2644 { STRING_COMMA_LEN (".debug_line"), 0, SHT_PROGBITS
, 0 },
2645 { STRING_COMMA_LEN (".debug_info"), 0, SHT_PROGBITS
, 0 },
2646 { STRING_COMMA_LEN (".debug_abbrev"), 0, SHT_PROGBITS
, 0 },
2647 { STRING_COMMA_LEN (".debug_aranges"), 0, SHT_PROGBITS
, 0 },
2648 { STRING_COMMA_LEN (".dynamic"), 0, SHT_DYNAMIC
, SHF_ALLOC
},
2649 { STRING_COMMA_LEN (".dynstr"), 0, SHT_STRTAB
, SHF_ALLOC
},
2650 { STRING_COMMA_LEN (".dynsym"), 0, SHT_DYNSYM
, SHF_ALLOC
},
2651 { NULL
, 0, 0, 0, 0 }
2654 static const struct bfd_elf_special_section special_sections_f
[] =
2656 { STRING_COMMA_LEN (".fini"), 0, SHT_PROGBITS
, SHF_ALLOC
+ SHF_EXECINSTR
},
2657 { STRING_COMMA_LEN (".fini_array"), -2, SHT_FINI_ARRAY
, SHF_ALLOC
+ SHF_WRITE
},
2658 { NULL
, 0 , 0, 0, 0 }
2661 static const struct bfd_elf_special_section special_sections_g
[] =
2663 { STRING_COMMA_LEN (".gnu.linkonce.b"), -2, SHT_NOBITS
, SHF_ALLOC
+ SHF_WRITE
},
2664 { STRING_COMMA_LEN (".gnu.linkonce.n"), -2, SHT_NOBITS
, SHF_ALLOC
+ SHF_WRITE
},
2665 { STRING_COMMA_LEN (".gnu.linkonce.p"), -2, SHT_PROGBITS
, SHF_ALLOC
+ SHF_WRITE
},
2666 { STRING_COMMA_LEN (".gnu.lto_"), -1, SHT_PROGBITS
, SHF_EXCLUDE
},
2667 { STRING_COMMA_LEN (".got"), 0, SHT_PROGBITS
, SHF_ALLOC
+ SHF_WRITE
},
2668 { STRING_COMMA_LEN (".gnu.version"), 0, SHT_GNU_versym
, 0 },
2669 { STRING_COMMA_LEN (".gnu.version_d"), 0, SHT_GNU_verdef
, 0 },
2670 { STRING_COMMA_LEN (".gnu.version_r"), 0, SHT_GNU_verneed
, 0 },
2671 { STRING_COMMA_LEN (".gnu.liblist"), 0, SHT_GNU_LIBLIST
, SHF_ALLOC
},
2672 { STRING_COMMA_LEN (".gnu.conflict"), 0, SHT_RELA
, SHF_ALLOC
},
2673 { STRING_COMMA_LEN (".gnu.hash"), 0, SHT_GNU_HASH
, SHF_ALLOC
},
2674 { NULL
, 0, 0, 0, 0 }
2677 static const struct bfd_elf_special_section special_sections_h
[] =
2679 { STRING_COMMA_LEN (".hash"), 0, SHT_HASH
, SHF_ALLOC
},
2680 { NULL
, 0, 0, 0, 0 }
2683 static const struct bfd_elf_special_section special_sections_i
[] =
2685 { STRING_COMMA_LEN (".init"), 0, SHT_PROGBITS
, SHF_ALLOC
+ SHF_EXECINSTR
},
2686 { STRING_COMMA_LEN (".init_array"), -2, SHT_INIT_ARRAY
, SHF_ALLOC
+ SHF_WRITE
},
2687 { STRING_COMMA_LEN (".interp"), 0, SHT_PROGBITS
, 0 },
2688 { NULL
, 0, 0, 0, 0 }
2691 static const struct bfd_elf_special_section special_sections_l
[] =
2693 { STRING_COMMA_LEN (".line"), 0, SHT_PROGBITS
, 0 },
2694 { NULL
, 0, 0, 0, 0 }
2697 static const struct bfd_elf_special_section special_sections_n
[] =
2699 { STRING_COMMA_LEN (".noinit"), -2, SHT_NOBITS
, SHF_ALLOC
+ SHF_WRITE
},
2700 { STRING_COMMA_LEN (".note.GNU-stack"), 0, SHT_PROGBITS
, 0 },
2701 { STRING_COMMA_LEN (".note"), -1, SHT_NOTE
, 0 },
2702 { NULL
, 0, 0, 0, 0 }
2705 static const struct bfd_elf_special_section special_sections_p
[] =
2707 { STRING_COMMA_LEN (".persistent.bss"), 0, SHT_NOBITS
, SHF_ALLOC
+ SHF_WRITE
},
2708 { STRING_COMMA_LEN (".persistent"), -2, SHT_PROGBITS
, SHF_ALLOC
+ SHF_WRITE
},
2709 { STRING_COMMA_LEN (".preinit_array"), -2, SHT_PREINIT_ARRAY
, SHF_ALLOC
+ SHF_WRITE
},
2710 { STRING_COMMA_LEN (".plt"), 0, SHT_PROGBITS
, SHF_ALLOC
+ SHF_EXECINSTR
},
2711 { NULL
, 0, 0, 0, 0 }
2714 static const struct bfd_elf_special_section special_sections_r
[] =
2716 { STRING_COMMA_LEN (".rodata"), -2, SHT_PROGBITS
, SHF_ALLOC
},
2717 { STRING_COMMA_LEN (".rodata1"), 0, SHT_PROGBITS
, SHF_ALLOC
},
2718 { STRING_COMMA_LEN (".relr.dyn"), 0, SHT_RELR
, SHF_ALLOC
},
2719 { STRING_COMMA_LEN (".rela"), -1, SHT_RELA
, 0 },
2720 { STRING_COMMA_LEN (".rel"), -1, SHT_REL
, 0 },
2721 { NULL
, 0, 0, 0, 0 }
2724 static const struct bfd_elf_special_section special_sections_s
[] =
2726 { STRING_COMMA_LEN (".shstrtab"), 0, SHT_STRTAB
, 0 },
2727 { STRING_COMMA_LEN (".strtab"), 0, SHT_STRTAB
, 0 },
2728 { STRING_COMMA_LEN (".symtab"), 0, SHT_SYMTAB
, 0 },
2729 /* See struct bfd_elf_special_section declaration for the semantics of
2730 this special case where .prefix_length != strlen (.prefix). */
2731 { ".stabstr", 5, 3, SHT_STRTAB
, 0 },
2732 { NULL
, 0, 0, 0, 0 }
2735 static const struct bfd_elf_special_section special_sections_t
[] =
2737 { STRING_COMMA_LEN (".text"), -2, SHT_PROGBITS
, SHF_ALLOC
+ SHF_EXECINSTR
},
2738 { STRING_COMMA_LEN (".tbss"), -2, SHT_NOBITS
, SHF_ALLOC
+ SHF_WRITE
+ SHF_TLS
},
2739 { STRING_COMMA_LEN (".tdata"), -2, SHT_PROGBITS
, SHF_ALLOC
+ SHF_WRITE
+ SHF_TLS
},
2740 { NULL
, 0, 0, 0, 0 }
2743 static const struct bfd_elf_special_section special_sections_z
[] =
2745 { STRING_COMMA_LEN (".zdebug_line"), 0, SHT_PROGBITS
, 0 },
2746 { STRING_COMMA_LEN (".zdebug_info"), 0, SHT_PROGBITS
, 0 },
2747 { STRING_COMMA_LEN (".zdebug_abbrev"), 0, SHT_PROGBITS
, 0 },
2748 { STRING_COMMA_LEN (".zdebug_aranges"), 0, SHT_PROGBITS
, 0 },
2749 { NULL
, 0, 0, 0, 0 }
2752 static const struct bfd_elf_special_section
* const special_sections
[] =
2754 special_sections_b
, /* 'b' */
2755 special_sections_c
, /* 'c' */
2756 special_sections_d
, /* 'd' */
2758 special_sections_f
, /* 'f' */
2759 special_sections_g
, /* 'g' */
2760 special_sections_h
, /* 'h' */
2761 special_sections_i
, /* 'i' */
2764 special_sections_l
, /* 'l' */
2766 special_sections_n
, /* 'n' */
2768 special_sections_p
, /* 'p' */
2770 special_sections_r
, /* 'r' */
2771 special_sections_s
, /* 's' */
2772 special_sections_t
, /* 't' */
2778 special_sections_z
/* 'z' */
2781 const struct bfd_elf_special_section
*
2782 _bfd_elf_get_special_section (const char *name
,
2783 const struct bfd_elf_special_section
*spec
,
2789 len
= strlen (name
);
2791 for (i
= 0; spec
[i
].prefix
!= NULL
; i
++)
2794 int prefix_len
= spec
[i
].prefix_length
;
2796 if (len
< prefix_len
)
2798 if (memcmp (name
, spec
[i
].prefix
, prefix_len
) != 0)
2801 suffix_len
= spec
[i
].suffix_length
;
2802 if (suffix_len
<= 0)
2804 if (name
[prefix_len
] != 0)
2806 if (suffix_len
== 0)
2808 if (name
[prefix_len
] != '.'
2809 && (suffix_len
== -2
2810 || (rela
&& spec
[i
].type
== SHT_REL
)))
2816 if (len
< prefix_len
+ suffix_len
)
2818 if (memcmp (name
+ len
- suffix_len
,
2819 spec
[i
].prefix
+ prefix_len
,
2829 const struct bfd_elf_special_section
*
2830 _bfd_elf_get_sec_type_attr (bfd
*abfd
, asection
*sec
)
2833 const struct bfd_elf_special_section
*spec
;
2834 const struct elf_backend_data
*bed
;
2836 /* See if this is one of the special sections. */
2837 if (sec
->name
== NULL
)
2840 bed
= get_elf_backend_data (abfd
);
2841 spec
= bed
->special_sections
;
2844 spec
= _bfd_elf_get_special_section (sec
->name
,
2845 bed
->special_sections
,
2851 if (sec
->name
[0] != '.')
2854 i
= sec
->name
[1] - 'b';
2855 if (i
< 0 || i
> 'z' - 'b')
2858 spec
= special_sections
[i
];
2863 return _bfd_elf_get_special_section (sec
->name
, spec
, sec
->use_rela_p
);
2867 _bfd_elf_new_section_hook (bfd
*abfd
, asection
*sec
)
2869 struct bfd_elf_section_data
*sdata
;
2870 const struct elf_backend_data
*bed
;
2871 const struct bfd_elf_special_section
*ssect
;
2873 sdata
= (struct bfd_elf_section_data
*) sec
->used_by_bfd
;
2876 sdata
= (struct bfd_elf_section_data
*) bfd_zalloc (abfd
,
2880 sec
->used_by_bfd
= sdata
;
2883 /* Indicate whether or not this section should use RELA relocations. */
2884 bed
= get_elf_backend_data (abfd
);
2885 sec
->use_rela_p
= bed
->default_use_rela_p
;
2887 /* Set up ELF section type and flags for newly created sections, if
2888 there is an ABI mandated section. */
2889 ssect
= (*bed
->get_sec_type_attr
) (abfd
, sec
);
2892 elf_section_type (sec
) = ssect
->type
;
2893 elf_section_flags (sec
) = ssect
->attr
;
2896 return _bfd_generic_new_section_hook (abfd
, sec
);
2899 /* Create a new bfd section from an ELF program header.
2901 Since program segments have no names, we generate a synthetic name
2902 of the form segment<NUM>, where NUM is generally the index in the
2903 program header table. For segments that are split (see below) we
2904 generate the names segment<NUM>a and segment<NUM>b.
2906 Note that some program segments may have a file size that is different than
2907 (less than) the memory size. All this means is that at execution the
2908 system must allocate the amount of memory specified by the memory size,
2909 but only initialize it with the first "file size" bytes read from the
2910 file. This would occur for example, with program segments consisting
2911 of combined data+bss.
2913 To handle the above situation, this routine generates TWO bfd sections
2914 for the single program segment. The first has the length specified by
2915 the file size of the segment, and the second has the length specified
2916 by the difference between the two sizes. In effect, the segment is split
2917 into its initialized and uninitialized parts.
2922 _bfd_elf_make_section_from_phdr (bfd
*abfd
,
2923 Elf_Internal_Phdr
*hdr
,
2925 const char *type_name
)
2932 unsigned int opb
= bfd_octets_per_byte (abfd
, NULL
);
2934 split
= ((hdr
->p_memsz
> 0)
2935 && (hdr
->p_filesz
> 0)
2936 && (hdr
->p_memsz
> hdr
->p_filesz
));
2938 if (hdr
->p_filesz
> 0)
2940 sprintf (namebuf
, "%s%d%s", type_name
, hdr_index
, split
? "a" : "");
2941 len
= strlen (namebuf
) + 1;
2942 name
= (char *) bfd_alloc (abfd
, len
);
2945 memcpy (name
, namebuf
, len
);
2946 newsect
= bfd_make_section (abfd
, name
);
2947 if (newsect
== NULL
)
2949 newsect
->vma
= hdr
->p_vaddr
/ opb
;
2950 newsect
->lma
= hdr
->p_paddr
/ opb
;
2951 newsect
->size
= hdr
->p_filesz
;
2952 newsect
->filepos
= hdr
->p_offset
;
2953 newsect
->flags
|= SEC_HAS_CONTENTS
;
2954 newsect
->alignment_power
= bfd_log2 (hdr
->p_align
);
2955 if (hdr
->p_type
== PT_LOAD
)
2957 newsect
->flags
|= SEC_ALLOC
;
2958 newsect
->flags
|= SEC_LOAD
;
2959 if (hdr
->p_flags
& PF_X
)
2961 /* FIXME: all we known is that it has execute PERMISSION,
2963 newsect
->flags
|= SEC_CODE
;
2966 if (!(hdr
->p_flags
& PF_W
))
2968 newsect
->flags
|= SEC_READONLY
;
2972 if (hdr
->p_memsz
> hdr
->p_filesz
)
2976 sprintf (namebuf
, "%s%d%s", type_name
, hdr_index
, split
? "b" : "");
2977 len
= strlen (namebuf
) + 1;
2978 name
= (char *) bfd_alloc (abfd
, len
);
2981 memcpy (name
, namebuf
, len
);
2982 newsect
= bfd_make_section (abfd
, name
);
2983 if (newsect
== NULL
)
2985 newsect
->vma
= (hdr
->p_vaddr
+ hdr
->p_filesz
) / opb
;
2986 newsect
->lma
= (hdr
->p_paddr
+ hdr
->p_filesz
) / opb
;
2987 newsect
->size
= hdr
->p_memsz
- hdr
->p_filesz
;
2988 newsect
->filepos
= hdr
->p_offset
+ hdr
->p_filesz
;
2989 align
= newsect
->vma
& -newsect
->vma
;
2990 if (align
== 0 || align
> hdr
->p_align
)
2991 align
= hdr
->p_align
;
2992 newsect
->alignment_power
= bfd_log2 (align
);
2993 if (hdr
->p_type
== PT_LOAD
)
2995 newsect
->flags
|= SEC_ALLOC
;
2996 if (hdr
->p_flags
& PF_X
)
2997 newsect
->flags
|= SEC_CODE
;
2999 if (!(hdr
->p_flags
& PF_W
))
3000 newsect
->flags
|= SEC_READONLY
;
3007 _bfd_elf_core_find_build_id (bfd
*templ
, bfd_vma offset
)
3009 /* The return value is ignored. Build-ids are considered optional. */
3010 if (templ
->xvec
->flavour
== bfd_target_elf_flavour
)
3011 return (*get_elf_backend_data (templ
)->elf_backend_core_find_build_id
)
3017 bfd_section_from_phdr (bfd
*abfd
, Elf_Internal_Phdr
*hdr
, int hdr_index
)
3019 const struct elf_backend_data
*bed
;
3021 switch (hdr
->p_type
)
3024 return _bfd_elf_make_section_from_phdr (abfd
, hdr
, hdr_index
, "null");
3027 if (! _bfd_elf_make_section_from_phdr (abfd
, hdr
, hdr_index
, "load"))
3029 if (bfd_get_format (abfd
) == bfd_core
&& abfd
->build_id
== NULL
)
3030 _bfd_elf_core_find_build_id (abfd
, hdr
->p_offset
);
3034 return _bfd_elf_make_section_from_phdr (abfd
, hdr
, hdr_index
, "dynamic");
3037 return _bfd_elf_make_section_from_phdr (abfd
, hdr
, hdr_index
, "interp");
3040 if (! _bfd_elf_make_section_from_phdr (abfd
, hdr
, hdr_index
, "note"))
3042 if (! elf_read_notes (abfd
, hdr
->p_offset
, hdr
->p_filesz
,
3048 return _bfd_elf_make_section_from_phdr (abfd
, hdr
, hdr_index
, "shlib");
3051 return _bfd_elf_make_section_from_phdr (abfd
, hdr
, hdr_index
, "phdr");
3053 case PT_GNU_EH_FRAME
:
3054 return _bfd_elf_make_section_from_phdr (abfd
, hdr
, hdr_index
,
3058 return _bfd_elf_make_section_from_phdr (abfd
, hdr
, hdr_index
, "stack");
3061 return _bfd_elf_make_section_from_phdr (abfd
, hdr
, hdr_index
, "relro");
3064 /* Check for any processor-specific program segment types. */
3065 bed
= get_elf_backend_data (abfd
);
3066 return bed
->elf_backend_section_from_phdr (abfd
, hdr
, hdr_index
, "proc");
3070 /* Return the REL_HDR for SEC, assuming there is only a single one, either
3074 _bfd_elf_single_rel_hdr (asection
*sec
)
3076 if (elf_section_data (sec
)->rel
.hdr
)
3078 BFD_ASSERT (elf_section_data (sec
)->rela
.hdr
== NULL
);
3079 return elf_section_data (sec
)->rel
.hdr
;
3082 return elf_section_data (sec
)->rela
.hdr
;
3086 _bfd_elf_set_reloc_sh_name (bfd
*abfd
,
3087 Elf_Internal_Shdr
*rel_hdr
,
3088 const char *sec_name
,
3091 char *name
= (char *) bfd_alloc (abfd
,
3092 sizeof ".rela" + strlen (sec_name
));
3096 sprintf (name
, "%s%s", use_rela_p
? ".rela" : ".rel", sec_name
);
3098 (unsigned int) _bfd_elf_strtab_add (elf_shstrtab (abfd
), name
,
3100 if (rel_hdr
->sh_name
== (unsigned int) -1)
3106 /* Allocate and initialize a section-header for a new reloc section,
3107 containing relocations against ASECT. It is stored in RELDATA. If
3108 USE_RELA_P is TRUE, we use RELA relocations; otherwise, we use REL
3112 _bfd_elf_init_reloc_shdr (bfd
*abfd
,
3113 struct bfd_elf_section_reloc_data
*reldata
,
3114 const char *sec_name
,
3116 bool delay_st_name_p
)
3118 Elf_Internal_Shdr
*rel_hdr
;
3119 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
3121 BFD_ASSERT (reldata
->hdr
== NULL
);
3122 rel_hdr
= bfd_zalloc (abfd
, sizeof (*rel_hdr
));
3123 reldata
->hdr
= rel_hdr
;
3125 if (delay_st_name_p
)
3126 rel_hdr
->sh_name
= (unsigned int) -1;
3127 else if (!_bfd_elf_set_reloc_sh_name (abfd
, rel_hdr
, sec_name
,
3130 rel_hdr
->sh_type
= use_rela_p
? SHT_RELA
: SHT_REL
;
3131 rel_hdr
->sh_entsize
= (use_rela_p
3132 ? bed
->s
->sizeof_rela
3133 : bed
->s
->sizeof_rel
);
3134 rel_hdr
->sh_addralign
= (bfd_vma
) 1 << bed
->s
->log_file_align
;
3135 rel_hdr
->sh_flags
= 0;
3136 rel_hdr
->sh_addr
= 0;
3137 rel_hdr
->sh_size
= 0;
3138 rel_hdr
->sh_offset
= 0;
3143 /* Return the default section type based on the passed in section flags. */
3146 bfd_elf_get_default_section_type (flagword flags
)
3148 if ((flags
& (SEC_ALLOC
| SEC_IS_COMMON
)) != 0
3149 && (flags
& (SEC_LOAD
| SEC_HAS_CONTENTS
)) == 0)
3151 return SHT_PROGBITS
;
3154 struct fake_section_arg
3156 struct bfd_link_info
*link_info
;
3160 /* Set up an ELF internal section header for a section. */
3163 elf_fake_sections (bfd
*abfd
, asection
*asect
, void *fsarg
)
3165 struct fake_section_arg
*arg
= (struct fake_section_arg
*)fsarg
;
3166 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
3167 struct bfd_elf_section_data
*esd
= elf_section_data (asect
);
3168 Elf_Internal_Shdr
*this_hdr
;
3169 unsigned int sh_type
;
3170 const char *name
= asect
->name
;
3171 bool delay_st_name_p
= false;
3176 /* We already failed; just get out of the bfd_map_over_sections
3181 this_hdr
= &esd
->this_hdr
;
3185 /* ld: compress DWARF debug sections with names: .debug_*. */
3186 if ((arg
->link_info
->compress_debug
& COMPRESS_DEBUG
)
3187 && (asect
->flags
& SEC_DEBUGGING
)
3191 /* Set SEC_ELF_COMPRESS to indicate this section should be
3193 asect
->flags
|= SEC_ELF_COMPRESS
;
3194 /* If this section will be compressed, delay adding section
3195 name to section name section after it is compressed in
3196 _bfd_elf_assign_file_positions_for_non_load. */
3197 delay_st_name_p
= true;
3200 else if ((asect
->flags
& SEC_ELF_RENAME
))
3202 /* objcopy: rename output DWARF debug section. */
3203 if ((abfd
->flags
& (BFD_DECOMPRESS
| BFD_COMPRESS_GABI
)))
3205 /* When we decompress or compress with SHF_COMPRESSED,
3206 convert section name from .zdebug_* to .debug_* if
3210 char *new_name
= convert_zdebug_to_debug (abfd
, name
);
3211 if (new_name
== NULL
)
3219 else if (asect
->compress_status
== COMPRESS_SECTION_DONE
)
3221 /* PR binutils/18087: Compression does not always make a
3222 section smaller. So only rename the section when
3223 compression has actually taken place. If input section
3224 name is .zdebug_*, we should never compress it again. */
3225 char *new_name
= convert_debug_to_zdebug (abfd
, name
);
3226 if (new_name
== NULL
)
3231 BFD_ASSERT (name
[1] != 'z');
3236 if (delay_st_name_p
)
3237 this_hdr
->sh_name
= (unsigned int) -1;
3241 = (unsigned int) _bfd_elf_strtab_add (elf_shstrtab (abfd
),
3243 if (this_hdr
->sh_name
== (unsigned int) -1)
3250 /* Don't clear sh_flags. Assembler may set additional bits. */
3252 if ((asect
->flags
& SEC_ALLOC
) != 0
3253 || asect
->user_set_vma
)
3254 this_hdr
->sh_addr
= asect
->vma
* bfd_octets_per_byte (abfd
, asect
);
3256 this_hdr
->sh_addr
= 0;
3258 this_hdr
->sh_offset
= 0;
3259 this_hdr
->sh_size
= asect
->size
;
3260 this_hdr
->sh_link
= 0;
3261 /* PR 17512: file: 0eb809fe, 8b0535ee. */
3262 if (asect
->alignment_power
>= (sizeof (bfd_vma
) * 8) - 1)
3265 /* xgettext:c-format */
3266 (_("%pB: error: alignment power %d of section `%pA' is too big"),
3267 abfd
, asect
->alignment_power
, asect
);
3271 /* Set sh_addralign to the highest power of two given by alignment
3272 consistent with the section VMA. Linker scripts can force VMA. */
3273 mask
= ((bfd_vma
) 1 << asect
->alignment_power
) | this_hdr
->sh_addr
;
3274 this_hdr
->sh_addralign
= mask
& -mask
;
3275 /* The sh_entsize and sh_info fields may have been set already by
3276 copy_private_section_data. */
3278 this_hdr
->bfd_section
= asect
;
3279 this_hdr
->contents
= NULL
;
3281 /* If the section type is unspecified, we set it based on
3283 if (asect
->type
!= 0)
3284 sh_type
= asect
->type
;
3285 else if ((asect
->flags
& SEC_GROUP
) != 0)
3286 sh_type
= SHT_GROUP
;
3288 sh_type
= bfd_elf_get_default_section_type (asect
->flags
);
3290 if (this_hdr
->sh_type
== SHT_NULL
)
3291 this_hdr
->sh_type
= sh_type
;
3292 else if (this_hdr
->sh_type
== SHT_NOBITS
3293 && sh_type
== SHT_PROGBITS
3294 && (asect
->flags
& SEC_ALLOC
) != 0)
3296 /* Warn if we are changing a NOBITS section to PROGBITS, but
3297 allow the link to proceed. This can happen when users link
3298 non-bss input sections to bss output sections, or emit data
3299 to a bss output section via a linker script. */
3301 (_("warning: section `%pA' type changed to PROGBITS"), asect
);
3302 this_hdr
->sh_type
= sh_type
;
3305 switch (this_hdr
->sh_type
)
3316 case SHT_INIT_ARRAY
:
3317 case SHT_FINI_ARRAY
:
3318 case SHT_PREINIT_ARRAY
:
3319 this_hdr
->sh_entsize
= bed
->s
->arch_size
/ 8;
3323 this_hdr
->sh_entsize
= bed
->s
->sizeof_hash_entry
;
3327 this_hdr
->sh_entsize
= bed
->s
->sizeof_sym
;
3331 this_hdr
->sh_entsize
= bed
->s
->sizeof_dyn
;
3335 if (get_elf_backend_data (abfd
)->may_use_rela_p
)
3336 this_hdr
->sh_entsize
= bed
->s
->sizeof_rela
;
3340 if (get_elf_backend_data (abfd
)->may_use_rel_p
)
3341 this_hdr
->sh_entsize
= bed
->s
->sizeof_rel
;
3344 case SHT_GNU_versym
:
3345 this_hdr
->sh_entsize
= sizeof (Elf_External_Versym
);
3348 case SHT_GNU_verdef
:
3349 this_hdr
->sh_entsize
= 0;
3350 /* objcopy or strip will copy over sh_info, but may not set
3351 cverdefs. The linker will set cverdefs, but sh_info will be
3353 if (this_hdr
->sh_info
== 0)
3354 this_hdr
->sh_info
= elf_tdata (abfd
)->cverdefs
;
3356 BFD_ASSERT (elf_tdata (abfd
)->cverdefs
== 0
3357 || this_hdr
->sh_info
== elf_tdata (abfd
)->cverdefs
);
3360 case SHT_GNU_verneed
:
3361 this_hdr
->sh_entsize
= 0;
3362 /* objcopy or strip will copy over sh_info, but may not set
3363 cverrefs. The linker will set cverrefs, but sh_info will be
3365 if (this_hdr
->sh_info
== 0)
3366 this_hdr
->sh_info
= elf_tdata (abfd
)->cverrefs
;
3368 BFD_ASSERT (elf_tdata (abfd
)->cverrefs
== 0
3369 || this_hdr
->sh_info
== elf_tdata (abfd
)->cverrefs
);
3373 this_hdr
->sh_entsize
= GRP_ENTRY_SIZE
;
3377 this_hdr
->sh_entsize
= bed
->s
->arch_size
== 64 ? 0 : 4;
3381 if ((asect
->flags
& SEC_ALLOC
) != 0)
3382 this_hdr
->sh_flags
|= SHF_ALLOC
;
3383 if ((asect
->flags
& SEC_READONLY
) == 0)
3384 this_hdr
->sh_flags
|= SHF_WRITE
;
3385 if ((asect
->flags
& SEC_CODE
) != 0)
3386 this_hdr
->sh_flags
|= SHF_EXECINSTR
;
3387 if ((asect
->flags
& SEC_MERGE
) != 0)
3389 this_hdr
->sh_flags
|= SHF_MERGE
;
3390 this_hdr
->sh_entsize
= asect
->entsize
;
3392 if ((asect
->flags
& SEC_STRINGS
) != 0)
3393 this_hdr
->sh_flags
|= SHF_STRINGS
;
3394 if ((asect
->flags
& SEC_GROUP
) == 0 && elf_group_name (asect
) != NULL
)
3395 this_hdr
->sh_flags
|= SHF_GROUP
;
3396 if ((asect
->flags
& SEC_THREAD_LOCAL
) != 0)
3398 this_hdr
->sh_flags
|= SHF_TLS
;
3399 if (asect
->size
== 0
3400 && (asect
->flags
& SEC_HAS_CONTENTS
) == 0)
3402 struct bfd_link_order
*o
= asect
->map_tail
.link_order
;
3404 this_hdr
->sh_size
= 0;
3407 this_hdr
->sh_size
= o
->offset
+ o
->size
;
3408 if (this_hdr
->sh_size
!= 0)
3409 this_hdr
->sh_type
= SHT_NOBITS
;
3413 if ((asect
->flags
& (SEC_GROUP
| SEC_EXCLUDE
)) == SEC_EXCLUDE
)
3414 this_hdr
->sh_flags
|= SHF_EXCLUDE
;
3416 /* If the section has relocs, set up a section header for the
3417 SHT_REL[A] section. If two relocation sections are required for
3418 this section, it is up to the processor-specific back-end to
3419 create the other. */
3420 if ((asect
->flags
& SEC_RELOC
) != 0)
3422 /* When doing a relocatable link, create both REL and RELA sections if
3425 /* Do the normal setup if we wouldn't create any sections here. */
3426 && esd
->rel
.count
+ esd
->rela
.count
> 0
3427 && (bfd_link_relocatable (arg
->link_info
)
3428 || arg
->link_info
->emitrelocations
))
3430 if (esd
->rel
.count
&& esd
->rel
.hdr
== NULL
3431 && !_bfd_elf_init_reloc_shdr (abfd
, &esd
->rel
, name
,
3432 false, delay_st_name_p
))
3437 if (esd
->rela
.count
&& esd
->rela
.hdr
== NULL
3438 && !_bfd_elf_init_reloc_shdr (abfd
, &esd
->rela
, name
,
3439 true, delay_st_name_p
))
3445 else if (!_bfd_elf_init_reloc_shdr (abfd
,
3447 ? &esd
->rela
: &esd
->rel
),
3457 /* Check for processor-specific section types. */
3458 sh_type
= this_hdr
->sh_type
;
3459 if (bed
->elf_backend_fake_sections
3460 && !(*bed
->elf_backend_fake_sections
) (abfd
, this_hdr
, asect
))
3466 if (sh_type
== SHT_NOBITS
&& asect
->size
!= 0)
3468 /* Don't change the header type from NOBITS if we are being
3469 called for objcopy --only-keep-debug. */
3470 this_hdr
->sh_type
= sh_type
;
3474 /* Fill in the contents of a SHT_GROUP section. Called from
3475 _bfd_elf_compute_section_file_positions for gas, objcopy, and
3476 when ELF targets use the generic linker, ld. Called for ld -r
3477 from bfd_elf_final_link. */
3480 bfd_elf_set_group_contents (bfd
*abfd
, asection
*sec
, void *failedptrarg
)
3482 bool *failedptr
= (bool *) failedptrarg
;
3483 asection
*elt
, *first
;
3487 /* Ignore linker created group section. See elfNN_ia64_object_p in
3489 if ((sec
->flags
& (SEC_GROUP
| SEC_LINKER_CREATED
)) != SEC_GROUP
3494 if (elf_section_data (sec
)->this_hdr
.sh_info
== 0)
3496 unsigned long symindx
= 0;
3498 /* elf_group_id will have been set up by objcopy and the
3500 if (elf_group_id (sec
) != NULL
)
3501 symindx
= elf_group_id (sec
)->udata
.i
;
3505 /* If called from the assembler, swap_out_syms will have set up
3507 PR 25699: A corrupt input file could contain bogus group info. */
3508 if (sec
->index
>= elf_num_section_syms (abfd
)
3509 || elf_section_syms (abfd
)[sec
->index
] == NULL
)
3514 symindx
= elf_section_syms (abfd
)[sec
->index
]->udata
.i
;
3516 elf_section_data (sec
)->this_hdr
.sh_info
= symindx
;
3518 else if (elf_section_data (sec
)->this_hdr
.sh_info
== (unsigned int) -2)
3520 /* The ELF backend linker sets sh_info to -2 when the group
3521 signature symbol is global, and thus the index can't be
3522 set until all local symbols are output. */
3524 struct bfd_elf_section_data
*sec_data
;
3525 unsigned long symndx
;
3526 unsigned long extsymoff
;
3527 struct elf_link_hash_entry
*h
;
3529 /* The point of this little dance to the first SHF_GROUP section
3530 then back to the SHT_GROUP section is that this gets us to
3531 the SHT_GROUP in the input object. */
3532 igroup
= elf_sec_group (elf_next_in_group (sec
));
3533 sec_data
= elf_section_data (igroup
);
3534 symndx
= sec_data
->this_hdr
.sh_info
;
3536 if (!elf_bad_symtab (igroup
->owner
))
3538 Elf_Internal_Shdr
*symtab_hdr
;
3540 symtab_hdr
= &elf_tdata (igroup
->owner
)->symtab_hdr
;
3541 extsymoff
= symtab_hdr
->sh_info
;
3543 h
= elf_sym_hashes (igroup
->owner
)[symndx
- extsymoff
];
3544 while (h
->root
.type
== bfd_link_hash_indirect
3545 || h
->root
.type
== bfd_link_hash_warning
)
3546 h
= (struct elf_link_hash_entry
*) h
->root
.u
.i
.link
;
3548 elf_section_data (sec
)->this_hdr
.sh_info
= h
->indx
;
3551 /* The contents won't be allocated for "ld -r" or objcopy. */
3553 if (sec
->contents
== NULL
)
3556 sec
->contents
= (unsigned char *) bfd_alloc (abfd
, sec
->size
);
3558 /* Arrange for the section to be written out. */
3559 elf_section_data (sec
)->this_hdr
.contents
= sec
->contents
;
3560 if (sec
->contents
== NULL
)
3567 loc
= sec
->contents
+ sec
->size
;
3569 /* Get the pointer to the first section in the group that gas
3570 squirreled away here. objcopy arranges for this to be set to the
3571 start of the input section group. */
3572 first
= elt
= elf_next_in_group (sec
);
3574 /* First element is a flag word. Rest of section is elf section
3575 indices for all the sections of the group. Write them backwards
3576 just to keep the group in the same order as given in .section
3577 directives, not that it matters. */
3584 s
= s
->output_section
;
3586 && !bfd_is_abs_section (s
))
3588 struct bfd_elf_section_data
*elf_sec
= elf_section_data (s
);
3589 struct bfd_elf_section_data
*input_elf_sec
= elf_section_data (elt
);
3591 if (elf_sec
->rel
.hdr
!= NULL
3593 || (input_elf_sec
->rel
.hdr
!= NULL
3594 && input_elf_sec
->rel
.hdr
->sh_flags
& SHF_GROUP
) != 0))
3596 elf_sec
->rel
.hdr
->sh_flags
|= SHF_GROUP
;
3598 H_PUT_32 (abfd
, elf_sec
->rel
.idx
, loc
);
3600 if (elf_sec
->rela
.hdr
!= NULL
3602 || (input_elf_sec
->rela
.hdr
!= NULL
3603 && input_elf_sec
->rela
.hdr
->sh_flags
& SHF_GROUP
) != 0))
3605 elf_sec
->rela
.hdr
->sh_flags
|= SHF_GROUP
;
3607 H_PUT_32 (abfd
, elf_sec
->rela
.idx
, loc
);
3610 H_PUT_32 (abfd
, elf_sec
->this_idx
, loc
);
3612 elt
= elf_next_in_group (elt
);
3618 BFD_ASSERT (loc
== sec
->contents
);
3620 H_PUT_32 (abfd
, sec
->flags
& SEC_LINK_ONCE
? GRP_COMDAT
: 0, loc
);
3623 /* Given NAME, the name of a relocation section stripped of its
3624 .rel/.rela prefix, return the section in ABFD to which the
3625 relocations apply. */
3628 _bfd_elf_plt_get_reloc_section (bfd
*abfd
, const char *name
)
3630 /* If a target needs .got.plt section, relocations in rela.plt/rel.plt
3631 section likely apply to .got.plt or .got section. */
3632 if (get_elf_backend_data (abfd
)->want_got_plt
3633 && strcmp (name
, ".plt") == 0)
3638 sec
= bfd_get_section_by_name (abfd
, name
);
3644 return bfd_get_section_by_name (abfd
, name
);
3647 /* Return the section to which RELOC_SEC applies. */
3650 elf_get_reloc_section (asection
*reloc_sec
)
3655 const struct elf_backend_data
*bed
;
3657 type
= elf_section_data (reloc_sec
)->this_hdr
.sh_type
;
3658 if (type
!= SHT_REL
&& type
!= SHT_RELA
)
3661 /* We look up the section the relocs apply to by name. */
3662 name
= reloc_sec
->name
;
3663 if (!startswith (name
, ".rel"))
3666 if (type
== SHT_RELA
&& *name
++ != 'a')
3669 abfd
= reloc_sec
->owner
;
3670 bed
= get_elf_backend_data (abfd
);
3671 return bed
->get_reloc_section (abfd
, name
);
3674 /* Assign all ELF section numbers. The dummy first section is handled here
3675 too. The link/info pointers for the standard section types are filled
3676 in here too, while we're at it. LINK_INFO will be 0 when arriving
3677 here for objcopy, and when using the generic ELF linker. */
3680 assign_section_numbers (bfd
*abfd
, struct bfd_link_info
*link_info
)
3682 struct elf_obj_tdata
*t
= elf_tdata (abfd
);
3684 unsigned int section_number
;
3685 Elf_Internal_Shdr
**i_shdrp
;
3686 struct bfd_elf_section_data
*d
;
3692 _bfd_elf_strtab_clear_all_refs (elf_shstrtab (abfd
));
3694 /* SHT_GROUP sections are in relocatable files only. */
3695 if (link_info
== NULL
|| !link_info
->resolve_section_groups
)
3697 size_t reloc_count
= 0;
3699 /* Put SHT_GROUP sections first. */
3700 for (sec
= abfd
->sections
; sec
!= NULL
; sec
= sec
->next
)
3702 d
= elf_section_data (sec
);
3704 if (d
->this_hdr
.sh_type
== SHT_GROUP
)
3706 if (sec
->flags
& SEC_LINKER_CREATED
)
3708 /* Remove the linker created SHT_GROUP sections. */
3709 bfd_section_list_remove (abfd
, sec
);
3710 abfd
->section_count
--;
3713 d
->this_idx
= section_number
++;
3716 /* Count relocations. */
3717 reloc_count
+= sec
->reloc_count
;
3720 /* Clear HAS_RELOC if there are no relocations. */
3721 if (reloc_count
== 0)
3722 abfd
->flags
&= ~HAS_RELOC
;
3725 for (sec
= abfd
->sections
; sec
; sec
= sec
->next
)
3727 d
= elf_section_data (sec
);
3729 if (d
->this_hdr
.sh_type
!= SHT_GROUP
)
3730 d
->this_idx
= section_number
++;
3731 if (d
->this_hdr
.sh_name
!= (unsigned int) -1)
3732 _bfd_elf_strtab_addref (elf_shstrtab (abfd
), d
->this_hdr
.sh_name
);
3735 d
->rel
.idx
= section_number
++;
3736 if (d
->rel
.hdr
->sh_name
!= (unsigned int) -1)
3737 _bfd_elf_strtab_addref (elf_shstrtab (abfd
), d
->rel
.hdr
->sh_name
);
3744 d
->rela
.idx
= section_number
++;
3745 if (d
->rela
.hdr
->sh_name
!= (unsigned int) -1)
3746 _bfd_elf_strtab_addref (elf_shstrtab (abfd
), d
->rela
.hdr
->sh_name
);
3752 need_symtab
= (bfd_get_symcount (abfd
) > 0
3753 || (link_info
== NULL
3754 && ((abfd
->flags
& (EXEC_P
| DYNAMIC
| HAS_RELOC
))
3758 elf_onesymtab (abfd
) = section_number
++;
3759 _bfd_elf_strtab_addref (elf_shstrtab (abfd
), t
->symtab_hdr
.sh_name
);
3760 if (section_number
> ((SHN_LORESERVE
- 2) & 0xFFFF))
3762 elf_section_list
*entry
;
3764 BFD_ASSERT (elf_symtab_shndx_list (abfd
) == NULL
);
3766 entry
= bfd_zalloc (abfd
, sizeof (*entry
));
3767 entry
->ndx
= section_number
++;
3768 elf_symtab_shndx_list (abfd
) = entry
;
3770 = (unsigned int) _bfd_elf_strtab_add (elf_shstrtab (abfd
),
3771 ".symtab_shndx", false);
3772 if (entry
->hdr
.sh_name
== (unsigned int) -1)
3775 elf_strtab_sec (abfd
) = section_number
++;
3776 _bfd_elf_strtab_addref (elf_shstrtab (abfd
), t
->strtab_hdr
.sh_name
);
3779 elf_shstrtab_sec (abfd
) = section_number
++;
3780 _bfd_elf_strtab_addref (elf_shstrtab (abfd
), t
->shstrtab_hdr
.sh_name
);
3781 elf_elfheader (abfd
)->e_shstrndx
= elf_shstrtab_sec (abfd
);
3783 if (section_number
>= SHN_LORESERVE
)
3785 /* xgettext:c-format */
3786 _bfd_error_handler (_("%pB: too many sections: %u"),
3787 abfd
, section_number
);
3791 elf_numsections (abfd
) = section_number
;
3792 elf_elfheader (abfd
)->e_shnum
= section_number
;
3794 /* Set up the list of section header pointers, in agreement with the
3796 amt
= section_number
* sizeof (Elf_Internal_Shdr
*);
3797 i_shdrp
= (Elf_Internal_Shdr
**) bfd_zalloc (abfd
, amt
);
3798 if (i_shdrp
== NULL
)
3801 i_shdrp
[0] = (Elf_Internal_Shdr
*) bfd_zalloc (abfd
,
3802 sizeof (Elf_Internal_Shdr
));
3803 if (i_shdrp
[0] == NULL
)
3805 bfd_release (abfd
, i_shdrp
);
3809 elf_elfsections (abfd
) = i_shdrp
;
3811 i_shdrp
[elf_shstrtab_sec (abfd
)] = &t
->shstrtab_hdr
;
3814 i_shdrp
[elf_onesymtab (abfd
)] = &t
->symtab_hdr
;
3815 if (elf_numsections (abfd
) > (SHN_LORESERVE
& 0xFFFF))
3817 elf_section_list
* entry
= elf_symtab_shndx_list (abfd
);
3818 BFD_ASSERT (entry
!= NULL
);
3819 i_shdrp
[entry
->ndx
] = & entry
->hdr
;
3820 entry
->hdr
.sh_link
= elf_onesymtab (abfd
);
3822 i_shdrp
[elf_strtab_sec (abfd
)] = &t
->strtab_hdr
;
3823 t
->symtab_hdr
.sh_link
= elf_strtab_sec (abfd
);
3826 for (sec
= abfd
->sections
; sec
; sec
= sec
->next
)
3830 d
= elf_section_data (sec
);
3832 i_shdrp
[d
->this_idx
] = &d
->this_hdr
;
3833 if (d
->rel
.idx
!= 0)
3834 i_shdrp
[d
->rel
.idx
] = d
->rel
.hdr
;
3835 if (d
->rela
.idx
!= 0)
3836 i_shdrp
[d
->rela
.idx
] = d
->rela
.hdr
;
3838 /* Fill in the sh_link and sh_info fields while we're at it. */
3840 /* sh_link of a reloc section is the section index of the symbol
3841 table. sh_info is the section index of the section to which
3842 the relocation entries apply. */
3843 if (d
->rel
.idx
!= 0)
3845 d
->rel
.hdr
->sh_link
= elf_onesymtab (abfd
);
3846 d
->rel
.hdr
->sh_info
= d
->this_idx
;
3847 d
->rel
.hdr
->sh_flags
|= SHF_INFO_LINK
;
3849 if (d
->rela
.idx
!= 0)
3851 d
->rela
.hdr
->sh_link
= elf_onesymtab (abfd
);
3852 d
->rela
.hdr
->sh_info
= d
->this_idx
;
3853 d
->rela
.hdr
->sh_flags
|= SHF_INFO_LINK
;
3856 /* We need to set up sh_link for SHF_LINK_ORDER. */
3857 if ((d
->this_hdr
.sh_flags
& SHF_LINK_ORDER
) != 0)
3859 s
= elf_linked_to_section (sec
);
3860 /* We can now have a NULL linked section pointer.
3861 This happens when the sh_link field is 0, which is done
3862 when a linked to section is discarded but the linking
3863 section has been retained for some reason. */
3866 /* Check discarded linkonce section. */
3867 if (discarded_section (s
))
3871 /* xgettext:c-format */
3872 (_("%pB: sh_link of section `%pA' points to"
3873 " discarded section `%pA' of `%pB'"),
3874 abfd
, d
->this_hdr
.bfd_section
, s
, s
->owner
);
3875 /* Point to the kept section if it has the same
3876 size as the discarded one. */
3877 kept
= _bfd_elf_check_kept_section (s
, link_info
);
3880 bfd_set_error (bfd_error_bad_value
);
3885 /* Handle objcopy. */
3886 else if (s
->output_section
== NULL
)
3889 /* xgettext:c-format */
3890 (_("%pB: sh_link of section `%pA' points to"
3891 " removed section `%pA' of `%pB'"),
3892 abfd
, d
->this_hdr
.bfd_section
, s
, s
->owner
);
3893 bfd_set_error (bfd_error_bad_value
);
3896 s
= s
->output_section
;
3897 d
->this_hdr
.sh_link
= elf_section_data (s
)->this_idx
;
3901 switch (d
->this_hdr
.sh_type
)
3905 /* A reloc section which we are treating as a normal BFD
3906 section. sh_link is the section index of the symbol
3907 table. sh_info is the section index of the section to
3908 which the relocation entries apply. We assume that an
3909 allocated reloc section uses the dynamic symbol table
3910 if there is one. Otherwise we guess the normal symbol
3911 table. FIXME: How can we be sure? */
3912 if (d
->this_hdr
.sh_link
== 0 && (sec
->flags
& SEC_ALLOC
) != 0)
3914 s
= bfd_get_section_by_name (abfd
, ".dynsym");
3916 d
->this_hdr
.sh_link
= elf_section_data (s
)->this_idx
;
3918 if (d
->this_hdr
.sh_link
== 0)
3919 d
->this_hdr
.sh_link
= elf_onesymtab (abfd
);
3921 s
= elf_get_reloc_section (sec
);
3924 d
->this_hdr
.sh_info
= elf_section_data (s
)->this_idx
;
3925 d
->this_hdr
.sh_flags
|= SHF_INFO_LINK
;
3930 /* We assume that a section named .stab*str is a stabs
3931 string section. We look for a section with the same name
3932 but without the trailing ``str'', and set its sh_link
3933 field to point to this section. */
3934 if (startswith (sec
->name
, ".stab")
3935 && strcmp (sec
->name
+ strlen (sec
->name
) - 3, "str") == 0)
3940 len
= strlen (sec
->name
);
3941 alc
= (char *) bfd_malloc (len
- 2);
3944 memcpy (alc
, sec
->name
, len
- 3);
3945 alc
[len
- 3] = '\0';
3946 s
= bfd_get_section_by_name (abfd
, alc
);
3950 elf_section_data (s
)->this_hdr
.sh_link
= d
->this_idx
;
3952 /* This is a .stab section. */
3953 elf_section_data (s
)->this_hdr
.sh_entsize
= 12;
3960 case SHT_GNU_verneed
:
3961 case SHT_GNU_verdef
:
3962 /* sh_link is the section header index of the string table
3963 used for the dynamic entries, or the symbol table, or the
3965 s
= bfd_get_section_by_name (abfd
, ".dynstr");
3967 d
->this_hdr
.sh_link
= elf_section_data (s
)->this_idx
;
3970 case SHT_GNU_LIBLIST
:
3971 /* sh_link is the section header index of the prelink library
3972 list used for the dynamic entries, or the symbol table, or
3973 the version strings. */
3974 s
= bfd_get_section_by_name (abfd
, ((sec
->flags
& SEC_ALLOC
)
3975 ? ".dynstr" : ".gnu.libstr"));
3977 d
->this_hdr
.sh_link
= elf_section_data (s
)->this_idx
;
3982 case SHT_GNU_versym
:
3983 /* sh_link is the section header index of the symbol table
3984 this hash table or version table is for. */
3985 s
= bfd_get_section_by_name (abfd
, ".dynsym");
3987 d
->this_hdr
.sh_link
= elf_section_data (s
)->this_idx
;
3991 d
->this_hdr
.sh_link
= elf_onesymtab (abfd
);
3995 /* Delay setting sh_name to _bfd_elf_write_object_contents so that
3996 _bfd_elf_assign_file_positions_for_non_load can convert DWARF
3997 debug section name from .debug_* to .zdebug_* if needed. */
4003 sym_is_global (bfd
*abfd
, asymbol
*sym
)
4005 /* If the backend has a special mapping, use it. */
4006 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
4007 if (bed
->elf_backend_sym_is_global
)
4008 return (*bed
->elf_backend_sym_is_global
) (abfd
, sym
);
4010 return ((sym
->flags
& (BSF_GLOBAL
| BSF_WEAK
| BSF_GNU_UNIQUE
)) != 0
4011 || bfd_is_und_section (bfd_asymbol_section (sym
))
4012 || bfd_is_com_section (bfd_asymbol_section (sym
)));
4015 /* Filter global symbols of ABFD to include in the import library. All
4016 SYMCOUNT symbols of ABFD can be examined from their pointers in
4017 SYMS. Pointers of symbols to keep should be stored contiguously at
4018 the beginning of that array.
4020 Returns the number of symbols to keep. */
4023 _bfd_elf_filter_global_symbols (bfd
*abfd
, struct bfd_link_info
*info
,
4024 asymbol
**syms
, long symcount
)
4026 long src_count
, dst_count
= 0;
4028 for (src_count
= 0; src_count
< symcount
; src_count
++)
4030 asymbol
*sym
= syms
[src_count
];
4031 char *name
= (char *) bfd_asymbol_name (sym
);
4032 struct bfd_link_hash_entry
*h
;
4034 if (!sym_is_global (abfd
, sym
))
4037 h
= bfd_link_hash_lookup (info
->hash
, name
, false, false, false);
4040 if (h
->type
!= bfd_link_hash_defined
&& h
->type
!= bfd_link_hash_defweak
)
4042 if (h
->linker_def
|| h
->ldscript_def
)
4045 syms
[dst_count
++] = sym
;
4048 syms
[dst_count
] = NULL
;
4053 /* Don't output section symbols for sections that are not going to be
4054 output, that are duplicates or there is no BFD section. */
4057 ignore_section_sym (bfd
*abfd
, asymbol
*sym
)
4059 elf_symbol_type
*type_ptr
;
4064 if ((sym
->flags
& BSF_SECTION_SYM
) == 0)
4067 /* Ignore the section symbol if it isn't used. */
4068 if ((sym
->flags
& BSF_SECTION_SYM_USED
) == 0)
4071 if (sym
->section
== NULL
)
4074 type_ptr
= elf_symbol_from (sym
);
4075 return ((type_ptr
!= NULL
4076 && type_ptr
->internal_elf_sym
.st_shndx
!= 0
4077 && bfd_is_abs_section (sym
->section
))
4078 || !(sym
->section
->owner
== abfd
4079 || (sym
->section
->output_section
!= NULL
4080 && sym
->section
->output_section
->owner
== abfd
4081 && sym
->section
->output_offset
== 0)
4082 || bfd_is_abs_section (sym
->section
)));
4085 /* Map symbol from it's internal number to the external number, moving
4086 all local symbols to be at the head of the list. */
4089 elf_map_symbols (bfd
*abfd
, unsigned int *pnum_locals
)
4091 unsigned int symcount
= bfd_get_symcount (abfd
);
4092 asymbol
**syms
= bfd_get_outsymbols (abfd
);
4093 asymbol
**sect_syms
;
4094 unsigned int num_locals
= 0;
4095 unsigned int num_globals
= 0;
4096 unsigned int num_locals2
= 0;
4097 unsigned int num_globals2
= 0;
4098 unsigned int max_index
= 0;
4105 fprintf (stderr
, "elf_map_symbols\n");
4109 for (asect
= abfd
->sections
; asect
; asect
= asect
->next
)
4111 if (max_index
< asect
->index
)
4112 max_index
= asect
->index
;
4116 amt
= max_index
* sizeof (asymbol
*);
4117 sect_syms
= (asymbol
**) bfd_zalloc (abfd
, amt
);
4118 if (sect_syms
== NULL
)
4120 elf_section_syms (abfd
) = sect_syms
;
4121 elf_num_section_syms (abfd
) = max_index
;
4123 /* Init sect_syms entries for any section symbols we have already
4124 decided to output. */
4125 for (idx
= 0; idx
< symcount
; idx
++)
4127 asymbol
*sym
= syms
[idx
];
4129 if ((sym
->flags
& BSF_SECTION_SYM
) != 0
4131 && !ignore_section_sym (abfd
, sym
)
4132 && !bfd_is_abs_section (sym
->section
))
4134 asection
*sec
= sym
->section
;
4136 if (sec
->owner
!= abfd
)
4137 sec
= sec
->output_section
;
4139 sect_syms
[sec
->index
] = syms
[idx
];
4143 /* Classify all of the symbols. */
4144 for (idx
= 0; idx
< symcount
; idx
++)
4146 if (sym_is_global (abfd
, syms
[idx
]))
4148 else if (!ignore_section_sym (abfd
, syms
[idx
]))
4152 /* We will be adding a section symbol for each normal BFD section. Most
4153 sections will already have a section symbol in outsymbols, but
4154 eg. SHT_GROUP sections will not, and we need the section symbol mapped
4155 at least in that case. */
4156 for (asect
= abfd
->sections
; asect
; asect
= asect
->next
)
4158 asymbol
*sym
= asect
->symbol
;
4159 /* Don't include ignored section symbols. */
4160 if (!ignore_section_sym (abfd
, sym
)
4161 && sect_syms
[asect
->index
] == NULL
)
4163 if (!sym_is_global (abfd
, asect
->symbol
))
4170 /* Now sort the symbols so the local symbols are first. */
4171 amt
= (num_locals
+ num_globals
) * sizeof (asymbol
*);
4172 new_syms
= (asymbol
**) bfd_alloc (abfd
, amt
);
4173 if (new_syms
== NULL
)
4176 for (idx
= 0; idx
< symcount
; idx
++)
4178 asymbol
*sym
= syms
[idx
];
4181 if (sym_is_global (abfd
, sym
))
4182 i
= num_locals
+ num_globals2
++;
4183 /* Don't include ignored section symbols. */
4184 else if (!ignore_section_sym (abfd
, sym
))
4189 sym
->udata
.i
= i
+ 1;
4191 for (asect
= abfd
->sections
; asect
; asect
= asect
->next
)
4193 asymbol
*sym
= asect
->symbol
;
4194 if (!ignore_section_sym (abfd
, sym
)
4195 && sect_syms
[asect
->index
] == NULL
)
4199 sect_syms
[asect
->index
] = sym
;
4200 if (!sym_is_global (abfd
, sym
))
4203 i
= num_locals
+ num_globals2
++;
4205 sym
->udata
.i
= i
+ 1;
4209 bfd_set_symtab (abfd
, new_syms
, num_locals
+ num_globals
);
4211 *pnum_locals
= num_locals
;
4215 /* Align to the maximum file alignment that could be required for any
4216 ELF data structure. */
4218 static inline file_ptr
4219 align_file_position (file_ptr off
, int align
)
4221 return (off
+ align
- 1) & ~(align
- 1);
4224 /* Assign a file position to a section, optionally aligning to the
4225 required section alignment. */
4228 _bfd_elf_assign_file_position_for_section (Elf_Internal_Shdr
*i_shdrp
,
4232 if (align
&& i_shdrp
->sh_addralign
> 1)
4233 offset
= BFD_ALIGN (offset
, i_shdrp
->sh_addralign
& -i_shdrp
->sh_addralign
);
4234 i_shdrp
->sh_offset
= offset
;
4235 if (i_shdrp
->bfd_section
!= NULL
)
4236 i_shdrp
->bfd_section
->filepos
= offset
;
4237 if (i_shdrp
->sh_type
!= SHT_NOBITS
)
4238 offset
+= i_shdrp
->sh_size
;
4242 /* Compute the file positions we are going to put the sections at, and
4243 otherwise prepare to begin writing out the ELF file. If LINK_INFO
4244 is not NULL, this is being called by the ELF backend linker. */
4247 _bfd_elf_compute_section_file_positions (bfd
*abfd
,
4248 struct bfd_link_info
*link_info
)
4250 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
4251 struct fake_section_arg fsargs
;
4253 struct elf_strtab_hash
*strtab
= NULL
;
4254 Elf_Internal_Shdr
*shstrtab_hdr
;
4257 if (abfd
->output_has_begun
)
4260 /* Do any elf backend specific processing first. */
4261 if (bed
->elf_backend_begin_write_processing
)
4262 (*bed
->elf_backend_begin_write_processing
) (abfd
, link_info
);
4264 if (!(*bed
->elf_backend_init_file_header
) (abfd
, link_info
))
4267 fsargs
.failed
= false;
4268 fsargs
.link_info
= link_info
;
4269 bfd_map_over_sections (abfd
, elf_fake_sections
, &fsargs
);
4273 if (!assign_section_numbers (abfd
, link_info
))
4276 /* The backend linker builds symbol table information itself. */
4277 need_symtab
= (link_info
== NULL
4278 && (bfd_get_symcount (abfd
) > 0
4279 || ((abfd
->flags
& (EXEC_P
| DYNAMIC
| HAS_RELOC
))
4283 /* Non-zero if doing a relocatable link. */
4284 int relocatable_p
= ! (abfd
->flags
& (EXEC_P
| DYNAMIC
));
4286 if (! swap_out_syms (abfd
, &strtab
, relocatable_p
, link_info
))
4291 if (link_info
== NULL
)
4293 bfd_map_over_sections (abfd
, bfd_elf_set_group_contents
, &failed
);
4298 shstrtab_hdr
= &elf_tdata (abfd
)->shstrtab_hdr
;
4299 /* sh_name was set in init_file_header. */
4300 shstrtab_hdr
->sh_type
= SHT_STRTAB
;
4301 shstrtab_hdr
->sh_flags
= bed
->elf_strtab_flags
;
4302 shstrtab_hdr
->sh_addr
= 0;
4303 /* sh_size is set in _bfd_elf_assign_file_positions_for_non_load. */
4304 shstrtab_hdr
->sh_entsize
= 0;
4305 shstrtab_hdr
->sh_link
= 0;
4306 shstrtab_hdr
->sh_info
= 0;
4307 /* sh_offset is set in _bfd_elf_assign_file_positions_for_non_load. */
4308 shstrtab_hdr
->sh_addralign
= 1;
4310 if (!assign_file_positions_except_relocs (abfd
, link_info
))
4316 Elf_Internal_Shdr
*hdr
;
4318 off
= elf_next_file_pos (abfd
);
4320 hdr
= & elf_symtab_hdr (abfd
);
4321 off
= _bfd_elf_assign_file_position_for_section (hdr
, off
, true);
4323 if (elf_symtab_shndx_list (abfd
) != NULL
)
4325 hdr
= & elf_symtab_shndx_list (abfd
)->hdr
;
4326 if (hdr
->sh_size
!= 0)
4327 off
= _bfd_elf_assign_file_position_for_section (hdr
, off
, true);
4328 /* FIXME: What about other symtab_shndx sections in the list ? */
4331 hdr
= &elf_tdata (abfd
)->strtab_hdr
;
4332 off
= _bfd_elf_assign_file_position_for_section (hdr
, off
, true);
4334 elf_next_file_pos (abfd
) = off
;
4336 /* Now that we know where the .strtab section goes, write it
4338 if (bfd_seek (abfd
, hdr
->sh_offset
, SEEK_SET
) != 0
4339 || ! _bfd_elf_strtab_emit (abfd
, strtab
))
4341 _bfd_elf_strtab_free (strtab
);
4344 abfd
->output_has_begun
= true;
4349 /* Retrieve .eh_frame_hdr. Prior to size_dynamic_sections the
4350 function effectively returns whether --eh-frame-hdr is given on the
4351 command line. After size_dynamic_sections the result reflects
4352 whether .eh_frame_hdr will actually be output (sizing isn't done
4353 until ldemul_after_allocation). */
4356 elf_eh_frame_hdr (const struct bfd_link_info
*info
)
4358 if (info
!= NULL
&& is_elf_hash_table (info
->hash
))
4359 return elf_hash_table (info
)->eh_info
.hdr_sec
;
4363 /* Make an initial estimate of the size of the program header. If we
4364 get the number wrong here, we'll redo section placement. */
4366 static bfd_size_type
4367 get_program_header_size (bfd
*abfd
, struct bfd_link_info
*info
)
4371 const struct elf_backend_data
*bed
;
4373 /* Assume we will need exactly two PT_LOAD segments: one for text
4374 and one for data. */
4377 s
= bfd_get_section_by_name (abfd
, ".interp");
4378 if (s
!= NULL
&& (s
->flags
& SEC_LOAD
) != 0 && s
->size
!= 0)
4380 /* If we have a loadable interpreter section, we need a
4381 PT_INTERP segment. In this case, assume we also need a
4382 PT_PHDR segment, although that may not be true for all
4387 if (bfd_get_section_by_name (abfd
, ".dynamic") != NULL
)
4389 /* We need a PT_DYNAMIC segment. */
4393 if (info
!= NULL
&& info
->relro
)
4395 /* We need a PT_GNU_RELRO segment. */
4399 if (elf_eh_frame_hdr (info
))
4401 /* We need a PT_GNU_EH_FRAME segment. */
4405 if (elf_stack_flags (abfd
))
4407 /* We need a PT_GNU_STACK segment. */
4411 s
= bfd_get_section_by_name (abfd
,
4412 NOTE_GNU_PROPERTY_SECTION_NAME
);
4413 if (s
!= NULL
&& s
->size
!= 0)
4415 /* We need a PT_GNU_PROPERTY segment. */
4419 for (s
= abfd
->sections
; s
!= NULL
; s
= s
->next
)
4421 if ((s
->flags
& SEC_LOAD
) != 0
4422 && elf_section_type (s
) == SHT_NOTE
)
4424 unsigned int alignment_power
;
4425 /* We need a PT_NOTE segment. */
4427 /* Try to create just one PT_NOTE segment for all adjacent
4428 loadable SHT_NOTE sections. gABI requires that within a
4429 PT_NOTE segment (and also inside of each SHT_NOTE section)
4430 each note should have the same alignment. So we check
4431 whether the sections are correctly aligned. */
4432 alignment_power
= s
->alignment_power
;
4433 while (s
->next
!= NULL
4434 && s
->next
->alignment_power
== alignment_power
4435 && (s
->next
->flags
& SEC_LOAD
) != 0
4436 && elf_section_type (s
->next
) == SHT_NOTE
)
4441 for (s
= abfd
->sections
; s
!= NULL
; s
= s
->next
)
4443 if (s
->flags
& SEC_THREAD_LOCAL
)
4445 /* We need a PT_TLS segment. */
4451 bed
= get_elf_backend_data (abfd
);
4453 if ((abfd
->flags
& D_PAGED
) != 0
4454 && (elf_tdata (abfd
)->has_gnu_osabi
& elf_gnu_osabi_mbind
) != 0)
4456 /* Add a PT_GNU_MBIND segment for each mbind section. */
4457 bfd_vma commonpagesize
;
4458 unsigned int page_align_power
;
4461 commonpagesize
= info
->commonpagesize
;
4463 commonpagesize
= bed
->commonpagesize
;
4464 page_align_power
= bfd_log2 (commonpagesize
);
4465 for (s
= abfd
->sections
; s
!= NULL
; s
= s
->next
)
4466 if (elf_section_flags (s
) & SHF_GNU_MBIND
)
4468 if (elf_section_data (s
)->this_hdr
.sh_info
> PT_GNU_MBIND_NUM
)
4471 /* xgettext:c-format */
4472 (_("%pB: GNU_MBIND section `%pA' has invalid "
4473 "sh_info field: %d"),
4474 abfd
, s
, elf_section_data (s
)->this_hdr
.sh_info
);
4477 /* Align mbind section to page size. */
4478 if (s
->alignment_power
< page_align_power
)
4479 s
->alignment_power
= page_align_power
;
4484 /* Let the backend count up any program headers it might need. */
4485 if (bed
->elf_backend_additional_program_headers
)
4489 a
= (*bed
->elf_backend_additional_program_headers
) (abfd
, info
);
4495 return segs
* bed
->s
->sizeof_phdr
;
4498 /* Find the segment that contains the output_section of section. */
4501 _bfd_elf_find_segment_containing_section (bfd
* abfd
, asection
* section
)
4503 struct elf_segment_map
*m
;
4504 Elf_Internal_Phdr
*p
;
4506 for (m
= elf_seg_map (abfd
), p
= elf_tdata (abfd
)->phdr
;
4512 for (i
= m
->count
- 1; i
>= 0; i
--)
4513 if (m
->sections
[i
] == section
)
4520 /* Create a mapping from a set of sections to a program segment. */
4522 static struct elf_segment_map
*
4523 make_mapping (bfd
*abfd
,
4524 asection
**sections
,
4529 struct elf_segment_map
*m
;
4534 amt
= sizeof (struct elf_segment_map
) - sizeof (asection
*);
4535 amt
+= (to
- from
) * sizeof (asection
*);
4536 m
= (struct elf_segment_map
*) bfd_zalloc (abfd
, amt
);
4540 m
->p_type
= PT_LOAD
;
4541 for (i
= from
, hdrpp
= sections
+ from
; i
< to
; i
++, hdrpp
++)
4542 m
->sections
[i
- from
] = *hdrpp
;
4543 m
->count
= to
- from
;
4545 if (from
== 0 && phdr
)
4547 /* Include the headers in the first PT_LOAD segment. */
4548 m
->includes_filehdr
= 1;
4549 m
->includes_phdrs
= 1;
4555 /* Create the PT_DYNAMIC segment, which includes DYNSEC. Returns NULL
4558 struct elf_segment_map
*
4559 _bfd_elf_make_dynamic_segment (bfd
*abfd
, asection
*dynsec
)
4561 struct elf_segment_map
*m
;
4563 m
= (struct elf_segment_map
*) bfd_zalloc (abfd
,
4564 sizeof (struct elf_segment_map
));
4568 m
->p_type
= PT_DYNAMIC
;
4570 m
->sections
[0] = dynsec
;
4575 /* Possibly add or remove segments from the segment map. */
4578 elf_modify_segment_map (bfd
*abfd
,
4579 struct bfd_link_info
*info
,
4580 bool remove_empty_load
)
4582 struct elf_segment_map
**m
;
4583 const struct elf_backend_data
*bed
;
4585 /* The placement algorithm assumes that non allocated sections are
4586 not in PT_LOAD segments. We ensure this here by removing such
4587 sections from the segment map. We also remove excluded
4588 sections. Finally, any PT_LOAD segment without sections is
4590 m
= &elf_seg_map (abfd
);
4593 unsigned int i
, new_count
;
4595 for (new_count
= 0, i
= 0; i
< (*m
)->count
; i
++)
4597 if (((*m
)->sections
[i
]->flags
& SEC_EXCLUDE
) == 0
4598 && (((*m
)->sections
[i
]->flags
& SEC_ALLOC
) != 0
4599 || (*m
)->p_type
!= PT_LOAD
))
4601 (*m
)->sections
[new_count
] = (*m
)->sections
[i
];
4605 (*m
)->count
= new_count
;
4607 if (remove_empty_load
4608 && (*m
)->p_type
== PT_LOAD
4610 && !(*m
)->includes_phdrs
)
4616 bed
= get_elf_backend_data (abfd
);
4617 if (bed
->elf_backend_modify_segment_map
!= NULL
)
4619 if (!(*bed
->elf_backend_modify_segment_map
) (abfd
, info
))
4626 #define IS_TBSS(s) \
4627 ((s->flags & (SEC_THREAD_LOCAL | SEC_LOAD)) == SEC_THREAD_LOCAL)
4629 /* Set up a mapping from BFD sections to program segments. Update
4630 NEED_LAYOUT if the section layout is changed. */
4633 _bfd_elf_map_sections_to_segments (bfd
*abfd
,
4634 struct bfd_link_info
*info
,
4638 struct elf_segment_map
*m
;
4639 asection
**sections
= NULL
;
4640 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
4643 no_user_phdrs
= elf_seg_map (abfd
) == NULL
;
4647 info
->user_phdrs
= !no_user_phdrs
;
4649 /* Size the relative relocations if DT_RELR is enabled. */
4650 if (info
->enable_dt_relr
4651 && need_layout
!= NULL
4652 && bed
->size_relative_relocs
4653 && !bed
->size_relative_relocs (info
, need_layout
))
4654 info
->callbacks
->einfo
4655 (_("%F%P: failed to size relative relocations\n"));
4658 if (no_user_phdrs
&& bfd_count_sections (abfd
) != 0)
4662 struct elf_segment_map
*mfirst
;
4663 struct elf_segment_map
**pm
;
4666 unsigned int hdr_index
;
4667 bfd_vma maxpagesize
;
4669 bool phdr_in_segment
;
4672 unsigned int tls_count
= 0;
4673 asection
*first_tls
= NULL
;
4674 asection
*first_mbind
= NULL
;
4675 asection
*dynsec
, *eh_frame_hdr
;
4677 bfd_vma addr_mask
, wrap_to
= 0; /* Bytes. */
4678 bfd_size_type phdr_size
; /* Octets/bytes. */
4679 unsigned int opb
= bfd_octets_per_byte (abfd
, NULL
);
4681 /* Select the allocated sections, and sort them. */
4683 amt
= bfd_count_sections (abfd
) * sizeof (asection
*);
4684 sections
= (asection
**) bfd_malloc (amt
);
4685 if (sections
== NULL
)
4688 /* Calculate top address, avoiding undefined behaviour of shift
4689 left operator when shift count is equal to size of type
4691 addr_mask
= ((bfd_vma
) 1 << (bfd_arch_bits_per_address (abfd
) - 1)) - 1;
4692 addr_mask
= (addr_mask
<< 1) + 1;
4695 for (s
= abfd
->sections
; s
!= NULL
; s
= s
->next
)
4697 if ((s
->flags
& SEC_ALLOC
) != 0)
4699 /* target_index is unused until bfd_elf_final_link
4700 starts output of section symbols. Use it to make
4702 s
->target_index
= i
;
4705 /* A wrapping section potentially clashes with header. */
4706 if (((s
->lma
+ s
->size
/ opb
) & addr_mask
) < (s
->lma
& addr_mask
))
4707 wrap_to
= (s
->lma
+ s
->size
/ opb
) & addr_mask
;
4710 BFD_ASSERT (i
<= bfd_count_sections (abfd
));
4713 qsort (sections
, (size_t) count
, sizeof (asection
*), elf_sort_sections
);
4715 phdr_size
= elf_program_header_size (abfd
);
4716 if (phdr_size
== (bfd_size_type
) -1)
4717 phdr_size
= get_program_header_size (abfd
, info
);
4718 phdr_size
+= bed
->s
->sizeof_ehdr
;
4719 /* phdr_size is compared to LMA values which are in bytes. */
4722 maxpagesize
= info
->maxpagesize
;
4724 maxpagesize
= bed
->maxpagesize
;
4725 if (maxpagesize
== 0)
4727 phdr_in_segment
= info
!= NULL
&& info
->load_phdrs
;
4729 && (((sections
[0]->lma
& addr_mask
) & (maxpagesize
- 1))
4730 >= (phdr_size
& (maxpagesize
- 1))))
4731 /* For compatibility with old scripts that may not be using
4732 SIZEOF_HEADERS, add headers when it looks like space has
4733 been left for them. */
4734 phdr_in_segment
= true;
4736 /* Build the mapping. */
4740 /* If we have a .interp section, then create a PT_PHDR segment for
4741 the program headers and a PT_INTERP segment for the .interp
4743 s
= bfd_get_section_by_name (abfd
, ".interp");
4744 if (s
!= NULL
&& (s
->flags
& SEC_LOAD
) != 0 && s
->size
!= 0)
4746 amt
= sizeof (struct elf_segment_map
);
4747 m
= (struct elf_segment_map
*) bfd_zalloc (abfd
, amt
);
4751 m
->p_type
= PT_PHDR
;
4753 m
->p_flags_valid
= 1;
4754 m
->includes_phdrs
= 1;
4755 phdr_in_segment
= true;
4759 amt
= sizeof (struct elf_segment_map
);
4760 m
= (struct elf_segment_map
*) bfd_zalloc (abfd
, amt
);
4764 m
->p_type
= PT_INTERP
;
4772 /* Look through the sections. We put sections in the same program
4773 segment when the start of the second section can be placed within
4774 a few bytes of the end of the first section. */
4780 dynsec
= bfd_get_section_by_name (abfd
, ".dynamic");
4782 && (dynsec
->flags
& SEC_LOAD
) == 0)
4785 if ((abfd
->flags
& D_PAGED
) == 0)
4786 phdr_in_segment
= false;
4788 /* Deal with -Ttext or something similar such that the first section
4789 is not adjacent to the program headers. This is an
4790 approximation, since at this point we don't know exactly how many
4791 program headers we will need. */
4792 if (phdr_in_segment
&& count
> 0)
4794 bfd_vma phdr_lma
; /* Bytes. */
4795 bool separate_phdr
= false;
4797 phdr_lma
= (sections
[0]->lma
- phdr_size
) & addr_mask
& -maxpagesize
;
4799 && info
->separate_code
4800 && (sections
[0]->flags
& SEC_CODE
) != 0)
4802 /* If data sections should be separate from code and
4803 thus not executable, and the first section is
4804 executable then put the file and program headers in
4805 their own PT_LOAD. */
4806 separate_phdr
= true;
4807 if ((((phdr_lma
+ phdr_size
- 1) & addr_mask
& -maxpagesize
)
4808 == (sections
[0]->lma
& addr_mask
& -maxpagesize
)))
4810 /* The file and program headers are currently on the
4811 same page as the first section. Put them on the
4812 previous page if we can. */
4813 if (phdr_lma
>= maxpagesize
)
4814 phdr_lma
-= maxpagesize
;
4816 separate_phdr
= false;
4819 if ((sections
[0]->lma
& addr_mask
) < phdr_lma
4820 || (sections
[0]->lma
& addr_mask
) < phdr_size
)
4821 /* If file and program headers would be placed at the end
4822 of memory then it's probably better to omit them. */
4823 phdr_in_segment
= false;
4824 else if (phdr_lma
< wrap_to
)
4825 /* If a section wraps around to where we'll be placing
4826 file and program headers, then the headers will be
4828 phdr_in_segment
= false;
4829 else if (separate_phdr
)
4831 m
= make_mapping (abfd
, sections
, 0, 0, phdr_in_segment
);
4834 m
->p_paddr
= phdr_lma
* opb
;
4836 = (sections
[0]->vma
- phdr_size
) & addr_mask
& -maxpagesize
;
4837 m
->p_paddr_valid
= 1;
4840 phdr_in_segment
= false;
4844 for (i
= 0, hdrpp
= sections
; i
< count
; i
++, hdrpp
++)
4851 /* See if this section and the last one will fit in the same
4854 if (last_hdr
== NULL
)
4856 /* If we don't have a segment yet, then we don't need a new
4857 one (we build the last one after this loop). */
4858 new_segment
= false;
4860 else if (last_hdr
->lma
- last_hdr
->vma
!= hdr
->lma
- hdr
->vma
)
4862 /* If this section has a different relation between the
4863 virtual address and the load address, then we need a new
4867 else if (hdr
->lma
< last_hdr
->lma
+ last_size
4868 || last_hdr
->lma
+ last_size
< last_hdr
->lma
)
4870 /* If this section has a load address that makes it overlap
4871 the previous section, then we need a new segment. */
4874 else if ((abfd
->flags
& D_PAGED
) != 0
4875 && (((last_hdr
->lma
+ last_size
- 1) & -maxpagesize
)
4876 == (hdr
->lma
& -maxpagesize
)))
4878 /* If we are demand paged then we can't map two disk
4879 pages onto the same memory page. */
4880 new_segment
= false;
4882 /* In the next test we have to be careful when last_hdr->lma is close
4883 to the end of the address space. If the aligned address wraps
4884 around to the start of the address space, then there are no more
4885 pages left in memory and it is OK to assume that the current
4886 section can be included in the current segment. */
4887 else if ((BFD_ALIGN (last_hdr
->lma
+ last_size
, maxpagesize
)
4888 + maxpagesize
> last_hdr
->lma
)
4889 && (BFD_ALIGN (last_hdr
->lma
+ last_size
, maxpagesize
)
4890 + maxpagesize
<= hdr
->lma
))
4892 /* If putting this section in this segment would force us to
4893 skip a page in the segment, then we need a new segment. */
4896 else if ((last_hdr
->flags
& (SEC_LOAD
| SEC_THREAD_LOCAL
)) == 0
4897 && (hdr
->flags
& (SEC_LOAD
| SEC_THREAD_LOCAL
)) != 0)
4899 /* We don't want to put a loaded section after a
4900 nonloaded (ie. bss style) section in the same segment
4901 as that will force the non-loaded section to be loaded.
4902 Consider .tbss sections as loaded for this purpose. */
4905 else if ((abfd
->flags
& D_PAGED
) == 0)
4907 /* If the file is not demand paged, which means that we
4908 don't require the sections to be correctly aligned in the
4909 file, then there is no other reason for a new segment. */
4910 new_segment
= false;
4912 else if (info
!= NULL
4913 && info
->separate_code
4914 && executable
!= ((hdr
->flags
& SEC_CODE
) != 0))
4919 && (hdr
->flags
& SEC_READONLY
) == 0)
4921 /* We don't want to put a writable section in a read only
4927 /* Otherwise, we can use the same segment. */
4928 new_segment
= false;
4931 /* Allow interested parties a chance to override our decision. */
4932 if (last_hdr
!= NULL
4934 && info
->callbacks
->override_segment_assignment
!= NULL
)
4936 = info
->callbacks
->override_segment_assignment (info
, abfd
, hdr
,
4942 if ((hdr
->flags
& SEC_READONLY
) == 0)
4944 if ((hdr
->flags
& SEC_CODE
) != 0)
4947 /* .tbss sections effectively have zero size. */
4948 last_size
= (!IS_TBSS (hdr
) ? hdr
->size
: 0) / opb
;
4952 /* We need a new program segment. We must create a new program
4953 header holding all the sections from hdr_index until hdr. */
4955 m
= make_mapping (abfd
, sections
, hdr_index
, i
, phdr_in_segment
);
4962 if ((hdr
->flags
& SEC_READONLY
) == 0)
4967 if ((hdr
->flags
& SEC_CODE
) == 0)
4973 /* .tbss sections effectively have zero size. */
4974 last_size
= (!IS_TBSS (hdr
) ? hdr
->size
: 0) / opb
;
4976 phdr_in_segment
= false;
4979 /* Create a final PT_LOAD program segment, but not if it's just
4981 if (last_hdr
!= NULL
4982 && (i
- hdr_index
!= 1
4983 || !IS_TBSS (last_hdr
)))
4985 m
= make_mapping (abfd
, sections
, hdr_index
, i
, phdr_in_segment
);
4993 /* If there is a .dynamic section, throw in a PT_DYNAMIC segment. */
4996 m
= _bfd_elf_make_dynamic_segment (abfd
, dynsec
);
5003 /* For each batch of consecutive loadable SHT_NOTE sections,
5004 add a PT_NOTE segment. We don't use bfd_get_section_by_name,
5005 because if we link together nonloadable .note sections and
5006 loadable .note sections, we will generate two .note sections
5007 in the output file. */
5008 for (s
= abfd
->sections
; s
!= NULL
; s
= s
->next
)
5010 if ((s
->flags
& SEC_LOAD
) != 0
5011 && elf_section_type (s
) == SHT_NOTE
)
5014 unsigned int alignment_power
= s
->alignment_power
;
5017 for (s2
= s
; s2
->next
!= NULL
; s2
= s2
->next
)
5019 if (s2
->next
->alignment_power
== alignment_power
5020 && (s2
->next
->flags
& SEC_LOAD
) != 0
5021 && elf_section_type (s2
->next
) == SHT_NOTE
5022 && align_power (s2
->lma
+ s2
->size
/ opb
,
5029 amt
= sizeof (struct elf_segment_map
) - sizeof (asection
*);
5030 amt
+= count
* sizeof (asection
*);
5031 m
= (struct elf_segment_map
*) bfd_zalloc (abfd
, amt
);
5035 m
->p_type
= PT_NOTE
;
5039 m
->sections
[m
->count
- count
--] = s
;
5040 BFD_ASSERT ((s
->flags
& SEC_THREAD_LOCAL
) == 0);
5043 m
->sections
[m
->count
- 1] = s
;
5044 BFD_ASSERT ((s
->flags
& SEC_THREAD_LOCAL
) == 0);
5048 if (s
->flags
& SEC_THREAD_LOCAL
)
5054 if (first_mbind
== NULL
5055 && (elf_section_flags (s
) & SHF_GNU_MBIND
) != 0)
5059 /* If there are any SHF_TLS output sections, add PT_TLS segment. */
5062 amt
= sizeof (struct elf_segment_map
) - sizeof (asection
*);
5063 amt
+= tls_count
* sizeof (asection
*);
5064 m
= (struct elf_segment_map
*) bfd_zalloc (abfd
, amt
);
5069 m
->count
= tls_count
;
5070 /* Mandated PF_R. */
5072 m
->p_flags_valid
= 1;
5074 for (i
= 0; i
< tls_count
; ++i
)
5076 if ((s
->flags
& SEC_THREAD_LOCAL
) == 0)
5079 (_("%pB: TLS sections are not adjacent:"), abfd
);
5082 while (i
< tls_count
)
5084 if ((s
->flags
& SEC_THREAD_LOCAL
) != 0)
5086 _bfd_error_handler (_(" TLS: %pA"), s
);
5090 _bfd_error_handler (_(" non-TLS: %pA"), s
);
5093 bfd_set_error (bfd_error_bad_value
);
5105 && (abfd
->flags
& D_PAGED
) != 0
5106 && (elf_tdata (abfd
)->has_gnu_osabi
& elf_gnu_osabi_mbind
) != 0)
5107 for (s
= first_mbind
; s
!= NULL
; s
= s
->next
)
5108 if ((elf_section_flags (s
) & SHF_GNU_MBIND
) != 0
5109 && elf_section_data (s
)->this_hdr
.sh_info
<= PT_GNU_MBIND_NUM
)
5111 /* Mandated PF_R. */
5112 unsigned long p_flags
= PF_R
;
5113 if ((s
->flags
& SEC_READONLY
) == 0)
5115 if ((s
->flags
& SEC_CODE
) != 0)
5118 amt
= sizeof (struct elf_segment_map
) + sizeof (asection
*);
5119 m
= bfd_zalloc (abfd
, amt
);
5123 m
->p_type
= (PT_GNU_MBIND_LO
5124 + elf_section_data (s
)->this_hdr
.sh_info
);
5126 m
->p_flags_valid
= 1;
5128 m
->p_flags
= p_flags
;
5134 s
= bfd_get_section_by_name (abfd
,
5135 NOTE_GNU_PROPERTY_SECTION_NAME
);
5136 if (s
!= NULL
&& s
->size
!= 0)
5138 amt
= sizeof (struct elf_segment_map
) + sizeof (asection
*);
5139 m
= bfd_zalloc (abfd
, amt
);
5143 m
->p_type
= PT_GNU_PROPERTY
;
5145 m
->p_flags_valid
= 1;
5152 /* If there is a .eh_frame_hdr section, throw in a PT_GNU_EH_FRAME
5154 eh_frame_hdr
= elf_eh_frame_hdr (info
);
5155 if (eh_frame_hdr
!= NULL
5156 && (eh_frame_hdr
->output_section
->flags
& SEC_LOAD
) != 0)
5158 amt
= sizeof (struct elf_segment_map
);
5159 m
= (struct elf_segment_map
*) bfd_zalloc (abfd
, amt
);
5163 m
->p_type
= PT_GNU_EH_FRAME
;
5165 m
->sections
[0] = eh_frame_hdr
->output_section
;
5171 if (elf_stack_flags (abfd
))
5173 amt
= sizeof (struct elf_segment_map
);
5174 m
= (struct elf_segment_map
*) bfd_zalloc (abfd
, amt
);
5178 m
->p_type
= PT_GNU_STACK
;
5179 m
->p_flags
= elf_stack_flags (abfd
);
5180 m
->p_align
= bed
->stack_align
;
5181 m
->p_flags_valid
= 1;
5182 m
->p_align_valid
= m
->p_align
!= 0;
5183 if (info
->stacksize
> 0)
5185 m
->p_size
= info
->stacksize
;
5186 m
->p_size_valid
= 1;
5193 if (info
!= NULL
&& info
->relro
)
5195 for (m
= mfirst
; m
!= NULL
; m
= m
->next
)
5197 if (m
->p_type
== PT_LOAD
5199 && m
->sections
[0]->vma
>= info
->relro_start
5200 && m
->sections
[0]->vma
< info
->relro_end
)
5203 while (--i
!= (unsigned) -1)
5205 if (m
->sections
[i
]->size
> 0
5206 && (m
->sections
[i
]->flags
& (SEC_LOAD
| SEC_HAS_CONTENTS
))
5207 == (SEC_LOAD
| SEC_HAS_CONTENTS
))
5211 if (i
!= (unsigned) -1)
5216 /* Make a PT_GNU_RELRO segment only when it isn't empty. */
5219 amt
= sizeof (struct elf_segment_map
);
5220 m
= (struct elf_segment_map
*) bfd_zalloc (abfd
, amt
);
5224 m
->p_type
= PT_GNU_RELRO
;
5231 elf_seg_map (abfd
) = mfirst
;
5234 if (!elf_modify_segment_map (abfd
, info
, no_user_phdrs
))
5237 for (count
= 0, m
= elf_seg_map (abfd
); m
!= NULL
; m
= m
->next
)
5239 elf_program_header_size (abfd
) = count
* bed
->s
->sizeof_phdr
;
5248 /* Sort sections by address. */
5251 elf_sort_sections (const void *arg1
, const void *arg2
)
5253 const asection
*sec1
= *(const asection
**) arg1
;
5254 const asection
*sec2
= *(const asection
**) arg2
;
5255 bfd_size_type size1
, size2
;
5257 /* Sort by LMA first, since this is the address used to
5258 place the section into a segment. */
5259 if (sec1
->lma
< sec2
->lma
)
5261 else if (sec1
->lma
> sec2
->lma
)
5264 /* Then sort by VMA. Normally the LMA and the VMA will be
5265 the same, and this will do nothing. */
5266 if (sec1
->vma
< sec2
->vma
)
5268 else if (sec1
->vma
> sec2
->vma
)
5271 /* Put !SEC_LOAD sections after SEC_LOAD ones. */
5273 #define TOEND(x) (((x)->flags & (SEC_LOAD | SEC_THREAD_LOCAL)) == 0 \
5281 else if (TOEND (sec2
))
5286 /* Sort by size, to put zero sized sections
5287 before others at the same address. */
5289 size1
= (sec1
->flags
& SEC_LOAD
) ? sec1
->size
: 0;
5290 size2
= (sec2
->flags
& SEC_LOAD
) ? sec2
->size
: 0;
5297 return sec1
->target_index
- sec2
->target_index
;
5300 /* This qsort comparison functions sorts PT_LOAD segments first and
5301 by p_paddr, for assign_file_positions_for_load_sections. */
5304 elf_sort_segments (const void *arg1
, const void *arg2
)
5306 const struct elf_segment_map
*m1
= *(const struct elf_segment_map
**) arg1
;
5307 const struct elf_segment_map
*m2
= *(const struct elf_segment_map
**) arg2
;
5309 if (m1
->p_type
!= m2
->p_type
)
5311 if (m1
->p_type
== PT_NULL
)
5313 if (m2
->p_type
== PT_NULL
)
5315 return m1
->p_type
< m2
->p_type
? -1 : 1;
5317 if (m1
->includes_filehdr
!= m2
->includes_filehdr
)
5318 return m1
->includes_filehdr
? -1 : 1;
5319 if (m1
->no_sort_lma
!= m2
->no_sort_lma
)
5320 return m1
->no_sort_lma
? -1 : 1;
5321 if (m1
->p_type
== PT_LOAD
&& !m1
->no_sort_lma
)
5323 bfd_vma lma1
, lma2
; /* Octets. */
5325 if (m1
->p_paddr_valid
)
5327 else if (m1
->count
!= 0)
5329 unsigned int opb
= bfd_octets_per_byte (m1
->sections
[0]->owner
,
5331 lma1
= (m1
->sections
[0]->lma
+ m1
->p_vaddr_offset
) * opb
;
5334 if (m2
->p_paddr_valid
)
5336 else if (m2
->count
!= 0)
5338 unsigned int opb
= bfd_octets_per_byte (m2
->sections
[0]->owner
,
5340 lma2
= (m2
->sections
[0]->lma
+ m2
->p_vaddr_offset
) * opb
;
5343 return lma1
< lma2
? -1 : 1;
5345 if (m1
->idx
!= m2
->idx
)
5346 return m1
->idx
< m2
->idx
? -1 : 1;
5350 /* Ian Lance Taylor writes:
5352 We shouldn't be using % with a negative signed number. That's just
5353 not good. We have to make sure either that the number is not
5354 negative, or that the number has an unsigned type. When the types
5355 are all the same size they wind up as unsigned. When file_ptr is a
5356 larger signed type, the arithmetic winds up as signed long long,
5359 What we're trying to say here is something like ``increase OFF by
5360 the least amount that will cause it to be equal to the VMA modulo
5362 /* In other words, something like:
5364 vma_offset = m->sections[0]->vma % bed->maxpagesize;
5365 off_offset = off % bed->maxpagesize;
5366 if (vma_offset < off_offset)
5367 adjustment = vma_offset + bed->maxpagesize - off_offset;
5369 adjustment = vma_offset - off_offset;
5371 which can be collapsed into the expression below. */
5374 vma_page_aligned_bias (bfd_vma vma
, ufile_ptr off
, bfd_vma maxpagesize
)
5376 /* PR binutils/16199: Handle an alignment of zero. */
5377 if (maxpagesize
== 0)
5379 return ((vma
- off
) % maxpagesize
);
5383 print_segment_map (const struct elf_segment_map
*m
)
5386 const char *pt
= get_segment_type (m
->p_type
);
5391 if (m
->p_type
>= PT_LOPROC
&& m
->p_type
<= PT_HIPROC
)
5392 sprintf (buf
, "LOPROC+%7.7x",
5393 (unsigned int) (m
->p_type
- PT_LOPROC
));
5394 else if (m
->p_type
>= PT_LOOS
&& m
->p_type
<= PT_HIOS
)
5395 sprintf (buf
, "LOOS+%7.7x",
5396 (unsigned int) (m
->p_type
- PT_LOOS
));
5398 snprintf (buf
, sizeof (buf
), "%8.8x",
5399 (unsigned int) m
->p_type
);
5403 fprintf (stderr
, "%s:", pt
);
5404 for (j
= 0; j
< m
->count
; j
++)
5405 fprintf (stderr
, " %s", m
->sections
[j
]->name
);
5411 write_zeros (bfd
*abfd
, file_ptr pos
, bfd_size_type len
)
5416 if (bfd_seek (abfd
, pos
, SEEK_SET
) != 0)
5418 buf
= bfd_zmalloc (len
);
5421 ret
= bfd_bwrite (buf
, len
, abfd
) == len
;
5426 /* Assign file positions to the sections based on the mapping from
5427 sections to segments. This function also sets up some fields in
5431 assign_file_positions_for_load_sections (bfd
*abfd
,
5432 struct bfd_link_info
*link_info
)
5434 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
5435 struct elf_segment_map
*m
;
5436 struct elf_segment_map
*phdr_load_seg
;
5437 Elf_Internal_Phdr
*phdrs
;
5438 Elf_Internal_Phdr
*p
;
5439 file_ptr off
; /* Octets. */
5440 bfd_size_type maxpagesize
;
5441 bfd_size_type p_align
;
5442 bool p_align_p
= false;
5443 unsigned int alloc
, actual
;
5445 struct elf_segment_map
**sorted_seg_map
;
5446 unsigned int opb
= bfd_octets_per_byte (abfd
, NULL
);
5448 if (link_info
== NULL
5449 && !_bfd_elf_map_sections_to_segments (abfd
, link_info
, NULL
))
5453 for (m
= elf_seg_map (abfd
); m
!= NULL
; m
= m
->next
)
5458 elf_elfheader (abfd
)->e_phoff
= bed
->s
->sizeof_ehdr
;
5459 elf_elfheader (abfd
)->e_phentsize
= bed
->s
->sizeof_phdr
;
5463 /* PR binutils/12467. */
5464 elf_elfheader (abfd
)->e_phoff
= 0;
5465 elf_elfheader (abfd
)->e_phentsize
= 0;
5468 elf_elfheader (abfd
)->e_phnum
= alloc
;
5470 if (elf_program_header_size (abfd
) == (bfd_size_type
) -1)
5473 elf_program_header_size (abfd
) = alloc
* bed
->s
->sizeof_phdr
;
5477 actual
= elf_program_header_size (abfd
) / bed
->s
->sizeof_phdr
;
5478 BFD_ASSERT (elf_program_header_size (abfd
)
5479 == actual
* bed
->s
->sizeof_phdr
);
5480 BFD_ASSERT (actual
>= alloc
);
5485 elf_next_file_pos (abfd
) = bed
->s
->sizeof_ehdr
;
5489 /* We're writing the size in elf_program_header_size (abfd),
5490 see assign_file_positions_except_relocs, so make sure we have
5491 that amount allocated, with trailing space cleared.
5492 The variable alloc contains the computed need, while
5493 elf_program_header_size (abfd) contains the size used for the
5495 See ld/emultempl/elf-generic.em:gld${EMULATION_NAME}_map_segments
5496 where the layout is forced to according to a larger size in the
5497 last iterations for the testcase ld-elf/header. */
5498 phdrs
= bfd_zalloc (abfd
, (actual
* sizeof (*phdrs
)
5499 + alloc
* sizeof (*sorted_seg_map
)));
5500 sorted_seg_map
= (struct elf_segment_map
**) (phdrs
+ actual
);
5501 elf_tdata (abfd
)->phdr
= phdrs
;
5505 for (m
= elf_seg_map (abfd
), j
= 0; m
!= NULL
; m
= m
->next
, j
++)
5507 sorted_seg_map
[j
] = m
;
5508 /* If elf_segment_map is not from map_sections_to_segments, the
5509 sections may not be correctly ordered. NOTE: sorting should
5510 not be done to the PT_NOTE section of a corefile, which may
5511 contain several pseudo-sections artificially created by bfd.
5512 Sorting these pseudo-sections breaks things badly. */
5514 && !(elf_elfheader (abfd
)->e_type
== ET_CORE
5515 && m
->p_type
== PT_NOTE
))
5517 for (i
= 0; i
< m
->count
; i
++)
5518 m
->sections
[i
]->target_index
= i
;
5519 qsort (m
->sections
, (size_t) m
->count
, sizeof (asection
*),
5524 qsort (sorted_seg_map
, alloc
, sizeof (*sorted_seg_map
),
5527 p_align
= bed
->p_align
;
5529 if ((abfd
->flags
& D_PAGED
) != 0)
5531 if (link_info
!= NULL
)
5532 maxpagesize
= link_info
->maxpagesize
;
5534 maxpagesize
= bed
->maxpagesize
;
5537 /* Sections must map to file offsets past the ELF file header. */
5538 off
= bed
->s
->sizeof_ehdr
;
5539 /* And if one of the PT_LOAD headers doesn't include the program
5540 headers then we'll be mapping program headers in the usual
5541 position after the ELF file header. */
5542 phdr_load_seg
= NULL
;
5543 for (j
= 0; j
< alloc
; j
++)
5545 m
= sorted_seg_map
[j
];
5546 if (m
->p_type
!= PT_LOAD
)
5548 if (m
->includes_phdrs
)
5554 if (phdr_load_seg
== NULL
)
5555 off
+= actual
* bed
->s
->sizeof_phdr
;
5557 for (j
= 0; j
< alloc
; j
++)
5560 bfd_vma off_adjust
; /* Octets. */
5563 /* An ELF segment (described by Elf_Internal_Phdr) may contain a
5564 number of sections with contents contributing to both p_filesz
5565 and p_memsz, followed by a number of sections with no contents
5566 that just contribute to p_memsz. In this loop, OFF tracks next
5567 available file offset for PT_LOAD and PT_NOTE segments. */
5568 m
= sorted_seg_map
[j
];
5570 p
->p_type
= m
->p_type
;
5571 p
->p_flags
= m
->p_flags
;
5574 p
->p_vaddr
= m
->p_vaddr_offset
* opb
;
5576 p
->p_vaddr
= (m
->sections
[0]->vma
+ m
->p_vaddr_offset
) * opb
;
5578 if (m
->p_paddr_valid
)
5579 p
->p_paddr
= m
->p_paddr
;
5580 else if (m
->count
== 0)
5583 p
->p_paddr
= (m
->sections
[0]->lma
+ m
->p_vaddr_offset
) * opb
;
5585 if (p
->p_type
== PT_LOAD
5586 && (abfd
->flags
& D_PAGED
) != 0)
5588 /* p_align in demand paged PT_LOAD segments effectively stores
5589 the maximum page size. When copying an executable with
5590 objcopy, we set m->p_align from the input file. Use this
5591 value for maxpagesize rather than bed->maxpagesize, which
5592 may be different. Note that we use maxpagesize for PT_TLS
5593 segment alignment later in this function, so we are relying
5594 on at least one PT_LOAD segment appearing before a PT_TLS
5596 if (m
->p_align_valid
)
5597 maxpagesize
= m
->p_align
;
5598 else if (p_align
!= 0
5599 && (link_info
== NULL
5600 || !link_info
->maxpagesize_is_set
))
5601 /* Set p_align to the default p_align value while laying
5602 out segments aligning to the maximum page size or the
5603 largest section alignment. The run-time loader can
5604 align segments to the default p_align value or the
5605 maximum page size, depending on system page size. */
5608 p
->p_align
= maxpagesize
;
5610 else if (m
->p_align_valid
)
5611 p
->p_align
= m
->p_align
;
5612 else if (m
->count
== 0)
5613 p
->p_align
= 1 << bed
->s
->log_file_align
;
5615 if (m
== phdr_load_seg
)
5617 if (!m
->includes_filehdr
)
5619 off
+= actual
* bed
->s
->sizeof_phdr
;
5622 no_contents
= false;
5624 if (p
->p_type
== PT_LOAD
5627 bfd_size_type align
; /* Bytes. */
5628 unsigned int align_power
= 0;
5630 if (m
->p_align_valid
)
5634 for (i
= 0, secpp
= m
->sections
; i
< m
->count
; i
++, secpp
++)
5636 unsigned int secalign
;
5638 secalign
= bfd_section_alignment (*secpp
);
5639 if (secalign
> align_power
)
5640 align_power
= secalign
;
5642 align
= (bfd_size_type
) 1 << align_power
;
5643 if (align
< maxpagesize
)
5645 /* If a section requires alignment higher than the
5646 default p_align value, don't set p_align to the
5647 default p_align value. */
5648 if (align
> p_align
)
5650 align
= maxpagesize
;
5654 /* If a section requires alignment higher than the
5655 maximum page size, set p_align to the section
5662 for (i
= 0; i
< m
->count
; i
++)
5663 if ((m
->sections
[i
]->flags
& (SEC_LOAD
| SEC_HAS_CONTENTS
)) == 0)
5664 /* If we aren't making room for this section, then
5665 it must be SHT_NOBITS regardless of what we've
5666 set via struct bfd_elf_special_section. */
5667 elf_section_type (m
->sections
[i
]) = SHT_NOBITS
;
5669 /* Find out whether this segment contains any loadable
5672 for (i
= 0; i
< m
->count
; i
++)
5673 if (elf_section_type (m
->sections
[i
]) != SHT_NOBITS
)
5675 no_contents
= false;
5679 off_adjust
= vma_page_aligned_bias (p
->p_vaddr
, off
, align
* opb
);
5681 /* Broken hardware and/or kernel require that files do not
5682 map the same page with different permissions on some hppa
5685 && (abfd
->flags
& D_PAGED
) != 0
5686 && bed
->no_page_alias
5687 && (off
& (maxpagesize
- 1)) != 0
5688 && ((off
& -maxpagesize
)
5689 == ((off
+ off_adjust
) & -maxpagesize
)))
5690 off_adjust
+= maxpagesize
;
5694 /* We shouldn't need to align the segment on disk since
5695 the segment doesn't need file space, but the gABI
5696 arguably requires the alignment and glibc ld.so
5697 checks it. So to comply with the alignment
5698 requirement but not waste file space, we adjust
5699 p_offset for just this segment. (OFF_ADJUST is
5700 subtracted from OFF later.) This may put p_offset
5701 past the end of file, but that shouldn't matter. */
5706 /* Make sure the .dynamic section is the first section in the
5707 PT_DYNAMIC segment. */
5708 else if (p
->p_type
== PT_DYNAMIC
5710 && strcmp (m
->sections
[0]->name
, ".dynamic") != 0)
5713 (_("%pB: The first section in the PT_DYNAMIC segment"
5714 " is not the .dynamic section"),
5716 bfd_set_error (bfd_error_bad_value
);
5719 /* Set the note section type to SHT_NOTE. */
5720 else if (p
->p_type
== PT_NOTE
)
5721 for (i
= 0; i
< m
->count
; i
++)
5722 elf_section_type (m
->sections
[i
]) = SHT_NOTE
;
5724 if (m
->includes_filehdr
)
5726 if (!m
->p_flags_valid
)
5728 p
->p_filesz
= bed
->s
->sizeof_ehdr
;
5729 p
->p_memsz
= bed
->s
->sizeof_ehdr
;
5730 if (p
->p_type
== PT_LOAD
)
5734 if (p
->p_vaddr
< (bfd_vma
) off
5735 || (!m
->p_paddr_valid
5736 && p
->p_paddr
< (bfd_vma
) off
))
5739 (_("%pB: not enough room for program headers,"
5740 " try linking with -N"),
5742 bfd_set_error (bfd_error_bad_value
);
5746 if (!m
->p_paddr_valid
)
5750 else if (sorted_seg_map
[0]->includes_filehdr
)
5752 Elf_Internal_Phdr
*filehdr
= phdrs
+ sorted_seg_map
[0]->idx
;
5753 p
->p_vaddr
= filehdr
->p_vaddr
;
5754 if (!m
->p_paddr_valid
)
5755 p
->p_paddr
= filehdr
->p_paddr
;
5759 if (m
->includes_phdrs
)
5761 if (!m
->p_flags_valid
)
5763 p
->p_filesz
+= actual
* bed
->s
->sizeof_phdr
;
5764 p
->p_memsz
+= actual
* bed
->s
->sizeof_phdr
;
5765 if (!m
->includes_filehdr
)
5767 if (p
->p_type
== PT_LOAD
)
5769 elf_elfheader (abfd
)->e_phoff
= p
->p_offset
;
5772 p
->p_vaddr
-= off
- p
->p_offset
;
5773 if (!m
->p_paddr_valid
)
5774 p
->p_paddr
-= off
- p
->p_offset
;
5777 else if (phdr_load_seg
!= NULL
)
5779 Elf_Internal_Phdr
*phdr
= phdrs
+ phdr_load_seg
->idx
;
5780 bfd_vma phdr_off
= 0; /* Octets. */
5781 if (phdr_load_seg
->includes_filehdr
)
5782 phdr_off
= bed
->s
->sizeof_ehdr
;
5783 p
->p_vaddr
= phdr
->p_vaddr
+ phdr_off
;
5784 if (!m
->p_paddr_valid
)
5785 p
->p_paddr
= phdr
->p_paddr
+ phdr_off
;
5786 p
->p_offset
= phdr
->p_offset
+ phdr_off
;
5789 p
->p_offset
= bed
->s
->sizeof_ehdr
;
5793 if (p
->p_type
== PT_LOAD
5794 || (p
->p_type
== PT_NOTE
&& bfd_get_format (abfd
) == bfd_core
))
5796 if (!m
->includes_filehdr
&& !m
->includes_phdrs
)
5801 /* Put meaningless p_offset for PT_LOAD segments
5802 without file contents somewhere within the first
5803 page, in an attempt to not point past EOF. */
5804 bfd_size_type align
= maxpagesize
;
5805 if (align
< p
->p_align
)
5809 p
->p_offset
= off
% align
;
5814 file_ptr adjust
; /* Octets. */
5816 adjust
= off
- (p
->p_offset
+ p
->p_filesz
);
5818 p
->p_filesz
+= adjust
;
5819 p
->p_memsz
+= adjust
;
5823 /* Set up p_filesz, p_memsz, p_align and p_flags from the section
5824 maps. Set filepos for sections in PT_LOAD segments, and in
5825 core files, for sections in PT_NOTE segments.
5826 assign_file_positions_for_non_load_sections will set filepos
5827 for other sections and update p_filesz for other segments. */
5828 for (i
= 0, secpp
= m
->sections
; i
< m
->count
; i
++, secpp
++)
5831 bfd_size_type align
;
5832 Elf_Internal_Shdr
*this_hdr
;
5835 this_hdr
= &elf_section_data (sec
)->this_hdr
;
5836 align
= (bfd_size_type
) 1 << bfd_section_alignment (sec
);
5838 if ((p
->p_type
== PT_LOAD
5839 || p
->p_type
== PT_TLS
)
5840 && (this_hdr
->sh_type
!= SHT_NOBITS
5841 || ((this_hdr
->sh_flags
& SHF_ALLOC
) != 0
5842 && ((this_hdr
->sh_flags
& SHF_TLS
) == 0
5843 || p
->p_type
== PT_TLS
))))
5845 bfd_vma p_start
= p
->p_paddr
; /* Octets. */
5846 bfd_vma p_end
= p_start
+ p
->p_memsz
; /* Octets. */
5847 bfd_vma s_start
= sec
->lma
* opb
; /* Octets. */
5848 bfd_vma adjust
= s_start
- p_end
; /* Octets. */
5852 || p_end
< p_start
))
5855 /* xgettext:c-format */
5856 (_("%pB: section %pA lma %#" PRIx64
" adjusted to %#" PRIx64
),
5857 abfd
, sec
, (uint64_t) s_start
/ opb
,
5858 (uint64_t) p_end
/ opb
);
5860 sec
->lma
= p_end
/ opb
;
5862 p
->p_memsz
+= adjust
;
5864 if (p
->p_type
== PT_LOAD
)
5866 if (this_hdr
->sh_type
!= SHT_NOBITS
)
5869 if (p
->p_filesz
+ adjust
< p
->p_memsz
)
5871 /* We have a PROGBITS section following NOBITS ones.
5872 Allocate file space for the NOBITS section(s) and
5874 adjust
= p
->p_memsz
- p
->p_filesz
;
5875 if (!write_zeros (abfd
, off
, adjust
))
5879 /* We only adjust sh_offset in SHT_NOBITS sections
5880 as would seem proper for their address when the
5881 section is first in the segment. sh_offset
5882 doesn't really have any significance for
5883 SHT_NOBITS anyway, apart from a notional position
5884 relative to other sections. Historically we
5885 didn't bother with adjusting sh_offset and some
5886 programs depend on it not being adjusted. See
5887 pr12921 and pr25662. */
5888 if (this_hdr
->sh_type
!= SHT_NOBITS
|| i
== 0)
5891 if (this_hdr
->sh_type
== SHT_NOBITS
)
5892 off_adjust
+= adjust
;
5895 if (this_hdr
->sh_type
!= SHT_NOBITS
)
5896 p
->p_filesz
+= adjust
;
5899 if (p
->p_type
== PT_NOTE
&& bfd_get_format (abfd
) == bfd_core
)
5901 /* The section at i == 0 is the one that actually contains
5905 this_hdr
->sh_offset
= sec
->filepos
= off
;
5906 off
+= this_hdr
->sh_size
;
5907 p
->p_filesz
= this_hdr
->sh_size
;
5913 /* The rest are fake sections that shouldn't be written. */
5922 if (p
->p_type
== PT_LOAD
)
5924 this_hdr
->sh_offset
= sec
->filepos
= off
;
5925 if (this_hdr
->sh_type
!= SHT_NOBITS
)
5926 off
+= this_hdr
->sh_size
;
5928 else if (this_hdr
->sh_type
== SHT_NOBITS
5929 && (this_hdr
->sh_flags
& SHF_TLS
) != 0
5930 && this_hdr
->sh_offset
== 0)
5932 /* This is a .tbss section that didn't get a PT_LOAD.
5933 (See _bfd_elf_map_sections_to_segments "Create a
5934 final PT_LOAD".) Set sh_offset to the value it
5935 would have if we had created a zero p_filesz and
5936 p_memsz PT_LOAD header for the section. This
5937 also makes the PT_TLS header have the same
5939 bfd_vma adjust
= vma_page_aligned_bias (this_hdr
->sh_addr
,
5941 this_hdr
->sh_offset
= sec
->filepos
= off
+ adjust
;
5944 if (this_hdr
->sh_type
!= SHT_NOBITS
)
5946 p
->p_filesz
+= this_hdr
->sh_size
;
5947 /* A load section without SHF_ALLOC is something like
5948 a note section in a PT_NOTE segment. These take
5949 file space but are not loaded into memory. */
5950 if ((this_hdr
->sh_flags
& SHF_ALLOC
) != 0)
5951 p
->p_memsz
+= this_hdr
->sh_size
;
5953 else if ((this_hdr
->sh_flags
& SHF_ALLOC
) != 0)
5955 if (p
->p_type
== PT_TLS
)
5956 p
->p_memsz
+= this_hdr
->sh_size
;
5958 /* .tbss is special. It doesn't contribute to p_memsz of
5960 else if ((this_hdr
->sh_flags
& SHF_TLS
) == 0)
5961 p
->p_memsz
+= this_hdr
->sh_size
;
5964 if (align
> p
->p_align
5965 && !m
->p_align_valid
5966 && (p
->p_type
!= PT_LOAD
5967 || (abfd
->flags
& D_PAGED
) == 0))
5971 if (!m
->p_flags_valid
)
5974 if ((this_hdr
->sh_flags
& SHF_EXECINSTR
) != 0)
5976 if ((this_hdr
->sh_flags
& SHF_WRITE
) != 0)
5983 /* PR ld/20815 - Check that the program header segment, if
5984 present, will be loaded into memory. */
5985 if (p
->p_type
== PT_PHDR
5986 && phdr_load_seg
== NULL
5987 && !(bed
->elf_backend_allow_non_load_phdr
!= NULL
5988 && bed
->elf_backend_allow_non_load_phdr (abfd
, phdrs
, alloc
)))
5990 /* The fix for this error is usually to edit the linker script being
5991 used and set up the program headers manually. Either that or
5992 leave room for the headers at the start of the SECTIONS. */
5993 _bfd_error_handler (_("%pB: error: PHDR segment not covered"
5994 " by LOAD segment"),
5996 if (link_info
== NULL
)
5998 /* Arrange for the linker to exit with an error, deleting
5999 the output file unless --noinhibit-exec is given. */
6000 link_info
->callbacks
->info ("%X");
6003 /* Check that all sections are in a PT_LOAD segment.
6004 Don't check funky gdb generated core files. */
6005 if (p
->p_type
== PT_LOAD
&& bfd_get_format (abfd
) != bfd_core
)
6007 bool check_vma
= true;
6009 for (i
= 1; i
< m
->count
; i
++)
6010 if (m
->sections
[i
]->vma
== m
->sections
[i
- 1]->vma
6011 && ELF_SECTION_SIZE (&(elf_section_data (m
->sections
[i
])
6012 ->this_hdr
), p
) != 0
6013 && ELF_SECTION_SIZE (&(elf_section_data (m
->sections
[i
- 1])
6014 ->this_hdr
), p
) != 0)
6016 /* Looks like we have overlays packed into the segment. */
6021 for (i
= 0; i
< m
->count
; i
++)
6023 Elf_Internal_Shdr
*this_hdr
;
6026 sec
= m
->sections
[i
];
6027 this_hdr
= &(elf_section_data(sec
)->this_hdr
);
6028 if (!ELF_SECTION_IN_SEGMENT_1 (this_hdr
, p
, check_vma
, 0)
6029 && !ELF_TBSS_SPECIAL (this_hdr
, p
))
6032 /* xgettext:c-format */
6033 (_("%pB: section `%pA' can't be allocated in segment %d"),
6035 print_segment_map (m
);
6040 p
->p_align
= p_align
;
6044 elf_next_file_pos (abfd
) = off
;
6046 if (link_info
!= NULL
6047 && phdr_load_seg
!= NULL
6048 && phdr_load_seg
->includes_filehdr
)
6050 /* There is a segment that contains both the file headers and the
6051 program headers, so provide a symbol __ehdr_start pointing there.
6052 A program can use this to examine itself robustly. */
6054 struct elf_link_hash_entry
*hash
6055 = elf_link_hash_lookup (elf_hash_table (link_info
), "__ehdr_start",
6056 false, false, true);
6057 /* If the symbol was referenced and not defined, define it. */
6059 && (hash
->root
.type
== bfd_link_hash_new
6060 || hash
->root
.type
== bfd_link_hash_undefined
6061 || hash
->root
.type
== bfd_link_hash_undefweak
6062 || hash
->root
.type
== bfd_link_hash_common
))
6065 bfd_vma filehdr_vaddr
= phdrs
[phdr_load_seg
->idx
].p_vaddr
/ opb
;
6067 if (phdr_load_seg
->count
!= 0)
6068 /* The segment contains sections, so use the first one. */
6069 s
= phdr_load_seg
->sections
[0];
6071 /* Use the first (i.e. lowest-addressed) section in any segment. */
6072 for (m
= elf_seg_map (abfd
); m
!= NULL
; m
= m
->next
)
6073 if (m
->p_type
== PT_LOAD
&& m
->count
!= 0)
6081 hash
->root
.u
.def
.value
= filehdr_vaddr
- s
->vma
;
6082 hash
->root
.u
.def
.section
= s
;
6086 hash
->root
.u
.def
.value
= filehdr_vaddr
;
6087 hash
->root
.u
.def
.section
= bfd_abs_section_ptr
;
6090 hash
->root
.type
= bfd_link_hash_defined
;
6091 hash
->def_regular
= 1;
6099 /* Determine if a bfd is a debuginfo file. Unfortunately there
6100 is no defined method for detecting such files, so we have to
6101 use heuristics instead. */
6104 is_debuginfo_file (bfd
*abfd
)
6106 if (abfd
== NULL
|| bfd_get_flavour (abfd
) != bfd_target_elf_flavour
)
6109 Elf_Internal_Shdr
**start_headers
= elf_elfsections (abfd
);
6110 Elf_Internal_Shdr
**end_headers
= start_headers
+ elf_numsections (abfd
);
6111 Elf_Internal_Shdr
**headerp
;
6113 for (headerp
= start_headers
; headerp
< end_headers
; headerp
++)
6115 Elf_Internal_Shdr
*header
= * headerp
;
6117 /* Debuginfo files do not have any allocated SHT_PROGBITS sections.
6118 The only allocated sections are SHT_NOBITS or SHT_NOTES. */
6119 if ((header
->sh_flags
& SHF_ALLOC
) == SHF_ALLOC
6120 && header
->sh_type
!= SHT_NOBITS
6121 && header
->sh_type
!= SHT_NOTE
)
6128 /* Assign file positions for the other sections, except for compressed debugging
6129 and other sections assigned in _bfd_elf_assign_file_positions_for_non_load(). */
6132 assign_file_positions_for_non_load_sections (bfd
*abfd
,
6133 struct bfd_link_info
*link_info
)
6135 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
6136 Elf_Internal_Shdr
**i_shdrpp
;
6137 Elf_Internal_Shdr
**hdrpp
, **end_hdrpp
;
6138 Elf_Internal_Phdr
*phdrs
;
6139 Elf_Internal_Phdr
*p
;
6140 struct elf_segment_map
*m
;
6142 unsigned int opb
= bfd_octets_per_byte (abfd
, NULL
);
6143 bfd_vma maxpagesize
;
6145 if (link_info
!= NULL
)
6146 maxpagesize
= link_info
->maxpagesize
;
6148 maxpagesize
= bed
->maxpagesize
;
6149 i_shdrpp
= elf_elfsections (abfd
);
6150 end_hdrpp
= i_shdrpp
+ elf_numsections (abfd
);
6151 off
= elf_next_file_pos (abfd
);
6152 for (hdrpp
= i_shdrpp
+ 1; hdrpp
< end_hdrpp
; hdrpp
++)
6154 Elf_Internal_Shdr
*hdr
;
6158 if (hdr
->bfd_section
!= NULL
6159 && (hdr
->bfd_section
->filepos
!= 0
6160 || (hdr
->sh_type
== SHT_NOBITS
6161 && hdr
->contents
== NULL
)))
6162 BFD_ASSERT (hdr
->sh_offset
== hdr
->bfd_section
->filepos
);
6163 else if ((hdr
->sh_flags
& SHF_ALLOC
) != 0)
6165 if (hdr
->sh_size
!= 0
6166 /* PR 24717 - debuginfo files are known to be not strictly
6167 compliant with the ELF standard. In particular they often
6168 have .note.gnu.property sections that are outside of any
6169 loadable segment. This is not a problem for such files,
6170 so do not warn about them. */
6171 && ! is_debuginfo_file (abfd
))
6173 /* xgettext:c-format */
6174 (_("%pB: warning: allocated section `%s' not in segment"),
6176 (hdr
->bfd_section
== NULL
6178 : hdr
->bfd_section
->name
));
6179 /* We don't need to page align empty sections. */
6180 if ((abfd
->flags
& D_PAGED
) != 0 && hdr
->sh_size
!= 0)
6181 align
= maxpagesize
;
6183 align
= hdr
->sh_addralign
& -hdr
->sh_addralign
;
6184 off
+= vma_page_aligned_bias (hdr
->sh_addr
, off
, align
);
6185 off
= _bfd_elf_assign_file_position_for_section (hdr
, off
,
6188 else if (((hdr
->sh_type
== SHT_REL
|| hdr
->sh_type
== SHT_RELA
)
6189 && hdr
->bfd_section
== NULL
)
6190 /* We don't know the offset of these sections yet: their size has
6191 not been decided. */
6192 || (hdr
->bfd_section
!= NULL
6193 && (hdr
->bfd_section
->flags
& SEC_ELF_COMPRESS
6194 || (bfd_section_is_ctf (hdr
->bfd_section
)
6195 && abfd
->is_linker_output
)))
6196 || hdr
== i_shdrpp
[elf_onesymtab (abfd
)]
6197 || (elf_symtab_shndx_list (abfd
) != NULL
6198 && hdr
== i_shdrpp
[elf_symtab_shndx_list (abfd
)->ndx
])
6199 || hdr
== i_shdrpp
[elf_strtab_sec (abfd
)]
6200 || hdr
== i_shdrpp
[elf_shstrtab_sec (abfd
)])
6201 hdr
->sh_offset
= -1;
6203 off
= _bfd_elf_assign_file_position_for_section (hdr
, off
, true);
6205 elf_next_file_pos (abfd
) = off
;
6207 /* Now that we have set the section file positions, we can set up
6208 the file positions for the non PT_LOAD segments. */
6209 phdrs
= elf_tdata (abfd
)->phdr
;
6210 for (m
= elf_seg_map (abfd
), p
= phdrs
; m
!= NULL
; m
= m
->next
, p
++)
6212 if (p
->p_type
== PT_GNU_RELRO
)
6214 bfd_vma start
, end
; /* Bytes. */
6217 if (link_info
!= NULL
)
6219 /* During linking the range of the RELRO segment is passed
6220 in link_info. Note that there may be padding between
6221 relro_start and the first RELRO section. */
6222 start
= link_info
->relro_start
;
6223 end
= link_info
->relro_end
;
6225 else if (m
->count
!= 0)
6227 if (!m
->p_size_valid
)
6229 start
= m
->sections
[0]->vma
;
6230 end
= start
+ m
->p_size
/ opb
;
6241 struct elf_segment_map
*lm
;
6242 const Elf_Internal_Phdr
*lp
;
6245 /* Find a LOAD segment containing a section in the RELRO
6247 for (lm
= elf_seg_map (abfd
), lp
= phdrs
;
6249 lm
= lm
->next
, lp
++)
6251 if (lp
->p_type
== PT_LOAD
6253 && (lm
->sections
[lm
->count
- 1]->vma
6254 + (!IS_TBSS (lm
->sections
[lm
->count
- 1])
6255 ? lm
->sections
[lm
->count
- 1]->size
/ opb
6257 && lm
->sections
[0]->vma
< end
)
6263 /* Find the section starting the RELRO segment. */
6264 for (i
= 0; i
< lm
->count
; i
++)
6266 asection
*s
= lm
->sections
[i
];
6275 p
->p_vaddr
= lm
->sections
[i
]->vma
* opb
;
6276 p
->p_paddr
= lm
->sections
[i
]->lma
* opb
;
6277 p
->p_offset
= lm
->sections
[i
]->filepos
;
6278 p
->p_memsz
= end
* opb
- p
->p_vaddr
;
6279 p
->p_filesz
= p
->p_memsz
;
6281 /* The RELRO segment typically ends a few bytes
6282 into .got.plt but other layouts are possible.
6283 In cases where the end does not match any
6284 loaded section (for instance is in file
6285 padding), trim p_filesz back to correspond to
6286 the end of loaded section contents. */
6287 if (p
->p_filesz
> lp
->p_vaddr
+ lp
->p_filesz
- p
->p_vaddr
)
6288 p
->p_filesz
= lp
->p_vaddr
+ lp
->p_filesz
- p
->p_vaddr
;
6290 /* Preserve the alignment and flags if they are
6291 valid. The gold linker generates RW/4 for
6292 the PT_GNU_RELRO section. It is better for
6293 objcopy/strip to honor these attributes
6294 otherwise gdb will choke when using separate
6296 if (!m
->p_align_valid
)
6298 if (!m
->p_flags_valid
)
6307 if (link_info
!= NULL
)
6309 (_("%pB: warning: unable to allocate any sections to PT_GNU_RELRO segment"),
6311 memset (p
, 0, sizeof *p
);
6314 else if (p
->p_type
== PT_GNU_STACK
)
6316 if (m
->p_size_valid
)
6317 p
->p_memsz
= m
->p_size
;
6319 else if (m
->count
!= 0)
6323 if (p
->p_type
!= PT_LOAD
6324 && (p
->p_type
!= PT_NOTE
6325 || bfd_get_format (abfd
) != bfd_core
))
6327 /* A user specified segment layout may include a PHDR
6328 segment that overlaps with a LOAD segment... */
6329 if (p
->p_type
== PT_PHDR
)
6335 if (m
->includes_filehdr
|| m
->includes_phdrs
)
6337 /* PR 17512: file: 2195325e. */
6339 (_("%pB: error: non-load segment %d includes file header "
6340 "and/or program header"),
6341 abfd
, (int) (p
- phdrs
));
6346 p
->p_offset
= m
->sections
[0]->filepos
;
6347 for (i
= m
->count
; i
-- != 0;)
6349 asection
*sect
= m
->sections
[i
];
6350 Elf_Internal_Shdr
*hdr
= &elf_section_data (sect
)->this_hdr
;
6351 if (hdr
->sh_type
!= SHT_NOBITS
)
6353 p
->p_filesz
= sect
->filepos
- p
->p_offset
+ hdr
->sh_size
;
6354 /* NB: p_memsz of the loadable PT_NOTE segment
6355 should be the same as p_filesz. */
6356 if (p
->p_type
== PT_NOTE
6357 && (hdr
->sh_flags
& SHF_ALLOC
) != 0)
6358 p
->p_memsz
= p
->p_filesz
;
6369 static elf_section_list
*
6370 find_section_in_list (unsigned int i
, elf_section_list
* list
)
6372 for (;list
!= NULL
; list
= list
->next
)
6378 /* Work out the file positions of all the sections. This is called by
6379 _bfd_elf_compute_section_file_positions. All the section sizes and
6380 VMAs must be known before this is called.
6382 Reloc sections come in two flavours: Those processed specially as
6383 "side-channel" data attached to a section to which they apply, and those that
6384 bfd doesn't process as relocations. The latter sort are stored in a normal
6385 bfd section by bfd_section_from_shdr. We don't consider the former sort
6386 here, unless they form part of the loadable image. Reloc sections not
6387 assigned here (and compressed debugging sections and CTF sections which
6388 nothing else in the file can rely upon) will be handled later by
6389 assign_file_positions_for_relocs.
6391 We also don't set the positions of the .symtab and .strtab here. */
6394 assign_file_positions_except_relocs (bfd
*abfd
,
6395 struct bfd_link_info
*link_info
)
6397 struct elf_obj_tdata
*tdata
= elf_tdata (abfd
);
6398 Elf_Internal_Ehdr
*i_ehdrp
= elf_elfheader (abfd
);
6399 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
6402 if ((abfd
->flags
& (EXEC_P
| DYNAMIC
)) == 0
6403 && bfd_get_format (abfd
) != bfd_core
)
6405 Elf_Internal_Shdr
** const i_shdrpp
= elf_elfsections (abfd
);
6406 unsigned int num_sec
= elf_numsections (abfd
);
6407 Elf_Internal_Shdr
**hdrpp
;
6411 /* Start after the ELF header. */
6412 off
= i_ehdrp
->e_ehsize
;
6414 /* We are not creating an executable, which means that we are
6415 not creating a program header, and that the actual order of
6416 the sections in the file is unimportant. */
6417 for (i
= 1, hdrpp
= i_shdrpp
+ 1; i
< num_sec
; i
++, hdrpp
++)
6419 Elf_Internal_Shdr
*hdr
;
6422 if (((hdr
->sh_type
== SHT_REL
|| hdr
->sh_type
== SHT_RELA
)
6423 && hdr
->bfd_section
== NULL
)
6424 /* Do not assign offsets for these sections yet: we don't know
6426 || (hdr
->bfd_section
!= NULL
6427 && (hdr
->bfd_section
->flags
& SEC_ELF_COMPRESS
6428 || (bfd_section_is_ctf (hdr
->bfd_section
)
6429 && abfd
->is_linker_output
)))
6430 || i
== elf_onesymtab (abfd
)
6431 || (elf_symtab_shndx_list (abfd
) != NULL
6432 && hdr
== i_shdrpp
[elf_symtab_shndx_list (abfd
)->ndx
])
6433 || i
== elf_strtab_sec (abfd
)
6434 || i
== elf_shstrtab_sec (abfd
))
6436 hdr
->sh_offset
= -1;
6439 off
= _bfd_elf_assign_file_position_for_section (hdr
, off
, true);
6442 elf_next_file_pos (abfd
) = off
;
6443 elf_program_header_size (abfd
) = 0;
6447 /* Assign file positions for the loaded sections based on the
6448 assignment of sections to segments. */
6449 if (!assign_file_positions_for_load_sections (abfd
, link_info
))
6452 /* And for non-load sections. */
6453 if (!assign_file_positions_for_non_load_sections (abfd
, link_info
))
6457 if (!(*bed
->elf_backend_modify_headers
) (abfd
, link_info
))
6460 /* Write out the program headers. */
6461 alloc
= i_ehdrp
->e_phnum
;
6464 if (link_info
!= NULL
&& ! link_info
->no_warn_rwx_segments
)
6466 /* Memory resident segments with non-zero size and RWX permissions are a
6467 security risk, so we generate a warning here if we are creating any. */
6470 for (i
= 0; i
< alloc
; i
++)
6472 const Elf_Internal_Phdr
* phdr
= tdata
->phdr
+ i
;
6474 if (phdr
->p_memsz
== 0)
6477 if (phdr
->p_type
== PT_TLS
&& (phdr
->p_flags
& PF_X
))
6478 _bfd_error_handler (_("warning: %pB has a TLS segment with execute permission"),
6480 else if (phdr
->p_type
== PT_LOAD
6481 && (phdr
->p_flags
& (PF_R
| PF_W
| PF_X
)) == (PF_R
| PF_W
| PF_X
))
6482 _bfd_error_handler (_("warning: %pB has a LOAD segment with RWX permissions"),
6487 if (bfd_seek (abfd
, i_ehdrp
->e_phoff
, SEEK_SET
) != 0
6488 || bed
->s
->write_out_phdrs (abfd
, tdata
->phdr
, alloc
) != 0)
6496 _bfd_elf_init_file_header (bfd
*abfd
,
6497 struct bfd_link_info
*info ATTRIBUTE_UNUSED
)
6499 Elf_Internal_Ehdr
*i_ehdrp
; /* Elf file header, internal form. */
6500 struct elf_strtab_hash
*shstrtab
;
6501 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
6503 i_ehdrp
= elf_elfheader (abfd
);
6505 shstrtab
= _bfd_elf_strtab_init ();
6506 if (shstrtab
== NULL
)
6509 elf_shstrtab (abfd
) = shstrtab
;
6511 i_ehdrp
->e_ident
[EI_MAG0
] = ELFMAG0
;
6512 i_ehdrp
->e_ident
[EI_MAG1
] = ELFMAG1
;
6513 i_ehdrp
->e_ident
[EI_MAG2
] = ELFMAG2
;
6514 i_ehdrp
->e_ident
[EI_MAG3
] = ELFMAG3
;
6516 i_ehdrp
->e_ident
[EI_CLASS
] = bed
->s
->elfclass
;
6517 i_ehdrp
->e_ident
[EI_DATA
] =
6518 bfd_big_endian (abfd
) ? ELFDATA2MSB
: ELFDATA2LSB
;
6519 i_ehdrp
->e_ident
[EI_VERSION
] = bed
->s
->ev_current
;
6521 if ((abfd
->flags
& DYNAMIC
) != 0)
6522 i_ehdrp
->e_type
= ET_DYN
;
6523 else if ((abfd
->flags
& EXEC_P
) != 0)
6524 i_ehdrp
->e_type
= ET_EXEC
;
6525 else if (bfd_get_format (abfd
) == bfd_core
)
6526 i_ehdrp
->e_type
= ET_CORE
;
6528 i_ehdrp
->e_type
= ET_REL
;
6530 switch (bfd_get_arch (abfd
))
6532 case bfd_arch_unknown
:
6533 i_ehdrp
->e_machine
= EM_NONE
;
6536 /* There used to be a long list of cases here, each one setting
6537 e_machine to the same EM_* macro #defined as ELF_MACHINE_CODE
6538 in the corresponding bfd definition. To avoid duplication,
6539 the switch was removed. Machines that need special handling
6540 can generally do it in elf_backend_final_write_processing(),
6541 unless they need the information earlier than the final write.
6542 Such need can generally be supplied by replacing the tests for
6543 e_machine with the conditions used to determine it. */
6545 i_ehdrp
->e_machine
= bed
->elf_machine_code
;
6548 i_ehdrp
->e_version
= bed
->s
->ev_current
;
6549 i_ehdrp
->e_ehsize
= bed
->s
->sizeof_ehdr
;
6551 /* No program header, for now. */
6552 i_ehdrp
->e_phoff
= 0;
6553 i_ehdrp
->e_phentsize
= 0;
6554 i_ehdrp
->e_phnum
= 0;
6556 /* Each bfd section is section header entry. */
6557 i_ehdrp
->e_entry
= bfd_get_start_address (abfd
);
6558 i_ehdrp
->e_shentsize
= bed
->s
->sizeof_shdr
;
6560 elf_tdata (abfd
)->symtab_hdr
.sh_name
=
6561 (unsigned int) _bfd_elf_strtab_add (shstrtab
, ".symtab", false);
6562 elf_tdata (abfd
)->strtab_hdr
.sh_name
=
6563 (unsigned int) _bfd_elf_strtab_add (shstrtab
, ".strtab", false);
6564 elf_tdata (abfd
)->shstrtab_hdr
.sh_name
=
6565 (unsigned int) _bfd_elf_strtab_add (shstrtab
, ".shstrtab", false);
6566 if (elf_tdata (abfd
)->symtab_hdr
.sh_name
== (unsigned int) -1
6567 || elf_tdata (abfd
)->strtab_hdr
.sh_name
== (unsigned int) -1
6568 || elf_tdata (abfd
)->shstrtab_hdr
.sh_name
== (unsigned int) -1)
6574 /* Set e_type in ELF header to ET_EXEC for -pie -Ttext-segment=.
6576 FIXME: We used to have code here to sort the PT_LOAD segments into
6577 ascending order, as per the ELF spec. But this breaks some programs,
6578 including the Linux kernel. But really either the spec should be
6579 changed or the programs updated. */
6582 _bfd_elf_modify_headers (bfd
*obfd
, struct bfd_link_info
*link_info
)
6584 if (link_info
!= NULL
&& bfd_link_pie (link_info
))
6586 Elf_Internal_Ehdr
*i_ehdrp
= elf_elfheader (obfd
);
6587 unsigned int num_segments
= i_ehdrp
->e_phnum
;
6588 struct elf_obj_tdata
*tdata
= elf_tdata (obfd
);
6589 Elf_Internal_Phdr
*segment
= tdata
->phdr
;
6590 Elf_Internal_Phdr
*end_segment
= &segment
[num_segments
];
6592 /* Find the lowest p_vaddr in PT_LOAD segments. */
6593 bfd_vma p_vaddr
= (bfd_vma
) -1;
6594 for (; segment
< end_segment
; segment
++)
6595 if (segment
->p_type
== PT_LOAD
&& p_vaddr
> segment
->p_vaddr
)
6596 p_vaddr
= segment
->p_vaddr
;
6598 /* Set e_type to ET_EXEC if the lowest p_vaddr in PT_LOAD
6599 segments is non-zero. */
6601 i_ehdrp
->e_type
= ET_EXEC
;
6606 /* Assign file positions for all the reloc sections which are not part
6607 of the loadable file image, and the file position of section headers. */
6610 _bfd_elf_assign_file_positions_for_non_load (bfd
*abfd
)
6613 Elf_Internal_Shdr
**shdrpp
, **end_shdrpp
;
6614 Elf_Internal_Shdr
*shdrp
;
6615 Elf_Internal_Ehdr
*i_ehdrp
;
6616 const struct elf_backend_data
*bed
;
6618 off
= elf_next_file_pos (abfd
);
6620 shdrpp
= elf_elfsections (abfd
);
6621 end_shdrpp
= shdrpp
+ elf_numsections (abfd
);
6622 for (shdrpp
++; shdrpp
< end_shdrpp
; shdrpp
++)
6625 if (shdrp
->sh_offset
== -1)
6627 asection
*sec
= shdrp
->bfd_section
;
6628 bool is_rel
= (shdrp
->sh_type
== SHT_REL
6629 || shdrp
->sh_type
== SHT_RELA
);
6630 bool is_ctf
= sec
&& bfd_section_is_ctf (sec
);
6633 || (sec
!= NULL
&& (sec
->flags
& SEC_ELF_COMPRESS
)))
6635 if (!is_rel
&& !is_ctf
)
6637 const char *name
= sec
->name
;
6638 struct bfd_elf_section_data
*d
;
6640 /* Compress DWARF debug sections. */
6641 if (!bfd_compress_section (abfd
, sec
,
6645 if (sec
->compress_status
== COMPRESS_SECTION_DONE
6646 && (abfd
->flags
& BFD_COMPRESS_GABI
) == 0)
6648 /* If section is compressed with zlib-gnu, convert
6649 section name from .debug_* to .zdebug_*. */
6651 = convert_debug_to_zdebug (abfd
, name
);
6652 if (new_name
== NULL
)
6656 /* Add section name to section name section. */
6657 if (shdrp
->sh_name
!= (unsigned int) -1)
6660 = (unsigned int) _bfd_elf_strtab_add (elf_shstrtab (abfd
),
6662 d
= elf_section_data (sec
);
6664 /* Add reloc section name to section name section. */
6666 && !_bfd_elf_set_reloc_sh_name (abfd
,
6671 && !_bfd_elf_set_reloc_sh_name (abfd
,
6676 /* Update section size and contents. */
6677 shdrp
->sh_size
= sec
->size
;
6678 shdrp
->contents
= sec
->contents
;
6679 shdrp
->bfd_section
->contents
= NULL
;
6683 /* Update section size and contents. */
6684 shdrp
->sh_size
= sec
->size
;
6685 shdrp
->contents
= sec
->contents
;
6688 off
= _bfd_elf_assign_file_position_for_section (shdrp
,
6695 /* Place section name section after DWARF debug sections have been
6697 _bfd_elf_strtab_finalize (elf_shstrtab (abfd
));
6698 shdrp
= &elf_tdata (abfd
)->shstrtab_hdr
;
6699 shdrp
->sh_size
= _bfd_elf_strtab_size (elf_shstrtab (abfd
));
6700 off
= _bfd_elf_assign_file_position_for_section (shdrp
, off
, true);
6702 /* Place the section headers. */
6703 i_ehdrp
= elf_elfheader (abfd
);
6704 bed
= get_elf_backend_data (abfd
);
6705 off
= align_file_position (off
, 1 << bed
->s
->log_file_align
);
6706 i_ehdrp
->e_shoff
= off
;
6707 off
+= i_ehdrp
->e_shnum
* i_ehdrp
->e_shentsize
;
6708 elf_next_file_pos (abfd
) = off
;
6714 _bfd_elf_write_object_contents (bfd
*abfd
)
6716 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
6717 Elf_Internal_Shdr
**i_shdrp
;
6719 unsigned int count
, num_sec
;
6720 struct elf_obj_tdata
*t
;
6722 if (! abfd
->output_has_begun
6723 && ! _bfd_elf_compute_section_file_positions (abfd
, NULL
))
6725 /* Do not rewrite ELF data when the BFD has been opened for update.
6726 abfd->output_has_begun was set to TRUE on opening, so creation of new
6727 sections, and modification of existing section sizes was restricted.
6728 This means the ELF header, program headers and section headers can't have
6730 If the contents of any sections has been modified, then those changes have
6731 already been written to the BFD. */
6732 else if (abfd
->direction
== both_direction
)
6734 BFD_ASSERT (abfd
->output_has_begun
);
6738 i_shdrp
= elf_elfsections (abfd
);
6741 bfd_map_over_sections (abfd
, bed
->s
->write_relocs
, &failed
);
6745 if (!_bfd_elf_assign_file_positions_for_non_load (abfd
))
6748 /* After writing the headers, we need to write the sections too... */
6749 num_sec
= elf_numsections (abfd
);
6750 for (count
= 1; count
< num_sec
; count
++)
6752 i_shdrp
[count
]->sh_name
6753 = _bfd_elf_strtab_offset (elf_shstrtab (abfd
),
6754 i_shdrp
[count
]->sh_name
);
6755 if (bed
->elf_backend_section_processing
)
6756 if (!(*bed
->elf_backend_section_processing
) (abfd
, i_shdrp
[count
]))
6758 if (i_shdrp
[count
]->contents
)
6760 bfd_size_type amt
= i_shdrp
[count
]->sh_size
;
6762 if (bfd_seek (abfd
, i_shdrp
[count
]->sh_offset
, SEEK_SET
) != 0
6763 || bfd_bwrite (i_shdrp
[count
]->contents
, amt
, abfd
) != amt
)
6768 /* Write out the section header names. */
6769 t
= elf_tdata (abfd
);
6770 if (elf_shstrtab (abfd
) != NULL
6771 && (bfd_seek (abfd
, t
->shstrtab_hdr
.sh_offset
, SEEK_SET
) != 0
6772 || !_bfd_elf_strtab_emit (abfd
, elf_shstrtab (abfd
))))
6775 if (!(*bed
->elf_backend_final_write_processing
) (abfd
))
6778 if (!bed
->s
->write_shdrs_and_ehdr (abfd
))
6781 /* This is last since write_shdrs_and_ehdr can touch i_shdrp[0]. */
6782 if (t
->o
->build_id
.after_write_object_contents
!= NULL
6783 && !(*t
->o
->build_id
.after_write_object_contents
) (abfd
))
6785 if (t
->o
->package_metadata
.after_write_object_contents
!= NULL
6786 && !(*t
->o
->package_metadata
.after_write_object_contents
) (abfd
))
6793 _bfd_elf_write_corefile_contents (bfd
*abfd
)
6795 /* Hopefully this can be done just like an object file. */
6796 return _bfd_elf_write_object_contents (abfd
);
6799 /* Given a section, search the header to find them. */
6802 _bfd_elf_section_from_bfd_section (bfd
*abfd
, struct bfd_section
*asect
)
6804 const struct elf_backend_data
*bed
;
6805 unsigned int sec_index
;
6807 if (elf_section_data (asect
) != NULL
6808 && elf_section_data (asect
)->this_idx
!= 0)
6809 return elf_section_data (asect
)->this_idx
;
6811 if (bfd_is_abs_section (asect
))
6812 sec_index
= SHN_ABS
;
6813 else if (bfd_is_com_section (asect
))
6814 sec_index
= SHN_COMMON
;
6815 else if (bfd_is_und_section (asect
))
6816 sec_index
= SHN_UNDEF
;
6818 sec_index
= SHN_BAD
;
6820 bed
= get_elf_backend_data (abfd
);
6821 if (bed
->elf_backend_section_from_bfd_section
)
6823 int retval
= sec_index
;
6825 if ((*bed
->elf_backend_section_from_bfd_section
) (abfd
, asect
, &retval
))
6829 if (sec_index
== SHN_BAD
)
6830 bfd_set_error (bfd_error_nonrepresentable_section
);
6835 /* Given a BFD symbol, return the index in the ELF symbol table, or -1
6839 _bfd_elf_symbol_from_bfd_symbol (bfd
*abfd
, asymbol
**asym_ptr_ptr
)
6841 asymbol
*asym_ptr
= *asym_ptr_ptr
;
6843 flagword flags
= asym_ptr
->flags
;
6845 /* When gas creates relocations against local labels, it creates its
6846 own symbol for the section, but does put the symbol into the
6847 symbol chain, so udata is 0. When the linker is generating
6848 relocatable output, this section symbol may be for one of the
6849 input sections rather than the output section. */
6850 if (asym_ptr
->udata
.i
== 0
6851 && (flags
& BSF_SECTION_SYM
)
6852 && asym_ptr
->section
)
6856 sec
= asym_ptr
->section
;
6857 if (sec
->owner
!= abfd
&& sec
->output_section
!= NULL
)
6858 sec
= sec
->output_section
;
6859 if (sec
->owner
== abfd
6860 && sec
->index
< elf_num_section_syms (abfd
)
6861 && elf_section_syms (abfd
)[sec
->index
] != NULL
)
6862 asym_ptr
->udata
.i
= elf_section_syms (abfd
)[sec
->index
]->udata
.i
;
6865 idx
= asym_ptr
->udata
.i
;
6869 /* This case can occur when using --strip-symbol on a symbol
6870 which is used in a relocation entry. */
6872 /* xgettext:c-format */
6873 (_("%pB: symbol `%s' required but not present"),
6874 abfd
, bfd_asymbol_name (asym_ptr
));
6875 bfd_set_error (bfd_error_no_symbols
);
6882 "elf_symbol_from_bfd_symbol 0x%.8lx, name = %s, sym num = %d, flags = 0x%.8x\n",
6883 (long) asym_ptr
, asym_ptr
->name
, idx
, flags
);
6891 /* Rewrite program header information. */
6894 rewrite_elf_program_header (bfd
*ibfd
, bfd
*obfd
, bfd_vma maxpagesize
)
6896 Elf_Internal_Ehdr
*iehdr
;
6897 struct elf_segment_map
*map
;
6898 struct elf_segment_map
*map_first
;
6899 struct elf_segment_map
**pointer_to_map
;
6900 Elf_Internal_Phdr
*segment
;
6903 unsigned int num_segments
;
6904 bool phdr_included
= false;
6906 struct elf_segment_map
*phdr_adjust_seg
= NULL
;
6907 unsigned int phdr_adjust_num
= 0;
6908 const struct elf_backend_data
*bed
;
6909 unsigned int opb
= bfd_octets_per_byte (ibfd
, NULL
);
6911 bed
= get_elf_backend_data (ibfd
);
6912 iehdr
= elf_elfheader (ibfd
);
6915 pointer_to_map
= &map_first
;
6917 num_segments
= elf_elfheader (ibfd
)->e_phnum
;
6919 /* Returns the end address of the segment + 1. */
6920 #define SEGMENT_END(segment, start) \
6921 (start + (segment->p_memsz > segment->p_filesz \
6922 ? segment->p_memsz : segment->p_filesz))
6924 #define SECTION_SIZE(section, segment) \
6925 (((section->flags & (SEC_HAS_CONTENTS | SEC_THREAD_LOCAL)) \
6926 != SEC_THREAD_LOCAL || segment->p_type == PT_TLS) \
6927 ? section->size : 0)
6929 /* Returns TRUE if the given section is contained within
6930 the given segment. VMA addresses are compared. */
6931 #define IS_CONTAINED_BY_VMA(section, segment, opb) \
6932 (section->vma * (opb) >= segment->p_vaddr \
6933 && (section->vma * (opb) + SECTION_SIZE (section, segment) \
6934 <= (SEGMENT_END (segment, segment->p_vaddr))))
6936 /* Returns TRUE if the given section is contained within
6937 the given segment. LMA addresses are compared. */
6938 #define IS_CONTAINED_BY_LMA(section, segment, base, opb) \
6939 (section->lma * (opb) >= base \
6940 && (section->lma + SECTION_SIZE (section, segment) / (opb) >= section->lma) \
6941 && (section->lma * (opb) + SECTION_SIZE (section, segment) \
6942 <= SEGMENT_END (segment, base)))
6944 /* Handle PT_NOTE segment. */
6945 #define IS_NOTE(p, s) \
6946 (p->p_type == PT_NOTE \
6947 && elf_section_type (s) == SHT_NOTE \
6948 && (bfd_vma) s->filepos >= p->p_offset \
6949 && ((bfd_vma) s->filepos + s->size \
6950 <= p->p_offset + p->p_filesz))
6952 /* Special case: corefile "NOTE" section containing regs, prpsinfo
6954 #define IS_COREFILE_NOTE(p, s) \
6956 && bfd_get_format (ibfd) == bfd_core \
6960 /* The complicated case when p_vaddr is 0 is to handle the Solaris
6961 linker, which generates a PT_INTERP section with p_vaddr and
6962 p_memsz set to 0. */
6963 #define IS_SOLARIS_PT_INTERP(p, s) \
6965 && p->p_paddr == 0 \
6966 && p->p_memsz == 0 \
6967 && p->p_filesz > 0 \
6968 && (s->flags & SEC_HAS_CONTENTS) != 0 \
6970 && (bfd_vma) s->filepos >= p->p_offset \
6971 && ((bfd_vma) s->filepos + s->size \
6972 <= p->p_offset + p->p_filesz))
6974 /* Decide if the given section should be included in the given segment.
6975 A section will be included if:
6976 1. It is within the address space of the segment -- we use the LMA
6977 if that is set for the segment and the VMA otherwise,
6978 2. It is an allocated section or a NOTE section in a PT_NOTE
6980 3. There is an output section associated with it,
6981 4. The section has not already been allocated to a previous segment.
6982 5. PT_GNU_STACK segments do not include any sections.
6983 6. PT_TLS segment includes only SHF_TLS sections.
6984 7. SHF_TLS sections are only in PT_TLS or PT_LOAD segments.
6985 8. PT_DYNAMIC should not contain empty sections at the beginning
6986 (with the possible exception of .dynamic). */
6987 #define IS_SECTION_IN_INPUT_SEGMENT(section, segment, bed, opb) \
6988 ((((segment->p_paddr \
6989 ? IS_CONTAINED_BY_LMA (section, segment, segment->p_paddr, opb) \
6990 : IS_CONTAINED_BY_VMA (section, segment, opb)) \
6991 && (section->flags & SEC_ALLOC) != 0) \
6992 || IS_NOTE (segment, section)) \
6993 && segment->p_type != PT_GNU_STACK \
6994 && (segment->p_type != PT_TLS \
6995 || (section->flags & SEC_THREAD_LOCAL)) \
6996 && (segment->p_type == PT_LOAD \
6997 || segment->p_type == PT_TLS \
6998 || (section->flags & SEC_THREAD_LOCAL) == 0) \
6999 && (segment->p_type != PT_DYNAMIC \
7000 || SECTION_SIZE (section, segment) > 0 \
7001 || (segment->p_paddr \
7002 ? segment->p_paddr != section->lma * (opb) \
7003 : segment->p_vaddr != section->vma * (opb)) \
7004 || (strcmp (bfd_section_name (section), ".dynamic") == 0)) \
7005 && (segment->p_type != PT_LOAD || !section->segment_mark))
7007 /* If the output section of a section in the input segment is NULL,
7008 it is removed from the corresponding output segment. */
7009 #define INCLUDE_SECTION_IN_SEGMENT(section, segment, bed, opb) \
7010 (IS_SECTION_IN_INPUT_SEGMENT (section, segment, bed, opb) \
7011 && section->output_section != NULL)
7013 /* Returns TRUE iff seg1 starts after the end of seg2. */
7014 #define SEGMENT_AFTER_SEGMENT(seg1, seg2, field) \
7015 (seg1->field >= SEGMENT_END (seg2, seg2->field))
7017 /* Returns TRUE iff seg1 and seg2 overlap. Segments overlap iff both
7018 their VMA address ranges and their LMA address ranges overlap.
7019 It is possible to have overlapping VMA ranges without overlapping LMA
7020 ranges. RedBoot images for example can have both .data and .bss mapped
7021 to the same VMA range, but with the .data section mapped to a different
7023 #define SEGMENT_OVERLAPS(seg1, seg2) \
7024 ( !(SEGMENT_AFTER_SEGMENT (seg1, seg2, p_vaddr) \
7025 || SEGMENT_AFTER_SEGMENT (seg2, seg1, p_vaddr)) \
7026 && !(SEGMENT_AFTER_SEGMENT (seg1, seg2, p_paddr) \
7027 || SEGMENT_AFTER_SEGMENT (seg2, seg1, p_paddr)))
7029 /* Initialise the segment mark field, and discard stupid alignment. */
7030 for (section
= ibfd
->sections
; section
!= NULL
; section
= section
->next
)
7032 asection
*o
= section
->output_section
;
7033 if (o
!= NULL
&& o
->alignment_power
>= (sizeof (bfd_vma
) * 8) - 1)
7034 o
->alignment_power
= 0;
7035 section
->segment_mark
= false;
7038 /* The Solaris linker creates program headers in which all the
7039 p_paddr fields are zero. When we try to objcopy or strip such a
7040 file, we get confused. Check for this case, and if we find it
7041 don't set the p_paddr_valid fields. */
7042 p_paddr_valid
= false;
7043 for (i
= 0, segment
= elf_tdata (ibfd
)->phdr
;
7046 if (segment
->p_paddr
!= 0)
7048 p_paddr_valid
= true;
7052 /* Scan through the segments specified in the program header
7053 of the input BFD. For this first scan we look for overlaps
7054 in the loadable segments. These can be created by weird
7055 parameters to objcopy. Also, fix some solaris weirdness. */
7056 for (i
= 0, segment
= elf_tdata (ibfd
)->phdr
;
7061 Elf_Internal_Phdr
*segment2
;
7063 if (segment
->p_type
== PT_INTERP
)
7064 for (section
= ibfd
->sections
; section
; section
= section
->next
)
7065 if (IS_SOLARIS_PT_INTERP (segment
, section
))
7067 /* Mininal change so that the normal section to segment
7068 assignment code will work. */
7069 segment
->p_vaddr
= section
->vma
* opb
;
7073 if (segment
->p_type
!= PT_LOAD
)
7075 /* Remove PT_GNU_RELRO segment. */
7076 if (segment
->p_type
== PT_GNU_RELRO
)
7077 segment
->p_type
= PT_NULL
;
7081 /* Determine if this segment overlaps any previous segments. */
7082 for (j
= 0, segment2
= elf_tdata (ibfd
)->phdr
; j
< i
; j
++, segment2
++)
7084 bfd_signed_vma extra_length
;
7086 if (segment2
->p_type
!= PT_LOAD
7087 || !SEGMENT_OVERLAPS (segment
, segment2
))
7090 /* Merge the two segments together. */
7091 if (segment2
->p_vaddr
< segment
->p_vaddr
)
7093 /* Extend SEGMENT2 to include SEGMENT and then delete
7095 extra_length
= (SEGMENT_END (segment
, segment
->p_vaddr
)
7096 - SEGMENT_END (segment2
, segment2
->p_vaddr
));
7098 if (extra_length
> 0)
7100 segment2
->p_memsz
+= extra_length
;
7101 segment2
->p_filesz
+= extra_length
;
7104 segment
->p_type
= PT_NULL
;
7106 /* Since we have deleted P we must restart the outer loop. */
7108 segment
= elf_tdata (ibfd
)->phdr
;
7113 /* Extend SEGMENT to include SEGMENT2 and then delete
7115 extra_length
= (SEGMENT_END (segment2
, segment2
->p_vaddr
)
7116 - SEGMENT_END (segment
, segment
->p_vaddr
));
7118 if (extra_length
> 0)
7120 segment
->p_memsz
+= extra_length
;
7121 segment
->p_filesz
+= extra_length
;
7124 segment2
->p_type
= PT_NULL
;
7129 /* The second scan attempts to assign sections to segments. */
7130 for (i
= 0, segment
= elf_tdata (ibfd
)->phdr
;
7134 unsigned int section_count
;
7135 asection
**sections
;
7136 asection
*output_section
;
7138 asection
*matching_lma
;
7139 asection
*suggested_lma
;
7142 asection
*first_section
;
7144 if (segment
->p_type
== PT_NULL
)
7147 first_section
= NULL
;
7148 /* Compute how many sections might be placed into this segment. */
7149 for (section
= ibfd
->sections
, section_count
= 0;
7151 section
= section
->next
)
7153 /* Find the first section in the input segment, which may be
7154 removed from the corresponding output segment. */
7155 if (IS_SECTION_IN_INPUT_SEGMENT (section
, segment
, bed
, opb
))
7157 if (first_section
== NULL
)
7158 first_section
= section
;
7159 if (section
->output_section
!= NULL
)
7164 /* Allocate a segment map big enough to contain
7165 all of the sections we have selected. */
7166 amt
= sizeof (struct elf_segment_map
) - sizeof (asection
*);
7167 amt
+= section_count
* sizeof (asection
*);
7168 map
= (struct elf_segment_map
*) bfd_zalloc (obfd
, amt
);
7172 /* Initialise the fields of the segment map. Default to
7173 using the physical address of the segment in the input BFD. */
7175 map
->p_type
= segment
->p_type
;
7176 map
->p_flags
= segment
->p_flags
;
7177 map
->p_flags_valid
= 1;
7179 if (map
->p_type
== PT_LOAD
7180 && (ibfd
->flags
& D_PAGED
) != 0
7182 && segment
->p_align
> 1)
7184 map
->p_align
= segment
->p_align
;
7185 if (segment
->p_align
> maxpagesize
)
7186 map
->p_align
= maxpagesize
;
7187 map
->p_align_valid
= 1;
7190 /* If the first section in the input segment is removed, there is
7191 no need to preserve segment physical address in the corresponding
7193 if (!first_section
|| first_section
->output_section
!= NULL
)
7195 map
->p_paddr
= segment
->p_paddr
;
7196 map
->p_paddr_valid
= p_paddr_valid
;
7199 /* Determine if this segment contains the ELF file header
7200 and if it contains the program headers themselves. */
7201 map
->includes_filehdr
= (segment
->p_offset
== 0
7202 && segment
->p_filesz
>= iehdr
->e_ehsize
);
7203 map
->includes_phdrs
= 0;
7205 if (!phdr_included
|| segment
->p_type
!= PT_LOAD
)
7207 map
->includes_phdrs
=
7208 (segment
->p_offset
<= (bfd_vma
) iehdr
->e_phoff
7209 && (segment
->p_offset
+ segment
->p_filesz
7210 >= ((bfd_vma
) iehdr
->e_phoff
7211 + iehdr
->e_phnum
* iehdr
->e_phentsize
)));
7213 if (segment
->p_type
== PT_LOAD
&& map
->includes_phdrs
)
7214 phdr_included
= true;
7217 if (section_count
== 0)
7219 /* Special segments, such as the PT_PHDR segment, may contain
7220 no sections, but ordinary, loadable segments should contain
7221 something. They are allowed by the ELF spec however, so only
7222 a warning is produced.
7223 There is however the valid use case of embedded systems which
7224 have segments with p_filesz of 0 and a p_memsz > 0 to initialize
7225 flash memory with zeros. No warning is shown for that case. */
7226 if (segment
->p_type
== PT_LOAD
7227 && (segment
->p_filesz
> 0 || segment
->p_memsz
== 0))
7228 /* xgettext:c-format */
7230 (_("%pB: warning: empty loadable segment detected"
7231 " at vaddr=%#" PRIx64
", is this intentional?"),
7232 ibfd
, (uint64_t) segment
->p_vaddr
);
7234 map
->p_vaddr_offset
= segment
->p_vaddr
/ opb
;
7236 *pointer_to_map
= map
;
7237 pointer_to_map
= &map
->next
;
7242 /* Now scan the sections in the input BFD again and attempt
7243 to add their corresponding output sections to the segment map.
7244 The problem here is how to handle an output section which has
7245 been moved (ie had its LMA changed). There are four possibilities:
7247 1. None of the sections have been moved.
7248 In this case we can continue to use the segment LMA from the
7251 2. All of the sections have been moved by the same amount.
7252 In this case we can change the segment's LMA to match the LMA
7253 of the first section.
7255 3. Some of the sections have been moved, others have not.
7256 In this case those sections which have not been moved can be
7257 placed in the current segment which will have to have its size,
7258 and possibly its LMA changed, and a new segment or segments will
7259 have to be created to contain the other sections.
7261 4. The sections have been moved, but not by the same amount.
7262 In this case we can change the segment's LMA to match the LMA
7263 of the first section and we will have to create a new segment
7264 or segments to contain the other sections.
7266 In order to save time, we allocate an array to hold the section
7267 pointers that we are interested in. As these sections get assigned
7268 to a segment, they are removed from this array. */
7270 amt
= section_count
* sizeof (asection
*);
7271 sections
= (asection
**) bfd_malloc (amt
);
7272 if (sections
== NULL
)
7275 /* Step One: Scan for segment vs section LMA conflicts.
7276 Also add the sections to the section array allocated above.
7277 Also add the sections to the current segment. In the common
7278 case, where the sections have not been moved, this means that
7279 we have completely filled the segment, and there is nothing
7282 matching_lma
= NULL
;
7283 suggested_lma
= NULL
;
7285 for (section
= first_section
, j
= 0;
7287 section
= section
->next
)
7289 if (INCLUDE_SECTION_IN_SEGMENT (section
, segment
, bed
, opb
))
7291 output_section
= section
->output_section
;
7293 sections
[j
++] = section
;
7295 /* The Solaris native linker always sets p_paddr to 0.
7296 We try to catch that case here, and set it to the
7297 correct value. Note - some backends require that
7298 p_paddr be left as zero. */
7300 && segment
->p_vaddr
!= 0
7301 && !bed
->want_p_paddr_set_to_zero
7303 && output_section
->lma
!= 0
7304 && (align_power (segment
->p_vaddr
7305 + (map
->includes_filehdr
7306 ? iehdr
->e_ehsize
: 0)
7307 + (map
->includes_phdrs
7308 ? iehdr
->e_phnum
* iehdr
->e_phentsize
7310 output_section
->alignment_power
* opb
)
7311 == (output_section
->vma
* opb
)))
7312 map
->p_paddr
= segment
->p_vaddr
;
7314 /* Match up the physical address of the segment with the
7315 LMA address of the output section. */
7316 if (IS_CONTAINED_BY_LMA (output_section
, segment
, map
->p_paddr
,
7318 || IS_COREFILE_NOTE (segment
, section
)
7319 || (bed
->want_p_paddr_set_to_zero
7320 && IS_CONTAINED_BY_VMA (output_section
, segment
, opb
)))
7322 if (matching_lma
== NULL
7323 || output_section
->lma
< matching_lma
->lma
)
7324 matching_lma
= output_section
;
7326 /* We assume that if the section fits within the segment
7327 then it does not overlap any other section within that
7329 map
->sections
[isec
++] = output_section
;
7331 else if (suggested_lma
== NULL
)
7332 suggested_lma
= output_section
;
7334 if (j
== section_count
)
7339 BFD_ASSERT (j
== section_count
);
7341 /* Step Two: Adjust the physical address of the current segment,
7343 if (isec
== section_count
)
7345 /* All of the sections fitted within the segment as currently
7346 specified. This is the default case. Add the segment to
7347 the list of built segments and carry on to process the next
7348 program header in the input BFD. */
7349 map
->count
= section_count
;
7350 *pointer_to_map
= map
;
7351 pointer_to_map
= &map
->next
;
7354 && !bed
->want_p_paddr_set_to_zero
)
7356 bfd_vma hdr_size
= 0;
7357 if (map
->includes_filehdr
)
7358 hdr_size
= iehdr
->e_ehsize
;
7359 if (map
->includes_phdrs
)
7360 hdr_size
+= iehdr
->e_phnum
* iehdr
->e_phentsize
;
7362 /* Account for padding before the first section in the
7364 map
->p_vaddr_offset
= ((map
->p_paddr
+ hdr_size
) / opb
7365 - matching_lma
->lma
);
7373 /* Change the current segment's physical address to match
7374 the LMA of the first section that fitted, or if no
7375 section fitted, the first section. */
7376 if (matching_lma
== NULL
)
7377 matching_lma
= suggested_lma
;
7379 map
->p_paddr
= matching_lma
->lma
* opb
;
7381 /* Offset the segment physical address from the lma
7382 to allow for space taken up by elf headers. */
7383 if (map
->includes_phdrs
)
7385 map
->p_paddr
-= iehdr
->e_phnum
* iehdr
->e_phentsize
;
7387 /* iehdr->e_phnum is just an estimate of the number
7388 of program headers that we will need. Make a note
7389 here of the number we used and the segment we chose
7390 to hold these headers, so that we can adjust the
7391 offset when we know the correct value. */
7392 phdr_adjust_num
= iehdr
->e_phnum
;
7393 phdr_adjust_seg
= map
;
7396 if (map
->includes_filehdr
)
7398 bfd_vma align
= (bfd_vma
) 1 << matching_lma
->alignment_power
;
7399 map
->p_paddr
-= iehdr
->e_ehsize
;
7400 /* We've subtracted off the size of headers from the
7401 first section lma, but there may have been some
7402 alignment padding before that section too. Try to
7403 account for that by adjusting the segment lma down to
7404 the same alignment. */
7405 if (segment
->p_align
!= 0 && segment
->p_align
< align
)
7406 align
= segment
->p_align
;
7407 map
->p_paddr
&= -(align
* opb
);
7411 /* Step Three: Loop over the sections again, this time assigning
7412 those that fit to the current segment and removing them from the
7413 sections array; but making sure not to leave large gaps. Once all
7414 possible sections have been assigned to the current segment it is
7415 added to the list of built segments and if sections still remain
7416 to be assigned, a new segment is constructed before repeating
7422 suggested_lma
= NULL
;
7424 /* Fill the current segment with sections that fit. */
7425 for (j
= 0; j
< section_count
; j
++)
7427 section
= sections
[j
];
7429 if (section
== NULL
)
7432 output_section
= section
->output_section
;
7434 BFD_ASSERT (output_section
!= NULL
);
7436 if (IS_CONTAINED_BY_LMA (output_section
, segment
, map
->p_paddr
,
7438 || IS_COREFILE_NOTE (segment
, section
))
7440 if (map
->count
== 0)
7442 /* If the first section in a segment does not start at
7443 the beginning of the segment, then something is
7445 if (align_power (map
->p_paddr
7446 + (map
->includes_filehdr
7447 ? iehdr
->e_ehsize
: 0)
7448 + (map
->includes_phdrs
7449 ? iehdr
->e_phnum
* iehdr
->e_phentsize
7451 output_section
->alignment_power
* opb
)
7452 != output_section
->lma
* opb
)
7459 prev_sec
= map
->sections
[map
->count
- 1];
7461 /* If the gap between the end of the previous section
7462 and the start of this section is more than
7463 maxpagesize then we need to start a new segment. */
7464 if ((BFD_ALIGN (prev_sec
->lma
+ prev_sec
->size
,
7466 < BFD_ALIGN (output_section
->lma
, maxpagesize
))
7467 || (prev_sec
->lma
+ prev_sec
->size
7468 > output_section
->lma
))
7470 if (suggested_lma
== NULL
)
7471 suggested_lma
= output_section
;
7477 map
->sections
[map
->count
++] = output_section
;
7480 if (segment
->p_type
== PT_LOAD
)
7481 section
->segment_mark
= true;
7483 else if (suggested_lma
== NULL
)
7484 suggested_lma
= output_section
;
7487 /* PR 23932. A corrupt input file may contain sections that cannot
7488 be assigned to any segment - because for example they have a
7489 negative size - or segments that do not contain any sections.
7490 But there are also valid reasons why a segment can be empty.
7491 So allow a count of zero. */
7493 /* Add the current segment to the list of built segments. */
7494 *pointer_to_map
= map
;
7495 pointer_to_map
= &map
->next
;
7497 if (isec
< section_count
)
7499 /* We still have not allocated all of the sections to
7500 segments. Create a new segment here, initialise it
7501 and carry on looping. */
7502 amt
= sizeof (struct elf_segment_map
) - sizeof (asection
*);
7503 amt
+= section_count
* sizeof (asection
*);
7504 map
= (struct elf_segment_map
*) bfd_zalloc (obfd
, amt
);
7511 /* Initialise the fields of the segment map. Set the physical
7512 physical address to the LMA of the first section that has
7513 not yet been assigned. */
7515 map
->p_type
= segment
->p_type
;
7516 map
->p_flags
= segment
->p_flags
;
7517 map
->p_flags_valid
= 1;
7518 map
->p_paddr
= suggested_lma
->lma
* opb
;
7519 map
->p_paddr_valid
= p_paddr_valid
;
7520 map
->includes_filehdr
= 0;
7521 map
->includes_phdrs
= 0;
7526 bfd_set_error (bfd_error_sorry
);
7530 while (isec
< section_count
);
7535 elf_seg_map (obfd
) = map_first
;
7537 /* If we had to estimate the number of program headers that were
7538 going to be needed, then check our estimate now and adjust
7539 the offset if necessary. */
7540 if (phdr_adjust_seg
!= NULL
)
7544 for (count
= 0, map
= map_first
; map
!= NULL
; map
= map
->next
)
7547 if (count
> phdr_adjust_num
)
7548 phdr_adjust_seg
->p_paddr
7549 -= (count
- phdr_adjust_num
) * iehdr
->e_phentsize
;
7551 for (map
= map_first
; map
!= NULL
; map
= map
->next
)
7552 if (map
->p_type
== PT_PHDR
)
7555 = phdr_adjust_seg
->includes_filehdr
? iehdr
->e_ehsize
: 0;
7556 map
->p_paddr
= phdr_adjust_seg
->p_paddr
+ adjust
;
7563 #undef IS_CONTAINED_BY_VMA
7564 #undef IS_CONTAINED_BY_LMA
7566 #undef IS_COREFILE_NOTE
7567 #undef IS_SOLARIS_PT_INTERP
7568 #undef IS_SECTION_IN_INPUT_SEGMENT
7569 #undef INCLUDE_SECTION_IN_SEGMENT
7570 #undef SEGMENT_AFTER_SEGMENT
7571 #undef SEGMENT_OVERLAPS
7575 /* Return true if p_align in the ELF program header in ABFD is valid. */
7578 elf_is_p_align_valid (bfd
*abfd
)
7581 Elf_Internal_Phdr
*segment
;
7582 unsigned int num_segments
;
7583 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
7584 bfd_size_type maxpagesize
= bed
->maxpagesize
;
7585 bfd_size_type p_align
= bed
->p_align
;
7587 /* Return true if the default p_align value isn't set or the maximum
7588 page size is the same as the minimum page size. */
7589 if (p_align
== 0 || maxpagesize
== bed
->minpagesize
)
7592 /* When the default p_align value is set, p_align may be set to the
7593 default p_align value while segments are aligned to the maximum
7594 page size. In this case, the input p_align will be ignored and
7595 the maximum page size will be used to align the output segments. */
7596 segment
= elf_tdata (abfd
)->phdr
;
7597 num_segments
= elf_elfheader (abfd
)->e_phnum
;
7598 for (i
= 0; i
< num_segments
; i
++, segment
++)
7599 if (segment
->p_type
== PT_LOAD
7600 && (segment
->p_align
!= p_align
7601 || vma_page_aligned_bias (segment
->p_vaddr
,
7609 /* Copy ELF program header information. */
7612 copy_elf_program_header (bfd
*ibfd
, bfd
*obfd
)
7614 Elf_Internal_Ehdr
*iehdr
;
7615 struct elf_segment_map
*map
;
7616 struct elf_segment_map
*map_first
;
7617 struct elf_segment_map
**pointer_to_map
;
7618 Elf_Internal_Phdr
*segment
;
7620 unsigned int num_segments
;
7621 bool phdr_included
= false;
7623 bool p_palign_valid
;
7624 unsigned int opb
= bfd_octets_per_byte (ibfd
, NULL
);
7626 iehdr
= elf_elfheader (ibfd
);
7629 pointer_to_map
= &map_first
;
7631 /* If all the segment p_paddr fields are zero, don't set
7632 map->p_paddr_valid. */
7633 p_paddr_valid
= false;
7634 num_segments
= elf_elfheader (ibfd
)->e_phnum
;
7635 for (i
= 0, segment
= elf_tdata (ibfd
)->phdr
;
7638 if (segment
->p_paddr
!= 0)
7640 p_paddr_valid
= true;
7644 p_palign_valid
= elf_is_p_align_valid (ibfd
);
7646 for (i
= 0, segment
= elf_tdata (ibfd
)->phdr
;
7651 unsigned int section_count
;
7653 Elf_Internal_Shdr
*this_hdr
;
7654 asection
*first_section
= NULL
;
7655 asection
*lowest_section
;
7657 /* Compute how many sections are in this segment. */
7658 for (section
= ibfd
->sections
, section_count
= 0;
7660 section
= section
->next
)
7662 this_hdr
= &(elf_section_data(section
)->this_hdr
);
7663 if (ELF_SECTION_IN_SEGMENT (this_hdr
, segment
))
7665 if (first_section
== NULL
)
7666 first_section
= section
;
7671 /* Allocate a segment map big enough to contain
7672 all of the sections we have selected. */
7673 amt
= sizeof (struct elf_segment_map
) - sizeof (asection
*);
7674 amt
+= section_count
* sizeof (asection
*);
7675 map
= (struct elf_segment_map
*) bfd_zalloc (obfd
, amt
);
7679 /* Initialize the fields of the output segment map with the
7682 map
->p_type
= segment
->p_type
;
7683 map
->p_flags
= segment
->p_flags
;
7684 map
->p_flags_valid
= 1;
7685 map
->p_paddr
= segment
->p_paddr
;
7686 map
->p_paddr_valid
= p_paddr_valid
;
7687 map
->p_align
= segment
->p_align
;
7688 /* Keep p_align of PT_GNU_STACK for stack alignment. */
7689 map
->p_align_valid
= (map
->p_type
== PT_GNU_STACK
7691 map
->p_vaddr_offset
= 0;
7693 if (map
->p_type
== PT_GNU_RELRO
7694 || map
->p_type
== PT_GNU_STACK
)
7696 /* The PT_GNU_RELRO segment may contain the first a few
7697 bytes in the .got.plt section even if the whole .got.plt
7698 section isn't in the PT_GNU_RELRO segment. We won't
7699 change the size of the PT_GNU_RELRO segment.
7700 Similarly, PT_GNU_STACK size is significant on uclinux
7702 map
->p_size
= segment
->p_memsz
;
7703 map
->p_size_valid
= 1;
7706 /* Determine if this segment contains the ELF file header
7707 and if it contains the program headers themselves. */
7708 map
->includes_filehdr
= (segment
->p_offset
== 0
7709 && segment
->p_filesz
>= iehdr
->e_ehsize
);
7711 map
->includes_phdrs
= 0;
7712 if (! phdr_included
|| segment
->p_type
!= PT_LOAD
)
7714 map
->includes_phdrs
=
7715 (segment
->p_offset
<= (bfd_vma
) iehdr
->e_phoff
7716 && (segment
->p_offset
+ segment
->p_filesz
7717 >= ((bfd_vma
) iehdr
->e_phoff
7718 + iehdr
->e_phnum
* iehdr
->e_phentsize
)));
7720 if (segment
->p_type
== PT_LOAD
&& map
->includes_phdrs
)
7721 phdr_included
= true;
7724 lowest_section
= NULL
;
7725 if (section_count
!= 0)
7727 unsigned int isec
= 0;
7729 for (section
= first_section
;
7731 section
= section
->next
)
7733 this_hdr
= &(elf_section_data(section
)->this_hdr
);
7734 if (ELF_SECTION_IN_SEGMENT (this_hdr
, segment
))
7736 map
->sections
[isec
++] = section
->output_section
;
7737 if ((section
->flags
& SEC_ALLOC
) != 0)
7741 if (lowest_section
== NULL
7742 || section
->lma
< lowest_section
->lma
)
7743 lowest_section
= section
;
7745 /* Section lmas are set up from PT_LOAD header
7746 p_paddr in _bfd_elf_make_section_from_shdr.
7747 If this header has a p_paddr that disagrees
7748 with the section lma, flag the p_paddr as
7750 if ((section
->flags
& SEC_LOAD
) != 0)
7751 seg_off
= this_hdr
->sh_offset
- segment
->p_offset
;
7753 seg_off
= this_hdr
->sh_addr
- segment
->p_vaddr
;
7754 if (section
->lma
* opb
- segment
->p_paddr
!= seg_off
)
7755 map
->p_paddr_valid
= false;
7757 if (isec
== section_count
)
7763 if (section_count
== 0)
7764 map
->p_vaddr_offset
= segment
->p_vaddr
/ opb
;
7765 else if (map
->p_paddr_valid
)
7767 /* Account for padding before the first section in the segment. */
7768 bfd_vma hdr_size
= 0;
7769 if (map
->includes_filehdr
)
7770 hdr_size
= iehdr
->e_ehsize
;
7771 if (map
->includes_phdrs
)
7772 hdr_size
+= iehdr
->e_phnum
* iehdr
->e_phentsize
;
7774 map
->p_vaddr_offset
= ((map
->p_paddr
+ hdr_size
) / opb
7775 - (lowest_section
? lowest_section
->lma
: 0));
7778 map
->count
= section_count
;
7779 *pointer_to_map
= map
;
7780 pointer_to_map
= &map
->next
;
7783 elf_seg_map (obfd
) = map_first
;
7787 /* Copy private BFD data. This copies or rewrites ELF program header
7791 copy_private_bfd_data (bfd
*ibfd
, bfd
*obfd
)
7793 bfd_vma maxpagesize
;
7795 if (bfd_get_flavour (ibfd
) != bfd_target_elf_flavour
7796 || bfd_get_flavour (obfd
) != bfd_target_elf_flavour
)
7799 if (elf_tdata (ibfd
)->phdr
== NULL
)
7802 if (ibfd
->xvec
== obfd
->xvec
)
7804 /* Check to see if any sections in the input BFD
7805 covered by ELF program header have changed. */
7806 Elf_Internal_Phdr
*segment
;
7807 asection
*section
, *osec
;
7808 unsigned int i
, num_segments
;
7809 Elf_Internal_Shdr
*this_hdr
;
7810 const struct elf_backend_data
*bed
;
7812 bed
= get_elf_backend_data (ibfd
);
7814 /* Regenerate the segment map if p_paddr is set to 0. */
7815 if (bed
->want_p_paddr_set_to_zero
)
7818 /* Initialize the segment mark field. */
7819 for (section
= obfd
->sections
; section
!= NULL
;
7820 section
= section
->next
)
7821 section
->segment_mark
= false;
7823 num_segments
= elf_elfheader (ibfd
)->e_phnum
;
7824 for (i
= 0, segment
= elf_tdata (ibfd
)->phdr
;
7828 /* PR binutils/3535. The Solaris linker always sets the p_paddr
7829 and p_memsz fields of special segments (DYNAMIC, INTERP) to 0
7830 which severly confuses things, so always regenerate the segment
7831 map in this case. */
7832 if (segment
->p_paddr
== 0
7833 && segment
->p_memsz
== 0
7834 && (segment
->p_type
== PT_INTERP
|| segment
->p_type
== PT_DYNAMIC
))
7837 for (section
= ibfd
->sections
;
7838 section
!= NULL
; section
= section
->next
)
7840 /* We mark the output section so that we know it comes
7841 from the input BFD. */
7842 osec
= section
->output_section
;
7844 osec
->segment_mark
= true;
7846 /* Check if this section is covered by the segment. */
7847 this_hdr
= &(elf_section_data(section
)->this_hdr
);
7848 if (ELF_SECTION_IN_SEGMENT (this_hdr
, segment
))
7850 /* FIXME: Check if its output section is changed or
7851 removed. What else do we need to check? */
7853 || section
->flags
!= osec
->flags
7854 || section
->lma
!= osec
->lma
7855 || section
->vma
!= osec
->vma
7856 || section
->size
!= osec
->size
7857 || section
->rawsize
!= osec
->rawsize
7858 || section
->alignment_power
!= osec
->alignment_power
)
7864 /* Check to see if any output section do not come from the
7866 for (section
= obfd
->sections
; section
!= NULL
;
7867 section
= section
->next
)
7869 if (!section
->segment_mark
)
7872 section
->segment_mark
= false;
7875 return copy_elf_program_header (ibfd
, obfd
);
7880 if (ibfd
->xvec
== obfd
->xvec
)
7882 /* When rewriting program header, set the output maxpagesize to
7883 the maximum alignment of input PT_LOAD segments. */
7884 Elf_Internal_Phdr
*segment
;
7886 unsigned int num_segments
= elf_elfheader (ibfd
)->e_phnum
;
7888 for (i
= 0, segment
= elf_tdata (ibfd
)->phdr
;
7891 if (segment
->p_type
== PT_LOAD
7892 && maxpagesize
< segment
->p_align
)
7894 /* PR 17512: file: f17299af. */
7895 if (segment
->p_align
> (bfd_vma
) 1 << ((sizeof (bfd_vma
) * 8) - 2))
7896 /* xgettext:c-format */
7897 _bfd_error_handler (_("%pB: warning: segment alignment of %#"
7898 PRIx64
" is too large"),
7899 ibfd
, (uint64_t) segment
->p_align
);
7901 maxpagesize
= segment
->p_align
;
7904 if (maxpagesize
== 0)
7905 maxpagesize
= get_elf_backend_data (obfd
)->maxpagesize
;
7907 return rewrite_elf_program_header (ibfd
, obfd
, maxpagesize
);
7910 /* Initialize private output section information from input section. */
7913 _bfd_elf_init_private_section_data (bfd
*ibfd
,
7917 struct bfd_link_info
*link_info
)
7920 Elf_Internal_Shdr
*ihdr
, *ohdr
;
7921 bool final_link
= (link_info
!= NULL
7922 && !bfd_link_relocatable (link_info
));
7924 if (ibfd
->xvec
->flavour
!= bfd_target_elf_flavour
7925 || obfd
->xvec
->flavour
!= bfd_target_elf_flavour
)
7928 BFD_ASSERT (elf_section_data (osec
) != NULL
);
7930 /* If this is a known ABI section, ELF section type and flags may
7931 have been set up when OSEC was created. For normal sections we
7932 allow the user to override the type and flags other than
7933 SHF_MASKOS and SHF_MASKPROC. */
7934 if (elf_section_type (osec
) == SHT_PROGBITS
7935 || elf_section_type (osec
) == SHT_NOTE
7936 || elf_section_type (osec
) == SHT_NOBITS
)
7937 elf_section_type (osec
) = SHT_NULL
;
7938 /* For objcopy and relocatable link, copy the ELF section type from
7939 the input file if the BFD section flags are the same. (If they
7940 are different the user may be doing something like
7941 "objcopy --set-section-flags .text=alloc,data".) For a final
7942 link allow some flags that the linker clears to differ. */
7943 if (elf_section_type (osec
) == SHT_NULL
7944 && (osec
->flags
== isec
->flags
7946 && ((osec
->flags
^ isec
->flags
)
7947 & ~(SEC_LINK_ONCE
| SEC_LINK_DUPLICATES
| SEC_RELOC
)) == 0)))
7948 elf_section_type (osec
) = elf_section_type (isec
);
7950 /* FIXME: Is this correct for all OS/PROC specific flags? */
7951 elf_section_flags (osec
) = (elf_section_flags (isec
)
7952 & (SHF_MASKOS
| SHF_MASKPROC
));
7954 /* Copy sh_info from input for mbind section. */
7955 if ((elf_tdata (ibfd
)->has_gnu_osabi
& elf_gnu_osabi_mbind
) != 0
7956 && elf_section_flags (isec
) & SHF_GNU_MBIND
)
7957 elf_section_data (osec
)->this_hdr
.sh_info
7958 = elf_section_data (isec
)->this_hdr
.sh_info
;
7960 /* Set things up for objcopy and relocatable link. The output
7961 SHT_GROUP section will have its elf_next_in_group pointing back
7962 to the input group members. Ignore linker created group section.
7963 See elfNN_ia64_object_p in elfxx-ia64.c. */
7964 if ((link_info
== NULL
7965 || !link_info
->resolve_section_groups
)
7966 && (elf_sec_group (isec
) == NULL
7967 || (elf_sec_group (isec
)->flags
& SEC_LINKER_CREATED
) == 0))
7969 if (elf_section_flags (isec
) & SHF_GROUP
)
7970 elf_section_flags (osec
) |= SHF_GROUP
;
7971 elf_next_in_group (osec
) = elf_next_in_group (isec
);
7972 elf_section_data (osec
)->group
= elf_section_data (isec
)->group
;
7975 /* If not decompress, preserve SHF_COMPRESSED. */
7976 if (!final_link
&& (ibfd
->flags
& BFD_DECOMPRESS
) == 0)
7977 elf_section_flags (osec
) |= (elf_section_flags (isec
)
7980 ihdr
= &elf_section_data (isec
)->this_hdr
;
7982 /* We need to handle elf_linked_to_section for SHF_LINK_ORDER. We
7983 don't use the output section of the linked-to section since it
7984 may be NULL at this point. */
7985 if ((ihdr
->sh_flags
& SHF_LINK_ORDER
) != 0)
7987 ohdr
= &elf_section_data (osec
)->this_hdr
;
7988 ohdr
->sh_flags
|= SHF_LINK_ORDER
;
7989 elf_linked_to_section (osec
) = elf_linked_to_section (isec
);
7992 osec
->use_rela_p
= isec
->use_rela_p
;
7997 /* Copy private section information. This copies over the entsize
7998 field, and sometimes the info field. */
8001 _bfd_elf_copy_private_section_data (bfd
*ibfd
,
8006 Elf_Internal_Shdr
*ihdr
, *ohdr
;
8008 if (ibfd
->xvec
->flavour
!= bfd_target_elf_flavour
8009 || obfd
->xvec
->flavour
!= bfd_target_elf_flavour
)
8012 ihdr
= &elf_section_data (isec
)->this_hdr
;
8013 ohdr
= &elf_section_data (osec
)->this_hdr
;
8015 ohdr
->sh_entsize
= ihdr
->sh_entsize
;
8017 if (ihdr
->sh_type
== SHT_SYMTAB
8018 || ihdr
->sh_type
== SHT_DYNSYM
8019 || ihdr
->sh_type
== SHT_GNU_verneed
8020 || ihdr
->sh_type
== SHT_GNU_verdef
)
8021 ohdr
->sh_info
= ihdr
->sh_info
;
8023 return _bfd_elf_init_private_section_data (ibfd
, isec
, obfd
, osec
,
8027 /* Look at all the SHT_GROUP sections in IBFD, making any adjustments
8028 necessary if we are removing either the SHT_GROUP section or any of
8029 the group member sections. DISCARDED is the value that a section's
8030 output_section has if the section will be discarded, NULL when this
8031 function is called from objcopy, bfd_abs_section_ptr when called
8035 _bfd_elf_fixup_group_sections (bfd
*ibfd
, asection
*discarded
)
8039 for (isec
= ibfd
->sections
; isec
!= NULL
; isec
= isec
->next
)
8040 if (elf_section_type (isec
) == SHT_GROUP
)
8042 asection
*first
= elf_next_in_group (isec
);
8043 asection
*s
= first
;
8044 bfd_size_type removed
= 0;
8048 /* If this member section is being output but the
8049 SHT_GROUP section is not, then clear the group info
8050 set up by _bfd_elf_copy_private_section_data. */
8051 if (s
->output_section
!= discarded
8052 && isec
->output_section
== discarded
)
8054 elf_section_flags (s
->output_section
) &= ~SHF_GROUP
;
8055 elf_group_name (s
->output_section
) = NULL
;
8059 struct bfd_elf_section_data
*elf_sec
= elf_section_data (s
);
8060 if (s
->output_section
== discarded
8061 && isec
->output_section
!= discarded
)
8063 /* Conversely, if the member section is not being
8064 output but the SHT_GROUP section is, then adjust
8067 if (elf_sec
->rel
.hdr
!= NULL
8068 && (elf_sec
->rel
.hdr
->sh_flags
& SHF_GROUP
) != 0)
8070 if (elf_sec
->rela
.hdr
!= NULL
8071 && (elf_sec
->rela
.hdr
->sh_flags
& SHF_GROUP
) != 0)
8076 /* Also adjust for zero-sized relocation member
8078 if (elf_sec
->rel
.hdr
!= NULL
8079 && elf_sec
->rel
.hdr
->sh_size
== 0)
8081 if (elf_sec
->rela
.hdr
!= NULL
8082 && elf_sec
->rela
.hdr
->sh_size
== 0)
8086 s
= elf_next_in_group (s
);
8092 if (discarded
!= NULL
)
8094 /* If we've been called for ld -r, then we need to
8095 adjust the input section size. */
8096 if (isec
->rawsize
== 0)
8097 isec
->rawsize
= isec
->size
;
8098 isec
->size
= isec
->rawsize
- removed
;
8099 if (isec
->size
<= 4)
8102 isec
->flags
|= SEC_EXCLUDE
;
8105 else if (isec
->output_section
!= NULL
)
8107 /* Adjust the output section size when called from
8109 isec
->output_section
->size
-= removed
;
8110 if (isec
->output_section
->size
<= 4)
8112 isec
->output_section
->size
= 0;
8113 isec
->output_section
->flags
|= SEC_EXCLUDE
;
8122 /* Copy private header information. */
8125 _bfd_elf_copy_private_header_data (bfd
*ibfd
, bfd
*obfd
)
8127 if (bfd_get_flavour (ibfd
) != bfd_target_elf_flavour
8128 || bfd_get_flavour (obfd
) != bfd_target_elf_flavour
)
8131 /* Copy over private BFD data if it has not already been copied.
8132 This must be done here, rather than in the copy_private_bfd_data
8133 entry point, because the latter is called after the section
8134 contents have been set, which means that the program headers have
8135 already been worked out. */
8136 if (elf_seg_map (obfd
) == NULL
&& elf_tdata (ibfd
)->phdr
!= NULL
)
8138 if (! copy_private_bfd_data (ibfd
, obfd
))
8142 return _bfd_elf_fixup_group_sections (ibfd
, NULL
);
8145 /* Copy private symbol information. If this symbol is in a section
8146 which we did not map into a BFD section, try to map the section
8147 index correctly. We use special macro definitions for the mapped
8148 section indices; these definitions are interpreted by the
8149 swap_out_syms function. */
8151 #define MAP_ONESYMTAB (SHN_HIOS + 1)
8152 #define MAP_DYNSYMTAB (SHN_HIOS + 2)
8153 #define MAP_STRTAB (SHN_HIOS + 3)
8154 #define MAP_SHSTRTAB (SHN_HIOS + 4)
8155 #define MAP_SYM_SHNDX (SHN_HIOS + 5)
8158 _bfd_elf_copy_private_symbol_data (bfd
*ibfd
,
8163 elf_symbol_type
*isym
, *osym
;
8165 if (bfd_get_flavour (ibfd
) != bfd_target_elf_flavour
8166 || bfd_get_flavour (obfd
) != bfd_target_elf_flavour
)
8169 isym
= elf_symbol_from (isymarg
);
8170 osym
= elf_symbol_from (osymarg
);
8173 && isym
->internal_elf_sym
.st_shndx
!= 0
8175 && bfd_is_abs_section (isym
->symbol
.section
))
8179 shndx
= isym
->internal_elf_sym
.st_shndx
;
8180 if (shndx
== elf_onesymtab (ibfd
))
8181 shndx
= MAP_ONESYMTAB
;
8182 else if (shndx
== elf_dynsymtab (ibfd
))
8183 shndx
= MAP_DYNSYMTAB
;
8184 else if (shndx
== elf_strtab_sec (ibfd
))
8186 else if (shndx
== elf_shstrtab_sec (ibfd
))
8187 shndx
= MAP_SHSTRTAB
;
8188 else if (find_section_in_list (shndx
, elf_symtab_shndx_list (ibfd
)))
8189 shndx
= MAP_SYM_SHNDX
;
8190 osym
->internal_elf_sym
.st_shndx
= shndx
;
8196 /* Swap out the symbols. */
8199 swap_out_syms (bfd
*abfd
,
8200 struct elf_strtab_hash
**sttp
,
8202 struct bfd_link_info
*info
)
8204 const struct elf_backend_data
*bed
;
8205 unsigned int symcount
;
8207 struct elf_strtab_hash
*stt
;
8208 Elf_Internal_Shdr
*symtab_hdr
;
8209 Elf_Internal_Shdr
*symtab_shndx_hdr
;
8210 Elf_Internal_Shdr
*symstrtab_hdr
;
8211 struct elf_sym_strtab
*symstrtab
;
8212 bfd_byte
*outbound_syms
;
8213 bfd_byte
*outbound_shndx
;
8214 unsigned long outbound_syms_index
;
8216 unsigned int num_locals
;
8218 bool name_local_sections
;
8220 if (!elf_map_symbols (abfd
, &num_locals
))
8223 /* Dump out the symtabs. */
8224 stt
= _bfd_elf_strtab_init ();
8228 bed
= get_elf_backend_data (abfd
);
8229 symcount
= bfd_get_symcount (abfd
);
8230 symtab_hdr
= &elf_tdata (abfd
)->symtab_hdr
;
8231 symtab_hdr
->sh_type
= SHT_SYMTAB
;
8232 symtab_hdr
->sh_entsize
= bed
->s
->sizeof_sym
;
8233 symtab_hdr
->sh_size
= symtab_hdr
->sh_entsize
* (symcount
+ 1);
8234 symtab_hdr
->sh_info
= num_locals
+ 1;
8235 symtab_hdr
->sh_addralign
= (bfd_vma
) 1 << bed
->s
->log_file_align
;
8237 symstrtab_hdr
= &elf_tdata (abfd
)->strtab_hdr
;
8238 symstrtab_hdr
->sh_type
= SHT_STRTAB
;
8240 /* Allocate buffer to swap out the .strtab section. */
8241 if (_bfd_mul_overflow (symcount
+ 1, sizeof (*symstrtab
), &amt
)
8242 || (symstrtab
= (struct elf_sym_strtab
*) bfd_malloc (amt
)) == NULL
)
8244 bfd_set_error (bfd_error_no_memory
);
8245 _bfd_elf_strtab_free (stt
);
8249 if (_bfd_mul_overflow (symcount
+ 1, bed
->s
->sizeof_sym
, &amt
)
8250 || (outbound_syms
= (bfd_byte
*) bfd_alloc (abfd
, amt
)) == NULL
)
8253 bfd_set_error (bfd_error_no_memory
);
8256 _bfd_elf_strtab_free (stt
);
8259 symtab_hdr
->contents
= outbound_syms
;
8260 outbound_syms_index
= 0;
8262 outbound_shndx
= NULL
;
8264 if (elf_symtab_shndx_list (abfd
))
8266 symtab_shndx_hdr
= & elf_symtab_shndx_list (abfd
)->hdr
;
8267 if (symtab_shndx_hdr
->sh_name
!= 0)
8269 if (_bfd_mul_overflow (symcount
+ 1,
8270 sizeof (Elf_External_Sym_Shndx
), &amt
))
8272 outbound_shndx
= (bfd_byte
*) bfd_zalloc (abfd
, amt
);
8273 if (outbound_shndx
== NULL
)
8276 symtab_shndx_hdr
->contents
= outbound_shndx
;
8277 symtab_shndx_hdr
->sh_type
= SHT_SYMTAB_SHNDX
;
8278 symtab_shndx_hdr
->sh_size
= amt
;
8279 symtab_shndx_hdr
->sh_addralign
= sizeof (Elf_External_Sym_Shndx
);
8280 symtab_shndx_hdr
->sh_entsize
= sizeof (Elf_External_Sym_Shndx
);
8282 /* FIXME: What about any other headers in the list ? */
8285 /* Now generate the data (for "contents"). */
8287 /* Fill in zeroth symbol and swap it out. */
8288 Elf_Internal_Sym sym
;
8294 sym
.st_shndx
= SHN_UNDEF
;
8295 sym
.st_target_internal
= 0;
8296 symstrtab
[0].sym
= sym
;
8297 symstrtab
[0].dest_index
= outbound_syms_index
;
8298 outbound_syms_index
++;
8302 = (bed
->elf_backend_name_local_section_symbols
8303 && bed
->elf_backend_name_local_section_symbols (abfd
));
8305 syms
= bfd_get_outsymbols (abfd
);
8306 for (idx
= 0; idx
< symcount
;)
8308 Elf_Internal_Sym sym
;
8309 bfd_vma value
= syms
[idx
]->value
;
8310 elf_symbol_type
*type_ptr
;
8311 flagword flags
= syms
[idx
]->flags
;
8314 if (!name_local_sections
8315 && (flags
& (BSF_SECTION_SYM
| BSF_GLOBAL
)) == BSF_SECTION_SYM
)
8317 /* Local section symbols have no name. */
8318 sym
.st_name
= (unsigned long) -1;
8322 /* Call _bfd_elf_strtab_offset after _bfd_elf_strtab_finalize
8323 to get the final offset for st_name. */
8325 = (unsigned long) _bfd_elf_strtab_add (stt
, syms
[idx
]->name
,
8327 if (sym
.st_name
== (unsigned long) -1)
8331 type_ptr
= elf_symbol_from (syms
[idx
]);
8333 if ((flags
& BSF_SECTION_SYM
) == 0
8334 && bfd_is_com_section (syms
[idx
]->section
))
8336 /* ELF common symbols put the alignment into the `value' field,
8337 and the size into the `size' field. This is backwards from
8338 how BFD handles it, so reverse it here. */
8339 sym
.st_size
= value
;
8340 if (type_ptr
== NULL
8341 || type_ptr
->internal_elf_sym
.st_value
== 0)
8342 sym
.st_value
= value
>= 16 ? 16 : (1 << bfd_log2 (value
));
8344 sym
.st_value
= type_ptr
->internal_elf_sym
.st_value
;
8345 sym
.st_shndx
= _bfd_elf_section_from_bfd_section
8346 (abfd
, syms
[idx
]->section
);
8350 asection
*sec
= syms
[idx
]->section
;
8353 if (sec
->output_section
)
8355 value
+= sec
->output_offset
;
8356 sec
= sec
->output_section
;
8359 /* Don't add in the section vma for relocatable output. */
8360 if (! relocatable_p
)
8362 sym
.st_value
= value
;
8363 sym
.st_size
= type_ptr
? type_ptr
->internal_elf_sym
.st_size
: 0;
8365 if (bfd_is_abs_section (sec
)
8367 && type_ptr
->internal_elf_sym
.st_shndx
!= 0)
8369 /* This symbol is in a real ELF section which we did
8370 not create as a BFD section. Undo the mapping done
8371 by copy_private_symbol_data. */
8372 shndx
= type_ptr
->internal_elf_sym
.st_shndx
;
8376 shndx
= elf_onesymtab (abfd
);
8379 shndx
= elf_dynsymtab (abfd
);
8382 shndx
= elf_strtab_sec (abfd
);
8385 shndx
= elf_shstrtab_sec (abfd
);
8388 if (elf_symtab_shndx_list (abfd
))
8389 shndx
= elf_symtab_shndx_list (abfd
)->ndx
;
8396 if (shndx
>= SHN_LOPROC
&& shndx
<= SHN_HIOS
)
8398 if (bed
->symbol_section_index
)
8399 shndx
= bed
->symbol_section_index (abfd
, type_ptr
);
8400 /* Otherwise just leave the index alone. */
8404 if (shndx
> SHN_HIOS
&& shndx
< SHN_HIRESERVE
)
8405 _bfd_error_handler (_("%pB: \
8406 Unable to handle section index %x in ELF symbol. Using ABS instead."),
8415 shndx
= _bfd_elf_section_from_bfd_section (abfd
, sec
);
8417 if (shndx
== SHN_BAD
)
8421 /* Writing this would be a hell of a lot easier if
8422 we had some decent documentation on bfd, and
8423 knew what to expect of the library, and what to
8424 demand of applications. For example, it
8425 appears that `objcopy' might not set the
8426 section of a symbol to be a section that is
8427 actually in the output file. */
8428 sec2
= bfd_get_section_by_name (abfd
, sec
->name
);
8430 shndx
= _bfd_elf_section_from_bfd_section (abfd
, sec2
);
8431 if (shndx
== SHN_BAD
)
8433 /* xgettext:c-format */
8435 (_("unable to find equivalent output section"
8436 " for symbol '%s' from section '%s'"),
8437 syms
[idx
]->name
? syms
[idx
]->name
: "<Local sym>",
8439 bfd_set_error (bfd_error_invalid_operation
);
8445 sym
.st_shndx
= shndx
;
8448 if ((flags
& BSF_THREAD_LOCAL
) != 0)
8450 else if ((flags
& BSF_GNU_INDIRECT_FUNCTION
) != 0)
8451 type
= STT_GNU_IFUNC
;
8452 else if ((flags
& BSF_FUNCTION
) != 0)
8454 else if ((flags
& BSF_OBJECT
) != 0)
8456 else if ((flags
& BSF_RELC
) != 0)
8458 else if ((flags
& BSF_SRELC
) != 0)
8463 if (syms
[idx
]->section
->flags
& SEC_THREAD_LOCAL
)
8466 /* Processor-specific types. */
8467 if (type_ptr
!= NULL
8468 && bed
->elf_backend_get_symbol_type
)
8469 type
= ((*bed
->elf_backend_get_symbol_type
)
8470 (&type_ptr
->internal_elf_sym
, type
));
8472 if (flags
& BSF_SECTION_SYM
)
8474 if (flags
& BSF_GLOBAL
)
8475 sym
.st_info
= ELF_ST_INFO (STB_GLOBAL
, STT_SECTION
);
8477 sym
.st_info
= ELF_ST_INFO (STB_LOCAL
, STT_SECTION
);
8479 else if (bfd_is_com_section (syms
[idx
]->section
))
8481 if (type
!= STT_TLS
)
8483 if ((abfd
->flags
& BFD_CONVERT_ELF_COMMON
))
8484 type
= ((abfd
->flags
& BFD_USE_ELF_STT_COMMON
)
8485 ? STT_COMMON
: STT_OBJECT
);
8487 type
= ((flags
& BSF_ELF_COMMON
) != 0
8488 ? STT_COMMON
: STT_OBJECT
);
8490 sym
.st_info
= ELF_ST_INFO (STB_GLOBAL
, type
);
8492 else if (bfd_is_und_section (syms
[idx
]->section
))
8493 sym
.st_info
= ELF_ST_INFO (((flags
& BSF_WEAK
)
8497 else if (flags
& BSF_FILE
)
8498 sym
.st_info
= ELF_ST_INFO (STB_LOCAL
, STT_FILE
);
8501 int bind
= STB_LOCAL
;
8503 if (flags
& BSF_LOCAL
)
8505 else if (flags
& BSF_GNU_UNIQUE
)
8506 bind
= STB_GNU_UNIQUE
;
8507 else if (flags
& BSF_WEAK
)
8509 else if (flags
& BSF_GLOBAL
)
8512 sym
.st_info
= ELF_ST_INFO (bind
, type
);
8515 if (type_ptr
!= NULL
)
8517 sym
.st_other
= type_ptr
->internal_elf_sym
.st_other
;
8518 sym
.st_target_internal
8519 = type_ptr
->internal_elf_sym
.st_target_internal
;
8524 sym
.st_target_internal
= 0;
8528 symstrtab
[idx
].sym
= sym
;
8529 symstrtab
[idx
].dest_index
= outbound_syms_index
;
8531 outbound_syms_index
++;
8534 /* Finalize the .strtab section. */
8535 _bfd_elf_strtab_finalize (stt
);
8537 /* Swap out the .strtab section. */
8538 for (idx
= 0; idx
<= symcount
; idx
++)
8540 struct elf_sym_strtab
*elfsym
= &symstrtab
[idx
];
8541 if (elfsym
->sym
.st_name
== (unsigned long) -1)
8542 elfsym
->sym
.st_name
= 0;
8544 elfsym
->sym
.st_name
= _bfd_elf_strtab_offset (stt
,
8545 elfsym
->sym
.st_name
);
8546 if (info
&& info
->callbacks
->ctf_new_symbol
)
8547 info
->callbacks
->ctf_new_symbol (elfsym
->dest_index
,
8550 /* Inform the linker of the addition of this symbol. */
8552 bed
->s
->swap_symbol_out (abfd
, &elfsym
->sym
,
8554 + (elfsym
->dest_index
8555 * bed
->s
->sizeof_sym
)),
8556 NPTR_ADD (outbound_shndx
,
8558 * sizeof (Elf_External_Sym_Shndx
))));
8563 symstrtab_hdr
->sh_size
= _bfd_elf_strtab_size (stt
);
8564 symstrtab_hdr
->sh_type
= SHT_STRTAB
;
8565 symstrtab_hdr
->sh_flags
= bed
->elf_strtab_flags
;
8566 symstrtab_hdr
->sh_addr
= 0;
8567 symstrtab_hdr
->sh_entsize
= 0;
8568 symstrtab_hdr
->sh_link
= 0;
8569 symstrtab_hdr
->sh_info
= 0;
8570 symstrtab_hdr
->sh_addralign
= 1;
8575 /* Return the number of bytes required to hold the symtab vector.
8577 Note that we base it on the count plus 1, since we will null terminate
8578 the vector allocated based on this size. However, the ELF symbol table
8579 always has a dummy entry as symbol #0, so it ends up even. */
8582 _bfd_elf_get_symtab_upper_bound (bfd
*abfd
)
8584 bfd_size_type symcount
;
8586 Elf_Internal_Shdr
*hdr
= &elf_tdata (abfd
)->symtab_hdr
;
8588 symcount
= hdr
->sh_size
/ get_elf_backend_data (abfd
)->s
->sizeof_sym
;
8589 if (symcount
> LONG_MAX
/ sizeof (asymbol
*))
8591 bfd_set_error (bfd_error_file_too_big
);
8594 symtab_size
= symcount
* (sizeof (asymbol
*));
8596 symtab_size
= sizeof (asymbol
*);
8597 else if (!bfd_write_p (abfd
))
8599 ufile_ptr filesize
= bfd_get_file_size (abfd
);
8601 if (filesize
!= 0 && (unsigned long) symtab_size
> filesize
)
8603 bfd_set_error (bfd_error_file_truncated
);
8612 _bfd_elf_get_dynamic_symtab_upper_bound (bfd
*abfd
)
8614 bfd_size_type symcount
;
8616 Elf_Internal_Shdr
*hdr
= &elf_tdata (abfd
)->dynsymtab_hdr
;
8618 if (elf_dynsymtab (abfd
) == 0)
8620 bfd_set_error (bfd_error_invalid_operation
);
8624 symcount
= hdr
->sh_size
/ get_elf_backend_data (abfd
)->s
->sizeof_sym
;
8625 if (symcount
> LONG_MAX
/ sizeof (asymbol
*))
8627 bfd_set_error (bfd_error_file_too_big
);
8630 symtab_size
= symcount
* (sizeof (asymbol
*));
8632 symtab_size
= sizeof (asymbol
*);
8633 else if (!bfd_write_p (abfd
))
8635 ufile_ptr filesize
= bfd_get_file_size (abfd
);
8637 if (filesize
!= 0 && (unsigned long) symtab_size
> filesize
)
8639 bfd_set_error (bfd_error_file_truncated
);
8648 _bfd_elf_get_reloc_upper_bound (bfd
*abfd
, sec_ptr asect
)
8650 if (asect
->reloc_count
!= 0 && !bfd_write_p (abfd
))
8652 /* Sanity check reloc section size. */
8653 struct bfd_elf_section_data
*d
= elf_section_data (asect
);
8654 Elf_Internal_Shdr
*rel_hdr
= &d
->this_hdr
;
8655 bfd_size_type ext_rel_size
= rel_hdr
->sh_size
;
8656 ufile_ptr filesize
= bfd_get_file_size (abfd
);
8658 if (filesize
!= 0 && ext_rel_size
> filesize
)
8660 bfd_set_error (bfd_error_file_truncated
);
8665 #if SIZEOF_LONG == SIZEOF_INT
8666 if (asect
->reloc_count
>= LONG_MAX
/ sizeof (arelent
*))
8668 bfd_set_error (bfd_error_file_too_big
);
8672 return (asect
->reloc_count
+ 1L) * sizeof (arelent
*);
8675 /* Canonicalize the relocs. */
8678 _bfd_elf_canonicalize_reloc (bfd
*abfd
,
8685 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
8687 if (! bed
->s
->slurp_reloc_table (abfd
, section
, symbols
, false))
8690 tblptr
= section
->relocation
;
8691 for (i
= 0; i
< section
->reloc_count
; i
++)
8692 *relptr
++ = tblptr
++;
8696 return section
->reloc_count
;
8700 _bfd_elf_canonicalize_symtab (bfd
*abfd
, asymbol
**allocation
)
8702 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
8703 long symcount
= bed
->s
->slurp_symbol_table (abfd
, allocation
, false);
8706 abfd
->symcount
= symcount
;
8711 _bfd_elf_canonicalize_dynamic_symtab (bfd
*abfd
,
8712 asymbol
**allocation
)
8714 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
8715 long symcount
= bed
->s
->slurp_symbol_table (abfd
, allocation
, true);
8718 abfd
->dynsymcount
= symcount
;
8722 /* Return the size required for the dynamic reloc entries. Any loadable
8723 section that was actually installed in the BFD, and has type SHT_REL
8724 or SHT_RELA, and uses the dynamic symbol table, is considered to be a
8725 dynamic reloc section. */
8728 _bfd_elf_get_dynamic_reloc_upper_bound (bfd
*abfd
)
8730 bfd_size_type count
, ext_rel_size
;
8733 if (elf_dynsymtab (abfd
) == 0)
8735 bfd_set_error (bfd_error_invalid_operation
);
8741 for (s
= abfd
->sections
; s
!= NULL
; s
= s
->next
)
8742 if (elf_section_data (s
)->this_hdr
.sh_link
== elf_dynsymtab (abfd
)
8743 && (elf_section_data (s
)->this_hdr
.sh_type
== SHT_REL
8744 || elf_section_data (s
)->this_hdr
.sh_type
== SHT_RELA
))
8746 ext_rel_size
+= s
->size
;
8747 if (ext_rel_size
< s
->size
)
8749 bfd_set_error (bfd_error_file_truncated
);
8752 count
+= s
->size
/ elf_section_data (s
)->this_hdr
.sh_entsize
;
8753 if (count
> LONG_MAX
/ sizeof (arelent
*))
8755 bfd_set_error (bfd_error_file_too_big
);
8759 if (count
> 1 && !bfd_write_p (abfd
))
8761 /* Sanity check reloc section sizes. */
8762 ufile_ptr filesize
= bfd_get_file_size (abfd
);
8763 if (filesize
!= 0 && ext_rel_size
> filesize
)
8765 bfd_set_error (bfd_error_file_truncated
);
8769 return count
* sizeof (arelent
*);
8772 /* Canonicalize the dynamic relocation entries. Note that we return the
8773 dynamic relocations as a single block, although they are actually
8774 associated with particular sections; the interface, which was
8775 designed for SunOS style shared libraries, expects that there is only
8776 one set of dynamic relocs. Any loadable section that was actually
8777 installed in the BFD, and has type SHT_REL or SHT_RELA, and uses the
8778 dynamic symbol table, is considered to be a dynamic reloc section. */
8781 _bfd_elf_canonicalize_dynamic_reloc (bfd
*abfd
,
8785 bool (*slurp_relocs
) (bfd
*, asection
*, asymbol
**, bool);
8789 if (elf_dynsymtab (abfd
) == 0)
8791 bfd_set_error (bfd_error_invalid_operation
);
8795 slurp_relocs
= get_elf_backend_data (abfd
)->s
->slurp_reloc_table
;
8797 for (s
= abfd
->sections
; s
!= NULL
; s
= s
->next
)
8799 if (elf_section_data (s
)->this_hdr
.sh_link
== elf_dynsymtab (abfd
)
8800 && (elf_section_data (s
)->this_hdr
.sh_type
== SHT_REL
8801 || elf_section_data (s
)->this_hdr
.sh_type
== SHT_RELA
))
8806 if (! (*slurp_relocs
) (abfd
, s
, syms
, true))
8808 count
= s
->size
/ elf_section_data (s
)->this_hdr
.sh_entsize
;
8810 for (i
= 0; i
< count
; i
++)
8821 /* Read in the version information. */
8824 _bfd_elf_slurp_version_tables (bfd
*abfd
, bool default_imported_symver
)
8826 bfd_byte
*contents
= NULL
;
8827 unsigned int freeidx
= 0;
8830 if (elf_dynverref (abfd
) != 0)
8832 Elf_Internal_Shdr
*hdr
;
8833 Elf_External_Verneed
*everneed
;
8834 Elf_Internal_Verneed
*iverneed
;
8836 bfd_byte
*contents_end
;
8838 hdr
= &elf_tdata (abfd
)->dynverref_hdr
;
8840 if (hdr
->sh_info
== 0
8841 || hdr
->sh_info
> hdr
->sh_size
/ sizeof (Elf_External_Verneed
))
8843 error_return_bad_verref
:
8845 (_("%pB: .gnu.version_r invalid entry"), abfd
);
8846 bfd_set_error (bfd_error_bad_value
);
8847 error_return_verref
:
8848 elf_tdata (abfd
)->verref
= NULL
;
8849 elf_tdata (abfd
)->cverrefs
= 0;
8853 if (bfd_seek (abfd
, hdr
->sh_offset
, SEEK_SET
) != 0)
8854 goto error_return_verref
;
8855 contents
= _bfd_malloc_and_read (abfd
, hdr
->sh_size
, hdr
->sh_size
);
8856 if (contents
== NULL
)
8857 goto error_return_verref
;
8859 if (_bfd_mul_overflow (hdr
->sh_info
, sizeof (Elf_Internal_Verneed
), &amt
))
8861 bfd_set_error (bfd_error_file_too_big
);
8862 goto error_return_verref
;
8864 elf_tdata (abfd
)->verref
= (Elf_Internal_Verneed
*) bfd_alloc (abfd
, amt
);
8865 if (elf_tdata (abfd
)->verref
== NULL
)
8866 goto error_return_verref
;
8868 BFD_ASSERT (sizeof (Elf_External_Verneed
)
8869 == sizeof (Elf_External_Vernaux
));
8870 contents_end
= contents
+ hdr
->sh_size
- sizeof (Elf_External_Verneed
);
8871 everneed
= (Elf_External_Verneed
*) contents
;
8872 iverneed
= elf_tdata (abfd
)->verref
;
8873 for (i
= 0; i
< hdr
->sh_info
; i
++, iverneed
++)
8875 Elf_External_Vernaux
*evernaux
;
8876 Elf_Internal_Vernaux
*ivernaux
;
8879 _bfd_elf_swap_verneed_in (abfd
, everneed
, iverneed
);
8881 iverneed
->vn_bfd
= abfd
;
8883 iverneed
->vn_filename
=
8884 bfd_elf_string_from_elf_section (abfd
, hdr
->sh_link
,
8886 if (iverneed
->vn_filename
== NULL
)
8887 goto error_return_bad_verref
;
8889 if (iverneed
->vn_cnt
== 0)
8890 iverneed
->vn_auxptr
= NULL
;
8893 if (_bfd_mul_overflow (iverneed
->vn_cnt
,
8894 sizeof (Elf_Internal_Vernaux
), &amt
))
8896 bfd_set_error (bfd_error_file_too_big
);
8897 goto error_return_verref
;
8899 iverneed
->vn_auxptr
= (struct elf_internal_vernaux
*)
8900 bfd_alloc (abfd
, amt
);
8901 if (iverneed
->vn_auxptr
== NULL
)
8902 goto error_return_verref
;
8905 if (iverneed
->vn_aux
8906 > (size_t) (contents_end
- (bfd_byte
*) everneed
))
8907 goto error_return_bad_verref
;
8909 evernaux
= ((Elf_External_Vernaux
*)
8910 ((bfd_byte
*) everneed
+ iverneed
->vn_aux
));
8911 ivernaux
= iverneed
->vn_auxptr
;
8912 for (j
= 0; j
< iverneed
->vn_cnt
; j
++, ivernaux
++)
8914 _bfd_elf_swap_vernaux_in (abfd
, evernaux
, ivernaux
);
8916 ivernaux
->vna_nodename
=
8917 bfd_elf_string_from_elf_section (abfd
, hdr
->sh_link
,
8918 ivernaux
->vna_name
);
8919 if (ivernaux
->vna_nodename
== NULL
)
8920 goto error_return_bad_verref
;
8922 if (ivernaux
->vna_other
> freeidx
)
8923 freeidx
= ivernaux
->vna_other
;
8925 ivernaux
->vna_nextptr
= NULL
;
8926 if (ivernaux
->vna_next
== 0)
8928 iverneed
->vn_cnt
= j
+ 1;
8931 if (j
+ 1 < iverneed
->vn_cnt
)
8932 ivernaux
->vna_nextptr
= ivernaux
+ 1;
8934 if (ivernaux
->vna_next
8935 > (size_t) (contents_end
- (bfd_byte
*) evernaux
))
8936 goto error_return_bad_verref
;
8938 evernaux
= ((Elf_External_Vernaux
*)
8939 ((bfd_byte
*) evernaux
+ ivernaux
->vna_next
));
8942 iverneed
->vn_nextref
= NULL
;
8943 if (iverneed
->vn_next
== 0)
8945 if (i
+ 1 < hdr
->sh_info
)
8946 iverneed
->vn_nextref
= iverneed
+ 1;
8948 if (iverneed
->vn_next
8949 > (size_t) (contents_end
- (bfd_byte
*) everneed
))
8950 goto error_return_bad_verref
;
8952 everneed
= ((Elf_External_Verneed
*)
8953 ((bfd_byte
*) everneed
+ iverneed
->vn_next
));
8955 elf_tdata (abfd
)->cverrefs
= i
;
8961 if (elf_dynverdef (abfd
) != 0)
8963 Elf_Internal_Shdr
*hdr
;
8964 Elf_External_Verdef
*everdef
;
8965 Elf_Internal_Verdef
*iverdef
;
8966 Elf_Internal_Verdef
*iverdefarr
;
8967 Elf_Internal_Verdef iverdefmem
;
8969 unsigned int maxidx
;
8970 bfd_byte
*contents_end_def
, *contents_end_aux
;
8972 hdr
= &elf_tdata (abfd
)->dynverdef_hdr
;
8974 if (hdr
->sh_info
== 0 || hdr
->sh_size
< sizeof (Elf_External_Verdef
))
8976 error_return_bad_verdef
:
8978 (_("%pB: .gnu.version_d invalid entry"), abfd
);
8979 bfd_set_error (bfd_error_bad_value
);
8980 error_return_verdef
:
8981 elf_tdata (abfd
)->verdef
= NULL
;
8982 elf_tdata (abfd
)->cverdefs
= 0;
8986 if (bfd_seek (abfd
, hdr
->sh_offset
, SEEK_SET
) != 0)
8987 goto error_return_verdef
;
8988 contents
= _bfd_malloc_and_read (abfd
, hdr
->sh_size
, hdr
->sh_size
);
8989 if (contents
== NULL
)
8990 goto error_return_verdef
;
8992 BFD_ASSERT (sizeof (Elf_External_Verdef
)
8993 >= sizeof (Elf_External_Verdaux
));
8994 contents_end_def
= contents
+ hdr
->sh_size
8995 - sizeof (Elf_External_Verdef
);
8996 contents_end_aux
= contents
+ hdr
->sh_size
8997 - sizeof (Elf_External_Verdaux
);
8999 /* We know the number of entries in the section but not the maximum
9000 index. Therefore we have to run through all entries and find
9002 everdef
= (Elf_External_Verdef
*) contents
;
9004 for (i
= 0; i
< hdr
->sh_info
; ++i
)
9006 _bfd_elf_swap_verdef_in (abfd
, everdef
, &iverdefmem
);
9008 if ((iverdefmem
.vd_ndx
& ((unsigned) VERSYM_VERSION
)) == 0)
9009 goto error_return_bad_verdef
;
9010 if ((iverdefmem
.vd_ndx
& ((unsigned) VERSYM_VERSION
)) > maxidx
)
9011 maxidx
= iverdefmem
.vd_ndx
& ((unsigned) VERSYM_VERSION
);
9013 if (iverdefmem
.vd_next
== 0)
9016 if (iverdefmem
.vd_next
9017 > (size_t) (contents_end_def
- (bfd_byte
*) everdef
))
9018 goto error_return_bad_verdef
;
9020 everdef
= ((Elf_External_Verdef
*)
9021 ((bfd_byte
*) everdef
+ iverdefmem
.vd_next
));
9024 if (default_imported_symver
)
9026 if (freeidx
> maxidx
)
9031 if (_bfd_mul_overflow (maxidx
, sizeof (Elf_Internal_Verdef
), &amt
))
9033 bfd_set_error (bfd_error_file_too_big
);
9034 goto error_return_verdef
;
9036 elf_tdata (abfd
)->verdef
= (Elf_Internal_Verdef
*) bfd_zalloc (abfd
, amt
);
9037 if (elf_tdata (abfd
)->verdef
== NULL
)
9038 goto error_return_verdef
;
9040 elf_tdata (abfd
)->cverdefs
= maxidx
;
9042 everdef
= (Elf_External_Verdef
*) contents
;
9043 iverdefarr
= elf_tdata (abfd
)->verdef
;
9044 for (i
= 0; i
< hdr
->sh_info
; i
++)
9046 Elf_External_Verdaux
*everdaux
;
9047 Elf_Internal_Verdaux
*iverdaux
;
9050 _bfd_elf_swap_verdef_in (abfd
, everdef
, &iverdefmem
);
9052 if ((iverdefmem
.vd_ndx
& VERSYM_VERSION
) == 0)
9053 goto error_return_bad_verdef
;
9055 iverdef
= &iverdefarr
[(iverdefmem
.vd_ndx
& VERSYM_VERSION
) - 1];
9056 memcpy (iverdef
, &iverdefmem
, offsetof (Elf_Internal_Verdef
, vd_bfd
));
9058 iverdef
->vd_bfd
= abfd
;
9060 if (iverdef
->vd_cnt
== 0)
9061 iverdef
->vd_auxptr
= NULL
;
9064 if (_bfd_mul_overflow (iverdef
->vd_cnt
,
9065 sizeof (Elf_Internal_Verdaux
), &amt
))
9067 bfd_set_error (bfd_error_file_too_big
);
9068 goto error_return_verdef
;
9070 iverdef
->vd_auxptr
= (struct elf_internal_verdaux
*)
9071 bfd_alloc (abfd
, amt
);
9072 if (iverdef
->vd_auxptr
== NULL
)
9073 goto error_return_verdef
;
9077 > (size_t) (contents_end_aux
- (bfd_byte
*) everdef
))
9078 goto error_return_bad_verdef
;
9080 everdaux
= ((Elf_External_Verdaux
*)
9081 ((bfd_byte
*) everdef
+ iverdef
->vd_aux
));
9082 iverdaux
= iverdef
->vd_auxptr
;
9083 for (j
= 0; j
< iverdef
->vd_cnt
; j
++, iverdaux
++)
9085 _bfd_elf_swap_verdaux_in (abfd
, everdaux
, iverdaux
);
9087 iverdaux
->vda_nodename
=
9088 bfd_elf_string_from_elf_section (abfd
, hdr
->sh_link
,
9089 iverdaux
->vda_name
);
9090 if (iverdaux
->vda_nodename
== NULL
)
9091 goto error_return_bad_verdef
;
9093 iverdaux
->vda_nextptr
= NULL
;
9094 if (iverdaux
->vda_next
== 0)
9096 iverdef
->vd_cnt
= j
+ 1;
9099 if (j
+ 1 < iverdef
->vd_cnt
)
9100 iverdaux
->vda_nextptr
= iverdaux
+ 1;
9102 if (iverdaux
->vda_next
9103 > (size_t) (contents_end_aux
- (bfd_byte
*) everdaux
))
9104 goto error_return_bad_verdef
;
9106 everdaux
= ((Elf_External_Verdaux
*)
9107 ((bfd_byte
*) everdaux
+ iverdaux
->vda_next
));
9110 iverdef
->vd_nodename
= NULL
;
9111 if (iverdef
->vd_cnt
)
9112 iverdef
->vd_nodename
= iverdef
->vd_auxptr
->vda_nodename
;
9114 iverdef
->vd_nextdef
= NULL
;
9115 if (iverdef
->vd_next
== 0)
9117 if ((size_t) (iverdef
- iverdefarr
) + 1 < maxidx
)
9118 iverdef
->vd_nextdef
= iverdef
+ 1;
9120 everdef
= ((Elf_External_Verdef
*)
9121 ((bfd_byte
*) everdef
+ iverdef
->vd_next
));
9127 else if (default_imported_symver
)
9134 if (_bfd_mul_overflow (freeidx
, sizeof (Elf_Internal_Verdef
), &amt
))
9136 bfd_set_error (bfd_error_file_too_big
);
9139 elf_tdata (abfd
)->verdef
= (Elf_Internal_Verdef
*) bfd_zalloc (abfd
, amt
);
9140 if (elf_tdata (abfd
)->verdef
== NULL
)
9143 elf_tdata (abfd
)->cverdefs
= freeidx
;
9146 /* Create a default version based on the soname. */
9147 if (default_imported_symver
)
9149 Elf_Internal_Verdef
*iverdef
;
9150 Elf_Internal_Verdaux
*iverdaux
;
9152 iverdef
= &elf_tdata (abfd
)->verdef
[freeidx
- 1];
9154 iverdef
->vd_version
= VER_DEF_CURRENT
;
9155 iverdef
->vd_flags
= 0;
9156 iverdef
->vd_ndx
= freeidx
;
9157 iverdef
->vd_cnt
= 1;
9159 iverdef
->vd_bfd
= abfd
;
9161 iverdef
->vd_nodename
= bfd_elf_get_dt_soname (abfd
);
9162 if (iverdef
->vd_nodename
== NULL
)
9163 goto error_return_verdef
;
9164 iverdef
->vd_nextdef
= NULL
;
9165 iverdef
->vd_auxptr
= ((struct elf_internal_verdaux
*)
9166 bfd_zalloc (abfd
, sizeof (Elf_Internal_Verdaux
)));
9167 if (iverdef
->vd_auxptr
== NULL
)
9168 goto error_return_verdef
;
9170 iverdaux
= iverdef
->vd_auxptr
;
9171 iverdaux
->vda_nodename
= iverdef
->vd_nodename
;
9182 _bfd_elf_make_empty_symbol (bfd
*abfd
)
9184 elf_symbol_type
*newsym
;
9186 newsym
= (elf_symbol_type
*) bfd_zalloc (abfd
, sizeof (*newsym
));
9189 newsym
->symbol
.the_bfd
= abfd
;
9190 return &newsym
->symbol
;
9194 _bfd_elf_get_symbol_info (bfd
*abfd ATTRIBUTE_UNUSED
,
9198 bfd_symbol_info (symbol
, ret
);
9201 /* Return whether a symbol name implies a local symbol. Most targets
9202 use this function for the is_local_label_name entry point, but some
9206 _bfd_elf_is_local_label_name (bfd
*abfd ATTRIBUTE_UNUSED
,
9209 /* Normal local symbols start with ``.L''. */
9210 if (name
[0] == '.' && name
[1] == 'L')
9213 /* At least some SVR4 compilers (e.g., UnixWare 2.1 cc) generate
9214 DWARF debugging symbols starting with ``..''. */
9215 if (name
[0] == '.' && name
[1] == '.')
9218 /* gcc will sometimes generate symbols beginning with ``_.L_'' when
9219 emitting DWARF debugging output. I suspect this is actually a
9220 small bug in gcc (it calls ASM_OUTPUT_LABEL when it should call
9221 ASM_GENERATE_INTERNAL_LABEL, and this causes the leading
9222 underscore to be emitted on some ELF targets). For ease of use,
9223 we treat such symbols as local. */
9224 if (name
[0] == '_' && name
[1] == '.' && name
[2] == 'L' && name
[3] == '_')
9227 /* Treat assembler generated fake symbols, dollar local labels and
9228 forward-backward labels (aka local labels) as locals.
9229 These labels have the form:
9231 L0^A.* (fake symbols)
9233 [.]?L[0123456789]+{^A|^B}[0123456789]* (local labels)
9235 Versions which start with .L will have already been matched above,
9236 so we only need to match the rest. */
9237 if (name
[0] == 'L' && ISDIGIT (name
[1]))
9243 for (p
= name
+ 2; (c
= *p
); p
++)
9245 if (c
== 1 || c
== 2)
9247 if (c
== 1 && p
== name
+ 2)
9248 /* A fake symbol. */
9251 /* FIXME: We are being paranoid here and treating symbols like
9252 L0^Bfoo as if there were non-local, on the grounds that the
9253 assembler will never generate them. But can any symbol
9254 containing an ASCII value in the range 1-31 ever be anything
9255 other than some kind of local ? */
9272 _bfd_elf_get_lineno (bfd
*abfd ATTRIBUTE_UNUSED
,
9273 asymbol
*symbol ATTRIBUTE_UNUSED
)
9280 _bfd_elf_set_arch_mach (bfd
*abfd
,
9281 enum bfd_architecture arch
,
9282 unsigned long machine
)
9284 /* If this isn't the right architecture for this backend, and this
9285 isn't the generic backend, fail. */
9286 if (arch
!= get_elf_backend_data (abfd
)->arch
9287 && arch
!= bfd_arch_unknown
9288 && get_elf_backend_data (abfd
)->arch
!= bfd_arch_unknown
)
9291 return bfd_default_set_arch_mach (abfd
, arch
, machine
);
9294 /* Find the nearest line to a particular section and offset,
9295 for error reporting. */
9298 _bfd_elf_find_nearest_line (bfd
*abfd
,
9302 const char **filename_ptr
,
9303 const char **functionname_ptr
,
9304 unsigned int *line_ptr
,
9305 unsigned int *discriminator_ptr
)
9309 if (_bfd_dwarf2_find_nearest_line (abfd
, symbols
, NULL
, section
, offset
,
9310 filename_ptr
, functionname_ptr
,
9311 line_ptr
, discriminator_ptr
,
9312 dwarf_debug_sections
,
9313 &elf_tdata (abfd
)->dwarf2_find_line_info
))
9316 if (_bfd_dwarf1_find_nearest_line (abfd
, symbols
, section
, offset
,
9317 filename_ptr
, functionname_ptr
, line_ptr
))
9319 if (!*functionname_ptr
)
9320 _bfd_elf_find_function (abfd
, symbols
, section
, offset
,
9321 *filename_ptr
? NULL
: filename_ptr
,
9326 if (! _bfd_stab_section_find_nearest_line (abfd
, symbols
, section
, offset
,
9327 &found
, filename_ptr
,
9328 functionname_ptr
, line_ptr
,
9329 &elf_tdata (abfd
)->line_info
))
9331 if (found
&& (*functionname_ptr
|| *line_ptr
))
9334 if (symbols
== NULL
)
9337 if (! _bfd_elf_find_function (abfd
, symbols
, section
, offset
,
9338 filename_ptr
, functionname_ptr
))
9345 /* Find the line for a symbol. */
9348 _bfd_elf_find_line (bfd
*abfd
, asymbol
**symbols
, asymbol
*symbol
,
9349 const char **filename_ptr
, unsigned int *line_ptr
)
9351 return _bfd_dwarf2_find_nearest_line (abfd
, symbols
, symbol
, NULL
, 0,
9352 filename_ptr
, NULL
, line_ptr
, NULL
,
9353 dwarf_debug_sections
,
9354 &elf_tdata (abfd
)->dwarf2_find_line_info
);
9357 /* After a call to bfd_find_nearest_line, successive calls to
9358 bfd_find_inliner_info can be used to get source information about
9359 each level of function inlining that terminated at the address
9360 passed to bfd_find_nearest_line. Currently this is only supported
9361 for DWARF2 with appropriate DWARF3 extensions. */
9364 _bfd_elf_find_inliner_info (bfd
*abfd
,
9365 const char **filename_ptr
,
9366 const char **functionname_ptr
,
9367 unsigned int *line_ptr
)
9370 found
= _bfd_dwarf2_find_inliner_info (abfd
, filename_ptr
,
9371 functionname_ptr
, line_ptr
,
9372 & elf_tdata (abfd
)->dwarf2_find_line_info
);
9377 _bfd_elf_sizeof_headers (bfd
*abfd
, struct bfd_link_info
*info
)
9379 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
9380 int ret
= bed
->s
->sizeof_ehdr
;
9382 if (!bfd_link_relocatable (info
))
9384 bfd_size_type phdr_size
= elf_program_header_size (abfd
);
9386 if (phdr_size
== (bfd_size_type
) -1)
9388 struct elf_segment_map
*m
;
9391 for (m
= elf_seg_map (abfd
); m
!= NULL
; m
= m
->next
)
9392 phdr_size
+= bed
->s
->sizeof_phdr
;
9395 phdr_size
= get_program_header_size (abfd
, info
);
9398 elf_program_header_size (abfd
) = phdr_size
;
9406 _bfd_elf_set_section_contents (bfd
*abfd
,
9408 const void *location
,
9410 bfd_size_type count
)
9412 Elf_Internal_Shdr
*hdr
;
9414 if (! abfd
->output_has_begun
9415 && ! _bfd_elf_compute_section_file_positions (abfd
, NULL
))
9421 hdr
= &elf_section_data (section
)->this_hdr
;
9422 if (hdr
->sh_offset
== (file_ptr
) -1)
9424 unsigned char *contents
;
9426 if (bfd_section_is_ctf (section
))
9427 /* Nothing to do with this section: the contents are generated
9431 if ((section
->flags
& SEC_ELF_COMPRESS
) == 0)
9434 (_("%pB:%pA: error: attempting to write into an unallocated compressed section"),
9436 bfd_set_error (bfd_error_invalid_operation
);
9440 if ((offset
+ count
) > hdr
->sh_size
)
9443 (_("%pB:%pA: error: attempting to write over the end of the section"),
9446 bfd_set_error (bfd_error_invalid_operation
);
9450 contents
= hdr
->contents
;
9451 if (contents
== NULL
)
9454 (_("%pB:%pA: error: attempting to write section into an empty buffer"),
9457 bfd_set_error (bfd_error_invalid_operation
);
9461 memcpy (contents
+ offset
, location
, count
);
9465 return _bfd_generic_set_section_contents (abfd
, section
,
9466 location
, offset
, count
);
9470 _bfd_elf_no_info_to_howto (bfd
*abfd ATTRIBUTE_UNUSED
,
9471 arelent
*cache_ptr ATTRIBUTE_UNUSED
,
9472 Elf_Internal_Rela
*dst ATTRIBUTE_UNUSED
)
9478 /* Try to convert a non-ELF reloc into an ELF one. */
9481 _bfd_elf_validate_reloc (bfd
*abfd
, arelent
*areloc
)
9483 /* Check whether we really have an ELF howto. */
9485 if ((*areloc
->sym_ptr_ptr
)->the_bfd
->xvec
!= abfd
->xvec
)
9487 bfd_reloc_code_real_type code
;
9488 reloc_howto_type
*howto
;
9490 /* Alien reloc: Try to determine its type to replace it with an
9491 equivalent ELF reloc. */
9493 if (areloc
->howto
->pc_relative
)
9495 switch (areloc
->howto
->bitsize
)
9498 code
= BFD_RELOC_8_PCREL
;
9501 code
= BFD_RELOC_12_PCREL
;
9504 code
= BFD_RELOC_16_PCREL
;
9507 code
= BFD_RELOC_24_PCREL
;
9510 code
= BFD_RELOC_32_PCREL
;
9513 code
= BFD_RELOC_64_PCREL
;
9519 howto
= bfd_reloc_type_lookup (abfd
, code
);
9521 if (howto
&& areloc
->howto
->pcrel_offset
!= howto
->pcrel_offset
)
9523 if (howto
->pcrel_offset
)
9524 areloc
->addend
+= areloc
->address
;
9526 areloc
->addend
-= areloc
->address
; /* addend is unsigned!! */
9531 switch (areloc
->howto
->bitsize
)
9537 code
= BFD_RELOC_14
;
9540 code
= BFD_RELOC_16
;
9543 code
= BFD_RELOC_26
;
9546 code
= BFD_RELOC_32
;
9549 code
= BFD_RELOC_64
;
9555 howto
= bfd_reloc_type_lookup (abfd
, code
);
9559 areloc
->howto
= howto
;
9567 /* xgettext:c-format */
9568 _bfd_error_handler (_("%pB: %s unsupported"),
9569 abfd
, areloc
->howto
->name
);
9570 bfd_set_error (bfd_error_sorry
);
9575 _bfd_elf_close_and_cleanup (bfd
*abfd
)
9577 struct elf_obj_tdata
*tdata
= elf_tdata (abfd
);
9579 && (bfd_get_format (abfd
) == bfd_object
9580 || bfd_get_format (abfd
) == bfd_core
))
9582 if (elf_tdata (abfd
)->o
!= NULL
&& elf_shstrtab (abfd
) != NULL
)
9583 _bfd_elf_strtab_free (elf_shstrtab (abfd
));
9584 _bfd_dwarf2_cleanup_debug_info (abfd
, &tdata
->dwarf2_find_line_info
);
9587 return _bfd_generic_close_and_cleanup (abfd
);
9590 /* For Rel targets, we encode meaningful data for BFD_RELOC_VTABLE_ENTRY
9591 in the relocation's offset. Thus we cannot allow any sort of sanity
9592 range-checking to interfere. There is nothing else to do in processing
9595 bfd_reloc_status_type
9596 _bfd_elf_rel_vtable_reloc_fn
9597 (bfd
*abfd ATTRIBUTE_UNUSED
, arelent
*re ATTRIBUTE_UNUSED
,
9598 struct bfd_symbol
*symbol ATTRIBUTE_UNUSED
,
9599 void *data ATTRIBUTE_UNUSED
, asection
*is ATTRIBUTE_UNUSED
,
9600 bfd
*obfd ATTRIBUTE_UNUSED
, char **errmsg ATTRIBUTE_UNUSED
)
9602 return bfd_reloc_ok
;
9605 /* Elf core file support. Much of this only works on native
9606 toolchains, since we rely on knowing the
9607 machine-dependent procfs structure in order to pick
9608 out details about the corefile. */
9610 #ifdef HAVE_SYS_PROCFS_H
9611 # include <sys/procfs.h>
9614 /* Return a PID that identifies a "thread" for threaded cores, or the
9615 PID of the main process for non-threaded cores. */
9618 elfcore_make_pid (bfd
*abfd
)
9622 pid
= elf_tdata (abfd
)->core
->lwpid
;
9624 pid
= elf_tdata (abfd
)->core
->pid
;
9629 /* If there isn't a section called NAME, make one, using
9630 data from SECT. Note, this function will generate a
9631 reference to NAME, so you shouldn't deallocate or
9635 elfcore_maybe_make_sect (bfd
*abfd
, char *name
, asection
*sect
)
9639 if (bfd_get_section_by_name (abfd
, name
) != NULL
)
9642 sect2
= bfd_make_section_with_flags (abfd
, name
, sect
->flags
);
9646 sect2
->size
= sect
->size
;
9647 sect2
->filepos
= sect
->filepos
;
9648 sect2
->alignment_power
= sect
->alignment_power
;
9652 /* Create a pseudosection containing SIZE bytes at FILEPOS. This
9653 actually creates up to two pseudosections:
9654 - For the single-threaded case, a section named NAME, unless
9655 such a section already exists.
9656 - For the multi-threaded case, a section named "NAME/PID", where
9657 PID is elfcore_make_pid (abfd).
9658 Both pseudosections have identical contents. */
9660 _bfd_elfcore_make_pseudosection (bfd
*abfd
,
9666 char *threaded_name
;
9670 /* Build the section name. */
9672 sprintf (buf
, "%s/%d", name
, elfcore_make_pid (abfd
));
9673 len
= strlen (buf
) + 1;
9674 threaded_name
= (char *) bfd_alloc (abfd
, len
);
9675 if (threaded_name
== NULL
)
9677 memcpy (threaded_name
, buf
, len
);
9679 sect
= bfd_make_section_anyway_with_flags (abfd
, threaded_name
,
9684 sect
->filepos
= filepos
;
9685 sect
->alignment_power
= 2;
9687 return elfcore_maybe_make_sect (abfd
, name
, sect
);
9691 elfcore_make_auxv_note_section (bfd
*abfd
, Elf_Internal_Note
*note
,
9694 asection
*sect
= bfd_make_section_anyway_with_flags (abfd
, ".auxv",
9700 sect
->size
= note
->descsz
- offs
;
9701 sect
->filepos
= note
->descpos
+ offs
;
9702 sect
->alignment_power
= 1 + bfd_get_arch_size (abfd
) / 32;
9707 /* prstatus_t exists on:
9709 linux 2.[01] + glibc
9713 #if defined (HAVE_PRSTATUS_T)
9716 elfcore_grok_prstatus (bfd
*abfd
, Elf_Internal_Note
*note
)
9721 if (note
->descsz
== sizeof (prstatus_t
))
9725 size
= sizeof (prstat
.pr_reg
);
9726 offset
= offsetof (prstatus_t
, pr_reg
);
9727 memcpy (&prstat
, note
->descdata
, sizeof (prstat
));
9729 /* Do not overwrite the core signal if it
9730 has already been set by another thread. */
9731 if (elf_tdata (abfd
)->core
->signal
== 0)
9732 elf_tdata (abfd
)->core
->signal
= prstat
.pr_cursig
;
9733 if (elf_tdata (abfd
)->core
->pid
== 0)
9734 elf_tdata (abfd
)->core
->pid
= prstat
.pr_pid
;
9736 /* pr_who exists on:
9739 pr_who doesn't exist on:
9742 #if defined (HAVE_PRSTATUS_T_PR_WHO)
9743 elf_tdata (abfd
)->core
->lwpid
= prstat
.pr_who
;
9745 elf_tdata (abfd
)->core
->lwpid
= prstat
.pr_pid
;
9748 #if defined (HAVE_PRSTATUS32_T)
9749 else if (note
->descsz
== sizeof (prstatus32_t
))
9751 /* 64-bit host, 32-bit corefile */
9752 prstatus32_t prstat
;
9754 size
= sizeof (prstat
.pr_reg
);
9755 offset
= offsetof (prstatus32_t
, pr_reg
);
9756 memcpy (&prstat
, note
->descdata
, sizeof (prstat
));
9758 /* Do not overwrite the core signal if it
9759 has already been set by another thread. */
9760 if (elf_tdata (abfd
)->core
->signal
== 0)
9761 elf_tdata (abfd
)->core
->signal
= prstat
.pr_cursig
;
9762 if (elf_tdata (abfd
)->core
->pid
== 0)
9763 elf_tdata (abfd
)->core
->pid
= prstat
.pr_pid
;
9765 /* pr_who exists on:
9768 pr_who doesn't exist on:
9771 #if defined (HAVE_PRSTATUS32_T_PR_WHO)
9772 elf_tdata (abfd
)->core
->lwpid
= prstat
.pr_who
;
9774 elf_tdata (abfd
)->core
->lwpid
= prstat
.pr_pid
;
9777 #endif /* HAVE_PRSTATUS32_T */
9780 /* Fail - we don't know how to handle any other
9781 note size (ie. data object type). */
9785 /* Make a ".reg/999" section and a ".reg" section. */
9786 return _bfd_elfcore_make_pseudosection (abfd
, ".reg",
9787 size
, note
->descpos
+ offset
);
9789 #endif /* defined (HAVE_PRSTATUS_T) */
9791 /* Create a pseudosection containing the exact contents of NOTE. */
9793 elfcore_make_note_pseudosection (bfd
*abfd
,
9795 Elf_Internal_Note
*note
)
9797 return _bfd_elfcore_make_pseudosection (abfd
, name
,
9798 note
->descsz
, note
->descpos
);
9801 /* There isn't a consistent prfpregset_t across platforms,
9802 but it doesn't matter, because we don't have to pick this
9803 data structure apart. */
9806 elfcore_grok_prfpreg (bfd
*abfd
, Elf_Internal_Note
*note
)
9808 return elfcore_make_note_pseudosection (abfd
, ".reg2", note
);
9811 /* Linux dumps the Intel SSE regs in a note named "LINUX" with a note
9812 type of NT_PRXFPREG. Just include the whole note's contents
9816 elfcore_grok_prxfpreg (bfd
*abfd
, Elf_Internal_Note
*note
)
9818 return elfcore_make_note_pseudosection (abfd
, ".reg-xfp", note
);
9821 /* Linux dumps the Intel XSAVE extended state in a note named "LINUX"
9822 with a note type of NT_X86_XSTATE. Just include the whole note's
9823 contents literally. */
9826 elfcore_grok_xstatereg (bfd
*abfd
, Elf_Internal_Note
*note
)
9828 return elfcore_make_note_pseudosection (abfd
, ".reg-xstate", note
);
9832 elfcore_grok_ppc_vmx (bfd
*abfd
, Elf_Internal_Note
*note
)
9834 return elfcore_make_note_pseudosection (abfd
, ".reg-ppc-vmx", note
);
9838 elfcore_grok_ppc_vsx (bfd
*abfd
, Elf_Internal_Note
*note
)
9840 return elfcore_make_note_pseudosection (abfd
, ".reg-ppc-vsx", note
);
9844 elfcore_grok_ppc_tar (bfd
*abfd
, Elf_Internal_Note
*note
)
9846 return elfcore_make_note_pseudosection (abfd
, ".reg-ppc-tar", note
);
9850 elfcore_grok_ppc_ppr (bfd
*abfd
, Elf_Internal_Note
*note
)
9852 return elfcore_make_note_pseudosection (abfd
, ".reg-ppc-ppr", note
);
9856 elfcore_grok_ppc_dscr (bfd
*abfd
, Elf_Internal_Note
*note
)
9858 return elfcore_make_note_pseudosection (abfd
, ".reg-ppc-dscr", note
);
9862 elfcore_grok_ppc_ebb (bfd
*abfd
, Elf_Internal_Note
*note
)
9864 return elfcore_make_note_pseudosection (abfd
, ".reg-ppc-ebb", note
);
9868 elfcore_grok_ppc_pmu (bfd
*abfd
, Elf_Internal_Note
*note
)
9870 return elfcore_make_note_pseudosection (abfd
, ".reg-ppc-pmu", note
);
9874 elfcore_grok_ppc_tm_cgpr (bfd
*abfd
, Elf_Internal_Note
*note
)
9876 return elfcore_make_note_pseudosection (abfd
, ".reg-ppc-tm-cgpr", note
);
9880 elfcore_grok_ppc_tm_cfpr (bfd
*abfd
, Elf_Internal_Note
*note
)
9882 return elfcore_make_note_pseudosection (abfd
, ".reg-ppc-tm-cfpr", note
);
9886 elfcore_grok_ppc_tm_cvmx (bfd
*abfd
, Elf_Internal_Note
*note
)
9888 return elfcore_make_note_pseudosection (abfd
, ".reg-ppc-tm-cvmx", note
);
9892 elfcore_grok_ppc_tm_cvsx (bfd
*abfd
, Elf_Internal_Note
*note
)
9894 return elfcore_make_note_pseudosection (abfd
, ".reg-ppc-tm-cvsx", note
);
9898 elfcore_grok_ppc_tm_spr (bfd
*abfd
, Elf_Internal_Note
*note
)
9900 return elfcore_make_note_pseudosection (abfd
, ".reg-ppc-tm-spr", note
);
9904 elfcore_grok_ppc_tm_ctar (bfd
*abfd
, Elf_Internal_Note
*note
)
9906 return elfcore_make_note_pseudosection (abfd
, ".reg-ppc-tm-ctar", note
);
9910 elfcore_grok_ppc_tm_cppr (bfd
*abfd
, Elf_Internal_Note
*note
)
9912 return elfcore_make_note_pseudosection (abfd
, ".reg-ppc-tm-cppr", note
);
9916 elfcore_grok_ppc_tm_cdscr (bfd
*abfd
, Elf_Internal_Note
*note
)
9918 return elfcore_make_note_pseudosection (abfd
, ".reg-ppc-tm-cdscr", note
);
9922 elfcore_grok_s390_high_gprs (bfd
*abfd
, Elf_Internal_Note
*note
)
9924 return elfcore_make_note_pseudosection (abfd
, ".reg-s390-high-gprs", note
);
9928 elfcore_grok_s390_timer (bfd
*abfd
, Elf_Internal_Note
*note
)
9930 return elfcore_make_note_pseudosection (abfd
, ".reg-s390-timer", note
);
9934 elfcore_grok_s390_todcmp (bfd
*abfd
, Elf_Internal_Note
*note
)
9936 return elfcore_make_note_pseudosection (abfd
, ".reg-s390-todcmp", note
);
9940 elfcore_grok_s390_todpreg (bfd
*abfd
, Elf_Internal_Note
*note
)
9942 return elfcore_make_note_pseudosection (abfd
, ".reg-s390-todpreg", note
);
9946 elfcore_grok_s390_ctrs (bfd
*abfd
, Elf_Internal_Note
*note
)
9948 return elfcore_make_note_pseudosection (abfd
, ".reg-s390-ctrs", note
);
9952 elfcore_grok_s390_prefix (bfd
*abfd
, Elf_Internal_Note
*note
)
9954 return elfcore_make_note_pseudosection (abfd
, ".reg-s390-prefix", note
);
9958 elfcore_grok_s390_last_break (bfd
*abfd
, Elf_Internal_Note
*note
)
9960 return elfcore_make_note_pseudosection (abfd
, ".reg-s390-last-break", note
);
9964 elfcore_grok_s390_system_call (bfd
*abfd
, Elf_Internal_Note
*note
)
9966 return elfcore_make_note_pseudosection (abfd
, ".reg-s390-system-call", note
);
9970 elfcore_grok_s390_tdb (bfd
*abfd
, Elf_Internal_Note
*note
)
9972 return elfcore_make_note_pseudosection (abfd
, ".reg-s390-tdb", note
);
9976 elfcore_grok_s390_vxrs_low (bfd
*abfd
, Elf_Internal_Note
*note
)
9978 return elfcore_make_note_pseudosection (abfd
, ".reg-s390-vxrs-low", note
);
9982 elfcore_grok_s390_vxrs_high (bfd
*abfd
, Elf_Internal_Note
*note
)
9984 return elfcore_make_note_pseudosection (abfd
, ".reg-s390-vxrs-high", note
);
9988 elfcore_grok_s390_gs_cb (bfd
*abfd
, Elf_Internal_Note
*note
)
9990 return elfcore_make_note_pseudosection (abfd
, ".reg-s390-gs-cb", note
);
9994 elfcore_grok_s390_gs_bc (bfd
*abfd
, Elf_Internal_Note
*note
)
9996 return elfcore_make_note_pseudosection (abfd
, ".reg-s390-gs-bc", note
);
10000 elfcore_grok_arm_vfp (bfd
*abfd
, Elf_Internal_Note
*note
)
10002 return elfcore_make_note_pseudosection (abfd
, ".reg-arm-vfp", note
);
10006 elfcore_grok_aarch_tls (bfd
*abfd
, Elf_Internal_Note
*note
)
10008 return elfcore_make_note_pseudosection (abfd
, ".reg-aarch-tls", note
);
10012 elfcore_grok_aarch_hw_break (bfd
*abfd
, Elf_Internal_Note
*note
)
10014 return elfcore_make_note_pseudosection (abfd
, ".reg-aarch-hw-break", note
);
10018 elfcore_grok_aarch_hw_watch (bfd
*abfd
, Elf_Internal_Note
*note
)
10020 return elfcore_make_note_pseudosection (abfd
, ".reg-aarch-hw-watch", note
);
10024 elfcore_grok_aarch_sve (bfd
*abfd
, Elf_Internal_Note
*note
)
10026 return elfcore_make_note_pseudosection (abfd
, ".reg-aarch-sve", note
);
10030 elfcore_grok_aarch_pauth (bfd
*abfd
, Elf_Internal_Note
*note
)
10032 return elfcore_make_note_pseudosection (abfd
, ".reg-aarch-pauth", note
);
10036 elfcore_grok_aarch_mte (bfd
*abfd
, Elf_Internal_Note
*note
)
10038 return elfcore_make_note_pseudosection (abfd
, ".reg-aarch-mte",
10043 elfcore_grok_arc_v2 (bfd
*abfd
, Elf_Internal_Note
*note
)
10045 return elfcore_make_note_pseudosection (abfd
, ".reg-arc-v2", note
);
10048 /* Convert NOTE into a bfd_section called ".reg-riscv-csr". Return TRUE if
10049 successful otherwise, return FALSE. */
10052 elfcore_grok_riscv_csr (bfd
*abfd
, Elf_Internal_Note
*note
)
10054 return elfcore_make_note_pseudosection (abfd
, ".reg-riscv-csr", note
);
10057 /* Convert NOTE into a bfd_section called ".gdb-tdesc". Return TRUE if
10058 successful otherwise, return FALSE. */
10061 elfcore_grok_gdb_tdesc (bfd
*abfd
, Elf_Internal_Note
*note
)
10063 return elfcore_make_note_pseudosection (abfd
, ".gdb-tdesc", note
);
10067 elfcore_grok_loongarch_cpucfg (bfd
*abfd
, Elf_Internal_Note
*note
)
10069 return elfcore_make_note_pseudosection (abfd
, ".reg-loongarch-cpucfg", note
);
10073 elfcore_grok_loongarch_lbt (bfd
*abfd
, Elf_Internal_Note
*note
)
10075 return elfcore_make_note_pseudosection (abfd
, ".reg-loongarch-lbt", note
);
10079 elfcore_grok_loongarch_lsx (bfd
*abfd
, Elf_Internal_Note
*note
)
10081 return elfcore_make_note_pseudosection (abfd
, ".reg-loongarch-lsx", note
);
10085 elfcore_grok_loongarch_lasx (bfd
*abfd
, Elf_Internal_Note
*note
)
10087 return elfcore_make_note_pseudosection (abfd
, ".reg-loongarch-lasx", note
);
10090 #if defined (HAVE_PRPSINFO_T)
10091 typedef prpsinfo_t elfcore_psinfo_t
;
10092 #if defined (HAVE_PRPSINFO32_T) /* Sparc64 cross Sparc32 */
10093 typedef prpsinfo32_t elfcore_psinfo32_t
;
10097 #if defined (HAVE_PSINFO_T)
10098 typedef psinfo_t elfcore_psinfo_t
;
10099 #if defined (HAVE_PSINFO32_T) /* Sparc64 cross Sparc32 */
10100 typedef psinfo32_t elfcore_psinfo32_t
;
10104 /* return a malloc'ed copy of a string at START which is at
10105 most MAX bytes long, possibly without a terminating '\0'.
10106 the copy will always have a terminating '\0'. */
10109 _bfd_elfcore_strndup (bfd
*abfd
, char *start
, size_t max
)
10112 char *end
= (char *) memchr (start
, '\0', max
);
10120 dups
= (char *) bfd_alloc (abfd
, len
+ 1);
10124 memcpy (dups
, start
, len
);
10130 #if defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T)
10132 elfcore_grok_psinfo (bfd
*abfd
, Elf_Internal_Note
*note
)
10134 if (note
->descsz
== sizeof (elfcore_psinfo_t
))
10136 elfcore_psinfo_t psinfo
;
10138 memcpy (&psinfo
, note
->descdata
, sizeof (psinfo
));
10140 #if defined (HAVE_PSINFO_T_PR_PID) || defined (HAVE_PRPSINFO_T_PR_PID)
10141 elf_tdata (abfd
)->core
->pid
= psinfo
.pr_pid
;
10143 elf_tdata (abfd
)->core
->program
10144 = _bfd_elfcore_strndup (abfd
, psinfo
.pr_fname
,
10145 sizeof (psinfo
.pr_fname
));
10147 elf_tdata (abfd
)->core
->command
10148 = _bfd_elfcore_strndup (abfd
, psinfo
.pr_psargs
,
10149 sizeof (psinfo
.pr_psargs
));
10151 #if defined (HAVE_PRPSINFO32_T) || defined (HAVE_PSINFO32_T)
10152 else if (note
->descsz
== sizeof (elfcore_psinfo32_t
))
10154 /* 64-bit host, 32-bit corefile */
10155 elfcore_psinfo32_t psinfo
;
10157 memcpy (&psinfo
, note
->descdata
, sizeof (psinfo
));
10159 #if defined (HAVE_PSINFO32_T_PR_PID) || defined (HAVE_PRPSINFO32_T_PR_PID)
10160 elf_tdata (abfd
)->core
->pid
= psinfo
.pr_pid
;
10162 elf_tdata (abfd
)->core
->program
10163 = _bfd_elfcore_strndup (abfd
, psinfo
.pr_fname
,
10164 sizeof (psinfo
.pr_fname
));
10166 elf_tdata (abfd
)->core
->command
10167 = _bfd_elfcore_strndup (abfd
, psinfo
.pr_psargs
,
10168 sizeof (psinfo
.pr_psargs
));
10174 /* Fail - we don't know how to handle any other
10175 note size (ie. data object type). */
10179 /* Note that for some reason, a spurious space is tacked
10180 onto the end of the args in some (at least one anyway)
10181 implementations, so strip it off if it exists. */
10184 char *command
= elf_tdata (abfd
)->core
->command
;
10185 int n
= strlen (command
);
10187 if (0 < n
&& command
[n
- 1] == ' ')
10188 command
[n
- 1] = '\0';
10193 #endif /* defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T) */
10195 #if defined (HAVE_PSTATUS_T)
10197 elfcore_grok_pstatus (bfd
*abfd
, Elf_Internal_Note
*note
)
10199 if (note
->descsz
== sizeof (pstatus_t
)
10200 #if defined (HAVE_PXSTATUS_T)
10201 || note
->descsz
== sizeof (pxstatus_t
)
10207 memcpy (&pstat
, note
->descdata
, sizeof (pstat
));
10209 elf_tdata (abfd
)->core
->pid
= pstat
.pr_pid
;
10211 #if defined (HAVE_PSTATUS32_T)
10212 else if (note
->descsz
== sizeof (pstatus32_t
))
10214 /* 64-bit host, 32-bit corefile */
10217 memcpy (&pstat
, note
->descdata
, sizeof (pstat
));
10219 elf_tdata (abfd
)->core
->pid
= pstat
.pr_pid
;
10222 /* Could grab some more details from the "representative"
10223 lwpstatus_t in pstat.pr_lwp, but we'll catch it all in an
10224 NT_LWPSTATUS note, presumably. */
10228 #endif /* defined (HAVE_PSTATUS_T) */
10230 #if defined (HAVE_LWPSTATUS_T)
10232 elfcore_grok_lwpstatus (bfd
*abfd
, Elf_Internal_Note
*note
)
10234 lwpstatus_t lwpstat
;
10240 if (note
->descsz
!= sizeof (lwpstat
)
10241 #if defined (HAVE_LWPXSTATUS_T)
10242 && note
->descsz
!= sizeof (lwpxstatus_t
)
10247 memcpy (&lwpstat
, note
->descdata
, sizeof (lwpstat
));
10249 elf_tdata (abfd
)->core
->lwpid
= lwpstat
.pr_lwpid
;
10250 /* Do not overwrite the core signal if it has already been set by
10252 if (elf_tdata (abfd
)->core
->signal
== 0)
10253 elf_tdata (abfd
)->core
->signal
= lwpstat
.pr_cursig
;
10255 /* Make a ".reg/999" section. */
10257 sprintf (buf
, ".reg/%d", elfcore_make_pid (abfd
));
10258 len
= strlen (buf
) + 1;
10259 name
= bfd_alloc (abfd
, len
);
10262 memcpy (name
, buf
, len
);
10264 sect
= bfd_make_section_anyway_with_flags (abfd
, name
, SEC_HAS_CONTENTS
);
10268 #if defined (HAVE_LWPSTATUS_T_PR_CONTEXT)
10269 sect
->size
= sizeof (lwpstat
.pr_context
.uc_mcontext
.gregs
);
10270 sect
->filepos
= note
->descpos
10271 + offsetof (lwpstatus_t
, pr_context
.uc_mcontext
.gregs
);
10274 #if defined (HAVE_LWPSTATUS_T_PR_REG)
10275 sect
->size
= sizeof (lwpstat
.pr_reg
);
10276 sect
->filepos
= note
->descpos
+ offsetof (lwpstatus_t
, pr_reg
);
10279 sect
->alignment_power
= 2;
10281 if (!elfcore_maybe_make_sect (abfd
, ".reg", sect
))
10284 /* Make a ".reg2/999" section */
10286 sprintf (buf
, ".reg2/%d", elfcore_make_pid (abfd
));
10287 len
= strlen (buf
) + 1;
10288 name
= bfd_alloc (abfd
, len
);
10291 memcpy (name
, buf
, len
);
10293 sect
= bfd_make_section_anyway_with_flags (abfd
, name
, SEC_HAS_CONTENTS
);
10297 #if defined (HAVE_LWPSTATUS_T_PR_CONTEXT)
10298 sect
->size
= sizeof (lwpstat
.pr_context
.uc_mcontext
.fpregs
);
10299 sect
->filepos
= note
->descpos
10300 + offsetof (lwpstatus_t
, pr_context
.uc_mcontext
.fpregs
);
10303 #if defined (HAVE_LWPSTATUS_T_PR_FPREG)
10304 sect
->size
= sizeof (lwpstat
.pr_fpreg
);
10305 sect
->filepos
= note
->descpos
+ offsetof (lwpstatus_t
, pr_fpreg
);
10308 sect
->alignment_power
= 2;
10310 return elfcore_maybe_make_sect (abfd
, ".reg2", sect
);
10312 #endif /* defined (HAVE_LWPSTATUS_T) */
10314 /* These constants, and the structure offsets used below, are defined by
10315 Cygwin's core_dump.h */
10316 #define NOTE_INFO_PROCESS 1
10317 #define NOTE_INFO_THREAD 2
10318 #define NOTE_INFO_MODULE 3
10319 #define NOTE_INFO_MODULE64 4
10322 elfcore_grok_win32pstatus (bfd
*abfd
, Elf_Internal_Note
*note
)
10327 unsigned int name_size
;
10330 int is_active_thread
;
10333 if (note
->descsz
< 4)
10336 if (! startswith (note
->namedata
, "win32"))
10339 type
= bfd_get_32 (abfd
, note
->descdata
);
10343 const char *type_name
;
10344 unsigned long min_size
;
10347 { "NOTE_INFO_PROCESS", 12 },
10348 { "NOTE_INFO_THREAD", 12 },
10349 { "NOTE_INFO_MODULE", 12 },
10350 { "NOTE_INFO_MODULE64", 16 },
10353 if (type
== 0 || type
> (sizeof(size_check
)/sizeof(size_check
[0])))
10356 if (note
->descsz
< size_check
[type
- 1].min_size
)
10358 _bfd_error_handler (_("%pB: warning: win32pstatus %s of size %lu bytes is too small"),
10359 abfd
, size_check
[type
- 1].type_name
, note
->descsz
);
10365 case NOTE_INFO_PROCESS
:
10366 /* FIXME: need to add ->core->command. */
10367 elf_tdata (abfd
)->core
->pid
= bfd_get_32 (abfd
, note
->descdata
+ 4);
10368 elf_tdata (abfd
)->core
->signal
= bfd_get_32 (abfd
, note
->descdata
+ 8);
10371 case NOTE_INFO_THREAD
:
10372 /* Make a ".reg/<tid>" section containing the Win32 API thread CONTEXT
10374 /* thread_info.tid */
10375 sprintf (buf
, ".reg/%ld", (long) bfd_get_32 (abfd
, note
->descdata
+ 4));
10377 len
= strlen (buf
) + 1;
10378 name
= (char *) bfd_alloc (abfd
, len
);
10382 memcpy (name
, buf
, len
);
10384 sect
= bfd_make_section_anyway_with_flags (abfd
, name
, SEC_HAS_CONTENTS
);
10388 /* sizeof (thread_info.thread_context) */
10389 sect
->size
= note
->descsz
- 12;
10390 /* offsetof (thread_info.thread_context) */
10391 sect
->filepos
= note
->descpos
+ 12;
10392 sect
->alignment_power
= 2;
10394 /* thread_info.is_active_thread */
10395 is_active_thread
= bfd_get_32 (abfd
, note
->descdata
+ 8);
10397 if (is_active_thread
)
10398 if (! elfcore_maybe_make_sect (abfd
, ".reg", sect
))
10402 case NOTE_INFO_MODULE
:
10403 case NOTE_INFO_MODULE64
:
10404 /* Make a ".module/xxxxxxxx" section. */
10405 if (type
== NOTE_INFO_MODULE
)
10407 /* module_info.base_address */
10408 base_addr
= bfd_get_32 (abfd
, note
->descdata
+ 4);
10409 sprintf (buf
, ".module/%08lx", (unsigned long) base_addr
);
10410 /* module_info.module_name_size */
10411 name_size
= bfd_get_32 (abfd
, note
->descdata
+ 8);
10413 else /* NOTE_INFO_MODULE64 */
10415 /* module_info.base_address */
10416 base_addr
= bfd_get_64 (abfd
, note
->descdata
+ 4);
10417 sprintf (buf
, ".module/%016lx", (unsigned long) base_addr
);
10418 /* module_info.module_name_size */
10419 name_size
= bfd_get_32 (abfd
, note
->descdata
+ 12);
10422 len
= strlen (buf
) + 1;
10423 name
= (char *) bfd_alloc (abfd
, len
);
10427 memcpy (name
, buf
, len
);
10429 sect
= bfd_make_section_anyway_with_flags (abfd
, name
, SEC_HAS_CONTENTS
);
10434 if (note
->descsz
< 12 + name_size
)
10436 _bfd_error_handler (_("%pB: win32pstatus NOTE_INFO_MODULE of size %lu is too small to contain a name of size %u"),
10437 abfd
, note
->descsz
, name_size
);
10441 sect
->size
= note
->descsz
;
10442 sect
->filepos
= note
->descpos
;
10443 sect
->alignment_power
= 2;
10454 elfcore_grok_note (bfd
*abfd
, Elf_Internal_Note
*note
)
10456 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
10458 switch (note
->type
)
10464 if (bed
->elf_backend_grok_prstatus
)
10465 if ((*bed
->elf_backend_grok_prstatus
) (abfd
, note
))
10467 #if defined (HAVE_PRSTATUS_T)
10468 return elfcore_grok_prstatus (abfd
, note
);
10473 #if defined (HAVE_PSTATUS_T)
10475 return elfcore_grok_pstatus (abfd
, note
);
10478 #if defined (HAVE_LWPSTATUS_T)
10480 return elfcore_grok_lwpstatus (abfd
, note
);
10483 case NT_FPREGSET
: /* FIXME: rename to NT_PRFPREG */
10484 return elfcore_grok_prfpreg (abfd
, note
);
10486 case NT_WIN32PSTATUS
:
10487 return elfcore_grok_win32pstatus (abfd
, note
);
10489 case NT_PRXFPREG
: /* Linux SSE extension */
10490 if (note
->namesz
== 6
10491 && strcmp (note
->namedata
, "LINUX") == 0)
10492 return elfcore_grok_prxfpreg (abfd
, note
);
10496 case NT_X86_XSTATE
: /* Linux XSAVE extension */
10497 if (note
->namesz
== 6
10498 && strcmp (note
->namedata
, "LINUX") == 0)
10499 return elfcore_grok_xstatereg (abfd
, note
);
10504 if (note
->namesz
== 6
10505 && strcmp (note
->namedata
, "LINUX") == 0)
10506 return elfcore_grok_ppc_vmx (abfd
, note
);
10511 if (note
->namesz
== 6
10512 && strcmp (note
->namedata
, "LINUX") == 0)
10513 return elfcore_grok_ppc_vsx (abfd
, note
);
10518 if (note
->namesz
== 6
10519 && strcmp (note
->namedata
, "LINUX") == 0)
10520 return elfcore_grok_ppc_tar (abfd
, note
);
10525 if (note
->namesz
== 6
10526 && strcmp (note
->namedata
, "LINUX") == 0)
10527 return elfcore_grok_ppc_ppr (abfd
, note
);
10532 if (note
->namesz
== 6
10533 && strcmp (note
->namedata
, "LINUX") == 0)
10534 return elfcore_grok_ppc_dscr (abfd
, note
);
10539 if (note
->namesz
== 6
10540 && strcmp (note
->namedata
, "LINUX") == 0)
10541 return elfcore_grok_ppc_ebb (abfd
, note
);
10546 if (note
->namesz
== 6
10547 && strcmp (note
->namedata
, "LINUX") == 0)
10548 return elfcore_grok_ppc_pmu (abfd
, note
);
10552 case NT_PPC_TM_CGPR
:
10553 if (note
->namesz
== 6
10554 && strcmp (note
->namedata
, "LINUX") == 0)
10555 return elfcore_grok_ppc_tm_cgpr (abfd
, note
);
10559 case NT_PPC_TM_CFPR
:
10560 if (note
->namesz
== 6
10561 && strcmp (note
->namedata
, "LINUX") == 0)
10562 return elfcore_grok_ppc_tm_cfpr (abfd
, note
);
10566 case NT_PPC_TM_CVMX
:
10567 if (note
->namesz
== 6
10568 && strcmp (note
->namedata
, "LINUX") == 0)
10569 return elfcore_grok_ppc_tm_cvmx (abfd
, note
);
10573 case NT_PPC_TM_CVSX
:
10574 if (note
->namesz
== 6
10575 && strcmp (note
->namedata
, "LINUX") == 0)
10576 return elfcore_grok_ppc_tm_cvsx (abfd
, note
);
10580 case NT_PPC_TM_SPR
:
10581 if (note
->namesz
== 6
10582 && strcmp (note
->namedata
, "LINUX") == 0)
10583 return elfcore_grok_ppc_tm_spr (abfd
, note
);
10587 case NT_PPC_TM_CTAR
:
10588 if (note
->namesz
== 6
10589 && strcmp (note
->namedata
, "LINUX") == 0)
10590 return elfcore_grok_ppc_tm_ctar (abfd
, note
);
10594 case NT_PPC_TM_CPPR
:
10595 if (note
->namesz
== 6
10596 && strcmp (note
->namedata
, "LINUX") == 0)
10597 return elfcore_grok_ppc_tm_cppr (abfd
, note
);
10601 case NT_PPC_TM_CDSCR
:
10602 if (note
->namesz
== 6
10603 && strcmp (note
->namedata
, "LINUX") == 0)
10604 return elfcore_grok_ppc_tm_cdscr (abfd
, note
);
10608 case NT_S390_HIGH_GPRS
:
10609 if (note
->namesz
== 6
10610 && strcmp (note
->namedata
, "LINUX") == 0)
10611 return elfcore_grok_s390_high_gprs (abfd
, note
);
10615 case NT_S390_TIMER
:
10616 if (note
->namesz
== 6
10617 && strcmp (note
->namedata
, "LINUX") == 0)
10618 return elfcore_grok_s390_timer (abfd
, note
);
10622 case NT_S390_TODCMP
:
10623 if (note
->namesz
== 6
10624 && strcmp (note
->namedata
, "LINUX") == 0)
10625 return elfcore_grok_s390_todcmp (abfd
, note
);
10629 case NT_S390_TODPREG
:
10630 if (note
->namesz
== 6
10631 && strcmp (note
->namedata
, "LINUX") == 0)
10632 return elfcore_grok_s390_todpreg (abfd
, note
);
10637 if (note
->namesz
== 6
10638 && strcmp (note
->namedata
, "LINUX") == 0)
10639 return elfcore_grok_s390_ctrs (abfd
, note
);
10643 case NT_S390_PREFIX
:
10644 if (note
->namesz
== 6
10645 && strcmp (note
->namedata
, "LINUX") == 0)
10646 return elfcore_grok_s390_prefix (abfd
, note
);
10650 case NT_S390_LAST_BREAK
:
10651 if (note
->namesz
== 6
10652 && strcmp (note
->namedata
, "LINUX") == 0)
10653 return elfcore_grok_s390_last_break (abfd
, note
);
10657 case NT_S390_SYSTEM_CALL
:
10658 if (note
->namesz
== 6
10659 && strcmp (note
->namedata
, "LINUX") == 0)
10660 return elfcore_grok_s390_system_call (abfd
, note
);
10665 if (note
->namesz
== 6
10666 && strcmp (note
->namedata
, "LINUX") == 0)
10667 return elfcore_grok_s390_tdb (abfd
, note
);
10671 case NT_S390_VXRS_LOW
:
10672 if (note
->namesz
== 6
10673 && strcmp (note
->namedata
, "LINUX") == 0)
10674 return elfcore_grok_s390_vxrs_low (abfd
, note
);
10678 case NT_S390_VXRS_HIGH
:
10679 if (note
->namesz
== 6
10680 && strcmp (note
->namedata
, "LINUX") == 0)
10681 return elfcore_grok_s390_vxrs_high (abfd
, note
);
10685 case NT_S390_GS_CB
:
10686 if (note
->namesz
== 6
10687 && strcmp (note
->namedata
, "LINUX") == 0)
10688 return elfcore_grok_s390_gs_cb (abfd
, note
);
10692 case NT_S390_GS_BC
:
10693 if (note
->namesz
== 6
10694 && strcmp (note
->namedata
, "LINUX") == 0)
10695 return elfcore_grok_s390_gs_bc (abfd
, note
);
10700 if (note
->namesz
== 6
10701 && strcmp (note
->namedata
, "LINUX") == 0)
10702 return elfcore_grok_arc_v2 (abfd
, note
);
10707 if (note
->namesz
== 6
10708 && strcmp (note
->namedata
, "LINUX") == 0)
10709 return elfcore_grok_arm_vfp (abfd
, note
);
10714 if (note
->namesz
== 6
10715 && strcmp (note
->namedata
, "LINUX") == 0)
10716 return elfcore_grok_aarch_tls (abfd
, note
);
10720 case NT_ARM_HW_BREAK
:
10721 if (note
->namesz
== 6
10722 && strcmp (note
->namedata
, "LINUX") == 0)
10723 return elfcore_grok_aarch_hw_break (abfd
, note
);
10727 case NT_ARM_HW_WATCH
:
10728 if (note
->namesz
== 6
10729 && strcmp (note
->namedata
, "LINUX") == 0)
10730 return elfcore_grok_aarch_hw_watch (abfd
, note
);
10735 if (note
->namesz
== 6
10736 && strcmp (note
->namedata
, "LINUX") == 0)
10737 return elfcore_grok_aarch_sve (abfd
, note
);
10741 case NT_ARM_PAC_MASK
:
10742 if (note
->namesz
== 6
10743 && strcmp (note
->namedata
, "LINUX") == 0)
10744 return elfcore_grok_aarch_pauth (abfd
, note
);
10748 case NT_ARM_TAGGED_ADDR_CTRL
:
10749 if (note
->namesz
== 6
10750 && strcmp (note
->namedata
, "LINUX") == 0)
10751 return elfcore_grok_aarch_mte (abfd
, note
);
10756 if (note
->namesz
== 4
10757 && strcmp (note
->namedata
, "GDB") == 0)
10758 return elfcore_grok_gdb_tdesc (abfd
, note
);
10763 if (note
->namesz
== 4
10764 && strcmp (note
->namedata
, "GDB") == 0)
10765 return elfcore_grok_riscv_csr (abfd
, note
);
10769 case NT_LARCH_CPUCFG
:
10770 if (note
->namesz
== 6
10771 && strcmp (note
->namedata
, "LINUX") == 0)
10772 return elfcore_grok_loongarch_cpucfg (abfd
, note
);
10777 if (note
->namesz
== 6
10778 && strcmp (note
->namedata
, "LINUX") == 0)
10779 return elfcore_grok_loongarch_lbt (abfd
, note
);
10784 if (note
->namesz
== 6
10785 && strcmp (note
->namedata
, "LINUX") == 0)
10786 return elfcore_grok_loongarch_lsx (abfd
, note
);
10790 case NT_LARCH_LASX
:
10791 if (note
->namesz
== 6
10792 && strcmp (note
->namedata
, "LINUX") == 0)
10793 return elfcore_grok_loongarch_lasx (abfd
, note
);
10799 if (bed
->elf_backend_grok_psinfo
)
10800 if ((*bed
->elf_backend_grok_psinfo
) (abfd
, note
))
10802 #if defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T)
10803 return elfcore_grok_psinfo (abfd
, note
);
10809 return elfcore_make_auxv_note_section (abfd
, note
, 0);
10812 return elfcore_make_note_pseudosection (abfd
, ".note.linuxcore.file",
10816 return elfcore_make_note_pseudosection (abfd
, ".note.linuxcore.siginfo",
10823 elfobj_grok_gnu_build_id (bfd
*abfd
, Elf_Internal_Note
*note
)
10825 struct bfd_build_id
* build_id
;
10827 if (note
->descsz
== 0)
10830 build_id
= bfd_alloc (abfd
, sizeof (struct bfd_build_id
) - 1 + note
->descsz
);
10831 if (build_id
== NULL
)
10834 build_id
->size
= note
->descsz
;
10835 memcpy (build_id
->data
, note
->descdata
, note
->descsz
);
10836 abfd
->build_id
= build_id
;
10842 elfobj_grok_gnu_note (bfd
*abfd
, Elf_Internal_Note
*note
)
10844 switch (note
->type
)
10849 case NT_GNU_PROPERTY_TYPE_0
:
10850 return _bfd_elf_parse_gnu_properties (abfd
, note
);
10852 case NT_GNU_BUILD_ID
:
10853 return elfobj_grok_gnu_build_id (abfd
, note
);
10858 elfobj_grok_stapsdt_note_1 (bfd
*abfd
, Elf_Internal_Note
*note
)
10860 struct sdt_note
*cur
=
10861 (struct sdt_note
*) bfd_alloc (abfd
,
10862 sizeof (struct sdt_note
) + note
->descsz
);
10864 cur
->next
= (struct sdt_note
*) (elf_tdata (abfd
))->sdt_note_head
;
10865 cur
->size
= (bfd_size_type
) note
->descsz
;
10866 memcpy (cur
->data
, note
->descdata
, note
->descsz
);
10868 elf_tdata (abfd
)->sdt_note_head
= cur
;
10874 elfobj_grok_stapsdt_note (bfd
*abfd
, Elf_Internal_Note
*note
)
10876 switch (note
->type
)
10879 return elfobj_grok_stapsdt_note_1 (abfd
, note
);
10887 elfcore_grok_freebsd_psinfo (bfd
*abfd
, Elf_Internal_Note
*note
)
10891 switch (elf_elfheader (abfd
)->e_ident
[EI_CLASS
])
10894 if (note
->descsz
< 108)
10899 if (note
->descsz
< 120)
10907 /* Check for version 1 in pr_version. */
10908 if (bfd_h_get_32 (abfd
, (bfd_byte
*) note
->descdata
) != 1)
10913 /* Skip over pr_psinfosz. */
10914 if (elf_elfheader (abfd
)->e_ident
[EI_CLASS
] == ELFCLASS32
)
10918 offset
+= 4; /* Padding before pr_psinfosz. */
10922 /* pr_fname is PRFNAMESZ (16) + 1 bytes in size. */
10923 elf_tdata (abfd
)->core
->program
10924 = _bfd_elfcore_strndup (abfd
, note
->descdata
+ offset
, 17);
10927 /* pr_psargs is PRARGSZ (80) + 1 bytes in size. */
10928 elf_tdata (abfd
)->core
->command
10929 = _bfd_elfcore_strndup (abfd
, note
->descdata
+ offset
, 81);
10932 /* Padding before pr_pid. */
10935 /* The pr_pid field was added in version "1a". */
10936 if (note
->descsz
< offset
+ 4)
10939 elf_tdata (abfd
)->core
->pid
10940 = bfd_h_get_32 (abfd
, (bfd_byte
*) note
->descdata
+ offset
);
10946 elfcore_grok_freebsd_prstatus (bfd
*abfd
, Elf_Internal_Note
*note
)
10952 /* Compute offset of pr_getregsz, skipping over pr_statussz.
10953 Also compute minimum size of this note. */
10954 switch (elf_elfheader (abfd
)->e_ident
[EI_CLASS
])
10958 min_size
= offset
+ (4 * 2) + 4 + 4 + 4;
10962 offset
= 4 + 4 + 8; /* Includes padding before pr_statussz. */
10963 min_size
= offset
+ (8 * 2) + 4 + 4 + 4 + 4;
10970 if (note
->descsz
< min_size
)
10973 /* Check for version 1 in pr_version. */
10974 if (bfd_h_get_32 (abfd
, (bfd_byte
*) note
->descdata
) != 1)
10977 /* Extract size of pr_reg from pr_gregsetsz. */
10978 /* Skip over pr_gregsetsz and pr_fpregsetsz. */
10979 if (elf_elfheader (abfd
)->e_ident
[EI_CLASS
] == ELFCLASS32
)
10981 size
= bfd_h_get_32 (abfd
, (bfd_byte
*) note
->descdata
+ offset
);
10986 size
= bfd_h_get_64 (abfd
, (bfd_byte
*) note
->descdata
+ offset
);
10990 /* Skip over pr_osreldate. */
10993 /* Read signal from pr_cursig. */
10994 if (elf_tdata (abfd
)->core
->signal
== 0)
10995 elf_tdata (abfd
)->core
->signal
10996 = bfd_h_get_32 (abfd
, (bfd_byte
*) note
->descdata
+ offset
);
10999 /* Read TID from pr_pid. */
11000 elf_tdata (abfd
)->core
->lwpid
11001 = bfd_h_get_32 (abfd
, (bfd_byte
*) note
->descdata
+ offset
);
11004 /* Padding before pr_reg. */
11005 if (elf_elfheader (abfd
)->e_ident
[EI_CLASS
] == ELFCLASS64
)
11008 /* Make sure that there is enough data remaining in the note. */
11009 if ((note
->descsz
- offset
) < size
)
11012 /* Make a ".reg/999" section and a ".reg" section. */
11013 return _bfd_elfcore_make_pseudosection (abfd
, ".reg",
11014 size
, note
->descpos
+ offset
);
11018 elfcore_grok_freebsd_note (bfd
*abfd
, Elf_Internal_Note
*note
)
11020 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
11022 switch (note
->type
)
11025 if (bed
->elf_backend_grok_freebsd_prstatus
)
11026 if ((*bed
->elf_backend_grok_freebsd_prstatus
) (abfd
, note
))
11028 return elfcore_grok_freebsd_prstatus (abfd
, note
);
11031 return elfcore_grok_prfpreg (abfd
, note
);
11034 return elfcore_grok_freebsd_psinfo (abfd
, note
);
11036 case NT_FREEBSD_THRMISC
:
11037 return elfcore_make_note_pseudosection (abfd
, ".thrmisc", note
);
11039 case NT_FREEBSD_PROCSTAT_PROC
:
11040 return elfcore_make_note_pseudosection (abfd
, ".note.freebsdcore.proc",
11043 case NT_FREEBSD_PROCSTAT_FILES
:
11044 return elfcore_make_note_pseudosection (abfd
, ".note.freebsdcore.files",
11047 case NT_FREEBSD_PROCSTAT_VMMAP
:
11048 return elfcore_make_note_pseudosection (abfd
, ".note.freebsdcore.vmmap",
11051 case NT_FREEBSD_PROCSTAT_AUXV
:
11052 return elfcore_make_auxv_note_section (abfd
, note
, 4);
11054 case NT_FREEBSD_X86_SEGBASES
:
11055 return elfcore_make_note_pseudosection (abfd
, ".reg-x86-segbases", note
);
11057 case NT_X86_XSTATE
:
11058 return elfcore_grok_xstatereg (abfd
, note
);
11060 case NT_FREEBSD_PTLWPINFO
:
11061 return elfcore_make_note_pseudosection (abfd
, ".note.freebsdcore.lwpinfo",
11065 return elfcore_grok_aarch_tls (abfd
, note
);
11068 return elfcore_grok_arm_vfp (abfd
, note
);
11076 elfcore_netbsd_get_lwpid (Elf_Internal_Note
*note
, int *lwpidp
)
11080 cp
= strchr (note
->namedata
, '@');
11083 *lwpidp
= atoi(cp
+ 1);
11090 elfcore_grok_netbsd_procinfo (bfd
*abfd
, Elf_Internal_Note
*note
)
11092 if (note
->descsz
<= 0x7c + 31)
11095 /* Signal number at offset 0x08. */
11096 elf_tdata (abfd
)->core
->signal
11097 = bfd_h_get_32 (abfd
, (bfd_byte
*) note
->descdata
+ 0x08);
11099 /* Process ID at offset 0x50. */
11100 elf_tdata (abfd
)->core
->pid
11101 = bfd_h_get_32 (abfd
, (bfd_byte
*) note
->descdata
+ 0x50);
11103 /* Command name at 0x7c (max 32 bytes, including nul). */
11104 elf_tdata (abfd
)->core
->command
11105 = _bfd_elfcore_strndup (abfd
, note
->descdata
+ 0x7c, 31);
11107 return elfcore_make_note_pseudosection (abfd
, ".note.netbsdcore.procinfo",
11112 elfcore_grok_netbsd_note (bfd
*abfd
, Elf_Internal_Note
*note
)
11116 if (elfcore_netbsd_get_lwpid (note
, &lwp
))
11117 elf_tdata (abfd
)->core
->lwpid
= lwp
;
11119 switch (note
->type
)
11121 case NT_NETBSDCORE_PROCINFO
:
11122 /* NetBSD-specific core "procinfo". Note that we expect to
11123 find this note before any of the others, which is fine,
11124 since the kernel writes this note out first when it
11125 creates a core file. */
11126 return elfcore_grok_netbsd_procinfo (abfd
, note
);
11127 case NT_NETBSDCORE_AUXV
:
11128 /* NetBSD-specific Elf Auxiliary Vector data. */
11129 return elfcore_make_auxv_note_section (abfd
, note
, 4);
11130 case NT_NETBSDCORE_LWPSTATUS
:
11131 return elfcore_make_note_pseudosection (abfd
,
11132 ".note.netbsdcore.lwpstatus",
11138 /* As of March 2020 there are no other machine-independent notes
11139 defined for NetBSD core files. If the note type is less
11140 than the start of the machine-dependent note types, we don't
11143 if (note
->type
< NT_NETBSDCORE_FIRSTMACH
)
11147 switch (bfd_get_arch (abfd
))
11149 /* On the Alpha, SPARC (32-bit and 64-bit), PT_GETREGS == mach+0 and
11150 PT_GETFPREGS == mach+2. */
11152 case bfd_arch_aarch64
:
11153 case bfd_arch_alpha
:
11154 case bfd_arch_sparc
:
11155 switch (note
->type
)
11157 case NT_NETBSDCORE_FIRSTMACH
+0:
11158 return elfcore_make_note_pseudosection (abfd
, ".reg", note
);
11160 case NT_NETBSDCORE_FIRSTMACH
+2:
11161 return elfcore_make_note_pseudosection (abfd
, ".reg2", note
);
11167 /* On SuperH, PT_GETREGS == mach+3 and PT_GETFPREGS == mach+5.
11168 There's also old PT___GETREGS40 == mach + 1 for old reg
11169 structure which lacks GBR. */
11172 switch (note
->type
)
11174 case NT_NETBSDCORE_FIRSTMACH
+3:
11175 return elfcore_make_note_pseudosection (abfd
, ".reg", note
);
11177 case NT_NETBSDCORE_FIRSTMACH
+5:
11178 return elfcore_make_note_pseudosection (abfd
, ".reg2", note
);
11184 /* On all other arch's, PT_GETREGS == mach+1 and
11185 PT_GETFPREGS == mach+3. */
11188 switch (note
->type
)
11190 case NT_NETBSDCORE_FIRSTMACH
+1:
11191 return elfcore_make_note_pseudosection (abfd
, ".reg", note
);
11193 case NT_NETBSDCORE_FIRSTMACH
+3:
11194 return elfcore_make_note_pseudosection (abfd
, ".reg2", note
);
11204 elfcore_grok_openbsd_procinfo (bfd
*abfd
, Elf_Internal_Note
*note
)
11206 if (note
->descsz
<= 0x48 + 31)
11209 /* Signal number at offset 0x08. */
11210 elf_tdata (abfd
)->core
->signal
11211 = bfd_h_get_32 (abfd
, (bfd_byte
*) note
->descdata
+ 0x08);
11213 /* Process ID at offset 0x20. */
11214 elf_tdata (abfd
)->core
->pid
11215 = bfd_h_get_32 (abfd
, (bfd_byte
*) note
->descdata
+ 0x20);
11217 /* Command name at 0x48 (max 32 bytes, including nul). */
11218 elf_tdata (abfd
)->core
->command
11219 = _bfd_elfcore_strndup (abfd
, note
->descdata
+ 0x48, 31);
11224 /* Processes Solaris's process status note.
11225 sig_off ~ offsetof(prstatus_t, pr_cursig)
11226 pid_off ~ offsetof(prstatus_t, pr_pid)
11227 lwpid_off ~ offsetof(prstatus_t, pr_who)
11228 gregset_size ~ sizeof(gregset_t)
11229 gregset_offset ~ offsetof(prstatus_t, pr_reg) */
11232 elfcore_grok_solaris_prstatus (bfd
*abfd
, Elf_Internal_Note
* note
, int sig_off
,
11233 int pid_off
, int lwpid_off
, size_t gregset_size
,
11234 size_t gregset_offset
)
11236 asection
*sect
= NULL
;
11237 elf_tdata (abfd
)->core
->signal
11238 = bfd_get_16 (abfd
, note
->descdata
+ sig_off
);
11239 elf_tdata (abfd
)->core
->pid
11240 = bfd_get_32 (abfd
, note
->descdata
+ pid_off
);
11241 elf_tdata (abfd
)->core
->lwpid
11242 = bfd_get_32 (abfd
, note
->descdata
+ lwpid_off
);
11244 sect
= bfd_get_section_by_name (abfd
, ".reg");
11246 sect
->size
= gregset_size
;
11248 return _bfd_elfcore_make_pseudosection (abfd
, ".reg", gregset_size
,
11249 note
->descpos
+ gregset_offset
);
11252 /* Gets program and arguments from a core.
11253 prog_off ~ offsetof(prpsinfo | psinfo_t, pr_fname)
11254 comm_off ~ offsetof(prpsinfo | psinfo_t, pr_psargs) */
11257 elfcore_grok_solaris_info(bfd
*abfd
, Elf_Internal_Note
* note
,
11258 int prog_off
, int comm_off
)
11260 elf_tdata (abfd
)->core
->program
11261 = _bfd_elfcore_strndup (abfd
, note
->descdata
+ prog_off
, 16);
11262 elf_tdata (abfd
)->core
->command
11263 = _bfd_elfcore_strndup (abfd
, note
->descdata
+ comm_off
, 80);
11268 /* Processes Solaris's LWP status note.
11269 gregset_size ~ sizeof(gregset_t)
11270 gregset_off ~ offsetof(lwpstatus_t, pr_reg)
11271 fpregset_size ~ sizeof(fpregset_t)
11272 fpregset_off ~ offsetof(lwpstatus_t, pr_fpreg) */
11275 elfcore_grok_solaris_lwpstatus (bfd
*abfd
, Elf_Internal_Note
* note
,
11276 size_t gregset_size
, int gregset_off
,
11277 size_t fpregset_size
, int fpregset_off
)
11279 asection
*sect
= NULL
;
11280 char reg2_section_name
[16] = { 0 };
11282 (void) snprintf (reg2_section_name
, 16, "%s/%i", ".reg2",
11283 elf_tdata (abfd
)->core
->lwpid
);
11285 /* offsetof(lwpstatus_t, pr_lwpid) */
11286 elf_tdata (abfd
)->core
->lwpid
11287 = bfd_get_32 (abfd
, note
->descdata
+ 4);
11288 /* offsetof(lwpstatus_t, pr_cursig) */
11289 elf_tdata (abfd
)->core
->signal
11290 = bfd_get_16 (abfd
, note
->descdata
+ 12);
11292 sect
= bfd_get_section_by_name (abfd
, ".reg");
11294 sect
->size
= gregset_size
;
11295 else if (!_bfd_elfcore_make_pseudosection (abfd
, ".reg", gregset_size
,
11296 note
->descpos
+ gregset_off
))
11299 sect
= bfd_get_section_by_name (abfd
, reg2_section_name
);
11302 sect
->size
= fpregset_size
;
11303 sect
->filepos
= note
->descpos
+ fpregset_off
;
11304 sect
->alignment_power
= 2;
11306 else if (!_bfd_elfcore_make_pseudosection (abfd
, ".reg2", fpregset_size
,
11307 note
->descpos
+ fpregset_off
))
11314 elfcore_grok_solaris_note_impl (bfd
*abfd
, Elf_Internal_Note
*note
)
11319 /* core files are identified as 32- or 64-bit, SPARC or x86,
11320 by the size of the descsz which matches the sizeof()
11321 the type appropriate for that note type (e.g., prstatus_t for
11322 SOLARIS_NT_PRSTATUS) for the corresponding architecture
11323 on Solaris. The core file bitness may differ from the bitness of
11324 gdb itself, so fixed values are used instead of sizeof().
11325 Appropriate fixed offsets are also used to obtain data from
11328 switch ((int) note
->type
)
11330 case SOLARIS_NT_PRSTATUS
:
11331 switch (note
->descsz
)
11333 case 508: /* sizeof(prstatus_t) SPARC 32-bit */
11334 return elfcore_grok_solaris_prstatus(abfd
, note
,
11335 136, 216, 308, 152, 356);
11336 case 904: /* sizeof(prstatus_t) SPARC 64-bit */
11337 return elfcore_grok_solaris_prstatus(abfd
, note
,
11338 264, 360, 520, 304, 600);
11339 case 432: /* sizeof(prstatus_t) Intel 32-bit */
11340 return elfcore_grok_solaris_prstatus(abfd
, note
,
11341 136, 216, 308, 76, 356);
11342 case 824: /* sizeof(prstatus_t) Intel 64-bit */
11343 return elfcore_grok_solaris_prstatus(abfd
, note
,
11344 264, 360, 520, 224, 600);
11349 case SOLARIS_NT_PSINFO
:
11350 case SOLARIS_NT_PRPSINFO
:
11351 switch (note
->descsz
)
11353 case 260: /* sizeof(prpsinfo_t) SPARC and Intel 32-bit */
11354 return elfcore_grok_solaris_info(abfd
, note
, 84, 100);
11355 case 328: /* sizeof(prpsinfo_t) SPARC and Intel 64-bit */
11356 return elfcore_grok_solaris_info(abfd
, note
, 120, 136);
11357 case 360: /* sizeof(psinfo_t) SPARC and Intel 32-bit */
11358 return elfcore_grok_solaris_info(abfd
, note
, 88, 104);
11359 case 440: /* sizeof(psinfo_t) SPARC and Intel 64-bit */
11360 return elfcore_grok_solaris_info(abfd
, note
, 136, 152);
11365 case SOLARIS_NT_LWPSTATUS
:
11366 switch (note
->descsz
)
11368 case 896: /* sizeof(lwpstatus_t) SPARC 32-bit */
11369 return elfcore_grok_solaris_lwpstatus(abfd
, note
,
11370 152, 344, 400, 496);
11371 case 1392: /* sizeof(lwpstatus_t) SPARC 64-bit */
11372 return elfcore_grok_solaris_lwpstatus(abfd
, note
,
11373 304, 544, 544, 848);
11374 case 800: /* sizeof(lwpstatus_t) Intel 32-bit */
11375 return elfcore_grok_solaris_lwpstatus(abfd
, note
,
11376 76, 344, 380, 420);
11377 case 1296: /* sizeof(lwpstatus_t) Intel 64-bit */
11378 return elfcore_grok_solaris_lwpstatus(abfd
, note
,
11379 224, 544, 528, 768);
11384 case SOLARIS_NT_LWPSINFO
:
11385 /* sizeof(lwpsinfo_t) on 32- and 64-bit, respectively */
11386 if (note
->descsz
== 128 || note
->descsz
== 152)
11387 elf_tdata (abfd
)->core
->lwpid
=
11388 bfd_get_32 (abfd
, note
->descdata
+ 4);
11398 /* For name starting with "CORE" this may be either a Solaris
11399 core file or a gdb-generated core file. Do Solaris-specific
11400 processing on selected note types first with
11401 elfcore_grok_solaris_note(), then process the note
11402 in elfcore_grok_note(). */
11405 elfcore_grok_solaris_note (bfd
*abfd
, Elf_Internal_Note
*note
)
11407 if (!elfcore_grok_solaris_note_impl (abfd
, note
))
11410 return elfcore_grok_note (abfd
, note
);
11414 elfcore_grok_openbsd_note (bfd
*abfd
, Elf_Internal_Note
*note
)
11416 if (note
->type
== NT_OPENBSD_PROCINFO
)
11417 return elfcore_grok_openbsd_procinfo (abfd
, note
);
11419 if (note
->type
== NT_OPENBSD_REGS
)
11420 return elfcore_make_note_pseudosection (abfd
, ".reg", note
);
11422 if (note
->type
== NT_OPENBSD_FPREGS
)
11423 return elfcore_make_note_pseudosection (abfd
, ".reg2", note
);
11425 if (note
->type
== NT_OPENBSD_XFPREGS
)
11426 return elfcore_make_note_pseudosection (abfd
, ".reg-xfp", note
);
11428 if (note
->type
== NT_OPENBSD_AUXV
)
11429 return elfcore_make_auxv_note_section (abfd
, note
, 0);
11431 if (note
->type
== NT_OPENBSD_WCOOKIE
)
11433 asection
*sect
= bfd_make_section_anyway_with_flags (abfd
, ".wcookie",
11438 sect
->size
= note
->descsz
;
11439 sect
->filepos
= note
->descpos
;
11440 sect
->alignment_power
= 1 + bfd_get_arch_size (abfd
) / 32;
11449 elfcore_grok_nto_status (bfd
*abfd
, Elf_Internal_Note
*note
, long *tid
)
11451 void *ddata
= note
->descdata
;
11458 if (note
->descsz
< 16)
11461 /* nto_procfs_status 'pid' field is at offset 0. */
11462 elf_tdata (abfd
)->core
->pid
= bfd_get_32 (abfd
, (bfd_byte
*) ddata
);
11464 /* nto_procfs_status 'tid' field is at offset 4. Pass it back. */
11465 *tid
= bfd_get_32 (abfd
, (bfd_byte
*) ddata
+ 4);
11467 /* nto_procfs_status 'flags' field is at offset 8. */
11468 flags
= bfd_get_32 (abfd
, (bfd_byte
*) ddata
+ 8);
11470 /* nto_procfs_status 'what' field is at offset 14. */
11471 if ((sig
= bfd_get_16 (abfd
, (bfd_byte
*) ddata
+ 14)) > 0)
11473 elf_tdata (abfd
)->core
->signal
= sig
;
11474 elf_tdata (abfd
)->core
->lwpid
= *tid
;
11477 /* _DEBUG_FLAG_CURTID (current thread) is 0x80. Some cores
11478 do not come from signals so we make sure we set the current
11479 thread just in case. */
11480 if (flags
& 0x00000080)
11481 elf_tdata (abfd
)->core
->lwpid
= *tid
;
11483 /* Make a ".qnx_core_status/%d" section. */
11484 sprintf (buf
, ".qnx_core_status/%ld", *tid
);
11486 name
= (char *) bfd_alloc (abfd
, strlen (buf
) + 1);
11489 strcpy (name
, buf
);
11491 sect
= bfd_make_section_anyway_with_flags (abfd
, name
, SEC_HAS_CONTENTS
);
11495 sect
->size
= note
->descsz
;
11496 sect
->filepos
= note
->descpos
;
11497 sect
->alignment_power
= 2;
11499 return (elfcore_maybe_make_sect (abfd
, ".qnx_core_status", sect
));
11503 elfcore_grok_nto_regs (bfd
*abfd
,
11504 Elf_Internal_Note
*note
,
11512 /* Make a "(base)/%d" section. */
11513 sprintf (buf
, "%s/%ld", base
, tid
);
11515 name
= (char *) bfd_alloc (abfd
, strlen (buf
) + 1);
11518 strcpy (name
, buf
);
11520 sect
= bfd_make_section_anyway_with_flags (abfd
, name
, SEC_HAS_CONTENTS
);
11524 sect
->size
= note
->descsz
;
11525 sect
->filepos
= note
->descpos
;
11526 sect
->alignment_power
= 2;
11528 /* This is the current thread. */
11529 if (elf_tdata (abfd
)->core
->lwpid
== tid
)
11530 return elfcore_maybe_make_sect (abfd
, base
, sect
);
11535 #define BFD_QNT_CORE_INFO 7
11536 #define BFD_QNT_CORE_STATUS 8
11537 #define BFD_QNT_CORE_GREG 9
11538 #define BFD_QNT_CORE_FPREG 10
11541 elfcore_grok_nto_note (bfd
*abfd
, Elf_Internal_Note
*note
)
11543 /* Every GREG section has a STATUS section before it. Store the
11544 tid from the previous call to pass down to the next gregs
11546 static long tid
= 1;
11548 switch (note
->type
)
11550 case BFD_QNT_CORE_INFO
:
11551 return elfcore_make_note_pseudosection (abfd
, ".qnx_core_info", note
);
11552 case BFD_QNT_CORE_STATUS
:
11553 return elfcore_grok_nto_status (abfd
, note
, &tid
);
11554 case BFD_QNT_CORE_GREG
:
11555 return elfcore_grok_nto_regs (abfd
, note
, tid
, ".reg");
11556 case BFD_QNT_CORE_FPREG
:
11557 return elfcore_grok_nto_regs (abfd
, note
, tid
, ".reg2");
11564 elfcore_grok_spu_note (bfd
*abfd
, Elf_Internal_Note
*note
)
11570 /* Use note name as section name. */
11571 len
= note
->namesz
;
11572 name
= (char *) bfd_alloc (abfd
, len
);
11575 memcpy (name
, note
->namedata
, len
);
11576 name
[len
- 1] = '\0';
11578 sect
= bfd_make_section_anyway_with_flags (abfd
, name
, SEC_HAS_CONTENTS
);
11582 sect
->size
= note
->descsz
;
11583 sect
->filepos
= note
->descpos
;
11584 sect
->alignment_power
= 1;
11589 /* Function: elfcore_write_note
11592 buffer to hold note, and current size of buffer
11596 size of data for note
11598 Writes note to end of buffer. ELF64 notes are written exactly as
11599 for ELF32, despite the current (as of 2006) ELF gabi specifying
11600 that they ought to have 8-byte namesz and descsz field, and have
11601 8-byte alignment. Other writers, eg. Linux kernel, do the same.
11604 Pointer to realloc'd buffer, *BUFSIZ updated. */
11607 elfcore_write_note (bfd
*abfd
,
11615 Elf_External_Note
*xnp
;
11622 namesz
= strlen (name
) + 1;
11624 newspace
= 12 + ((namesz
+ 3) & -4) + ((size
+ 3) & -4);
11626 buf
= (char *) realloc (buf
, *bufsiz
+ newspace
);
11629 dest
= buf
+ *bufsiz
;
11630 *bufsiz
+= newspace
;
11631 xnp
= (Elf_External_Note
*) dest
;
11632 H_PUT_32 (abfd
, namesz
, xnp
->namesz
);
11633 H_PUT_32 (abfd
, size
, xnp
->descsz
);
11634 H_PUT_32 (abfd
, type
, xnp
->type
);
11638 memcpy (dest
, name
, namesz
);
11646 memcpy (dest
, input
, size
);
11656 /* gcc-8 warns (*) on all the strncpy calls in this function about
11657 possible string truncation. The "truncation" is not a bug. We
11658 have an external representation of structs with fields that are not
11659 necessarily NULL terminated and corresponding internal
11660 representation fields that are one larger so that they can always
11661 be NULL terminated.
11662 gcc versions between 4.2 and 4.6 do not allow pragma control of
11663 diagnostics inside functions, giving a hard error if you try to use
11664 the finer control available with later versions.
11665 gcc prior to 4.2 warns about diagnostic push and pop.
11666 gcc-5, gcc-6 and gcc-7 warn that -Wstringop-truncation is unknown,
11667 unless you also add #pragma GCC diagnostic ignored "-Wpragma".
11668 (*) Depending on your system header files! */
11669 #if GCC_VERSION >= 8000
11670 # pragma GCC diagnostic push
11671 # pragma GCC diagnostic ignored "-Wstringop-truncation"
11674 elfcore_write_prpsinfo (bfd
*abfd
,
11678 const char *psargs
)
11680 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
11682 if (bed
->elf_backend_write_core_note
!= NULL
)
11685 ret
= (*bed
->elf_backend_write_core_note
) (abfd
, buf
, bufsiz
,
11686 NT_PRPSINFO
, fname
, psargs
);
11691 #if defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T)
11692 # if defined (HAVE_PRPSINFO32_T) || defined (HAVE_PSINFO32_T)
11693 if (bed
->s
->elfclass
== ELFCLASS32
)
11695 # if defined (HAVE_PSINFO32_T)
11697 int note_type
= NT_PSINFO
;
11700 int note_type
= NT_PRPSINFO
;
11703 memset (&data
, 0, sizeof (data
));
11704 strncpy (data
.pr_fname
, fname
, sizeof (data
.pr_fname
));
11705 strncpy (data
.pr_psargs
, psargs
, sizeof (data
.pr_psargs
));
11706 return elfcore_write_note (abfd
, buf
, bufsiz
,
11707 "CORE", note_type
, &data
, sizeof (data
));
11712 # if defined (HAVE_PSINFO_T)
11714 int note_type
= NT_PSINFO
;
11717 int note_type
= NT_PRPSINFO
;
11720 memset (&data
, 0, sizeof (data
));
11721 strncpy (data
.pr_fname
, fname
, sizeof (data
.pr_fname
));
11722 strncpy (data
.pr_psargs
, psargs
, sizeof (data
.pr_psargs
));
11723 return elfcore_write_note (abfd
, buf
, bufsiz
,
11724 "CORE", note_type
, &data
, sizeof (data
));
11726 #endif /* PSINFO_T or PRPSINFO_T */
11731 #if GCC_VERSION >= 8000
11732 # pragma GCC diagnostic pop
11736 elfcore_write_linux_prpsinfo32
11737 (bfd
*abfd
, char *buf
, int *bufsiz
,
11738 const struct elf_internal_linux_prpsinfo
*prpsinfo
)
11740 if (get_elf_backend_data (abfd
)->linux_prpsinfo32_ugid16
)
11742 struct elf_external_linux_prpsinfo32_ugid16 data
;
11744 swap_linux_prpsinfo32_ugid16_out (abfd
, prpsinfo
, &data
);
11745 return elfcore_write_note (abfd
, buf
, bufsiz
, "CORE", NT_PRPSINFO
,
11746 &data
, sizeof (data
));
11750 struct elf_external_linux_prpsinfo32_ugid32 data
;
11752 swap_linux_prpsinfo32_ugid32_out (abfd
, prpsinfo
, &data
);
11753 return elfcore_write_note (abfd
, buf
, bufsiz
, "CORE", NT_PRPSINFO
,
11754 &data
, sizeof (data
));
11759 elfcore_write_linux_prpsinfo64
11760 (bfd
*abfd
, char *buf
, int *bufsiz
,
11761 const struct elf_internal_linux_prpsinfo
*prpsinfo
)
11763 if (get_elf_backend_data (abfd
)->linux_prpsinfo64_ugid16
)
11765 struct elf_external_linux_prpsinfo64_ugid16 data
;
11767 swap_linux_prpsinfo64_ugid16_out (abfd
, prpsinfo
, &data
);
11768 return elfcore_write_note (abfd
, buf
, bufsiz
,
11769 "CORE", NT_PRPSINFO
, &data
, sizeof (data
));
11773 struct elf_external_linux_prpsinfo64_ugid32 data
;
11775 swap_linux_prpsinfo64_ugid32_out (abfd
, prpsinfo
, &data
);
11776 return elfcore_write_note (abfd
, buf
, bufsiz
,
11777 "CORE", NT_PRPSINFO
, &data
, sizeof (data
));
11782 elfcore_write_prstatus (bfd
*abfd
,
11789 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
11791 if (bed
->elf_backend_write_core_note
!= NULL
)
11794 ret
= (*bed
->elf_backend_write_core_note
) (abfd
, buf
, bufsiz
,
11796 pid
, cursig
, gregs
);
11801 #if defined (HAVE_PRSTATUS_T)
11802 #if defined (HAVE_PRSTATUS32_T)
11803 if (bed
->s
->elfclass
== ELFCLASS32
)
11805 prstatus32_t prstat
;
11807 memset (&prstat
, 0, sizeof (prstat
));
11808 prstat
.pr_pid
= pid
;
11809 prstat
.pr_cursig
= cursig
;
11810 memcpy (&prstat
.pr_reg
, gregs
, sizeof (prstat
.pr_reg
));
11811 return elfcore_write_note (abfd
, buf
, bufsiz
, "CORE",
11812 NT_PRSTATUS
, &prstat
, sizeof (prstat
));
11819 memset (&prstat
, 0, sizeof (prstat
));
11820 prstat
.pr_pid
= pid
;
11821 prstat
.pr_cursig
= cursig
;
11822 memcpy (&prstat
.pr_reg
, gregs
, sizeof (prstat
.pr_reg
));
11823 return elfcore_write_note (abfd
, buf
, bufsiz
, "CORE",
11824 NT_PRSTATUS
, &prstat
, sizeof (prstat
));
11826 #endif /* HAVE_PRSTATUS_T */
11832 #if defined (HAVE_LWPSTATUS_T)
11834 elfcore_write_lwpstatus (bfd
*abfd
,
11841 lwpstatus_t lwpstat
;
11842 const char *note_name
= "CORE";
11844 memset (&lwpstat
, 0, sizeof (lwpstat
));
11845 lwpstat
.pr_lwpid
= pid
>> 16;
11846 lwpstat
.pr_cursig
= cursig
;
11847 #if defined (HAVE_LWPSTATUS_T_PR_REG)
11848 memcpy (&lwpstat
.pr_reg
, gregs
, sizeof (lwpstat
.pr_reg
));
11849 #elif defined (HAVE_LWPSTATUS_T_PR_CONTEXT)
11850 #if !defined(gregs)
11851 memcpy (lwpstat
.pr_context
.uc_mcontext
.gregs
,
11852 gregs
, sizeof (lwpstat
.pr_context
.uc_mcontext
.gregs
));
11854 memcpy (lwpstat
.pr_context
.uc_mcontext
.__gregs
,
11855 gregs
, sizeof (lwpstat
.pr_context
.uc_mcontext
.__gregs
));
11858 return elfcore_write_note (abfd
, buf
, bufsiz
, note_name
,
11859 NT_LWPSTATUS
, &lwpstat
, sizeof (lwpstat
));
11861 #endif /* HAVE_LWPSTATUS_T */
11863 #if defined (HAVE_PSTATUS_T)
11865 elfcore_write_pstatus (bfd
*abfd
,
11869 int cursig ATTRIBUTE_UNUSED
,
11870 const void *gregs ATTRIBUTE_UNUSED
)
11872 const char *note_name
= "CORE";
11873 #if defined (HAVE_PSTATUS32_T)
11874 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
11876 if (bed
->s
->elfclass
== ELFCLASS32
)
11880 memset (&pstat
, 0, sizeof (pstat
));
11881 pstat
.pr_pid
= pid
& 0xffff;
11882 buf
= elfcore_write_note (abfd
, buf
, bufsiz
, note_name
,
11883 NT_PSTATUS
, &pstat
, sizeof (pstat
));
11891 memset (&pstat
, 0, sizeof (pstat
));
11892 pstat
.pr_pid
= pid
& 0xffff;
11893 buf
= elfcore_write_note (abfd
, buf
, bufsiz
, note_name
,
11894 NT_PSTATUS
, &pstat
, sizeof (pstat
));
11898 #endif /* HAVE_PSTATUS_T */
11901 elfcore_write_prfpreg (bfd
*abfd
,
11904 const void *fpregs
,
11907 const char *note_name
= "CORE";
11908 return elfcore_write_note (abfd
, buf
, bufsiz
,
11909 note_name
, NT_FPREGSET
, fpregs
, size
);
11913 elfcore_write_prxfpreg (bfd
*abfd
,
11916 const void *xfpregs
,
11919 char *note_name
= "LINUX";
11920 return elfcore_write_note (abfd
, buf
, bufsiz
,
11921 note_name
, NT_PRXFPREG
, xfpregs
, size
);
11925 elfcore_write_xstatereg (bfd
*abfd
, char *buf
, int *bufsiz
,
11926 const void *xfpregs
, int size
)
11929 if (get_elf_backend_data (abfd
)->elf_osabi
== ELFOSABI_FREEBSD
)
11930 note_name
= "FreeBSD";
11932 note_name
= "LINUX";
11933 return elfcore_write_note (abfd
, buf
, bufsiz
,
11934 note_name
, NT_X86_XSTATE
, xfpregs
, size
);
11938 elfcore_write_x86_segbases (bfd
*abfd
, char *buf
, int *bufsiz
,
11939 const void *regs
, int size
)
11941 char *note_name
= "FreeBSD";
11942 return elfcore_write_note (abfd
, buf
, bufsiz
,
11943 note_name
, NT_FREEBSD_X86_SEGBASES
, regs
, size
);
11947 elfcore_write_ppc_vmx (bfd
*abfd
,
11950 const void *ppc_vmx
,
11953 char *note_name
= "LINUX";
11954 return elfcore_write_note (abfd
, buf
, bufsiz
,
11955 note_name
, NT_PPC_VMX
, ppc_vmx
, size
);
11959 elfcore_write_ppc_vsx (bfd
*abfd
,
11962 const void *ppc_vsx
,
11965 char *note_name
= "LINUX";
11966 return elfcore_write_note (abfd
, buf
, bufsiz
,
11967 note_name
, NT_PPC_VSX
, ppc_vsx
, size
);
11971 elfcore_write_ppc_tar (bfd
*abfd
,
11974 const void *ppc_tar
,
11977 char *note_name
= "LINUX";
11978 return elfcore_write_note (abfd
, buf
, bufsiz
,
11979 note_name
, NT_PPC_TAR
, ppc_tar
, size
);
11983 elfcore_write_ppc_ppr (bfd
*abfd
,
11986 const void *ppc_ppr
,
11989 char *note_name
= "LINUX";
11990 return elfcore_write_note (abfd
, buf
, bufsiz
,
11991 note_name
, NT_PPC_PPR
, ppc_ppr
, size
);
11995 elfcore_write_ppc_dscr (bfd
*abfd
,
11998 const void *ppc_dscr
,
12001 char *note_name
= "LINUX";
12002 return elfcore_write_note (abfd
, buf
, bufsiz
,
12003 note_name
, NT_PPC_DSCR
, ppc_dscr
, size
);
12007 elfcore_write_ppc_ebb (bfd
*abfd
,
12010 const void *ppc_ebb
,
12013 char *note_name
= "LINUX";
12014 return elfcore_write_note (abfd
, buf
, bufsiz
,
12015 note_name
, NT_PPC_EBB
, ppc_ebb
, size
);
12019 elfcore_write_ppc_pmu (bfd
*abfd
,
12022 const void *ppc_pmu
,
12025 char *note_name
= "LINUX";
12026 return elfcore_write_note (abfd
, buf
, bufsiz
,
12027 note_name
, NT_PPC_PMU
, ppc_pmu
, size
);
12031 elfcore_write_ppc_tm_cgpr (bfd
*abfd
,
12034 const void *ppc_tm_cgpr
,
12037 char *note_name
= "LINUX";
12038 return elfcore_write_note (abfd
, buf
, bufsiz
,
12039 note_name
, NT_PPC_TM_CGPR
, ppc_tm_cgpr
, size
);
12043 elfcore_write_ppc_tm_cfpr (bfd
*abfd
,
12046 const void *ppc_tm_cfpr
,
12049 char *note_name
= "LINUX";
12050 return elfcore_write_note (abfd
, buf
, bufsiz
,
12051 note_name
, NT_PPC_TM_CFPR
, ppc_tm_cfpr
, size
);
12055 elfcore_write_ppc_tm_cvmx (bfd
*abfd
,
12058 const void *ppc_tm_cvmx
,
12061 char *note_name
= "LINUX";
12062 return elfcore_write_note (abfd
, buf
, bufsiz
,
12063 note_name
, NT_PPC_TM_CVMX
, ppc_tm_cvmx
, size
);
12067 elfcore_write_ppc_tm_cvsx (bfd
*abfd
,
12070 const void *ppc_tm_cvsx
,
12073 char *note_name
= "LINUX";
12074 return elfcore_write_note (abfd
, buf
, bufsiz
,
12075 note_name
, NT_PPC_TM_CVSX
, ppc_tm_cvsx
, size
);
12079 elfcore_write_ppc_tm_spr (bfd
*abfd
,
12082 const void *ppc_tm_spr
,
12085 char *note_name
= "LINUX";
12086 return elfcore_write_note (abfd
, buf
, bufsiz
,
12087 note_name
, NT_PPC_TM_SPR
, ppc_tm_spr
, size
);
12091 elfcore_write_ppc_tm_ctar (bfd
*abfd
,
12094 const void *ppc_tm_ctar
,
12097 char *note_name
= "LINUX";
12098 return elfcore_write_note (abfd
, buf
, bufsiz
,
12099 note_name
, NT_PPC_TM_CTAR
, ppc_tm_ctar
, size
);
12103 elfcore_write_ppc_tm_cppr (bfd
*abfd
,
12106 const void *ppc_tm_cppr
,
12109 char *note_name
= "LINUX";
12110 return elfcore_write_note (abfd
, buf
, bufsiz
,
12111 note_name
, NT_PPC_TM_CPPR
, ppc_tm_cppr
, size
);
12115 elfcore_write_ppc_tm_cdscr (bfd
*abfd
,
12118 const void *ppc_tm_cdscr
,
12121 char *note_name
= "LINUX";
12122 return elfcore_write_note (abfd
, buf
, bufsiz
,
12123 note_name
, NT_PPC_TM_CDSCR
, ppc_tm_cdscr
, size
);
12127 elfcore_write_s390_high_gprs (bfd
*abfd
,
12130 const void *s390_high_gprs
,
12133 char *note_name
= "LINUX";
12134 return elfcore_write_note (abfd
, buf
, bufsiz
,
12135 note_name
, NT_S390_HIGH_GPRS
,
12136 s390_high_gprs
, size
);
12140 elfcore_write_s390_timer (bfd
*abfd
,
12143 const void *s390_timer
,
12146 char *note_name
= "LINUX";
12147 return elfcore_write_note (abfd
, buf
, bufsiz
,
12148 note_name
, NT_S390_TIMER
, s390_timer
, size
);
12152 elfcore_write_s390_todcmp (bfd
*abfd
,
12155 const void *s390_todcmp
,
12158 char *note_name
= "LINUX";
12159 return elfcore_write_note (abfd
, buf
, bufsiz
,
12160 note_name
, NT_S390_TODCMP
, s390_todcmp
, size
);
12164 elfcore_write_s390_todpreg (bfd
*abfd
,
12167 const void *s390_todpreg
,
12170 char *note_name
= "LINUX";
12171 return elfcore_write_note (abfd
, buf
, bufsiz
,
12172 note_name
, NT_S390_TODPREG
, s390_todpreg
, size
);
12176 elfcore_write_s390_ctrs (bfd
*abfd
,
12179 const void *s390_ctrs
,
12182 char *note_name
= "LINUX";
12183 return elfcore_write_note (abfd
, buf
, bufsiz
,
12184 note_name
, NT_S390_CTRS
, s390_ctrs
, size
);
12188 elfcore_write_s390_prefix (bfd
*abfd
,
12191 const void *s390_prefix
,
12194 char *note_name
= "LINUX";
12195 return elfcore_write_note (abfd
, buf
, bufsiz
,
12196 note_name
, NT_S390_PREFIX
, s390_prefix
, size
);
12200 elfcore_write_s390_last_break (bfd
*abfd
,
12203 const void *s390_last_break
,
12206 char *note_name
= "LINUX";
12207 return elfcore_write_note (abfd
, buf
, bufsiz
,
12208 note_name
, NT_S390_LAST_BREAK
,
12209 s390_last_break
, size
);
12213 elfcore_write_s390_system_call (bfd
*abfd
,
12216 const void *s390_system_call
,
12219 char *note_name
= "LINUX";
12220 return elfcore_write_note (abfd
, buf
, bufsiz
,
12221 note_name
, NT_S390_SYSTEM_CALL
,
12222 s390_system_call
, size
);
12226 elfcore_write_s390_tdb (bfd
*abfd
,
12229 const void *s390_tdb
,
12232 char *note_name
= "LINUX";
12233 return elfcore_write_note (abfd
, buf
, bufsiz
,
12234 note_name
, NT_S390_TDB
, s390_tdb
, size
);
12238 elfcore_write_s390_vxrs_low (bfd
*abfd
,
12241 const void *s390_vxrs_low
,
12244 char *note_name
= "LINUX";
12245 return elfcore_write_note (abfd
, buf
, bufsiz
,
12246 note_name
, NT_S390_VXRS_LOW
, s390_vxrs_low
, size
);
12250 elfcore_write_s390_vxrs_high (bfd
*abfd
,
12253 const void *s390_vxrs_high
,
12256 char *note_name
= "LINUX";
12257 return elfcore_write_note (abfd
, buf
, bufsiz
,
12258 note_name
, NT_S390_VXRS_HIGH
,
12259 s390_vxrs_high
, size
);
12263 elfcore_write_s390_gs_cb (bfd
*abfd
,
12266 const void *s390_gs_cb
,
12269 char *note_name
= "LINUX";
12270 return elfcore_write_note (abfd
, buf
, bufsiz
,
12271 note_name
, NT_S390_GS_CB
,
12276 elfcore_write_s390_gs_bc (bfd
*abfd
,
12279 const void *s390_gs_bc
,
12282 char *note_name
= "LINUX";
12283 return elfcore_write_note (abfd
, buf
, bufsiz
,
12284 note_name
, NT_S390_GS_BC
,
12289 elfcore_write_arm_vfp (bfd
*abfd
,
12292 const void *arm_vfp
,
12295 char *note_name
= "LINUX";
12296 return elfcore_write_note (abfd
, buf
, bufsiz
,
12297 note_name
, NT_ARM_VFP
, arm_vfp
, size
);
12301 elfcore_write_aarch_tls (bfd
*abfd
,
12304 const void *aarch_tls
,
12307 char *note_name
= "LINUX";
12308 return elfcore_write_note (abfd
, buf
, bufsiz
,
12309 note_name
, NT_ARM_TLS
, aarch_tls
, size
);
12313 elfcore_write_aarch_hw_break (bfd
*abfd
,
12316 const void *aarch_hw_break
,
12319 char *note_name
= "LINUX";
12320 return elfcore_write_note (abfd
, buf
, bufsiz
,
12321 note_name
, NT_ARM_HW_BREAK
, aarch_hw_break
, size
);
12325 elfcore_write_aarch_hw_watch (bfd
*abfd
,
12328 const void *aarch_hw_watch
,
12331 char *note_name
= "LINUX";
12332 return elfcore_write_note (abfd
, buf
, bufsiz
,
12333 note_name
, NT_ARM_HW_WATCH
, aarch_hw_watch
, size
);
12337 elfcore_write_aarch_sve (bfd
*abfd
,
12340 const void *aarch_sve
,
12343 char *note_name
= "LINUX";
12344 return elfcore_write_note (abfd
, buf
, bufsiz
,
12345 note_name
, NT_ARM_SVE
, aarch_sve
, size
);
12349 elfcore_write_aarch_pauth (bfd
*abfd
,
12352 const void *aarch_pauth
,
12355 char *note_name
= "LINUX";
12356 return elfcore_write_note (abfd
, buf
, bufsiz
,
12357 note_name
, NT_ARM_PAC_MASK
, aarch_pauth
, size
);
12361 elfcore_write_aarch_mte (bfd
*abfd
,
12364 const void *aarch_mte
,
12367 char *note_name
= "LINUX";
12368 return elfcore_write_note (abfd
, buf
, bufsiz
,
12369 note_name
, NT_ARM_TAGGED_ADDR_CTRL
,
12375 elfcore_write_arc_v2 (bfd
*abfd
,
12378 const void *arc_v2
,
12381 char *note_name
= "LINUX";
12382 return elfcore_write_note (abfd
, buf
, bufsiz
,
12383 note_name
, NT_ARC_V2
, arc_v2
, size
);
12387 elfcore_write_loongarch_cpucfg (bfd
*abfd
,
12390 const void *loongarch_cpucfg
,
12393 char *note_name
= "LINUX";
12394 return elfcore_write_note (abfd
, buf
, bufsiz
,
12395 note_name
, NT_LARCH_CPUCFG
,
12396 loongarch_cpucfg
, size
);
12400 elfcore_write_loongarch_lbt (bfd
*abfd
,
12403 const void *loongarch_lbt
,
12406 char *note_name
= "LINUX";
12407 return elfcore_write_note (abfd
, buf
, bufsiz
,
12408 note_name
, NT_LARCH_LBT
, loongarch_lbt
, size
);
12412 elfcore_write_loongarch_lsx (bfd
*abfd
,
12415 const void *loongarch_lsx
,
12418 char *note_name
= "LINUX";
12419 return elfcore_write_note (abfd
, buf
, bufsiz
,
12420 note_name
, NT_LARCH_LSX
, loongarch_lsx
, size
);
12424 elfcore_write_loongarch_lasx (bfd
*abfd
,
12427 const void *loongarch_lasx
,
12430 char *note_name
= "LINUX";
12431 return elfcore_write_note (abfd
, buf
, bufsiz
,
12432 note_name
, NT_LARCH_LASX
, loongarch_lasx
, size
);
12435 /* Write the buffer of csr values in CSRS (length SIZE) into the note
12436 buffer BUF and update *BUFSIZ. ABFD is the bfd the note is being
12437 written into. Return a pointer to the new start of the note buffer, to
12438 replace BUF which may no longer be valid. */
12441 elfcore_write_riscv_csr (bfd
*abfd
,
12447 const char *note_name
= "GDB";
12448 return elfcore_write_note (abfd
, buf
, bufsiz
,
12449 note_name
, NT_RISCV_CSR
, csrs
, size
);
12452 /* Write the target description (a string) pointed to by TDESC, length
12453 SIZE, into the note buffer BUF, and update *BUFSIZ. ABFD is the bfd the
12454 note is being written into. Return a pointer to the new start of the
12455 note buffer, to replace BUF which may no longer be valid. */
12458 elfcore_write_gdb_tdesc (bfd
*abfd
,
12464 const char *note_name
= "GDB";
12465 return elfcore_write_note (abfd
, buf
, bufsiz
,
12466 note_name
, NT_GDB_TDESC
, tdesc
, size
);
12470 elfcore_write_register_note (bfd
*abfd
,
12473 const char *section
,
12477 if (strcmp (section
, ".reg2") == 0)
12478 return elfcore_write_prfpreg (abfd
, buf
, bufsiz
, data
, size
);
12479 if (strcmp (section
, ".reg-xfp") == 0)
12480 return elfcore_write_prxfpreg (abfd
, buf
, bufsiz
, data
, size
);
12481 if (strcmp (section
, ".reg-xstate") == 0)
12482 return elfcore_write_xstatereg (abfd
, buf
, bufsiz
, data
, size
);
12483 if (strcmp (section
, ".reg-x86-segbases") == 0)
12484 return elfcore_write_x86_segbases (abfd
, buf
, bufsiz
, data
, size
);
12485 if (strcmp (section
, ".reg-ppc-vmx") == 0)
12486 return elfcore_write_ppc_vmx (abfd
, buf
, bufsiz
, data
, size
);
12487 if (strcmp (section
, ".reg-ppc-vsx") == 0)
12488 return elfcore_write_ppc_vsx (abfd
, buf
, bufsiz
, data
, size
);
12489 if (strcmp (section
, ".reg-ppc-tar") == 0)
12490 return elfcore_write_ppc_tar (abfd
, buf
, bufsiz
, data
, size
);
12491 if (strcmp (section
, ".reg-ppc-ppr") == 0)
12492 return elfcore_write_ppc_ppr (abfd
, buf
, bufsiz
, data
, size
);
12493 if (strcmp (section
, ".reg-ppc-dscr") == 0)
12494 return elfcore_write_ppc_dscr (abfd
, buf
, bufsiz
, data
, size
);
12495 if (strcmp (section
, ".reg-ppc-ebb") == 0)
12496 return elfcore_write_ppc_ebb (abfd
, buf
, bufsiz
, data
, size
);
12497 if (strcmp (section
, ".reg-ppc-pmu") == 0)
12498 return elfcore_write_ppc_pmu (abfd
, buf
, bufsiz
, data
, size
);
12499 if (strcmp (section
, ".reg-ppc-tm-cgpr") == 0)
12500 return elfcore_write_ppc_tm_cgpr (abfd
, buf
, bufsiz
, data
, size
);
12501 if (strcmp (section
, ".reg-ppc-tm-cfpr") == 0)
12502 return elfcore_write_ppc_tm_cfpr (abfd
, buf
, bufsiz
, data
, size
);
12503 if (strcmp (section
, ".reg-ppc-tm-cvmx") == 0)
12504 return elfcore_write_ppc_tm_cvmx (abfd
, buf
, bufsiz
, data
, size
);
12505 if (strcmp (section
, ".reg-ppc-tm-cvsx") == 0)
12506 return elfcore_write_ppc_tm_cvsx (abfd
, buf
, bufsiz
, data
, size
);
12507 if (strcmp (section
, ".reg-ppc-tm-spr") == 0)
12508 return elfcore_write_ppc_tm_spr (abfd
, buf
, bufsiz
, data
, size
);
12509 if (strcmp (section
, ".reg-ppc-tm-ctar") == 0)
12510 return elfcore_write_ppc_tm_ctar (abfd
, buf
, bufsiz
, data
, size
);
12511 if (strcmp (section
, ".reg-ppc-tm-cppr") == 0)
12512 return elfcore_write_ppc_tm_cppr (abfd
, buf
, bufsiz
, data
, size
);
12513 if (strcmp (section
, ".reg-ppc-tm-cdscr") == 0)
12514 return elfcore_write_ppc_tm_cdscr (abfd
, buf
, bufsiz
, data
, size
);
12515 if (strcmp (section
, ".reg-s390-high-gprs") == 0)
12516 return elfcore_write_s390_high_gprs (abfd
, buf
, bufsiz
, data
, size
);
12517 if (strcmp (section
, ".reg-s390-timer") == 0)
12518 return elfcore_write_s390_timer (abfd
, buf
, bufsiz
, data
, size
);
12519 if (strcmp (section
, ".reg-s390-todcmp") == 0)
12520 return elfcore_write_s390_todcmp (abfd
, buf
, bufsiz
, data
, size
);
12521 if (strcmp (section
, ".reg-s390-todpreg") == 0)
12522 return elfcore_write_s390_todpreg (abfd
, buf
, bufsiz
, data
, size
);
12523 if (strcmp (section
, ".reg-s390-ctrs") == 0)
12524 return elfcore_write_s390_ctrs (abfd
, buf
, bufsiz
, data
, size
);
12525 if (strcmp (section
, ".reg-s390-prefix") == 0)
12526 return elfcore_write_s390_prefix (abfd
, buf
, bufsiz
, data
, size
);
12527 if (strcmp (section
, ".reg-s390-last-break") == 0)
12528 return elfcore_write_s390_last_break (abfd
, buf
, bufsiz
, data
, size
);
12529 if (strcmp (section
, ".reg-s390-system-call") == 0)
12530 return elfcore_write_s390_system_call (abfd
, buf
, bufsiz
, data
, size
);
12531 if (strcmp (section
, ".reg-s390-tdb") == 0)
12532 return elfcore_write_s390_tdb (abfd
, buf
, bufsiz
, data
, size
);
12533 if (strcmp (section
, ".reg-s390-vxrs-low") == 0)
12534 return elfcore_write_s390_vxrs_low (abfd
, buf
, bufsiz
, data
, size
);
12535 if (strcmp (section
, ".reg-s390-vxrs-high") == 0)
12536 return elfcore_write_s390_vxrs_high (abfd
, buf
, bufsiz
, data
, size
);
12537 if (strcmp (section
, ".reg-s390-gs-cb") == 0)
12538 return elfcore_write_s390_gs_cb (abfd
, buf
, bufsiz
, data
, size
);
12539 if (strcmp (section
, ".reg-s390-gs-bc") == 0)
12540 return elfcore_write_s390_gs_bc (abfd
, buf
, bufsiz
, data
, size
);
12541 if (strcmp (section
, ".reg-arm-vfp") == 0)
12542 return elfcore_write_arm_vfp (abfd
, buf
, bufsiz
, data
, size
);
12543 if (strcmp (section
, ".reg-aarch-tls") == 0)
12544 return elfcore_write_aarch_tls (abfd
, buf
, bufsiz
, data
, size
);
12545 if (strcmp (section
, ".reg-aarch-hw-break") == 0)
12546 return elfcore_write_aarch_hw_break (abfd
, buf
, bufsiz
, data
, size
);
12547 if (strcmp (section
, ".reg-aarch-hw-watch") == 0)
12548 return elfcore_write_aarch_hw_watch (abfd
, buf
, bufsiz
, data
, size
);
12549 if (strcmp (section
, ".reg-aarch-sve") == 0)
12550 return elfcore_write_aarch_sve (abfd
, buf
, bufsiz
, data
, size
);
12551 if (strcmp (section
, ".reg-aarch-pauth") == 0)
12552 return elfcore_write_aarch_pauth (abfd
, buf
, bufsiz
, data
, size
);
12553 if (strcmp (section
, ".reg-aarch-mte") == 0)
12554 return elfcore_write_aarch_mte (abfd
, buf
, bufsiz
, data
, size
);
12555 if (strcmp (section
, ".reg-arc-v2") == 0)
12556 return elfcore_write_arc_v2 (abfd
, buf
, bufsiz
, data
, size
);
12557 if (strcmp (section
, ".gdb-tdesc") == 0)
12558 return elfcore_write_gdb_tdesc (abfd
, buf
, bufsiz
, data
, size
);
12559 if (strcmp (section
, ".reg-riscv-csr") == 0)
12560 return elfcore_write_riscv_csr (abfd
, buf
, bufsiz
, data
, size
);
12561 if (strcmp (section
, ".reg-loongarch-cpucfg") == 0)
12562 return elfcore_write_loongarch_cpucfg (abfd
, buf
, bufsiz
, data
, size
);
12563 if (strcmp (section
, ".reg-loongarch-lbt") == 0)
12564 return elfcore_write_loongarch_lbt (abfd
, buf
, bufsiz
, data
, size
);
12565 if (strcmp (section
, ".reg-loongarch-lsx") == 0)
12566 return elfcore_write_loongarch_lsx (abfd
, buf
, bufsiz
, data
, size
);
12567 if (strcmp (section
, ".reg-loongarch-lasx") == 0)
12568 return elfcore_write_loongarch_lasx (abfd
, buf
, bufsiz
, data
, size
);
12573 elfcore_write_file_note (bfd
*obfd
, char *note_data
, int *note_size
,
12574 const void *buf
, int bufsiz
)
12576 return elfcore_write_note (obfd
, note_data
, note_size
,
12577 "CORE", NT_FILE
, buf
, bufsiz
);
12581 elf_parse_notes (bfd
*abfd
, char *buf
, size_t size
, file_ptr offset
,
12586 /* NB: CORE PT_NOTE segments may have p_align values of 0 or 1.
12587 gABI specifies that PT_NOTE alignment should be aligned to 4
12588 bytes for 32-bit objects and to 8 bytes for 64-bit objects. If
12589 align is less than 4, we use 4 byte alignment. */
12592 if (align
!= 4 && align
!= 8)
12596 while (p
< buf
+ size
)
12598 Elf_External_Note
*xnp
= (Elf_External_Note
*) p
;
12599 Elf_Internal_Note in
;
12601 if (offsetof (Elf_External_Note
, name
) > buf
- p
+ size
)
12604 in
.type
= H_GET_32 (abfd
, xnp
->type
);
12606 in
.namesz
= H_GET_32 (abfd
, xnp
->namesz
);
12607 in
.namedata
= xnp
->name
;
12608 if (in
.namesz
> buf
- in
.namedata
+ size
)
12611 in
.descsz
= H_GET_32 (abfd
, xnp
->descsz
);
12612 in
.descdata
= p
+ ELF_NOTE_DESC_OFFSET (in
.namesz
, align
);
12613 in
.descpos
= offset
+ (in
.descdata
- buf
);
12615 && (in
.descdata
>= buf
+ size
12616 || in
.descsz
> buf
- in
.descdata
+ size
))
12619 switch (bfd_get_format (abfd
))
12626 #define GROKER_ELEMENT(S,F) {S, sizeof (S) - 1, F}
12629 const char * string
;
12631 bool (*func
) (bfd
*, Elf_Internal_Note
*);
12635 GROKER_ELEMENT ("", elfcore_grok_note
),
12636 GROKER_ELEMENT ("FreeBSD", elfcore_grok_freebsd_note
),
12637 GROKER_ELEMENT ("NetBSD-CORE", elfcore_grok_netbsd_note
),
12638 GROKER_ELEMENT ("OpenBSD", elfcore_grok_openbsd_note
),
12639 GROKER_ELEMENT ("QNX", elfcore_grok_nto_note
),
12640 GROKER_ELEMENT ("SPU/", elfcore_grok_spu_note
),
12641 GROKER_ELEMENT ("GNU", elfobj_grok_gnu_note
),
12642 GROKER_ELEMENT ("CORE", elfcore_grok_solaris_note
)
12644 #undef GROKER_ELEMENT
12647 for (i
= ARRAY_SIZE (grokers
); i
--;)
12649 if (in
.namesz
>= grokers
[i
].len
12650 && strncmp (in
.namedata
, grokers
[i
].string
,
12651 grokers
[i
].len
) == 0)
12653 if (! grokers
[i
].func (abfd
, & in
))
12662 if (in
.namesz
== sizeof "GNU" && strcmp (in
.namedata
, "GNU") == 0)
12664 if (! elfobj_grok_gnu_note (abfd
, &in
))
12667 else if (in
.namesz
== sizeof "stapsdt"
12668 && strcmp (in
.namedata
, "stapsdt") == 0)
12670 if (! elfobj_grok_stapsdt_note (abfd
, &in
))
12676 p
+= ELF_NOTE_NEXT_OFFSET (in
.namesz
, in
.descsz
, align
);
12683 elf_read_notes (bfd
*abfd
, file_ptr offset
, bfd_size_type size
,
12688 if (size
== 0 || (size
+ 1) == 0)
12691 if (bfd_seek (abfd
, offset
, SEEK_SET
) != 0)
12694 buf
= (char *) _bfd_malloc_and_read (abfd
, size
+ 1, size
);
12698 /* PR 17512: file: ec08f814
12699 0-termintate the buffer so that string searches will not overflow. */
12702 if (!elf_parse_notes (abfd
, buf
, size
, offset
, align
))
12712 /* Providing external access to the ELF program header table. */
12714 /* Return an upper bound on the number of bytes required to store a
12715 copy of ABFD's program header table entries. Return -1 if an error
12716 occurs; bfd_get_error will return an appropriate code. */
12719 bfd_get_elf_phdr_upper_bound (bfd
*abfd
)
12721 if (abfd
->xvec
->flavour
!= bfd_target_elf_flavour
)
12723 bfd_set_error (bfd_error_wrong_format
);
12727 return elf_elfheader (abfd
)->e_phnum
* sizeof (Elf_Internal_Phdr
);
12730 /* Copy ABFD's program header table entries to *PHDRS. The entries
12731 will be stored as an array of Elf_Internal_Phdr structures, as
12732 defined in include/elf/internal.h. To find out how large the
12733 buffer needs to be, call bfd_get_elf_phdr_upper_bound.
12735 Return the number of program header table entries read, or -1 if an
12736 error occurs; bfd_get_error will return an appropriate code. */
12739 bfd_get_elf_phdrs (bfd
*abfd
, void *phdrs
)
12743 if (abfd
->xvec
->flavour
!= bfd_target_elf_flavour
)
12745 bfd_set_error (bfd_error_wrong_format
);
12749 num_phdrs
= elf_elfheader (abfd
)->e_phnum
;
12750 if (num_phdrs
!= 0)
12751 memcpy (phdrs
, elf_tdata (abfd
)->phdr
,
12752 num_phdrs
* sizeof (Elf_Internal_Phdr
));
12757 enum elf_reloc_type_class
12758 _bfd_elf_reloc_type_class (const struct bfd_link_info
*info ATTRIBUTE_UNUSED
,
12759 const asection
*rel_sec ATTRIBUTE_UNUSED
,
12760 const Elf_Internal_Rela
*rela ATTRIBUTE_UNUSED
)
12762 return reloc_class_normal
;
12765 /* For RELA architectures, return the relocation value for a
12766 relocation against a local symbol. */
12769 _bfd_elf_rela_local_sym (bfd
*abfd
,
12770 Elf_Internal_Sym
*sym
,
12772 Elf_Internal_Rela
*rel
)
12774 asection
*sec
= *psec
;
12775 bfd_vma relocation
;
12777 relocation
= (sec
->output_section
->vma
12778 + sec
->output_offset
12780 if ((sec
->flags
& SEC_MERGE
)
12781 && ELF_ST_TYPE (sym
->st_info
) == STT_SECTION
12782 && sec
->sec_info_type
== SEC_INFO_TYPE_MERGE
)
12785 _bfd_merged_section_offset (abfd
, psec
,
12786 elf_section_data (sec
)->sec_info
,
12787 sym
->st_value
+ rel
->r_addend
);
12790 /* If we have changed the section, and our original section is
12791 marked with SEC_EXCLUDE, it means that the original
12792 SEC_MERGE section has been completely subsumed in some
12793 other SEC_MERGE section. In this case, we need to leave
12794 some info around for --emit-relocs. */
12795 if ((sec
->flags
& SEC_EXCLUDE
) != 0)
12796 sec
->kept_section
= *psec
;
12799 rel
->r_addend
-= relocation
;
12800 rel
->r_addend
+= sec
->output_section
->vma
+ sec
->output_offset
;
12806 _bfd_elf_rel_local_sym (bfd
*abfd
,
12807 Elf_Internal_Sym
*sym
,
12811 asection
*sec
= *psec
;
12813 if (sec
->sec_info_type
!= SEC_INFO_TYPE_MERGE
)
12814 return sym
->st_value
+ addend
;
12816 return _bfd_merged_section_offset (abfd
, psec
,
12817 elf_section_data (sec
)->sec_info
,
12818 sym
->st_value
+ addend
);
12821 /* Adjust an address within a section. Given OFFSET within SEC, return
12822 the new offset within the section, based upon changes made to the
12823 section. Returns -1 if the offset is now invalid.
12824 The offset (in abnd out) is in target sized bytes, however big a
12828 _bfd_elf_section_offset (bfd
*abfd
,
12829 struct bfd_link_info
*info
,
12833 switch (sec
->sec_info_type
)
12835 case SEC_INFO_TYPE_STABS
:
12836 return _bfd_stab_section_offset (sec
, elf_section_data (sec
)->sec_info
,
12838 case SEC_INFO_TYPE_EH_FRAME
:
12839 return _bfd_elf_eh_frame_section_offset (abfd
, info
, sec
, offset
);
12842 if ((sec
->flags
& SEC_ELF_REVERSE_COPY
) != 0)
12844 /* Reverse the offset. */
12845 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
12846 bfd_size_type address_size
= bed
->s
->arch_size
/ 8;
12848 /* address_size and sec->size are in octets. Convert
12849 to bytes before subtracting the original offset. */
12850 offset
= ((sec
->size
- address_size
)
12851 / bfd_octets_per_byte (abfd
, sec
) - offset
);
12857 /* Create a new BFD as if by bfd_openr. Rather than opening a file,
12858 reconstruct an ELF file by reading the segments out of remote memory
12859 based on the ELF file header at EHDR_VMA and the ELF program headers it
12860 points to. If not null, *LOADBASEP is filled in with the difference
12861 between the VMAs from which the segments were read, and the VMAs the
12862 file headers (and hence BFD's idea of each section's VMA) put them at.
12864 The function TARGET_READ_MEMORY is called to copy LEN bytes from the
12865 remote memory at target address VMA into the local buffer at MYADDR; it
12866 should return zero on success or an `errno' code on failure. TEMPL must
12867 be a BFD for an ELF target with the word size and byte order found in
12868 the remote memory. */
12871 bfd_elf_bfd_from_remote_memory
12874 bfd_size_type size
,
12875 bfd_vma
*loadbasep
,
12876 int (*target_read_memory
) (bfd_vma
, bfd_byte
*, bfd_size_type
))
12878 return (*get_elf_backend_data (templ
)->elf_backend_bfd_from_remote_memory
)
12879 (templ
, ehdr_vma
, size
, loadbasep
, target_read_memory
);
12883 _bfd_elf_get_synthetic_symtab (bfd
*abfd
,
12884 long symcount ATTRIBUTE_UNUSED
,
12885 asymbol
**syms ATTRIBUTE_UNUSED
,
12890 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
12893 const char *relplt_name
;
12894 bool (*slurp_relocs
) (bfd
*, asection
*, asymbol
**, bool);
12898 Elf_Internal_Shdr
*hdr
;
12904 if ((abfd
->flags
& (DYNAMIC
| EXEC_P
)) == 0)
12907 if (dynsymcount
<= 0)
12910 if (!bed
->plt_sym_val
)
12913 relplt_name
= bed
->relplt_name
;
12914 if (relplt_name
== NULL
)
12915 relplt_name
= bed
->rela_plts_and_copies_p
? ".rela.plt" : ".rel.plt";
12916 relplt
= bfd_get_section_by_name (abfd
, relplt_name
);
12917 if (relplt
== NULL
)
12920 hdr
= &elf_section_data (relplt
)->this_hdr
;
12921 if (hdr
->sh_link
!= elf_dynsymtab (abfd
)
12922 || (hdr
->sh_type
!= SHT_REL
&& hdr
->sh_type
!= SHT_RELA
))
12925 plt
= bfd_get_section_by_name (abfd
, ".plt");
12929 slurp_relocs
= get_elf_backend_data (abfd
)->s
->slurp_reloc_table
;
12930 if (! (*slurp_relocs
) (abfd
, relplt
, dynsyms
, true))
12933 count
= relplt
->size
/ hdr
->sh_entsize
;
12934 size
= count
* sizeof (asymbol
);
12935 p
= relplt
->relocation
;
12936 for (i
= 0; i
< count
; i
++, p
+= bed
->s
->int_rels_per_ext_rel
)
12938 size
+= strlen ((*p
->sym_ptr_ptr
)->name
) + sizeof ("@plt");
12939 if (p
->addend
!= 0)
12942 size
+= sizeof ("+0x") - 1 + 8 + 8 * (bed
->s
->elfclass
== ELFCLASS64
);
12944 size
+= sizeof ("+0x") - 1 + 8;
12949 s
= *ret
= (asymbol
*) bfd_malloc (size
);
12953 names
= (char *) (s
+ count
);
12954 p
= relplt
->relocation
;
12956 for (i
= 0; i
< count
; i
++, p
+= bed
->s
->int_rels_per_ext_rel
)
12961 addr
= bed
->plt_sym_val (i
, plt
, p
);
12962 if (addr
== (bfd_vma
) -1)
12965 *s
= **p
->sym_ptr_ptr
;
12966 /* Undefined syms won't have BSF_LOCAL or BSF_GLOBAL set. Since
12967 we are defining a symbol, ensure one of them is set. */
12968 if ((s
->flags
& BSF_LOCAL
) == 0)
12969 s
->flags
|= BSF_GLOBAL
;
12970 s
->flags
|= BSF_SYNTHETIC
;
12972 s
->value
= addr
- plt
->vma
;
12975 len
= strlen ((*p
->sym_ptr_ptr
)->name
);
12976 memcpy (names
, (*p
->sym_ptr_ptr
)->name
, len
);
12978 if (p
->addend
!= 0)
12982 memcpy (names
, "+0x", sizeof ("+0x") - 1);
12983 names
+= sizeof ("+0x") - 1;
12984 bfd_sprintf_vma (abfd
, buf
, p
->addend
);
12985 for (a
= buf
; *a
== '0'; ++a
)
12988 memcpy (names
, a
, len
);
12991 memcpy (names
, "@plt", sizeof ("@plt"));
12992 names
+= sizeof ("@plt");
12999 /* It is only used by x86-64 so far.
13000 ??? This repeats *COM* id of zero. sec->id is supposed to be unique,
13001 but current usage would allow all of _bfd_std_section to be zero. */
13002 static const asymbol lcomm_sym
13003 = GLOBAL_SYM_INIT ("LARGE_COMMON", &_bfd_elf_large_com_section
);
13004 asection _bfd_elf_large_com_section
13005 = BFD_FAKE_SECTION (_bfd_elf_large_com_section
, &lcomm_sym
,
13006 "LARGE_COMMON", 0, SEC_IS_COMMON
);
13009 _bfd_elf_final_write_processing (bfd
*abfd
)
13011 Elf_Internal_Ehdr
*i_ehdrp
; /* ELF file header, internal form. */
13013 i_ehdrp
= elf_elfheader (abfd
);
13015 if (i_ehdrp
->e_ident
[EI_OSABI
] == ELFOSABI_NONE
)
13016 i_ehdrp
->e_ident
[EI_OSABI
] = get_elf_backend_data (abfd
)->elf_osabi
;
13018 /* Set the osabi field to ELFOSABI_GNU if the binary contains
13019 SHF_GNU_MBIND or SHF_GNU_RETAIN sections or symbols of STT_GNU_IFUNC type
13020 or STB_GNU_UNIQUE binding. */
13021 if (elf_tdata (abfd
)->has_gnu_osabi
!= 0)
13023 if (i_ehdrp
->e_ident
[EI_OSABI
] == ELFOSABI_NONE
)
13024 i_ehdrp
->e_ident
[EI_OSABI
] = ELFOSABI_GNU
;
13025 else if (i_ehdrp
->e_ident
[EI_OSABI
] != ELFOSABI_GNU
13026 && i_ehdrp
->e_ident
[EI_OSABI
] != ELFOSABI_FREEBSD
)
13028 if (elf_tdata (abfd
)->has_gnu_osabi
& elf_gnu_osabi_mbind
)
13029 _bfd_error_handler (_("GNU_MBIND section is supported only by GNU "
13030 "and FreeBSD targets"));
13031 if (elf_tdata (abfd
)->has_gnu_osabi
& elf_gnu_osabi_ifunc
)
13032 _bfd_error_handler (_("symbol type STT_GNU_IFUNC is supported "
13033 "only by GNU and FreeBSD targets"));
13034 if (elf_tdata (abfd
)->has_gnu_osabi
& elf_gnu_osabi_unique
)
13035 _bfd_error_handler (_("symbol binding STB_GNU_UNIQUE is supported "
13036 "only by GNU and FreeBSD targets"));
13037 if (elf_tdata (abfd
)->has_gnu_osabi
& elf_gnu_osabi_retain
)
13038 _bfd_error_handler (_("GNU_RETAIN section is supported "
13039 "only by GNU and FreeBSD targets"));
13040 bfd_set_error (bfd_error_sorry
);
13048 /* Return TRUE for ELF symbol types that represent functions.
13049 This is the default version of this function, which is sufficient for
13050 most targets. It returns true if TYPE is STT_FUNC or STT_GNU_IFUNC. */
13053 _bfd_elf_is_function_type (unsigned int type
)
13055 return (type
== STT_FUNC
13056 || type
== STT_GNU_IFUNC
);
13059 /* If the ELF symbol SYM might be a function in SEC, return the
13060 function size and set *CODE_OFF to the function's entry point,
13061 otherwise return zero. */
13064 _bfd_elf_maybe_function_sym (const asymbol
*sym
, asection
*sec
,
13067 bfd_size_type size
;
13068 elf_symbol_type
* elf_sym
= (elf_symbol_type
*) sym
;
13070 if ((sym
->flags
& (BSF_SECTION_SYM
| BSF_FILE
| BSF_OBJECT
13071 | BSF_THREAD_LOCAL
| BSF_RELC
| BSF_SRELC
)) != 0
13072 || sym
->section
!= sec
)
13075 size
= (sym
->flags
& BSF_SYNTHETIC
) ? 0 : elf_sym
->internal_elf_sym
.st_size
;
13077 /* In theory we should check that the symbol's type satisfies
13078 _bfd_elf_is_function_type(), but there are some function-like
13079 symbols which would fail this test. (eg _start). Instead
13080 we check for hidden, local, notype symbols with zero size.
13081 This type of symbol is generated by the annobin plugin for gcc
13082 and clang, and should not be considered to be a function symbol. */
13084 && ((sym
->flags
& (BSF_SYNTHETIC
| BSF_LOCAL
)) == BSF_LOCAL
)
13085 && ELF_ST_TYPE (elf_sym
->internal_elf_sym
.st_info
) == STT_NOTYPE
13086 && ELF_ST_VISIBILITY (elf_sym
->internal_elf_sym
.st_other
) == STV_HIDDEN
)
13089 *code_off
= sym
->value
;
13090 /* Do not return 0 for the function's size. */
13091 return size
? size
: 1;
13094 /* Set to non-zero to enable some debug messages. */
13095 #define DEBUG_SECONDARY_RELOCS 0
13097 /* An internal-to-the-bfd-library only section type
13098 used to indicate a cached secondary reloc section. */
13099 #define SHT_SECONDARY_RELOC (SHT_LOOS + SHT_RELA)
13101 /* Create a BFD section to hold a secondary reloc section. */
13104 _bfd_elf_init_secondary_reloc_section (bfd
* abfd
,
13105 Elf_Internal_Shdr
*hdr
,
13107 unsigned int shindex
)
13109 /* We only support RELA secondary relocs. */
13110 if (hdr
->sh_type
!= SHT_RELA
)
13113 #if DEBUG_SECONDARY_RELOCS
13114 fprintf (stderr
, "secondary reloc section %s encountered\n", name
);
13116 hdr
->sh_type
= SHT_SECONDARY_RELOC
;
13117 return _bfd_elf_make_section_from_shdr (abfd
, hdr
, name
, shindex
);
13120 /* Read in any secondary relocs associated with SEC. */
13123 _bfd_elf_slurp_secondary_reloc_section (bfd
* abfd
,
13125 asymbol
** symbols
,
13128 const struct elf_backend_data
* const ebd
= get_elf_backend_data (abfd
);
13130 bool result
= true;
13131 bfd_vma (*r_sym
) (bfd_vma
);
13133 #if BFD_DEFAULT_TARGET_SIZE > 32
13134 if (bfd_arch_bits_per_address (abfd
) != 32)
13135 r_sym
= elf64_r_sym
;
13138 r_sym
= elf32_r_sym
;
13140 if (!elf_section_data (sec
)->has_secondary_relocs
)
13143 /* Discover if there are any secondary reloc sections
13144 associated with SEC. */
13145 for (relsec
= abfd
->sections
; relsec
!= NULL
; relsec
= relsec
->next
)
13147 Elf_Internal_Shdr
* hdr
= & elf_section_data (relsec
)->this_hdr
;
13149 if (hdr
->sh_type
== SHT_SECONDARY_RELOC
13150 && hdr
->sh_info
== (unsigned) elf_section_data (sec
)->this_idx
13151 && (hdr
->sh_entsize
== ebd
->s
->sizeof_rel
13152 || hdr
->sh_entsize
== ebd
->s
->sizeof_rela
))
13154 bfd_byte
* native_relocs
;
13155 bfd_byte
* native_reloc
;
13156 arelent
* internal_relocs
;
13157 arelent
* internal_reloc
;
13159 unsigned int entsize
;
13160 unsigned int symcount
;
13161 unsigned int reloc_count
;
13164 if (ebd
->elf_info_to_howto
== NULL
)
13167 #if DEBUG_SECONDARY_RELOCS
13168 fprintf (stderr
, "read secondary relocs for %s from %s\n",
13169 sec
->name
, relsec
->name
);
13171 entsize
= hdr
->sh_entsize
;
13173 native_relocs
= bfd_malloc (hdr
->sh_size
);
13174 if (native_relocs
== NULL
)
13180 reloc_count
= NUM_SHDR_ENTRIES (hdr
);
13181 if (_bfd_mul_overflow (reloc_count
, sizeof (arelent
), & amt
))
13183 free (native_relocs
);
13184 bfd_set_error (bfd_error_file_too_big
);
13189 internal_relocs
= (arelent
*) bfd_alloc (abfd
, amt
);
13190 if (internal_relocs
== NULL
)
13192 free (native_relocs
);
13197 if (bfd_seek (abfd
, hdr
->sh_offset
, SEEK_SET
) != 0
13198 || (bfd_bread (native_relocs
, hdr
->sh_size
, abfd
)
13201 free (native_relocs
);
13202 /* The internal_relocs will be freed when
13203 the memory for the bfd is released. */
13209 symcount
= bfd_get_dynamic_symcount (abfd
);
13211 symcount
= bfd_get_symcount (abfd
);
13213 for (i
= 0, internal_reloc
= internal_relocs
,
13214 native_reloc
= native_relocs
;
13216 i
++, internal_reloc
++, native_reloc
+= entsize
)
13219 Elf_Internal_Rela rela
;
13221 if (entsize
== ebd
->s
->sizeof_rel
)
13222 ebd
->s
->swap_reloc_in (abfd
, native_reloc
, & rela
);
13223 else /* entsize == ebd->s->sizeof_rela */
13224 ebd
->s
->swap_reloca_in (abfd
, native_reloc
, & rela
);
13226 /* The address of an ELF reloc is section relative for an object
13227 file, and absolute for an executable file or shared library.
13228 The address of a normal BFD reloc is always section relative,
13229 and the address of a dynamic reloc is absolute.. */
13230 if ((abfd
->flags
& (EXEC_P
| DYNAMIC
)) == 0)
13231 internal_reloc
->address
= rela
.r_offset
;
13233 internal_reloc
->address
= rela
.r_offset
- sec
->vma
;
13235 if (r_sym (rela
.r_info
) == STN_UNDEF
)
13237 /* FIXME: This and the error case below mean that we
13238 have a symbol on relocs that is not elf_symbol_type. */
13239 internal_reloc
->sym_ptr_ptr
=
13240 bfd_abs_section_ptr
->symbol_ptr_ptr
;
13242 else if (r_sym (rela
.r_info
) > symcount
)
13245 /* xgettext:c-format */
13246 (_("%pB(%pA): relocation %d has invalid symbol index %ld"),
13247 abfd
, sec
, i
, (long) r_sym (rela
.r_info
));
13248 bfd_set_error (bfd_error_bad_value
);
13249 internal_reloc
->sym_ptr_ptr
=
13250 bfd_abs_section_ptr
->symbol_ptr_ptr
;
13257 ps
= symbols
+ r_sym (rela
.r_info
) - 1;
13258 internal_reloc
->sym_ptr_ptr
= ps
;
13259 /* Make sure that this symbol is not removed by strip. */
13260 (*ps
)->flags
|= BSF_KEEP
;
13263 internal_reloc
->addend
= rela
.r_addend
;
13265 res
= ebd
->elf_info_to_howto (abfd
, internal_reloc
, & rela
);
13266 if (! res
|| internal_reloc
->howto
== NULL
)
13268 #if DEBUG_SECONDARY_RELOCS
13269 fprintf (stderr
, "there is no howto associated with reloc %lx\n",
13276 free (native_relocs
);
13277 /* Store the internal relocs. */
13278 elf_section_data (relsec
)->sec_info
= internal_relocs
;
13285 /* Set the ELF section header fields of an output secondary reloc section. */
13288 _bfd_elf_copy_special_section_fields (const bfd
* ibfd ATTRIBUTE_UNUSED
,
13289 bfd
* obfd ATTRIBUTE_UNUSED
,
13290 const Elf_Internal_Shdr
* isection
,
13291 Elf_Internal_Shdr
* osection
)
13295 struct bfd_elf_section_data
* esd
;
13297 if (isection
== NULL
)
13300 if (isection
->sh_type
!= SHT_SECONDARY_RELOC
)
13303 isec
= isection
->bfd_section
;
13307 osec
= osection
->bfd_section
;
13311 esd
= elf_section_data (osec
);
13312 BFD_ASSERT (esd
->sec_info
== NULL
);
13313 esd
->sec_info
= elf_section_data (isec
)->sec_info
;
13314 osection
->sh_type
= SHT_RELA
;
13315 osection
->sh_link
= elf_onesymtab (obfd
);
13316 if (osection
->sh_link
== 0)
13318 /* There is no symbol table - we are hosed... */
13320 /* xgettext:c-format */
13321 (_("%pB(%pA): link section cannot be set because the output file does not have a symbol table"),
13323 bfd_set_error (bfd_error_bad_value
);
13327 /* Find the output section that corresponds to the isection's sh_info link. */
13328 if (isection
->sh_info
== 0
13329 || isection
->sh_info
>= elf_numsections (ibfd
))
13332 /* xgettext:c-format */
13333 (_("%pB(%pA): info section index is invalid"),
13335 bfd_set_error (bfd_error_bad_value
);
13339 isection
= elf_elfsections (ibfd
)[isection
->sh_info
];
13341 if (isection
== NULL
13342 || isection
->bfd_section
== NULL
13343 || isection
->bfd_section
->output_section
== NULL
)
13346 /* xgettext:c-format */
13347 (_("%pB(%pA): info section index cannot be set because the section is not in the output"),
13349 bfd_set_error (bfd_error_bad_value
);
13353 esd
= elf_section_data (isection
->bfd_section
->output_section
);
13354 BFD_ASSERT (esd
!= NULL
);
13355 osection
->sh_info
= esd
->this_idx
;
13356 esd
->has_secondary_relocs
= true;
13357 #if DEBUG_SECONDARY_RELOCS
13358 fprintf (stderr
, "update header of %s, sh_link = %u, sh_info = %u\n",
13359 osec
->name
, osection
->sh_link
, osection
->sh_info
);
13360 fprintf (stderr
, "mark section %s as having secondary relocs\n",
13361 bfd_section_name (isection
->bfd_section
->output_section
));
13367 /* Write out a secondary reloc section.
13369 FIXME: Currently this function can result in a serious performance penalty
13370 for files with secondary relocs and lots of sections. The proper way to
13371 fix this is for _bfd_elf_copy_special_section_fields() to chain secondary
13372 relocs together and then to have this function just walk that chain. */
13375 _bfd_elf_write_secondary_reloc_section (bfd
*abfd
, asection
*sec
)
13377 const struct elf_backend_data
* const ebd
= get_elf_backend_data (abfd
);
13378 bfd_vma addr_offset
;
13380 bfd_vma (*r_info
) (bfd_vma
, bfd_vma
);
13381 bool result
= true;
13386 #if BFD_DEFAULT_TARGET_SIZE > 32
13387 if (bfd_arch_bits_per_address (abfd
) != 32)
13388 r_info
= elf64_r_info
;
13391 r_info
= elf32_r_info
;
13393 /* The address of an ELF reloc is section relative for an object
13394 file, and absolute for an executable file or shared library.
13395 The address of a BFD reloc is always section relative. */
13397 if ((abfd
->flags
& (EXEC_P
| DYNAMIC
)) != 0)
13398 addr_offset
= sec
->vma
;
13400 /* Discover if there are any secondary reloc sections
13401 associated with SEC. */
13402 for (relsec
= abfd
->sections
; relsec
!= NULL
; relsec
= relsec
->next
)
13404 const struct bfd_elf_section_data
* const esd
= elf_section_data (relsec
);
13405 Elf_Internal_Shdr
* const hdr
= (Elf_Internal_Shdr
*) & esd
->this_hdr
;
13407 if (hdr
->sh_type
== SHT_RELA
13408 && hdr
->sh_info
== (unsigned) elf_section_data (sec
)->this_idx
)
13410 asymbol
* last_sym
;
13412 unsigned int reloc_count
;
13414 unsigned int entsize
;
13415 arelent
* src_irel
;
13416 bfd_byte
* dst_rela
;
13418 if (hdr
->contents
!= NULL
)
13421 /* xgettext:c-format */
13422 (_("%pB(%pA): error: secondary reloc section processed twice"),
13424 bfd_set_error (bfd_error_bad_value
);
13429 entsize
= hdr
->sh_entsize
;
13433 /* xgettext:c-format */
13434 (_("%pB(%pA): error: secondary reloc section has zero sized entries"),
13436 bfd_set_error (bfd_error_bad_value
);
13440 else if (entsize
!= ebd
->s
->sizeof_rel
13441 && entsize
!= ebd
->s
->sizeof_rela
)
13444 /* xgettext:c-format */
13445 (_("%pB(%pA): error: secondary reloc section has non-standard sized entries"),
13447 bfd_set_error (bfd_error_bad_value
);
13452 reloc_count
= hdr
->sh_size
/ entsize
;
13453 if (reloc_count
<= 0)
13456 /* xgettext:c-format */
13457 (_("%pB(%pA): error: secondary reloc section is empty!"),
13459 bfd_set_error (bfd_error_bad_value
);
13464 hdr
->contents
= bfd_alloc (abfd
, hdr
->sh_size
);
13465 if (hdr
->contents
== NULL
)
13468 #if DEBUG_SECONDARY_RELOCS
13469 fprintf (stderr
, "write %u secondary relocs for %s from %s\n",
13470 reloc_count
, sec
->name
, relsec
->name
);
13474 dst_rela
= hdr
->contents
;
13475 src_irel
= (arelent
*) esd
->sec_info
;
13476 if (src_irel
== NULL
)
13479 /* xgettext:c-format */
13480 (_("%pB(%pA): error: internal relocs missing for secondary reloc section"),
13482 bfd_set_error (bfd_error_bad_value
);
13487 for (idx
= 0; idx
< reloc_count
; idx
++, dst_rela
+= entsize
)
13489 Elf_Internal_Rela src_rela
;
13494 ptr
= src_irel
+ idx
;
13498 /* xgettext:c-format */
13499 (_("%pB(%pA): error: reloc table entry %u is empty"),
13500 abfd
, relsec
, idx
);
13501 bfd_set_error (bfd_error_bad_value
);
13506 if (ptr
->sym_ptr_ptr
== NULL
)
13508 /* FIXME: Is this an error ? */
13513 sym
= *ptr
->sym_ptr_ptr
;
13515 if (sym
== last_sym
)
13519 n
= _bfd_elf_symbol_from_bfd_symbol (abfd
, & sym
);
13523 /* xgettext:c-format */
13524 (_("%pB(%pA): error: secondary reloc %u references a missing symbol"),
13525 abfd
, relsec
, idx
);
13526 bfd_set_error (bfd_error_bad_value
);
13535 if (sym
->the_bfd
!= NULL
13536 && sym
->the_bfd
->xvec
!= abfd
->xvec
13537 && ! _bfd_elf_validate_reloc (abfd
, ptr
))
13540 /* xgettext:c-format */
13541 (_("%pB(%pA): error: secondary reloc %u references a deleted symbol"),
13542 abfd
, relsec
, idx
);
13543 bfd_set_error (bfd_error_bad_value
);
13549 src_rela
.r_offset
= ptr
->address
+ addr_offset
;
13550 if (ptr
->howto
== NULL
)
13553 /* xgettext:c-format */
13554 (_("%pB(%pA): error: secondary reloc %u is of an unknown type"),
13555 abfd
, relsec
, idx
);
13556 bfd_set_error (bfd_error_bad_value
);
13558 src_rela
.r_info
= r_info (0, 0);
13561 src_rela
.r_info
= r_info (n
, ptr
->howto
->type
);
13562 src_rela
.r_addend
= ptr
->addend
;
13564 if (entsize
== ebd
->s
->sizeof_rel
)
13565 ebd
->s
->swap_reloc_out (abfd
, &src_rela
, dst_rela
);
13566 else /* entsize == ebd->s->sizeof_rela */
13567 ebd
->s
->swap_reloca_out (abfd
, &src_rela
, dst_rela
);