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
)))
1110 /* As a GNU extension, if the name begins with .gnu.linkonce, we
1111 only link a single copy of the section. This is used to support
1112 g++. g++ will emit each template expansion in its own section.
1113 The symbols will be defined as weak, so that multiple definitions
1114 are permitted. The GNU linker extension is to actually discard
1115 all but one of the sections. */
1116 if (startswith (name
, ".gnu.linkonce")
1117 && elf_next_in_group (newsect
) == NULL
)
1118 flags
|= SEC_LINK_ONCE
| SEC_LINK_DUPLICATES_DISCARD
;
1120 if (!bfd_set_section_flags (newsect
, flags
))
1123 bed
= get_elf_backend_data (abfd
);
1124 if (bed
->elf_backend_section_flags
)
1125 if (!bed
->elf_backend_section_flags (hdr
))
1128 /* We do not parse the PT_NOTE segments as we are interested even in the
1129 separate debug info files which may have the segments offsets corrupted.
1130 PT_NOTEs from the core files are currently not parsed using BFD. */
1131 if (hdr
->sh_type
== SHT_NOTE
)
1135 if (!bfd_malloc_and_get_section (abfd
, newsect
, &contents
))
1138 elf_parse_notes (abfd
, (char *) contents
, hdr
->sh_size
,
1139 hdr
->sh_offset
, hdr
->sh_addralign
);
1143 if ((newsect
->flags
& SEC_ALLOC
) != 0)
1145 Elf_Internal_Phdr
*phdr
;
1146 unsigned int i
, nload
;
1148 /* Some ELF linkers produce binaries with all the program header
1149 p_paddr fields zero. If we have such a binary with more than
1150 one PT_LOAD header, then leave the section lma equal to vma
1151 so that we don't create sections with overlapping lma. */
1152 phdr
= elf_tdata (abfd
)->phdr
;
1153 for (nload
= 0, i
= 0; i
< elf_elfheader (abfd
)->e_phnum
; i
++, phdr
++)
1154 if (phdr
->p_paddr
!= 0)
1156 else if (phdr
->p_type
== PT_LOAD
&& phdr
->p_memsz
!= 0)
1158 if (i
>= elf_elfheader (abfd
)->e_phnum
&& nload
> 1)
1161 phdr
= elf_tdata (abfd
)->phdr
;
1162 for (i
= 0; i
< elf_elfheader (abfd
)->e_phnum
; i
++, phdr
++)
1164 if (((phdr
->p_type
== PT_LOAD
1165 && (hdr
->sh_flags
& SHF_TLS
) == 0)
1166 || phdr
->p_type
== PT_TLS
)
1167 && ELF_SECTION_IN_SEGMENT (hdr
, phdr
))
1169 if ((newsect
->flags
& SEC_LOAD
) == 0)
1170 newsect
->lma
= (phdr
->p_paddr
1171 + hdr
->sh_addr
- phdr
->p_vaddr
) / opb
;
1173 /* We used to use the same adjustment for SEC_LOAD
1174 sections, but that doesn't work if the segment
1175 is packed with code from multiple VMAs.
1176 Instead we calculate the section LMA based on
1177 the segment LMA. It is assumed that the
1178 segment will contain sections with contiguous
1179 LMAs, even if the VMAs are not. */
1180 newsect
->lma
= (phdr
->p_paddr
1181 + hdr
->sh_offset
- phdr
->p_offset
) / opb
;
1183 /* With contiguous segments, we can't tell from file
1184 offsets whether a section with zero size should
1185 be placed at the end of one segment or the
1186 beginning of the next. Decide based on vaddr. */
1187 if (hdr
->sh_addr
>= phdr
->p_vaddr
1188 && (hdr
->sh_addr
+ hdr
->sh_size
1189 <= phdr
->p_vaddr
+ phdr
->p_memsz
))
1195 /* Compress/decompress DWARF debug sections with names: .debug_* and
1196 .zdebug_*, after the section flags is set. */
1197 if ((newsect
->flags
& SEC_DEBUGGING
)
1198 && ((name
[1] == 'd' && name
[6] == '_')
1199 || (name
[1] == 'z' && name
[7] == '_')))
1201 enum { nothing
, compress
, decompress
} action
= nothing
;
1202 int compression_header_size
;
1203 bfd_size_type uncompressed_size
;
1204 unsigned int uncompressed_align_power
;
1206 = bfd_is_section_compressed_with_header (abfd
, newsect
,
1207 &compression_header_size
,
1209 &uncompressed_align_power
);
1212 /* Compressed section. Check if we should decompress. */
1213 if ((abfd
->flags
& BFD_DECOMPRESS
))
1214 action
= decompress
;
1217 /* Compress the uncompressed section or convert from/to .zdebug*
1218 section. Check if we should compress. */
1219 if (action
== nothing
)
1221 if (newsect
->size
!= 0
1222 && (abfd
->flags
& BFD_COMPRESS
)
1223 && compression_header_size
>= 0
1224 && uncompressed_size
> 0
1226 || ((compression_header_size
> 0)
1227 != ((abfd
->flags
& BFD_COMPRESS_GABI
) != 0))))
1233 if (action
== compress
)
1235 if (!bfd_init_section_compress_status (abfd
, newsect
))
1238 /* xgettext:c-format */
1239 (_("%pB: unable to initialize compress status for section %s"),
1246 if (!bfd_init_section_decompress_status (abfd
, newsect
))
1249 /* xgettext:c-format */
1250 (_("%pB: unable to initialize decompress status for section %s"),
1256 if (abfd
->is_linker_input
)
1259 && (action
== decompress
1260 || (action
== compress
1261 && (abfd
->flags
& BFD_COMPRESS_GABI
) != 0)))
1263 /* Convert section name from .zdebug_* to .debug_* so
1264 that linker will consider this section as a debug
1266 char *new_name
= convert_zdebug_to_debug (abfd
, name
);
1267 if (new_name
== NULL
)
1269 bfd_rename_section (newsect
, new_name
);
1273 /* For objdump, don't rename the section. For objcopy, delay
1274 section rename to elf_fake_sections. */
1275 newsect
->flags
|= SEC_ELF_RENAME
;
1278 /* GCC uses .gnu.lto_.lto.<some_hash> as a LTO bytecode information
1280 if (startswith (name
, ".gnu.lto_.lto."))
1282 struct lto_section lsection
;
1283 if (bfd_get_section_contents (abfd
, newsect
, &lsection
, 0,
1284 sizeof (struct lto_section
)))
1285 abfd
->lto_slim_object
= lsection
.slim_object
;
1291 const char *const bfd_elf_section_type_names
[] =
1293 "SHT_NULL", "SHT_PROGBITS", "SHT_SYMTAB", "SHT_STRTAB",
1294 "SHT_RELA", "SHT_HASH", "SHT_DYNAMIC", "SHT_NOTE",
1295 "SHT_NOBITS", "SHT_REL", "SHT_SHLIB", "SHT_DYNSYM",
1298 /* ELF relocs are against symbols. If we are producing relocatable
1299 output, and the reloc is against an external symbol, and nothing
1300 has given us any additional addend, the resulting reloc will also
1301 be against the same symbol. In such a case, we don't want to
1302 change anything about the way the reloc is handled, since it will
1303 all be done at final link time. Rather than put special case code
1304 into bfd_perform_relocation, all the reloc types use this howto
1305 function, or should call this function for relocatable output. */
1307 bfd_reloc_status_type
1308 bfd_elf_generic_reloc (bfd
*abfd ATTRIBUTE_UNUSED
,
1309 arelent
*reloc_entry
,
1311 void *data ATTRIBUTE_UNUSED
,
1312 asection
*input_section
,
1314 char **error_message ATTRIBUTE_UNUSED
)
1316 if (output_bfd
!= NULL
1317 && (symbol
->flags
& BSF_SECTION_SYM
) == 0
1318 && (! reloc_entry
->howto
->partial_inplace
1319 || reloc_entry
->addend
== 0))
1321 reloc_entry
->address
+= input_section
->output_offset
;
1322 return bfd_reloc_ok
;
1325 /* In some cases the relocation should be treated as output section
1326 relative, as when linking ELF DWARF into PE COFF. Many ELF
1327 targets lack section relative relocations and instead use
1328 ordinary absolute relocations for references between DWARF
1329 sections. That is arguably a bug in those targets but it happens
1330 to work for the usual case of linking to non-loaded ELF debug
1331 sections with VMAs forced to zero. PE COFF on the other hand
1332 doesn't allow a section VMA of zero. */
1333 if (output_bfd
== NULL
1334 && !reloc_entry
->howto
->pc_relative
1335 && (symbol
->section
->flags
& SEC_DEBUGGING
) != 0
1336 && (input_section
->flags
& SEC_DEBUGGING
) != 0)
1337 reloc_entry
->addend
-= symbol
->section
->output_section
->vma
;
1339 return bfd_reloc_continue
;
1342 /* Returns TRUE if section A matches section B.
1343 Names, addresses and links may be different, but everything else
1344 should be the same. */
1347 section_match (const Elf_Internal_Shdr
* a
,
1348 const Elf_Internal_Shdr
* b
)
1350 if (a
->sh_type
!= b
->sh_type
1351 || ((a
->sh_flags
^ b
->sh_flags
) & ~SHF_INFO_LINK
) != 0
1352 || a
->sh_addralign
!= b
->sh_addralign
1353 || a
->sh_entsize
!= b
->sh_entsize
)
1355 if (a
->sh_type
== SHT_SYMTAB
1356 || a
->sh_type
== SHT_STRTAB
)
1358 return a
->sh_size
== b
->sh_size
;
1361 /* Find a section in OBFD that has the same characteristics
1362 as IHEADER. Return the index of this section or SHN_UNDEF if
1363 none can be found. Check's section HINT first, as this is likely
1364 to be the correct section. */
1367 find_link (const bfd
*obfd
, const Elf_Internal_Shdr
*iheader
,
1368 const unsigned int hint
)
1370 Elf_Internal_Shdr
** oheaders
= elf_elfsections (obfd
);
1373 BFD_ASSERT (iheader
!= NULL
);
1375 /* See PR 20922 for a reproducer of the NULL test. */
1376 if (hint
< elf_numsections (obfd
)
1377 && oheaders
[hint
] != NULL
1378 && section_match (oheaders
[hint
], iheader
))
1381 for (i
= 1; i
< elf_numsections (obfd
); i
++)
1383 Elf_Internal_Shdr
* oheader
= oheaders
[i
];
1385 if (oheader
== NULL
)
1387 if (section_match (oheader
, iheader
))
1388 /* FIXME: Do we care if there is a potential for
1389 multiple matches ? */
1396 /* PR 19938: Attempt to set the ELF section header fields of an OS or
1397 Processor specific section, based upon a matching input section.
1398 Returns TRUE upon success, FALSE otherwise. */
1401 copy_special_section_fields (const bfd
*ibfd
,
1403 const Elf_Internal_Shdr
*iheader
,
1404 Elf_Internal_Shdr
*oheader
,
1405 const unsigned int secnum
)
1407 const struct elf_backend_data
*bed
= get_elf_backend_data (obfd
);
1408 const Elf_Internal_Shdr
**iheaders
= (const Elf_Internal_Shdr
**) elf_elfsections (ibfd
);
1409 bool changed
= false;
1410 unsigned int sh_link
;
1412 if (oheader
->sh_type
== SHT_NOBITS
)
1414 /* This is a feature for objcopy --only-keep-debug:
1415 When a section's type is changed to NOBITS, we preserve
1416 the sh_link and sh_info fields so that they can be
1417 matched up with the original.
1419 Note: Strictly speaking these assignments are wrong.
1420 The sh_link and sh_info fields should point to the
1421 relevent sections in the output BFD, which may not be in
1422 the same location as they were in the input BFD. But
1423 the whole point of this action is to preserve the
1424 original values of the sh_link and sh_info fields, so
1425 that they can be matched up with the section headers in
1426 the original file. So strictly speaking we may be
1427 creating an invalid ELF file, but it is only for a file
1428 that just contains debug info and only for sections
1429 without any contents. */
1430 if (oheader
->sh_link
== 0)
1431 oheader
->sh_link
= iheader
->sh_link
;
1432 if (oheader
->sh_info
== 0)
1433 oheader
->sh_info
= iheader
->sh_info
;
1437 /* Allow the target a chance to decide how these fields should be set. */
1438 if (bed
->elf_backend_copy_special_section_fields (ibfd
, obfd
,
1442 /* We have an iheader which might match oheader, and which has non-zero
1443 sh_info and/or sh_link fields. Attempt to follow those links and find
1444 the section in the output bfd which corresponds to the linked section
1445 in the input bfd. */
1446 if (iheader
->sh_link
!= SHN_UNDEF
)
1448 /* See PR 20931 for a reproducer. */
1449 if (iheader
->sh_link
>= elf_numsections (ibfd
))
1452 /* xgettext:c-format */
1453 (_("%pB: invalid sh_link field (%d) in section number %d"),
1454 ibfd
, iheader
->sh_link
, secnum
);
1458 sh_link
= find_link (obfd
, iheaders
[iheader
->sh_link
], iheader
->sh_link
);
1459 if (sh_link
!= SHN_UNDEF
)
1461 oheader
->sh_link
= sh_link
;
1465 /* FIXME: Should we install iheader->sh_link
1466 if we could not find a match ? */
1468 /* xgettext:c-format */
1469 (_("%pB: failed to find link section for section %d"), obfd
, secnum
);
1472 if (iheader
->sh_info
)
1474 /* The sh_info field can hold arbitrary information, but if the
1475 SHF_LINK_INFO flag is set then it should be interpreted as a
1477 if (iheader
->sh_flags
& SHF_INFO_LINK
)
1479 sh_link
= find_link (obfd
, iheaders
[iheader
->sh_info
],
1481 if (sh_link
!= SHN_UNDEF
)
1482 oheader
->sh_flags
|= SHF_INFO_LINK
;
1485 /* No idea what it means - just copy it. */
1486 sh_link
= iheader
->sh_info
;
1488 if (sh_link
!= SHN_UNDEF
)
1490 oheader
->sh_info
= sh_link
;
1495 /* xgettext:c-format */
1496 (_("%pB: failed to find info section for section %d"), obfd
, secnum
);
1502 /* Copy the program header and other data from one object module to
1506 _bfd_elf_copy_private_bfd_data (bfd
*ibfd
, bfd
*obfd
)
1508 const Elf_Internal_Shdr
**iheaders
= (const Elf_Internal_Shdr
**) elf_elfsections (ibfd
);
1509 Elf_Internal_Shdr
**oheaders
= elf_elfsections (obfd
);
1510 const struct elf_backend_data
*bed
;
1513 if (bfd_get_flavour (ibfd
) != bfd_target_elf_flavour
1514 || bfd_get_flavour (obfd
) != bfd_target_elf_flavour
)
1517 if (!elf_flags_init (obfd
))
1519 elf_elfheader (obfd
)->e_flags
= elf_elfheader (ibfd
)->e_flags
;
1520 elf_flags_init (obfd
) = true;
1523 elf_gp (obfd
) = elf_gp (ibfd
);
1525 /* Also copy the EI_OSABI field. */
1526 elf_elfheader (obfd
)->e_ident
[EI_OSABI
] =
1527 elf_elfheader (ibfd
)->e_ident
[EI_OSABI
];
1529 /* If set, copy the EI_ABIVERSION field. */
1530 if (elf_elfheader (ibfd
)->e_ident
[EI_ABIVERSION
])
1531 elf_elfheader (obfd
)->e_ident
[EI_ABIVERSION
]
1532 = elf_elfheader (ibfd
)->e_ident
[EI_ABIVERSION
];
1534 /* Copy object attributes. */
1535 _bfd_elf_copy_obj_attributes (ibfd
, obfd
);
1537 if (iheaders
== NULL
|| oheaders
== NULL
)
1540 bed
= get_elf_backend_data (obfd
);
1542 /* Possibly copy other fields in the section header. */
1543 for (i
= 1; i
< elf_numsections (obfd
); i
++)
1546 Elf_Internal_Shdr
* oheader
= oheaders
[i
];
1548 /* Ignore ordinary sections. SHT_NOBITS sections are considered however
1549 because of a special case need for generating separate debug info
1550 files. See below for more details. */
1552 || (oheader
->sh_type
!= SHT_NOBITS
1553 && oheader
->sh_type
< SHT_LOOS
))
1556 /* Ignore empty sections, and sections whose
1557 fields have already been initialised. */
1558 if (oheader
->sh_size
== 0
1559 || (oheader
->sh_info
!= 0 && oheader
->sh_link
!= 0))
1562 /* Scan for the matching section in the input bfd.
1563 First we try for a direct mapping between the input and output sections. */
1564 for (j
= 1; j
< elf_numsections (ibfd
); j
++)
1566 const Elf_Internal_Shdr
* iheader
= iheaders
[j
];
1568 if (iheader
== NULL
)
1571 if (oheader
->bfd_section
!= NULL
1572 && iheader
->bfd_section
!= NULL
1573 && iheader
->bfd_section
->output_section
!= NULL
1574 && iheader
->bfd_section
->output_section
== oheader
->bfd_section
)
1576 /* We have found a connection from the input section to the
1577 output section. Attempt to copy the header fields. If
1578 this fails then do not try any further sections - there
1579 should only be a one-to-one mapping between input and output. */
1580 if (! copy_special_section_fields (ibfd
, obfd
, iheader
, oheader
, i
))
1581 j
= elf_numsections (ibfd
);
1586 if (j
< elf_numsections (ibfd
))
1589 /* That failed. So try to deduce the corresponding input section.
1590 Unfortunately we cannot compare names as the output string table
1591 is empty, so instead we check size, address and type. */
1592 for (j
= 1; j
< elf_numsections (ibfd
); j
++)
1594 const Elf_Internal_Shdr
* iheader
= iheaders
[j
];
1596 if (iheader
== NULL
)
1599 /* Try matching fields in the input section's header.
1600 Since --only-keep-debug turns all non-debug sections into
1601 SHT_NOBITS sections, the output SHT_NOBITS type matches any
1603 if ((oheader
->sh_type
== SHT_NOBITS
1604 || iheader
->sh_type
== oheader
->sh_type
)
1605 && (iheader
->sh_flags
& ~ SHF_INFO_LINK
)
1606 == (oheader
->sh_flags
& ~ SHF_INFO_LINK
)
1607 && iheader
->sh_addralign
== oheader
->sh_addralign
1608 && iheader
->sh_entsize
== oheader
->sh_entsize
1609 && iheader
->sh_size
== oheader
->sh_size
1610 && iheader
->sh_addr
== oheader
->sh_addr
1611 && (iheader
->sh_info
!= oheader
->sh_info
1612 || iheader
->sh_link
!= oheader
->sh_link
))
1614 if (copy_special_section_fields (ibfd
, obfd
, iheader
, oheader
, i
))
1619 if (j
== elf_numsections (ibfd
) && oheader
->sh_type
>= SHT_LOOS
)
1621 /* Final attempt. Call the backend copy function
1622 with a NULL input section. */
1623 (void) bed
->elf_backend_copy_special_section_fields (ibfd
, obfd
,
1632 get_segment_type (unsigned int p_type
)
1637 case PT_NULL
: pt
= "NULL"; break;
1638 case PT_LOAD
: pt
= "LOAD"; break;
1639 case PT_DYNAMIC
: pt
= "DYNAMIC"; break;
1640 case PT_INTERP
: pt
= "INTERP"; break;
1641 case PT_NOTE
: pt
= "NOTE"; break;
1642 case PT_SHLIB
: pt
= "SHLIB"; break;
1643 case PT_PHDR
: pt
= "PHDR"; break;
1644 case PT_TLS
: pt
= "TLS"; break;
1645 case PT_GNU_EH_FRAME
: pt
= "EH_FRAME"; break;
1646 case PT_GNU_STACK
: pt
= "STACK"; break;
1647 case PT_GNU_RELRO
: pt
= "RELRO"; break;
1648 default: pt
= NULL
; break;
1653 /* Print out the program headers. */
1656 _bfd_elf_print_private_bfd_data (bfd
*abfd
, void *farg
)
1658 FILE *f
= (FILE *) farg
;
1659 Elf_Internal_Phdr
*p
;
1661 bfd_byte
*dynbuf
= NULL
;
1663 p
= elf_tdata (abfd
)->phdr
;
1668 fprintf (f
, _("\nProgram Header:\n"));
1669 c
= elf_elfheader (abfd
)->e_phnum
;
1670 for (i
= 0; i
< c
; i
++, p
++)
1672 const char *pt
= get_segment_type (p
->p_type
);
1677 sprintf (buf
, "0x%lx", p
->p_type
);
1680 fprintf (f
, "%8s off 0x", pt
);
1681 bfd_fprintf_vma (abfd
, f
, p
->p_offset
);
1682 fprintf (f
, " vaddr 0x");
1683 bfd_fprintf_vma (abfd
, f
, p
->p_vaddr
);
1684 fprintf (f
, " paddr 0x");
1685 bfd_fprintf_vma (abfd
, f
, p
->p_paddr
);
1686 fprintf (f
, " align 2**%u\n", bfd_log2 (p
->p_align
));
1687 fprintf (f
, " filesz 0x");
1688 bfd_fprintf_vma (abfd
, f
, p
->p_filesz
);
1689 fprintf (f
, " memsz 0x");
1690 bfd_fprintf_vma (abfd
, f
, p
->p_memsz
);
1691 fprintf (f
, " flags %c%c%c",
1692 (p
->p_flags
& PF_R
) != 0 ? 'r' : '-',
1693 (p
->p_flags
& PF_W
) != 0 ? 'w' : '-',
1694 (p
->p_flags
& PF_X
) != 0 ? 'x' : '-');
1695 if ((p
->p_flags
&~ (unsigned) (PF_R
| PF_W
| PF_X
)) != 0)
1696 fprintf (f
, " %lx", p
->p_flags
&~ (unsigned) (PF_R
| PF_W
| PF_X
));
1701 s
= bfd_get_section_by_name (abfd
, ".dynamic");
1704 unsigned int elfsec
;
1705 unsigned long shlink
;
1706 bfd_byte
*extdyn
, *extdynend
;
1708 void (*swap_dyn_in
) (bfd
*, const void *, Elf_Internal_Dyn
*);
1710 fprintf (f
, _("\nDynamic Section:\n"));
1712 if (!bfd_malloc_and_get_section (abfd
, s
, &dynbuf
))
1715 elfsec
= _bfd_elf_section_from_bfd_section (abfd
, s
);
1716 if (elfsec
== SHN_BAD
)
1718 shlink
= elf_elfsections (abfd
)[elfsec
]->sh_link
;
1720 extdynsize
= get_elf_backend_data (abfd
)->s
->sizeof_dyn
;
1721 swap_dyn_in
= get_elf_backend_data (abfd
)->s
->swap_dyn_in
;
1724 /* PR 17512: file: 6f427532. */
1725 if (s
->size
< extdynsize
)
1727 extdynend
= extdyn
+ s
->size
;
1728 /* PR 17512: file: id:000006,sig:06,src:000000,op:flip4,pos:5664.
1730 for (; extdyn
<= (extdynend
- extdynsize
); extdyn
+= extdynsize
)
1732 Elf_Internal_Dyn dyn
;
1733 const char *name
= "";
1736 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
1738 (*swap_dyn_in
) (abfd
, extdyn
, &dyn
);
1740 if (dyn
.d_tag
== DT_NULL
)
1747 if (bed
->elf_backend_get_target_dtag
)
1748 name
= (*bed
->elf_backend_get_target_dtag
) (dyn
.d_tag
);
1750 if (!strcmp (name
, ""))
1752 sprintf (ab
, "%#" BFD_VMA_FMT
"x", dyn
.d_tag
);
1757 case DT_NEEDED
: name
= "NEEDED"; stringp
= true; break;
1758 case DT_PLTRELSZ
: name
= "PLTRELSZ"; break;
1759 case DT_PLTGOT
: name
= "PLTGOT"; break;
1760 case DT_HASH
: name
= "HASH"; break;
1761 case DT_STRTAB
: name
= "STRTAB"; break;
1762 case DT_SYMTAB
: name
= "SYMTAB"; break;
1763 case DT_RELA
: name
= "RELA"; break;
1764 case DT_RELASZ
: name
= "RELASZ"; break;
1765 case DT_RELAENT
: name
= "RELAENT"; break;
1766 case DT_STRSZ
: name
= "STRSZ"; break;
1767 case DT_SYMENT
: name
= "SYMENT"; break;
1768 case DT_INIT
: name
= "INIT"; break;
1769 case DT_FINI
: name
= "FINI"; break;
1770 case DT_SONAME
: name
= "SONAME"; stringp
= true; break;
1771 case DT_RPATH
: name
= "RPATH"; stringp
= true; break;
1772 case DT_SYMBOLIC
: name
= "SYMBOLIC"; break;
1773 case DT_REL
: name
= "REL"; break;
1774 case DT_RELSZ
: name
= "RELSZ"; break;
1775 case DT_RELENT
: name
= "RELENT"; break;
1776 case DT_RELR
: name
= "RELR"; break;
1777 case DT_RELRSZ
: name
= "RELRSZ"; break;
1778 case DT_RELRENT
: name
= "RELRENT"; break;
1779 case DT_PLTREL
: name
= "PLTREL"; break;
1780 case DT_DEBUG
: name
= "DEBUG"; break;
1781 case DT_TEXTREL
: name
= "TEXTREL"; break;
1782 case DT_JMPREL
: name
= "JMPREL"; break;
1783 case DT_BIND_NOW
: name
= "BIND_NOW"; break;
1784 case DT_INIT_ARRAY
: name
= "INIT_ARRAY"; break;
1785 case DT_FINI_ARRAY
: name
= "FINI_ARRAY"; break;
1786 case DT_INIT_ARRAYSZ
: name
= "INIT_ARRAYSZ"; break;
1787 case DT_FINI_ARRAYSZ
: name
= "FINI_ARRAYSZ"; break;
1788 case DT_RUNPATH
: name
= "RUNPATH"; stringp
= true; break;
1789 case DT_FLAGS
: name
= "FLAGS"; break;
1790 case DT_PREINIT_ARRAY
: name
= "PREINIT_ARRAY"; break;
1791 case DT_PREINIT_ARRAYSZ
: name
= "PREINIT_ARRAYSZ"; break;
1792 case DT_CHECKSUM
: name
= "CHECKSUM"; break;
1793 case DT_PLTPADSZ
: name
= "PLTPADSZ"; break;
1794 case DT_MOVEENT
: name
= "MOVEENT"; break;
1795 case DT_MOVESZ
: name
= "MOVESZ"; break;
1796 case DT_FEATURE
: name
= "FEATURE"; break;
1797 case DT_POSFLAG_1
: name
= "POSFLAG_1"; break;
1798 case DT_SYMINSZ
: name
= "SYMINSZ"; break;
1799 case DT_SYMINENT
: name
= "SYMINENT"; break;
1800 case DT_CONFIG
: name
= "CONFIG"; stringp
= true; break;
1801 case DT_DEPAUDIT
: name
= "DEPAUDIT"; stringp
= true; break;
1802 case DT_AUDIT
: name
= "AUDIT"; stringp
= true; break;
1803 case DT_PLTPAD
: name
= "PLTPAD"; break;
1804 case DT_MOVETAB
: name
= "MOVETAB"; break;
1805 case DT_SYMINFO
: name
= "SYMINFO"; break;
1806 case DT_RELACOUNT
: name
= "RELACOUNT"; break;
1807 case DT_RELCOUNT
: name
= "RELCOUNT"; break;
1808 case DT_FLAGS_1
: name
= "FLAGS_1"; break;
1809 case DT_VERSYM
: name
= "VERSYM"; break;
1810 case DT_VERDEF
: name
= "VERDEF"; break;
1811 case DT_VERDEFNUM
: name
= "VERDEFNUM"; break;
1812 case DT_VERNEED
: name
= "VERNEED"; break;
1813 case DT_VERNEEDNUM
: name
= "VERNEEDNUM"; break;
1814 case DT_AUXILIARY
: name
= "AUXILIARY"; stringp
= true; break;
1815 case DT_USED
: name
= "USED"; break;
1816 case DT_FILTER
: name
= "FILTER"; stringp
= true; break;
1817 case DT_GNU_HASH
: name
= "GNU_HASH"; break;
1820 fprintf (f
, " %-20s ", name
);
1824 bfd_fprintf_vma (abfd
, f
, dyn
.d_un
.d_val
);
1829 unsigned int tagv
= dyn
.d_un
.d_val
;
1831 string
= bfd_elf_string_from_elf_section (abfd
, shlink
, tagv
);
1834 fprintf (f
, "%s", string
);
1843 if ((elf_dynverdef (abfd
) != 0 && elf_tdata (abfd
)->verdef
== NULL
)
1844 || (elf_dynverref (abfd
) != 0 && elf_tdata (abfd
)->verref
== NULL
))
1846 if (! _bfd_elf_slurp_version_tables (abfd
, false))
1850 if (elf_dynverdef (abfd
) != 0)
1852 Elf_Internal_Verdef
*t
;
1854 fprintf (f
, _("\nVersion definitions:\n"));
1855 for (t
= elf_tdata (abfd
)->verdef
; t
!= NULL
; t
= t
->vd_nextdef
)
1857 fprintf (f
, "%d 0x%2.2x 0x%8.8lx %s\n", t
->vd_ndx
,
1858 t
->vd_flags
, t
->vd_hash
,
1859 t
->vd_nodename
? t
->vd_nodename
: "<corrupt>");
1860 if (t
->vd_auxptr
!= NULL
&& t
->vd_auxptr
->vda_nextptr
!= NULL
)
1862 Elf_Internal_Verdaux
*a
;
1865 for (a
= t
->vd_auxptr
->vda_nextptr
;
1869 a
->vda_nodename
? a
->vda_nodename
: "<corrupt>");
1875 if (elf_dynverref (abfd
) != 0)
1877 Elf_Internal_Verneed
*t
;
1879 fprintf (f
, _("\nVersion References:\n"));
1880 for (t
= elf_tdata (abfd
)->verref
; t
!= NULL
; t
= t
->vn_nextref
)
1882 Elf_Internal_Vernaux
*a
;
1884 fprintf (f
, _(" required from %s:\n"),
1885 t
->vn_filename
? t
->vn_filename
: "<corrupt>");
1886 for (a
= t
->vn_auxptr
; a
!= NULL
; a
= a
->vna_nextptr
)
1887 fprintf (f
, " 0x%8.8lx 0x%2.2x %2.2d %s\n", a
->vna_hash
,
1888 a
->vna_flags
, a
->vna_other
,
1889 a
->vna_nodename
? a
->vna_nodename
: "<corrupt>");
1900 /* Get version name. If BASE_P is TRUE, return "Base" for VER_FLG_BASE
1901 and return symbol version for symbol version itself. */
1904 _bfd_elf_get_symbol_version_string (bfd
*abfd
, asymbol
*symbol
,
1908 const char *version_string
= NULL
;
1909 if (elf_dynversym (abfd
) != 0
1910 && (elf_dynverdef (abfd
) != 0 || elf_dynverref (abfd
) != 0))
1912 unsigned int vernum
= ((elf_symbol_type
*) symbol
)->version
;
1914 *hidden
= (vernum
& VERSYM_HIDDEN
) != 0;
1915 vernum
&= VERSYM_VERSION
;
1918 version_string
= "";
1919 else if (vernum
== 1
1920 && (vernum
> elf_tdata (abfd
)->cverdefs
1921 || (elf_tdata (abfd
)->verdef
[0].vd_flags
1923 version_string
= base_p
? "Base" : "";
1924 else if (vernum
<= elf_tdata (abfd
)->cverdefs
)
1926 const char *nodename
1927 = elf_tdata (abfd
)->verdef
[vernum
- 1].vd_nodename
;
1928 version_string
= "";
1931 || symbol
->name
== NULL
1932 || strcmp (symbol
->name
, nodename
) != 0)
1933 version_string
= nodename
;
1937 Elf_Internal_Verneed
*t
;
1939 version_string
= _("<corrupt>");
1940 for (t
= elf_tdata (abfd
)->verref
;
1944 Elf_Internal_Vernaux
*a
;
1946 for (a
= t
->vn_auxptr
; a
!= NULL
; a
= a
->vna_nextptr
)
1948 if (a
->vna_other
== vernum
)
1951 version_string
= a
->vna_nodename
;
1958 return version_string
;
1961 /* Display ELF-specific fields of a symbol. */
1964 bfd_elf_print_symbol (bfd
*abfd
,
1967 bfd_print_symbol_type how
)
1969 FILE *file
= (FILE *) filep
;
1972 case bfd_print_symbol_name
:
1973 fprintf (file
, "%s", symbol
->name
);
1975 case bfd_print_symbol_more
:
1976 fprintf (file
, "elf ");
1977 bfd_fprintf_vma (abfd
, file
, symbol
->value
);
1978 fprintf (file
, " %x", symbol
->flags
);
1980 case bfd_print_symbol_all
:
1982 const char *section_name
;
1983 const char *name
= NULL
;
1984 const struct elf_backend_data
*bed
;
1985 unsigned char st_other
;
1987 const char *version_string
;
1990 section_name
= symbol
->section
? symbol
->section
->name
: "(*none*)";
1992 bed
= get_elf_backend_data (abfd
);
1993 if (bed
->elf_backend_print_symbol_all
)
1994 name
= (*bed
->elf_backend_print_symbol_all
) (abfd
, filep
, symbol
);
1998 name
= symbol
->name
;
1999 bfd_print_symbol_vandf (abfd
, file
, symbol
);
2002 fprintf (file
, " %s\t", section_name
);
2003 /* Print the "other" value for a symbol. For common symbols,
2004 we've already printed the size; now print the alignment.
2005 For other symbols, we have no specified alignment, and
2006 we've printed the address; now print the size. */
2007 if (symbol
->section
&& bfd_is_com_section (symbol
->section
))
2008 val
= ((elf_symbol_type
*) symbol
)->internal_elf_sym
.st_value
;
2010 val
= ((elf_symbol_type
*) symbol
)->internal_elf_sym
.st_size
;
2011 bfd_fprintf_vma (abfd
, file
, val
);
2013 /* If we have version information, print it. */
2014 version_string
= _bfd_elf_get_symbol_version_string (abfd
,
2021 fprintf (file
, " %-11s", version_string
);
2026 fprintf (file
, " (%s)", version_string
);
2027 for (i
= 10 - strlen (version_string
); i
> 0; --i
)
2032 /* If the st_other field is not zero, print it. */
2033 st_other
= ((elf_symbol_type
*) symbol
)->internal_elf_sym
.st_other
;
2038 case STV_INTERNAL
: fprintf (file
, " .internal"); break;
2039 case STV_HIDDEN
: fprintf (file
, " .hidden"); break;
2040 case STV_PROTECTED
: fprintf (file
, " .protected"); break;
2042 /* Some other non-defined flags are also present, so print
2044 fprintf (file
, " 0x%02x", (unsigned int) st_other
);
2047 fprintf (file
, " %s", name
);
2053 /* ELF .o/exec file reading */
2055 /* Create a new bfd section from an ELF section header. */
2058 bfd_section_from_shdr (bfd
*abfd
, unsigned int shindex
)
2060 Elf_Internal_Shdr
*hdr
;
2061 Elf_Internal_Ehdr
*ehdr
;
2062 const struct elf_backend_data
*bed
;
2066 if (shindex
>= elf_numsections (abfd
))
2069 /* PR17512: A corrupt ELF binary might contain a loop of sections via
2070 sh_link or sh_info. Detect this here, by refusing to load a
2071 section that we are already in the process of loading. */
2072 if (elf_tdata (abfd
)->being_created
[shindex
])
2075 (_("%pB: warning: loop in section dependencies detected"), abfd
);
2078 elf_tdata (abfd
)->being_created
[shindex
] = true;
2080 hdr
= elf_elfsections (abfd
)[shindex
];
2081 ehdr
= elf_elfheader (abfd
);
2082 name
= bfd_elf_string_from_elf_section (abfd
, ehdr
->e_shstrndx
,
2087 bed
= get_elf_backend_data (abfd
);
2088 switch (hdr
->sh_type
)
2091 /* Inactive section. Throw it away. */
2094 case SHT_PROGBITS
: /* Normal section with contents. */
2095 case SHT_NOBITS
: /* .bss section. */
2096 case SHT_HASH
: /* .hash section. */
2097 case SHT_NOTE
: /* .note section. */
2098 case SHT_INIT_ARRAY
: /* .init_array section. */
2099 case SHT_FINI_ARRAY
: /* .fini_array section. */
2100 case SHT_PREINIT_ARRAY
: /* .preinit_array section. */
2101 case SHT_GNU_LIBLIST
: /* .gnu.liblist section. */
2102 case SHT_GNU_HASH
: /* .gnu.hash section. */
2103 ret
= _bfd_elf_make_section_from_shdr (abfd
, hdr
, name
, shindex
);
2106 case SHT_DYNAMIC
: /* Dynamic linking information. */
2107 if (! _bfd_elf_make_section_from_shdr (abfd
, hdr
, name
, shindex
))
2110 if (hdr
->sh_link
> elf_numsections (abfd
))
2112 /* PR 10478: Accept Solaris binaries with a sh_link
2113 field set to SHN_BEFORE or SHN_AFTER. */
2114 switch (bfd_get_arch (abfd
))
2117 case bfd_arch_sparc
:
2118 if (hdr
->sh_link
== (SHN_LORESERVE
& 0xffff) /* SHN_BEFORE */
2119 || hdr
->sh_link
== ((SHN_LORESERVE
+ 1) & 0xffff) /* SHN_AFTER */)
2121 /* Otherwise fall through. */
2126 else if (elf_elfsections (abfd
)[hdr
->sh_link
] == NULL
)
2128 else if (elf_elfsections (abfd
)[hdr
->sh_link
]->sh_type
!= SHT_STRTAB
)
2130 Elf_Internal_Shdr
*dynsymhdr
;
2132 /* The shared libraries distributed with hpux11 have a bogus
2133 sh_link field for the ".dynamic" section. Find the
2134 string table for the ".dynsym" section instead. */
2135 if (elf_dynsymtab (abfd
) != 0)
2137 dynsymhdr
= elf_elfsections (abfd
)[elf_dynsymtab (abfd
)];
2138 hdr
->sh_link
= dynsymhdr
->sh_link
;
2142 unsigned int i
, num_sec
;
2144 num_sec
= elf_numsections (abfd
);
2145 for (i
= 1; i
< num_sec
; i
++)
2147 dynsymhdr
= elf_elfsections (abfd
)[i
];
2148 if (dynsymhdr
->sh_type
== SHT_DYNSYM
)
2150 hdr
->sh_link
= dynsymhdr
->sh_link
;
2158 case SHT_SYMTAB
: /* A symbol table. */
2159 if (elf_onesymtab (abfd
) == shindex
)
2162 if (hdr
->sh_entsize
!= bed
->s
->sizeof_sym
)
2165 if (hdr
->sh_info
* hdr
->sh_entsize
> hdr
->sh_size
)
2167 if (hdr
->sh_size
!= 0)
2169 /* Some assemblers erroneously set sh_info to one with a
2170 zero sh_size. ld sees this as a global symbol count
2171 of (unsigned) -1. Fix it here. */
2176 /* PR 18854: A binary might contain more than one symbol table.
2177 Unusual, but possible. Warn, but continue. */
2178 if (elf_onesymtab (abfd
) != 0)
2181 /* xgettext:c-format */
2182 (_("%pB: warning: multiple symbol tables detected"
2183 " - ignoring the table in section %u"),
2187 elf_onesymtab (abfd
) = shindex
;
2188 elf_symtab_hdr (abfd
) = *hdr
;
2189 elf_elfsections (abfd
)[shindex
] = hdr
= & elf_symtab_hdr (abfd
);
2190 abfd
->flags
|= HAS_SYMS
;
2192 /* Sometimes a shared object will map in the symbol table. If
2193 SHF_ALLOC is set, and this is a shared object, then we also
2194 treat this section as a BFD section. We can not base the
2195 decision purely on SHF_ALLOC, because that flag is sometimes
2196 set in a relocatable object file, which would confuse the
2198 if ((hdr
->sh_flags
& SHF_ALLOC
) != 0
2199 && (abfd
->flags
& DYNAMIC
) != 0
2200 && ! _bfd_elf_make_section_from_shdr (abfd
, hdr
, name
,
2204 /* Go looking for SHT_SYMTAB_SHNDX too, since if there is one we
2205 can't read symbols without that section loaded as well. It
2206 is most likely specified by the next section header. */
2208 elf_section_list
* entry
;
2209 unsigned int i
, num_sec
;
2211 for (entry
= elf_symtab_shndx_list (abfd
); entry
!= NULL
; entry
= entry
->next
)
2212 if (entry
->hdr
.sh_link
== shindex
)
2215 num_sec
= elf_numsections (abfd
);
2216 for (i
= shindex
+ 1; i
< num_sec
; i
++)
2218 Elf_Internal_Shdr
*hdr2
= elf_elfsections (abfd
)[i
];
2220 if (hdr2
->sh_type
== SHT_SYMTAB_SHNDX
2221 && hdr2
->sh_link
== shindex
)
2226 for (i
= 1; i
< shindex
; i
++)
2228 Elf_Internal_Shdr
*hdr2
= elf_elfsections (abfd
)[i
];
2230 if (hdr2
->sh_type
== SHT_SYMTAB_SHNDX
2231 && hdr2
->sh_link
== shindex
)
2236 ret
= bfd_section_from_shdr (abfd
, i
);
2237 /* else FIXME: we have failed to find the symbol table - should we issue an error ? */
2241 case SHT_DYNSYM
: /* A dynamic symbol table. */
2242 if (elf_dynsymtab (abfd
) == shindex
)
2245 if (hdr
->sh_entsize
!= bed
->s
->sizeof_sym
)
2248 if (hdr
->sh_info
* hdr
->sh_entsize
> hdr
->sh_size
)
2250 if (hdr
->sh_size
!= 0)
2253 /* Some linkers erroneously set sh_info to one with a
2254 zero sh_size. ld sees this as a global symbol count
2255 of (unsigned) -1. Fix it here. */
2260 /* PR 18854: A binary might contain more than one dynamic symbol table.
2261 Unusual, but possible. Warn, but continue. */
2262 if (elf_dynsymtab (abfd
) != 0)
2265 /* xgettext:c-format */
2266 (_("%pB: warning: multiple dynamic symbol tables detected"
2267 " - ignoring the table in section %u"),
2271 elf_dynsymtab (abfd
) = shindex
;
2272 elf_tdata (abfd
)->dynsymtab_hdr
= *hdr
;
2273 elf_elfsections (abfd
)[shindex
] = hdr
= &elf_tdata (abfd
)->dynsymtab_hdr
;
2274 abfd
->flags
|= HAS_SYMS
;
2276 /* Besides being a symbol table, we also treat this as a regular
2277 section, so that objcopy can handle it. */
2278 ret
= _bfd_elf_make_section_from_shdr (abfd
, hdr
, name
, shindex
);
2281 case SHT_SYMTAB_SHNDX
: /* Symbol section indices when >64k sections. */
2283 elf_section_list
* entry
;
2285 for (entry
= elf_symtab_shndx_list (abfd
); entry
!= NULL
; entry
= entry
->next
)
2286 if (entry
->ndx
== shindex
)
2289 entry
= bfd_alloc (abfd
, sizeof (*entry
));
2292 entry
->ndx
= shindex
;
2294 entry
->next
= elf_symtab_shndx_list (abfd
);
2295 elf_symtab_shndx_list (abfd
) = entry
;
2296 elf_elfsections (abfd
)[shindex
] = & entry
->hdr
;
2300 case SHT_STRTAB
: /* A string table. */
2301 if (hdr
->bfd_section
!= NULL
)
2304 if (ehdr
->e_shstrndx
== shindex
)
2306 elf_tdata (abfd
)->shstrtab_hdr
= *hdr
;
2307 elf_elfsections (abfd
)[shindex
] = &elf_tdata (abfd
)->shstrtab_hdr
;
2311 if (elf_elfsections (abfd
)[elf_onesymtab (abfd
)]->sh_link
== shindex
)
2314 elf_tdata (abfd
)->strtab_hdr
= *hdr
;
2315 elf_elfsections (abfd
)[shindex
] = &elf_tdata (abfd
)->strtab_hdr
;
2319 if (elf_elfsections (abfd
)[elf_dynsymtab (abfd
)]->sh_link
== shindex
)
2322 elf_tdata (abfd
)->dynstrtab_hdr
= *hdr
;
2323 hdr
= &elf_tdata (abfd
)->dynstrtab_hdr
;
2324 elf_elfsections (abfd
)[shindex
] = hdr
;
2325 /* We also treat this as a regular section, so that objcopy
2327 ret
= _bfd_elf_make_section_from_shdr (abfd
, hdr
, name
,
2332 /* If the string table isn't one of the above, then treat it as a
2333 regular section. We need to scan all the headers to be sure,
2334 just in case this strtab section appeared before the above. */
2335 if (elf_onesymtab (abfd
) == 0 || elf_dynsymtab (abfd
) == 0)
2337 unsigned int i
, num_sec
;
2339 num_sec
= elf_numsections (abfd
);
2340 for (i
= 1; i
< num_sec
; i
++)
2342 Elf_Internal_Shdr
*hdr2
= elf_elfsections (abfd
)[i
];
2343 if (hdr2
->sh_link
== shindex
)
2345 /* Prevent endless recursion on broken objects. */
2348 if (! bfd_section_from_shdr (abfd
, i
))
2350 if (elf_onesymtab (abfd
) == i
)
2352 if (elf_dynsymtab (abfd
) == i
)
2353 goto dynsymtab_strtab
;
2357 ret
= _bfd_elf_make_section_from_shdr (abfd
, hdr
, name
, shindex
);
2363 /* *These* do a lot of work -- but build no sections! */
2365 asection
*target_sect
;
2366 Elf_Internal_Shdr
*hdr2
, **p_hdr
;
2367 unsigned int num_sec
= elf_numsections (abfd
);
2368 struct bfd_elf_section_data
*esdt
;
2371 if (hdr
->sh_type
== SHT_REL
)
2372 size
= bed
->s
->sizeof_rel
;
2373 else if (hdr
->sh_type
== SHT_RELA
)
2374 size
= bed
->s
->sizeof_rela
;
2376 size
= bed
->s
->arch_size
/ 8;
2377 if (hdr
->sh_entsize
!= size
)
2380 /* Check for a bogus link to avoid crashing. */
2381 if (hdr
->sh_link
>= num_sec
)
2384 /* xgettext:c-format */
2385 (_("%pB: invalid link %u for reloc section %s (index %u)"),
2386 abfd
, hdr
->sh_link
, name
, shindex
);
2387 ret
= _bfd_elf_make_section_from_shdr (abfd
, hdr
, name
,
2392 /* Get the symbol table. */
2393 if ((elf_elfsections (abfd
)[hdr
->sh_link
]->sh_type
== SHT_SYMTAB
2394 || elf_elfsections (abfd
)[hdr
->sh_link
]->sh_type
== SHT_DYNSYM
)
2395 && ! bfd_section_from_shdr (abfd
, hdr
->sh_link
))
2398 /* If this is an alloc section in an executable or shared
2399 library, or the reloc section does not use the main symbol
2400 table we don't treat it as a reloc section. BFD can't
2401 adequately represent such a section, so at least for now,
2402 we don't try. We just present it as a normal section. We
2403 also can't use it as a reloc section if it points to the
2404 null section, an invalid section, another reloc section, or
2405 its sh_link points to the null section. */
2406 if (((abfd
->flags
& (DYNAMIC
| EXEC_P
)) != 0
2407 && (hdr
->sh_flags
& SHF_ALLOC
) != 0)
2408 || hdr
->sh_link
== SHN_UNDEF
2409 || hdr
->sh_link
!= elf_onesymtab (abfd
)
2410 || hdr
->sh_info
== SHN_UNDEF
2411 || hdr
->sh_info
>= num_sec
2412 || elf_elfsections (abfd
)[hdr
->sh_info
]->sh_type
== SHT_REL
2413 || elf_elfsections (abfd
)[hdr
->sh_info
]->sh_type
== SHT_RELA
)
2415 ret
= _bfd_elf_make_section_from_shdr (abfd
, hdr
, name
,
2420 if (! bfd_section_from_shdr (abfd
, hdr
->sh_info
))
2423 target_sect
= bfd_section_from_elf_index (abfd
, hdr
->sh_info
);
2424 if (target_sect
== NULL
)
2427 esdt
= elf_section_data (target_sect
);
2428 if (hdr
->sh_type
== SHT_RELA
)
2429 p_hdr
= &esdt
->rela
.hdr
;
2431 p_hdr
= &esdt
->rel
.hdr
;
2433 /* PR 17512: file: 0b4f81b7.
2434 Also see PR 24456, for a file which deliberately has two reloc
2438 if (!bed
->init_secondary_reloc_section (abfd
, hdr
, name
, shindex
))
2441 /* xgettext:c-format */
2442 (_("%pB: warning: secondary relocation section '%s' "
2443 "for section %pA found - ignoring"),
2444 abfd
, name
, target_sect
);
2447 esdt
->has_secondary_relocs
= true;
2451 hdr2
= (Elf_Internal_Shdr
*) bfd_alloc (abfd
, sizeof (*hdr2
));
2456 elf_elfsections (abfd
)[shindex
] = hdr2
;
2457 target_sect
->reloc_count
+= (NUM_SHDR_ENTRIES (hdr
)
2458 * bed
->s
->int_rels_per_ext_rel
);
2459 target_sect
->flags
|= SEC_RELOC
;
2460 target_sect
->relocation
= NULL
;
2461 target_sect
->rel_filepos
= hdr
->sh_offset
;
2462 /* In the section to which the relocations apply, mark whether
2463 its relocations are of the REL or RELA variety. */
2464 if (hdr
->sh_size
!= 0)
2466 if (hdr
->sh_type
== SHT_RELA
)
2467 target_sect
->use_rela_p
= 1;
2469 abfd
->flags
|= HAS_RELOC
;
2473 case SHT_GNU_verdef
:
2474 elf_dynverdef (abfd
) = shindex
;
2475 elf_tdata (abfd
)->dynverdef_hdr
= *hdr
;
2476 ret
= _bfd_elf_make_section_from_shdr (abfd
, hdr
, name
, shindex
);
2479 case SHT_GNU_versym
:
2480 if (hdr
->sh_entsize
!= sizeof (Elf_External_Versym
))
2483 elf_dynversym (abfd
) = shindex
;
2484 elf_tdata (abfd
)->dynversym_hdr
= *hdr
;
2485 ret
= _bfd_elf_make_section_from_shdr (abfd
, hdr
, name
, shindex
);
2488 case SHT_GNU_verneed
:
2489 elf_dynverref (abfd
) = shindex
;
2490 elf_tdata (abfd
)->dynverref_hdr
= *hdr
;
2491 ret
= _bfd_elf_make_section_from_shdr (abfd
, hdr
, name
, shindex
);
2498 if (! IS_VALID_GROUP_SECTION_HEADER (hdr
, GRP_ENTRY_SIZE
))
2501 if (!_bfd_elf_make_section_from_shdr (abfd
, hdr
, name
, shindex
))
2507 /* Possibly an attributes section. */
2508 if (hdr
->sh_type
== SHT_GNU_ATTRIBUTES
2509 || hdr
->sh_type
== bed
->obj_attrs_section_type
)
2511 if (! _bfd_elf_make_section_from_shdr (abfd
, hdr
, name
, shindex
))
2513 _bfd_elf_parse_attributes (abfd
, hdr
);
2517 /* Check for any processor-specific section types. */
2518 if (bed
->elf_backend_section_from_shdr (abfd
, hdr
, name
, shindex
))
2521 if (hdr
->sh_type
>= SHT_LOUSER
&& hdr
->sh_type
<= SHT_HIUSER
)
2523 if ((hdr
->sh_flags
& SHF_ALLOC
) != 0)
2524 /* FIXME: How to properly handle allocated section reserved
2525 for applications? */
2527 /* xgettext:c-format */
2528 (_("%pB: unknown type [%#x] section `%s'"),
2529 abfd
, hdr
->sh_type
, name
);
2532 /* Allow sections reserved for applications. */
2533 ret
= _bfd_elf_make_section_from_shdr (abfd
, hdr
, name
,
2538 else if (hdr
->sh_type
>= SHT_LOPROC
2539 && hdr
->sh_type
<= SHT_HIPROC
)
2540 /* FIXME: We should handle this section. */
2542 /* xgettext:c-format */
2543 (_("%pB: unknown type [%#x] section `%s'"),
2544 abfd
, hdr
->sh_type
, name
);
2545 else if (hdr
->sh_type
>= SHT_LOOS
&& hdr
->sh_type
<= SHT_HIOS
)
2547 /* Unrecognised OS-specific sections. */
2548 if ((hdr
->sh_flags
& SHF_OS_NONCONFORMING
) != 0)
2549 /* SHF_OS_NONCONFORMING indicates that special knowledge is
2550 required to correctly process the section and the file should
2551 be rejected with an error message. */
2553 /* xgettext:c-format */
2554 (_("%pB: unknown type [%#x] section `%s'"),
2555 abfd
, hdr
->sh_type
, name
);
2558 /* Otherwise it should be processed. */
2559 ret
= _bfd_elf_make_section_from_shdr (abfd
, hdr
, name
, shindex
);
2564 /* FIXME: We should handle this section. */
2566 /* xgettext:c-format */
2567 (_("%pB: unknown type [%#x] section `%s'"),
2568 abfd
, hdr
->sh_type
, name
);
2576 elf_tdata (abfd
)->being_created
[shindex
] = false;
2580 /* Return the local symbol specified by ABFD, R_SYMNDX. */
2583 bfd_sym_from_r_symndx (struct sym_cache
*cache
,
2585 unsigned long r_symndx
)
2587 unsigned int ent
= r_symndx
% LOCAL_SYM_CACHE_SIZE
;
2589 if (cache
->abfd
!= abfd
|| cache
->indx
[ent
] != r_symndx
)
2591 Elf_Internal_Shdr
*symtab_hdr
;
2592 unsigned char esym
[sizeof (Elf64_External_Sym
)];
2593 Elf_External_Sym_Shndx eshndx
;
2595 symtab_hdr
= &elf_tdata (abfd
)->symtab_hdr
;
2596 if (bfd_elf_get_elf_syms (abfd
, symtab_hdr
, 1, r_symndx
,
2597 &cache
->sym
[ent
], esym
, &eshndx
) == NULL
)
2600 if (cache
->abfd
!= abfd
)
2602 memset (cache
->indx
, -1, sizeof (cache
->indx
));
2605 cache
->indx
[ent
] = r_symndx
;
2608 return &cache
->sym
[ent
];
2611 /* Given an ELF section number, retrieve the corresponding BFD
2615 bfd_section_from_elf_index (bfd
*abfd
, unsigned int sec_index
)
2617 if (sec_index
>= elf_numsections (abfd
))
2619 return elf_elfsections (abfd
)[sec_index
]->bfd_section
;
2622 static const struct bfd_elf_special_section special_sections_b
[] =
2624 { STRING_COMMA_LEN (".bss"), -2, SHT_NOBITS
, SHF_ALLOC
+ SHF_WRITE
},
2625 { NULL
, 0, 0, 0, 0 }
2628 static const struct bfd_elf_special_section special_sections_c
[] =
2630 { STRING_COMMA_LEN (".comment"), 0, SHT_PROGBITS
, 0 },
2631 { STRING_COMMA_LEN (".ctf"), 0, SHT_PROGBITS
, 0 },
2632 { NULL
, 0, 0, 0, 0 }
2635 static const struct bfd_elf_special_section special_sections_d
[] =
2637 { STRING_COMMA_LEN (".data"), -2, SHT_PROGBITS
, SHF_ALLOC
+ SHF_WRITE
},
2638 { STRING_COMMA_LEN (".data1"), 0, SHT_PROGBITS
, SHF_ALLOC
+ SHF_WRITE
},
2639 /* There are more DWARF sections than these, but they needn't be added here
2640 unless you have to cope with broken compilers that don't emit section
2641 attributes or you want to help the user writing assembler. */
2642 { STRING_COMMA_LEN (".debug"), 0, SHT_PROGBITS
, 0 },
2643 { STRING_COMMA_LEN (".debug_line"), 0, SHT_PROGBITS
, 0 },
2644 { STRING_COMMA_LEN (".debug_info"), 0, SHT_PROGBITS
, 0 },
2645 { STRING_COMMA_LEN (".debug_abbrev"), 0, SHT_PROGBITS
, 0 },
2646 { STRING_COMMA_LEN (".debug_aranges"), 0, SHT_PROGBITS
, 0 },
2647 { STRING_COMMA_LEN (".dynamic"), 0, SHT_DYNAMIC
, SHF_ALLOC
},
2648 { STRING_COMMA_LEN (".dynstr"), 0, SHT_STRTAB
, SHF_ALLOC
},
2649 { STRING_COMMA_LEN (".dynsym"), 0, SHT_DYNSYM
, SHF_ALLOC
},
2650 { NULL
, 0, 0, 0, 0 }
2653 static const struct bfd_elf_special_section special_sections_f
[] =
2655 { STRING_COMMA_LEN (".fini"), 0, SHT_PROGBITS
, SHF_ALLOC
+ SHF_EXECINSTR
},
2656 { STRING_COMMA_LEN (".fini_array"), -2, SHT_FINI_ARRAY
, SHF_ALLOC
+ SHF_WRITE
},
2657 { NULL
, 0 , 0, 0, 0 }
2660 static const struct bfd_elf_special_section special_sections_g
[] =
2662 { STRING_COMMA_LEN (".gnu.linkonce.b"), -2, SHT_NOBITS
, SHF_ALLOC
+ SHF_WRITE
},
2663 { STRING_COMMA_LEN (".gnu.linkonce.n"), -2, SHT_NOBITS
, SHF_ALLOC
+ SHF_WRITE
},
2664 { STRING_COMMA_LEN (".gnu.linkonce.p"), -2, SHT_PROGBITS
, SHF_ALLOC
+ SHF_WRITE
},
2665 { STRING_COMMA_LEN (".gnu.lto_"), -1, SHT_PROGBITS
, SHF_EXCLUDE
},
2666 { STRING_COMMA_LEN (".got"), 0, SHT_PROGBITS
, SHF_ALLOC
+ SHF_WRITE
},
2667 { STRING_COMMA_LEN (".gnu.version"), 0, SHT_GNU_versym
, 0 },
2668 { STRING_COMMA_LEN (".gnu.version_d"), 0, SHT_GNU_verdef
, 0 },
2669 { STRING_COMMA_LEN (".gnu.version_r"), 0, SHT_GNU_verneed
, 0 },
2670 { STRING_COMMA_LEN (".gnu.liblist"), 0, SHT_GNU_LIBLIST
, SHF_ALLOC
},
2671 { STRING_COMMA_LEN (".gnu.conflict"), 0, SHT_RELA
, SHF_ALLOC
},
2672 { STRING_COMMA_LEN (".gnu.hash"), 0, SHT_GNU_HASH
, SHF_ALLOC
},
2673 { NULL
, 0, 0, 0, 0 }
2676 static const struct bfd_elf_special_section special_sections_h
[] =
2678 { STRING_COMMA_LEN (".hash"), 0, SHT_HASH
, SHF_ALLOC
},
2679 { NULL
, 0, 0, 0, 0 }
2682 static const struct bfd_elf_special_section special_sections_i
[] =
2684 { STRING_COMMA_LEN (".init"), 0, SHT_PROGBITS
, SHF_ALLOC
+ SHF_EXECINSTR
},
2685 { STRING_COMMA_LEN (".init_array"), -2, SHT_INIT_ARRAY
, SHF_ALLOC
+ SHF_WRITE
},
2686 { STRING_COMMA_LEN (".interp"), 0, SHT_PROGBITS
, 0 },
2687 { NULL
, 0, 0, 0, 0 }
2690 static const struct bfd_elf_special_section special_sections_l
[] =
2692 { STRING_COMMA_LEN (".line"), 0, SHT_PROGBITS
, 0 },
2693 { NULL
, 0, 0, 0, 0 }
2696 static const struct bfd_elf_special_section special_sections_n
[] =
2698 { STRING_COMMA_LEN (".noinit"), -2, SHT_NOBITS
, SHF_ALLOC
+ SHF_WRITE
},
2699 { STRING_COMMA_LEN (".note.GNU-stack"), 0, SHT_PROGBITS
, 0 },
2700 { STRING_COMMA_LEN (".note"), -1, SHT_NOTE
, 0 },
2701 { NULL
, 0, 0, 0, 0 }
2704 static const struct bfd_elf_special_section special_sections_p
[] =
2706 { STRING_COMMA_LEN (".persistent.bss"), 0, SHT_NOBITS
, SHF_ALLOC
+ SHF_WRITE
},
2707 { STRING_COMMA_LEN (".persistent"), -2, SHT_PROGBITS
, SHF_ALLOC
+ SHF_WRITE
},
2708 { STRING_COMMA_LEN (".preinit_array"), -2, SHT_PREINIT_ARRAY
, SHF_ALLOC
+ SHF_WRITE
},
2709 { STRING_COMMA_LEN (".plt"), 0, SHT_PROGBITS
, SHF_ALLOC
+ SHF_EXECINSTR
},
2710 { NULL
, 0, 0, 0, 0 }
2713 static const struct bfd_elf_special_section special_sections_r
[] =
2715 { STRING_COMMA_LEN (".rodata"), -2, SHT_PROGBITS
, SHF_ALLOC
},
2716 { STRING_COMMA_LEN (".rodata1"), 0, SHT_PROGBITS
, SHF_ALLOC
},
2717 { STRING_COMMA_LEN (".relr.dyn"), 0, SHT_RELR
, SHF_ALLOC
},
2718 { STRING_COMMA_LEN (".rela"), -1, SHT_RELA
, 0 },
2719 { STRING_COMMA_LEN (".rel"), -1, SHT_REL
, 0 },
2720 { NULL
, 0, 0, 0, 0 }
2723 static const struct bfd_elf_special_section special_sections_s
[] =
2725 { STRING_COMMA_LEN (".shstrtab"), 0, SHT_STRTAB
, 0 },
2726 { STRING_COMMA_LEN (".strtab"), 0, SHT_STRTAB
, 0 },
2727 { STRING_COMMA_LEN (".symtab"), 0, SHT_SYMTAB
, 0 },
2728 /* See struct bfd_elf_special_section declaration for the semantics of
2729 this special case where .prefix_length != strlen (.prefix). */
2730 { ".stabstr", 5, 3, SHT_STRTAB
, 0 },
2731 { NULL
, 0, 0, 0, 0 }
2734 static const struct bfd_elf_special_section special_sections_t
[] =
2736 { STRING_COMMA_LEN (".text"), -2, SHT_PROGBITS
, SHF_ALLOC
+ SHF_EXECINSTR
},
2737 { STRING_COMMA_LEN (".tbss"), -2, SHT_NOBITS
, SHF_ALLOC
+ SHF_WRITE
+ SHF_TLS
},
2738 { STRING_COMMA_LEN (".tdata"), -2, SHT_PROGBITS
, SHF_ALLOC
+ SHF_WRITE
+ SHF_TLS
},
2739 { NULL
, 0, 0, 0, 0 }
2742 static const struct bfd_elf_special_section special_sections_z
[] =
2744 { STRING_COMMA_LEN (".zdebug_line"), 0, SHT_PROGBITS
, 0 },
2745 { STRING_COMMA_LEN (".zdebug_info"), 0, SHT_PROGBITS
, 0 },
2746 { STRING_COMMA_LEN (".zdebug_abbrev"), 0, SHT_PROGBITS
, 0 },
2747 { STRING_COMMA_LEN (".zdebug_aranges"), 0, SHT_PROGBITS
, 0 },
2748 { NULL
, 0, 0, 0, 0 }
2751 static const struct bfd_elf_special_section
* const special_sections
[] =
2753 special_sections_b
, /* 'b' */
2754 special_sections_c
, /* 'c' */
2755 special_sections_d
, /* 'd' */
2757 special_sections_f
, /* 'f' */
2758 special_sections_g
, /* 'g' */
2759 special_sections_h
, /* 'h' */
2760 special_sections_i
, /* 'i' */
2763 special_sections_l
, /* 'l' */
2765 special_sections_n
, /* 'n' */
2767 special_sections_p
, /* 'p' */
2769 special_sections_r
, /* 'r' */
2770 special_sections_s
, /* 's' */
2771 special_sections_t
, /* 't' */
2777 special_sections_z
/* 'z' */
2780 const struct bfd_elf_special_section
*
2781 _bfd_elf_get_special_section (const char *name
,
2782 const struct bfd_elf_special_section
*spec
,
2788 len
= strlen (name
);
2790 for (i
= 0; spec
[i
].prefix
!= NULL
; i
++)
2793 int prefix_len
= spec
[i
].prefix_length
;
2795 if (len
< prefix_len
)
2797 if (memcmp (name
, spec
[i
].prefix
, prefix_len
) != 0)
2800 suffix_len
= spec
[i
].suffix_length
;
2801 if (suffix_len
<= 0)
2803 if (name
[prefix_len
] != 0)
2805 if (suffix_len
== 0)
2807 if (name
[prefix_len
] != '.'
2808 && (suffix_len
== -2
2809 || (rela
&& spec
[i
].type
== SHT_REL
)))
2815 if (len
< prefix_len
+ suffix_len
)
2817 if (memcmp (name
+ len
- suffix_len
,
2818 spec
[i
].prefix
+ prefix_len
,
2828 const struct bfd_elf_special_section
*
2829 _bfd_elf_get_sec_type_attr (bfd
*abfd
, asection
*sec
)
2832 const struct bfd_elf_special_section
*spec
;
2833 const struct elf_backend_data
*bed
;
2835 /* See if this is one of the special sections. */
2836 if (sec
->name
== NULL
)
2839 bed
= get_elf_backend_data (abfd
);
2840 spec
= bed
->special_sections
;
2843 spec
= _bfd_elf_get_special_section (sec
->name
,
2844 bed
->special_sections
,
2850 if (sec
->name
[0] != '.')
2853 i
= sec
->name
[1] - 'b';
2854 if (i
< 0 || i
> 'z' - 'b')
2857 spec
= special_sections
[i
];
2862 return _bfd_elf_get_special_section (sec
->name
, spec
, sec
->use_rela_p
);
2866 _bfd_elf_new_section_hook (bfd
*abfd
, asection
*sec
)
2868 struct bfd_elf_section_data
*sdata
;
2869 const struct elf_backend_data
*bed
;
2870 const struct bfd_elf_special_section
*ssect
;
2872 sdata
= (struct bfd_elf_section_data
*) sec
->used_by_bfd
;
2875 sdata
= (struct bfd_elf_section_data
*) bfd_zalloc (abfd
,
2879 sec
->used_by_bfd
= sdata
;
2882 /* Indicate whether or not this section should use RELA relocations. */
2883 bed
= get_elf_backend_data (abfd
);
2884 sec
->use_rela_p
= bed
->default_use_rela_p
;
2886 /* Set up ELF section type and flags for newly created sections, if
2887 there is an ABI mandated section. */
2888 ssect
= (*bed
->get_sec_type_attr
) (abfd
, sec
);
2891 elf_section_type (sec
) = ssect
->type
;
2892 elf_section_flags (sec
) = ssect
->attr
;
2895 return _bfd_generic_new_section_hook (abfd
, sec
);
2898 /* Create a new bfd section from an ELF program header.
2900 Since program segments have no names, we generate a synthetic name
2901 of the form segment<NUM>, where NUM is generally the index in the
2902 program header table. For segments that are split (see below) we
2903 generate the names segment<NUM>a and segment<NUM>b.
2905 Note that some program segments may have a file size that is different than
2906 (less than) the memory size. All this means is that at execution the
2907 system must allocate the amount of memory specified by the memory size,
2908 but only initialize it with the first "file size" bytes read from the
2909 file. This would occur for example, with program segments consisting
2910 of combined data+bss.
2912 To handle the above situation, this routine generates TWO bfd sections
2913 for the single program segment. The first has the length specified by
2914 the file size of the segment, and the second has the length specified
2915 by the difference between the two sizes. In effect, the segment is split
2916 into its initialized and uninitialized parts.
2921 _bfd_elf_make_section_from_phdr (bfd
*abfd
,
2922 Elf_Internal_Phdr
*hdr
,
2924 const char *type_name
)
2931 unsigned int opb
= bfd_octets_per_byte (abfd
, NULL
);
2933 split
= ((hdr
->p_memsz
> 0)
2934 && (hdr
->p_filesz
> 0)
2935 && (hdr
->p_memsz
> hdr
->p_filesz
));
2937 if (hdr
->p_filesz
> 0)
2939 sprintf (namebuf
, "%s%d%s", type_name
, hdr_index
, split
? "a" : "");
2940 len
= strlen (namebuf
) + 1;
2941 name
= (char *) bfd_alloc (abfd
, len
);
2944 memcpy (name
, namebuf
, len
);
2945 newsect
= bfd_make_section (abfd
, name
);
2946 if (newsect
== NULL
)
2948 newsect
->vma
= hdr
->p_vaddr
/ opb
;
2949 newsect
->lma
= hdr
->p_paddr
/ opb
;
2950 newsect
->size
= hdr
->p_filesz
;
2951 newsect
->filepos
= hdr
->p_offset
;
2952 newsect
->flags
|= SEC_HAS_CONTENTS
;
2953 newsect
->alignment_power
= bfd_log2 (hdr
->p_align
);
2954 if (hdr
->p_type
== PT_LOAD
)
2956 newsect
->flags
|= SEC_ALLOC
;
2957 newsect
->flags
|= SEC_LOAD
;
2958 if (hdr
->p_flags
& PF_X
)
2960 /* FIXME: all we known is that it has execute PERMISSION,
2962 newsect
->flags
|= SEC_CODE
;
2965 if (!(hdr
->p_flags
& PF_W
))
2967 newsect
->flags
|= SEC_READONLY
;
2971 if (hdr
->p_memsz
> hdr
->p_filesz
)
2975 sprintf (namebuf
, "%s%d%s", type_name
, hdr_index
, split
? "b" : "");
2976 len
= strlen (namebuf
) + 1;
2977 name
= (char *) bfd_alloc (abfd
, len
);
2980 memcpy (name
, namebuf
, len
);
2981 newsect
= bfd_make_section (abfd
, name
);
2982 if (newsect
== NULL
)
2984 newsect
->vma
= (hdr
->p_vaddr
+ hdr
->p_filesz
) / opb
;
2985 newsect
->lma
= (hdr
->p_paddr
+ hdr
->p_filesz
) / opb
;
2986 newsect
->size
= hdr
->p_memsz
- hdr
->p_filesz
;
2987 newsect
->filepos
= hdr
->p_offset
+ hdr
->p_filesz
;
2988 align
= newsect
->vma
& -newsect
->vma
;
2989 if (align
== 0 || align
> hdr
->p_align
)
2990 align
= hdr
->p_align
;
2991 newsect
->alignment_power
= bfd_log2 (align
);
2992 if (hdr
->p_type
== PT_LOAD
)
2994 newsect
->flags
|= SEC_ALLOC
;
2995 if (hdr
->p_flags
& PF_X
)
2996 newsect
->flags
|= SEC_CODE
;
2998 if (!(hdr
->p_flags
& PF_W
))
2999 newsect
->flags
|= SEC_READONLY
;
3006 _bfd_elf_core_find_build_id (bfd
*templ
, bfd_vma offset
)
3008 /* The return value is ignored. Build-ids are considered optional. */
3009 if (templ
->xvec
->flavour
== bfd_target_elf_flavour
)
3010 return (*get_elf_backend_data (templ
)->elf_backend_core_find_build_id
)
3016 bfd_section_from_phdr (bfd
*abfd
, Elf_Internal_Phdr
*hdr
, int hdr_index
)
3018 const struct elf_backend_data
*bed
;
3020 switch (hdr
->p_type
)
3023 return _bfd_elf_make_section_from_phdr (abfd
, hdr
, hdr_index
, "null");
3026 if (! _bfd_elf_make_section_from_phdr (abfd
, hdr
, hdr_index
, "load"))
3028 if (bfd_get_format (abfd
) == bfd_core
&& abfd
->build_id
== NULL
)
3029 _bfd_elf_core_find_build_id (abfd
, hdr
->p_offset
);
3033 return _bfd_elf_make_section_from_phdr (abfd
, hdr
, hdr_index
, "dynamic");
3036 return _bfd_elf_make_section_from_phdr (abfd
, hdr
, hdr_index
, "interp");
3039 if (! _bfd_elf_make_section_from_phdr (abfd
, hdr
, hdr_index
, "note"))
3041 if (! elf_read_notes (abfd
, hdr
->p_offset
, hdr
->p_filesz
,
3047 return _bfd_elf_make_section_from_phdr (abfd
, hdr
, hdr_index
, "shlib");
3050 return _bfd_elf_make_section_from_phdr (abfd
, hdr
, hdr_index
, "phdr");
3052 case PT_GNU_EH_FRAME
:
3053 return _bfd_elf_make_section_from_phdr (abfd
, hdr
, hdr_index
,
3057 return _bfd_elf_make_section_from_phdr (abfd
, hdr
, hdr_index
, "stack");
3060 return _bfd_elf_make_section_from_phdr (abfd
, hdr
, hdr_index
, "relro");
3063 /* Check for any processor-specific program segment types. */
3064 bed
= get_elf_backend_data (abfd
);
3065 return bed
->elf_backend_section_from_phdr (abfd
, hdr
, hdr_index
, "proc");
3069 /* Return the REL_HDR for SEC, assuming there is only a single one, either
3073 _bfd_elf_single_rel_hdr (asection
*sec
)
3075 if (elf_section_data (sec
)->rel
.hdr
)
3077 BFD_ASSERT (elf_section_data (sec
)->rela
.hdr
== NULL
);
3078 return elf_section_data (sec
)->rel
.hdr
;
3081 return elf_section_data (sec
)->rela
.hdr
;
3085 _bfd_elf_set_reloc_sh_name (bfd
*abfd
,
3086 Elf_Internal_Shdr
*rel_hdr
,
3087 const char *sec_name
,
3090 char *name
= (char *) bfd_alloc (abfd
,
3091 sizeof ".rela" + strlen (sec_name
));
3095 sprintf (name
, "%s%s", use_rela_p
? ".rela" : ".rel", sec_name
);
3097 (unsigned int) _bfd_elf_strtab_add (elf_shstrtab (abfd
), name
,
3099 if (rel_hdr
->sh_name
== (unsigned int) -1)
3105 /* Allocate and initialize a section-header for a new reloc section,
3106 containing relocations against ASECT. It is stored in RELDATA. If
3107 USE_RELA_P is TRUE, we use RELA relocations; otherwise, we use REL
3111 _bfd_elf_init_reloc_shdr (bfd
*abfd
,
3112 struct bfd_elf_section_reloc_data
*reldata
,
3113 const char *sec_name
,
3115 bool delay_st_name_p
)
3117 Elf_Internal_Shdr
*rel_hdr
;
3118 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
3120 BFD_ASSERT (reldata
->hdr
== NULL
);
3121 rel_hdr
= bfd_zalloc (abfd
, sizeof (*rel_hdr
));
3122 reldata
->hdr
= rel_hdr
;
3124 if (delay_st_name_p
)
3125 rel_hdr
->sh_name
= (unsigned int) -1;
3126 else if (!_bfd_elf_set_reloc_sh_name (abfd
, rel_hdr
, sec_name
,
3129 rel_hdr
->sh_type
= use_rela_p
? SHT_RELA
: SHT_REL
;
3130 rel_hdr
->sh_entsize
= (use_rela_p
3131 ? bed
->s
->sizeof_rela
3132 : bed
->s
->sizeof_rel
);
3133 rel_hdr
->sh_addralign
= (bfd_vma
) 1 << bed
->s
->log_file_align
;
3134 rel_hdr
->sh_flags
= 0;
3135 rel_hdr
->sh_addr
= 0;
3136 rel_hdr
->sh_size
= 0;
3137 rel_hdr
->sh_offset
= 0;
3142 /* Return the default section type based on the passed in section flags. */
3145 bfd_elf_get_default_section_type (flagword flags
)
3147 if ((flags
& (SEC_ALLOC
| SEC_IS_COMMON
)) != 0
3148 && (flags
& (SEC_LOAD
| SEC_HAS_CONTENTS
)) == 0)
3150 return SHT_PROGBITS
;
3153 struct fake_section_arg
3155 struct bfd_link_info
*link_info
;
3159 /* Set up an ELF internal section header for a section. */
3162 elf_fake_sections (bfd
*abfd
, asection
*asect
, void *fsarg
)
3164 struct fake_section_arg
*arg
= (struct fake_section_arg
*)fsarg
;
3165 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
3166 struct bfd_elf_section_data
*esd
= elf_section_data (asect
);
3167 Elf_Internal_Shdr
*this_hdr
;
3168 unsigned int sh_type
;
3169 const char *name
= asect
->name
;
3170 bool delay_st_name_p
= false;
3175 /* We already failed; just get out of the bfd_map_over_sections
3180 this_hdr
= &esd
->this_hdr
;
3184 /* ld: compress DWARF debug sections with names: .debug_*. */
3185 if ((arg
->link_info
->compress_debug
& COMPRESS_DEBUG
)
3186 && (asect
->flags
& SEC_DEBUGGING
)
3190 /* Set SEC_ELF_COMPRESS to indicate this section should be
3192 asect
->flags
|= SEC_ELF_COMPRESS
;
3193 /* If this section will be compressed, delay adding section
3194 name to section name section after it is compressed in
3195 _bfd_elf_assign_file_positions_for_non_load. */
3196 delay_st_name_p
= true;
3199 else if ((asect
->flags
& SEC_ELF_RENAME
))
3201 /* objcopy: rename output DWARF debug section. */
3202 if ((abfd
->flags
& (BFD_DECOMPRESS
| BFD_COMPRESS_GABI
)))
3204 /* When we decompress or compress with SHF_COMPRESSED,
3205 convert section name from .zdebug_* to .debug_* if
3209 char *new_name
= convert_zdebug_to_debug (abfd
, name
);
3210 if (new_name
== NULL
)
3218 else if (asect
->compress_status
== COMPRESS_SECTION_DONE
)
3220 /* PR binutils/18087: Compression does not always make a
3221 section smaller. So only rename the section when
3222 compression has actually taken place. If input section
3223 name is .zdebug_*, we should never compress it again. */
3224 char *new_name
= convert_debug_to_zdebug (abfd
, name
);
3225 if (new_name
== NULL
)
3230 BFD_ASSERT (name
[1] != 'z');
3235 if (delay_st_name_p
)
3236 this_hdr
->sh_name
= (unsigned int) -1;
3240 = (unsigned int) _bfd_elf_strtab_add (elf_shstrtab (abfd
),
3242 if (this_hdr
->sh_name
== (unsigned int) -1)
3249 /* Don't clear sh_flags. Assembler may set additional bits. */
3251 if ((asect
->flags
& SEC_ALLOC
) != 0
3252 || asect
->user_set_vma
)
3253 this_hdr
->sh_addr
= asect
->vma
* bfd_octets_per_byte (abfd
, asect
);
3255 this_hdr
->sh_addr
= 0;
3257 this_hdr
->sh_offset
= 0;
3258 this_hdr
->sh_size
= asect
->size
;
3259 this_hdr
->sh_link
= 0;
3260 /* PR 17512: file: 0eb809fe, 8b0535ee. */
3261 if (asect
->alignment_power
>= (sizeof (bfd_vma
) * 8) - 1)
3264 /* xgettext:c-format */
3265 (_("%pB: error: alignment power %d of section `%pA' is too big"),
3266 abfd
, asect
->alignment_power
, asect
);
3270 /* Set sh_addralign to the highest power of two given by alignment
3271 consistent with the section VMA. Linker scripts can force VMA. */
3272 mask
= ((bfd_vma
) 1 << asect
->alignment_power
) | this_hdr
->sh_addr
;
3273 this_hdr
->sh_addralign
= mask
& -mask
;
3274 /* The sh_entsize and sh_info fields may have been set already by
3275 copy_private_section_data. */
3277 this_hdr
->bfd_section
= asect
;
3278 this_hdr
->contents
= NULL
;
3280 /* If the section type is unspecified, we set it based on
3282 if ((asect
->flags
& SEC_GROUP
) != 0)
3283 sh_type
= SHT_GROUP
;
3285 sh_type
= bfd_elf_get_default_section_type (asect
->flags
);
3287 if (this_hdr
->sh_type
== SHT_NULL
)
3288 this_hdr
->sh_type
= sh_type
;
3289 else if (this_hdr
->sh_type
== SHT_NOBITS
3290 && sh_type
== SHT_PROGBITS
3291 && (asect
->flags
& SEC_ALLOC
) != 0)
3293 /* Warn if we are changing a NOBITS section to PROGBITS, but
3294 allow the link to proceed. This can happen when users link
3295 non-bss input sections to bss output sections, or emit data
3296 to a bss output section via a linker script. */
3298 (_("warning: section `%pA' type changed to PROGBITS"), asect
);
3299 this_hdr
->sh_type
= sh_type
;
3302 switch (this_hdr
->sh_type
)
3313 case SHT_INIT_ARRAY
:
3314 case SHT_FINI_ARRAY
:
3315 case SHT_PREINIT_ARRAY
:
3316 this_hdr
->sh_entsize
= bed
->s
->arch_size
/ 8;
3320 this_hdr
->sh_entsize
= bed
->s
->sizeof_hash_entry
;
3324 this_hdr
->sh_entsize
= bed
->s
->sizeof_sym
;
3328 this_hdr
->sh_entsize
= bed
->s
->sizeof_dyn
;
3332 if (get_elf_backend_data (abfd
)->may_use_rela_p
)
3333 this_hdr
->sh_entsize
= bed
->s
->sizeof_rela
;
3337 if (get_elf_backend_data (abfd
)->may_use_rel_p
)
3338 this_hdr
->sh_entsize
= bed
->s
->sizeof_rel
;
3341 case SHT_GNU_versym
:
3342 this_hdr
->sh_entsize
= sizeof (Elf_External_Versym
);
3345 case SHT_GNU_verdef
:
3346 this_hdr
->sh_entsize
= 0;
3347 /* objcopy or strip will copy over sh_info, but may not set
3348 cverdefs. The linker will set cverdefs, but sh_info will be
3350 if (this_hdr
->sh_info
== 0)
3351 this_hdr
->sh_info
= elf_tdata (abfd
)->cverdefs
;
3353 BFD_ASSERT (elf_tdata (abfd
)->cverdefs
== 0
3354 || this_hdr
->sh_info
== elf_tdata (abfd
)->cverdefs
);
3357 case SHT_GNU_verneed
:
3358 this_hdr
->sh_entsize
= 0;
3359 /* objcopy or strip will copy over sh_info, but may not set
3360 cverrefs. The linker will set cverrefs, but sh_info will be
3362 if (this_hdr
->sh_info
== 0)
3363 this_hdr
->sh_info
= elf_tdata (abfd
)->cverrefs
;
3365 BFD_ASSERT (elf_tdata (abfd
)->cverrefs
== 0
3366 || this_hdr
->sh_info
== elf_tdata (abfd
)->cverrefs
);
3370 this_hdr
->sh_entsize
= GRP_ENTRY_SIZE
;
3374 this_hdr
->sh_entsize
= bed
->s
->arch_size
== 64 ? 0 : 4;
3378 if ((asect
->flags
& SEC_ALLOC
) != 0)
3379 this_hdr
->sh_flags
|= SHF_ALLOC
;
3380 if ((asect
->flags
& SEC_READONLY
) == 0)
3381 this_hdr
->sh_flags
|= SHF_WRITE
;
3382 if ((asect
->flags
& SEC_CODE
) != 0)
3383 this_hdr
->sh_flags
|= SHF_EXECINSTR
;
3384 if ((asect
->flags
& SEC_MERGE
) != 0)
3386 this_hdr
->sh_flags
|= SHF_MERGE
;
3387 this_hdr
->sh_entsize
= asect
->entsize
;
3389 if ((asect
->flags
& SEC_STRINGS
) != 0)
3390 this_hdr
->sh_flags
|= SHF_STRINGS
;
3391 if ((asect
->flags
& SEC_GROUP
) == 0 && elf_group_name (asect
) != NULL
)
3392 this_hdr
->sh_flags
|= SHF_GROUP
;
3393 if ((asect
->flags
& SEC_THREAD_LOCAL
) != 0)
3395 this_hdr
->sh_flags
|= SHF_TLS
;
3396 if (asect
->size
== 0
3397 && (asect
->flags
& SEC_HAS_CONTENTS
) == 0)
3399 struct bfd_link_order
*o
= asect
->map_tail
.link_order
;
3401 this_hdr
->sh_size
= 0;
3404 this_hdr
->sh_size
= o
->offset
+ o
->size
;
3405 if (this_hdr
->sh_size
!= 0)
3406 this_hdr
->sh_type
= SHT_NOBITS
;
3410 if ((asect
->flags
& (SEC_GROUP
| SEC_EXCLUDE
)) == SEC_EXCLUDE
)
3411 this_hdr
->sh_flags
|= SHF_EXCLUDE
;
3413 /* If the section has relocs, set up a section header for the
3414 SHT_REL[A] section. If two relocation sections are required for
3415 this section, it is up to the processor-specific back-end to
3416 create the other. */
3417 if ((asect
->flags
& SEC_RELOC
) != 0)
3419 /* When doing a relocatable link, create both REL and RELA sections if
3422 /* Do the normal setup if we wouldn't create any sections here. */
3423 && esd
->rel
.count
+ esd
->rela
.count
> 0
3424 && (bfd_link_relocatable (arg
->link_info
)
3425 || arg
->link_info
->emitrelocations
))
3427 if (esd
->rel
.count
&& esd
->rel
.hdr
== NULL
3428 && !_bfd_elf_init_reloc_shdr (abfd
, &esd
->rel
, name
,
3429 false, delay_st_name_p
))
3434 if (esd
->rela
.count
&& esd
->rela
.hdr
== NULL
3435 && !_bfd_elf_init_reloc_shdr (abfd
, &esd
->rela
, name
,
3436 true, delay_st_name_p
))
3442 else if (!_bfd_elf_init_reloc_shdr (abfd
,
3444 ? &esd
->rela
: &esd
->rel
),
3454 /* Check for processor-specific section types. */
3455 sh_type
= this_hdr
->sh_type
;
3456 if (bed
->elf_backend_fake_sections
3457 && !(*bed
->elf_backend_fake_sections
) (abfd
, this_hdr
, asect
))
3463 if (sh_type
== SHT_NOBITS
&& asect
->size
!= 0)
3465 /* Don't change the header type from NOBITS if we are being
3466 called for objcopy --only-keep-debug. */
3467 this_hdr
->sh_type
= sh_type
;
3471 /* Fill in the contents of a SHT_GROUP section. Called from
3472 _bfd_elf_compute_section_file_positions for gas, objcopy, and
3473 when ELF targets use the generic linker, ld. Called for ld -r
3474 from bfd_elf_final_link. */
3477 bfd_elf_set_group_contents (bfd
*abfd
, asection
*sec
, void *failedptrarg
)
3479 bool *failedptr
= (bool *) failedptrarg
;
3480 asection
*elt
, *first
;
3484 /* Ignore linker created group section. See elfNN_ia64_object_p in
3486 if ((sec
->flags
& (SEC_GROUP
| SEC_LINKER_CREATED
)) != SEC_GROUP
3491 if (elf_section_data (sec
)->this_hdr
.sh_info
== 0)
3493 unsigned long symindx
= 0;
3495 /* elf_group_id will have been set up by objcopy and the
3497 if (elf_group_id (sec
) != NULL
)
3498 symindx
= elf_group_id (sec
)->udata
.i
;
3502 /* If called from the assembler, swap_out_syms will have set up
3504 PR 25699: A corrupt input file could contain bogus group info. */
3505 if (sec
->index
>= elf_num_section_syms (abfd
)
3506 || elf_section_syms (abfd
)[sec
->index
] == NULL
)
3511 symindx
= elf_section_syms (abfd
)[sec
->index
]->udata
.i
;
3513 elf_section_data (sec
)->this_hdr
.sh_info
= symindx
;
3515 else if (elf_section_data (sec
)->this_hdr
.sh_info
== (unsigned int) -2)
3517 /* The ELF backend linker sets sh_info to -2 when the group
3518 signature symbol is global, and thus the index can't be
3519 set until all local symbols are output. */
3521 struct bfd_elf_section_data
*sec_data
;
3522 unsigned long symndx
;
3523 unsigned long extsymoff
;
3524 struct elf_link_hash_entry
*h
;
3526 /* The point of this little dance to the first SHF_GROUP section
3527 then back to the SHT_GROUP section is that this gets us to
3528 the SHT_GROUP in the input object. */
3529 igroup
= elf_sec_group (elf_next_in_group (sec
));
3530 sec_data
= elf_section_data (igroup
);
3531 symndx
= sec_data
->this_hdr
.sh_info
;
3533 if (!elf_bad_symtab (igroup
->owner
))
3535 Elf_Internal_Shdr
*symtab_hdr
;
3537 symtab_hdr
= &elf_tdata (igroup
->owner
)->symtab_hdr
;
3538 extsymoff
= symtab_hdr
->sh_info
;
3540 h
= elf_sym_hashes (igroup
->owner
)[symndx
- extsymoff
];
3541 while (h
->root
.type
== bfd_link_hash_indirect
3542 || h
->root
.type
== bfd_link_hash_warning
)
3543 h
= (struct elf_link_hash_entry
*) h
->root
.u
.i
.link
;
3545 elf_section_data (sec
)->this_hdr
.sh_info
= h
->indx
;
3548 /* The contents won't be allocated for "ld -r" or objcopy. */
3550 if (sec
->contents
== NULL
)
3553 sec
->contents
= (unsigned char *) bfd_alloc (abfd
, sec
->size
);
3555 /* Arrange for the section to be written out. */
3556 elf_section_data (sec
)->this_hdr
.contents
= sec
->contents
;
3557 if (sec
->contents
== NULL
)
3564 loc
= sec
->contents
+ sec
->size
;
3566 /* Get the pointer to the first section in the group that gas
3567 squirreled away here. objcopy arranges for this to be set to the
3568 start of the input section group. */
3569 first
= elt
= elf_next_in_group (sec
);
3571 /* First element is a flag word. Rest of section is elf section
3572 indices for all the sections of the group. Write them backwards
3573 just to keep the group in the same order as given in .section
3574 directives, not that it matters. */
3581 s
= s
->output_section
;
3583 && !bfd_is_abs_section (s
))
3585 struct bfd_elf_section_data
*elf_sec
= elf_section_data (s
);
3586 struct bfd_elf_section_data
*input_elf_sec
= elf_section_data (elt
);
3588 if (elf_sec
->rel
.hdr
!= NULL
3590 || (input_elf_sec
->rel
.hdr
!= NULL
3591 && input_elf_sec
->rel
.hdr
->sh_flags
& SHF_GROUP
) != 0))
3593 elf_sec
->rel
.hdr
->sh_flags
|= SHF_GROUP
;
3595 H_PUT_32 (abfd
, elf_sec
->rel
.idx
, loc
);
3597 if (elf_sec
->rela
.hdr
!= NULL
3599 || (input_elf_sec
->rela
.hdr
!= NULL
3600 && input_elf_sec
->rela
.hdr
->sh_flags
& SHF_GROUP
) != 0))
3602 elf_sec
->rela
.hdr
->sh_flags
|= SHF_GROUP
;
3604 H_PUT_32 (abfd
, elf_sec
->rela
.idx
, loc
);
3607 H_PUT_32 (abfd
, elf_sec
->this_idx
, loc
);
3609 elt
= elf_next_in_group (elt
);
3615 BFD_ASSERT (loc
== sec
->contents
);
3617 H_PUT_32 (abfd
, sec
->flags
& SEC_LINK_ONCE
? GRP_COMDAT
: 0, loc
);
3620 /* Given NAME, the name of a relocation section stripped of its
3621 .rel/.rela prefix, return the section in ABFD to which the
3622 relocations apply. */
3625 _bfd_elf_plt_get_reloc_section (bfd
*abfd
, const char *name
)
3627 /* If a target needs .got.plt section, relocations in rela.plt/rel.plt
3628 section likely apply to .got.plt or .got section. */
3629 if (get_elf_backend_data (abfd
)->want_got_plt
3630 && strcmp (name
, ".plt") == 0)
3635 sec
= bfd_get_section_by_name (abfd
, name
);
3641 return bfd_get_section_by_name (abfd
, name
);
3644 /* Return the section to which RELOC_SEC applies. */
3647 elf_get_reloc_section (asection
*reloc_sec
)
3652 const struct elf_backend_data
*bed
;
3654 type
= elf_section_data (reloc_sec
)->this_hdr
.sh_type
;
3655 if (type
!= SHT_REL
&& type
!= SHT_RELA
)
3658 /* We look up the section the relocs apply to by name. */
3659 name
= reloc_sec
->name
;
3660 if (!startswith (name
, ".rel"))
3663 if (type
== SHT_RELA
&& *name
++ != 'a')
3666 abfd
= reloc_sec
->owner
;
3667 bed
= get_elf_backend_data (abfd
);
3668 return bed
->get_reloc_section (abfd
, name
);
3671 /* Assign all ELF section numbers. The dummy first section is handled here
3672 too. The link/info pointers for the standard section types are filled
3673 in here too, while we're at it. LINK_INFO will be 0 when arriving
3674 here for objcopy, and when using the generic ELF linker. */
3677 assign_section_numbers (bfd
*abfd
, struct bfd_link_info
*link_info
)
3679 struct elf_obj_tdata
*t
= elf_tdata (abfd
);
3681 unsigned int section_number
;
3682 Elf_Internal_Shdr
**i_shdrp
;
3683 struct bfd_elf_section_data
*d
;
3689 _bfd_elf_strtab_clear_all_refs (elf_shstrtab (abfd
));
3691 /* SHT_GROUP sections are in relocatable files only. */
3692 if (link_info
== NULL
|| !link_info
->resolve_section_groups
)
3694 size_t reloc_count
= 0;
3696 /* Put SHT_GROUP sections first. */
3697 for (sec
= abfd
->sections
; sec
!= NULL
; sec
= sec
->next
)
3699 d
= elf_section_data (sec
);
3701 if (d
->this_hdr
.sh_type
== SHT_GROUP
)
3703 if (sec
->flags
& SEC_LINKER_CREATED
)
3705 /* Remove the linker created SHT_GROUP sections. */
3706 bfd_section_list_remove (abfd
, sec
);
3707 abfd
->section_count
--;
3710 d
->this_idx
= section_number
++;
3713 /* Count relocations. */
3714 reloc_count
+= sec
->reloc_count
;
3717 /* Clear HAS_RELOC if there are no relocations. */
3718 if (reloc_count
== 0)
3719 abfd
->flags
&= ~HAS_RELOC
;
3722 for (sec
= abfd
->sections
; sec
; sec
= sec
->next
)
3724 d
= elf_section_data (sec
);
3726 if (d
->this_hdr
.sh_type
!= SHT_GROUP
)
3727 d
->this_idx
= section_number
++;
3728 if (d
->this_hdr
.sh_name
!= (unsigned int) -1)
3729 _bfd_elf_strtab_addref (elf_shstrtab (abfd
), d
->this_hdr
.sh_name
);
3732 d
->rel
.idx
= section_number
++;
3733 if (d
->rel
.hdr
->sh_name
!= (unsigned int) -1)
3734 _bfd_elf_strtab_addref (elf_shstrtab (abfd
), d
->rel
.hdr
->sh_name
);
3741 d
->rela
.idx
= section_number
++;
3742 if (d
->rela
.hdr
->sh_name
!= (unsigned int) -1)
3743 _bfd_elf_strtab_addref (elf_shstrtab (abfd
), d
->rela
.hdr
->sh_name
);
3749 need_symtab
= (bfd_get_symcount (abfd
) > 0
3750 || (link_info
== NULL
3751 && ((abfd
->flags
& (EXEC_P
| DYNAMIC
| HAS_RELOC
))
3755 elf_onesymtab (abfd
) = section_number
++;
3756 _bfd_elf_strtab_addref (elf_shstrtab (abfd
), t
->symtab_hdr
.sh_name
);
3757 if (section_number
> ((SHN_LORESERVE
- 2) & 0xFFFF))
3759 elf_section_list
*entry
;
3761 BFD_ASSERT (elf_symtab_shndx_list (abfd
) == NULL
);
3763 entry
= bfd_zalloc (abfd
, sizeof (*entry
));
3764 entry
->ndx
= section_number
++;
3765 elf_symtab_shndx_list (abfd
) = entry
;
3767 = (unsigned int) _bfd_elf_strtab_add (elf_shstrtab (abfd
),
3768 ".symtab_shndx", false);
3769 if (entry
->hdr
.sh_name
== (unsigned int) -1)
3772 elf_strtab_sec (abfd
) = section_number
++;
3773 _bfd_elf_strtab_addref (elf_shstrtab (abfd
), t
->strtab_hdr
.sh_name
);
3776 elf_shstrtab_sec (abfd
) = section_number
++;
3777 _bfd_elf_strtab_addref (elf_shstrtab (abfd
), t
->shstrtab_hdr
.sh_name
);
3778 elf_elfheader (abfd
)->e_shstrndx
= elf_shstrtab_sec (abfd
);
3780 if (section_number
>= SHN_LORESERVE
)
3782 /* xgettext:c-format */
3783 _bfd_error_handler (_("%pB: too many sections: %u"),
3784 abfd
, section_number
);
3788 elf_numsections (abfd
) = section_number
;
3789 elf_elfheader (abfd
)->e_shnum
= section_number
;
3791 /* Set up the list of section header pointers, in agreement with the
3793 amt
= section_number
* sizeof (Elf_Internal_Shdr
*);
3794 i_shdrp
= (Elf_Internal_Shdr
**) bfd_zalloc (abfd
, amt
);
3795 if (i_shdrp
== NULL
)
3798 i_shdrp
[0] = (Elf_Internal_Shdr
*) bfd_zalloc (abfd
,
3799 sizeof (Elf_Internal_Shdr
));
3800 if (i_shdrp
[0] == NULL
)
3802 bfd_release (abfd
, i_shdrp
);
3806 elf_elfsections (abfd
) = i_shdrp
;
3808 i_shdrp
[elf_shstrtab_sec (abfd
)] = &t
->shstrtab_hdr
;
3811 i_shdrp
[elf_onesymtab (abfd
)] = &t
->symtab_hdr
;
3812 if (elf_numsections (abfd
) > (SHN_LORESERVE
& 0xFFFF))
3814 elf_section_list
* entry
= elf_symtab_shndx_list (abfd
);
3815 BFD_ASSERT (entry
!= NULL
);
3816 i_shdrp
[entry
->ndx
] = & entry
->hdr
;
3817 entry
->hdr
.sh_link
= elf_onesymtab (abfd
);
3819 i_shdrp
[elf_strtab_sec (abfd
)] = &t
->strtab_hdr
;
3820 t
->symtab_hdr
.sh_link
= elf_strtab_sec (abfd
);
3823 for (sec
= abfd
->sections
; sec
; sec
= sec
->next
)
3827 d
= elf_section_data (sec
);
3829 i_shdrp
[d
->this_idx
] = &d
->this_hdr
;
3830 if (d
->rel
.idx
!= 0)
3831 i_shdrp
[d
->rel
.idx
] = d
->rel
.hdr
;
3832 if (d
->rela
.idx
!= 0)
3833 i_shdrp
[d
->rela
.idx
] = d
->rela
.hdr
;
3835 /* Fill in the sh_link and sh_info fields while we're at it. */
3837 /* sh_link of a reloc section is the section index of the symbol
3838 table. sh_info is the section index of the section to which
3839 the relocation entries apply. */
3840 if (d
->rel
.idx
!= 0)
3842 d
->rel
.hdr
->sh_link
= elf_onesymtab (abfd
);
3843 d
->rel
.hdr
->sh_info
= d
->this_idx
;
3844 d
->rel
.hdr
->sh_flags
|= SHF_INFO_LINK
;
3846 if (d
->rela
.idx
!= 0)
3848 d
->rela
.hdr
->sh_link
= elf_onesymtab (abfd
);
3849 d
->rela
.hdr
->sh_info
= d
->this_idx
;
3850 d
->rela
.hdr
->sh_flags
|= SHF_INFO_LINK
;
3853 /* We need to set up sh_link for SHF_LINK_ORDER. */
3854 if ((d
->this_hdr
.sh_flags
& SHF_LINK_ORDER
) != 0)
3856 s
= elf_linked_to_section (sec
);
3857 /* We can now have a NULL linked section pointer.
3858 This happens when the sh_link field is 0, which is done
3859 when a linked to section is discarded but the linking
3860 section has been retained for some reason. */
3863 /* Check discarded linkonce section. */
3864 if (discarded_section (s
))
3868 /* xgettext:c-format */
3869 (_("%pB: sh_link of section `%pA' points to"
3870 " discarded section `%pA' of `%pB'"),
3871 abfd
, d
->this_hdr
.bfd_section
, s
, s
->owner
);
3872 /* Point to the kept section if it has the same
3873 size as the discarded one. */
3874 kept
= _bfd_elf_check_kept_section (s
, link_info
);
3877 bfd_set_error (bfd_error_bad_value
);
3882 /* Handle objcopy. */
3883 else if (s
->output_section
== NULL
)
3886 /* xgettext:c-format */
3887 (_("%pB: sh_link of section `%pA' points to"
3888 " removed section `%pA' of `%pB'"),
3889 abfd
, d
->this_hdr
.bfd_section
, s
, s
->owner
);
3890 bfd_set_error (bfd_error_bad_value
);
3893 s
= s
->output_section
;
3894 d
->this_hdr
.sh_link
= elf_section_data (s
)->this_idx
;
3898 switch (d
->this_hdr
.sh_type
)
3902 /* A reloc section which we are treating as a normal BFD
3903 section. sh_link is the section index of the symbol
3904 table. sh_info is the section index of the section to
3905 which the relocation entries apply. We assume that an
3906 allocated reloc section uses the dynamic symbol table
3907 if there is one. Otherwise we guess the normal symbol
3908 table. FIXME: How can we be sure? */
3909 if (d
->this_hdr
.sh_link
== 0 && (sec
->flags
& SEC_ALLOC
) != 0)
3911 s
= bfd_get_section_by_name (abfd
, ".dynsym");
3913 d
->this_hdr
.sh_link
= elf_section_data (s
)->this_idx
;
3915 if (d
->this_hdr
.sh_link
== 0)
3916 d
->this_hdr
.sh_link
= elf_onesymtab (abfd
);
3918 s
= elf_get_reloc_section (sec
);
3921 d
->this_hdr
.sh_info
= elf_section_data (s
)->this_idx
;
3922 d
->this_hdr
.sh_flags
|= SHF_INFO_LINK
;
3927 /* We assume that a section named .stab*str is a stabs
3928 string section. We look for a section with the same name
3929 but without the trailing ``str'', and set its sh_link
3930 field to point to this section. */
3931 if (startswith (sec
->name
, ".stab")
3932 && strcmp (sec
->name
+ strlen (sec
->name
) - 3, "str") == 0)
3937 len
= strlen (sec
->name
);
3938 alc
= (char *) bfd_malloc (len
- 2);
3941 memcpy (alc
, sec
->name
, len
- 3);
3942 alc
[len
- 3] = '\0';
3943 s
= bfd_get_section_by_name (abfd
, alc
);
3947 elf_section_data (s
)->this_hdr
.sh_link
= d
->this_idx
;
3949 /* This is a .stab section. */
3950 elf_section_data (s
)->this_hdr
.sh_entsize
= 12;
3957 case SHT_GNU_verneed
:
3958 case SHT_GNU_verdef
:
3959 /* sh_link is the section header index of the string table
3960 used for the dynamic entries, or the symbol table, or the
3962 s
= bfd_get_section_by_name (abfd
, ".dynstr");
3964 d
->this_hdr
.sh_link
= elf_section_data (s
)->this_idx
;
3967 case SHT_GNU_LIBLIST
:
3968 /* sh_link is the section header index of the prelink library
3969 list used for the dynamic entries, or the symbol table, or
3970 the version strings. */
3971 s
= bfd_get_section_by_name (abfd
, ((sec
->flags
& SEC_ALLOC
)
3972 ? ".dynstr" : ".gnu.libstr"));
3974 d
->this_hdr
.sh_link
= elf_section_data (s
)->this_idx
;
3979 case SHT_GNU_versym
:
3980 /* sh_link is the section header index of the symbol table
3981 this hash table or version table is for. */
3982 s
= bfd_get_section_by_name (abfd
, ".dynsym");
3984 d
->this_hdr
.sh_link
= elf_section_data (s
)->this_idx
;
3988 d
->this_hdr
.sh_link
= elf_onesymtab (abfd
);
3992 /* Delay setting sh_name to _bfd_elf_write_object_contents so that
3993 _bfd_elf_assign_file_positions_for_non_load can convert DWARF
3994 debug section name from .debug_* to .zdebug_* if needed. */
4000 sym_is_global (bfd
*abfd
, asymbol
*sym
)
4002 /* If the backend has a special mapping, use it. */
4003 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
4004 if (bed
->elf_backend_sym_is_global
)
4005 return (*bed
->elf_backend_sym_is_global
) (abfd
, sym
);
4007 return ((sym
->flags
& (BSF_GLOBAL
| BSF_WEAK
| BSF_GNU_UNIQUE
)) != 0
4008 || bfd_is_und_section (bfd_asymbol_section (sym
))
4009 || bfd_is_com_section (bfd_asymbol_section (sym
)));
4012 /* Filter global symbols of ABFD to include in the import library. All
4013 SYMCOUNT symbols of ABFD can be examined from their pointers in
4014 SYMS. Pointers of symbols to keep should be stored contiguously at
4015 the beginning of that array.
4017 Returns the number of symbols to keep. */
4020 _bfd_elf_filter_global_symbols (bfd
*abfd
, struct bfd_link_info
*info
,
4021 asymbol
**syms
, long symcount
)
4023 long src_count
, dst_count
= 0;
4025 for (src_count
= 0; src_count
< symcount
; src_count
++)
4027 asymbol
*sym
= syms
[src_count
];
4028 char *name
= (char *) bfd_asymbol_name (sym
);
4029 struct bfd_link_hash_entry
*h
;
4031 if (!sym_is_global (abfd
, sym
))
4034 h
= bfd_link_hash_lookup (info
->hash
, name
, false, false, false);
4037 if (h
->type
!= bfd_link_hash_defined
&& h
->type
!= bfd_link_hash_defweak
)
4039 if (h
->linker_def
|| h
->ldscript_def
)
4042 syms
[dst_count
++] = sym
;
4045 syms
[dst_count
] = NULL
;
4050 /* Don't output section symbols for sections that are not going to be
4051 output, that are duplicates or there is no BFD section. */
4054 ignore_section_sym (bfd
*abfd
, asymbol
*sym
)
4056 elf_symbol_type
*type_ptr
;
4061 if ((sym
->flags
& BSF_SECTION_SYM
) == 0)
4064 /* Ignore the section symbol if it isn't used. */
4065 if ((sym
->flags
& BSF_SECTION_SYM_USED
) == 0)
4068 if (sym
->section
== NULL
)
4071 type_ptr
= elf_symbol_from (sym
);
4072 return ((type_ptr
!= NULL
4073 && type_ptr
->internal_elf_sym
.st_shndx
!= 0
4074 && bfd_is_abs_section (sym
->section
))
4075 || !(sym
->section
->owner
== abfd
4076 || (sym
->section
->output_section
!= NULL
4077 && sym
->section
->output_section
->owner
== abfd
4078 && sym
->section
->output_offset
== 0)
4079 || bfd_is_abs_section (sym
->section
)));
4082 /* Map symbol from it's internal number to the external number, moving
4083 all local symbols to be at the head of the list. */
4086 elf_map_symbols (bfd
*abfd
, unsigned int *pnum_locals
)
4088 unsigned int symcount
= bfd_get_symcount (abfd
);
4089 asymbol
**syms
= bfd_get_outsymbols (abfd
);
4090 asymbol
**sect_syms
;
4091 unsigned int num_locals
= 0;
4092 unsigned int num_globals
= 0;
4093 unsigned int num_locals2
= 0;
4094 unsigned int num_globals2
= 0;
4095 unsigned int max_index
= 0;
4102 fprintf (stderr
, "elf_map_symbols\n");
4106 for (asect
= abfd
->sections
; asect
; asect
= asect
->next
)
4108 if (max_index
< asect
->index
)
4109 max_index
= asect
->index
;
4113 amt
= max_index
* sizeof (asymbol
*);
4114 sect_syms
= (asymbol
**) bfd_zalloc (abfd
, amt
);
4115 if (sect_syms
== NULL
)
4117 elf_section_syms (abfd
) = sect_syms
;
4118 elf_num_section_syms (abfd
) = max_index
;
4120 /* Init sect_syms entries for any section symbols we have already
4121 decided to output. */
4122 for (idx
= 0; idx
< symcount
; idx
++)
4124 asymbol
*sym
= syms
[idx
];
4126 if ((sym
->flags
& BSF_SECTION_SYM
) != 0
4128 && !ignore_section_sym (abfd
, sym
)
4129 && !bfd_is_abs_section (sym
->section
))
4131 asection
*sec
= sym
->section
;
4133 if (sec
->owner
!= abfd
)
4134 sec
= sec
->output_section
;
4136 sect_syms
[sec
->index
] = syms
[idx
];
4140 /* Classify all of the symbols. */
4141 for (idx
= 0; idx
< symcount
; idx
++)
4143 if (sym_is_global (abfd
, syms
[idx
]))
4145 else if (!ignore_section_sym (abfd
, syms
[idx
]))
4149 /* We will be adding a section symbol for each normal BFD section. Most
4150 sections will already have a section symbol in outsymbols, but
4151 eg. SHT_GROUP sections will not, and we need the section symbol mapped
4152 at least in that case. */
4153 for (asect
= abfd
->sections
; asect
; asect
= asect
->next
)
4155 asymbol
*sym
= asect
->symbol
;
4156 /* Don't include ignored section symbols. */
4157 if (!ignore_section_sym (abfd
, sym
)
4158 && sect_syms
[asect
->index
] == NULL
)
4160 if (!sym_is_global (abfd
, asect
->symbol
))
4167 /* Now sort the symbols so the local symbols are first. */
4168 amt
= (num_locals
+ num_globals
) * sizeof (asymbol
*);
4169 new_syms
= (asymbol
**) bfd_alloc (abfd
, amt
);
4170 if (new_syms
== NULL
)
4173 for (idx
= 0; idx
< symcount
; idx
++)
4175 asymbol
*sym
= syms
[idx
];
4178 if (sym_is_global (abfd
, sym
))
4179 i
= num_locals
+ num_globals2
++;
4180 /* Don't include ignored section symbols. */
4181 else if (!ignore_section_sym (abfd
, sym
))
4186 sym
->udata
.i
= i
+ 1;
4188 for (asect
= abfd
->sections
; asect
; asect
= asect
->next
)
4190 asymbol
*sym
= asect
->symbol
;
4191 if (!ignore_section_sym (abfd
, sym
)
4192 && sect_syms
[asect
->index
] == NULL
)
4196 sect_syms
[asect
->index
] = sym
;
4197 if (!sym_is_global (abfd
, sym
))
4200 i
= num_locals
+ num_globals2
++;
4202 sym
->udata
.i
= i
+ 1;
4206 bfd_set_symtab (abfd
, new_syms
, num_locals
+ num_globals
);
4208 *pnum_locals
= num_locals
;
4212 /* Align to the maximum file alignment that could be required for any
4213 ELF data structure. */
4215 static inline file_ptr
4216 align_file_position (file_ptr off
, int align
)
4218 return (off
+ align
- 1) & ~(align
- 1);
4221 /* Assign a file position to a section, optionally aligning to the
4222 required section alignment. */
4225 _bfd_elf_assign_file_position_for_section (Elf_Internal_Shdr
*i_shdrp
,
4229 if (align
&& i_shdrp
->sh_addralign
> 1)
4230 offset
= BFD_ALIGN (offset
, i_shdrp
->sh_addralign
);
4231 i_shdrp
->sh_offset
= offset
;
4232 if (i_shdrp
->bfd_section
!= NULL
)
4233 i_shdrp
->bfd_section
->filepos
= offset
;
4234 if (i_shdrp
->sh_type
!= SHT_NOBITS
)
4235 offset
+= i_shdrp
->sh_size
;
4239 /* Compute the file positions we are going to put the sections at, and
4240 otherwise prepare to begin writing out the ELF file. If LINK_INFO
4241 is not NULL, this is being called by the ELF backend linker. */
4244 _bfd_elf_compute_section_file_positions (bfd
*abfd
,
4245 struct bfd_link_info
*link_info
)
4247 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
4248 struct fake_section_arg fsargs
;
4250 struct elf_strtab_hash
*strtab
= NULL
;
4251 Elf_Internal_Shdr
*shstrtab_hdr
;
4254 if (abfd
->output_has_begun
)
4257 /* Do any elf backend specific processing first. */
4258 if (bed
->elf_backend_begin_write_processing
)
4259 (*bed
->elf_backend_begin_write_processing
) (abfd
, link_info
);
4261 if (!(*bed
->elf_backend_init_file_header
) (abfd
, link_info
))
4264 fsargs
.failed
= false;
4265 fsargs
.link_info
= link_info
;
4266 bfd_map_over_sections (abfd
, elf_fake_sections
, &fsargs
);
4270 if (!assign_section_numbers (abfd
, link_info
))
4273 /* The backend linker builds symbol table information itself. */
4274 need_symtab
= (link_info
== NULL
4275 && (bfd_get_symcount (abfd
) > 0
4276 || ((abfd
->flags
& (EXEC_P
| DYNAMIC
| HAS_RELOC
))
4280 /* Non-zero if doing a relocatable link. */
4281 int relocatable_p
= ! (abfd
->flags
& (EXEC_P
| DYNAMIC
));
4283 if (! swap_out_syms (abfd
, &strtab
, relocatable_p
, link_info
))
4288 if (link_info
== NULL
)
4290 bfd_map_over_sections (abfd
, bfd_elf_set_group_contents
, &failed
);
4295 shstrtab_hdr
= &elf_tdata (abfd
)->shstrtab_hdr
;
4296 /* sh_name was set in init_file_header. */
4297 shstrtab_hdr
->sh_type
= SHT_STRTAB
;
4298 shstrtab_hdr
->sh_flags
= bed
->elf_strtab_flags
;
4299 shstrtab_hdr
->sh_addr
= 0;
4300 /* sh_size is set in _bfd_elf_assign_file_positions_for_non_load. */
4301 shstrtab_hdr
->sh_entsize
= 0;
4302 shstrtab_hdr
->sh_link
= 0;
4303 shstrtab_hdr
->sh_info
= 0;
4304 /* sh_offset is set in _bfd_elf_assign_file_positions_for_non_load. */
4305 shstrtab_hdr
->sh_addralign
= 1;
4307 if (!assign_file_positions_except_relocs (abfd
, link_info
))
4313 Elf_Internal_Shdr
*hdr
;
4315 off
= elf_next_file_pos (abfd
);
4317 hdr
= & elf_symtab_hdr (abfd
);
4318 off
= _bfd_elf_assign_file_position_for_section (hdr
, off
, true);
4320 if (elf_symtab_shndx_list (abfd
) != NULL
)
4322 hdr
= & elf_symtab_shndx_list (abfd
)->hdr
;
4323 if (hdr
->sh_size
!= 0)
4324 off
= _bfd_elf_assign_file_position_for_section (hdr
, off
, true);
4325 /* FIXME: What about other symtab_shndx sections in the list ? */
4328 hdr
= &elf_tdata (abfd
)->strtab_hdr
;
4329 off
= _bfd_elf_assign_file_position_for_section (hdr
, off
, true);
4331 elf_next_file_pos (abfd
) = off
;
4333 /* Now that we know where the .strtab section goes, write it
4335 if (bfd_seek (abfd
, hdr
->sh_offset
, SEEK_SET
) != 0
4336 || ! _bfd_elf_strtab_emit (abfd
, strtab
))
4338 _bfd_elf_strtab_free (strtab
);
4341 abfd
->output_has_begun
= true;
4346 /* Retrieve .eh_frame_hdr. Prior to size_dynamic_sections the
4347 function effectively returns whether --eh-frame-hdr is given on the
4348 command line. After size_dynamic_sections the result reflects
4349 whether .eh_frame_hdr will actually be output (sizing isn't done
4350 until ldemul_after_allocation). */
4353 elf_eh_frame_hdr (const struct bfd_link_info
*info
)
4355 if (info
!= NULL
&& is_elf_hash_table (info
->hash
))
4356 return elf_hash_table (info
)->eh_info
.hdr_sec
;
4360 /* Make an initial estimate of the size of the program header. If we
4361 get the number wrong here, we'll redo section placement. */
4363 static bfd_size_type
4364 get_program_header_size (bfd
*abfd
, struct bfd_link_info
*info
)
4368 const struct elf_backend_data
*bed
;
4370 /* Assume we will need exactly two PT_LOAD segments: one for text
4371 and one for data. */
4374 s
= bfd_get_section_by_name (abfd
, ".interp");
4375 if (s
!= NULL
&& (s
->flags
& SEC_LOAD
) != 0 && s
->size
!= 0)
4377 /* If we have a loadable interpreter section, we need a
4378 PT_INTERP segment. In this case, assume we also need a
4379 PT_PHDR segment, although that may not be true for all
4384 if (bfd_get_section_by_name (abfd
, ".dynamic") != NULL
)
4386 /* We need a PT_DYNAMIC segment. */
4390 if (info
!= NULL
&& info
->relro
)
4392 /* We need a PT_GNU_RELRO segment. */
4396 if (elf_eh_frame_hdr (info
))
4398 /* We need a PT_GNU_EH_FRAME segment. */
4402 if (elf_stack_flags (abfd
))
4404 /* We need a PT_GNU_STACK segment. */
4408 s
= bfd_get_section_by_name (abfd
,
4409 NOTE_GNU_PROPERTY_SECTION_NAME
);
4410 if (s
!= NULL
&& s
->size
!= 0)
4412 /* We need a PT_GNU_PROPERTY segment. */
4416 for (s
= abfd
->sections
; s
!= NULL
; s
= s
->next
)
4418 if ((s
->flags
& SEC_LOAD
) != 0
4419 && elf_section_type (s
) == SHT_NOTE
)
4421 unsigned int alignment_power
;
4422 /* We need a PT_NOTE segment. */
4424 /* Try to create just one PT_NOTE segment for all adjacent
4425 loadable SHT_NOTE sections. gABI requires that within a
4426 PT_NOTE segment (and also inside of each SHT_NOTE section)
4427 each note should have the same alignment. So we check
4428 whether the sections are correctly aligned. */
4429 alignment_power
= s
->alignment_power
;
4430 while (s
->next
!= NULL
4431 && s
->next
->alignment_power
== alignment_power
4432 && (s
->next
->flags
& SEC_LOAD
) != 0
4433 && elf_section_type (s
->next
) == SHT_NOTE
)
4438 for (s
= abfd
->sections
; s
!= NULL
; s
= s
->next
)
4440 if (s
->flags
& SEC_THREAD_LOCAL
)
4442 /* We need a PT_TLS segment. */
4448 bed
= get_elf_backend_data (abfd
);
4450 if ((abfd
->flags
& D_PAGED
) != 0
4451 && (elf_tdata (abfd
)->has_gnu_osabi
& elf_gnu_osabi_mbind
) != 0)
4453 /* Add a PT_GNU_MBIND segment for each mbind section. */
4454 bfd_vma commonpagesize
;
4455 unsigned int page_align_power
;
4458 commonpagesize
= info
->commonpagesize
;
4460 commonpagesize
= bed
->commonpagesize
;
4461 page_align_power
= bfd_log2 (commonpagesize
);
4462 for (s
= abfd
->sections
; s
!= NULL
; s
= s
->next
)
4463 if (elf_section_flags (s
) & SHF_GNU_MBIND
)
4465 if (elf_section_data (s
)->this_hdr
.sh_info
> PT_GNU_MBIND_NUM
)
4468 /* xgettext:c-format */
4469 (_("%pB: GNU_MBIND section `%pA' has invalid "
4470 "sh_info field: %d"),
4471 abfd
, s
, elf_section_data (s
)->this_hdr
.sh_info
);
4474 /* Align mbind section to page size. */
4475 if (s
->alignment_power
< page_align_power
)
4476 s
->alignment_power
= page_align_power
;
4481 /* Let the backend count up any program headers it might need. */
4482 if (bed
->elf_backend_additional_program_headers
)
4486 a
= (*bed
->elf_backend_additional_program_headers
) (abfd
, info
);
4492 return segs
* bed
->s
->sizeof_phdr
;
4495 /* Find the segment that contains the output_section of section. */
4498 _bfd_elf_find_segment_containing_section (bfd
* abfd
, asection
* section
)
4500 struct elf_segment_map
*m
;
4501 Elf_Internal_Phdr
*p
;
4503 for (m
= elf_seg_map (abfd
), p
= elf_tdata (abfd
)->phdr
;
4509 for (i
= m
->count
- 1; i
>= 0; i
--)
4510 if (m
->sections
[i
] == section
)
4517 /* Create a mapping from a set of sections to a program segment. */
4519 static struct elf_segment_map
*
4520 make_mapping (bfd
*abfd
,
4521 asection
**sections
,
4526 struct elf_segment_map
*m
;
4531 amt
= sizeof (struct elf_segment_map
) - sizeof (asection
*);
4532 amt
+= (to
- from
) * sizeof (asection
*);
4533 m
= (struct elf_segment_map
*) bfd_zalloc (abfd
, amt
);
4537 m
->p_type
= PT_LOAD
;
4538 for (i
= from
, hdrpp
= sections
+ from
; i
< to
; i
++, hdrpp
++)
4539 m
->sections
[i
- from
] = *hdrpp
;
4540 m
->count
= to
- from
;
4542 if (from
== 0 && phdr
)
4544 /* Include the headers in the first PT_LOAD segment. */
4545 m
->includes_filehdr
= 1;
4546 m
->includes_phdrs
= 1;
4552 /* Create the PT_DYNAMIC segment, which includes DYNSEC. Returns NULL
4555 struct elf_segment_map
*
4556 _bfd_elf_make_dynamic_segment (bfd
*abfd
, asection
*dynsec
)
4558 struct elf_segment_map
*m
;
4560 m
= (struct elf_segment_map
*) bfd_zalloc (abfd
,
4561 sizeof (struct elf_segment_map
));
4565 m
->p_type
= PT_DYNAMIC
;
4567 m
->sections
[0] = dynsec
;
4572 /* Possibly add or remove segments from the segment map. */
4575 elf_modify_segment_map (bfd
*abfd
,
4576 struct bfd_link_info
*info
,
4577 bool remove_empty_load
)
4579 struct elf_segment_map
**m
;
4580 const struct elf_backend_data
*bed
;
4582 /* The placement algorithm assumes that non allocated sections are
4583 not in PT_LOAD segments. We ensure this here by removing such
4584 sections from the segment map. We also remove excluded
4585 sections. Finally, any PT_LOAD segment without sections is
4587 m
= &elf_seg_map (abfd
);
4590 unsigned int i
, new_count
;
4592 for (new_count
= 0, i
= 0; i
< (*m
)->count
; i
++)
4594 if (((*m
)->sections
[i
]->flags
& SEC_EXCLUDE
) == 0
4595 && (((*m
)->sections
[i
]->flags
& SEC_ALLOC
) != 0
4596 || (*m
)->p_type
!= PT_LOAD
))
4598 (*m
)->sections
[new_count
] = (*m
)->sections
[i
];
4602 (*m
)->count
= new_count
;
4604 if (remove_empty_load
4605 && (*m
)->p_type
== PT_LOAD
4607 && !(*m
)->includes_phdrs
)
4613 bed
= get_elf_backend_data (abfd
);
4614 if (bed
->elf_backend_modify_segment_map
!= NULL
)
4616 if (!(*bed
->elf_backend_modify_segment_map
) (abfd
, info
))
4623 #define IS_TBSS(s) \
4624 ((s->flags & (SEC_THREAD_LOCAL | SEC_LOAD)) == SEC_THREAD_LOCAL)
4626 /* Set up a mapping from BFD sections to program segments. Update
4627 NEED_LAYOUT if the section layout is changed. */
4630 _bfd_elf_map_sections_to_segments (bfd
*abfd
,
4631 struct bfd_link_info
*info
,
4635 struct elf_segment_map
*m
;
4636 asection
**sections
= NULL
;
4637 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
4640 no_user_phdrs
= elf_seg_map (abfd
) == NULL
;
4644 info
->user_phdrs
= !no_user_phdrs
;
4646 /* Size the relative relocations if DT_RELR is enabled. */
4647 if (info
->enable_dt_relr
4648 && need_layout
!= NULL
4649 && bed
->size_relative_relocs
4650 && !bed
->size_relative_relocs (info
, need_layout
))
4651 info
->callbacks
->einfo
4652 (_("%F%P: failed to size relative relocations\n"));
4655 if (no_user_phdrs
&& bfd_count_sections (abfd
) != 0)
4659 struct elf_segment_map
*mfirst
;
4660 struct elf_segment_map
**pm
;
4663 unsigned int hdr_index
;
4664 bfd_vma maxpagesize
;
4666 bool phdr_in_segment
;
4669 unsigned int tls_count
= 0;
4670 asection
*first_tls
= NULL
;
4671 asection
*first_mbind
= NULL
;
4672 asection
*dynsec
, *eh_frame_hdr
;
4674 bfd_vma addr_mask
, wrap_to
= 0; /* Bytes. */
4675 bfd_size_type phdr_size
; /* Octets/bytes. */
4676 unsigned int opb
= bfd_octets_per_byte (abfd
, NULL
);
4678 /* Select the allocated sections, and sort them. */
4680 amt
= bfd_count_sections (abfd
) * sizeof (asection
*);
4681 sections
= (asection
**) bfd_malloc (amt
);
4682 if (sections
== NULL
)
4685 /* Calculate top address, avoiding undefined behaviour of shift
4686 left operator when shift count is equal to size of type
4688 addr_mask
= ((bfd_vma
) 1 << (bfd_arch_bits_per_address (abfd
) - 1)) - 1;
4689 addr_mask
= (addr_mask
<< 1) + 1;
4692 for (s
= abfd
->sections
; s
!= NULL
; s
= s
->next
)
4694 if ((s
->flags
& SEC_ALLOC
) != 0)
4696 /* target_index is unused until bfd_elf_final_link
4697 starts output of section symbols. Use it to make
4699 s
->target_index
= i
;
4702 /* A wrapping section potentially clashes with header. */
4703 if (((s
->lma
+ s
->size
/ opb
) & addr_mask
) < (s
->lma
& addr_mask
))
4704 wrap_to
= (s
->lma
+ s
->size
/ opb
) & addr_mask
;
4707 BFD_ASSERT (i
<= bfd_count_sections (abfd
));
4710 qsort (sections
, (size_t) count
, sizeof (asection
*), elf_sort_sections
);
4712 phdr_size
= elf_program_header_size (abfd
);
4713 if (phdr_size
== (bfd_size_type
) -1)
4714 phdr_size
= get_program_header_size (abfd
, info
);
4715 phdr_size
+= bed
->s
->sizeof_ehdr
;
4716 /* phdr_size is compared to LMA values which are in bytes. */
4719 maxpagesize
= info
->maxpagesize
;
4721 maxpagesize
= bed
->maxpagesize
;
4722 if (maxpagesize
== 0)
4724 phdr_in_segment
= info
!= NULL
&& info
->load_phdrs
;
4726 && (((sections
[0]->lma
& addr_mask
) & (maxpagesize
- 1))
4727 >= (phdr_size
& (maxpagesize
- 1))))
4728 /* For compatibility with old scripts that may not be using
4729 SIZEOF_HEADERS, add headers when it looks like space has
4730 been left for them. */
4731 phdr_in_segment
= true;
4733 /* Build the mapping. */
4737 /* If we have a .interp section, then create a PT_PHDR segment for
4738 the program headers and a PT_INTERP segment for the .interp
4740 s
= bfd_get_section_by_name (abfd
, ".interp");
4741 if (s
!= NULL
&& (s
->flags
& SEC_LOAD
) != 0 && s
->size
!= 0)
4743 amt
= sizeof (struct elf_segment_map
);
4744 m
= (struct elf_segment_map
*) bfd_zalloc (abfd
, amt
);
4748 m
->p_type
= PT_PHDR
;
4750 m
->p_flags_valid
= 1;
4751 m
->includes_phdrs
= 1;
4752 phdr_in_segment
= true;
4756 amt
= sizeof (struct elf_segment_map
);
4757 m
= (struct elf_segment_map
*) bfd_zalloc (abfd
, amt
);
4761 m
->p_type
= PT_INTERP
;
4769 /* Look through the sections. We put sections in the same program
4770 segment when the start of the second section can be placed within
4771 a few bytes of the end of the first section. */
4777 dynsec
= bfd_get_section_by_name (abfd
, ".dynamic");
4779 && (dynsec
->flags
& SEC_LOAD
) == 0)
4782 if ((abfd
->flags
& D_PAGED
) == 0)
4783 phdr_in_segment
= false;
4785 /* Deal with -Ttext or something similar such that the first section
4786 is not adjacent to the program headers. This is an
4787 approximation, since at this point we don't know exactly how many
4788 program headers we will need. */
4789 if (phdr_in_segment
&& count
> 0)
4791 bfd_vma phdr_lma
; /* Bytes. */
4792 bool separate_phdr
= false;
4794 phdr_lma
= (sections
[0]->lma
- phdr_size
) & addr_mask
& -maxpagesize
;
4796 && info
->separate_code
4797 && (sections
[0]->flags
& SEC_CODE
) != 0)
4799 /* If data sections should be separate from code and
4800 thus not executable, and the first section is
4801 executable then put the file and program headers in
4802 their own PT_LOAD. */
4803 separate_phdr
= true;
4804 if ((((phdr_lma
+ phdr_size
- 1) & addr_mask
& -maxpagesize
)
4805 == (sections
[0]->lma
& addr_mask
& -maxpagesize
)))
4807 /* The file and program headers are currently on the
4808 same page as the first section. Put them on the
4809 previous page if we can. */
4810 if (phdr_lma
>= maxpagesize
)
4811 phdr_lma
-= maxpagesize
;
4813 separate_phdr
= false;
4816 if ((sections
[0]->lma
& addr_mask
) < phdr_lma
4817 || (sections
[0]->lma
& addr_mask
) < phdr_size
)
4818 /* If file and program headers would be placed at the end
4819 of memory then it's probably better to omit them. */
4820 phdr_in_segment
= false;
4821 else if (phdr_lma
< wrap_to
)
4822 /* If a section wraps around to where we'll be placing
4823 file and program headers, then the headers will be
4825 phdr_in_segment
= false;
4826 else if (separate_phdr
)
4828 m
= make_mapping (abfd
, sections
, 0, 0, phdr_in_segment
);
4831 m
->p_paddr
= phdr_lma
* opb
;
4833 = (sections
[0]->vma
- phdr_size
) & addr_mask
& -maxpagesize
;
4834 m
->p_paddr_valid
= 1;
4837 phdr_in_segment
= false;
4841 for (i
= 0, hdrpp
= sections
; i
< count
; i
++, hdrpp
++)
4848 /* See if this section and the last one will fit in the same
4851 if (last_hdr
== NULL
)
4853 /* If we don't have a segment yet, then we don't need a new
4854 one (we build the last one after this loop). */
4855 new_segment
= false;
4857 else if (last_hdr
->lma
- last_hdr
->vma
!= hdr
->lma
- hdr
->vma
)
4859 /* If this section has a different relation between the
4860 virtual address and the load address, then we need a new
4864 else if (hdr
->lma
< last_hdr
->lma
+ last_size
4865 || last_hdr
->lma
+ last_size
< last_hdr
->lma
)
4867 /* If this section has a load address that makes it overlap
4868 the previous section, then we need a new segment. */
4871 else if ((abfd
->flags
& D_PAGED
) != 0
4872 && (((last_hdr
->lma
+ last_size
- 1) & -maxpagesize
)
4873 == (hdr
->lma
& -maxpagesize
)))
4875 /* If we are demand paged then we can't map two disk
4876 pages onto the same memory page. */
4877 new_segment
= false;
4879 /* In the next test we have to be careful when last_hdr->lma is close
4880 to the end of the address space. If the aligned address wraps
4881 around to the start of the address space, then there are no more
4882 pages left in memory and it is OK to assume that the current
4883 section can be included in the current segment. */
4884 else if ((BFD_ALIGN (last_hdr
->lma
+ last_size
, maxpagesize
)
4885 + maxpagesize
> last_hdr
->lma
)
4886 && (BFD_ALIGN (last_hdr
->lma
+ last_size
, maxpagesize
)
4887 + maxpagesize
<= hdr
->lma
))
4889 /* If putting this section in this segment would force us to
4890 skip a page in the segment, then we need a new segment. */
4893 else if ((last_hdr
->flags
& (SEC_LOAD
| SEC_THREAD_LOCAL
)) == 0
4894 && (hdr
->flags
& (SEC_LOAD
| SEC_THREAD_LOCAL
)) != 0)
4896 /* We don't want to put a loaded section after a
4897 nonloaded (ie. bss style) section in the same segment
4898 as that will force the non-loaded section to be loaded.
4899 Consider .tbss sections as loaded for this purpose. */
4902 else if ((abfd
->flags
& D_PAGED
) == 0)
4904 /* If the file is not demand paged, which means that we
4905 don't require the sections to be correctly aligned in the
4906 file, then there is no other reason for a new segment. */
4907 new_segment
= false;
4909 else if (info
!= NULL
4910 && info
->separate_code
4911 && executable
!= ((hdr
->flags
& SEC_CODE
) != 0))
4916 && (hdr
->flags
& SEC_READONLY
) == 0)
4918 /* We don't want to put a writable section in a read only
4924 /* Otherwise, we can use the same segment. */
4925 new_segment
= false;
4928 /* Allow interested parties a chance to override our decision. */
4929 if (last_hdr
!= NULL
4931 && info
->callbacks
->override_segment_assignment
!= NULL
)
4933 = info
->callbacks
->override_segment_assignment (info
, abfd
, hdr
,
4939 if ((hdr
->flags
& SEC_READONLY
) == 0)
4941 if ((hdr
->flags
& SEC_CODE
) != 0)
4944 /* .tbss sections effectively have zero size. */
4945 last_size
= (!IS_TBSS (hdr
) ? hdr
->size
: 0) / opb
;
4949 /* We need a new program segment. We must create a new program
4950 header holding all the sections from hdr_index until hdr. */
4952 m
= make_mapping (abfd
, sections
, hdr_index
, i
, phdr_in_segment
);
4959 if ((hdr
->flags
& SEC_READONLY
) == 0)
4964 if ((hdr
->flags
& SEC_CODE
) == 0)
4970 /* .tbss sections effectively have zero size. */
4971 last_size
= (!IS_TBSS (hdr
) ? hdr
->size
: 0) / opb
;
4973 phdr_in_segment
= false;
4976 /* Create a final PT_LOAD program segment, but not if it's just
4978 if (last_hdr
!= NULL
4979 && (i
- hdr_index
!= 1
4980 || !IS_TBSS (last_hdr
)))
4982 m
= make_mapping (abfd
, sections
, hdr_index
, i
, phdr_in_segment
);
4990 /* If there is a .dynamic section, throw in a PT_DYNAMIC segment. */
4993 m
= _bfd_elf_make_dynamic_segment (abfd
, dynsec
);
5000 /* For each batch of consecutive loadable SHT_NOTE sections,
5001 add a PT_NOTE segment. We don't use bfd_get_section_by_name,
5002 because if we link together nonloadable .note sections and
5003 loadable .note sections, we will generate two .note sections
5004 in the output file. */
5005 for (s
= abfd
->sections
; s
!= NULL
; s
= s
->next
)
5007 if ((s
->flags
& SEC_LOAD
) != 0
5008 && elf_section_type (s
) == SHT_NOTE
)
5011 unsigned int alignment_power
= s
->alignment_power
;
5014 for (s2
= s
; s2
->next
!= NULL
; s2
= s2
->next
)
5016 if (s2
->next
->alignment_power
== alignment_power
5017 && (s2
->next
->flags
& SEC_LOAD
) != 0
5018 && elf_section_type (s2
->next
) == SHT_NOTE
5019 && align_power (s2
->lma
+ s2
->size
/ opb
,
5026 amt
= sizeof (struct elf_segment_map
) - sizeof (asection
*);
5027 amt
+= count
* sizeof (asection
*);
5028 m
= (struct elf_segment_map
*) bfd_zalloc (abfd
, amt
);
5032 m
->p_type
= PT_NOTE
;
5036 m
->sections
[m
->count
- count
--] = s
;
5037 BFD_ASSERT ((s
->flags
& SEC_THREAD_LOCAL
) == 0);
5040 m
->sections
[m
->count
- 1] = s
;
5041 BFD_ASSERT ((s
->flags
& SEC_THREAD_LOCAL
) == 0);
5045 if (s
->flags
& SEC_THREAD_LOCAL
)
5051 if (first_mbind
== NULL
5052 && (elf_section_flags (s
) & SHF_GNU_MBIND
) != 0)
5056 /* If there are any SHF_TLS output sections, add PT_TLS segment. */
5059 amt
= sizeof (struct elf_segment_map
) - sizeof (asection
*);
5060 amt
+= tls_count
* sizeof (asection
*);
5061 m
= (struct elf_segment_map
*) bfd_zalloc (abfd
, amt
);
5066 m
->count
= tls_count
;
5067 /* Mandated PF_R. */
5069 m
->p_flags_valid
= 1;
5071 for (i
= 0; i
< tls_count
; ++i
)
5073 if ((s
->flags
& SEC_THREAD_LOCAL
) == 0)
5076 (_("%pB: TLS sections are not adjacent:"), abfd
);
5079 while (i
< tls_count
)
5081 if ((s
->flags
& SEC_THREAD_LOCAL
) != 0)
5083 _bfd_error_handler (_(" TLS: %pA"), s
);
5087 _bfd_error_handler (_(" non-TLS: %pA"), s
);
5090 bfd_set_error (bfd_error_bad_value
);
5102 && (abfd
->flags
& D_PAGED
) != 0
5103 && (elf_tdata (abfd
)->has_gnu_osabi
& elf_gnu_osabi_mbind
) != 0)
5104 for (s
= first_mbind
; s
!= NULL
; s
= s
->next
)
5105 if ((elf_section_flags (s
) & SHF_GNU_MBIND
) != 0
5106 && elf_section_data (s
)->this_hdr
.sh_info
<= PT_GNU_MBIND_NUM
)
5108 /* Mandated PF_R. */
5109 unsigned long p_flags
= PF_R
;
5110 if ((s
->flags
& SEC_READONLY
) == 0)
5112 if ((s
->flags
& SEC_CODE
) != 0)
5115 amt
= sizeof (struct elf_segment_map
) + sizeof (asection
*);
5116 m
= bfd_zalloc (abfd
, amt
);
5120 m
->p_type
= (PT_GNU_MBIND_LO
5121 + elf_section_data (s
)->this_hdr
.sh_info
);
5123 m
->p_flags_valid
= 1;
5125 m
->p_flags
= p_flags
;
5131 s
= bfd_get_section_by_name (abfd
,
5132 NOTE_GNU_PROPERTY_SECTION_NAME
);
5133 if (s
!= NULL
&& s
->size
!= 0)
5135 amt
= sizeof (struct elf_segment_map
) + sizeof (asection
*);
5136 m
= bfd_zalloc (abfd
, amt
);
5140 m
->p_type
= PT_GNU_PROPERTY
;
5142 m
->p_flags_valid
= 1;
5149 /* If there is a .eh_frame_hdr section, throw in a PT_GNU_EH_FRAME
5151 eh_frame_hdr
= elf_eh_frame_hdr (info
);
5152 if (eh_frame_hdr
!= NULL
5153 && (eh_frame_hdr
->output_section
->flags
& SEC_LOAD
) != 0)
5155 amt
= sizeof (struct elf_segment_map
);
5156 m
= (struct elf_segment_map
*) bfd_zalloc (abfd
, amt
);
5160 m
->p_type
= PT_GNU_EH_FRAME
;
5162 m
->sections
[0] = eh_frame_hdr
->output_section
;
5168 if (elf_stack_flags (abfd
))
5170 amt
= sizeof (struct elf_segment_map
);
5171 m
= (struct elf_segment_map
*) bfd_zalloc (abfd
, amt
);
5175 m
->p_type
= PT_GNU_STACK
;
5176 m
->p_flags
= elf_stack_flags (abfd
);
5177 m
->p_align
= bed
->stack_align
;
5178 m
->p_flags_valid
= 1;
5179 m
->p_align_valid
= m
->p_align
!= 0;
5180 if (info
->stacksize
> 0)
5182 m
->p_size
= info
->stacksize
;
5183 m
->p_size_valid
= 1;
5190 if (info
!= NULL
&& info
->relro
)
5192 for (m
= mfirst
; m
!= NULL
; m
= m
->next
)
5194 if (m
->p_type
== PT_LOAD
5196 && m
->sections
[0]->vma
>= info
->relro_start
5197 && m
->sections
[0]->vma
< info
->relro_end
)
5200 while (--i
!= (unsigned) -1)
5202 if (m
->sections
[i
]->size
> 0
5203 && (m
->sections
[i
]->flags
& (SEC_LOAD
| SEC_HAS_CONTENTS
))
5204 == (SEC_LOAD
| SEC_HAS_CONTENTS
))
5208 if (i
!= (unsigned) -1)
5213 /* Make a PT_GNU_RELRO segment only when it isn't empty. */
5216 amt
= sizeof (struct elf_segment_map
);
5217 m
= (struct elf_segment_map
*) bfd_zalloc (abfd
, amt
);
5221 m
->p_type
= PT_GNU_RELRO
;
5228 elf_seg_map (abfd
) = mfirst
;
5231 if (!elf_modify_segment_map (abfd
, info
, no_user_phdrs
))
5234 for (count
= 0, m
= elf_seg_map (abfd
); m
!= NULL
; m
= m
->next
)
5236 elf_program_header_size (abfd
) = count
* bed
->s
->sizeof_phdr
;
5245 /* Sort sections by address. */
5248 elf_sort_sections (const void *arg1
, const void *arg2
)
5250 const asection
*sec1
= *(const asection
**) arg1
;
5251 const asection
*sec2
= *(const asection
**) arg2
;
5252 bfd_size_type size1
, size2
;
5254 /* Sort by LMA first, since this is the address used to
5255 place the section into a segment. */
5256 if (sec1
->lma
< sec2
->lma
)
5258 else if (sec1
->lma
> sec2
->lma
)
5261 /* Then sort by VMA. Normally the LMA and the VMA will be
5262 the same, and this will do nothing. */
5263 if (sec1
->vma
< sec2
->vma
)
5265 else if (sec1
->vma
> sec2
->vma
)
5268 /* Put !SEC_LOAD sections after SEC_LOAD ones. */
5270 #define TOEND(x) (((x)->flags & (SEC_LOAD | SEC_THREAD_LOCAL)) == 0 \
5278 else if (TOEND (sec2
))
5283 /* Sort by size, to put zero sized sections
5284 before others at the same address. */
5286 size1
= (sec1
->flags
& SEC_LOAD
) ? sec1
->size
: 0;
5287 size2
= (sec2
->flags
& SEC_LOAD
) ? sec2
->size
: 0;
5294 return sec1
->target_index
- sec2
->target_index
;
5297 /* This qsort comparison functions sorts PT_LOAD segments first and
5298 by p_paddr, for assign_file_positions_for_load_sections. */
5301 elf_sort_segments (const void *arg1
, const void *arg2
)
5303 const struct elf_segment_map
*m1
= *(const struct elf_segment_map
**) arg1
;
5304 const struct elf_segment_map
*m2
= *(const struct elf_segment_map
**) arg2
;
5306 if (m1
->p_type
!= m2
->p_type
)
5308 if (m1
->p_type
== PT_NULL
)
5310 if (m2
->p_type
== PT_NULL
)
5312 return m1
->p_type
< m2
->p_type
? -1 : 1;
5314 if (m1
->includes_filehdr
!= m2
->includes_filehdr
)
5315 return m1
->includes_filehdr
? -1 : 1;
5316 if (m1
->no_sort_lma
!= m2
->no_sort_lma
)
5317 return m1
->no_sort_lma
? -1 : 1;
5318 if (m1
->p_type
== PT_LOAD
&& !m1
->no_sort_lma
)
5320 bfd_vma lma1
, lma2
; /* Octets. */
5322 if (m1
->p_paddr_valid
)
5324 else if (m1
->count
!= 0)
5326 unsigned int opb
= bfd_octets_per_byte (m1
->sections
[0]->owner
,
5328 lma1
= (m1
->sections
[0]->lma
+ m1
->p_vaddr_offset
) * opb
;
5331 if (m2
->p_paddr_valid
)
5333 else if (m2
->count
!= 0)
5335 unsigned int opb
= bfd_octets_per_byte (m2
->sections
[0]->owner
,
5337 lma2
= (m2
->sections
[0]->lma
+ m2
->p_vaddr_offset
) * opb
;
5340 return lma1
< lma2
? -1 : 1;
5342 if (m1
->idx
!= m2
->idx
)
5343 return m1
->idx
< m2
->idx
? -1 : 1;
5347 /* Ian Lance Taylor writes:
5349 We shouldn't be using % with a negative signed number. That's just
5350 not good. We have to make sure either that the number is not
5351 negative, or that the number has an unsigned type. When the types
5352 are all the same size they wind up as unsigned. When file_ptr is a
5353 larger signed type, the arithmetic winds up as signed long long,
5356 What we're trying to say here is something like ``increase OFF by
5357 the least amount that will cause it to be equal to the VMA modulo
5359 /* In other words, something like:
5361 vma_offset = m->sections[0]->vma % bed->maxpagesize;
5362 off_offset = off % bed->maxpagesize;
5363 if (vma_offset < off_offset)
5364 adjustment = vma_offset + bed->maxpagesize - off_offset;
5366 adjustment = vma_offset - off_offset;
5368 which can be collapsed into the expression below. */
5371 vma_page_aligned_bias (bfd_vma vma
, ufile_ptr off
, bfd_vma maxpagesize
)
5373 /* PR binutils/16199: Handle an alignment of zero. */
5374 if (maxpagesize
== 0)
5376 return ((vma
- off
) % maxpagesize
);
5380 print_segment_map (const struct elf_segment_map
*m
)
5383 const char *pt
= get_segment_type (m
->p_type
);
5388 if (m
->p_type
>= PT_LOPROC
&& m
->p_type
<= PT_HIPROC
)
5389 sprintf (buf
, "LOPROC+%7.7x",
5390 (unsigned int) (m
->p_type
- PT_LOPROC
));
5391 else if (m
->p_type
>= PT_LOOS
&& m
->p_type
<= PT_HIOS
)
5392 sprintf (buf
, "LOOS+%7.7x",
5393 (unsigned int) (m
->p_type
- PT_LOOS
));
5395 snprintf (buf
, sizeof (buf
), "%8.8x",
5396 (unsigned int) m
->p_type
);
5400 fprintf (stderr
, "%s:", pt
);
5401 for (j
= 0; j
< m
->count
; j
++)
5402 fprintf (stderr
, " %s", m
->sections
[j
]->name
);
5408 write_zeros (bfd
*abfd
, file_ptr pos
, bfd_size_type len
)
5413 if (bfd_seek (abfd
, pos
, SEEK_SET
) != 0)
5415 buf
= bfd_zmalloc (len
);
5418 ret
= bfd_bwrite (buf
, len
, abfd
) == len
;
5423 /* Assign file positions to the sections based on the mapping from
5424 sections to segments. This function also sets up some fields in
5428 assign_file_positions_for_load_sections (bfd
*abfd
,
5429 struct bfd_link_info
*link_info
)
5431 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
5432 struct elf_segment_map
*m
;
5433 struct elf_segment_map
*phdr_load_seg
;
5434 Elf_Internal_Phdr
*phdrs
;
5435 Elf_Internal_Phdr
*p
;
5436 file_ptr off
; /* Octets. */
5437 bfd_size_type maxpagesize
;
5438 bfd_size_type p_align
;
5439 bool p_align_p
= false;
5440 unsigned int alloc
, actual
;
5442 struct elf_segment_map
**sorted_seg_map
;
5443 unsigned int opb
= bfd_octets_per_byte (abfd
, NULL
);
5445 if (link_info
== NULL
5446 && !_bfd_elf_map_sections_to_segments (abfd
, link_info
, NULL
))
5450 for (m
= elf_seg_map (abfd
); m
!= NULL
; m
= m
->next
)
5455 elf_elfheader (abfd
)->e_phoff
= bed
->s
->sizeof_ehdr
;
5456 elf_elfheader (abfd
)->e_phentsize
= bed
->s
->sizeof_phdr
;
5460 /* PR binutils/12467. */
5461 elf_elfheader (abfd
)->e_phoff
= 0;
5462 elf_elfheader (abfd
)->e_phentsize
= 0;
5465 elf_elfheader (abfd
)->e_phnum
= alloc
;
5467 if (elf_program_header_size (abfd
) == (bfd_size_type
) -1)
5470 elf_program_header_size (abfd
) = alloc
* bed
->s
->sizeof_phdr
;
5474 actual
= elf_program_header_size (abfd
) / bed
->s
->sizeof_phdr
;
5475 BFD_ASSERT (elf_program_header_size (abfd
)
5476 == actual
* bed
->s
->sizeof_phdr
);
5477 BFD_ASSERT (actual
>= alloc
);
5482 elf_next_file_pos (abfd
) = bed
->s
->sizeof_ehdr
;
5486 /* We're writing the size in elf_program_header_size (abfd),
5487 see assign_file_positions_except_relocs, so make sure we have
5488 that amount allocated, with trailing space cleared.
5489 The variable alloc contains the computed need, while
5490 elf_program_header_size (abfd) contains the size used for the
5492 See ld/emultempl/elf-generic.em:gld${EMULATION_NAME}_map_segments
5493 where the layout is forced to according to a larger size in the
5494 last iterations for the testcase ld-elf/header. */
5495 phdrs
= bfd_zalloc (abfd
, (actual
* sizeof (*phdrs
)
5496 + alloc
* sizeof (*sorted_seg_map
)));
5497 sorted_seg_map
= (struct elf_segment_map
**) (phdrs
+ actual
);
5498 elf_tdata (abfd
)->phdr
= phdrs
;
5502 for (m
= elf_seg_map (abfd
), j
= 0; m
!= NULL
; m
= m
->next
, j
++)
5504 sorted_seg_map
[j
] = m
;
5505 /* If elf_segment_map is not from map_sections_to_segments, the
5506 sections may not be correctly ordered. NOTE: sorting should
5507 not be done to the PT_NOTE section of a corefile, which may
5508 contain several pseudo-sections artificially created by bfd.
5509 Sorting these pseudo-sections breaks things badly. */
5511 && !(elf_elfheader (abfd
)->e_type
== ET_CORE
5512 && m
->p_type
== PT_NOTE
))
5514 for (i
= 0; i
< m
->count
; i
++)
5515 m
->sections
[i
]->target_index
= i
;
5516 qsort (m
->sections
, (size_t) m
->count
, sizeof (asection
*),
5521 qsort (sorted_seg_map
, alloc
, sizeof (*sorted_seg_map
),
5524 p_align
= bed
->p_align
;
5526 if ((abfd
->flags
& D_PAGED
) != 0)
5528 if (link_info
!= NULL
)
5529 maxpagesize
= link_info
->maxpagesize
;
5531 maxpagesize
= bed
->maxpagesize
;
5534 /* Sections must map to file offsets past the ELF file header. */
5535 off
= bed
->s
->sizeof_ehdr
;
5536 /* And if one of the PT_LOAD headers doesn't include the program
5537 headers then we'll be mapping program headers in the usual
5538 position after the ELF file header. */
5539 phdr_load_seg
= NULL
;
5540 for (j
= 0; j
< alloc
; j
++)
5542 m
= sorted_seg_map
[j
];
5543 if (m
->p_type
!= PT_LOAD
)
5545 if (m
->includes_phdrs
)
5551 if (phdr_load_seg
== NULL
)
5552 off
+= actual
* bed
->s
->sizeof_phdr
;
5554 for (j
= 0; j
< alloc
; j
++)
5557 bfd_vma off_adjust
; /* Octets. */
5560 /* An ELF segment (described by Elf_Internal_Phdr) may contain a
5561 number of sections with contents contributing to both p_filesz
5562 and p_memsz, followed by a number of sections with no contents
5563 that just contribute to p_memsz. In this loop, OFF tracks next
5564 available file offset for PT_LOAD and PT_NOTE segments. */
5565 m
= sorted_seg_map
[j
];
5567 p
->p_type
= m
->p_type
;
5568 p
->p_flags
= m
->p_flags
;
5571 p
->p_vaddr
= m
->p_vaddr_offset
* opb
;
5573 p
->p_vaddr
= (m
->sections
[0]->vma
+ m
->p_vaddr_offset
) * opb
;
5575 if (m
->p_paddr_valid
)
5576 p
->p_paddr
= m
->p_paddr
;
5577 else if (m
->count
== 0)
5580 p
->p_paddr
= (m
->sections
[0]->lma
+ m
->p_vaddr_offset
) * opb
;
5582 if (p
->p_type
== PT_LOAD
5583 && (abfd
->flags
& D_PAGED
) != 0)
5585 /* p_align in demand paged PT_LOAD segments effectively stores
5586 the maximum page size. When copying an executable with
5587 objcopy, we set m->p_align from the input file. Use this
5588 value for maxpagesize rather than bed->maxpagesize, which
5589 may be different. Note that we use maxpagesize for PT_TLS
5590 segment alignment later in this function, so we are relying
5591 on at least one PT_LOAD segment appearing before a PT_TLS
5593 if (m
->p_align_valid
)
5594 maxpagesize
= m
->p_align
;
5595 else if (p_align
!= 0
5596 && (link_info
== NULL
5597 || !link_info
->maxpagesize_is_set
))
5598 /* Set p_align to the default p_align value while laying
5599 out segments aligning to the maximum page size or the
5600 largest section alignment. The run-time loader can
5601 align segments to the default p_align value or the
5602 maximum page size, depending on system page size. */
5605 p
->p_align
= maxpagesize
;
5607 else if (m
->p_align_valid
)
5608 p
->p_align
= m
->p_align
;
5609 else if (m
->count
== 0)
5610 p
->p_align
= 1 << bed
->s
->log_file_align
;
5612 if (m
== phdr_load_seg
)
5614 if (!m
->includes_filehdr
)
5616 off
+= actual
* bed
->s
->sizeof_phdr
;
5619 no_contents
= false;
5621 if (p
->p_type
== PT_LOAD
5624 bfd_size_type align
; /* Bytes. */
5625 unsigned int align_power
= 0;
5627 if (m
->p_align_valid
)
5631 for (i
= 0, secpp
= m
->sections
; i
< m
->count
; i
++, secpp
++)
5633 unsigned int secalign
;
5635 secalign
= bfd_section_alignment (*secpp
);
5636 if (secalign
> align_power
)
5637 align_power
= secalign
;
5639 align
= (bfd_size_type
) 1 << align_power
;
5640 if (align
< maxpagesize
)
5642 /* If a section requires alignment higher than the
5643 default p_align value, don't set p_align to the
5644 default p_align value. */
5645 if (align
> p_align
)
5647 align
= maxpagesize
;
5651 /* If a section requires alignment higher than the
5652 maximum page size, set p_align to the section
5659 for (i
= 0; i
< m
->count
; i
++)
5660 if ((m
->sections
[i
]->flags
& (SEC_LOAD
| SEC_HAS_CONTENTS
)) == 0)
5661 /* If we aren't making room for this section, then
5662 it must be SHT_NOBITS regardless of what we've
5663 set via struct bfd_elf_special_section. */
5664 elf_section_type (m
->sections
[i
]) = SHT_NOBITS
;
5666 /* Find out whether this segment contains any loadable
5669 for (i
= 0; i
< m
->count
; i
++)
5670 if (elf_section_type (m
->sections
[i
]) != SHT_NOBITS
)
5672 no_contents
= false;
5676 off_adjust
= vma_page_aligned_bias (p
->p_vaddr
, off
, align
* opb
);
5678 /* Broken hardware and/or kernel require that files do not
5679 map the same page with different permissions on some hppa
5682 && (abfd
->flags
& D_PAGED
) != 0
5683 && bed
->no_page_alias
5684 && (off
& (maxpagesize
- 1)) != 0
5685 && ((off
& -maxpagesize
)
5686 == ((off
+ off_adjust
) & -maxpagesize
)))
5687 off_adjust
+= maxpagesize
;
5691 /* We shouldn't need to align the segment on disk since
5692 the segment doesn't need file space, but the gABI
5693 arguably requires the alignment and glibc ld.so
5694 checks it. So to comply with the alignment
5695 requirement but not waste file space, we adjust
5696 p_offset for just this segment. (OFF_ADJUST is
5697 subtracted from OFF later.) This may put p_offset
5698 past the end of file, but that shouldn't matter. */
5703 /* Make sure the .dynamic section is the first section in the
5704 PT_DYNAMIC segment. */
5705 else if (p
->p_type
== PT_DYNAMIC
5707 && strcmp (m
->sections
[0]->name
, ".dynamic") != 0)
5710 (_("%pB: The first section in the PT_DYNAMIC segment"
5711 " is not the .dynamic section"),
5713 bfd_set_error (bfd_error_bad_value
);
5716 /* Set the note section type to SHT_NOTE. */
5717 else if (p
->p_type
== PT_NOTE
)
5718 for (i
= 0; i
< m
->count
; i
++)
5719 elf_section_type (m
->sections
[i
]) = SHT_NOTE
;
5721 if (m
->includes_filehdr
)
5723 if (!m
->p_flags_valid
)
5725 p
->p_filesz
= bed
->s
->sizeof_ehdr
;
5726 p
->p_memsz
= bed
->s
->sizeof_ehdr
;
5727 if (p
->p_type
== PT_LOAD
)
5731 if (p
->p_vaddr
< (bfd_vma
) off
5732 || (!m
->p_paddr_valid
5733 && p
->p_paddr
< (bfd_vma
) off
))
5736 (_("%pB: not enough room for program headers,"
5737 " try linking with -N"),
5739 bfd_set_error (bfd_error_bad_value
);
5743 if (!m
->p_paddr_valid
)
5747 else if (sorted_seg_map
[0]->includes_filehdr
)
5749 Elf_Internal_Phdr
*filehdr
= phdrs
+ sorted_seg_map
[0]->idx
;
5750 p
->p_vaddr
= filehdr
->p_vaddr
;
5751 if (!m
->p_paddr_valid
)
5752 p
->p_paddr
= filehdr
->p_paddr
;
5756 if (m
->includes_phdrs
)
5758 if (!m
->p_flags_valid
)
5760 p
->p_filesz
+= actual
* bed
->s
->sizeof_phdr
;
5761 p
->p_memsz
+= actual
* bed
->s
->sizeof_phdr
;
5762 if (!m
->includes_filehdr
)
5764 if (p
->p_type
== PT_LOAD
)
5766 elf_elfheader (abfd
)->e_phoff
= p
->p_offset
;
5769 p
->p_vaddr
-= off
- p
->p_offset
;
5770 if (!m
->p_paddr_valid
)
5771 p
->p_paddr
-= off
- p
->p_offset
;
5774 else if (phdr_load_seg
!= NULL
)
5776 Elf_Internal_Phdr
*phdr
= phdrs
+ phdr_load_seg
->idx
;
5777 bfd_vma phdr_off
= 0; /* Octets. */
5778 if (phdr_load_seg
->includes_filehdr
)
5779 phdr_off
= bed
->s
->sizeof_ehdr
;
5780 p
->p_vaddr
= phdr
->p_vaddr
+ phdr_off
;
5781 if (!m
->p_paddr_valid
)
5782 p
->p_paddr
= phdr
->p_paddr
+ phdr_off
;
5783 p
->p_offset
= phdr
->p_offset
+ phdr_off
;
5786 p
->p_offset
= bed
->s
->sizeof_ehdr
;
5790 if (p
->p_type
== PT_LOAD
5791 || (p
->p_type
== PT_NOTE
&& bfd_get_format (abfd
) == bfd_core
))
5793 if (!m
->includes_filehdr
&& !m
->includes_phdrs
)
5798 /* Put meaningless p_offset for PT_LOAD segments
5799 without file contents somewhere within the first
5800 page, in an attempt to not point past EOF. */
5801 bfd_size_type align
= maxpagesize
;
5802 if (align
< p
->p_align
)
5806 p
->p_offset
= off
% align
;
5811 file_ptr adjust
; /* Octets. */
5813 adjust
= off
- (p
->p_offset
+ p
->p_filesz
);
5815 p
->p_filesz
+= adjust
;
5816 p
->p_memsz
+= adjust
;
5820 /* Set up p_filesz, p_memsz, p_align and p_flags from the section
5821 maps. Set filepos for sections in PT_LOAD segments, and in
5822 core files, for sections in PT_NOTE segments.
5823 assign_file_positions_for_non_load_sections will set filepos
5824 for other sections and update p_filesz for other segments. */
5825 for (i
= 0, secpp
= m
->sections
; i
< m
->count
; i
++, secpp
++)
5828 bfd_size_type align
;
5829 Elf_Internal_Shdr
*this_hdr
;
5832 this_hdr
= &elf_section_data (sec
)->this_hdr
;
5833 align
= (bfd_size_type
) 1 << bfd_section_alignment (sec
);
5835 if ((p
->p_type
== PT_LOAD
5836 || p
->p_type
== PT_TLS
)
5837 && (this_hdr
->sh_type
!= SHT_NOBITS
5838 || ((this_hdr
->sh_flags
& SHF_ALLOC
) != 0
5839 && ((this_hdr
->sh_flags
& SHF_TLS
) == 0
5840 || p
->p_type
== PT_TLS
))))
5842 bfd_vma p_start
= p
->p_paddr
; /* Octets. */
5843 bfd_vma p_end
= p_start
+ p
->p_memsz
; /* Octets. */
5844 bfd_vma s_start
= sec
->lma
* opb
; /* Octets. */
5845 bfd_vma adjust
= s_start
- p_end
; /* Octets. */
5849 || p_end
< p_start
))
5852 /* xgettext:c-format */
5853 (_("%pB: section %pA lma %#" PRIx64
" adjusted to %#" PRIx64
),
5854 abfd
, sec
, (uint64_t) s_start
/ opb
,
5855 (uint64_t) p_end
/ opb
);
5857 sec
->lma
= p_end
/ opb
;
5859 p
->p_memsz
+= adjust
;
5861 if (p
->p_type
== PT_LOAD
)
5863 if (this_hdr
->sh_type
!= SHT_NOBITS
)
5866 if (p
->p_filesz
+ adjust
< p
->p_memsz
)
5868 /* We have a PROGBITS section following NOBITS ones.
5869 Allocate file space for the NOBITS section(s) and
5871 adjust
= p
->p_memsz
- p
->p_filesz
;
5872 if (!write_zeros (abfd
, off
, adjust
))
5876 /* We only adjust sh_offset in SHT_NOBITS sections
5877 as would seem proper for their address when the
5878 section is first in the segment. sh_offset
5879 doesn't really have any significance for
5880 SHT_NOBITS anyway, apart from a notional position
5881 relative to other sections. Historically we
5882 didn't bother with adjusting sh_offset and some
5883 programs depend on it not being adjusted. See
5884 pr12921 and pr25662. */
5885 if (this_hdr
->sh_type
!= SHT_NOBITS
|| i
== 0)
5888 if (this_hdr
->sh_type
== SHT_NOBITS
)
5889 off_adjust
+= adjust
;
5892 if (this_hdr
->sh_type
!= SHT_NOBITS
)
5893 p
->p_filesz
+= adjust
;
5896 if (p
->p_type
== PT_NOTE
&& bfd_get_format (abfd
) == bfd_core
)
5898 /* The section at i == 0 is the one that actually contains
5902 this_hdr
->sh_offset
= sec
->filepos
= off
;
5903 off
+= this_hdr
->sh_size
;
5904 p
->p_filesz
= this_hdr
->sh_size
;
5910 /* The rest are fake sections that shouldn't be written. */
5919 if (p
->p_type
== PT_LOAD
)
5921 this_hdr
->sh_offset
= sec
->filepos
= off
;
5922 if (this_hdr
->sh_type
!= SHT_NOBITS
)
5923 off
+= this_hdr
->sh_size
;
5925 else if (this_hdr
->sh_type
== SHT_NOBITS
5926 && (this_hdr
->sh_flags
& SHF_TLS
) != 0
5927 && this_hdr
->sh_offset
== 0)
5929 /* This is a .tbss section that didn't get a PT_LOAD.
5930 (See _bfd_elf_map_sections_to_segments "Create a
5931 final PT_LOAD".) Set sh_offset to the value it
5932 would have if we had created a zero p_filesz and
5933 p_memsz PT_LOAD header for the section. This
5934 also makes the PT_TLS header have the same
5936 bfd_vma adjust
= vma_page_aligned_bias (this_hdr
->sh_addr
,
5938 this_hdr
->sh_offset
= sec
->filepos
= off
+ adjust
;
5941 if (this_hdr
->sh_type
!= SHT_NOBITS
)
5943 p
->p_filesz
+= this_hdr
->sh_size
;
5944 /* A load section without SHF_ALLOC is something like
5945 a note section in a PT_NOTE segment. These take
5946 file space but are not loaded into memory. */
5947 if ((this_hdr
->sh_flags
& SHF_ALLOC
) != 0)
5948 p
->p_memsz
+= this_hdr
->sh_size
;
5950 else if ((this_hdr
->sh_flags
& SHF_ALLOC
) != 0)
5952 if (p
->p_type
== PT_TLS
)
5953 p
->p_memsz
+= this_hdr
->sh_size
;
5955 /* .tbss is special. It doesn't contribute to p_memsz of
5957 else if ((this_hdr
->sh_flags
& SHF_TLS
) == 0)
5958 p
->p_memsz
+= this_hdr
->sh_size
;
5961 if (align
> p
->p_align
5962 && !m
->p_align_valid
5963 && (p
->p_type
!= PT_LOAD
5964 || (abfd
->flags
& D_PAGED
) == 0))
5968 if (!m
->p_flags_valid
)
5971 if ((this_hdr
->sh_flags
& SHF_EXECINSTR
) != 0)
5973 if ((this_hdr
->sh_flags
& SHF_WRITE
) != 0)
5980 /* PR ld/20815 - Check that the program header segment, if
5981 present, will be loaded into memory. */
5982 if (p
->p_type
== PT_PHDR
5983 && phdr_load_seg
== NULL
5984 && !(bed
->elf_backend_allow_non_load_phdr
!= NULL
5985 && bed
->elf_backend_allow_non_load_phdr (abfd
, phdrs
, alloc
)))
5987 /* The fix for this error is usually to edit the linker script being
5988 used and set up the program headers manually. Either that or
5989 leave room for the headers at the start of the SECTIONS. */
5990 _bfd_error_handler (_("%pB: error: PHDR segment not covered"
5991 " by LOAD segment"),
5993 if (link_info
== NULL
)
5995 /* Arrange for the linker to exit with an error, deleting
5996 the output file unless --noinhibit-exec is given. */
5997 link_info
->callbacks
->info ("%X");
6000 /* Check that all sections are in a PT_LOAD segment.
6001 Don't check funky gdb generated core files. */
6002 if (p
->p_type
== PT_LOAD
&& bfd_get_format (abfd
) != bfd_core
)
6004 bool check_vma
= true;
6006 for (i
= 1; i
< m
->count
; i
++)
6007 if (m
->sections
[i
]->vma
== m
->sections
[i
- 1]->vma
6008 && ELF_SECTION_SIZE (&(elf_section_data (m
->sections
[i
])
6009 ->this_hdr
), p
) != 0
6010 && ELF_SECTION_SIZE (&(elf_section_data (m
->sections
[i
- 1])
6011 ->this_hdr
), p
) != 0)
6013 /* Looks like we have overlays packed into the segment. */
6018 for (i
= 0; i
< m
->count
; i
++)
6020 Elf_Internal_Shdr
*this_hdr
;
6023 sec
= m
->sections
[i
];
6024 this_hdr
= &(elf_section_data(sec
)->this_hdr
);
6025 if (!ELF_SECTION_IN_SEGMENT_1 (this_hdr
, p
, check_vma
, 0)
6026 && !ELF_TBSS_SPECIAL (this_hdr
, p
))
6029 /* xgettext:c-format */
6030 (_("%pB: section `%pA' can't be allocated in segment %d"),
6032 print_segment_map (m
);
6037 p
->p_align
= p_align
;
6041 elf_next_file_pos (abfd
) = off
;
6043 if (link_info
!= NULL
6044 && phdr_load_seg
!= NULL
6045 && phdr_load_seg
->includes_filehdr
)
6047 /* There is a segment that contains both the file headers and the
6048 program headers, so provide a symbol __ehdr_start pointing there.
6049 A program can use this to examine itself robustly. */
6051 struct elf_link_hash_entry
*hash
6052 = elf_link_hash_lookup (elf_hash_table (link_info
), "__ehdr_start",
6053 false, false, true);
6054 /* If the symbol was referenced and not defined, define it. */
6056 && (hash
->root
.type
== bfd_link_hash_new
6057 || hash
->root
.type
== bfd_link_hash_undefined
6058 || hash
->root
.type
== bfd_link_hash_undefweak
6059 || hash
->root
.type
== bfd_link_hash_common
))
6062 bfd_vma filehdr_vaddr
= phdrs
[phdr_load_seg
->idx
].p_vaddr
/ opb
;
6064 if (phdr_load_seg
->count
!= 0)
6065 /* The segment contains sections, so use the first one. */
6066 s
= phdr_load_seg
->sections
[0];
6068 /* Use the first (i.e. lowest-addressed) section in any segment. */
6069 for (m
= elf_seg_map (abfd
); m
!= NULL
; m
= m
->next
)
6070 if (m
->p_type
== PT_LOAD
&& m
->count
!= 0)
6078 hash
->root
.u
.def
.value
= filehdr_vaddr
- s
->vma
;
6079 hash
->root
.u
.def
.section
= s
;
6083 hash
->root
.u
.def
.value
= filehdr_vaddr
;
6084 hash
->root
.u
.def
.section
= bfd_abs_section_ptr
;
6087 hash
->root
.type
= bfd_link_hash_defined
;
6088 hash
->def_regular
= 1;
6096 /* Determine if a bfd is a debuginfo file. Unfortunately there
6097 is no defined method for detecting such files, so we have to
6098 use heuristics instead. */
6101 is_debuginfo_file (bfd
*abfd
)
6103 if (abfd
== NULL
|| bfd_get_flavour (abfd
) != bfd_target_elf_flavour
)
6106 Elf_Internal_Shdr
**start_headers
= elf_elfsections (abfd
);
6107 Elf_Internal_Shdr
**end_headers
= start_headers
+ elf_numsections (abfd
);
6108 Elf_Internal_Shdr
**headerp
;
6110 for (headerp
= start_headers
; headerp
< end_headers
; headerp
++)
6112 Elf_Internal_Shdr
*header
= * headerp
;
6114 /* Debuginfo files do not have any allocated SHT_PROGBITS sections.
6115 The only allocated sections are SHT_NOBITS or SHT_NOTES. */
6116 if ((header
->sh_flags
& SHF_ALLOC
) == SHF_ALLOC
6117 && header
->sh_type
!= SHT_NOBITS
6118 && header
->sh_type
!= SHT_NOTE
)
6125 /* Assign file positions for the other sections, except for compressed debugging
6126 and other sections assigned in _bfd_elf_assign_file_positions_for_non_load(). */
6129 assign_file_positions_for_non_load_sections (bfd
*abfd
,
6130 struct bfd_link_info
*link_info
)
6132 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
6133 Elf_Internal_Shdr
**i_shdrpp
;
6134 Elf_Internal_Shdr
**hdrpp
, **end_hdrpp
;
6135 Elf_Internal_Phdr
*phdrs
;
6136 Elf_Internal_Phdr
*p
;
6137 struct elf_segment_map
*m
;
6139 unsigned int opb
= bfd_octets_per_byte (abfd
, NULL
);
6140 bfd_vma maxpagesize
;
6142 if (link_info
!= NULL
)
6143 maxpagesize
= link_info
->maxpagesize
;
6145 maxpagesize
= bed
->maxpagesize
;
6146 i_shdrpp
= elf_elfsections (abfd
);
6147 end_hdrpp
= i_shdrpp
+ elf_numsections (abfd
);
6148 off
= elf_next_file_pos (abfd
);
6149 for (hdrpp
= i_shdrpp
+ 1; hdrpp
< end_hdrpp
; hdrpp
++)
6151 Elf_Internal_Shdr
*hdr
;
6154 if (hdr
->bfd_section
!= NULL
6155 && (hdr
->bfd_section
->filepos
!= 0
6156 || (hdr
->sh_type
== SHT_NOBITS
6157 && hdr
->contents
== NULL
)))
6158 BFD_ASSERT (hdr
->sh_offset
== hdr
->bfd_section
->filepos
);
6159 else if ((hdr
->sh_flags
& SHF_ALLOC
) != 0)
6161 if (hdr
->sh_size
!= 0
6162 /* PR 24717 - debuginfo files are known to be not strictly
6163 compliant with the ELF standard. In particular they often
6164 have .note.gnu.property sections that are outside of any
6165 loadable segment. This is not a problem for such files,
6166 so do not warn about them. */
6167 && ! is_debuginfo_file (abfd
))
6169 /* xgettext:c-format */
6170 (_("%pB: warning: allocated section `%s' not in segment"),
6172 (hdr
->bfd_section
== NULL
6174 : hdr
->bfd_section
->name
));
6175 /* We don't need to page align empty sections. */
6176 if ((abfd
->flags
& D_PAGED
) != 0 && hdr
->sh_size
!= 0)
6177 off
+= vma_page_aligned_bias (hdr
->sh_addr
, off
,
6180 off
+= vma_page_aligned_bias (hdr
->sh_addr
, off
,
6182 off
= _bfd_elf_assign_file_position_for_section (hdr
, off
,
6185 else if (((hdr
->sh_type
== SHT_REL
|| hdr
->sh_type
== SHT_RELA
)
6186 && hdr
->bfd_section
== NULL
)
6187 /* We don't know the offset of these sections yet: their size has
6188 not been decided. */
6189 || (hdr
->bfd_section
!= NULL
6190 && (hdr
->bfd_section
->flags
& SEC_ELF_COMPRESS
6191 || (bfd_section_is_ctf (hdr
->bfd_section
)
6192 && abfd
->is_linker_output
)))
6193 || hdr
== i_shdrpp
[elf_onesymtab (abfd
)]
6194 || (elf_symtab_shndx_list (abfd
) != NULL
6195 && hdr
== i_shdrpp
[elf_symtab_shndx_list (abfd
)->ndx
])
6196 || hdr
== i_shdrpp
[elf_strtab_sec (abfd
)]
6197 || hdr
== i_shdrpp
[elf_shstrtab_sec (abfd
)])
6198 hdr
->sh_offset
= -1;
6200 off
= _bfd_elf_assign_file_position_for_section (hdr
, off
, true);
6202 elf_next_file_pos (abfd
) = off
;
6204 /* Now that we have set the section file positions, we can set up
6205 the file positions for the non PT_LOAD segments. */
6206 phdrs
= elf_tdata (abfd
)->phdr
;
6207 for (m
= elf_seg_map (abfd
), p
= phdrs
; m
!= NULL
; m
= m
->next
, p
++)
6209 if (p
->p_type
== PT_GNU_RELRO
)
6211 bfd_vma start
, end
; /* Bytes. */
6214 if (link_info
!= NULL
)
6216 /* During linking the range of the RELRO segment is passed
6217 in link_info. Note that there may be padding between
6218 relro_start and the first RELRO section. */
6219 start
= link_info
->relro_start
;
6220 end
= link_info
->relro_end
;
6222 else if (m
->count
!= 0)
6224 if (!m
->p_size_valid
)
6226 start
= m
->sections
[0]->vma
;
6227 end
= start
+ m
->p_size
/ opb
;
6238 struct elf_segment_map
*lm
;
6239 const Elf_Internal_Phdr
*lp
;
6242 /* Find a LOAD segment containing a section in the RELRO
6244 for (lm
= elf_seg_map (abfd
), lp
= phdrs
;
6246 lm
= lm
->next
, lp
++)
6248 if (lp
->p_type
== PT_LOAD
6250 && (lm
->sections
[lm
->count
- 1]->vma
6251 + (!IS_TBSS (lm
->sections
[lm
->count
- 1])
6252 ? lm
->sections
[lm
->count
- 1]->size
/ opb
6254 && lm
->sections
[0]->vma
< end
)
6260 /* Find the section starting the RELRO segment. */
6261 for (i
= 0; i
< lm
->count
; i
++)
6263 asection
*s
= lm
->sections
[i
];
6272 p
->p_vaddr
= lm
->sections
[i
]->vma
* opb
;
6273 p
->p_paddr
= lm
->sections
[i
]->lma
* opb
;
6274 p
->p_offset
= lm
->sections
[i
]->filepos
;
6275 p
->p_memsz
= end
* opb
- p
->p_vaddr
;
6276 p
->p_filesz
= p
->p_memsz
;
6278 /* The RELRO segment typically ends a few bytes
6279 into .got.plt but other layouts are possible.
6280 In cases where the end does not match any
6281 loaded section (for instance is in file
6282 padding), trim p_filesz back to correspond to
6283 the end of loaded section contents. */
6284 if (p
->p_filesz
> lp
->p_vaddr
+ lp
->p_filesz
- p
->p_vaddr
)
6285 p
->p_filesz
= lp
->p_vaddr
+ lp
->p_filesz
- p
->p_vaddr
;
6287 /* Preserve the alignment and flags if they are
6288 valid. The gold linker generates RW/4 for
6289 the PT_GNU_RELRO section. It is better for
6290 objcopy/strip to honor these attributes
6291 otherwise gdb will choke when using separate
6293 if (!m
->p_align_valid
)
6295 if (!m
->p_flags_valid
)
6304 if (link_info
!= NULL
)
6306 (_("%pB: warning: unable to allocate any sections to PT_GNU_RELRO segment"),
6308 memset (p
, 0, sizeof *p
);
6311 else if (p
->p_type
== PT_GNU_STACK
)
6313 if (m
->p_size_valid
)
6314 p
->p_memsz
= m
->p_size
;
6316 else if (m
->count
!= 0)
6320 if (p
->p_type
!= PT_LOAD
6321 && (p
->p_type
!= PT_NOTE
6322 || bfd_get_format (abfd
) != bfd_core
))
6324 /* A user specified segment layout may include a PHDR
6325 segment that overlaps with a LOAD segment... */
6326 if (p
->p_type
== PT_PHDR
)
6332 if (m
->includes_filehdr
|| m
->includes_phdrs
)
6334 /* PR 17512: file: 2195325e. */
6336 (_("%pB: error: non-load segment %d includes file header "
6337 "and/or program header"),
6338 abfd
, (int) (p
- phdrs
));
6343 p
->p_offset
= m
->sections
[0]->filepos
;
6344 for (i
= m
->count
; i
-- != 0;)
6346 asection
*sect
= m
->sections
[i
];
6347 Elf_Internal_Shdr
*hdr
= &elf_section_data (sect
)->this_hdr
;
6348 if (hdr
->sh_type
!= SHT_NOBITS
)
6350 p
->p_filesz
= sect
->filepos
- p
->p_offset
+ hdr
->sh_size
;
6351 /* NB: p_memsz of the loadable PT_NOTE segment
6352 should be the same as p_filesz. */
6353 if (p
->p_type
== PT_NOTE
6354 && (hdr
->sh_flags
& SHF_ALLOC
) != 0)
6355 p
->p_memsz
= p
->p_filesz
;
6366 static elf_section_list
*
6367 find_section_in_list (unsigned int i
, elf_section_list
* list
)
6369 for (;list
!= NULL
; list
= list
->next
)
6375 /* Work out the file positions of all the sections. This is called by
6376 _bfd_elf_compute_section_file_positions. All the section sizes and
6377 VMAs must be known before this is called.
6379 Reloc sections come in two flavours: Those processed specially as
6380 "side-channel" data attached to a section to which they apply, and those that
6381 bfd doesn't process as relocations. The latter sort are stored in a normal
6382 bfd section by bfd_section_from_shdr. We don't consider the former sort
6383 here, unless they form part of the loadable image. Reloc sections not
6384 assigned here (and compressed debugging sections and CTF sections which
6385 nothing else in the file can rely upon) will be handled later by
6386 assign_file_positions_for_relocs.
6388 We also don't set the positions of the .symtab and .strtab here. */
6391 assign_file_positions_except_relocs (bfd
*abfd
,
6392 struct bfd_link_info
*link_info
)
6394 struct elf_obj_tdata
*tdata
= elf_tdata (abfd
);
6395 Elf_Internal_Ehdr
*i_ehdrp
= elf_elfheader (abfd
);
6396 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
6399 if ((abfd
->flags
& (EXEC_P
| DYNAMIC
)) == 0
6400 && bfd_get_format (abfd
) != bfd_core
)
6402 Elf_Internal_Shdr
** const i_shdrpp
= elf_elfsections (abfd
);
6403 unsigned int num_sec
= elf_numsections (abfd
);
6404 Elf_Internal_Shdr
**hdrpp
;
6408 /* Start after the ELF header. */
6409 off
= i_ehdrp
->e_ehsize
;
6411 /* We are not creating an executable, which means that we are
6412 not creating a program header, and that the actual order of
6413 the sections in the file is unimportant. */
6414 for (i
= 1, hdrpp
= i_shdrpp
+ 1; i
< num_sec
; i
++, hdrpp
++)
6416 Elf_Internal_Shdr
*hdr
;
6419 if (((hdr
->sh_type
== SHT_REL
|| hdr
->sh_type
== SHT_RELA
)
6420 && hdr
->bfd_section
== NULL
)
6421 /* Do not assign offsets for these sections yet: we don't know
6423 || (hdr
->bfd_section
!= NULL
6424 && (hdr
->bfd_section
->flags
& SEC_ELF_COMPRESS
6425 || (bfd_section_is_ctf (hdr
->bfd_section
)
6426 && abfd
->is_linker_output
)))
6427 || i
== elf_onesymtab (abfd
)
6428 || (elf_symtab_shndx_list (abfd
) != NULL
6429 && hdr
== i_shdrpp
[elf_symtab_shndx_list (abfd
)->ndx
])
6430 || i
== elf_strtab_sec (abfd
)
6431 || i
== elf_shstrtab_sec (abfd
))
6433 hdr
->sh_offset
= -1;
6436 off
= _bfd_elf_assign_file_position_for_section (hdr
, off
, true);
6439 elf_next_file_pos (abfd
) = off
;
6440 elf_program_header_size (abfd
) = 0;
6444 /* Assign file positions for the loaded sections based on the
6445 assignment of sections to segments. */
6446 if (!assign_file_positions_for_load_sections (abfd
, link_info
))
6449 /* And for non-load sections. */
6450 if (!assign_file_positions_for_non_load_sections (abfd
, link_info
))
6454 if (!(*bed
->elf_backend_modify_headers
) (abfd
, link_info
))
6457 /* Write out the program headers. */
6458 alloc
= i_ehdrp
->e_phnum
;
6461 if (bfd_seek (abfd
, i_ehdrp
->e_phoff
, SEEK_SET
) != 0
6462 || bed
->s
->write_out_phdrs (abfd
, tdata
->phdr
, alloc
) != 0)
6470 _bfd_elf_init_file_header (bfd
*abfd
,
6471 struct bfd_link_info
*info ATTRIBUTE_UNUSED
)
6473 Elf_Internal_Ehdr
*i_ehdrp
; /* Elf file header, internal form. */
6474 struct elf_strtab_hash
*shstrtab
;
6475 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
6477 i_ehdrp
= elf_elfheader (abfd
);
6479 shstrtab
= _bfd_elf_strtab_init ();
6480 if (shstrtab
== NULL
)
6483 elf_shstrtab (abfd
) = shstrtab
;
6485 i_ehdrp
->e_ident
[EI_MAG0
] = ELFMAG0
;
6486 i_ehdrp
->e_ident
[EI_MAG1
] = ELFMAG1
;
6487 i_ehdrp
->e_ident
[EI_MAG2
] = ELFMAG2
;
6488 i_ehdrp
->e_ident
[EI_MAG3
] = ELFMAG3
;
6490 i_ehdrp
->e_ident
[EI_CLASS
] = bed
->s
->elfclass
;
6491 i_ehdrp
->e_ident
[EI_DATA
] =
6492 bfd_big_endian (abfd
) ? ELFDATA2MSB
: ELFDATA2LSB
;
6493 i_ehdrp
->e_ident
[EI_VERSION
] = bed
->s
->ev_current
;
6495 if ((abfd
->flags
& DYNAMIC
) != 0)
6496 i_ehdrp
->e_type
= ET_DYN
;
6497 else if ((abfd
->flags
& EXEC_P
) != 0)
6498 i_ehdrp
->e_type
= ET_EXEC
;
6499 else if (bfd_get_format (abfd
) == bfd_core
)
6500 i_ehdrp
->e_type
= ET_CORE
;
6502 i_ehdrp
->e_type
= ET_REL
;
6504 switch (bfd_get_arch (abfd
))
6506 case bfd_arch_unknown
:
6507 i_ehdrp
->e_machine
= EM_NONE
;
6510 /* There used to be a long list of cases here, each one setting
6511 e_machine to the same EM_* macro #defined as ELF_MACHINE_CODE
6512 in the corresponding bfd definition. To avoid duplication,
6513 the switch was removed. Machines that need special handling
6514 can generally do it in elf_backend_final_write_processing(),
6515 unless they need the information earlier than the final write.
6516 Such need can generally be supplied by replacing the tests for
6517 e_machine with the conditions used to determine it. */
6519 i_ehdrp
->e_machine
= bed
->elf_machine_code
;
6522 i_ehdrp
->e_version
= bed
->s
->ev_current
;
6523 i_ehdrp
->e_ehsize
= bed
->s
->sizeof_ehdr
;
6525 /* No program header, for now. */
6526 i_ehdrp
->e_phoff
= 0;
6527 i_ehdrp
->e_phentsize
= 0;
6528 i_ehdrp
->e_phnum
= 0;
6530 /* Each bfd section is section header entry. */
6531 i_ehdrp
->e_entry
= bfd_get_start_address (abfd
);
6532 i_ehdrp
->e_shentsize
= bed
->s
->sizeof_shdr
;
6534 elf_tdata (abfd
)->symtab_hdr
.sh_name
=
6535 (unsigned int) _bfd_elf_strtab_add (shstrtab
, ".symtab", false);
6536 elf_tdata (abfd
)->strtab_hdr
.sh_name
=
6537 (unsigned int) _bfd_elf_strtab_add (shstrtab
, ".strtab", false);
6538 elf_tdata (abfd
)->shstrtab_hdr
.sh_name
=
6539 (unsigned int) _bfd_elf_strtab_add (shstrtab
, ".shstrtab", false);
6540 if (elf_tdata (abfd
)->symtab_hdr
.sh_name
== (unsigned int) -1
6541 || elf_tdata (abfd
)->strtab_hdr
.sh_name
== (unsigned int) -1
6542 || elf_tdata (abfd
)->shstrtab_hdr
.sh_name
== (unsigned int) -1)
6548 /* Set e_type in ELF header to ET_EXEC for -pie -Ttext-segment=.
6550 FIXME: We used to have code here to sort the PT_LOAD segments into
6551 ascending order, as per the ELF spec. But this breaks some programs,
6552 including the Linux kernel. But really either the spec should be
6553 changed or the programs updated. */
6556 _bfd_elf_modify_headers (bfd
*obfd
, struct bfd_link_info
*link_info
)
6558 if (link_info
!= NULL
&& bfd_link_pie (link_info
))
6560 Elf_Internal_Ehdr
*i_ehdrp
= elf_elfheader (obfd
);
6561 unsigned int num_segments
= i_ehdrp
->e_phnum
;
6562 struct elf_obj_tdata
*tdata
= elf_tdata (obfd
);
6563 Elf_Internal_Phdr
*segment
= tdata
->phdr
;
6564 Elf_Internal_Phdr
*end_segment
= &segment
[num_segments
];
6566 /* Find the lowest p_vaddr in PT_LOAD segments. */
6567 bfd_vma p_vaddr
= (bfd_vma
) -1;
6568 for (; segment
< end_segment
; segment
++)
6569 if (segment
->p_type
== PT_LOAD
&& p_vaddr
> segment
->p_vaddr
)
6570 p_vaddr
= segment
->p_vaddr
;
6572 /* Set e_type to ET_EXEC if the lowest p_vaddr in PT_LOAD
6573 segments is non-zero. */
6575 i_ehdrp
->e_type
= ET_EXEC
;
6580 /* Assign file positions for all the reloc sections which are not part
6581 of the loadable file image, and the file position of section headers. */
6584 _bfd_elf_assign_file_positions_for_non_load (bfd
*abfd
)
6587 Elf_Internal_Shdr
**shdrpp
, **end_shdrpp
;
6588 Elf_Internal_Shdr
*shdrp
;
6589 Elf_Internal_Ehdr
*i_ehdrp
;
6590 const struct elf_backend_data
*bed
;
6592 off
= elf_next_file_pos (abfd
);
6594 shdrpp
= elf_elfsections (abfd
);
6595 end_shdrpp
= shdrpp
+ elf_numsections (abfd
);
6596 for (shdrpp
++; shdrpp
< end_shdrpp
; shdrpp
++)
6599 if (shdrp
->sh_offset
== -1)
6601 asection
*sec
= shdrp
->bfd_section
;
6602 bool is_rel
= (shdrp
->sh_type
== SHT_REL
6603 || shdrp
->sh_type
== SHT_RELA
);
6604 bool is_ctf
= sec
&& bfd_section_is_ctf (sec
);
6607 || (sec
!= NULL
&& (sec
->flags
& SEC_ELF_COMPRESS
)))
6609 if (!is_rel
&& !is_ctf
)
6611 const char *name
= sec
->name
;
6612 struct bfd_elf_section_data
*d
;
6614 /* Compress DWARF debug sections. */
6615 if (!bfd_compress_section (abfd
, sec
,
6619 if (sec
->compress_status
== COMPRESS_SECTION_DONE
6620 && (abfd
->flags
& BFD_COMPRESS_GABI
) == 0)
6622 /* If section is compressed with zlib-gnu, convert
6623 section name from .debug_* to .zdebug_*. */
6625 = convert_debug_to_zdebug (abfd
, name
);
6626 if (new_name
== NULL
)
6630 /* Add section name to section name section. */
6631 if (shdrp
->sh_name
!= (unsigned int) -1)
6634 = (unsigned int) _bfd_elf_strtab_add (elf_shstrtab (abfd
),
6636 d
= elf_section_data (sec
);
6638 /* Add reloc section name to section name section. */
6640 && !_bfd_elf_set_reloc_sh_name (abfd
,
6645 && !_bfd_elf_set_reloc_sh_name (abfd
,
6650 /* Update section size and contents. */
6651 shdrp
->sh_size
= sec
->size
;
6652 shdrp
->contents
= sec
->contents
;
6653 shdrp
->bfd_section
->contents
= NULL
;
6657 /* Update section size and contents. */
6658 shdrp
->sh_size
= sec
->size
;
6659 shdrp
->contents
= sec
->contents
;
6662 off
= _bfd_elf_assign_file_position_for_section (shdrp
,
6669 /* Place section name section after DWARF debug sections have been
6671 _bfd_elf_strtab_finalize (elf_shstrtab (abfd
));
6672 shdrp
= &elf_tdata (abfd
)->shstrtab_hdr
;
6673 shdrp
->sh_size
= _bfd_elf_strtab_size (elf_shstrtab (abfd
));
6674 off
= _bfd_elf_assign_file_position_for_section (shdrp
, off
, true);
6676 /* Place the section headers. */
6677 i_ehdrp
= elf_elfheader (abfd
);
6678 bed
= get_elf_backend_data (abfd
);
6679 off
= align_file_position (off
, 1 << bed
->s
->log_file_align
);
6680 i_ehdrp
->e_shoff
= off
;
6681 off
+= i_ehdrp
->e_shnum
* i_ehdrp
->e_shentsize
;
6682 elf_next_file_pos (abfd
) = off
;
6688 _bfd_elf_write_object_contents (bfd
*abfd
)
6690 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
6691 Elf_Internal_Shdr
**i_shdrp
;
6693 unsigned int count
, num_sec
;
6694 struct elf_obj_tdata
*t
;
6696 if (! abfd
->output_has_begun
6697 && ! _bfd_elf_compute_section_file_positions (abfd
, NULL
))
6699 /* Do not rewrite ELF data when the BFD has been opened for update.
6700 abfd->output_has_begun was set to TRUE on opening, so creation of new
6701 sections, and modification of existing section sizes was restricted.
6702 This means the ELF header, program headers and section headers can't have
6704 If the contents of any sections has been modified, then those changes have
6705 already been written to the BFD. */
6706 else if (abfd
->direction
== both_direction
)
6708 BFD_ASSERT (abfd
->output_has_begun
);
6712 i_shdrp
= elf_elfsections (abfd
);
6715 bfd_map_over_sections (abfd
, bed
->s
->write_relocs
, &failed
);
6719 if (!_bfd_elf_assign_file_positions_for_non_load (abfd
))
6722 /* After writing the headers, we need to write the sections too... */
6723 num_sec
= elf_numsections (abfd
);
6724 for (count
= 1; count
< num_sec
; count
++)
6726 i_shdrp
[count
]->sh_name
6727 = _bfd_elf_strtab_offset (elf_shstrtab (abfd
),
6728 i_shdrp
[count
]->sh_name
);
6729 if (bed
->elf_backend_section_processing
)
6730 if (!(*bed
->elf_backend_section_processing
) (abfd
, i_shdrp
[count
]))
6732 if (i_shdrp
[count
]->contents
)
6734 bfd_size_type amt
= i_shdrp
[count
]->sh_size
;
6736 if (bfd_seek (abfd
, i_shdrp
[count
]->sh_offset
, SEEK_SET
) != 0
6737 || bfd_bwrite (i_shdrp
[count
]->contents
, amt
, abfd
) != amt
)
6742 /* Write out the section header names. */
6743 t
= elf_tdata (abfd
);
6744 if (elf_shstrtab (abfd
) != NULL
6745 && (bfd_seek (abfd
, t
->shstrtab_hdr
.sh_offset
, SEEK_SET
) != 0
6746 || !_bfd_elf_strtab_emit (abfd
, elf_shstrtab (abfd
))))
6749 if (!(*bed
->elf_backend_final_write_processing
) (abfd
))
6752 if (!bed
->s
->write_shdrs_and_ehdr (abfd
))
6755 /* This is last since write_shdrs_and_ehdr can touch i_shdrp[0]. */
6756 if (t
->o
->build_id
.after_write_object_contents
!= NULL
)
6757 return (*t
->o
->build_id
.after_write_object_contents
) (abfd
);
6763 _bfd_elf_write_corefile_contents (bfd
*abfd
)
6765 /* Hopefully this can be done just like an object file. */
6766 return _bfd_elf_write_object_contents (abfd
);
6769 /* Given a section, search the header to find them. */
6772 _bfd_elf_section_from_bfd_section (bfd
*abfd
, struct bfd_section
*asect
)
6774 const struct elf_backend_data
*bed
;
6775 unsigned int sec_index
;
6777 if (elf_section_data (asect
) != NULL
6778 && elf_section_data (asect
)->this_idx
!= 0)
6779 return elf_section_data (asect
)->this_idx
;
6781 if (bfd_is_abs_section (asect
))
6782 sec_index
= SHN_ABS
;
6783 else if (bfd_is_com_section (asect
))
6784 sec_index
= SHN_COMMON
;
6785 else if (bfd_is_und_section (asect
))
6786 sec_index
= SHN_UNDEF
;
6788 sec_index
= SHN_BAD
;
6790 bed
= get_elf_backend_data (abfd
);
6791 if (bed
->elf_backend_section_from_bfd_section
)
6793 int retval
= sec_index
;
6795 if ((*bed
->elf_backend_section_from_bfd_section
) (abfd
, asect
, &retval
))
6799 if (sec_index
== SHN_BAD
)
6800 bfd_set_error (bfd_error_nonrepresentable_section
);
6805 /* Given a BFD symbol, return the index in the ELF symbol table, or -1
6809 _bfd_elf_symbol_from_bfd_symbol (bfd
*abfd
, asymbol
**asym_ptr_ptr
)
6811 asymbol
*asym_ptr
= *asym_ptr_ptr
;
6813 flagword flags
= asym_ptr
->flags
;
6815 /* When gas creates relocations against local labels, it creates its
6816 own symbol for the section, but does put the symbol into the
6817 symbol chain, so udata is 0. When the linker is generating
6818 relocatable output, this section symbol may be for one of the
6819 input sections rather than the output section. */
6820 if (asym_ptr
->udata
.i
== 0
6821 && (flags
& BSF_SECTION_SYM
)
6822 && asym_ptr
->section
)
6826 sec
= asym_ptr
->section
;
6827 if (sec
->owner
!= abfd
&& sec
->output_section
!= NULL
)
6828 sec
= sec
->output_section
;
6829 if (sec
->owner
== abfd
6830 && sec
->index
< elf_num_section_syms (abfd
)
6831 && elf_section_syms (abfd
)[sec
->index
] != NULL
)
6832 asym_ptr
->udata
.i
= elf_section_syms (abfd
)[sec
->index
]->udata
.i
;
6835 idx
= asym_ptr
->udata
.i
;
6839 /* This case can occur when using --strip-symbol on a symbol
6840 which is used in a relocation entry. */
6842 /* xgettext:c-format */
6843 (_("%pB: symbol `%s' required but not present"),
6844 abfd
, bfd_asymbol_name (asym_ptr
));
6845 bfd_set_error (bfd_error_no_symbols
);
6852 "elf_symbol_from_bfd_symbol 0x%.8lx, name = %s, sym num = %d, flags = 0x%.8x\n",
6853 (long) asym_ptr
, asym_ptr
->name
, idx
, flags
);
6861 /* Rewrite program header information. */
6864 rewrite_elf_program_header (bfd
*ibfd
, bfd
*obfd
, bfd_vma maxpagesize
)
6866 Elf_Internal_Ehdr
*iehdr
;
6867 struct elf_segment_map
*map
;
6868 struct elf_segment_map
*map_first
;
6869 struct elf_segment_map
**pointer_to_map
;
6870 Elf_Internal_Phdr
*segment
;
6873 unsigned int num_segments
;
6874 bool phdr_included
= false;
6876 struct elf_segment_map
*phdr_adjust_seg
= NULL
;
6877 unsigned int phdr_adjust_num
= 0;
6878 const struct elf_backend_data
*bed
;
6879 unsigned int opb
= bfd_octets_per_byte (ibfd
, NULL
);
6881 bed
= get_elf_backend_data (ibfd
);
6882 iehdr
= elf_elfheader (ibfd
);
6885 pointer_to_map
= &map_first
;
6887 num_segments
= elf_elfheader (ibfd
)->e_phnum
;
6889 /* Returns the end address of the segment + 1. */
6890 #define SEGMENT_END(segment, start) \
6891 (start + (segment->p_memsz > segment->p_filesz \
6892 ? segment->p_memsz : segment->p_filesz))
6894 #define SECTION_SIZE(section, segment) \
6895 (((section->flags & (SEC_HAS_CONTENTS | SEC_THREAD_LOCAL)) \
6896 != SEC_THREAD_LOCAL || segment->p_type == PT_TLS) \
6897 ? section->size : 0)
6899 /* Returns TRUE if the given section is contained within
6900 the given segment. VMA addresses are compared. */
6901 #define IS_CONTAINED_BY_VMA(section, segment, opb) \
6902 (section->vma * (opb) >= segment->p_vaddr \
6903 && (section->vma * (opb) + SECTION_SIZE (section, segment) \
6904 <= (SEGMENT_END (segment, segment->p_vaddr))))
6906 /* Returns TRUE if the given section is contained within
6907 the given segment. LMA addresses are compared. */
6908 #define IS_CONTAINED_BY_LMA(section, segment, base, opb) \
6909 (section->lma * (opb) >= base \
6910 && (section->lma + SECTION_SIZE (section, segment) / (opb) >= section->lma) \
6911 && (section->lma * (opb) + SECTION_SIZE (section, segment) \
6912 <= SEGMENT_END (segment, base)))
6914 /* Handle PT_NOTE segment. */
6915 #define IS_NOTE(p, s) \
6916 (p->p_type == PT_NOTE \
6917 && elf_section_type (s) == SHT_NOTE \
6918 && (bfd_vma) s->filepos >= p->p_offset \
6919 && ((bfd_vma) s->filepos + s->size \
6920 <= p->p_offset + p->p_filesz))
6922 /* Special case: corefile "NOTE" section containing regs, prpsinfo
6924 #define IS_COREFILE_NOTE(p, s) \
6926 && bfd_get_format (ibfd) == bfd_core \
6930 /* The complicated case when p_vaddr is 0 is to handle the Solaris
6931 linker, which generates a PT_INTERP section with p_vaddr and
6932 p_memsz set to 0. */
6933 #define IS_SOLARIS_PT_INTERP(p, s) \
6935 && p->p_paddr == 0 \
6936 && p->p_memsz == 0 \
6937 && p->p_filesz > 0 \
6938 && (s->flags & SEC_HAS_CONTENTS) != 0 \
6940 && (bfd_vma) s->filepos >= p->p_offset \
6941 && ((bfd_vma) s->filepos + s->size \
6942 <= p->p_offset + p->p_filesz))
6944 /* Decide if the given section should be included in the given segment.
6945 A section will be included if:
6946 1. It is within the address space of the segment -- we use the LMA
6947 if that is set for the segment and the VMA otherwise,
6948 2. It is an allocated section or a NOTE section in a PT_NOTE
6950 3. There is an output section associated with it,
6951 4. The section has not already been allocated to a previous segment.
6952 5. PT_GNU_STACK segments do not include any sections.
6953 6. PT_TLS segment includes only SHF_TLS sections.
6954 7. SHF_TLS sections are only in PT_TLS or PT_LOAD segments.
6955 8. PT_DYNAMIC should not contain empty sections at the beginning
6956 (with the possible exception of .dynamic). */
6957 #define IS_SECTION_IN_INPUT_SEGMENT(section, segment, bed, opb) \
6958 ((((segment->p_paddr \
6959 ? IS_CONTAINED_BY_LMA (section, segment, segment->p_paddr, opb) \
6960 : IS_CONTAINED_BY_VMA (section, segment, opb)) \
6961 && (section->flags & SEC_ALLOC) != 0) \
6962 || IS_NOTE (segment, section)) \
6963 && segment->p_type != PT_GNU_STACK \
6964 && (segment->p_type != PT_TLS \
6965 || (section->flags & SEC_THREAD_LOCAL)) \
6966 && (segment->p_type == PT_LOAD \
6967 || segment->p_type == PT_TLS \
6968 || (section->flags & SEC_THREAD_LOCAL) == 0) \
6969 && (segment->p_type != PT_DYNAMIC \
6970 || SECTION_SIZE (section, segment) > 0 \
6971 || (segment->p_paddr \
6972 ? segment->p_paddr != section->lma * (opb) \
6973 : segment->p_vaddr != section->vma * (opb)) \
6974 || (strcmp (bfd_section_name (section), ".dynamic") == 0)) \
6975 && (segment->p_type != PT_LOAD || !section->segment_mark))
6977 /* If the output section of a section in the input segment is NULL,
6978 it is removed from the corresponding output segment. */
6979 #define INCLUDE_SECTION_IN_SEGMENT(section, segment, bed, opb) \
6980 (IS_SECTION_IN_INPUT_SEGMENT (section, segment, bed, opb) \
6981 && section->output_section != NULL)
6983 /* Returns TRUE iff seg1 starts after the end of seg2. */
6984 #define SEGMENT_AFTER_SEGMENT(seg1, seg2, field) \
6985 (seg1->field >= SEGMENT_END (seg2, seg2->field))
6987 /* Returns TRUE iff seg1 and seg2 overlap. Segments overlap iff both
6988 their VMA address ranges and their LMA address ranges overlap.
6989 It is possible to have overlapping VMA ranges without overlapping LMA
6990 ranges. RedBoot images for example can have both .data and .bss mapped
6991 to the same VMA range, but with the .data section mapped to a different
6993 #define SEGMENT_OVERLAPS(seg1, seg2) \
6994 ( !(SEGMENT_AFTER_SEGMENT (seg1, seg2, p_vaddr) \
6995 || SEGMENT_AFTER_SEGMENT (seg2, seg1, p_vaddr)) \
6996 && !(SEGMENT_AFTER_SEGMENT (seg1, seg2, p_paddr) \
6997 || SEGMENT_AFTER_SEGMENT (seg2, seg1, p_paddr)))
6999 /* Initialise the segment mark field, and discard stupid alignment. */
7000 for (section
= ibfd
->sections
; section
!= NULL
; section
= section
->next
)
7002 asection
*o
= section
->output_section
;
7003 if (o
!= NULL
&& o
->alignment_power
>= (sizeof (bfd_vma
) * 8) - 1)
7004 o
->alignment_power
= 0;
7005 section
->segment_mark
= false;
7008 /* The Solaris linker creates program headers in which all the
7009 p_paddr fields are zero. When we try to objcopy or strip such a
7010 file, we get confused. Check for this case, and if we find it
7011 don't set the p_paddr_valid fields. */
7012 p_paddr_valid
= false;
7013 for (i
= 0, segment
= elf_tdata (ibfd
)->phdr
;
7016 if (segment
->p_paddr
!= 0)
7018 p_paddr_valid
= true;
7022 /* Scan through the segments specified in the program header
7023 of the input BFD. For this first scan we look for overlaps
7024 in the loadable segments. These can be created by weird
7025 parameters to objcopy. Also, fix some solaris weirdness. */
7026 for (i
= 0, segment
= elf_tdata (ibfd
)->phdr
;
7031 Elf_Internal_Phdr
*segment2
;
7033 if (segment
->p_type
== PT_INTERP
)
7034 for (section
= ibfd
->sections
; section
; section
= section
->next
)
7035 if (IS_SOLARIS_PT_INTERP (segment
, section
))
7037 /* Mininal change so that the normal section to segment
7038 assignment code will work. */
7039 segment
->p_vaddr
= section
->vma
* opb
;
7043 if (segment
->p_type
!= PT_LOAD
)
7045 /* Remove PT_GNU_RELRO segment. */
7046 if (segment
->p_type
== PT_GNU_RELRO
)
7047 segment
->p_type
= PT_NULL
;
7051 /* Determine if this segment overlaps any previous segments. */
7052 for (j
= 0, segment2
= elf_tdata (ibfd
)->phdr
; j
< i
; j
++, segment2
++)
7054 bfd_signed_vma extra_length
;
7056 if (segment2
->p_type
!= PT_LOAD
7057 || !SEGMENT_OVERLAPS (segment
, segment2
))
7060 /* Merge the two segments together. */
7061 if (segment2
->p_vaddr
< segment
->p_vaddr
)
7063 /* Extend SEGMENT2 to include SEGMENT and then delete
7065 extra_length
= (SEGMENT_END (segment
, segment
->p_vaddr
)
7066 - SEGMENT_END (segment2
, segment2
->p_vaddr
));
7068 if (extra_length
> 0)
7070 segment2
->p_memsz
+= extra_length
;
7071 segment2
->p_filesz
+= extra_length
;
7074 segment
->p_type
= PT_NULL
;
7076 /* Since we have deleted P we must restart the outer loop. */
7078 segment
= elf_tdata (ibfd
)->phdr
;
7083 /* Extend SEGMENT to include SEGMENT2 and then delete
7085 extra_length
= (SEGMENT_END (segment2
, segment2
->p_vaddr
)
7086 - SEGMENT_END (segment
, segment
->p_vaddr
));
7088 if (extra_length
> 0)
7090 segment
->p_memsz
+= extra_length
;
7091 segment
->p_filesz
+= extra_length
;
7094 segment2
->p_type
= PT_NULL
;
7099 /* The second scan attempts to assign sections to segments. */
7100 for (i
= 0, segment
= elf_tdata (ibfd
)->phdr
;
7104 unsigned int section_count
;
7105 asection
**sections
;
7106 asection
*output_section
;
7108 asection
*matching_lma
;
7109 asection
*suggested_lma
;
7112 asection
*first_section
;
7114 if (segment
->p_type
== PT_NULL
)
7117 first_section
= NULL
;
7118 /* Compute how many sections might be placed into this segment. */
7119 for (section
= ibfd
->sections
, section_count
= 0;
7121 section
= section
->next
)
7123 /* Find the first section in the input segment, which may be
7124 removed from the corresponding output segment. */
7125 if (IS_SECTION_IN_INPUT_SEGMENT (section
, segment
, bed
, opb
))
7127 if (first_section
== NULL
)
7128 first_section
= section
;
7129 if (section
->output_section
!= NULL
)
7134 /* Allocate a segment map big enough to contain
7135 all of the sections we have selected. */
7136 amt
= sizeof (struct elf_segment_map
) - sizeof (asection
*);
7137 amt
+= section_count
* sizeof (asection
*);
7138 map
= (struct elf_segment_map
*) bfd_zalloc (obfd
, amt
);
7142 /* Initialise the fields of the segment map. Default to
7143 using the physical address of the segment in the input BFD. */
7145 map
->p_type
= segment
->p_type
;
7146 map
->p_flags
= segment
->p_flags
;
7147 map
->p_flags_valid
= 1;
7149 if (map
->p_type
== PT_LOAD
7150 && (ibfd
->flags
& D_PAGED
) != 0
7152 && segment
->p_align
> 1)
7154 map
->p_align
= segment
->p_align
;
7155 if (segment
->p_align
> maxpagesize
)
7156 map
->p_align
= maxpagesize
;
7157 map
->p_align_valid
= 1;
7160 /* If the first section in the input segment is removed, there is
7161 no need to preserve segment physical address in the corresponding
7163 if (!first_section
|| first_section
->output_section
!= NULL
)
7165 map
->p_paddr
= segment
->p_paddr
;
7166 map
->p_paddr_valid
= p_paddr_valid
;
7169 /* Determine if this segment contains the ELF file header
7170 and if it contains the program headers themselves. */
7171 map
->includes_filehdr
= (segment
->p_offset
== 0
7172 && segment
->p_filesz
>= iehdr
->e_ehsize
);
7173 map
->includes_phdrs
= 0;
7175 if (!phdr_included
|| segment
->p_type
!= PT_LOAD
)
7177 map
->includes_phdrs
=
7178 (segment
->p_offset
<= (bfd_vma
) iehdr
->e_phoff
7179 && (segment
->p_offset
+ segment
->p_filesz
7180 >= ((bfd_vma
) iehdr
->e_phoff
7181 + iehdr
->e_phnum
* iehdr
->e_phentsize
)));
7183 if (segment
->p_type
== PT_LOAD
&& map
->includes_phdrs
)
7184 phdr_included
= true;
7187 if (section_count
== 0)
7189 /* Special segments, such as the PT_PHDR segment, may contain
7190 no sections, but ordinary, loadable segments should contain
7191 something. They are allowed by the ELF spec however, so only
7192 a warning is produced.
7193 There is however the valid use case of embedded systems which
7194 have segments with p_filesz of 0 and a p_memsz > 0 to initialize
7195 flash memory with zeros. No warning is shown for that case. */
7196 if (segment
->p_type
== PT_LOAD
7197 && (segment
->p_filesz
> 0 || segment
->p_memsz
== 0))
7198 /* xgettext:c-format */
7200 (_("%pB: warning: empty loadable segment detected"
7201 " at vaddr=%#" PRIx64
", is this intentional?"),
7202 ibfd
, (uint64_t) segment
->p_vaddr
);
7204 map
->p_vaddr_offset
= segment
->p_vaddr
/ opb
;
7206 *pointer_to_map
= map
;
7207 pointer_to_map
= &map
->next
;
7212 /* Now scan the sections in the input BFD again and attempt
7213 to add their corresponding output sections to the segment map.
7214 The problem here is how to handle an output section which has
7215 been moved (ie had its LMA changed). There are four possibilities:
7217 1. None of the sections have been moved.
7218 In this case we can continue to use the segment LMA from the
7221 2. All of the sections have been moved by the same amount.
7222 In this case we can change the segment's LMA to match the LMA
7223 of the first section.
7225 3. Some of the sections have been moved, others have not.
7226 In this case those sections which have not been moved can be
7227 placed in the current segment which will have to have its size,
7228 and possibly its LMA changed, and a new segment or segments will
7229 have to be created to contain the other sections.
7231 4. The sections have been moved, but not by the same amount.
7232 In this case we can change the segment's LMA to match the LMA
7233 of the first section and we will have to create a new segment
7234 or segments to contain the other sections.
7236 In order to save time, we allocate an array to hold the section
7237 pointers that we are interested in. As these sections get assigned
7238 to a segment, they are removed from this array. */
7240 amt
= section_count
* sizeof (asection
*);
7241 sections
= (asection
**) bfd_malloc (amt
);
7242 if (sections
== NULL
)
7245 /* Step One: Scan for segment vs section LMA conflicts.
7246 Also add the sections to the section array allocated above.
7247 Also add the sections to the current segment. In the common
7248 case, where the sections have not been moved, this means that
7249 we have completely filled the segment, and there is nothing
7252 matching_lma
= NULL
;
7253 suggested_lma
= NULL
;
7255 for (section
= first_section
, j
= 0;
7257 section
= section
->next
)
7259 if (INCLUDE_SECTION_IN_SEGMENT (section
, segment
, bed
, opb
))
7261 output_section
= section
->output_section
;
7263 sections
[j
++] = section
;
7265 /* The Solaris native linker always sets p_paddr to 0.
7266 We try to catch that case here, and set it to the
7267 correct value. Note - some backends require that
7268 p_paddr be left as zero. */
7270 && segment
->p_vaddr
!= 0
7271 && !bed
->want_p_paddr_set_to_zero
7273 && output_section
->lma
!= 0
7274 && (align_power (segment
->p_vaddr
7275 + (map
->includes_filehdr
7276 ? iehdr
->e_ehsize
: 0)
7277 + (map
->includes_phdrs
7278 ? iehdr
->e_phnum
* iehdr
->e_phentsize
7280 output_section
->alignment_power
* opb
)
7281 == (output_section
->vma
* opb
)))
7282 map
->p_paddr
= segment
->p_vaddr
;
7284 /* Match up the physical address of the segment with the
7285 LMA address of the output section. */
7286 if (IS_CONTAINED_BY_LMA (output_section
, segment
, map
->p_paddr
,
7288 || IS_COREFILE_NOTE (segment
, section
)
7289 || (bed
->want_p_paddr_set_to_zero
7290 && IS_CONTAINED_BY_VMA (output_section
, segment
, opb
)))
7292 if (matching_lma
== NULL
7293 || output_section
->lma
< matching_lma
->lma
)
7294 matching_lma
= output_section
;
7296 /* We assume that if the section fits within the segment
7297 then it does not overlap any other section within that
7299 map
->sections
[isec
++] = output_section
;
7301 else if (suggested_lma
== NULL
)
7302 suggested_lma
= output_section
;
7304 if (j
== section_count
)
7309 BFD_ASSERT (j
== section_count
);
7311 /* Step Two: Adjust the physical address of the current segment,
7313 if (isec
== section_count
)
7315 /* All of the sections fitted within the segment as currently
7316 specified. This is the default case. Add the segment to
7317 the list of built segments and carry on to process the next
7318 program header in the input BFD. */
7319 map
->count
= section_count
;
7320 *pointer_to_map
= map
;
7321 pointer_to_map
= &map
->next
;
7324 && !bed
->want_p_paddr_set_to_zero
)
7326 bfd_vma hdr_size
= 0;
7327 if (map
->includes_filehdr
)
7328 hdr_size
= iehdr
->e_ehsize
;
7329 if (map
->includes_phdrs
)
7330 hdr_size
+= iehdr
->e_phnum
* iehdr
->e_phentsize
;
7332 /* Account for padding before the first section in the
7334 map
->p_vaddr_offset
= ((map
->p_paddr
+ hdr_size
) / opb
7335 - matching_lma
->lma
);
7343 /* Change the current segment's physical address to match
7344 the LMA of the first section that fitted, or if no
7345 section fitted, the first section. */
7346 if (matching_lma
== NULL
)
7347 matching_lma
= suggested_lma
;
7349 map
->p_paddr
= matching_lma
->lma
* opb
;
7351 /* Offset the segment physical address from the lma
7352 to allow for space taken up by elf headers. */
7353 if (map
->includes_phdrs
)
7355 map
->p_paddr
-= iehdr
->e_phnum
* iehdr
->e_phentsize
;
7357 /* iehdr->e_phnum is just an estimate of the number
7358 of program headers that we will need. Make a note
7359 here of the number we used and the segment we chose
7360 to hold these headers, so that we can adjust the
7361 offset when we know the correct value. */
7362 phdr_adjust_num
= iehdr
->e_phnum
;
7363 phdr_adjust_seg
= map
;
7366 if (map
->includes_filehdr
)
7368 bfd_vma align
= (bfd_vma
) 1 << matching_lma
->alignment_power
;
7369 map
->p_paddr
-= iehdr
->e_ehsize
;
7370 /* We've subtracted off the size of headers from the
7371 first section lma, but there may have been some
7372 alignment padding before that section too. Try to
7373 account for that by adjusting the segment lma down to
7374 the same alignment. */
7375 if (segment
->p_align
!= 0 && segment
->p_align
< align
)
7376 align
= segment
->p_align
;
7377 map
->p_paddr
&= -(align
* opb
);
7381 /* Step Three: Loop over the sections again, this time assigning
7382 those that fit to the current segment and removing them from the
7383 sections array; but making sure not to leave large gaps. Once all
7384 possible sections have been assigned to the current segment it is
7385 added to the list of built segments and if sections still remain
7386 to be assigned, a new segment is constructed before repeating
7392 suggested_lma
= NULL
;
7394 /* Fill the current segment with sections that fit. */
7395 for (j
= 0; j
< section_count
; j
++)
7397 section
= sections
[j
];
7399 if (section
== NULL
)
7402 output_section
= section
->output_section
;
7404 BFD_ASSERT (output_section
!= NULL
);
7406 if (IS_CONTAINED_BY_LMA (output_section
, segment
, map
->p_paddr
,
7408 || IS_COREFILE_NOTE (segment
, section
))
7410 if (map
->count
== 0)
7412 /* If the first section in a segment does not start at
7413 the beginning of the segment, then something is
7415 if (align_power (map
->p_paddr
7416 + (map
->includes_filehdr
7417 ? iehdr
->e_ehsize
: 0)
7418 + (map
->includes_phdrs
7419 ? iehdr
->e_phnum
* iehdr
->e_phentsize
7421 output_section
->alignment_power
* opb
)
7422 != output_section
->lma
* opb
)
7429 prev_sec
= map
->sections
[map
->count
- 1];
7431 /* If the gap between the end of the previous section
7432 and the start of this section is more than
7433 maxpagesize then we need to start a new segment. */
7434 if ((BFD_ALIGN (prev_sec
->lma
+ prev_sec
->size
,
7436 < BFD_ALIGN (output_section
->lma
, maxpagesize
))
7437 || (prev_sec
->lma
+ prev_sec
->size
7438 > output_section
->lma
))
7440 if (suggested_lma
== NULL
)
7441 suggested_lma
= output_section
;
7447 map
->sections
[map
->count
++] = output_section
;
7450 if (segment
->p_type
== PT_LOAD
)
7451 section
->segment_mark
= true;
7453 else if (suggested_lma
== NULL
)
7454 suggested_lma
= output_section
;
7457 /* PR 23932. A corrupt input file may contain sections that cannot
7458 be assigned to any segment - because for example they have a
7459 negative size - or segments that do not contain any sections.
7460 But there are also valid reasons why a segment can be empty.
7461 So allow a count of zero. */
7463 /* Add the current segment to the list of built segments. */
7464 *pointer_to_map
= map
;
7465 pointer_to_map
= &map
->next
;
7467 if (isec
< section_count
)
7469 /* We still have not allocated all of the sections to
7470 segments. Create a new segment here, initialise it
7471 and carry on looping. */
7472 amt
= sizeof (struct elf_segment_map
) - sizeof (asection
*);
7473 amt
+= section_count
* sizeof (asection
*);
7474 map
= (struct elf_segment_map
*) bfd_zalloc (obfd
, amt
);
7481 /* Initialise the fields of the segment map. Set the physical
7482 physical address to the LMA of the first section that has
7483 not yet been assigned. */
7485 map
->p_type
= segment
->p_type
;
7486 map
->p_flags
= segment
->p_flags
;
7487 map
->p_flags_valid
= 1;
7488 map
->p_paddr
= suggested_lma
->lma
* opb
;
7489 map
->p_paddr_valid
= p_paddr_valid
;
7490 map
->includes_filehdr
= 0;
7491 map
->includes_phdrs
= 0;
7496 bfd_set_error (bfd_error_sorry
);
7500 while (isec
< section_count
);
7505 elf_seg_map (obfd
) = map_first
;
7507 /* If we had to estimate the number of program headers that were
7508 going to be needed, then check our estimate now and adjust
7509 the offset if necessary. */
7510 if (phdr_adjust_seg
!= NULL
)
7514 for (count
= 0, map
= map_first
; map
!= NULL
; map
= map
->next
)
7517 if (count
> phdr_adjust_num
)
7518 phdr_adjust_seg
->p_paddr
7519 -= (count
- phdr_adjust_num
) * iehdr
->e_phentsize
;
7521 for (map
= map_first
; map
!= NULL
; map
= map
->next
)
7522 if (map
->p_type
== PT_PHDR
)
7525 = phdr_adjust_seg
->includes_filehdr
? iehdr
->e_ehsize
: 0;
7526 map
->p_paddr
= phdr_adjust_seg
->p_paddr
+ adjust
;
7533 #undef IS_CONTAINED_BY_VMA
7534 #undef IS_CONTAINED_BY_LMA
7536 #undef IS_COREFILE_NOTE
7537 #undef IS_SOLARIS_PT_INTERP
7538 #undef IS_SECTION_IN_INPUT_SEGMENT
7539 #undef INCLUDE_SECTION_IN_SEGMENT
7540 #undef SEGMENT_AFTER_SEGMENT
7541 #undef SEGMENT_OVERLAPS
7545 /* Return true if p_align in the ELF program header in ABFD is valid. */
7548 elf_is_p_align_valid (bfd
*abfd
)
7551 Elf_Internal_Phdr
*segment
;
7552 unsigned int num_segments
;
7553 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
7554 bfd_size_type maxpagesize
= bed
->maxpagesize
;
7555 bfd_size_type p_align
= bed
->p_align
;
7557 /* Return true if the default p_align value isn't set or the maximum
7558 page size is the same as the minimum page size. */
7559 if (p_align
== 0 || maxpagesize
== bed
->minpagesize
)
7562 /* When the default p_align value is set, p_align may be set to the
7563 default p_align value while segments are aligned to the maximum
7564 page size. In this case, the input p_align will be ignored and
7565 the maximum page size will be used to align the output segments. */
7566 segment
= elf_tdata (abfd
)->phdr
;
7567 num_segments
= elf_elfheader (abfd
)->e_phnum
;
7568 for (i
= 0; i
< num_segments
; i
++, segment
++)
7569 if (segment
->p_type
== PT_LOAD
7570 && (segment
->p_align
!= p_align
7571 || vma_page_aligned_bias (segment
->p_vaddr
,
7579 /* Copy ELF program header information. */
7582 copy_elf_program_header (bfd
*ibfd
, bfd
*obfd
)
7584 Elf_Internal_Ehdr
*iehdr
;
7585 struct elf_segment_map
*map
;
7586 struct elf_segment_map
*map_first
;
7587 struct elf_segment_map
**pointer_to_map
;
7588 Elf_Internal_Phdr
*segment
;
7590 unsigned int num_segments
;
7591 bool phdr_included
= false;
7593 bool p_palign_valid
;
7594 unsigned int opb
= bfd_octets_per_byte (ibfd
, NULL
);
7596 iehdr
= elf_elfheader (ibfd
);
7599 pointer_to_map
= &map_first
;
7601 /* If all the segment p_paddr fields are zero, don't set
7602 map->p_paddr_valid. */
7603 p_paddr_valid
= false;
7604 num_segments
= elf_elfheader (ibfd
)->e_phnum
;
7605 for (i
= 0, segment
= elf_tdata (ibfd
)->phdr
;
7608 if (segment
->p_paddr
!= 0)
7610 p_paddr_valid
= true;
7614 p_palign_valid
= elf_is_p_align_valid (ibfd
);
7616 for (i
= 0, segment
= elf_tdata (ibfd
)->phdr
;
7621 unsigned int section_count
;
7623 Elf_Internal_Shdr
*this_hdr
;
7624 asection
*first_section
= NULL
;
7625 asection
*lowest_section
;
7627 /* Compute how many sections are in this segment. */
7628 for (section
= ibfd
->sections
, section_count
= 0;
7630 section
= section
->next
)
7632 this_hdr
= &(elf_section_data(section
)->this_hdr
);
7633 if (ELF_SECTION_IN_SEGMENT (this_hdr
, segment
))
7635 if (first_section
== NULL
)
7636 first_section
= section
;
7641 /* Allocate a segment map big enough to contain
7642 all of the sections we have selected. */
7643 amt
= sizeof (struct elf_segment_map
) - sizeof (asection
*);
7644 amt
+= section_count
* sizeof (asection
*);
7645 map
= (struct elf_segment_map
*) bfd_zalloc (obfd
, amt
);
7649 /* Initialize the fields of the output segment map with the
7652 map
->p_type
= segment
->p_type
;
7653 map
->p_flags
= segment
->p_flags
;
7654 map
->p_flags_valid
= 1;
7655 map
->p_paddr
= segment
->p_paddr
;
7656 map
->p_paddr_valid
= p_paddr_valid
;
7657 map
->p_align
= segment
->p_align
;
7658 map
->p_align_valid
= p_palign_valid
;
7659 map
->p_vaddr_offset
= 0;
7661 if (map
->p_type
== PT_GNU_RELRO
7662 || map
->p_type
== PT_GNU_STACK
)
7664 /* The PT_GNU_RELRO segment may contain the first a few
7665 bytes in the .got.plt section even if the whole .got.plt
7666 section isn't in the PT_GNU_RELRO segment. We won't
7667 change the size of the PT_GNU_RELRO segment.
7668 Similarly, PT_GNU_STACK size is significant on uclinux
7670 map
->p_size
= segment
->p_memsz
;
7671 map
->p_size_valid
= 1;
7674 /* Determine if this segment contains the ELF file header
7675 and if it contains the program headers themselves. */
7676 map
->includes_filehdr
= (segment
->p_offset
== 0
7677 && segment
->p_filesz
>= iehdr
->e_ehsize
);
7679 map
->includes_phdrs
= 0;
7680 if (! phdr_included
|| segment
->p_type
!= PT_LOAD
)
7682 map
->includes_phdrs
=
7683 (segment
->p_offset
<= (bfd_vma
) iehdr
->e_phoff
7684 && (segment
->p_offset
+ segment
->p_filesz
7685 >= ((bfd_vma
) iehdr
->e_phoff
7686 + iehdr
->e_phnum
* iehdr
->e_phentsize
)));
7688 if (segment
->p_type
== PT_LOAD
&& map
->includes_phdrs
)
7689 phdr_included
= true;
7692 lowest_section
= NULL
;
7693 if (section_count
!= 0)
7695 unsigned int isec
= 0;
7697 for (section
= first_section
;
7699 section
= section
->next
)
7701 this_hdr
= &(elf_section_data(section
)->this_hdr
);
7702 if (ELF_SECTION_IN_SEGMENT (this_hdr
, segment
))
7704 map
->sections
[isec
++] = section
->output_section
;
7705 if ((section
->flags
& SEC_ALLOC
) != 0)
7709 if (lowest_section
== NULL
7710 || section
->lma
< lowest_section
->lma
)
7711 lowest_section
= section
;
7713 /* Section lmas are set up from PT_LOAD header
7714 p_paddr in _bfd_elf_make_section_from_shdr.
7715 If this header has a p_paddr that disagrees
7716 with the section lma, flag the p_paddr as
7718 if ((section
->flags
& SEC_LOAD
) != 0)
7719 seg_off
= this_hdr
->sh_offset
- segment
->p_offset
;
7721 seg_off
= this_hdr
->sh_addr
- segment
->p_vaddr
;
7722 if (section
->lma
* opb
- segment
->p_paddr
!= seg_off
)
7723 map
->p_paddr_valid
= false;
7725 if (isec
== section_count
)
7731 if (section_count
== 0)
7732 map
->p_vaddr_offset
= segment
->p_vaddr
/ opb
;
7733 else if (map
->p_paddr_valid
)
7735 /* Account for padding before the first section in the segment. */
7736 bfd_vma hdr_size
= 0;
7737 if (map
->includes_filehdr
)
7738 hdr_size
= iehdr
->e_ehsize
;
7739 if (map
->includes_phdrs
)
7740 hdr_size
+= iehdr
->e_phnum
* iehdr
->e_phentsize
;
7742 map
->p_vaddr_offset
= ((map
->p_paddr
+ hdr_size
) / opb
7743 - (lowest_section
? lowest_section
->lma
: 0));
7746 map
->count
= section_count
;
7747 *pointer_to_map
= map
;
7748 pointer_to_map
= &map
->next
;
7751 elf_seg_map (obfd
) = map_first
;
7755 /* Copy private BFD data. This copies or rewrites ELF program header
7759 copy_private_bfd_data (bfd
*ibfd
, bfd
*obfd
)
7761 bfd_vma maxpagesize
;
7763 if (bfd_get_flavour (ibfd
) != bfd_target_elf_flavour
7764 || bfd_get_flavour (obfd
) != bfd_target_elf_flavour
)
7767 if (elf_tdata (ibfd
)->phdr
== NULL
)
7770 if (ibfd
->xvec
== obfd
->xvec
)
7772 /* Check to see if any sections in the input BFD
7773 covered by ELF program header have changed. */
7774 Elf_Internal_Phdr
*segment
;
7775 asection
*section
, *osec
;
7776 unsigned int i
, num_segments
;
7777 Elf_Internal_Shdr
*this_hdr
;
7778 const struct elf_backend_data
*bed
;
7780 bed
= get_elf_backend_data (ibfd
);
7782 /* Regenerate the segment map if p_paddr is set to 0. */
7783 if (bed
->want_p_paddr_set_to_zero
)
7786 /* Initialize the segment mark field. */
7787 for (section
= obfd
->sections
; section
!= NULL
;
7788 section
= section
->next
)
7789 section
->segment_mark
= false;
7791 num_segments
= elf_elfheader (ibfd
)->e_phnum
;
7792 for (i
= 0, segment
= elf_tdata (ibfd
)->phdr
;
7796 /* PR binutils/3535. The Solaris linker always sets the p_paddr
7797 and p_memsz fields of special segments (DYNAMIC, INTERP) to 0
7798 which severly confuses things, so always regenerate the segment
7799 map in this case. */
7800 if (segment
->p_paddr
== 0
7801 && segment
->p_memsz
== 0
7802 && (segment
->p_type
== PT_INTERP
|| segment
->p_type
== PT_DYNAMIC
))
7805 for (section
= ibfd
->sections
;
7806 section
!= NULL
; section
= section
->next
)
7808 /* We mark the output section so that we know it comes
7809 from the input BFD. */
7810 osec
= section
->output_section
;
7812 osec
->segment_mark
= true;
7814 /* Check if this section is covered by the segment. */
7815 this_hdr
= &(elf_section_data(section
)->this_hdr
);
7816 if (ELF_SECTION_IN_SEGMENT (this_hdr
, segment
))
7818 /* FIXME: Check if its output section is changed or
7819 removed. What else do we need to check? */
7821 || section
->flags
!= osec
->flags
7822 || section
->lma
!= osec
->lma
7823 || section
->vma
!= osec
->vma
7824 || section
->size
!= osec
->size
7825 || section
->rawsize
!= osec
->rawsize
7826 || section
->alignment_power
!= osec
->alignment_power
)
7832 /* Check to see if any output section do not come from the
7834 for (section
= obfd
->sections
; section
!= NULL
;
7835 section
= section
->next
)
7837 if (!section
->segment_mark
)
7840 section
->segment_mark
= false;
7843 return copy_elf_program_header (ibfd
, obfd
);
7848 if (ibfd
->xvec
== obfd
->xvec
)
7850 /* When rewriting program header, set the output maxpagesize to
7851 the maximum alignment of input PT_LOAD segments. */
7852 Elf_Internal_Phdr
*segment
;
7854 unsigned int num_segments
= elf_elfheader (ibfd
)->e_phnum
;
7856 for (i
= 0, segment
= elf_tdata (ibfd
)->phdr
;
7859 if (segment
->p_type
== PT_LOAD
7860 && maxpagesize
< segment
->p_align
)
7862 /* PR 17512: file: f17299af. */
7863 if (segment
->p_align
> (bfd_vma
) 1 << ((sizeof (bfd_vma
) * 8) - 2))
7864 /* xgettext:c-format */
7865 _bfd_error_handler (_("%pB: warning: segment alignment of %#"
7866 PRIx64
" is too large"),
7867 ibfd
, (uint64_t) segment
->p_align
);
7869 maxpagesize
= segment
->p_align
;
7872 if (maxpagesize
== 0)
7873 maxpagesize
= get_elf_backend_data (obfd
)->maxpagesize
;
7875 return rewrite_elf_program_header (ibfd
, obfd
, maxpagesize
);
7878 /* Initialize private output section information from input section. */
7881 _bfd_elf_init_private_section_data (bfd
*ibfd
,
7885 struct bfd_link_info
*link_info
)
7888 Elf_Internal_Shdr
*ihdr
, *ohdr
;
7889 bool final_link
= (link_info
!= NULL
7890 && !bfd_link_relocatable (link_info
));
7892 if (ibfd
->xvec
->flavour
!= bfd_target_elf_flavour
7893 || obfd
->xvec
->flavour
!= bfd_target_elf_flavour
)
7896 BFD_ASSERT (elf_section_data (osec
) != NULL
);
7898 /* If this is a known ABI section, ELF section type and flags may
7899 have been set up when OSEC was created. For normal sections we
7900 allow the user to override the type and flags other than
7901 SHF_MASKOS and SHF_MASKPROC. */
7902 if (elf_section_type (osec
) == SHT_PROGBITS
7903 || elf_section_type (osec
) == SHT_NOTE
7904 || elf_section_type (osec
) == SHT_NOBITS
)
7905 elf_section_type (osec
) = SHT_NULL
;
7906 /* For objcopy and relocatable link, copy the ELF section type from
7907 the input file if the BFD section flags are the same. (If they
7908 are different the user may be doing something like
7909 "objcopy --set-section-flags .text=alloc,data".) For a final
7910 link allow some flags that the linker clears to differ. */
7911 if (elf_section_type (osec
) == SHT_NULL
7912 && (osec
->flags
== isec
->flags
7914 && ((osec
->flags
^ isec
->flags
)
7915 & ~(SEC_LINK_ONCE
| SEC_LINK_DUPLICATES
| SEC_RELOC
)) == 0)))
7916 elf_section_type (osec
) = elf_section_type (isec
);
7918 /* FIXME: Is this correct for all OS/PROC specific flags? */
7919 elf_section_flags (osec
) = (elf_section_flags (isec
)
7920 & (SHF_MASKOS
| SHF_MASKPROC
));
7922 /* Copy sh_info from input for mbind section. */
7923 if ((elf_tdata (ibfd
)->has_gnu_osabi
& elf_gnu_osabi_mbind
) != 0
7924 && elf_section_flags (isec
) & SHF_GNU_MBIND
)
7925 elf_section_data (osec
)->this_hdr
.sh_info
7926 = elf_section_data (isec
)->this_hdr
.sh_info
;
7928 /* Set things up for objcopy and relocatable link. The output
7929 SHT_GROUP section will have its elf_next_in_group pointing back
7930 to the input group members. Ignore linker created group section.
7931 See elfNN_ia64_object_p in elfxx-ia64.c. */
7932 if ((link_info
== NULL
7933 || !link_info
->resolve_section_groups
)
7934 && (elf_sec_group (isec
) == NULL
7935 || (elf_sec_group (isec
)->flags
& SEC_LINKER_CREATED
) == 0))
7937 if (elf_section_flags (isec
) & SHF_GROUP
)
7938 elf_section_flags (osec
) |= SHF_GROUP
;
7939 elf_next_in_group (osec
) = elf_next_in_group (isec
);
7940 elf_section_data (osec
)->group
= elf_section_data (isec
)->group
;
7943 /* If not decompress, preserve SHF_COMPRESSED. */
7944 if (!final_link
&& (ibfd
->flags
& BFD_DECOMPRESS
) == 0)
7945 elf_section_flags (osec
) |= (elf_section_flags (isec
)
7948 ihdr
= &elf_section_data (isec
)->this_hdr
;
7950 /* We need to handle elf_linked_to_section for SHF_LINK_ORDER. We
7951 don't use the output section of the linked-to section since it
7952 may be NULL at this point. */
7953 if ((ihdr
->sh_flags
& SHF_LINK_ORDER
) != 0)
7955 ohdr
= &elf_section_data (osec
)->this_hdr
;
7956 ohdr
->sh_flags
|= SHF_LINK_ORDER
;
7957 elf_linked_to_section (osec
) = elf_linked_to_section (isec
);
7960 osec
->use_rela_p
= isec
->use_rela_p
;
7965 /* Copy private section information. This copies over the entsize
7966 field, and sometimes the info field. */
7969 _bfd_elf_copy_private_section_data (bfd
*ibfd
,
7974 Elf_Internal_Shdr
*ihdr
, *ohdr
;
7976 if (ibfd
->xvec
->flavour
!= bfd_target_elf_flavour
7977 || obfd
->xvec
->flavour
!= bfd_target_elf_flavour
)
7980 ihdr
= &elf_section_data (isec
)->this_hdr
;
7981 ohdr
= &elf_section_data (osec
)->this_hdr
;
7983 ohdr
->sh_entsize
= ihdr
->sh_entsize
;
7985 if (ihdr
->sh_type
== SHT_SYMTAB
7986 || ihdr
->sh_type
== SHT_DYNSYM
7987 || ihdr
->sh_type
== SHT_GNU_verneed
7988 || ihdr
->sh_type
== SHT_GNU_verdef
)
7989 ohdr
->sh_info
= ihdr
->sh_info
;
7991 return _bfd_elf_init_private_section_data (ibfd
, isec
, obfd
, osec
,
7995 /* Look at all the SHT_GROUP sections in IBFD, making any adjustments
7996 necessary if we are removing either the SHT_GROUP section or any of
7997 the group member sections. DISCARDED is the value that a section's
7998 output_section has if the section will be discarded, NULL when this
7999 function is called from objcopy, bfd_abs_section_ptr when called
8003 _bfd_elf_fixup_group_sections (bfd
*ibfd
, asection
*discarded
)
8007 for (isec
= ibfd
->sections
; isec
!= NULL
; isec
= isec
->next
)
8008 if (elf_section_type (isec
) == SHT_GROUP
)
8010 asection
*first
= elf_next_in_group (isec
);
8011 asection
*s
= first
;
8012 bfd_size_type removed
= 0;
8016 /* If this member section is being output but the
8017 SHT_GROUP section is not, then clear the group info
8018 set up by _bfd_elf_copy_private_section_data. */
8019 if (s
->output_section
!= discarded
8020 && isec
->output_section
== discarded
)
8022 elf_section_flags (s
->output_section
) &= ~SHF_GROUP
;
8023 elf_group_name (s
->output_section
) = NULL
;
8027 struct bfd_elf_section_data
*elf_sec
= elf_section_data (s
);
8028 if (s
->output_section
== discarded
8029 && isec
->output_section
!= discarded
)
8031 /* Conversely, if the member section is not being
8032 output but the SHT_GROUP section is, then adjust
8035 if (elf_sec
->rel
.hdr
!= NULL
8036 && (elf_sec
->rel
.hdr
->sh_flags
& SHF_GROUP
) != 0)
8038 if (elf_sec
->rela
.hdr
!= NULL
8039 && (elf_sec
->rela
.hdr
->sh_flags
& SHF_GROUP
) != 0)
8044 /* Also adjust for zero-sized relocation member
8046 if (elf_sec
->rel
.hdr
!= NULL
8047 && elf_sec
->rel
.hdr
->sh_size
== 0)
8049 if (elf_sec
->rela
.hdr
!= NULL
8050 && elf_sec
->rela
.hdr
->sh_size
== 0)
8054 s
= elf_next_in_group (s
);
8060 if (discarded
!= NULL
)
8062 /* If we've been called for ld -r, then we need to
8063 adjust the input section size. */
8064 if (isec
->rawsize
== 0)
8065 isec
->rawsize
= isec
->size
;
8066 isec
->size
= isec
->rawsize
- removed
;
8067 if (isec
->size
<= 4)
8070 isec
->flags
|= SEC_EXCLUDE
;
8073 else if (isec
->output_section
!= NULL
)
8075 /* Adjust the output section size when called from
8077 isec
->output_section
->size
-= removed
;
8078 if (isec
->output_section
->size
<= 4)
8080 isec
->output_section
->size
= 0;
8081 isec
->output_section
->flags
|= SEC_EXCLUDE
;
8090 /* Copy private header information. */
8093 _bfd_elf_copy_private_header_data (bfd
*ibfd
, bfd
*obfd
)
8095 if (bfd_get_flavour (ibfd
) != bfd_target_elf_flavour
8096 || bfd_get_flavour (obfd
) != bfd_target_elf_flavour
)
8099 /* Copy over private BFD data if it has not already been copied.
8100 This must be done here, rather than in the copy_private_bfd_data
8101 entry point, because the latter is called after the section
8102 contents have been set, which means that the program headers have
8103 already been worked out. */
8104 if (elf_seg_map (obfd
) == NULL
&& elf_tdata (ibfd
)->phdr
!= NULL
)
8106 if (! copy_private_bfd_data (ibfd
, obfd
))
8110 return _bfd_elf_fixup_group_sections (ibfd
, NULL
);
8113 /* Copy private symbol information. If this symbol is in a section
8114 which we did not map into a BFD section, try to map the section
8115 index correctly. We use special macro definitions for the mapped
8116 section indices; these definitions are interpreted by the
8117 swap_out_syms function. */
8119 #define MAP_ONESYMTAB (SHN_HIOS + 1)
8120 #define MAP_DYNSYMTAB (SHN_HIOS + 2)
8121 #define MAP_STRTAB (SHN_HIOS + 3)
8122 #define MAP_SHSTRTAB (SHN_HIOS + 4)
8123 #define MAP_SYM_SHNDX (SHN_HIOS + 5)
8126 _bfd_elf_copy_private_symbol_data (bfd
*ibfd
,
8131 elf_symbol_type
*isym
, *osym
;
8133 if (bfd_get_flavour (ibfd
) != bfd_target_elf_flavour
8134 || bfd_get_flavour (obfd
) != bfd_target_elf_flavour
)
8137 isym
= elf_symbol_from (isymarg
);
8138 osym
= elf_symbol_from (osymarg
);
8141 && isym
->internal_elf_sym
.st_shndx
!= 0
8143 && bfd_is_abs_section (isym
->symbol
.section
))
8147 shndx
= isym
->internal_elf_sym
.st_shndx
;
8148 if (shndx
== elf_onesymtab (ibfd
))
8149 shndx
= MAP_ONESYMTAB
;
8150 else if (shndx
== elf_dynsymtab (ibfd
))
8151 shndx
= MAP_DYNSYMTAB
;
8152 else if (shndx
== elf_strtab_sec (ibfd
))
8154 else if (shndx
== elf_shstrtab_sec (ibfd
))
8155 shndx
= MAP_SHSTRTAB
;
8156 else if (find_section_in_list (shndx
, elf_symtab_shndx_list (ibfd
)))
8157 shndx
= MAP_SYM_SHNDX
;
8158 osym
->internal_elf_sym
.st_shndx
= shndx
;
8164 /* Swap out the symbols. */
8167 swap_out_syms (bfd
*abfd
,
8168 struct elf_strtab_hash
**sttp
,
8170 struct bfd_link_info
*info
)
8172 const struct elf_backend_data
*bed
;
8173 unsigned int symcount
;
8175 struct elf_strtab_hash
*stt
;
8176 Elf_Internal_Shdr
*symtab_hdr
;
8177 Elf_Internal_Shdr
*symtab_shndx_hdr
;
8178 Elf_Internal_Shdr
*symstrtab_hdr
;
8179 struct elf_sym_strtab
*symstrtab
;
8180 bfd_byte
*outbound_syms
;
8181 bfd_byte
*outbound_shndx
;
8182 unsigned long outbound_syms_index
;
8184 unsigned int num_locals
;
8186 bool name_local_sections
;
8188 if (!elf_map_symbols (abfd
, &num_locals
))
8191 /* Dump out the symtabs. */
8192 stt
= _bfd_elf_strtab_init ();
8196 bed
= get_elf_backend_data (abfd
);
8197 symcount
= bfd_get_symcount (abfd
);
8198 symtab_hdr
= &elf_tdata (abfd
)->symtab_hdr
;
8199 symtab_hdr
->sh_type
= SHT_SYMTAB
;
8200 symtab_hdr
->sh_entsize
= bed
->s
->sizeof_sym
;
8201 symtab_hdr
->sh_size
= symtab_hdr
->sh_entsize
* (symcount
+ 1);
8202 symtab_hdr
->sh_info
= num_locals
+ 1;
8203 symtab_hdr
->sh_addralign
= (bfd_vma
) 1 << bed
->s
->log_file_align
;
8205 symstrtab_hdr
= &elf_tdata (abfd
)->strtab_hdr
;
8206 symstrtab_hdr
->sh_type
= SHT_STRTAB
;
8208 /* Allocate buffer to swap out the .strtab section. */
8209 if (_bfd_mul_overflow (symcount
+ 1, sizeof (*symstrtab
), &amt
)
8210 || (symstrtab
= (struct elf_sym_strtab
*) bfd_malloc (amt
)) == NULL
)
8212 bfd_set_error (bfd_error_no_memory
);
8213 _bfd_elf_strtab_free (stt
);
8217 if (_bfd_mul_overflow (symcount
+ 1, bed
->s
->sizeof_sym
, &amt
)
8218 || (outbound_syms
= (bfd_byte
*) bfd_alloc (abfd
, amt
)) == NULL
)
8221 bfd_set_error (bfd_error_no_memory
);
8224 _bfd_elf_strtab_free (stt
);
8227 symtab_hdr
->contents
= outbound_syms
;
8228 outbound_syms_index
= 0;
8230 outbound_shndx
= NULL
;
8232 if (elf_symtab_shndx_list (abfd
))
8234 symtab_shndx_hdr
= & elf_symtab_shndx_list (abfd
)->hdr
;
8235 if (symtab_shndx_hdr
->sh_name
!= 0)
8237 if (_bfd_mul_overflow (symcount
+ 1,
8238 sizeof (Elf_External_Sym_Shndx
), &amt
))
8240 outbound_shndx
= (bfd_byte
*) bfd_zalloc (abfd
, amt
);
8241 if (outbound_shndx
== NULL
)
8244 symtab_shndx_hdr
->contents
= outbound_shndx
;
8245 symtab_shndx_hdr
->sh_type
= SHT_SYMTAB_SHNDX
;
8246 symtab_shndx_hdr
->sh_size
= amt
;
8247 symtab_shndx_hdr
->sh_addralign
= sizeof (Elf_External_Sym_Shndx
);
8248 symtab_shndx_hdr
->sh_entsize
= sizeof (Elf_External_Sym_Shndx
);
8250 /* FIXME: What about any other headers in the list ? */
8253 /* Now generate the data (for "contents"). */
8255 /* Fill in zeroth symbol and swap it out. */
8256 Elf_Internal_Sym sym
;
8262 sym
.st_shndx
= SHN_UNDEF
;
8263 sym
.st_target_internal
= 0;
8264 symstrtab
[0].sym
= sym
;
8265 symstrtab
[0].dest_index
= outbound_syms_index
;
8266 outbound_syms_index
++;
8270 = (bed
->elf_backend_name_local_section_symbols
8271 && bed
->elf_backend_name_local_section_symbols (abfd
));
8273 syms
= bfd_get_outsymbols (abfd
);
8274 for (idx
= 0; idx
< symcount
;)
8276 Elf_Internal_Sym sym
;
8277 bfd_vma value
= syms
[idx
]->value
;
8278 elf_symbol_type
*type_ptr
;
8279 flagword flags
= syms
[idx
]->flags
;
8282 if (!name_local_sections
8283 && (flags
& (BSF_SECTION_SYM
| BSF_GLOBAL
)) == BSF_SECTION_SYM
)
8285 /* Local section symbols have no name. */
8286 sym
.st_name
= (unsigned long) -1;
8290 /* Call _bfd_elf_strtab_offset after _bfd_elf_strtab_finalize
8291 to get the final offset for st_name. */
8293 = (unsigned long) _bfd_elf_strtab_add (stt
, syms
[idx
]->name
,
8295 if (sym
.st_name
== (unsigned long) -1)
8299 type_ptr
= elf_symbol_from (syms
[idx
]);
8301 if ((flags
& BSF_SECTION_SYM
) == 0
8302 && bfd_is_com_section (syms
[idx
]->section
))
8304 /* ELF common symbols put the alignment into the `value' field,
8305 and the size into the `size' field. This is backwards from
8306 how BFD handles it, so reverse it here. */
8307 sym
.st_size
= value
;
8308 if (type_ptr
== NULL
8309 || type_ptr
->internal_elf_sym
.st_value
== 0)
8310 sym
.st_value
= value
>= 16 ? 16 : (1 << bfd_log2 (value
));
8312 sym
.st_value
= type_ptr
->internal_elf_sym
.st_value
;
8313 sym
.st_shndx
= _bfd_elf_section_from_bfd_section
8314 (abfd
, syms
[idx
]->section
);
8318 asection
*sec
= syms
[idx
]->section
;
8321 if (sec
->output_section
)
8323 value
+= sec
->output_offset
;
8324 sec
= sec
->output_section
;
8327 /* Don't add in the section vma for relocatable output. */
8328 if (! relocatable_p
)
8330 sym
.st_value
= value
;
8331 sym
.st_size
= type_ptr
? type_ptr
->internal_elf_sym
.st_size
: 0;
8333 if (bfd_is_abs_section (sec
)
8335 && type_ptr
->internal_elf_sym
.st_shndx
!= 0)
8337 /* This symbol is in a real ELF section which we did
8338 not create as a BFD section. Undo the mapping done
8339 by copy_private_symbol_data. */
8340 shndx
= type_ptr
->internal_elf_sym
.st_shndx
;
8344 shndx
= elf_onesymtab (abfd
);
8347 shndx
= elf_dynsymtab (abfd
);
8350 shndx
= elf_strtab_sec (abfd
);
8353 shndx
= elf_shstrtab_sec (abfd
);
8356 if (elf_symtab_shndx_list (abfd
))
8357 shndx
= elf_symtab_shndx_list (abfd
)->ndx
;
8364 if (shndx
>= SHN_LOPROC
&& shndx
<= SHN_HIOS
)
8366 if (bed
->symbol_section_index
)
8367 shndx
= bed
->symbol_section_index (abfd
, type_ptr
);
8368 /* Otherwise just leave the index alone. */
8372 if (shndx
> SHN_HIOS
&& shndx
< SHN_HIRESERVE
)
8373 _bfd_error_handler (_("%pB: \
8374 Unable to handle section index %x in ELF symbol. Using ABS instead."),
8383 shndx
= _bfd_elf_section_from_bfd_section (abfd
, sec
);
8385 if (shndx
== SHN_BAD
)
8389 /* Writing this would be a hell of a lot easier if
8390 we had some decent documentation on bfd, and
8391 knew what to expect of the library, and what to
8392 demand of applications. For example, it
8393 appears that `objcopy' might not set the
8394 section of a symbol to be a section that is
8395 actually in the output file. */
8396 sec2
= bfd_get_section_by_name (abfd
, sec
->name
);
8398 shndx
= _bfd_elf_section_from_bfd_section (abfd
, sec2
);
8399 if (shndx
== SHN_BAD
)
8401 /* xgettext:c-format */
8403 (_("unable to find equivalent output section"
8404 " for symbol '%s' from section '%s'"),
8405 syms
[idx
]->name
? syms
[idx
]->name
: "<Local sym>",
8407 bfd_set_error (bfd_error_invalid_operation
);
8413 sym
.st_shndx
= shndx
;
8416 if ((flags
& BSF_THREAD_LOCAL
) != 0)
8418 else if ((flags
& BSF_GNU_INDIRECT_FUNCTION
) != 0)
8419 type
= STT_GNU_IFUNC
;
8420 else if ((flags
& BSF_FUNCTION
) != 0)
8422 else if ((flags
& BSF_OBJECT
) != 0)
8424 else if ((flags
& BSF_RELC
) != 0)
8426 else if ((flags
& BSF_SRELC
) != 0)
8431 if (syms
[idx
]->section
->flags
& SEC_THREAD_LOCAL
)
8434 /* Processor-specific types. */
8435 if (type_ptr
!= NULL
8436 && bed
->elf_backend_get_symbol_type
)
8437 type
= ((*bed
->elf_backend_get_symbol_type
)
8438 (&type_ptr
->internal_elf_sym
, type
));
8440 if (flags
& BSF_SECTION_SYM
)
8442 if (flags
& BSF_GLOBAL
)
8443 sym
.st_info
= ELF_ST_INFO (STB_GLOBAL
, STT_SECTION
);
8445 sym
.st_info
= ELF_ST_INFO (STB_LOCAL
, STT_SECTION
);
8447 else if (bfd_is_com_section (syms
[idx
]->section
))
8449 if (type
!= STT_TLS
)
8451 if ((abfd
->flags
& BFD_CONVERT_ELF_COMMON
))
8452 type
= ((abfd
->flags
& BFD_USE_ELF_STT_COMMON
)
8453 ? STT_COMMON
: STT_OBJECT
);
8455 type
= ((flags
& BSF_ELF_COMMON
) != 0
8456 ? STT_COMMON
: STT_OBJECT
);
8458 sym
.st_info
= ELF_ST_INFO (STB_GLOBAL
, type
);
8460 else if (bfd_is_und_section (syms
[idx
]->section
))
8461 sym
.st_info
= ELF_ST_INFO (((flags
& BSF_WEAK
)
8465 else if (flags
& BSF_FILE
)
8466 sym
.st_info
= ELF_ST_INFO (STB_LOCAL
, STT_FILE
);
8469 int bind
= STB_LOCAL
;
8471 if (flags
& BSF_LOCAL
)
8473 else if (flags
& BSF_GNU_UNIQUE
)
8474 bind
= STB_GNU_UNIQUE
;
8475 else if (flags
& BSF_WEAK
)
8477 else if (flags
& BSF_GLOBAL
)
8480 sym
.st_info
= ELF_ST_INFO (bind
, type
);
8483 if (type_ptr
!= NULL
)
8485 sym
.st_other
= type_ptr
->internal_elf_sym
.st_other
;
8486 sym
.st_target_internal
8487 = type_ptr
->internal_elf_sym
.st_target_internal
;
8492 sym
.st_target_internal
= 0;
8496 symstrtab
[idx
].sym
= sym
;
8497 symstrtab
[idx
].dest_index
= outbound_syms_index
;
8499 outbound_syms_index
++;
8502 /* Finalize the .strtab section. */
8503 _bfd_elf_strtab_finalize (stt
);
8505 /* Swap out the .strtab section. */
8506 for (idx
= 0; idx
<= symcount
; idx
++)
8508 struct elf_sym_strtab
*elfsym
= &symstrtab
[idx
];
8509 if (elfsym
->sym
.st_name
== (unsigned long) -1)
8510 elfsym
->sym
.st_name
= 0;
8512 elfsym
->sym
.st_name
= _bfd_elf_strtab_offset (stt
,
8513 elfsym
->sym
.st_name
);
8514 if (info
&& info
->callbacks
->ctf_new_symbol
)
8515 info
->callbacks
->ctf_new_symbol (elfsym
->dest_index
,
8518 /* Inform the linker of the addition of this symbol. */
8520 bed
->s
->swap_symbol_out (abfd
, &elfsym
->sym
,
8522 + (elfsym
->dest_index
8523 * bed
->s
->sizeof_sym
)),
8524 NPTR_ADD (outbound_shndx
,
8526 * sizeof (Elf_External_Sym_Shndx
))));
8531 symstrtab_hdr
->sh_size
= _bfd_elf_strtab_size (stt
);
8532 symstrtab_hdr
->sh_type
= SHT_STRTAB
;
8533 symstrtab_hdr
->sh_flags
= bed
->elf_strtab_flags
;
8534 symstrtab_hdr
->sh_addr
= 0;
8535 symstrtab_hdr
->sh_entsize
= 0;
8536 symstrtab_hdr
->sh_link
= 0;
8537 symstrtab_hdr
->sh_info
= 0;
8538 symstrtab_hdr
->sh_addralign
= 1;
8543 /* Return the number of bytes required to hold the symtab vector.
8545 Note that we base it on the count plus 1, since we will null terminate
8546 the vector allocated based on this size. However, the ELF symbol table
8547 always has a dummy entry as symbol #0, so it ends up even. */
8550 _bfd_elf_get_symtab_upper_bound (bfd
*abfd
)
8552 bfd_size_type symcount
;
8554 Elf_Internal_Shdr
*hdr
= &elf_tdata (abfd
)->symtab_hdr
;
8556 symcount
= hdr
->sh_size
/ get_elf_backend_data (abfd
)->s
->sizeof_sym
;
8557 if (symcount
> LONG_MAX
/ sizeof (asymbol
*))
8559 bfd_set_error (bfd_error_file_too_big
);
8562 symtab_size
= symcount
* (sizeof (asymbol
*));
8564 symtab_size
= sizeof (asymbol
*);
8565 else if (!bfd_write_p (abfd
))
8567 ufile_ptr filesize
= bfd_get_file_size (abfd
);
8569 if (filesize
!= 0 && (unsigned long) symtab_size
> filesize
)
8571 bfd_set_error (bfd_error_file_truncated
);
8580 _bfd_elf_get_dynamic_symtab_upper_bound (bfd
*abfd
)
8582 bfd_size_type symcount
;
8584 Elf_Internal_Shdr
*hdr
= &elf_tdata (abfd
)->dynsymtab_hdr
;
8586 if (elf_dynsymtab (abfd
) == 0)
8588 bfd_set_error (bfd_error_invalid_operation
);
8592 symcount
= hdr
->sh_size
/ get_elf_backend_data (abfd
)->s
->sizeof_sym
;
8593 if (symcount
> LONG_MAX
/ sizeof (asymbol
*))
8595 bfd_set_error (bfd_error_file_too_big
);
8598 symtab_size
= symcount
* (sizeof (asymbol
*));
8600 symtab_size
= sizeof (asymbol
*);
8601 else if (!bfd_write_p (abfd
))
8603 ufile_ptr filesize
= bfd_get_file_size (abfd
);
8605 if (filesize
!= 0 && (unsigned long) symtab_size
> filesize
)
8607 bfd_set_error (bfd_error_file_truncated
);
8616 _bfd_elf_get_reloc_upper_bound (bfd
*abfd
, sec_ptr asect
)
8618 if (asect
->reloc_count
!= 0 && !bfd_write_p (abfd
))
8620 /* Sanity check reloc section size. */
8621 struct bfd_elf_section_data
*d
= elf_section_data (asect
);
8622 Elf_Internal_Shdr
*rel_hdr
= &d
->this_hdr
;
8623 bfd_size_type ext_rel_size
= rel_hdr
->sh_size
;
8624 ufile_ptr filesize
= bfd_get_file_size (abfd
);
8626 if (filesize
!= 0 && ext_rel_size
> filesize
)
8628 bfd_set_error (bfd_error_file_truncated
);
8633 #if SIZEOF_LONG == SIZEOF_INT
8634 if (asect
->reloc_count
>= LONG_MAX
/ sizeof (arelent
*))
8636 bfd_set_error (bfd_error_file_too_big
);
8640 return (asect
->reloc_count
+ 1L) * sizeof (arelent
*);
8643 /* Canonicalize the relocs. */
8646 _bfd_elf_canonicalize_reloc (bfd
*abfd
,
8653 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
8655 if (! bed
->s
->slurp_reloc_table (abfd
, section
, symbols
, false))
8658 tblptr
= section
->relocation
;
8659 for (i
= 0; i
< section
->reloc_count
; i
++)
8660 *relptr
++ = tblptr
++;
8664 return section
->reloc_count
;
8668 _bfd_elf_canonicalize_symtab (bfd
*abfd
, asymbol
**allocation
)
8670 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
8671 long symcount
= bed
->s
->slurp_symbol_table (abfd
, allocation
, false);
8674 abfd
->symcount
= symcount
;
8679 _bfd_elf_canonicalize_dynamic_symtab (bfd
*abfd
,
8680 asymbol
**allocation
)
8682 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
8683 long symcount
= bed
->s
->slurp_symbol_table (abfd
, allocation
, true);
8686 abfd
->dynsymcount
= symcount
;
8690 /* Return the size required for the dynamic reloc entries. Any loadable
8691 section that was actually installed in the BFD, and has type SHT_REL
8692 or SHT_RELA, and uses the dynamic symbol table, is considered to be a
8693 dynamic reloc section. */
8696 _bfd_elf_get_dynamic_reloc_upper_bound (bfd
*abfd
)
8698 bfd_size_type count
, ext_rel_size
;
8701 if (elf_dynsymtab (abfd
) == 0)
8703 bfd_set_error (bfd_error_invalid_operation
);
8709 for (s
= abfd
->sections
; s
!= NULL
; s
= s
->next
)
8710 if (elf_section_data (s
)->this_hdr
.sh_link
== elf_dynsymtab (abfd
)
8711 && (elf_section_data (s
)->this_hdr
.sh_type
== SHT_REL
8712 || elf_section_data (s
)->this_hdr
.sh_type
== SHT_RELA
))
8714 ext_rel_size
+= s
->size
;
8715 if (ext_rel_size
< s
->size
)
8717 bfd_set_error (bfd_error_file_truncated
);
8720 count
+= s
->size
/ elf_section_data (s
)->this_hdr
.sh_entsize
;
8721 if (count
> LONG_MAX
/ sizeof (arelent
*))
8723 bfd_set_error (bfd_error_file_too_big
);
8727 if (count
> 1 && !bfd_write_p (abfd
))
8729 /* Sanity check reloc section sizes. */
8730 ufile_ptr filesize
= bfd_get_file_size (abfd
);
8731 if (filesize
!= 0 && ext_rel_size
> filesize
)
8733 bfd_set_error (bfd_error_file_truncated
);
8737 return count
* sizeof (arelent
*);
8740 /* Canonicalize the dynamic relocation entries. Note that we return the
8741 dynamic relocations as a single block, although they are actually
8742 associated with particular sections; the interface, which was
8743 designed for SunOS style shared libraries, expects that there is only
8744 one set of dynamic relocs. Any loadable section that was actually
8745 installed in the BFD, and has type SHT_REL or SHT_RELA, and uses the
8746 dynamic symbol table, is considered to be a dynamic reloc section. */
8749 _bfd_elf_canonicalize_dynamic_reloc (bfd
*abfd
,
8753 bool (*slurp_relocs
) (bfd
*, asection
*, asymbol
**, bool);
8757 if (elf_dynsymtab (abfd
) == 0)
8759 bfd_set_error (bfd_error_invalid_operation
);
8763 slurp_relocs
= get_elf_backend_data (abfd
)->s
->slurp_reloc_table
;
8765 for (s
= abfd
->sections
; s
!= NULL
; s
= s
->next
)
8767 if (elf_section_data (s
)->this_hdr
.sh_link
== elf_dynsymtab (abfd
)
8768 && (elf_section_data (s
)->this_hdr
.sh_type
== SHT_REL
8769 || elf_section_data (s
)->this_hdr
.sh_type
== SHT_RELA
))
8774 if (! (*slurp_relocs
) (abfd
, s
, syms
, true))
8776 count
= s
->size
/ elf_section_data (s
)->this_hdr
.sh_entsize
;
8778 for (i
= 0; i
< count
; i
++)
8789 /* Read in the version information. */
8792 _bfd_elf_slurp_version_tables (bfd
*abfd
, bool default_imported_symver
)
8794 bfd_byte
*contents
= NULL
;
8795 unsigned int freeidx
= 0;
8798 if (elf_dynverref (abfd
) != 0)
8800 Elf_Internal_Shdr
*hdr
;
8801 Elf_External_Verneed
*everneed
;
8802 Elf_Internal_Verneed
*iverneed
;
8804 bfd_byte
*contents_end
;
8806 hdr
= &elf_tdata (abfd
)->dynverref_hdr
;
8808 if (hdr
->sh_info
== 0
8809 || hdr
->sh_info
> hdr
->sh_size
/ sizeof (Elf_External_Verneed
))
8811 error_return_bad_verref
:
8813 (_("%pB: .gnu.version_r invalid entry"), abfd
);
8814 bfd_set_error (bfd_error_bad_value
);
8815 error_return_verref
:
8816 elf_tdata (abfd
)->verref
= NULL
;
8817 elf_tdata (abfd
)->cverrefs
= 0;
8821 if (bfd_seek (abfd
, hdr
->sh_offset
, SEEK_SET
) != 0)
8822 goto error_return_verref
;
8823 contents
= _bfd_malloc_and_read (abfd
, hdr
->sh_size
, hdr
->sh_size
);
8824 if (contents
== NULL
)
8825 goto error_return_verref
;
8827 if (_bfd_mul_overflow (hdr
->sh_info
, sizeof (Elf_Internal_Verneed
), &amt
))
8829 bfd_set_error (bfd_error_file_too_big
);
8830 goto error_return_verref
;
8832 elf_tdata (abfd
)->verref
= (Elf_Internal_Verneed
*) bfd_alloc (abfd
, amt
);
8833 if (elf_tdata (abfd
)->verref
== NULL
)
8834 goto error_return_verref
;
8836 BFD_ASSERT (sizeof (Elf_External_Verneed
)
8837 == sizeof (Elf_External_Vernaux
));
8838 contents_end
= contents
+ hdr
->sh_size
- sizeof (Elf_External_Verneed
);
8839 everneed
= (Elf_External_Verneed
*) contents
;
8840 iverneed
= elf_tdata (abfd
)->verref
;
8841 for (i
= 0; i
< hdr
->sh_info
; i
++, iverneed
++)
8843 Elf_External_Vernaux
*evernaux
;
8844 Elf_Internal_Vernaux
*ivernaux
;
8847 _bfd_elf_swap_verneed_in (abfd
, everneed
, iverneed
);
8849 iverneed
->vn_bfd
= abfd
;
8851 iverneed
->vn_filename
=
8852 bfd_elf_string_from_elf_section (abfd
, hdr
->sh_link
,
8854 if (iverneed
->vn_filename
== NULL
)
8855 goto error_return_bad_verref
;
8857 if (iverneed
->vn_cnt
== 0)
8858 iverneed
->vn_auxptr
= NULL
;
8861 if (_bfd_mul_overflow (iverneed
->vn_cnt
,
8862 sizeof (Elf_Internal_Vernaux
), &amt
))
8864 bfd_set_error (bfd_error_file_too_big
);
8865 goto error_return_verref
;
8867 iverneed
->vn_auxptr
= (struct elf_internal_vernaux
*)
8868 bfd_alloc (abfd
, amt
);
8869 if (iverneed
->vn_auxptr
== NULL
)
8870 goto error_return_verref
;
8873 if (iverneed
->vn_aux
8874 > (size_t) (contents_end
- (bfd_byte
*) everneed
))
8875 goto error_return_bad_verref
;
8877 evernaux
= ((Elf_External_Vernaux
*)
8878 ((bfd_byte
*) everneed
+ iverneed
->vn_aux
));
8879 ivernaux
= iverneed
->vn_auxptr
;
8880 for (j
= 0; j
< iverneed
->vn_cnt
; j
++, ivernaux
++)
8882 _bfd_elf_swap_vernaux_in (abfd
, evernaux
, ivernaux
);
8884 ivernaux
->vna_nodename
=
8885 bfd_elf_string_from_elf_section (abfd
, hdr
->sh_link
,
8886 ivernaux
->vna_name
);
8887 if (ivernaux
->vna_nodename
== NULL
)
8888 goto error_return_bad_verref
;
8890 if (ivernaux
->vna_other
> freeidx
)
8891 freeidx
= ivernaux
->vna_other
;
8893 ivernaux
->vna_nextptr
= NULL
;
8894 if (ivernaux
->vna_next
== 0)
8896 iverneed
->vn_cnt
= j
+ 1;
8899 if (j
+ 1 < iverneed
->vn_cnt
)
8900 ivernaux
->vna_nextptr
= ivernaux
+ 1;
8902 if (ivernaux
->vna_next
8903 > (size_t) (contents_end
- (bfd_byte
*) evernaux
))
8904 goto error_return_bad_verref
;
8906 evernaux
= ((Elf_External_Vernaux
*)
8907 ((bfd_byte
*) evernaux
+ ivernaux
->vna_next
));
8910 iverneed
->vn_nextref
= NULL
;
8911 if (iverneed
->vn_next
== 0)
8913 if (i
+ 1 < hdr
->sh_info
)
8914 iverneed
->vn_nextref
= iverneed
+ 1;
8916 if (iverneed
->vn_next
8917 > (size_t) (contents_end
- (bfd_byte
*) everneed
))
8918 goto error_return_bad_verref
;
8920 everneed
= ((Elf_External_Verneed
*)
8921 ((bfd_byte
*) everneed
+ iverneed
->vn_next
));
8923 elf_tdata (abfd
)->cverrefs
= i
;
8929 if (elf_dynverdef (abfd
) != 0)
8931 Elf_Internal_Shdr
*hdr
;
8932 Elf_External_Verdef
*everdef
;
8933 Elf_Internal_Verdef
*iverdef
;
8934 Elf_Internal_Verdef
*iverdefarr
;
8935 Elf_Internal_Verdef iverdefmem
;
8937 unsigned int maxidx
;
8938 bfd_byte
*contents_end_def
, *contents_end_aux
;
8940 hdr
= &elf_tdata (abfd
)->dynverdef_hdr
;
8942 if (hdr
->sh_info
== 0 || hdr
->sh_size
< sizeof (Elf_External_Verdef
))
8944 error_return_bad_verdef
:
8946 (_("%pB: .gnu.version_d invalid entry"), abfd
);
8947 bfd_set_error (bfd_error_bad_value
);
8948 error_return_verdef
:
8949 elf_tdata (abfd
)->verdef
= NULL
;
8950 elf_tdata (abfd
)->cverdefs
= 0;
8954 if (bfd_seek (abfd
, hdr
->sh_offset
, SEEK_SET
) != 0)
8955 goto error_return_verdef
;
8956 contents
= _bfd_malloc_and_read (abfd
, hdr
->sh_size
, hdr
->sh_size
);
8957 if (contents
== NULL
)
8958 goto error_return_verdef
;
8960 BFD_ASSERT (sizeof (Elf_External_Verdef
)
8961 >= sizeof (Elf_External_Verdaux
));
8962 contents_end_def
= contents
+ hdr
->sh_size
8963 - sizeof (Elf_External_Verdef
);
8964 contents_end_aux
= contents
+ hdr
->sh_size
8965 - sizeof (Elf_External_Verdaux
);
8967 /* We know the number of entries in the section but not the maximum
8968 index. Therefore we have to run through all entries and find
8970 everdef
= (Elf_External_Verdef
*) contents
;
8972 for (i
= 0; i
< hdr
->sh_info
; ++i
)
8974 _bfd_elf_swap_verdef_in (abfd
, everdef
, &iverdefmem
);
8976 if ((iverdefmem
.vd_ndx
& ((unsigned) VERSYM_VERSION
)) == 0)
8977 goto error_return_bad_verdef
;
8978 if ((iverdefmem
.vd_ndx
& ((unsigned) VERSYM_VERSION
)) > maxidx
)
8979 maxidx
= iverdefmem
.vd_ndx
& ((unsigned) VERSYM_VERSION
);
8981 if (iverdefmem
.vd_next
== 0)
8984 if (iverdefmem
.vd_next
8985 > (size_t) (contents_end_def
- (bfd_byte
*) everdef
))
8986 goto error_return_bad_verdef
;
8988 everdef
= ((Elf_External_Verdef
*)
8989 ((bfd_byte
*) everdef
+ iverdefmem
.vd_next
));
8992 if (default_imported_symver
)
8994 if (freeidx
> maxidx
)
8999 if (_bfd_mul_overflow (maxidx
, sizeof (Elf_Internal_Verdef
), &amt
))
9001 bfd_set_error (bfd_error_file_too_big
);
9002 goto error_return_verdef
;
9004 elf_tdata (abfd
)->verdef
= (Elf_Internal_Verdef
*) bfd_zalloc (abfd
, amt
);
9005 if (elf_tdata (abfd
)->verdef
== NULL
)
9006 goto error_return_verdef
;
9008 elf_tdata (abfd
)->cverdefs
= maxidx
;
9010 everdef
= (Elf_External_Verdef
*) contents
;
9011 iverdefarr
= elf_tdata (abfd
)->verdef
;
9012 for (i
= 0; i
< hdr
->sh_info
; i
++)
9014 Elf_External_Verdaux
*everdaux
;
9015 Elf_Internal_Verdaux
*iverdaux
;
9018 _bfd_elf_swap_verdef_in (abfd
, everdef
, &iverdefmem
);
9020 if ((iverdefmem
.vd_ndx
& VERSYM_VERSION
) == 0)
9021 goto error_return_bad_verdef
;
9023 iverdef
= &iverdefarr
[(iverdefmem
.vd_ndx
& VERSYM_VERSION
) - 1];
9024 memcpy (iverdef
, &iverdefmem
, offsetof (Elf_Internal_Verdef
, vd_bfd
));
9026 iverdef
->vd_bfd
= abfd
;
9028 if (iverdef
->vd_cnt
== 0)
9029 iverdef
->vd_auxptr
= NULL
;
9032 if (_bfd_mul_overflow (iverdef
->vd_cnt
,
9033 sizeof (Elf_Internal_Verdaux
), &amt
))
9035 bfd_set_error (bfd_error_file_too_big
);
9036 goto error_return_verdef
;
9038 iverdef
->vd_auxptr
= (struct elf_internal_verdaux
*)
9039 bfd_alloc (abfd
, amt
);
9040 if (iverdef
->vd_auxptr
== NULL
)
9041 goto error_return_verdef
;
9045 > (size_t) (contents_end_aux
- (bfd_byte
*) everdef
))
9046 goto error_return_bad_verdef
;
9048 everdaux
= ((Elf_External_Verdaux
*)
9049 ((bfd_byte
*) everdef
+ iverdef
->vd_aux
));
9050 iverdaux
= iverdef
->vd_auxptr
;
9051 for (j
= 0; j
< iverdef
->vd_cnt
; j
++, iverdaux
++)
9053 _bfd_elf_swap_verdaux_in (abfd
, everdaux
, iverdaux
);
9055 iverdaux
->vda_nodename
=
9056 bfd_elf_string_from_elf_section (abfd
, hdr
->sh_link
,
9057 iverdaux
->vda_name
);
9058 if (iverdaux
->vda_nodename
== NULL
)
9059 goto error_return_bad_verdef
;
9061 iverdaux
->vda_nextptr
= NULL
;
9062 if (iverdaux
->vda_next
== 0)
9064 iverdef
->vd_cnt
= j
+ 1;
9067 if (j
+ 1 < iverdef
->vd_cnt
)
9068 iverdaux
->vda_nextptr
= iverdaux
+ 1;
9070 if (iverdaux
->vda_next
9071 > (size_t) (contents_end_aux
- (bfd_byte
*) everdaux
))
9072 goto error_return_bad_verdef
;
9074 everdaux
= ((Elf_External_Verdaux
*)
9075 ((bfd_byte
*) everdaux
+ iverdaux
->vda_next
));
9078 iverdef
->vd_nodename
= NULL
;
9079 if (iverdef
->vd_cnt
)
9080 iverdef
->vd_nodename
= iverdef
->vd_auxptr
->vda_nodename
;
9082 iverdef
->vd_nextdef
= NULL
;
9083 if (iverdef
->vd_next
== 0)
9085 if ((size_t) (iverdef
- iverdefarr
) + 1 < maxidx
)
9086 iverdef
->vd_nextdef
= iverdef
+ 1;
9088 everdef
= ((Elf_External_Verdef
*)
9089 ((bfd_byte
*) everdef
+ iverdef
->vd_next
));
9095 else if (default_imported_symver
)
9102 if (_bfd_mul_overflow (freeidx
, sizeof (Elf_Internal_Verdef
), &amt
))
9104 bfd_set_error (bfd_error_file_too_big
);
9107 elf_tdata (abfd
)->verdef
= (Elf_Internal_Verdef
*) bfd_zalloc (abfd
, amt
);
9108 if (elf_tdata (abfd
)->verdef
== NULL
)
9111 elf_tdata (abfd
)->cverdefs
= freeidx
;
9114 /* Create a default version based on the soname. */
9115 if (default_imported_symver
)
9117 Elf_Internal_Verdef
*iverdef
;
9118 Elf_Internal_Verdaux
*iverdaux
;
9120 iverdef
= &elf_tdata (abfd
)->verdef
[freeidx
- 1];
9122 iverdef
->vd_version
= VER_DEF_CURRENT
;
9123 iverdef
->vd_flags
= 0;
9124 iverdef
->vd_ndx
= freeidx
;
9125 iverdef
->vd_cnt
= 1;
9127 iverdef
->vd_bfd
= abfd
;
9129 iverdef
->vd_nodename
= bfd_elf_get_dt_soname (abfd
);
9130 if (iverdef
->vd_nodename
== NULL
)
9131 goto error_return_verdef
;
9132 iverdef
->vd_nextdef
= NULL
;
9133 iverdef
->vd_auxptr
= ((struct elf_internal_verdaux
*)
9134 bfd_zalloc (abfd
, sizeof (Elf_Internal_Verdaux
)));
9135 if (iverdef
->vd_auxptr
== NULL
)
9136 goto error_return_verdef
;
9138 iverdaux
= iverdef
->vd_auxptr
;
9139 iverdaux
->vda_nodename
= iverdef
->vd_nodename
;
9150 _bfd_elf_make_empty_symbol (bfd
*abfd
)
9152 elf_symbol_type
*newsym
;
9154 newsym
= (elf_symbol_type
*) bfd_zalloc (abfd
, sizeof (*newsym
));
9157 newsym
->symbol
.the_bfd
= abfd
;
9158 return &newsym
->symbol
;
9162 _bfd_elf_get_symbol_info (bfd
*abfd ATTRIBUTE_UNUSED
,
9166 bfd_symbol_info (symbol
, ret
);
9169 /* Return whether a symbol name implies a local symbol. Most targets
9170 use this function for the is_local_label_name entry point, but some
9174 _bfd_elf_is_local_label_name (bfd
*abfd ATTRIBUTE_UNUSED
,
9177 /* Normal local symbols start with ``.L''. */
9178 if (name
[0] == '.' && name
[1] == 'L')
9181 /* At least some SVR4 compilers (e.g., UnixWare 2.1 cc) generate
9182 DWARF debugging symbols starting with ``..''. */
9183 if (name
[0] == '.' && name
[1] == '.')
9186 /* gcc will sometimes generate symbols beginning with ``_.L_'' when
9187 emitting DWARF debugging output. I suspect this is actually a
9188 small bug in gcc (it calls ASM_OUTPUT_LABEL when it should call
9189 ASM_GENERATE_INTERNAL_LABEL, and this causes the leading
9190 underscore to be emitted on some ELF targets). For ease of use,
9191 we treat such symbols as local. */
9192 if (name
[0] == '_' && name
[1] == '.' && name
[2] == 'L' && name
[3] == '_')
9195 /* Treat assembler generated fake symbols, dollar local labels and
9196 forward-backward labels (aka local labels) as locals.
9197 These labels have the form:
9199 L0^A.* (fake symbols)
9201 [.]?L[0123456789]+{^A|^B}[0123456789]* (local labels)
9203 Versions which start with .L will have already been matched above,
9204 so we only need to match the rest. */
9205 if (name
[0] == 'L' && ISDIGIT (name
[1]))
9211 for (p
= name
+ 2; (c
= *p
); p
++)
9213 if (c
== 1 || c
== 2)
9215 if (c
== 1 && p
== name
+ 2)
9216 /* A fake symbol. */
9219 /* FIXME: We are being paranoid here and treating symbols like
9220 L0^Bfoo as if there were non-local, on the grounds that the
9221 assembler will never generate them. But can any symbol
9222 containing an ASCII value in the range 1-31 ever be anything
9223 other than some kind of local ? */
9240 _bfd_elf_get_lineno (bfd
*abfd ATTRIBUTE_UNUSED
,
9241 asymbol
*symbol ATTRIBUTE_UNUSED
)
9248 _bfd_elf_set_arch_mach (bfd
*abfd
,
9249 enum bfd_architecture arch
,
9250 unsigned long machine
)
9252 /* If this isn't the right architecture for this backend, and this
9253 isn't the generic backend, fail. */
9254 if (arch
!= get_elf_backend_data (abfd
)->arch
9255 && arch
!= bfd_arch_unknown
9256 && get_elf_backend_data (abfd
)->arch
!= bfd_arch_unknown
)
9259 return bfd_default_set_arch_mach (abfd
, arch
, machine
);
9262 /* Find the nearest line to a particular section and offset,
9263 for error reporting. */
9266 _bfd_elf_find_nearest_line (bfd
*abfd
,
9270 const char **filename_ptr
,
9271 const char **functionname_ptr
,
9272 unsigned int *line_ptr
,
9273 unsigned int *discriminator_ptr
)
9277 if (_bfd_dwarf2_find_nearest_line (abfd
, symbols
, NULL
, section
, offset
,
9278 filename_ptr
, functionname_ptr
,
9279 line_ptr
, discriminator_ptr
,
9280 dwarf_debug_sections
,
9281 &elf_tdata (abfd
)->dwarf2_find_line_info
))
9284 if (_bfd_dwarf1_find_nearest_line (abfd
, symbols
, section
, offset
,
9285 filename_ptr
, functionname_ptr
, line_ptr
))
9287 if (!*functionname_ptr
)
9288 _bfd_elf_find_function (abfd
, symbols
, section
, offset
,
9289 *filename_ptr
? NULL
: filename_ptr
,
9294 if (! _bfd_stab_section_find_nearest_line (abfd
, symbols
, section
, offset
,
9295 &found
, filename_ptr
,
9296 functionname_ptr
, line_ptr
,
9297 &elf_tdata (abfd
)->line_info
))
9299 if (found
&& (*functionname_ptr
|| *line_ptr
))
9302 if (symbols
== NULL
)
9305 if (! _bfd_elf_find_function (abfd
, symbols
, section
, offset
,
9306 filename_ptr
, functionname_ptr
))
9313 /* Find the line for a symbol. */
9316 _bfd_elf_find_line (bfd
*abfd
, asymbol
**symbols
, asymbol
*symbol
,
9317 const char **filename_ptr
, unsigned int *line_ptr
)
9319 return _bfd_dwarf2_find_nearest_line (abfd
, symbols
, symbol
, NULL
, 0,
9320 filename_ptr
, NULL
, line_ptr
, NULL
,
9321 dwarf_debug_sections
,
9322 &elf_tdata (abfd
)->dwarf2_find_line_info
);
9325 /* After a call to bfd_find_nearest_line, successive calls to
9326 bfd_find_inliner_info can be used to get source information about
9327 each level of function inlining that terminated at the address
9328 passed to bfd_find_nearest_line. Currently this is only supported
9329 for DWARF2 with appropriate DWARF3 extensions. */
9332 _bfd_elf_find_inliner_info (bfd
*abfd
,
9333 const char **filename_ptr
,
9334 const char **functionname_ptr
,
9335 unsigned int *line_ptr
)
9338 found
= _bfd_dwarf2_find_inliner_info (abfd
, filename_ptr
,
9339 functionname_ptr
, line_ptr
,
9340 & elf_tdata (abfd
)->dwarf2_find_line_info
);
9345 _bfd_elf_sizeof_headers (bfd
*abfd
, struct bfd_link_info
*info
)
9347 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
9348 int ret
= bed
->s
->sizeof_ehdr
;
9350 if (!bfd_link_relocatable (info
))
9352 bfd_size_type phdr_size
= elf_program_header_size (abfd
);
9354 if (phdr_size
== (bfd_size_type
) -1)
9356 struct elf_segment_map
*m
;
9359 for (m
= elf_seg_map (abfd
); m
!= NULL
; m
= m
->next
)
9360 phdr_size
+= bed
->s
->sizeof_phdr
;
9363 phdr_size
= get_program_header_size (abfd
, info
);
9366 elf_program_header_size (abfd
) = phdr_size
;
9374 _bfd_elf_set_section_contents (bfd
*abfd
,
9376 const void *location
,
9378 bfd_size_type count
)
9380 Elf_Internal_Shdr
*hdr
;
9383 if (! abfd
->output_has_begun
9384 && ! _bfd_elf_compute_section_file_positions (abfd
, NULL
))
9390 hdr
= &elf_section_data (section
)->this_hdr
;
9391 if (hdr
->sh_offset
== (file_ptr
) -1)
9393 unsigned char *contents
;
9395 if (bfd_section_is_ctf (section
))
9396 /* Nothing to do with this section: the contents are generated
9400 if ((section
->flags
& SEC_ELF_COMPRESS
) == 0)
9403 (_("%pB:%pA: error: attempting to write into an unallocated compressed section"),
9405 bfd_set_error (bfd_error_invalid_operation
);
9409 if ((offset
+ count
) > hdr
->sh_size
)
9412 (_("%pB:%pA: error: attempting to write over the end of the section"),
9415 bfd_set_error (bfd_error_invalid_operation
);
9419 contents
= hdr
->contents
;
9420 if (contents
== NULL
)
9423 (_("%pB:%pA: error: attempting to write section into an empty buffer"),
9426 bfd_set_error (bfd_error_invalid_operation
);
9430 memcpy (contents
+ offset
, location
, count
);
9434 pos
= hdr
->sh_offset
+ offset
;
9435 if (bfd_seek (abfd
, pos
, SEEK_SET
) != 0
9436 || bfd_bwrite (location
, count
, abfd
) != count
)
9443 _bfd_elf_no_info_to_howto (bfd
*abfd ATTRIBUTE_UNUSED
,
9444 arelent
*cache_ptr ATTRIBUTE_UNUSED
,
9445 Elf_Internal_Rela
*dst ATTRIBUTE_UNUSED
)
9451 /* Try to convert a non-ELF reloc into an ELF one. */
9454 _bfd_elf_validate_reloc (bfd
*abfd
, arelent
*areloc
)
9456 /* Check whether we really have an ELF howto. */
9458 if ((*areloc
->sym_ptr_ptr
)->the_bfd
->xvec
!= abfd
->xvec
)
9460 bfd_reloc_code_real_type code
;
9461 reloc_howto_type
*howto
;
9463 /* Alien reloc: Try to determine its type to replace it with an
9464 equivalent ELF reloc. */
9466 if (areloc
->howto
->pc_relative
)
9468 switch (areloc
->howto
->bitsize
)
9471 code
= BFD_RELOC_8_PCREL
;
9474 code
= BFD_RELOC_12_PCREL
;
9477 code
= BFD_RELOC_16_PCREL
;
9480 code
= BFD_RELOC_24_PCREL
;
9483 code
= BFD_RELOC_32_PCREL
;
9486 code
= BFD_RELOC_64_PCREL
;
9492 howto
= bfd_reloc_type_lookup (abfd
, code
);
9494 if (howto
&& areloc
->howto
->pcrel_offset
!= howto
->pcrel_offset
)
9496 if (howto
->pcrel_offset
)
9497 areloc
->addend
+= areloc
->address
;
9499 areloc
->addend
-= areloc
->address
; /* addend is unsigned!! */
9504 switch (areloc
->howto
->bitsize
)
9510 code
= BFD_RELOC_14
;
9513 code
= BFD_RELOC_16
;
9516 code
= BFD_RELOC_26
;
9519 code
= BFD_RELOC_32
;
9522 code
= BFD_RELOC_64
;
9528 howto
= bfd_reloc_type_lookup (abfd
, code
);
9532 areloc
->howto
= howto
;
9540 /* xgettext:c-format */
9541 _bfd_error_handler (_("%pB: %s unsupported"),
9542 abfd
, areloc
->howto
->name
);
9543 bfd_set_error (bfd_error_sorry
);
9548 _bfd_elf_close_and_cleanup (bfd
*abfd
)
9550 struct elf_obj_tdata
*tdata
= elf_tdata (abfd
);
9552 && (bfd_get_format (abfd
) == bfd_object
9553 || bfd_get_format (abfd
) == bfd_core
))
9555 if (elf_tdata (abfd
)->o
!= NULL
&& elf_shstrtab (abfd
) != NULL
)
9556 _bfd_elf_strtab_free (elf_shstrtab (abfd
));
9557 _bfd_dwarf2_cleanup_debug_info (abfd
, &tdata
->dwarf2_find_line_info
);
9560 return _bfd_generic_close_and_cleanup (abfd
);
9563 /* For Rel targets, we encode meaningful data for BFD_RELOC_VTABLE_ENTRY
9564 in the relocation's offset. Thus we cannot allow any sort of sanity
9565 range-checking to interfere. There is nothing else to do in processing
9568 bfd_reloc_status_type
9569 _bfd_elf_rel_vtable_reloc_fn
9570 (bfd
*abfd ATTRIBUTE_UNUSED
, arelent
*re ATTRIBUTE_UNUSED
,
9571 struct bfd_symbol
*symbol ATTRIBUTE_UNUSED
,
9572 void *data ATTRIBUTE_UNUSED
, asection
*is ATTRIBUTE_UNUSED
,
9573 bfd
*obfd ATTRIBUTE_UNUSED
, char **errmsg ATTRIBUTE_UNUSED
)
9575 return bfd_reloc_ok
;
9578 /* Elf core file support. Much of this only works on native
9579 toolchains, since we rely on knowing the
9580 machine-dependent procfs structure in order to pick
9581 out details about the corefile. */
9583 #ifdef HAVE_SYS_PROCFS_H
9584 # include <sys/procfs.h>
9587 /* Return a PID that identifies a "thread" for threaded cores, or the
9588 PID of the main process for non-threaded cores. */
9591 elfcore_make_pid (bfd
*abfd
)
9595 pid
= elf_tdata (abfd
)->core
->lwpid
;
9597 pid
= elf_tdata (abfd
)->core
->pid
;
9602 /* If there isn't a section called NAME, make one, using
9603 data from SECT. Note, this function will generate a
9604 reference to NAME, so you shouldn't deallocate or
9608 elfcore_maybe_make_sect (bfd
*abfd
, char *name
, asection
*sect
)
9612 if (bfd_get_section_by_name (abfd
, name
) != NULL
)
9615 sect2
= bfd_make_section_with_flags (abfd
, name
, sect
->flags
);
9619 sect2
->size
= sect
->size
;
9620 sect2
->filepos
= sect
->filepos
;
9621 sect2
->alignment_power
= sect
->alignment_power
;
9625 /* Create a pseudosection containing SIZE bytes at FILEPOS. This
9626 actually creates up to two pseudosections:
9627 - For the single-threaded case, a section named NAME, unless
9628 such a section already exists.
9629 - For the multi-threaded case, a section named "NAME/PID", where
9630 PID is elfcore_make_pid (abfd).
9631 Both pseudosections have identical contents. */
9633 _bfd_elfcore_make_pseudosection (bfd
*abfd
,
9639 char *threaded_name
;
9643 /* Build the section name. */
9645 sprintf (buf
, "%s/%d", name
, elfcore_make_pid (abfd
));
9646 len
= strlen (buf
) + 1;
9647 threaded_name
= (char *) bfd_alloc (abfd
, len
);
9648 if (threaded_name
== NULL
)
9650 memcpy (threaded_name
, buf
, len
);
9652 sect
= bfd_make_section_anyway_with_flags (abfd
, threaded_name
,
9657 sect
->filepos
= filepos
;
9658 sect
->alignment_power
= 2;
9660 return elfcore_maybe_make_sect (abfd
, name
, sect
);
9664 elfcore_make_auxv_note_section (bfd
*abfd
, Elf_Internal_Note
*note
,
9667 asection
*sect
= bfd_make_section_anyway_with_flags (abfd
, ".auxv",
9673 sect
->size
= note
->descsz
- offs
;
9674 sect
->filepos
= note
->descpos
+ offs
;
9675 sect
->alignment_power
= 1 + bfd_get_arch_size (abfd
) / 32;
9680 /* prstatus_t exists on:
9682 linux 2.[01] + glibc
9686 #if defined (HAVE_PRSTATUS_T)
9689 elfcore_grok_prstatus (bfd
*abfd
, Elf_Internal_Note
*note
)
9694 if (note
->descsz
== sizeof (prstatus_t
))
9698 size
= sizeof (prstat
.pr_reg
);
9699 offset
= offsetof (prstatus_t
, pr_reg
);
9700 memcpy (&prstat
, note
->descdata
, sizeof (prstat
));
9702 /* Do not overwrite the core signal if it
9703 has already been set by another thread. */
9704 if (elf_tdata (abfd
)->core
->signal
== 0)
9705 elf_tdata (abfd
)->core
->signal
= prstat
.pr_cursig
;
9706 if (elf_tdata (abfd
)->core
->pid
== 0)
9707 elf_tdata (abfd
)->core
->pid
= prstat
.pr_pid
;
9709 /* pr_who exists on:
9712 pr_who doesn't exist on:
9715 #if defined (HAVE_PRSTATUS_T_PR_WHO)
9716 elf_tdata (abfd
)->core
->lwpid
= prstat
.pr_who
;
9718 elf_tdata (abfd
)->core
->lwpid
= prstat
.pr_pid
;
9721 #if defined (HAVE_PRSTATUS32_T)
9722 else if (note
->descsz
== sizeof (prstatus32_t
))
9724 /* 64-bit host, 32-bit corefile */
9725 prstatus32_t prstat
;
9727 size
= sizeof (prstat
.pr_reg
);
9728 offset
= offsetof (prstatus32_t
, pr_reg
);
9729 memcpy (&prstat
, note
->descdata
, sizeof (prstat
));
9731 /* Do not overwrite the core signal if it
9732 has already been set by another thread. */
9733 if (elf_tdata (abfd
)->core
->signal
== 0)
9734 elf_tdata (abfd
)->core
->signal
= prstat
.pr_cursig
;
9735 if (elf_tdata (abfd
)->core
->pid
== 0)
9736 elf_tdata (abfd
)->core
->pid
= prstat
.pr_pid
;
9738 /* pr_who exists on:
9741 pr_who doesn't exist on:
9744 #if defined (HAVE_PRSTATUS32_T_PR_WHO)
9745 elf_tdata (abfd
)->core
->lwpid
= prstat
.pr_who
;
9747 elf_tdata (abfd
)->core
->lwpid
= prstat
.pr_pid
;
9750 #endif /* HAVE_PRSTATUS32_T */
9753 /* Fail - we don't know how to handle any other
9754 note size (ie. data object type). */
9758 /* Make a ".reg/999" section and a ".reg" section. */
9759 return _bfd_elfcore_make_pseudosection (abfd
, ".reg",
9760 size
, note
->descpos
+ offset
);
9762 #endif /* defined (HAVE_PRSTATUS_T) */
9764 /* Create a pseudosection containing the exact contents of NOTE. */
9766 elfcore_make_note_pseudosection (bfd
*abfd
,
9768 Elf_Internal_Note
*note
)
9770 return _bfd_elfcore_make_pseudosection (abfd
, name
,
9771 note
->descsz
, note
->descpos
);
9774 /* There isn't a consistent prfpregset_t across platforms,
9775 but it doesn't matter, because we don't have to pick this
9776 data structure apart. */
9779 elfcore_grok_prfpreg (bfd
*abfd
, Elf_Internal_Note
*note
)
9781 return elfcore_make_note_pseudosection (abfd
, ".reg2", note
);
9784 /* Linux dumps the Intel SSE regs in a note named "LINUX" with a note
9785 type of NT_PRXFPREG. Just include the whole note's contents
9789 elfcore_grok_prxfpreg (bfd
*abfd
, Elf_Internal_Note
*note
)
9791 return elfcore_make_note_pseudosection (abfd
, ".reg-xfp", note
);
9794 /* Linux dumps the Intel XSAVE extended state in a note named "LINUX"
9795 with a note type of NT_X86_XSTATE. Just include the whole note's
9796 contents literally. */
9799 elfcore_grok_xstatereg (bfd
*abfd
, Elf_Internal_Note
*note
)
9801 return elfcore_make_note_pseudosection (abfd
, ".reg-xstate", note
);
9805 elfcore_grok_ppc_vmx (bfd
*abfd
, Elf_Internal_Note
*note
)
9807 return elfcore_make_note_pseudosection (abfd
, ".reg-ppc-vmx", note
);
9811 elfcore_grok_ppc_vsx (bfd
*abfd
, Elf_Internal_Note
*note
)
9813 return elfcore_make_note_pseudosection (abfd
, ".reg-ppc-vsx", note
);
9817 elfcore_grok_ppc_tar (bfd
*abfd
, Elf_Internal_Note
*note
)
9819 return elfcore_make_note_pseudosection (abfd
, ".reg-ppc-tar", note
);
9823 elfcore_grok_ppc_ppr (bfd
*abfd
, Elf_Internal_Note
*note
)
9825 return elfcore_make_note_pseudosection (abfd
, ".reg-ppc-ppr", note
);
9829 elfcore_grok_ppc_dscr (bfd
*abfd
, Elf_Internal_Note
*note
)
9831 return elfcore_make_note_pseudosection (abfd
, ".reg-ppc-dscr", note
);
9835 elfcore_grok_ppc_ebb (bfd
*abfd
, Elf_Internal_Note
*note
)
9837 return elfcore_make_note_pseudosection (abfd
, ".reg-ppc-ebb", note
);
9841 elfcore_grok_ppc_pmu (bfd
*abfd
, Elf_Internal_Note
*note
)
9843 return elfcore_make_note_pseudosection (abfd
, ".reg-ppc-pmu", note
);
9847 elfcore_grok_ppc_tm_cgpr (bfd
*abfd
, Elf_Internal_Note
*note
)
9849 return elfcore_make_note_pseudosection (abfd
, ".reg-ppc-tm-cgpr", note
);
9853 elfcore_grok_ppc_tm_cfpr (bfd
*abfd
, Elf_Internal_Note
*note
)
9855 return elfcore_make_note_pseudosection (abfd
, ".reg-ppc-tm-cfpr", note
);
9859 elfcore_grok_ppc_tm_cvmx (bfd
*abfd
, Elf_Internal_Note
*note
)
9861 return elfcore_make_note_pseudosection (abfd
, ".reg-ppc-tm-cvmx", note
);
9865 elfcore_grok_ppc_tm_cvsx (bfd
*abfd
, Elf_Internal_Note
*note
)
9867 return elfcore_make_note_pseudosection (abfd
, ".reg-ppc-tm-cvsx", note
);
9871 elfcore_grok_ppc_tm_spr (bfd
*abfd
, Elf_Internal_Note
*note
)
9873 return elfcore_make_note_pseudosection (abfd
, ".reg-ppc-tm-spr", note
);
9877 elfcore_grok_ppc_tm_ctar (bfd
*abfd
, Elf_Internal_Note
*note
)
9879 return elfcore_make_note_pseudosection (abfd
, ".reg-ppc-tm-ctar", note
);
9883 elfcore_grok_ppc_tm_cppr (bfd
*abfd
, Elf_Internal_Note
*note
)
9885 return elfcore_make_note_pseudosection (abfd
, ".reg-ppc-tm-cppr", note
);
9889 elfcore_grok_ppc_tm_cdscr (bfd
*abfd
, Elf_Internal_Note
*note
)
9891 return elfcore_make_note_pseudosection (abfd
, ".reg-ppc-tm-cdscr", note
);
9895 elfcore_grok_s390_high_gprs (bfd
*abfd
, Elf_Internal_Note
*note
)
9897 return elfcore_make_note_pseudosection (abfd
, ".reg-s390-high-gprs", note
);
9901 elfcore_grok_s390_timer (bfd
*abfd
, Elf_Internal_Note
*note
)
9903 return elfcore_make_note_pseudosection (abfd
, ".reg-s390-timer", note
);
9907 elfcore_grok_s390_todcmp (bfd
*abfd
, Elf_Internal_Note
*note
)
9909 return elfcore_make_note_pseudosection (abfd
, ".reg-s390-todcmp", note
);
9913 elfcore_grok_s390_todpreg (bfd
*abfd
, Elf_Internal_Note
*note
)
9915 return elfcore_make_note_pseudosection (abfd
, ".reg-s390-todpreg", note
);
9919 elfcore_grok_s390_ctrs (bfd
*abfd
, Elf_Internal_Note
*note
)
9921 return elfcore_make_note_pseudosection (abfd
, ".reg-s390-ctrs", note
);
9925 elfcore_grok_s390_prefix (bfd
*abfd
, Elf_Internal_Note
*note
)
9927 return elfcore_make_note_pseudosection (abfd
, ".reg-s390-prefix", note
);
9931 elfcore_grok_s390_last_break (bfd
*abfd
, Elf_Internal_Note
*note
)
9933 return elfcore_make_note_pseudosection (abfd
, ".reg-s390-last-break", note
);
9937 elfcore_grok_s390_system_call (bfd
*abfd
, Elf_Internal_Note
*note
)
9939 return elfcore_make_note_pseudosection (abfd
, ".reg-s390-system-call", note
);
9943 elfcore_grok_s390_tdb (bfd
*abfd
, Elf_Internal_Note
*note
)
9945 return elfcore_make_note_pseudosection (abfd
, ".reg-s390-tdb", note
);
9949 elfcore_grok_s390_vxrs_low (bfd
*abfd
, Elf_Internal_Note
*note
)
9951 return elfcore_make_note_pseudosection (abfd
, ".reg-s390-vxrs-low", note
);
9955 elfcore_grok_s390_vxrs_high (bfd
*abfd
, Elf_Internal_Note
*note
)
9957 return elfcore_make_note_pseudosection (abfd
, ".reg-s390-vxrs-high", note
);
9961 elfcore_grok_s390_gs_cb (bfd
*abfd
, Elf_Internal_Note
*note
)
9963 return elfcore_make_note_pseudosection (abfd
, ".reg-s390-gs-cb", note
);
9967 elfcore_grok_s390_gs_bc (bfd
*abfd
, Elf_Internal_Note
*note
)
9969 return elfcore_make_note_pseudosection (abfd
, ".reg-s390-gs-bc", note
);
9973 elfcore_grok_arm_vfp (bfd
*abfd
, Elf_Internal_Note
*note
)
9975 return elfcore_make_note_pseudosection (abfd
, ".reg-arm-vfp", note
);
9979 elfcore_grok_aarch_tls (bfd
*abfd
, Elf_Internal_Note
*note
)
9981 return elfcore_make_note_pseudosection (abfd
, ".reg-aarch-tls", note
);
9985 elfcore_grok_aarch_hw_break (bfd
*abfd
, Elf_Internal_Note
*note
)
9987 return elfcore_make_note_pseudosection (abfd
, ".reg-aarch-hw-break", note
);
9991 elfcore_grok_aarch_hw_watch (bfd
*abfd
, Elf_Internal_Note
*note
)
9993 return elfcore_make_note_pseudosection (abfd
, ".reg-aarch-hw-watch", note
);
9997 elfcore_grok_aarch_sve (bfd
*abfd
, Elf_Internal_Note
*note
)
9999 return elfcore_make_note_pseudosection (abfd
, ".reg-aarch-sve", note
);
10003 elfcore_grok_aarch_pauth (bfd
*abfd
, Elf_Internal_Note
*note
)
10005 return elfcore_make_note_pseudosection (abfd
, ".reg-aarch-pauth", note
);
10009 elfcore_grok_aarch_mte (bfd
*abfd
, Elf_Internal_Note
*note
)
10011 return elfcore_make_note_pseudosection (abfd
, ".reg-aarch-mte",
10016 elfcore_grok_arc_v2 (bfd
*abfd
, Elf_Internal_Note
*note
)
10018 return elfcore_make_note_pseudosection (abfd
, ".reg-arc-v2", note
);
10021 /* Convert NOTE into a bfd_section called ".reg-riscv-csr". Return TRUE if
10022 successful otherwise, return FALSE. */
10025 elfcore_grok_riscv_csr (bfd
*abfd
, Elf_Internal_Note
*note
)
10027 return elfcore_make_note_pseudosection (abfd
, ".reg-riscv-csr", note
);
10030 /* Convert NOTE into a bfd_section called ".gdb-tdesc". Return TRUE if
10031 successful otherwise, return FALSE. */
10034 elfcore_grok_gdb_tdesc (bfd
*abfd
, Elf_Internal_Note
*note
)
10036 return elfcore_make_note_pseudosection (abfd
, ".gdb-tdesc", note
);
10040 elfcore_grok_loongarch_cpucfg (bfd
*abfd
, Elf_Internal_Note
*note
)
10042 return elfcore_make_note_pseudosection (abfd
, ".reg-loongarch-cpucfg", note
);
10046 elfcore_grok_loongarch_lbt (bfd
*abfd
, Elf_Internal_Note
*note
)
10048 return elfcore_make_note_pseudosection (abfd
, ".reg-loongarch-lbt", note
);
10052 elfcore_grok_loongarch_lsx (bfd
*abfd
, Elf_Internal_Note
*note
)
10054 return elfcore_make_note_pseudosection (abfd
, ".reg-loongarch-lsx", note
);
10058 elfcore_grok_loongarch_lasx (bfd
*abfd
, Elf_Internal_Note
*note
)
10060 return elfcore_make_note_pseudosection (abfd
, ".reg-loongarch-lasx", note
);
10063 #if defined (HAVE_PRPSINFO_T)
10064 typedef prpsinfo_t elfcore_psinfo_t
;
10065 #if defined (HAVE_PRPSINFO32_T) /* Sparc64 cross Sparc32 */
10066 typedef prpsinfo32_t elfcore_psinfo32_t
;
10070 #if defined (HAVE_PSINFO_T)
10071 typedef psinfo_t elfcore_psinfo_t
;
10072 #if defined (HAVE_PSINFO32_T) /* Sparc64 cross Sparc32 */
10073 typedef psinfo32_t elfcore_psinfo32_t
;
10077 /* return a malloc'ed copy of a string at START which is at
10078 most MAX bytes long, possibly without a terminating '\0'.
10079 the copy will always have a terminating '\0'. */
10082 _bfd_elfcore_strndup (bfd
*abfd
, char *start
, size_t max
)
10085 char *end
= (char *) memchr (start
, '\0', max
);
10093 dups
= (char *) bfd_alloc (abfd
, len
+ 1);
10097 memcpy (dups
, start
, len
);
10103 #if defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T)
10105 elfcore_grok_psinfo (bfd
*abfd
, Elf_Internal_Note
*note
)
10107 if (note
->descsz
== sizeof (elfcore_psinfo_t
))
10109 elfcore_psinfo_t psinfo
;
10111 memcpy (&psinfo
, note
->descdata
, sizeof (psinfo
));
10113 #if defined (HAVE_PSINFO_T_PR_PID) || defined (HAVE_PRPSINFO_T_PR_PID)
10114 elf_tdata (abfd
)->core
->pid
= psinfo
.pr_pid
;
10116 elf_tdata (abfd
)->core
->program
10117 = _bfd_elfcore_strndup (abfd
, psinfo
.pr_fname
,
10118 sizeof (psinfo
.pr_fname
));
10120 elf_tdata (abfd
)->core
->command
10121 = _bfd_elfcore_strndup (abfd
, psinfo
.pr_psargs
,
10122 sizeof (psinfo
.pr_psargs
));
10124 #if defined (HAVE_PRPSINFO32_T) || defined (HAVE_PSINFO32_T)
10125 else if (note
->descsz
== sizeof (elfcore_psinfo32_t
))
10127 /* 64-bit host, 32-bit corefile */
10128 elfcore_psinfo32_t psinfo
;
10130 memcpy (&psinfo
, note
->descdata
, sizeof (psinfo
));
10132 #if defined (HAVE_PSINFO32_T_PR_PID) || defined (HAVE_PRPSINFO32_T_PR_PID)
10133 elf_tdata (abfd
)->core
->pid
= psinfo
.pr_pid
;
10135 elf_tdata (abfd
)->core
->program
10136 = _bfd_elfcore_strndup (abfd
, psinfo
.pr_fname
,
10137 sizeof (psinfo
.pr_fname
));
10139 elf_tdata (abfd
)->core
->command
10140 = _bfd_elfcore_strndup (abfd
, psinfo
.pr_psargs
,
10141 sizeof (psinfo
.pr_psargs
));
10147 /* Fail - we don't know how to handle any other
10148 note size (ie. data object type). */
10152 /* Note that for some reason, a spurious space is tacked
10153 onto the end of the args in some (at least one anyway)
10154 implementations, so strip it off if it exists. */
10157 char *command
= elf_tdata (abfd
)->core
->command
;
10158 int n
= strlen (command
);
10160 if (0 < n
&& command
[n
- 1] == ' ')
10161 command
[n
- 1] = '\0';
10166 #endif /* defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T) */
10168 #if defined (HAVE_PSTATUS_T)
10170 elfcore_grok_pstatus (bfd
*abfd
, Elf_Internal_Note
*note
)
10172 if (note
->descsz
== sizeof (pstatus_t
)
10173 #if defined (HAVE_PXSTATUS_T)
10174 || note
->descsz
== sizeof (pxstatus_t
)
10180 memcpy (&pstat
, note
->descdata
, sizeof (pstat
));
10182 elf_tdata (abfd
)->core
->pid
= pstat
.pr_pid
;
10184 #if defined (HAVE_PSTATUS32_T)
10185 else if (note
->descsz
== sizeof (pstatus32_t
))
10187 /* 64-bit host, 32-bit corefile */
10190 memcpy (&pstat
, note
->descdata
, sizeof (pstat
));
10192 elf_tdata (abfd
)->core
->pid
= pstat
.pr_pid
;
10195 /* Could grab some more details from the "representative"
10196 lwpstatus_t in pstat.pr_lwp, but we'll catch it all in an
10197 NT_LWPSTATUS note, presumably. */
10201 #endif /* defined (HAVE_PSTATUS_T) */
10203 #if defined (HAVE_LWPSTATUS_T)
10205 elfcore_grok_lwpstatus (bfd
*abfd
, Elf_Internal_Note
*note
)
10207 lwpstatus_t lwpstat
;
10213 if (note
->descsz
!= sizeof (lwpstat
)
10214 #if defined (HAVE_LWPXSTATUS_T)
10215 && note
->descsz
!= sizeof (lwpxstatus_t
)
10220 memcpy (&lwpstat
, note
->descdata
, sizeof (lwpstat
));
10222 elf_tdata (abfd
)->core
->lwpid
= lwpstat
.pr_lwpid
;
10223 /* Do not overwrite the core signal if it has already been set by
10225 if (elf_tdata (abfd
)->core
->signal
== 0)
10226 elf_tdata (abfd
)->core
->signal
= lwpstat
.pr_cursig
;
10228 /* Make a ".reg/999" section. */
10230 sprintf (buf
, ".reg/%d", elfcore_make_pid (abfd
));
10231 len
= strlen (buf
) + 1;
10232 name
= bfd_alloc (abfd
, len
);
10235 memcpy (name
, buf
, len
);
10237 sect
= bfd_make_section_anyway_with_flags (abfd
, name
, SEC_HAS_CONTENTS
);
10241 #if defined (HAVE_LWPSTATUS_T_PR_CONTEXT)
10242 sect
->size
= sizeof (lwpstat
.pr_context
.uc_mcontext
.gregs
);
10243 sect
->filepos
= note
->descpos
10244 + offsetof (lwpstatus_t
, pr_context
.uc_mcontext
.gregs
);
10247 #if defined (HAVE_LWPSTATUS_T_PR_REG)
10248 sect
->size
= sizeof (lwpstat
.pr_reg
);
10249 sect
->filepos
= note
->descpos
+ offsetof (lwpstatus_t
, pr_reg
);
10252 sect
->alignment_power
= 2;
10254 if (!elfcore_maybe_make_sect (abfd
, ".reg", sect
))
10257 /* Make a ".reg2/999" section */
10259 sprintf (buf
, ".reg2/%d", elfcore_make_pid (abfd
));
10260 len
= strlen (buf
) + 1;
10261 name
= bfd_alloc (abfd
, len
);
10264 memcpy (name
, buf
, len
);
10266 sect
= bfd_make_section_anyway_with_flags (abfd
, name
, SEC_HAS_CONTENTS
);
10270 #if defined (HAVE_LWPSTATUS_T_PR_CONTEXT)
10271 sect
->size
= sizeof (lwpstat
.pr_context
.uc_mcontext
.fpregs
);
10272 sect
->filepos
= note
->descpos
10273 + offsetof (lwpstatus_t
, pr_context
.uc_mcontext
.fpregs
);
10276 #if defined (HAVE_LWPSTATUS_T_PR_FPREG)
10277 sect
->size
= sizeof (lwpstat
.pr_fpreg
);
10278 sect
->filepos
= note
->descpos
+ offsetof (lwpstatus_t
, pr_fpreg
);
10281 sect
->alignment_power
= 2;
10283 return elfcore_maybe_make_sect (abfd
, ".reg2", sect
);
10285 #endif /* defined (HAVE_LWPSTATUS_T) */
10287 /* These constants, and the structure offsets used below, are defined by
10288 Cygwin's core_dump.h */
10289 #define NOTE_INFO_PROCESS 1
10290 #define NOTE_INFO_THREAD 2
10291 #define NOTE_INFO_MODULE 3
10292 #define NOTE_INFO_MODULE64 4
10295 elfcore_grok_win32pstatus (bfd
*abfd
, Elf_Internal_Note
*note
)
10300 unsigned int name_size
;
10303 int is_active_thread
;
10306 if (note
->descsz
< 4)
10309 if (! startswith (note
->namedata
, "win32"))
10312 type
= bfd_get_32 (abfd
, note
->descdata
);
10316 const char *type_name
;
10317 unsigned long min_size
;
10320 { "NOTE_INFO_PROCESS", 12 },
10321 { "NOTE_INFO_THREAD", 12 },
10322 { "NOTE_INFO_MODULE", 12 },
10323 { "NOTE_INFO_MODULE64", 16 },
10326 if (type
== 0 || type
> (sizeof(size_check
)/sizeof(size_check
[0])))
10329 if (note
->descsz
< size_check
[type
- 1].min_size
)
10331 _bfd_error_handler (_("%pB: warning: win32pstatus %s of size %lu bytes is too small"),
10332 abfd
, size_check
[type
- 1].type_name
, note
->descsz
);
10338 case NOTE_INFO_PROCESS
:
10339 /* FIXME: need to add ->core->command. */
10340 elf_tdata (abfd
)->core
->pid
= bfd_get_32 (abfd
, note
->descdata
+ 4);
10341 elf_tdata (abfd
)->core
->signal
= bfd_get_32 (abfd
, note
->descdata
+ 8);
10344 case NOTE_INFO_THREAD
:
10345 /* Make a ".reg/<tid>" section containing the Win32 API thread CONTEXT
10347 /* thread_info.tid */
10348 sprintf (buf
, ".reg/%ld", (long) bfd_get_32 (abfd
, note
->descdata
+ 4));
10350 len
= strlen (buf
) + 1;
10351 name
= (char *) bfd_alloc (abfd
, len
);
10355 memcpy (name
, buf
, len
);
10357 sect
= bfd_make_section_anyway_with_flags (abfd
, name
, SEC_HAS_CONTENTS
);
10361 /* sizeof (thread_info.thread_context) */
10362 sect
->size
= note
->descsz
- 12;
10363 /* offsetof (thread_info.thread_context) */
10364 sect
->filepos
= note
->descpos
+ 12;
10365 sect
->alignment_power
= 2;
10367 /* thread_info.is_active_thread */
10368 is_active_thread
= bfd_get_32 (abfd
, note
->descdata
+ 8);
10370 if (is_active_thread
)
10371 if (! elfcore_maybe_make_sect (abfd
, ".reg", sect
))
10375 case NOTE_INFO_MODULE
:
10376 case NOTE_INFO_MODULE64
:
10377 /* Make a ".module/xxxxxxxx" section. */
10378 if (type
== NOTE_INFO_MODULE
)
10380 /* module_info.base_address */
10381 base_addr
= bfd_get_32 (abfd
, note
->descdata
+ 4);
10382 sprintf (buf
, ".module/%08lx", (unsigned long) base_addr
);
10383 /* module_info.module_name_size */
10384 name_size
= bfd_get_32 (abfd
, note
->descdata
+ 8);
10386 else /* NOTE_INFO_MODULE64 */
10388 /* module_info.base_address */
10389 base_addr
= bfd_get_64 (abfd
, note
->descdata
+ 4);
10390 sprintf (buf
, ".module/%016lx", (unsigned long) base_addr
);
10391 /* module_info.module_name_size */
10392 name_size
= bfd_get_32 (abfd
, note
->descdata
+ 12);
10395 len
= strlen (buf
) + 1;
10396 name
= (char *) bfd_alloc (abfd
, len
);
10400 memcpy (name
, buf
, len
);
10402 sect
= bfd_make_section_anyway_with_flags (abfd
, name
, SEC_HAS_CONTENTS
);
10407 if (note
->descsz
< 12 + name_size
)
10409 _bfd_error_handler (_("%pB: win32pstatus NOTE_INFO_MODULE of size %lu is too small to contain a name of size %u"),
10410 abfd
, note
->descsz
, name_size
);
10414 sect
->size
= note
->descsz
;
10415 sect
->filepos
= note
->descpos
;
10416 sect
->alignment_power
= 2;
10427 elfcore_grok_note (bfd
*abfd
, Elf_Internal_Note
*note
)
10429 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
10431 switch (note
->type
)
10437 if (bed
->elf_backend_grok_prstatus
)
10438 if ((*bed
->elf_backend_grok_prstatus
) (abfd
, note
))
10440 #if defined (HAVE_PRSTATUS_T)
10441 return elfcore_grok_prstatus (abfd
, note
);
10446 #if defined (HAVE_PSTATUS_T)
10448 return elfcore_grok_pstatus (abfd
, note
);
10451 #if defined (HAVE_LWPSTATUS_T)
10453 return elfcore_grok_lwpstatus (abfd
, note
);
10456 case NT_FPREGSET
: /* FIXME: rename to NT_PRFPREG */
10457 return elfcore_grok_prfpreg (abfd
, note
);
10459 case NT_WIN32PSTATUS
:
10460 return elfcore_grok_win32pstatus (abfd
, note
);
10462 case NT_PRXFPREG
: /* Linux SSE extension */
10463 if (note
->namesz
== 6
10464 && strcmp (note
->namedata
, "LINUX") == 0)
10465 return elfcore_grok_prxfpreg (abfd
, note
);
10469 case NT_X86_XSTATE
: /* Linux XSAVE extension */
10470 if (note
->namesz
== 6
10471 && strcmp (note
->namedata
, "LINUX") == 0)
10472 return elfcore_grok_xstatereg (abfd
, note
);
10477 if (note
->namesz
== 6
10478 && strcmp (note
->namedata
, "LINUX") == 0)
10479 return elfcore_grok_ppc_vmx (abfd
, note
);
10484 if (note
->namesz
== 6
10485 && strcmp (note
->namedata
, "LINUX") == 0)
10486 return elfcore_grok_ppc_vsx (abfd
, note
);
10491 if (note
->namesz
== 6
10492 && strcmp (note
->namedata
, "LINUX") == 0)
10493 return elfcore_grok_ppc_tar (abfd
, note
);
10498 if (note
->namesz
== 6
10499 && strcmp (note
->namedata
, "LINUX") == 0)
10500 return elfcore_grok_ppc_ppr (abfd
, note
);
10505 if (note
->namesz
== 6
10506 && strcmp (note
->namedata
, "LINUX") == 0)
10507 return elfcore_grok_ppc_dscr (abfd
, note
);
10512 if (note
->namesz
== 6
10513 && strcmp (note
->namedata
, "LINUX") == 0)
10514 return elfcore_grok_ppc_ebb (abfd
, note
);
10519 if (note
->namesz
== 6
10520 && strcmp (note
->namedata
, "LINUX") == 0)
10521 return elfcore_grok_ppc_pmu (abfd
, note
);
10525 case NT_PPC_TM_CGPR
:
10526 if (note
->namesz
== 6
10527 && strcmp (note
->namedata
, "LINUX") == 0)
10528 return elfcore_grok_ppc_tm_cgpr (abfd
, note
);
10532 case NT_PPC_TM_CFPR
:
10533 if (note
->namesz
== 6
10534 && strcmp (note
->namedata
, "LINUX") == 0)
10535 return elfcore_grok_ppc_tm_cfpr (abfd
, note
);
10539 case NT_PPC_TM_CVMX
:
10540 if (note
->namesz
== 6
10541 && strcmp (note
->namedata
, "LINUX") == 0)
10542 return elfcore_grok_ppc_tm_cvmx (abfd
, note
);
10546 case NT_PPC_TM_CVSX
:
10547 if (note
->namesz
== 6
10548 && strcmp (note
->namedata
, "LINUX") == 0)
10549 return elfcore_grok_ppc_tm_cvsx (abfd
, note
);
10553 case NT_PPC_TM_SPR
:
10554 if (note
->namesz
== 6
10555 && strcmp (note
->namedata
, "LINUX") == 0)
10556 return elfcore_grok_ppc_tm_spr (abfd
, note
);
10560 case NT_PPC_TM_CTAR
:
10561 if (note
->namesz
== 6
10562 && strcmp (note
->namedata
, "LINUX") == 0)
10563 return elfcore_grok_ppc_tm_ctar (abfd
, note
);
10567 case NT_PPC_TM_CPPR
:
10568 if (note
->namesz
== 6
10569 && strcmp (note
->namedata
, "LINUX") == 0)
10570 return elfcore_grok_ppc_tm_cppr (abfd
, note
);
10574 case NT_PPC_TM_CDSCR
:
10575 if (note
->namesz
== 6
10576 && strcmp (note
->namedata
, "LINUX") == 0)
10577 return elfcore_grok_ppc_tm_cdscr (abfd
, note
);
10581 case NT_S390_HIGH_GPRS
:
10582 if (note
->namesz
== 6
10583 && strcmp (note
->namedata
, "LINUX") == 0)
10584 return elfcore_grok_s390_high_gprs (abfd
, note
);
10588 case NT_S390_TIMER
:
10589 if (note
->namesz
== 6
10590 && strcmp (note
->namedata
, "LINUX") == 0)
10591 return elfcore_grok_s390_timer (abfd
, note
);
10595 case NT_S390_TODCMP
:
10596 if (note
->namesz
== 6
10597 && strcmp (note
->namedata
, "LINUX") == 0)
10598 return elfcore_grok_s390_todcmp (abfd
, note
);
10602 case NT_S390_TODPREG
:
10603 if (note
->namesz
== 6
10604 && strcmp (note
->namedata
, "LINUX") == 0)
10605 return elfcore_grok_s390_todpreg (abfd
, note
);
10610 if (note
->namesz
== 6
10611 && strcmp (note
->namedata
, "LINUX") == 0)
10612 return elfcore_grok_s390_ctrs (abfd
, note
);
10616 case NT_S390_PREFIX
:
10617 if (note
->namesz
== 6
10618 && strcmp (note
->namedata
, "LINUX") == 0)
10619 return elfcore_grok_s390_prefix (abfd
, note
);
10623 case NT_S390_LAST_BREAK
:
10624 if (note
->namesz
== 6
10625 && strcmp (note
->namedata
, "LINUX") == 0)
10626 return elfcore_grok_s390_last_break (abfd
, note
);
10630 case NT_S390_SYSTEM_CALL
:
10631 if (note
->namesz
== 6
10632 && strcmp (note
->namedata
, "LINUX") == 0)
10633 return elfcore_grok_s390_system_call (abfd
, note
);
10638 if (note
->namesz
== 6
10639 && strcmp (note
->namedata
, "LINUX") == 0)
10640 return elfcore_grok_s390_tdb (abfd
, note
);
10644 case NT_S390_VXRS_LOW
:
10645 if (note
->namesz
== 6
10646 && strcmp (note
->namedata
, "LINUX") == 0)
10647 return elfcore_grok_s390_vxrs_low (abfd
, note
);
10651 case NT_S390_VXRS_HIGH
:
10652 if (note
->namesz
== 6
10653 && strcmp (note
->namedata
, "LINUX") == 0)
10654 return elfcore_grok_s390_vxrs_high (abfd
, note
);
10658 case NT_S390_GS_CB
:
10659 if (note
->namesz
== 6
10660 && strcmp (note
->namedata
, "LINUX") == 0)
10661 return elfcore_grok_s390_gs_cb (abfd
, note
);
10665 case NT_S390_GS_BC
:
10666 if (note
->namesz
== 6
10667 && strcmp (note
->namedata
, "LINUX") == 0)
10668 return elfcore_grok_s390_gs_bc (abfd
, note
);
10673 if (note
->namesz
== 6
10674 && strcmp (note
->namedata
, "LINUX") == 0)
10675 return elfcore_grok_arc_v2 (abfd
, note
);
10680 if (note
->namesz
== 6
10681 && strcmp (note
->namedata
, "LINUX") == 0)
10682 return elfcore_grok_arm_vfp (abfd
, note
);
10687 if (note
->namesz
== 6
10688 && strcmp (note
->namedata
, "LINUX") == 0)
10689 return elfcore_grok_aarch_tls (abfd
, note
);
10693 case NT_ARM_HW_BREAK
:
10694 if (note
->namesz
== 6
10695 && strcmp (note
->namedata
, "LINUX") == 0)
10696 return elfcore_grok_aarch_hw_break (abfd
, note
);
10700 case NT_ARM_HW_WATCH
:
10701 if (note
->namesz
== 6
10702 && strcmp (note
->namedata
, "LINUX") == 0)
10703 return elfcore_grok_aarch_hw_watch (abfd
, note
);
10708 if (note
->namesz
== 6
10709 && strcmp (note
->namedata
, "LINUX") == 0)
10710 return elfcore_grok_aarch_sve (abfd
, note
);
10714 case NT_ARM_PAC_MASK
:
10715 if (note
->namesz
== 6
10716 && strcmp (note
->namedata
, "LINUX") == 0)
10717 return elfcore_grok_aarch_pauth (abfd
, note
);
10721 case NT_ARM_TAGGED_ADDR_CTRL
:
10722 if (note
->namesz
== 6
10723 && strcmp (note
->namedata
, "LINUX") == 0)
10724 return elfcore_grok_aarch_mte (abfd
, note
);
10729 if (note
->namesz
== 4
10730 && strcmp (note
->namedata
, "GDB") == 0)
10731 return elfcore_grok_gdb_tdesc (abfd
, note
);
10736 if (note
->namesz
== 4
10737 && strcmp (note
->namedata
, "GDB") == 0)
10738 return elfcore_grok_riscv_csr (abfd
, note
);
10742 case NT_LARCH_CPUCFG
:
10743 if (note
->namesz
== 6
10744 && strcmp (note
->namedata
, "LINUX") == 0)
10745 return elfcore_grok_loongarch_cpucfg (abfd
, note
);
10750 if (note
->namesz
== 6
10751 && strcmp (note
->namedata
, "LINUX") == 0)
10752 return elfcore_grok_loongarch_lbt (abfd
, note
);
10757 if (note
->namesz
== 6
10758 && strcmp (note
->namedata
, "LINUX") == 0)
10759 return elfcore_grok_loongarch_lsx (abfd
, note
);
10763 case NT_LARCH_LASX
:
10764 if (note
->namesz
== 6
10765 && strcmp (note
->namedata
, "LINUX") == 0)
10766 return elfcore_grok_loongarch_lasx (abfd
, note
);
10772 if (bed
->elf_backend_grok_psinfo
)
10773 if ((*bed
->elf_backend_grok_psinfo
) (abfd
, note
))
10775 #if defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T)
10776 return elfcore_grok_psinfo (abfd
, note
);
10782 return elfcore_make_auxv_note_section (abfd
, note
, 0);
10785 return elfcore_make_note_pseudosection (abfd
, ".note.linuxcore.file",
10789 return elfcore_make_note_pseudosection (abfd
, ".note.linuxcore.siginfo",
10796 elfobj_grok_gnu_build_id (bfd
*abfd
, Elf_Internal_Note
*note
)
10798 struct bfd_build_id
* build_id
;
10800 if (note
->descsz
== 0)
10803 build_id
= bfd_alloc (abfd
, sizeof (struct bfd_build_id
) - 1 + note
->descsz
);
10804 if (build_id
== NULL
)
10807 build_id
->size
= note
->descsz
;
10808 memcpy (build_id
->data
, note
->descdata
, note
->descsz
);
10809 abfd
->build_id
= build_id
;
10815 elfobj_grok_gnu_note (bfd
*abfd
, Elf_Internal_Note
*note
)
10817 switch (note
->type
)
10822 case NT_GNU_PROPERTY_TYPE_0
:
10823 return _bfd_elf_parse_gnu_properties (abfd
, note
);
10825 case NT_GNU_BUILD_ID
:
10826 return elfobj_grok_gnu_build_id (abfd
, note
);
10831 elfobj_grok_stapsdt_note_1 (bfd
*abfd
, Elf_Internal_Note
*note
)
10833 struct sdt_note
*cur
=
10834 (struct sdt_note
*) bfd_alloc (abfd
,
10835 sizeof (struct sdt_note
) + note
->descsz
);
10837 cur
->next
= (struct sdt_note
*) (elf_tdata (abfd
))->sdt_note_head
;
10838 cur
->size
= (bfd_size_type
) note
->descsz
;
10839 memcpy (cur
->data
, note
->descdata
, note
->descsz
);
10841 elf_tdata (abfd
)->sdt_note_head
= cur
;
10847 elfobj_grok_stapsdt_note (bfd
*abfd
, Elf_Internal_Note
*note
)
10849 switch (note
->type
)
10852 return elfobj_grok_stapsdt_note_1 (abfd
, note
);
10860 elfcore_grok_freebsd_psinfo (bfd
*abfd
, Elf_Internal_Note
*note
)
10864 switch (elf_elfheader (abfd
)->e_ident
[EI_CLASS
])
10867 if (note
->descsz
< 108)
10872 if (note
->descsz
< 120)
10880 /* Check for version 1 in pr_version. */
10881 if (bfd_h_get_32 (abfd
, (bfd_byte
*) note
->descdata
) != 1)
10886 /* Skip over pr_psinfosz. */
10887 if (elf_elfheader (abfd
)->e_ident
[EI_CLASS
] == ELFCLASS32
)
10891 offset
+= 4; /* Padding before pr_psinfosz. */
10895 /* pr_fname is PRFNAMESZ (16) + 1 bytes in size. */
10896 elf_tdata (abfd
)->core
->program
10897 = _bfd_elfcore_strndup (abfd
, note
->descdata
+ offset
, 17);
10900 /* pr_psargs is PRARGSZ (80) + 1 bytes in size. */
10901 elf_tdata (abfd
)->core
->command
10902 = _bfd_elfcore_strndup (abfd
, note
->descdata
+ offset
, 81);
10905 /* Padding before pr_pid. */
10908 /* The pr_pid field was added in version "1a". */
10909 if (note
->descsz
< offset
+ 4)
10912 elf_tdata (abfd
)->core
->pid
10913 = bfd_h_get_32 (abfd
, (bfd_byte
*) note
->descdata
+ offset
);
10919 elfcore_grok_freebsd_prstatus (bfd
*abfd
, Elf_Internal_Note
*note
)
10925 /* Compute offset of pr_getregsz, skipping over pr_statussz.
10926 Also compute minimum size of this note. */
10927 switch (elf_elfheader (abfd
)->e_ident
[EI_CLASS
])
10931 min_size
= offset
+ (4 * 2) + 4 + 4 + 4;
10935 offset
= 4 + 4 + 8; /* Includes padding before pr_statussz. */
10936 min_size
= offset
+ (8 * 2) + 4 + 4 + 4 + 4;
10943 if (note
->descsz
< min_size
)
10946 /* Check for version 1 in pr_version. */
10947 if (bfd_h_get_32 (abfd
, (bfd_byte
*) note
->descdata
) != 1)
10950 /* Extract size of pr_reg from pr_gregsetsz. */
10951 /* Skip over pr_gregsetsz and pr_fpregsetsz. */
10952 if (elf_elfheader (abfd
)->e_ident
[EI_CLASS
] == ELFCLASS32
)
10954 size
= bfd_h_get_32 (abfd
, (bfd_byte
*) note
->descdata
+ offset
);
10959 size
= bfd_h_get_64 (abfd
, (bfd_byte
*) note
->descdata
+ offset
);
10963 /* Skip over pr_osreldate. */
10966 /* Read signal from pr_cursig. */
10967 if (elf_tdata (abfd
)->core
->signal
== 0)
10968 elf_tdata (abfd
)->core
->signal
10969 = bfd_h_get_32 (abfd
, (bfd_byte
*) note
->descdata
+ offset
);
10972 /* Read TID from pr_pid. */
10973 elf_tdata (abfd
)->core
->lwpid
10974 = bfd_h_get_32 (abfd
, (bfd_byte
*) note
->descdata
+ offset
);
10977 /* Padding before pr_reg. */
10978 if (elf_elfheader (abfd
)->e_ident
[EI_CLASS
] == ELFCLASS64
)
10981 /* Make sure that there is enough data remaining in the note. */
10982 if ((note
->descsz
- offset
) < size
)
10985 /* Make a ".reg/999" section and a ".reg" section. */
10986 return _bfd_elfcore_make_pseudosection (abfd
, ".reg",
10987 size
, note
->descpos
+ offset
);
10991 elfcore_grok_freebsd_note (bfd
*abfd
, Elf_Internal_Note
*note
)
10993 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
10995 switch (note
->type
)
10998 if (bed
->elf_backend_grok_freebsd_prstatus
)
10999 if ((*bed
->elf_backend_grok_freebsd_prstatus
) (abfd
, note
))
11001 return elfcore_grok_freebsd_prstatus (abfd
, note
);
11004 return elfcore_grok_prfpreg (abfd
, note
);
11007 return elfcore_grok_freebsd_psinfo (abfd
, note
);
11009 case NT_FREEBSD_THRMISC
:
11010 if (note
->namesz
== 8)
11011 return elfcore_make_note_pseudosection (abfd
, ".thrmisc", note
);
11015 case NT_FREEBSD_PROCSTAT_PROC
:
11016 return elfcore_make_note_pseudosection (abfd
, ".note.freebsdcore.proc",
11019 case NT_FREEBSD_PROCSTAT_FILES
:
11020 return elfcore_make_note_pseudosection (abfd
, ".note.freebsdcore.files",
11023 case NT_FREEBSD_PROCSTAT_VMMAP
:
11024 return elfcore_make_note_pseudosection (abfd
, ".note.freebsdcore.vmmap",
11027 case NT_FREEBSD_PROCSTAT_AUXV
:
11028 return elfcore_make_auxv_note_section (abfd
, note
, 4);
11030 case NT_X86_XSTATE
:
11031 if (note
->namesz
== 8)
11032 return elfcore_grok_xstatereg (abfd
, note
);
11036 case NT_FREEBSD_PTLWPINFO
:
11037 return elfcore_make_note_pseudosection (abfd
, ".note.freebsdcore.lwpinfo",
11041 return elfcore_grok_arm_vfp (abfd
, note
);
11049 elfcore_netbsd_get_lwpid (Elf_Internal_Note
*note
, int *lwpidp
)
11053 cp
= strchr (note
->namedata
, '@');
11056 *lwpidp
= atoi(cp
+ 1);
11063 elfcore_grok_netbsd_procinfo (bfd
*abfd
, Elf_Internal_Note
*note
)
11065 if (note
->descsz
<= 0x7c + 31)
11068 /* Signal number at offset 0x08. */
11069 elf_tdata (abfd
)->core
->signal
11070 = bfd_h_get_32 (abfd
, (bfd_byte
*) note
->descdata
+ 0x08);
11072 /* Process ID at offset 0x50. */
11073 elf_tdata (abfd
)->core
->pid
11074 = bfd_h_get_32 (abfd
, (bfd_byte
*) note
->descdata
+ 0x50);
11076 /* Command name at 0x7c (max 32 bytes, including nul). */
11077 elf_tdata (abfd
)->core
->command
11078 = _bfd_elfcore_strndup (abfd
, note
->descdata
+ 0x7c, 31);
11080 return elfcore_make_note_pseudosection (abfd
, ".note.netbsdcore.procinfo",
11085 elfcore_grok_netbsd_note (bfd
*abfd
, Elf_Internal_Note
*note
)
11089 if (elfcore_netbsd_get_lwpid (note
, &lwp
))
11090 elf_tdata (abfd
)->core
->lwpid
= lwp
;
11092 switch (note
->type
)
11094 case NT_NETBSDCORE_PROCINFO
:
11095 /* NetBSD-specific core "procinfo". Note that we expect to
11096 find this note before any of the others, which is fine,
11097 since the kernel writes this note out first when it
11098 creates a core file. */
11099 return elfcore_grok_netbsd_procinfo (abfd
, note
);
11100 case NT_NETBSDCORE_AUXV
:
11101 /* NetBSD-specific Elf Auxiliary Vector data. */
11102 return elfcore_make_auxv_note_section (abfd
, note
, 4);
11103 case NT_NETBSDCORE_LWPSTATUS
:
11104 return elfcore_make_note_pseudosection (abfd
,
11105 ".note.netbsdcore.lwpstatus",
11111 /* As of March 2020 there are no other machine-independent notes
11112 defined for NetBSD core files. If the note type is less
11113 than the start of the machine-dependent note types, we don't
11116 if (note
->type
< NT_NETBSDCORE_FIRSTMACH
)
11120 switch (bfd_get_arch (abfd
))
11122 /* On the Alpha, SPARC (32-bit and 64-bit), PT_GETREGS == mach+0 and
11123 PT_GETFPREGS == mach+2. */
11125 case bfd_arch_aarch64
:
11126 case bfd_arch_alpha
:
11127 case bfd_arch_sparc
:
11128 switch (note
->type
)
11130 case NT_NETBSDCORE_FIRSTMACH
+0:
11131 return elfcore_make_note_pseudosection (abfd
, ".reg", note
);
11133 case NT_NETBSDCORE_FIRSTMACH
+2:
11134 return elfcore_make_note_pseudosection (abfd
, ".reg2", note
);
11140 /* On SuperH, PT_GETREGS == mach+3 and PT_GETFPREGS == mach+5.
11141 There's also old PT___GETREGS40 == mach + 1 for old reg
11142 structure which lacks GBR. */
11145 switch (note
->type
)
11147 case NT_NETBSDCORE_FIRSTMACH
+3:
11148 return elfcore_make_note_pseudosection (abfd
, ".reg", note
);
11150 case NT_NETBSDCORE_FIRSTMACH
+5:
11151 return elfcore_make_note_pseudosection (abfd
, ".reg2", note
);
11157 /* On all other arch's, PT_GETREGS == mach+1 and
11158 PT_GETFPREGS == mach+3. */
11161 switch (note
->type
)
11163 case NT_NETBSDCORE_FIRSTMACH
+1:
11164 return elfcore_make_note_pseudosection (abfd
, ".reg", note
);
11166 case NT_NETBSDCORE_FIRSTMACH
+3:
11167 return elfcore_make_note_pseudosection (abfd
, ".reg2", note
);
11177 elfcore_grok_openbsd_procinfo (bfd
*abfd
, Elf_Internal_Note
*note
)
11179 if (note
->descsz
<= 0x48 + 31)
11182 /* Signal number at offset 0x08. */
11183 elf_tdata (abfd
)->core
->signal
11184 = bfd_h_get_32 (abfd
, (bfd_byte
*) note
->descdata
+ 0x08);
11186 /* Process ID at offset 0x20. */
11187 elf_tdata (abfd
)->core
->pid
11188 = bfd_h_get_32 (abfd
, (bfd_byte
*) note
->descdata
+ 0x20);
11190 /* Command name at 0x48 (max 32 bytes, including nul). */
11191 elf_tdata (abfd
)->core
->command
11192 = _bfd_elfcore_strndup (abfd
, note
->descdata
+ 0x48, 31);
11197 /* Processes Solaris's process status note.
11198 sig_off ~ offsetof(prstatus_t, pr_cursig)
11199 pid_off ~ offsetof(prstatus_t, pr_pid)
11200 lwpid_off ~ offsetof(prstatus_t, pr_who)
11201 gregset_size ~ sizeof(gregset_t)
11202 gregset_offset ~ offsetof(prstatus_t, pr_reg) */
11205 elfcore_grok_solaris_prstatus (bfd
*abfd
, Elf_Internal_Note
* note
, int sig_off
,
11206 int pid_off
, int lwpid_off
, size_t gregset_size
,
11207 size_t gregset_offset
)
11209 asection
*sect
= NULL
;
11210 elf_tdata (abfd
)->core
->signal
11211 = bfd_get_16 (abfd
, note
->descdata
+ sig_off
);
11212 elf_tdata (abfd
)->core
->pid
11213 = bfd_get_32 (abfd
, note
->descdata
+ pid_off
);
11214 elf_tdata (abfd
)->core
->lwpid
11215 = bfd_get_32 (abfd
, note
->descdata
+ lwpid_off
);
11217 sect
= bfd_get_section_by_name (abfd
, ".reg");
11219 sect
->size
= gregset_size
;
11221 return _bfd_elfcore_make_pseudosection (abfd
, ".reg", gregset_size
,
11222 note
->descpos
+ gregset_offset
);
11225 /* Gets program and arguments from a core.
11226 prog_off ~ offsetof(prpsinfo | psinfo_t, pr_fname)
11227 comm_off ~ offsetof(prpsinfo | psinfo_t, pr_psargs) */
11230 elfcore_grok_solaris_info(bfd
*abfd
, Elf_Internal_Note
* note
,
11231 int prog_off
, int comm_off
)
11233 elf_tdata (abfd
)->core
->program
11234 = _bfd_elfcore_strndup (abfd
, note
->descdata
+ prog_off
, 16);
11235 elf_tdata (abfd
)->core
->command
11236 = _bfd_elfcore_strndup (abfd
, note
->descdata
+ comm_off
, 80);
11241 /* Processes Solaris's LWP status note.
11242 gregset_size ~ sizeof(gregset_t)
11243 gregset_off ~ offsetof(lwpstatus_t, pr_reg)
11244 fpregset_size ~ sizeof(fpregset_t)
11245 fpregset_off ~ offsetof(lwpstatus_t, pr_fpreg) */
11248 elfcore_grok_solaris_lwpstatus (bfd
*abfd
, Elf_Internal_Note
* note
,
11249 size_t gregset_size
, int gregset_off
,
11250 size_t fpregset_size
, int fpregset_off
)
11252 asection
*sect
= NULL
;
11253 char reg2_section_name
[16] = { 0 };
11255 (void) snprintf (reg2_section_name
, 16, "%s/%i", ".reg2",
11256 elf_tdata (abfd
)->core
->lwpid
);
11258 /* offsetof(lwpstatus_t, pr_lwpid) */
11259 elf_tdata (abfd
)->core
->lwpid
11260 = bfd_get_32 (abfd
, note
->descdata
+ 4);
11261 /* offsetof(lwpstatus_t, pr_cursig) */
11262 elf_tdata (abfd
)->core
->signal
11263 = bfd_get_16 (abfd
, note
->descdata
+ 12);
11265 sect
= bfd_get_section_by_name (abfd
, ".reg");
11267 sect
->size
= gregset_size
;
11268 else if (!_bfd_elfcore_make_pseudosection (abfd
, ".reg", gregset_size
,
11269 note
->descpos
+ gregset_off
))
11272 sect
= bfd_get_section_by_name (abfd
, reg2_section_name
);
11275 sect
->size
= fpregset_size
;
11276 sect
->filepos
= note
->descpos
+ fpregset_off
;
11277 sect
->alignment_power
= 2;
11279 else if (!_bfd_elfcore_make_pseudosection (abfd
, ".reg2", fpregset_size
,
11280 note
->descpos
+ fpregset_off
))
11287 elfcore_grok_solaris_note_impl (bfd
*abfd
, Elf_Internal_Note
*note
)
11292 /* core files are identified as 32- or 64-bit, SPARC or x86,
11293 by the size of the descsz which matches the sizeof()
11294 the type appropriate for that note type (e.g., prstatus_t for
11295 SOLARIS_NT_PRSTATUS) for the corresponding architecture
11296 on Solaris. The core file bitness may differ from the bitness of
11297 gdb itself, so fixed values are used instead of sizeof().
11298 Appropriate fixed offsets are also used to obtain data from
11301 switch ((int) note
->type
)
11303 case SOLARIS_NT_PRSTATUS
:
11304 switch (note
->descsz
)
11306 case 508: /* sizeof(prstatus_t) SPARC 32-bit */
11307 return elfcore_grok_solaris_prstatus(abfd
, note
,
11308 136, 216, 308, 152, 356);
11309 case 904: /* sizeof(prstatus_t) SPARC 64-bit */
11310 return elfcore_grok_solaris_prstatus(abfd
, note
,
11311 264, 360, 520, 304, 600);
11312 case 432: /* sizeof(prstatus_t) Intel 32-bit */
11313 return elfcore_grok_solaris_prstatus(abfd
, note
,
11314 136, 216, 308, 76, 356);
11315 case 824: /* sizeof(prstatus_t) Intel 64-bit */
11316 return elfcore_grok_solaris_prstatus(abfd
, note
,
11317 264, 360, 520, 224, 600);
11322 case SOLARIS_NT_PSINFO
:
11323 case SOLARIS_NT_PRPSINFO
:
11324 switch (note
->descsz
)
11326 case 260: /* sizeof(prpsinfo_t) SPARC and Intel 32-bit */
11327 return elfcore_grok_solaris_info(abfd
, note
, 84, 100);
11328 case 328: /* sizeof(prpsinfo_t) SPARC and Intel 64-bit */
11329 return elfcore_grok_solaris_info(abfd
, note
, 120, 136);
11330 case 360: /* sizeof(psinfo_t) SPARC and Intel 32-bit */
11331 return elfcore_grok_solaris_info(abfd
, note
, 88, 104);
11332 case 440: /* sizeof(psinfo_t) SPARC and Intel 64-bit */
11333 return elfcore_grok_solaris_info(abfd
, note
, 136, 152);
11338 case SOLARIS_NT_LWPSTATUS
:
11339 switch (note
->descsz
)
11341 case 896: /* sizeof(lwpstatus_t) SPARC 32-bit */
11342 return elfcore_grok_solaris_lwpstatus(abfd
, note
,
11343 152, 344, 400, 496);
11344 case 1392: /* sizeof(lwpstatus_t) SPARC 64-bit */
11345 return elfcore_grok_solaris_lwpstatus(abfd
, note
,
11346 304, 544, 544, 848);
11347 case 800: /* sizeof(lwpstatus_t) Intel 32-bit */
11348 return elfcore_grok_solaris_lwpstatus(abfd
, note
,
11349 76, 344, 380, 420);
11350 case 1296: /* sizeof(lwpstatus_t) Intel 64-bit */
11351 return elfcore_grok_solaris_lwpstatus(abfd
, note
,
11352 224, 544, 528, 768);
11357 case SOLARIS_NT_LWPSINFO
:
11358 /* sizeof(lwpsinfo_t) on 32- and 64-bit, respectively */
11359 if (note
->descsz
== 128 || note
->descsz
== 152)
11360 elf_tdata (abfd
)->core
->lwpid
=
11361 bfd_get_32 (abfd
, note
->descdata
+ 4);
11371 /* For name starting with "CORE" this may be either a Solaris
11372 core file or a gdb-generated core file. Do Solaris-specific
11373 processing on selected note types first with
11374 elfcore_grok_solaris_note(), then process the note
11375 in elfcore_grok_note(). */
11378 elfcore_grok_solaris_note (bfd
*abfd
, Elf_Internal_Note
*note
)
11380 if (!elfcore_grok_solaris_note_impl (abfd
, note
))
11383 return elfcore_grok_note (abfd
, note
);
11387 elfcore_grok_openbsd_note (bfd
*abfd
, Elf_Internal_Note
*note
)
11389 if (note
->type
== NT_OPENBSD_PROCINFO
)
11390 return elfcore_grok_openbsd_procinfo (abfd
, note
);
11392 if (note
->type
== NT_OPENBSD_REGS
)
11393 return elfcore_make_note_pseudosection (abfd
, ".reg", note
);
11395 if (note
->type
== NT_OPENBSD_FPREGS
)
11396 return elfcore_make_note_pseudosection (abfd
, ".reg2", note
);
11398 if (note
->type
== NT_OPENBSD_XFPREGS
)
11399 return elfcore_make_note_pseudosection (abfd
, ".reg-xfp", note
);
11401 if (note
->type
== NT_OPENBSD_AUXV
)
11402 return elfcore_make_auxv_note_section (abfd
, note
, 0);
11404 if (note
->type
== NT_OPENBSD_WCOOKIE
)
11406 asection
*sect
= bfd_make_section_anyway_with_flags (abfd
, ".wcookie",
11411 sect
->size
= note
->descsz
;
11412 sect
->filepos
= note
->descpos
;
11413 sect
->alignment_power
= 1 + bfd_get_arch_size (abfd
) / 32;
11422 elfcore_grok_nto_status (bfd
*abfd
, Elf_Internal_Note
*note
, long *tid
)
11424 void *ddata
= note
->descdata
;
11431 if (note
->descsz
< 16)
11434 /* nto_procfs_status 'pid' field is at offset 0. */
11435 elf_tdata (abfd
)->core
->pid
= bfd_get_32 (abfd
, (bfd_byte
*) ddata
);
11437 /* nto_procfs_status 'tid' field is at offset 4. Pass it back. */
11438 *tid
= bfd_get_32 (abfd
, (bfd_byte
*) ddata
+ 4);
11440 /* nto_procfs_status 'flags' field is at offset 8. */
11441 flags
= bfd_get_32 (abfd
, (bfd_byte
*) ddata
+ 8);
11443 /* nto_procfs_status 'what' field is at offset 14. */
11444 if ((sig
= bfd_get_16 (abfd
, (bfd_byte
*) ddata
+ 14)) > 0)
11446 elf_tdata (abfd
)->core
->signal
= sig
;
11447 elf_tdata (abfd
)->core
->lwpid
= *tid
;
11450 /* _DEBUG_FLAG_CURTID (current thread) is 0x80. Some cores
11451 do not come from signals so we make sure we set the current
11452 thread just in case. */
11453 if (flags
& 0x00000080)
11454 elf_tdata (abfd
)->core
->lwpid
= *tid
;
11456 /* Make a ".qnx_core_status/%d" section. */
11457 sprintf (buf
, ".qnx_core_status/%ld", *tid
);
11459 name
= (char *) bfd_alloc (abfd
, strlen (buf
) + 1);
11462 strcpy (name
, buf
);
11464 sect
= bfd_make_section_anyway_with_flags (abfd
, name
, SEC_HAS_CONTENTS
);
11468 sect
->size
= note
->descsz
;
11469 sect
->filepos
= note
->descpos
;
11470 sect
->alignment_power
= 2;
11472 return (elfcore_maybe_make_sect (abfd
, ".qnx_core_status", sect
));
11476 elfcore_grok_nto_regs (bfd
*abfd
,
11477 Elf_Internal_Note
*note
,
11485 /* Make a "(base)/%d" section. */
11486 sprintf (buf
, "%s/%ld", base
, tid
);
11488 name
= (char *) bfd_alloc (abfd
, strlen (buf
) + 1);
11491 strcpy (name
, buf
);
11493 sect
= bfd_make_section_anyway_with_flags (abfd
, name
, SEC_HAS_CONTENTS
);
11497 sect
->size
= note
->descsz
;
11498 sect
->filepos
= note
->descpos
;
11499 sect
->alignment_power
= 2;
11501 /* This is the current thread. */
11502 if (elf_tdata (abfd
)->core
->lwpid
== tid
)
11503 return elfcore_maybe_make_sect (abfd
, base
, sect
);
11508 #define BFD_QNT_CORE_INFO 7
11509 #define BFD_QNT_CORE_STATUS 8
11510 #define BFD_QNT_CORE_GREG 9
11511 #define BFD_QNT_CORE_FPREG 10
11514 elfcore_grok_nto_note (bfd
*abfd
, Elf_Internal_Note
*note
)
11516 /* Every GREG section has a STATUS section before it. Store the
11517 tid from the previous call to pass down to the next gregs
11519 static long tid
= 1;
11521 switch (note
->type
)
11523 case BFD_QNT_CORE_INFO
:
11524 return elfcore_make_note_pseudosection (abfd
, ".qnx_core_info", note
);
11525 case BFD_QNT_CORE_STATUS
:
11526 return elfcore_grok_nto_status (abfd
, note
, &tid
);
11527 case BFD_QNT_CORE_GREG
:
11528 return elfcore_grok_nto_regs (abfd
, note
, tid
, ".reg");
11529 case BFD_QNT_CORE_FPREG
:
11530 return elfcore_grok_nto_regs (abfd
, note
, tid
, ".reg2");
11537 elfcore_grok_spu_note (bfd
*abfd
, Elf_Internal_Note
*note
)
11543 /* Use note name as section name. */
11544 len
= note
->namesz
;
11545 name
= (char *) bfd_alloc (abfd
, len
);
11548 memcpy (name
, note
->namedata
, len
);
11549 name
[len
- 1] = '\0';
11551 sect
= bfd_make_section_anyway_with_flags (abfd
, name
, SEC_HAS_CONTENTS
);
11555 sect
->size
= note
->descsz
;
11556 sect
->filepos
= note
->descpos
;
11557 sect
->alignment_power
= 1;
11562 /* Function: elfcore_write_note
11565 buffer to hold note, and current size of buffer
11569 size of data for note
11571 Writes note to end of buffer. ELF64 notes are written exactly as
11572 for ELF32, despite the current (as of 2006) ELF gabi specifying
11573 that they ought to have 8-byte namesz and descsz field, and have
11574 8-byte alignment. Other writers, eg. Linux kernel, do the same.
11577 Pointer to realloc'd buffer, *BUFSIZ updated. */
11580 elfcore_write_note (bfd
*abfd
,
11588 Elf_External_Note
*xnp
;
11595 namesz
= strlen (name
) + 1;
11597 newspace
= 12 + ((namesz
+ 3) & -4) + ((size
+ 3) & -4);
11599 buf
= (char *) realloc (buf
, *bufsiz
+ newspace
);
11602 dest
= buf
+ *bufsiz
;
11603 *bufsiz
+= newspace
;
11604 xnp
= (Elf_External_Note
*) dest
;
11605 H_PUT_32 (abfd
, namesz
, xnp
->namesz
);
11606 H_PUT_32 (abfd
, size
, xnp
->descsz
);
11607 H_PUT_32 (abfd
, type
, xnp
->type
);
11611 memcpy (dest
, name
, namesz
);
11619 memcpy (dest
, input
, size
);
11629 /* gcc-8 warns (*) on all the strncpy calls in this function about
11630 possible string truncation. The "truncation" is not a bug. We
11631 have an external representation of structs with fields that are not
11632 necessarily NULL terminated and corresponding internal
11633 representation fields that are one larger so that they can always
11634 be NULL terminated.
11635 gcc versions between 4.2 and 4.6 do not allow pragma control of
11636 diagnostics inside functions, giving a hard error if you try to use
11637 the finer control available with later versions.
11638 gcc prior to 4.2 warns about diagnostic push and pop.
11639 gcc-5, gcc-6 and gcc-7 warn that -Wstringop-truncation is unknown,
11640 unless you also add #pragma GCC diagnostic ignored "-Wpragma".
11641 (*) Depending on your system header files! */
11642 #if GCC_VERSION >= 8000
11643 # pragma GCC diagnostic push
11644 # pragma GCC diagnostic ignored "-Wstringop-truncation"
11647 elfcore_write_prpsinfo (bfd
*abfd
,
11651 const char *psargs
)
11653 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
11655 if (bed
->elf_backend_write_core_note
!= NULL
)
11658 ret
= (*bed
->elf_backend_write_core_note
) (abfd
, buf
, bufsiz
,
11659 NT_PRPSINFO
, fname
, psargs
);
11664 #if defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T)
11665 # if defined (HAVE_PRPSINFO32_T) || defined (HAVE_PSINFO32_T)
11666 if (bed
->s
->elfclass
== ELFCLASS32
)
11668 # if defined (HAVE_PSINFO32_T)
11670 int note_type
= NT_PSINFO
;
11673 int note_type
= NT_PRPSINFO
;
11676 memset (&data
, 0, sizeof (data
));
11677 strncpy (data
.pr_fname
, fname
, sizeof (data
.pr_fname
));
11678 strncpy (data
.pr_psargs
, psargs
, sizeof (data
.pr_psargs
));
11679 return elfcore_write_note (abfd
, buf
, bufsiz
,
11680 "CORE", note_type
, &data
, sizeof (data
));
11685 # if defined (HAVE_PSINFO_T)
11687 int note_type
= NT_PSINFO
;
11690 int note_type
= NT_PRPSINFO
;
11693 memset (&data
, 0, sizeof (data
));
11694 strncpy (data
.pr_fname
, fname
, sizeof (data
.pr_fname
));
11695 strncpy (data
.pr_psargs
, psargs
, sizeof (data
.pr_psargs
));
11696 return elfcore_write_note (abfd
, buf
, bufsiz
,
11697 "CORE", note_type
, &data
, sizeof (data
));
11699 #endif /* PSINFO_T or PRPSINFO_T */
11704 #if GCC_VERSION >= 8000
11705 # pragma GCC diagnostic pop
11709 elfcore_write_linux_prpsinfo32
11710 (bfd
*abfd
, char *buf
, int *bufsiz
,
11711 const struct elf_internal_linux_prpsinfo
*prpsinfo
)
11713 if (get_elf_backend_data (abfd
)->linux_prpsinfo32_ugid16
)
11715 struct elf_external_linux_prpsinfo32_ugid16 data
;
11717 swap_linux_prpsinfo32_ugid16_out (abfd
, prpsinfo
, &data
);
11718 return elfcore_write_note (abfd
, buf
, bufsiz
, "CORE", NT_PRPSINFO
,
11719 &data
, sizeof (data
));
11723 struct elf_external_linux_prpsinfo32_ugid32 data
;
11725 swap_linux_prpsinfo32_ugid32_out (abfd
, prpsinfo
, &data
);
11726 return elfcore_write_note (abfd
, buf
, bufsiz
, "CORE", NT_PRPSINFO
,
11727 &data
, sizeof (data
));
11732 elfcore_write_linux_prpsinfo64
11733 (bfd
*abfd
, char *buf
, int *bufsiz
,
11734 const struct elf_internal_linux_prpsinfo
*prpsinfo
)
11736 if (get_elf_backend_data (abfd
)->linux_prpsinfo64_ugid16
)
11738 struct elf_external_linux_prpsinfo64_ugid16 data
;
11740 swap_linux_prpsinfo64_ugid16_out (abfd
, prpsinfo
, &data
);
11741 return elfcore_write_note (abfd
, buf
, bufsiz
,
11742 "CORE", NT_PRPSINFO
, &data
, sizeof (data
));
11746 struct elf_external_linux_prpsinfo64_ugid32 data
;
11748 swap_linux_prpsinfo64_ugid32_out (abfd
, prpsinfo
, &data
);
11749 return elfcore_write_note (abfd
, buf
, bufsiz
,
11750 "CORE", NT_PRPSINFO
, &data
, sizeof (data
));
11755 elfcore_write_prstatus (bfd
*abfd
,
11762 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
11764 if (bed
->elf_backend_write_core_note
!= NULL
)
11767 ret
= (*bed
->elf_backend_write_core_note
) (abfd
, buf
, bufsiz
,
11769 pid
, cursig
, gregs
);
11774 #if defined (HAVE_PRSTATUS_T)
11775 #if defined (HAVE_PRSTATUS32_T)
11776 if (bed
->s
->elfclass
== ELFCLASS32
)
11778 prstatus32_t prstat
;
11780 memset (&prstat
, 0, sizeof (prstat
));
11781 prstat
.pr_pid
= pid
;
11782 prstat
.pr_cursig
= cursig
;
11783 memcpy (&prstat
.pr_reg
, gregs
, sizeof (prstat
.pr_reg
));
11784 return elfcore_write_note (abfd
, buf
, bufsiz
, "CORE",
11785 NT_PRSTATUS
, &prstat
, sizeof (prstat
));
11792 memset (&prstat
, 0, sizeof (prstat
));
11793 prstat
.pr_pid
= pid
;
11794 prstat
.pr_cursig
= cursig
;
11795 memcpy (&prstat
.pr_reg
, gregs
, sizeof (prstat
.pr_reg
));
11796 return elfcore_write_note (abfd
, buf
, bufsiz
, "CORE",
11797 NT_PRSTATUS
, &prstat
, sizeof (prstat
));
11799 #endif /* HAVE_PRSTATUS_T */
11805 #if defined (HAVE_LWPSTATUS_T)
11807 elfcore_write_lwpstatus (bfd
*abfd
,
11814 lwpstatus_t lwpstat
;
11815 const char *note_name
= "CORE";
11817 memset (&lwpstat
, 0, sizeof (lwpstat
));
11818 lwpstat
.pr_lwpid
= pid
>> 16;
11819 lwpstat
.pr_cursig
= cursig
;
11820 #if defined (HAVE_LWPSTATUS_T_PR_REG)
11821 memcpy (&lwpstat
.pr_reg
, gregs
, sizeof (lwpstat
.pr_reg
));
11822 #elif defined (HAVE_LWPSTATUS_T_PR_CONTEXT)
11823 #if !defined(gregs)
11824 memcpy (lwpstat
.pr_context
.uc_mcontext
.gregs
,
11825 gregs
, sizeof (lwpstat
.pr_context
.uc_mcontext
.gregs
));
11827 memcpy (lwpstat
.pr_context
.uc_mcontext
.__gregs
,
11828 gregs
, sizeof (lwpstat
.pr_context
.uc_mcontext
.__gregs
));
11831 return elfcore_write_note (abfd
, buf
, bufsiz
, note_name
,
11832 NT_LWPSTATUS
, &lwpstat
, sizeof (lwpstat
));
11834 #endif /* HAVE_LWPSTATUS_T */
11836 #if defined (HAVE_PSTATUS_T)
11838 elfcore_write_pstatus (bfd
*abfd
,
11842 int cursig ATTRIBUTE_UNUSED
,
11843 const void *gregs ATTRIBUTE_UNUSED
)
11845 const char *note_name
= "CORE";
11846 #if defined (HAVE_PSTATUS32_T)
11847 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
11849 if (bed
->s
->elfclass
== ELFCLASS32
)
11853 memset (&pstat
, 0, sizeof (pstat
));
11854 pstat
.pr_pid
= pid
& 0xffff;
11855 buf
= elfcore_write_note (abfd
, buf
, bufsiz
, note_name
,
11856 NT_PSTATUS
, &pstat
, sizeof (pstat
));
11864 memset (&pstat
, 0, sizeof (pstat
));
11865 pstat
.pr_pid
= pid
& 0xffff;
11866 buf
= elfcore_write_note (abfd
, buf
, bufsiz
, note_name
,
11867 NT_PSTATUS
, &pstat
, sizeof (pstat
));
11871 #endif /* HAVE_PSTATUS_T */
11874 elfcore_write_prfpreg (bfd
*abfd
,
11877 const void *fpregs
,
11880 const char *note_name
= "CORE";
11881 return elfcore_write_note (abfd
, buf
, bufsiz
,
11882 note_name
, NT_FPREGSET
, fpregs
, size
);
11886 elfcore_write_prxfpreg (bfd
*abfd
,
11889 const void *xfpregs
,
11892 char *note_name
= "LINUX";
11893 return elfcore_write_note (abfd
, buf
, bufsiz
,
11894 note_name
, NT_PRXFPREG
, xfpregs
, size
);
11898 elfcore_write_xstatereg (bfd
*abfd
, char *buf
, int *bufsiz
,
11899 const void *xfpregs
, int size
)
11902 if (get_elf_backend_data (abfd
)->elf_osabi
== ELFOSABI_FREEBSD
)
11903 note_name
= "FreeBSD";
11905 note_name
= "LINUX";
11906 return elfcore_write_note (abfd
, buf
, bufsiz
,
11907 note_name
, NT_X86_XSTATE
, xfpregs
, size
);
11911 elfcore_write_ppc_vmx (bfd
*abfd
,
11914 const void *ppc_vmx
,
11917 char *note_name
= "LINUX";
11918 return elfcore_write_note (abfd
, buf
, bufsiz
,
11919 note_name
, NT_PPC_VMX
, ppc_vmx
, size
);
11923 elfcore_write_ppc_vsx (bfd
*abfd
,
11926 const void *ppc_vsx
,
11929 char *note_name
= "LINUX";
11930 return elfcore_write_note (abfd
, buf
, bufsiz
,
11931 note_name
, NT_PPC_VSX
, ppc_vsx
, size
);
11935 elfcore_write_ppc_tar (bfd
*abfd
,
11938 const void *ppc_tar
,
11941 char *note_name
= "LINUX";
11942 return elfcore_write_note (abfd
, buf
, bufsiz
,
11943 note_name
, NT_PPC_TAR
, ppc_tar
, size
);
11947 elfcore_write_ppc_ppr (bfd
*abfd
,
11950 const void *ppc_ppr
,
11953 char *note_name
= "LINUX";
11954 return elfcore_write_note (abfd
, buf
, bufsiz
,
11955 note_name
, NT_PPC_PPR
, ppc_ppr
, size
);
11959 elfcore_write_ppc_dscr (bfd
*abfd
,
11962 const void *ppc_dscr
,
11965 char *note_name
= "LINUX";
11966 return elfcore_write_note (abfd
, buf
, bufsiz
,
11967 note_name
, NT_PPC_DSCR
, ppc_dscr
, size
);
11971 elfcore_write_ppc_ebb (bfd
*abfd
,
11974 const void *ppc_ebb
,
11977 char *note_name
= "LINUX";
11978 return elfcore_write_note (abfd
, buf
, bufsiz
,
11979 note_name
, NT_PPC_EBB
, ppc_ebb
, size
);
11983 elfcore_write_ppc_pmu (bfd
*abfd
,
11986 const void *ppc_pmu
,
11989 char *note_name
= "LINUX";
11990 return elfcore_write_note (abfd
, buf
, bufsiz
,
11991 note_name
, NT_PPC_PMU
, ppc_pmu
, size
);
11995 elfcore_write_ppc_tm_cgpr (bfd
*abfd
,
11998 const void *ppc_tm_cgpr
,
12001 char *note_name
= "LINUX";
12002 return elfcore_write_note (abfd
, buf
, bufsiz
,
12003 note_name
, NT_PPC_TM_CGPR
, ppc_tm_cgpr
, size
);
12007 elfcore_write_ppc_tm_cfpr (bfd
*abfd
,
12010 const void *ppc_tm_cfpr
,
12013 char *note_name
= "LINUX";
12014 return elfcore_write_note (abfd
, buf
, bufsiz
,
12015 note_name
, NT_PPC_TM_CFPR
, ppc_tm_cfpr
, size
);
12019 elfcore_write_ppc_tm_cvmx (bfd
*abfd
,
12022 const void *ppc_tm_cvmx
,
12025 char *note_name
= "LINUX";
12026 return elfcore_write_note (abfd
, buf
, bufsiz
,
12027 note_name
, NT_PPC_TM_CVMX
, ppc_tm_cvmx
, size
);
12031 elfcore_write_ppc_tm_cvsx (bfd
*abfd
,
12034 const void *ppc_tm_cvsx
,
12037 char *note_name
= "LINUX";
12038 return elfcore_write_note (abfd
, buf
, bufsiz
,
12039 note_name
, NT_PPC_TM_CVSX
, ppc_tm_cvsx
, size
);
12043 elfcore_write_ppc_tm_spr (bfd
*abfd
,
12046 const void *ppc_tm_spr
,
12049 char *note_name
= "LINUX";
12050 return elfcore_write_note (abfd
, buf
, bufsiz
,
12051 note_name
, NT_PPC_TM_SPR
, ppc_tm_spr
, size
);
12055 elfcore_write_ppc_tm_ctar (bfd
*abfd
,
12058 const void *ppc_tm_ctar
,
12061 char *note_name
= "LINUX";
12062 return elfcore_write_note (abfd
, buf
, bufsiz
,
12063 note_name
, NT_PPC_TM_CTAR
, ppc_tm_ctar
, size
);
12067 elfcore_write_ppc_tm_cppr (bfd
*abfd
,
12070 const void *ppc_tm_cppr
,
12073 char *note_name
= "LINUX";
12074 return elfcore_write_note (abfd
, buf
, bufsiz
,
12075 note_name
, NT_PPC_TM_CPPR
, ppc_tm_cppr
, size
);
12079 elfcore_write_ppc_tm_cdscr (bfd
*abfd
,
12082 const void *ppc_tm_cdscr
,
12085 char *note_name
= "LINUX";
12086 return elfcore_write_note (abfd
, buf
, bufsiz
,
12087 note_name
, NT_PPC_TM_CDSCR
, ppc_tm_cdscr
, size
);
12091 elfcore_write_s390_high_gprs (bfd
*abfd
,
12094 const void *s390_high_gprs
,
12097 char *note_name
= "LINUX";
12098 return elfcore_write_note (abfd
, buf
, bufsiz
,
12099 note_name
, NT_S390_HIGH_GPRS
,
12100 s390_high_gprs
, size
);
12104 elfcore_write_s390_timer (bfd
*abfd
,
12107 const void *s390_timer
,
12110 char *note_name
= "LINUX";
12111 return elfcore_write_note (abfd
, buf
, bufsiz
,
12112 note_name
, NT_S390_TIMER
, s390_timer
, size
);
12116 elfcore_write_s390_todcmp (bfd
*abfd
,
12119 const void *s390_todcmp
,
12122 char *note_name
= "LINUX";
12123 return elfcore_write_note (abfd
, buf
, bufsiz
,
12124 note_name
, NT_S390_TODCMP
, s390_todcmp
, size
);
12128 elfcore_write_s390_todpreg (bfd
*abfd
,
12131 const void *s390_todpreg
,
12134 char *note_name
= "LINUX";
12135 return elfcore_write_note (abfd
, buf
, bufsiz
,
12136 note_name
, NT_S390_TODPREG
, s390_todpreg
, size
);
12140 elfcore_write_s390_ctrs (bfd
*abfd
,
12143 const void *s390_ctrs
,
12146 char *note_name
= "LINUX";
12147 return elfcore_write_note (abfd
, buf
, bufsiz
,
12148 note_name
, NT_S390_CTRS
, s390_ctrs
, size
);
12152 elfcore_write_s390_prefix (bfd
*abfd
,
12155 const void *s390_prefix
,
12158 char *note_name
= "LINUX";
12159 return elfcore_write_note (abfd
, buf
, bufsiz
,
12160 note_name
, NT_S390_PREFIX
, s390_prefix
, size
);
12164 elfcore_write_s390_last_break (bfd
*abfd
,
12167 const void *s390_last_break
,
12170 char *note_name
= "LINUX";
12171 return elfcore_write_note (abfd
, buf
, bufsiz
,
12172 note_name
, NT_S390_LAST_BREAK
,
12173 s390_last_break
, size
);
12177 elfcore_write_s390_system_call (bfd
*abfd
,
12180 const void *s390_system_call
,
12183 char *note_name
= "LINUX";
12184 return elfcore_write_note (abfd
, buf
, bufsiz
,
12185 note_name
, NT_S390_SYSTEM_CALL
,
12186 s390_system_call
, size
);
12190 elfcore_write_s390_tdb (bfd
*abfd
,
12193 const void *s390_tdb
,
12196 char *note_name
= "LINUX";
12197 return elfcore_write_note (abfd
, buf
, bufsiz
,
12198 note_name
, NT_S390_TDB
, s390_tdb
, size
);
12202 elfcore_write_s390_vxrs_low (bfd
*abfd
,
12205 const void *s390_vxrs_low
,
12208 char *note_name
= "LINUX";
12209 return elfcore_write_note (abfd
, buf
, bufsiz
,
12210 note_name
, NT_S390_VXRS_LOW
, s390_vxrs_low
, size
);
12214 elfcore_write_s390_vxrs_high (bfd
*abfd
,
12217 const void *s390_vxrs_high
,
12220 char *note_name
= "LINUX";
12221 return elfcore_write_note (abfd
, buf
, bufsiz
,
12222 note_name
, NT_S390_VXRS_HIGH
,
12223 s390_vxrs_high
, size
);
12227 elfcore_write_s390_gs_cb (bfd
*abfd
,
12230 const void *s390_gs_cb
,
12233 char *note_name
= "LINUX";
12234 return elfcore_write_note (abfd
, buf
, bufsiz
,
12235 note_name
, NT_S390_GS_CB
,
12240 elfcore_write_s390_gs_bc (bfd
*abfd
,
12243 const void *s390_gs_bc
,
12246 char *note_name
= "LINUX";
12247 return elfcore_write_note (abfd
, buf
, bufsiz
,
12248 note_name
, NT_S390_GS_BC
,
12253 elfcore_write_arm_vfp (bfd
*abfd
,
12256 const void *arm_vfp
,
12259 char *note_name
= "LINUX";
12260 return elfcore_write_note (abfd
, buf
, bufsiz
,
12261 note_name
, NT_ARM_VFP
, arm_vfp
, size
);
12265 elfcore_write_aarch_tls (bfd
*abfd
,
12268 const void *aarch_tls
,
12271 char *note_name
= "LINUX";
12272 return elfcore_write_note (abfd
, buf
, bufsiz
,
12273 note_name
, NT_ARM_TLS
, aarch_tls
, size
);
12277 elfcore_write_aarch_hw_break (bfd
*abfd
,
12280 const void *aarch_hw_break
,
12283 char *note_name
= "LINUX";
12284 return elfcore_write_note (abfd
, buf
, bufsiz
,
12285 note_name
, NT_ARM_HW_BREAK
, aarch_hw_break
, size
);
12289 elfcore_write_aarch_hw_watch (bfd
*abfd
,
12292 const void *aarch_hw_watch
,
12295 char *note_name
= "LINUX";
12296 return elfcore_write_note (abfd
, buf
, bufsiz
,
12297 note_name
, NT_ARM_HW_WATCH
, aarch_hw_watch
, size
);
12301 elfcore_write_aarch_sve (bfd
*abfd
,
12304 const void *aarch_sve
,
12307 char *note_name
= "LINUX";
12308 return elfcore_write_note (abfd
, buf
, bufsiz
,
12309 note_name
, NT_ARM_SVE
, aarch_sve
, size
);
12313 elfcore_write_aarch_pauth (bfd
*abfd
,
12316 const void *aarch_pauth
,
12319 char *note_name
= "LINUX";
12320 return elfcore_write_note (abfd
, buf
, bufsiz
,
12321 note_name
, NT_ARM_PAC_MASK
, aarch_pauth
, size
);
12325 elfcore_write_aarch_mte (bfd
*abfd
,
12328 const void *aarch_mte
,
12331 char *note_name
= "LINUX";
12332 return elfcore_write_note (abfd
, buf
, bufsiz
,
12333 note_name
, NT_ARM_TAGGED_ADDR_CTRL
,
12339 elfcore_write_arc_v2 (bfd
*abfd
,
12342 const void *arc_v2
,
12345 char *note_name
= "LINUX";
12346 return elfcore_write_note (abfd
, buf
, bufsiz
,
12347 note_name
, NT_ARC_V2
, arc_v2
, size
);
12351 elfcore_write_loongarch_cpucfg (bfd
*abfd
,
12354 const void *loongarch_cpucfg
,
12357 char *note_name
= "LINUX";
12358 return elfcore_write_note (abfd
, buf
, bufsiz
,
12359 note_name
, NT_LARCH_CPUCFG
,
12360 loongarch_cpucfg
, size
);
12364 elfcore_write_loongarch_lbt (bfd
*abfd
,
12367 const void *loongarch_lbt
,
12370 char *note_name
= "LINUX";
12371 return elfcore_write_note (abfd
, buf
, bufsiz
,
12372 note_name
, NT_LARCH_LBT
, loongarch_lbt
, size
);
12376 elfcore_write_loongarch_lsx (bfd
*abfd
,
12379 const void *loongarch_lsx
,
12382 char *note_name
= "LINUX";
12383 return elfcore_write_note (abfd
, buf
, bufsiz
,
12384 note_name
, NT_LARCH_LSX
, loongarch_lsx
, size
);
12388 elfcore_write_loongarch_lasx (bfd
*abfd
,
12391 const void *loongarch_lasx
,
12394 char *note_name
= "LINUX";
12395 return elfcore_write_note (abfd
, buf
, bufsiz
,
12396 note_name
, NT_LARCH_LASX
, loongarch_lasx
, size
);
12399 /* Write the buffer of csr values in CSRS (length SIZE) into the note
12400 buffer BUF and update *BUFSIZ. ABFD is the bfd the note is being
12401 written into. Return a pointer to the new start of the note buffer, to
12402 replace BUF which may no longer be valid. */
12405 elfcore_write_riscv_csr (bfd
*abfd
,
12411 const char *note_name
= "GDB";
12412 return elfcore_write_note (abfd
, buf
, bufsiz
,
12413 note_name
, NT_RISCV_CSR
, csrs
, size
);
12416 /* Write the target description (a string) pointed to by TDESC, length
12417 SIZE, into the note buffer BUF, and update *BUFSIZ. ABFD is the bfd the
12418 note is being written into. Return a pointer to the new start of the
12419 note buffer, to replace BUF which may no longer be valid. */
12422 elfcore_write_gdb_tdesc (bfd
*abfd
,
12428 const char *note_name
= "GDB";
12429 return elfcore_write_note (abfd
, buf
, bufsiz
,
12430 note_name
, NT_GDB_TDESC
, tdesc
, size
);
12434 elfcore_write_register_note (bfd
*abfd
,
12437 const char *section
,
12441 if (strcmp (section
, ".reg2") == 0)
12442 return elfcore_write_prfpreg (abfd
, buf
, bufsiz
, data
, size
);
12443 if (strcmp (section
, ".reg-xfp") == 0)
12444 return elfcore_write_prxfpreg (abfd
, buf
, bufsiz
, data
, size
);
12445 if (strcmp (section
, ".reg-xstate") == 0)
12446 return elfcore_write_xstatereg (abfd
, buf
, bufsiz
, data
, size
);
12447 if (strcmp (section
, ".reg-ppc-vmx") == 0)
12448 return elfcore_write_ppc_vmx (abfd
, buf
, bufsiz
, data
, size
);
12449 if (strcmp (section
, ".reg-ppc-vsx") == 0)
12450 return elfcore_write_ppc_vsx (abfd
, buf
, bufsiz
, data
, size
);
12451 if (strcmp (section
, ".reg-ppc-tar") == 0)
12452 return elfcore_write_ppc_tar (abfd
, buf
, bufsiz
, data
, size
);
12453 if (strcmp (section
, ".reg-ppc-ppr") == 0)
12454 return elfcore_write_ppc_ppr (abfd
, buf
, bufsiz
, data
, size
);
12455 if (strcmp (section
, ".reg-ppc-dscr") == 0)
12456 return elfcore_write_ppc_dscr (abfd
, buf
, bufsiz
, data
, size
);
12457 if (strcmp (section
, ".reg-ppc-ebb") == 0)
12458 return elfcore_write_ppc_ebb (abfd
, buf
, bufsiz
, data
, size
);
12459 if (strcmp (section
, ".reg-ppc-pmu") == 0)
12460 return elfcore_write_ppc_pmu (abfd
, buf
, bufsiz
, data
, size
);
12461 if (strcmp (section
, ".reg-ppc-tm-cgpr") == 0)
12462 return elfcore_write_ppc_tm_cgpr (abfd
, buf
, bufsiz
, data
, size
);
12463 if (strcmp (section
, ".reg-ppc-tm-cfpr") == 0)
12464 return elfcore_write_ppc_tm_cfpr (abfd
, buf
, bufsiz
, data
, size
);
12465 if (strcmp (section
, ".reg-ppc-tm-cvmx") == 0)
12466 return elfcore_write_ppc_tm_cvmx (abfd
, buf
, bufsiz
, data
, size
);
12467 if (strcmp (section
, ".reg-ppc-tm-cvsx") == 0)
12468 return elfcore_write_ppc_tm_cvsx (abfd
, buf
, bufsiz
, data
, size
);
12469 if (strcmp (section
, ".reg-ppc-tm-spr") == 0)
12470 return elfcore_write_ppc_tm_spr (abfd
, buf
, bufsiz
, data
, size
);
12471 if (strcmp (section
, ".reg-ppc-tm-ctar") == 0)
12472 return elfcore_write_ppc_tm_ctar (abfd
, buf
, bufsiz
, data
, size
);
12473 if (strcmp (section
, ".reg-ppc-tm-cppr") == 0)
12474 return elfcore_write_ppc_tm_cppr (abfd
, buf
, bufsiz
, data
, size
);
12475 if (strcmp (section
, ".reg-ppc-tm-cdscr") == 0)
12476 return elfcore_write_ppc_tm_cdscr (abfd
, buf
, bufsiz
, data
, size
);
12477 if (strcmp (section
, ".reg-s390-high-gprs") == 0)
12478 return elfcore_write_s390_high_gprs (abfd
, buf
, bufsiz
, data
, size
);
12479 if (strcmp (section
, ".reg-s390-timer") == 0)
12480 return elfcore_write_s390_timer (abfd
, buf
, bufsiz
, data
, size
);
12481 if (strcmp (section
, ".reg-s390-todcmp") == 0)
12482 return elfcore_write_s390_todcmp (abfd
, buf
, bufsiz
, data
, size
);
12483 if (strcmp (section
, ".reg-s390-todpreg") == 0)
12484 return elfcore_write_s390_todpreg (abfd
, buf
, bufsiz
, data
, size
);
12485 if (strcmp (section
, ".reg-s390-ctrs") == 0)
12486 return elfcore_write_s390_ctrs (abfd
, buf
, bufsiz
, data
, size
);
12487 if (strcmp (section
, ".reg-s390-prefix") == 0)
12488 return elfcore_write_s390_prefix (abfd
, buf
, bufsiz
, data
, size
);
12489 if (strcmp (section
, ".reg-s390-last-break") == 0)
12490 return elfcore_write_s390_last_break (abfd
, buf
, bufsiz
, data
, size
);
12491 if (strcmp (section
, ".reg-s390-system-call") == 0)
12492 return elfcore_write_s390_system_call (abfd
, buf
, bufsiz
, data
, size
);
12493 if (strcmp (section
, ".reg-s390-tdb") == 0)
12494 return elfcore_write_s390_tdb (abfd
, buf
, bufsiz
, data
, size
);
12495 if (strcmp (section
, ".reg-s390-vxrs-low") == 0)
12496 return elfcore_write_s390_vxrs_low (abfd
, buf
, bufsiz
, data
, size
);
12497 if (strcmp (section
, ".reg-s390-vxrs-high") == 0)
12498 return elfcore_write_s390_vxrs_high (abfd
, buf
, bufsiz
, data
, size
);
12499 if (strcmp (section
, ".reg-s390-gs-cb") == 0)
12500 return elfcore_write_s390_gs_cb (abfd
, buf
, bufsiz
, data
, size
);
12501 if (strcmp (section
, ".reg-s390-gs-bc") == 0)
12502 return elfcore_write_s390_gs_bc (abfd
, buf
, bufsiz
, data
, size
);
12503 if (strcmp (section
, ".reg-arm-vfp") == 0)
12504 return elfcore_write_arm_vfp (abfd
, buf
, bufsiz
, data
, size
);
12505 if (strcmp (section
, ".reg-aarch-tls") == 0)
12506 return elfcore_write_aarch_tls (abfd
, buf
, bufsiz
, data
, size
);
12507 if (strcmp (section
, ".reg-aarch-hw-break") == 0)
12508 return elfcore_write_aarch_hw_break (abfd
, buf
, bufsiz
, data
, size
);
12509 if (strcmp (section
, ".reg-aarch-hw-watch") == 0)
12510 return elfcore_write_aarch_hw_watch (abfd
, buf
, bufsiz
, data
, size
);
12511 if (strcmp (section
, ".reg-aarch-sve") == 0)
12512 return elfcore_write_aarch_sve (abfd
, buf
, bufsiz
, data
, size
);
12513 if (strcmp (section
, ".reg-aarch-pauth") == 0)
12514 return elfcore_write_aarch_pauth (abfd
, buf
, bufsiz
, data
, size
);
12515 if (strcmp (section
, ".reg-aarch-mte") == 0)
12516 return elfcore_write_aarch_mte (abfd
, buf
, bufsiz
, data
, size
);
12517 if (strcmp (section
, ".reg-arc-v2") == 0)
12518 return elfcore_write_arc_v2 (abfd
, buf
, bufsiz
, data
, size
);
12519 if (strcmp (section
, ".gdb-tdesc") == 0)
12520 return elfcore_write_gdb_tdesc (abfd
, buf
, bufsiz
, data
, size
);
12521 if (strcmp (section
, ".reg-riscv-csr") == 0)
12522 return elfcore_write_riscv_csr (abfd
, buf
, bufsiz
, data
, size
);
12523 if (strcmp (section
, ".reg-loongarch-cpucfg") == 0)
12524 return elfcore_write_loongarch_cpucfg (abfd
, buf
, bufsiz
, data
, size
);
12525 if (strcmp (section
, ".reg-loongarch-lbt") == 0)
12526 return elfcore_write_loongarch_lbt (abfd
, buf
, bufsiz
, data
, size
);
12527 if (strcmp (section
, ".reg-loongarch-lsx") == 0)
12528 return elfcore_write_loongarch_lsx (abfd
, buf
, bufsiz
, data
, size
);
12529 if (strcmp (section
, ".reg-loongarch-lasx") == 0)
12530 return elfcore_write_loongarch_lasx (abfd
, buf
, bufsiz
, data
, size
);
12535 elfcore_write_file_note (bfd
*obfd
, char *note_data
, int *note_size
,
12536 const void *buf
, int bufsiz
)
12538 return elfcore_write_note (obfd
, note_data
, note_size
,
12539 "CORE", NT_FILE
, buf
, bufsiz
);
12543 elf_parse_notes (bfd
*abfd
, char *buf
, size_t size
, file_ptr offset
,
12548 /* NB: CORE PT_NOTE segments may have p_align values of 0 or 1.
12549 gABI specifies that PT_NOTE alignment should be aligned to 4
12550 bytes for 32-bit objects and to 8 bytes for 64-bit objects. If
12551 align is less than 4, we use 4 byte alignment. */
12554 if (align
!= 4 && align
!= 8)
12558 while (p
< buf
+ size
)
12560 Elf_External_Note
*xnp
= (Elf_External_Note
*) p
;
12561 Elf_Internal_Note in
;
12563 if (offsetof (Elf_External_Note
, name
) > buf
- p
+ size
)
12566 in
.type
= H_GET_32 (abfd
, xnp
->type
);
12568 in
.namesz
= H_GET_32 (abfd
, xnp
->namesz
);
12569 in
.namedata
= xnp
->name
;
12570 if (in
.namesz
> buf
- in
.namedata
+ size
)
12573 in
.descsz
= H_GET_32 (abfd
, xnp
->descsz
);
12574 in
.descdata
= p
+ ELF_NOTE_DESC_OFFSET (in
.namesz
, align
);
12575 in
.descpos
= offset
+ (in
.descdata
- buf
);
12577 && (in
.descdata
>= buf
+ size
12578 || in
.descsz
> buf
- in
.descdata
+ size
))
12581 switch (bfd_get_format (abfd
))
12588 #define GROKER_ELEMENT(S,F) {S, sizeof (S) - 1, F}
12591 const char * string
;
12593 bool (*func
) (bfd
*, Elf_Internal_Note
*);
12597 GROKER_ELEMENT ("", elfcore_grok_note
),
12598 GROKER_ELEMENT ("FreeBSD", elfcore_grok_freebsd_note
),
12599 GROKER_ELEMENT ("NetBSD-CORE", elfcore_grok_netbsd_note
),
12600 GROKER_ELEMENT ("OpenBSD", elfcore_grok_openbsd_note
),
12601 GROKER_ELEMENT ("QNX", elfcore_grok_nto_note
),
12602 GROKER_ELEMENT ("SPU/", elfcore_grok_spu_note
),
12603 GROKER_ELEMENT ("GNU", elfobj_grok_gnu_note
),
12604 GROKER_ELEMENT ("CORE", elfcore_grok_solaris_note
)
12606 #undef GROKER_ELEMENT
12609 for (i
= ARRAY_SIZE (grokers
); i
--;)
12611 if (in
.namesz
>= grokers
[i
].len
12612 && strncmp (in
.namedata
, grokers
[i
].string
,
12613 grokers
[i
].len
) == 0)
12615 if (! grokers
[i
].func (abfd
, & in
))
12624 if (in
.namesz
== sizeof "GNU" && strcmp (in
.namedata
, "GNU") == 0)
12626 if (! elfobj_grok_gnu_note (abfd
, &in
))
12629 else if (in
.namesz
== sizeof "stapsdt"
12630 && strcmp (in
.namedata
, "stapsdt") == 0)
12632 if (! elfobj_grok_stapsdt_note (abfd
, &in
))
12638 p
+= ELF_NOTE_NEXT_OFFSET (in
.namesz
, in
.descsz
, align
);
12645 elf_read_notes (bfd
*abfd
, file_ptr offset
, bfd_size_type size
,
12650 if (size
== 0 || (size
+ 1) == 0)
12653 if (bfd_seek (abfd
, offset
, SEEK_SET
) != 0)
12656 buf
= (char *) _bfd_malloc_and_read (abfd
, size
+ 1, size
);
12660 /* PR 17512: file: ec08f814
12661 0-termintate the buffer so that string searches will not overflow. */
12664 if (!elf_parse_notes (abfd
, buf
, size
, offset
, align
))
12674 /* Providing external access to the ELF program header table. */
12676 /* Return an upper bound on the number of bytes required to store a
12677 copy of ABFD's program header table entries. Return -1 if an error
12678 occurs; bfd_get_error will return an appropriate code. */
12681 bfd_get_elf_phdr_upper_bound (bfd
*abfd
)
12683 if (abfd
->xvec
->flavour
!= bfd_target_elf_flavour
)
12685 bfd_set_error (bfd_error_wrong_format
);
12689 return elf_elfheader (abfd
)->e_phnum
* sizeof (Elf_Internal_Phdr
);
12692 /* Copy ABFD's program header table entries to *PHDRS. The entries
12693 will be stored as an array of Elf_Internal_Phdr structures, as
12694 defined in include/elf/internal.h. To find out how large the
12695 buffer needs to be, call bfd_get_elf_phdr_upper_bound.
12697 Return the number of program header table entries read, or -1 if an
12698 error occurs; bfd_get_error will return an appropriate code. */
12701 bfd_get_elf_phdrs (bfd
*abfd
, void *phdrs
)
12705 if (abfd
->xvec
->flavour
!= bfd_target_elf_flavour
)
12707 bfd_set_error (bfd_error_wrong_format
);
12711 num_phdrs
= elf_elfheader (abfd
)->e_phnum
;
12712 if (num_phdrs
!= 0)
12713 memcpy (phdrs
, elf_tdata (abfd
)->phdr
,
12714 num_phdrs
* sizeof (Elf_Internal_Phdr
));
12719 enum elf_reloc_type_class
12720 _bfd_elf_reloc_type_class (const struct bfd_link_info
*info ATTRIBUTE_UNUSED
,
12721 const asection
*rel_sec ATTRIBUTE_UNUSED
,
12722 const Elf_Internal_Rela
*rela ATTRIBUTE_UNUSED
)
12724 return reloc_class_normal
;
12727 /* For RELA architectures, return the relocation value for a
12728 relocation against a local symbol. */
12731 _bfd_elf_rela_local_sym (bfd
*abfd
,
12732 Elf_Internal_Sym
*sym
,
12734 Elf_Internal_Rela
*rel
)
12736 asection
*sec
= *psec
;
12737 bfd_vma relocation
;
12739 relocation
= (sec
->output_section
->vma
12740 + sec
->output_offset
12742 if ((sec
->flags
& SEC_MERGE
)
12743 && ELF_ST_TYPE (sym
->st_info
) == STT_SECTION
12744 && sec
->sec_info_type
== SEC_INFO_TYPE_MERGE
)
12747 _bfd_merged_section_offset (abfd
, psec
,
12748 elf_section_data (sec
)->sec_info
,
12749 sym
->st_value
+ rel
->r_addend
);
12752 /* If we have changed the section, and our original section is
12753 marked with SEC_EXCLUDE, it means that the original
12754 SEC_MERGE section has been completely subsumed in some
12755 other SEC_MERGE section. In this case, we need to leave
12756 some info around for --emit-relocs. */
12757 if ((sec
->flags
& SEC_EXCLUDE
) != 0)
12758 sec
->kept_section
= *psec
;
12761 rel
->r_addend
-= relocation
;
12762 rel
->r_addend
+= sec
->output_section
->vma
+ sec
->output_offset
;
12768 _bfd_elf_rel_local_sym (bfd
*abfd
,
12769 Elf_Internal_Sym
*sym
,
12773 asection
*sec
= *psec
;
12775 if (sec
->sec_info_type
!= SEC_INFO_TYPE_MERGE
)
12776 return sym
->st_value
+ addend
;
12778 return _bfd_merged_section_offset (abfd
, psec
,
12779 elf_section_data (sec
)->sec_info
,
12780 sym
->st_value
+ addend
);
12783 /* Adjust an address within a section. Given OFFSET within SEC, return
12784 the new offset within the section, based upon changes made to the
12785 section. Returns -1 if the offset is now invalid.
12786 The offset (in abnd out) is in target sized bytes, however big a
12790 _bfd_elf_section_offset (bfd
*abfd
,
12791 struct bfd_link_info
*info
,
12795 switch (sec
->sec_info_type
)
12797 case SEC_INFO_TYPE_STABS
:
12798 return _bfd_stab_section_offset (sec
, elf_section_data (sec
)->sec_info
,
12800 case SEC_INFO_TYPE_EH_FRAME
:
12801 return _bfd_elf_eh_frame_section_offset (abfd
, info
, sec
, offset
);
12804 if ((sec
->flags
& SEC_ELF_REVERSE_COPY
) != 0)
12806 /* Reverse the offset. */
12807 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
12808 bfd_size_type address_size
= bed
->s
->arch_size
/ 8;
12810 /* address_size and sec->size are in octets. Convert
12811 to bytes before subtracting the original offset. */
12812 offset
= ((sec
->size
- address_size
)
12813 / bfd_octets_per_byte (abfd
, sec
) - offset
);
12819 /* Create a new BFD as if by bfd_openr. Rather than opening a file,
12820 reconstruct an ELF file by reading the segments out of remote memory
12821 based on the ELF file header at EHDR_VMA and the ELF program headers it
12822 points to. If not null, *LOADBASEP is filled in with the difference
12823 between the VMAs from which the segments were read, and the VMAs the
12824 file headers (and hence BFD's idea of each section's VMA) put them at.
12826 The function TARGET_READ_MEMORY is called to copy LEN bytes from the
12827 remote memory at target address VMA into the local buffer at MYADDR; it
12828 should return zero on success or an `errno' code on failure. TEMPL must
12829 be a BFD for an ELF target with the word size and byte order found in
12830 the remote memory. */
12833 bfd_elf_bfd_from_remote_memory
12836 bfd_size_type size
,
12837 bfd_vma
*loadbasep
,
12838 int (*target_read_memory
) (bfd_vma
, bfd_byte
*, bfd_size_type
))
12840 return (*get_elf_backend_data (templ
)->elf_backend_bfd_from_remote_memory
)
12841 (templ
, ehdr_vma
, size
, loadbasep
, target_read_memory
);
12845 _bfd_elf_get_synthetic_symtab (bfd
*abfd
,
12846 long symcount ATTRIBUTE_UNUSED
,
12847 asymbol
**syms ATTRIBUTE_UNUSED
,
12852 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
12855 const char *relplt_name
;
12856 bool (*slurp_relocs
) (bfd
*, asection
*, asymbol
**, bool);
12860 Elf_Internal_Shdr
*hdr
;
12866 if ((abfd
->flags
& (DYNAMIC
| EXEC_P
)) == 0)
12869 if (dynsymcount
<= 0)
12872 if (!bed
->plt_sym_val
)
12875 relplt_name
= bed
->relplt_name
;
12876 if (relplt_name
== NULL
)
12877 relplt_name
= bed
->rela_plts_and_copies_p
? ".rela.plt" : ".rel.plt";
12878 relplt
= bfd_get_section_by_name (abfd
, relplt_name
);
12879 if (relplt
== NULL
)
12882 hdr
= &elf_section_data (relplt
)->this_hdr
;
12883 if (hdr
->sh_link
!= elf_dynsymtab (abfd
)
12884 || (hdr
->sh_type
!= SHT_REL
&& hdr
->sh_type
!= SHT_RELA
))
12887 plt
= bfd_get_section_by_name (abfd
, ".plt");
12891 slurp_relocs
= get_elf_backend_data (abfd
)->s
->slurp_reloc_table
;
12892 if (! (*slurp_relocs
) (abfd
, relplt
, dynsyms
, true))
12895 count
= relplt
->size
/ hdr
->sh_entsize
;
12896 size
= count
* sizeof (asymbol
);
12897 p
= relplt
->relocation
;
12898 for (i
= 0; i
< count
; i
++, p
+= bed
->s
->int_rels_per_ext_rel
)
12900 size
+= strlen ((*p
->sym_ptr_ptr
)->name
) + sizeof ("@plt");
12901 if (p
->addend
!= 0)
12904 size
+= sizeof ("+0x") - 1 + 8 + 8 * (bed
->s
->elfclass
== ELFCLASS64
);
12906 size
+= sizeof ("+0x") - 1 + 8;
12911 s
= *ret
= (asymbol
*) bfd_malloc (size
);
12915 names
= (char *) (s
+ count
);
12916 p
= relplt
->relocation
;
12918 for (i
= 0; i
< count
; i
++, p
+= bed
->s
->int_rels_per_ext_rel
)
12923 addr
= bed
->plt_sym_val (i
, plt
, p
);
12924 if (addr
== (bfd_vma
) -1)
12927 *s
= **p
->sym_ptr_ptr
;
12928 /* Undefined syms won't have BSF_LOCAL or BSF_GLOBAL set. Since
12929 we are defining a symbol, ensure one of them is set. */
12930 if ((s
->flags
& BSF_LOCAL
) == 0)
12931 s
->flags
|= BSF_GLOBAL
;
12932 s
->flags
|= BSF_SYNTHETIC
;
12934 s
->value
= addr
- plt
->vma
;
12937 len
= strlen ((*p
->sym_ptr_ptr
)->name
);
12938 memcpy (names
, (*p
->sym_ptr_ptr
)->name
, len
);
12940 if (p
->addend
!= 0)
12944 memcpy (names
, "+0x", sizeof ("+0x") - 1);
12945 names
+= sizeof ("+0x") - 1;
12946 bfd_sprintf_vma (abfd
, buf
, p
->addend
);
12947 for (a
= buf
; *a
== '0'; ++a
)
12950 memcpy (names
, a
, len
);
12953 memcpy (names
, "@plt", sizeof ("@plt"));
12954 names
+= sizeof ("@plt");
12961 /* It is only used by x86-64 so far.
12962 ??? This repeats *COM* id of zero. sec->id is supposed to be unique,
12963 but current usage would allow all of _bfd_std_section to be zero. */
12964 static const asymbol lcomm_sym
12965 = GLOBAL_SYM_INIT ("LARGE_COMMON", &_bfd_elf_large_com_section
);
12966 asection _bfd_elf_large_com_section
12967 = BFD_FAKE_SECTION (_bfd_elf_large_com_section
, &lcomm_sym
,
12968 "LARGE_COMMON", 0, SEC_IS_COMMON
);
12971 _bfd_elf_final_write_processing (bfd
*abfd
)
12973 Elf_Internal_Ehdr
*i_ehdrp
; /* ELF file header, internal form. */
12975 i_ehdrp
= elf_elfheader (abfd
);
12977 if (i_ehdrp
->e_ident
[EI_OSABI
] == ELFOSABI_NONE
)
12978 i_ehdrp
->e_ident
[EI_OSABI
] = get_elf_backend_data (abfd
)->elf_osabi
;
12980 /* Set the osabi field to ELFOSABI_GNU if the binary contains
12981 SHF_GNU_MBIND or SHF_GNU_RETAIN sections or symbols of STT_GNU_IFUNC type
12982 or STB_GNU_UNIQUE binding. */
12983 if (elf_tdata (abfd
)->has_gnu_osabi
!= 0)
12985 if (i_ehdrp
->e_ident
[EI_OSABI
] == ELFOSABI_NONE
)
12986 i_ehdrp
->e_ident
[EI_OSABI
] = ELFOSABI_GNU
;
12987 else if (i_ehdrp
->e_ident
[EI_OSABI
] != ELFOSABI_GNU
12988 && i_ehdrp
->e_ident
[EI_OSABI
] != ELFOSABI_FREEBSD
)
12990 if (elf_tdata (abfd
)->has_gnu_osabi
& elf_gnu_osabi_mbind
)
12991 _bfd_error_handler (_("GNU_MBIND section is supported only by GNU "
12992 "and FreeBSD targets"));
12993 if (elf_tdata (abfd
)->has_gnu_osabi
& elf_gnu_osabi_ifunc
)
12994 _bfd_error_handler (_("symbol type STT_GNU_IFUNC is supported "
12995 "only by GNU and FreeBSD targets"));
12996 if (elf_tdata (abfd
)->has_gnu_osabi
& elf_gnu_osabi_unique
)
12997 _bfd_error_handler (_("symbol binding STB_GNU_UNIQUE is supported "
12998 "only by GNU and FreeBSD targets"));
12999 if (elf_tdata (abfd
)->has_gnu_osabi
& elf_gnu_osabi_retain
)
13000 _bfd_error_handler (_("GNU_RETAIN section is supported "
13001 "only by GNU and FreeBSD targets"));
13002 bfd_set_error (bfd_error_sorry
);
13010 /* Return TRUE for ELF symbol types that represent functions.
13011 This is the default version of this function, which is sufficient for
13012 most targets. It returns true if TYPE is STT_FUNC or STT_GNU_IFUNC. */
13015 _bfd_elf_is_function_type (unsigned int type
)
13017 return (type
== STT_FUNC
13018 || type
== STT_GNU_IFUNC
);
13021 /* If the ELF symbol SYM might be a function in SEC, return the
13022 function size and set *CODE_OFF to the function's entry point,
13023 otherwise return zero. */
13026 _bfd_elf_maybe_function_sym (const asymbol
*sym
, asection
*sec
,
13029 bfd_size_type size
;
13030 elf_symbol_type
* elf_sym
= (elf_symbol_type
*) sym
;
13032 if ((sym
->flags
& (BSF_SECTION_SYM
| BSF_FILE
| BSF_OBJECT
13033 | BSF_THREAD_LOCAL
| BSF_RELC
| BSF_SRELC
)) != 0
13034 || sym
->section
!= sec
)
13037 size
= (sym
->flags
& BSF_SYNTHETIC
) ? 0 : elf_sym
->internal_elf_sym
.st_size
;
13039 /* In theory we should check that the symbol's type satisfies
13040 _bfd_elf_is_function_type(), but there are some function-like
13041 symbols which would fail this test. (eg _start). Instead
13042 we check for hidden, local, notype symbols with zero size.
13043 This type of symbol is generated by the annobin plugin for gcc
13044 and clang, and should not be considered to be a function symbol. */
13046 && ((sym
->flags
& (BSF_SYNTHETIC
| BSF_LOCAL
)) == BSF_LOCAL
)
13047 && ELF_ST_TYPE (elf_sym
->internal_elf_sym
.st_info
) == STT_NOTYPE
13048 && ELF_ST_VISIBILITY (elf_sym
->internal_elf_sym
.st_other
) == STV_HIDDEN
)
13051 *code_off
= sym
->value
;
13052 /* Do not return 0 for the function's size. */
13053 return size
? size
: 1;
13056 /* Set to non-zero to enable some debug messages. */
13057 #define DEBUG_SECONDARY_RELOCS 0
13059 /* An internal-to-the-bfd-library only section type
13060 used to indicate a cached secondary reloc section. */
13061 #define SHT_SECONDARY_RELOC (SHT_LOOS + SHT_RELA)
13063 /* Create a BFD section to hold a secondary reloc section. */
13066 _bfd_elf_init_secondary_reloc_section (bfd
* abfd
,
13067 Elf_Internal_Shdr
*hdr
,
13069 unsigned int shindex
)
13071 /* We only support RELA secondary relocs. */
13072 if (hdr
->sh_type
!= SHT_RELA
)
13075 #if DEBUG_SECONDARY_RELOCS
13076 fprintf (stderr
, "secondary reloc section %s encountered\n", name
);
13078 hdr
->sh_type
= SHT_SECONDARY_RELOC
;
13079 return _bfd_elf_make_section_from_shdr (abfd
, hdr
, name
, shindex
);
13082 /* Read in any secondary relocs associated with SEC. */
13085 _bfd_elf_slurp_secondary_reloc_section (bfd
* abfd
,
13087 asymbol
** symbols
,
13090 const struct elf_backend_data
* const ebd
= get_elf_backend_data (abfd
);
13092 bool result
= true;
13093 bfd_vma (*r_sym
) (bfd_vma
);
13095 #if BFD_DEFAULT_TARGET_SIZE > 32
13096 if (bfd_arch_bits_per_address (abfd
) != 32)
13097 r_sym
= elf64_r_sym
;
13100 r_sym
= elf32_r_sym
;
13102 if (!elf_section_data (sec
)->has_secondary_relocs
)
13105 /* Discover if there are any secondary reloc sections
13106 associated with SEC. */
13107 for (relsec
= abfd
->sections
; relsec
!= NULL
; relsec
= relsec
->next
)
13109 Elf_Internal_Shdr
* hdr
= & elf_section_data (relsec
)->this_hdr
;
13111 if (hdr
->sh_type
== SHT_SECONDARY_RELOC
13112 && hdr
->sh_info
== (unsigned) elf_section_data (sec
)->this_idx
13113 && (hdr
->sh_entsize
== ebd
->s
->sizeof_rel
13114 || hdr
->sh_entsize
== ebd
->s
->sizeof_rela
))
13116 bfd_byte
* native_relocs
;
13117 bfd_byte
* native_reloc
;
13118 arelent
* internal_relocs
;
13119 arelent
* internal_reloc
;
13121 unsigned int entsize
;
13122 unsigned int symcount
;
13123 unsigned int reloc_count
;
13126 if (ebd
->elf_info_to_howto
== NULL
)
13129 #if DEBUG_SECONDARY_RELOCS
13130 fprintf (stderr
, "read secondary relocs for %s from %s\n",
13131 sec
->name
, relsec
->name
);
13133 entsize
= hdr
->sh_entsize
;
13135 native_relocs
= bfd_malloc (hdr
->sh_size
);
13136 if (native_relocs
== NULL
)
13142 reloc_count
= NUM_SHDR_ENTRIES (hdr
);
13143 if (_bfd_mul_overflow (reloc_count
, sizeof (arelent
), & amt
))
13145 free (native_relocs
);
13146 bfd_set_error (bfd_error_file_too_big
);
13151 internal_relocs
= (arelent
*) bfd_alloc (abfd
, amt
);
13152 if (internal_relocs
== NULL
)
13154 free (native_relocs
);
13159 if (bfd_seek (abfd
, hdr
->sh_offset
, SEEK_SET
) != 0
13160 || (bfd_bread (native_relocs
, hdr
->sh_size
, abfd
)
13163 free (native_relocs
);
13164 /* The internal_relocs will be freed when
13165 the memory for the bfd is released. */
13171 symcount
= bfd_get_dynamic_symcount (abfd
);
13173 symcount
= bfd_get_symcount (abfd
);
13175 for (i
= 0, internal_reloc
= internal_relocs
,
13176 native_reloc
= native_relocs
;
13178 i
++, internal_reloc
++, native_reloc
+= entsize
)
13181 Elf_Internal_Rela rela
;
13183 if (entsize
== ebd
->s
->sizeof_rel
)
13184 ebd
->s
->swap_reloc_in (abfd
, native_reloc
, & rela
);
13185 else /* entsize == ebd->s->sizeof_rela */
13186 ebd
->s
->swap_reloca_in (abfd
, native_reloc
, & rela
);
13188 /* The address of an ELF reloc is section relative for an object
13189 file, and absolute for an executable file or shared library.
13190 The address of a normal BFD reloc is always section relative,
13191 and the address of a dynamic reloc is absolute.. */
13192 if ((abfd
->flags
& (EXEC_P
| DYNAMIC
)) == 0)
13193 internal_reloc
->address
= rela
.r_offset
;
13195 internal_reloc
->address
= rela
.r_offset
- sec
->vma
;
13197 if (r_sym (rela
.r_info
) == STN_UNDEF
)
13199 /* FIXME: This and the error case below mean that we
13200 have a symbol on relocs that is not elf_symbol_type. */
13201 internal_reloc
->sym_ptr_ptr
=
13202 bfd_abs_section_ptr
->symbol_ptr_ptr
;
13204 else if (r_sym (rela
.r_info
) > symcount
)
13207 /* xgettext:c-format */
13208 (_("%pB(%pA): relocation %d has invalid symbol index %ld"),
13209 abfd
, sec
, i
, (long) r_sym (rela
.r_info
));
13210 bfd_set_error (bfd_error_bad_value
);
13211 internal_reloc
->sym_ptr_ptr
=
13212 bfd_abs_section_ptr
->symbol_ptr_ptr
;
13219 ps
= symbols
+ r_sym (rela
.r_info
) - 1;
13220 internal_reloc
->sym_ptr_ptr
= ps
;
13221 /* Make sure that this symbol is not removed by strip. */
13222 (*ps
)->flags
|= BSF_KEEP
;
13225 internal_reloc
->addend
= rela
.r_addend
;
13227 res
= ebd
->elf_info_to_howto (abfd
, internal_reloc
, & rela
);
13228 if (! res
|| internal_reloc
->howto
== NULL
)
13230 #if DEBUG_SECONDARY_RELOCS
13231 fprintf (stderr
, "there is no howto associated with reloc %lx\n",
13238 free (native_relocs
);
13239 /* Store the internal relocs. */
13240 elf_section_data (relsec
)->sec_info
= internal_relocs
;
13247 /* Set the ELF section header fields of an output secondary reloc section. */
13250 _bfd_elf_copy_special_section_fields (const bfd
* ibfd ATTRIBUTE_UNUSED
,
13251 bfd
* obfd ATTRIBUTE_UNUSED
,
13252 const Elf_Internal_Shdr
* isection
,
13253 Elf_Internal_Shdr
* osection
)
13257 struct bfd_elf_section_data
* esd
;
13259 if (isection
== NULL
)
13262 if (isection
->sh_type
!= SHT_SECONDARY_RELOC
)
13265 isec
= isection
->bfd_section
;
13269 osec
= osection
->bfd_section
;
13273 esd
= elf_section_data (osec
);
13274 BFD_ASSERT (esd
->sec_info
== NULL
);
13275 esd
->sec_info
= elf_section_data (isec
)->sec_info
;
13276 osection
->sh_type
= SHT_RELA
;
13277 osection
->sh_link
= elf_onesymtab (obfd
);
13278 if (osection
->sh_link
== 0)
13280 /* There is no symbol table - we are hosed... */
13282 /* xgettext:c-format */
13283 (_("%pB(%pA): link section cannot be set because the output file does not have a symbol table"),
13285 bfd_set_error (bfd_error_bad_value
);
13289 /* Find the output section that corresponds to the isection's sh_info link. */
13290 if (isection
->sh_info
== 0
13291 || isection
->sh_info
>= elf_numsections (ibfd
))
13294 /* xgettext:c-format */
13295 (_("%pB(%pA): info section index is invalid"),
13297 bfd_set_error (bfd_error_bad_value
);
13301 isection
= elf_elfsections (ibfd
)[isection
->sh_info
];
13303 if (isection
== NULL
13304 || isection
->bfd_section
== NULL
13305 || isection
->bfd_section
->output_section
== NULL
)
13308 /* xgettext:c-format */
13309 (_("%pB(%pA): info section index cannot be set because the section is not in the output"),
13311 bfd_set_error (bfd_error_bad_value
);
13315 esd
= elf_section_data (isection
->bfd_section
->output_section
);
13316 BFD_ASSERT (esd
!= NULL
);
13317 osection
->sh_info
= esd
->this_idx
;
13318 esd
->has_secondary_relocs
= true;
13319 #if DEBUG_SECONDARY_RELOCS
13320 fprintf (stderr
, "update header of %s, sh_link = %u, sh_info = %u\n",
13321 osec
->name
, osection
->sh_link
, osection
->sh_info
);
13322 fprintf (stderr
, "mark section %s as having secondary relocs\n",
13323 bfd_section_name (isection
->bfd_section
->output_section
));
13329 /* Write out a secondary reloc section.
13331 FIXME: Currently this function can result in a serious performance penalty
13332 for files with secondary relocs and lots of sections. The proper way to
13333 fix this is for _bfd_elf_copy_special_section_fields() to chain secondary
13334 relocs together and then to have this function just walk that chain. */
13337 _bfd_elf_write_secondary_reloc_section (bfd
*abfd
, asection
*sec
)
13339 const struct elf_backend_data
* const ebd
= get_elf_backend_data (abfd
);
13340 bfd_vma addr_offset
;
13342 bfd_vma (*r_info
) (bfd_vma
, bfd_vma
);
13343 bool result
= true;
13348 #if BFD_DEFAULT_TARGET_SIZE > 32
13349 if (bfd_arch_bits_per_address (abfd
) != 32)
13350 r_info
= elf64_r_info
;
13353 r_info
= elf32_r_info
;
13355 /* The address of an ELF reloc is section relative for an object
13356 file, and absolute for an executable file or shared library.
13357 The address of a BFD reloc is always section relative. */
13359 if ((abfd
->flags
& (EXEC_P
| DYNAMIC
)) != 0)
13360 addr_offset
= sec
->vma
;
13362 /* Discover if there are any secondary reloc sections
13363 associated with SEC. */
13364 for (relsec
= abfd
->sections
; relsec
!= NULL
; relsec
= relsec
->next
)
13366 const struct bfd_elf_section_data
* const esd
= elf_section_data (relsec
);
13367 Elf_Internal_Shdr
* const hdr
= (Elf_Internal_Shdr
*) & esd
->this_hdr
;
13369 if (hdr
->sh_type
== SHT_RELA
13370 && hdr
->sh_info
== (unsigned) elf_section_data (sec
)->this_idx
)
13372 asymbol
* last_sym
;
13374 unsigned int reloc_count
;
13376 unsigned int entsize
;
13377 arelent
* src_irel
;
13378 bfd_byte
* dst_rela
;
13380 if (hdr
->contents
!= NULL
)
13383 /* xgettext:c-format */
13384 (_("%pB(%pA): error: secondary reloc section processed twice"),
13386 bfd_set_error (bfd_error_bad_value
);
13391 entsize
= hdr
->sh_entsize
;
13395 /* xgettext:c-format */
13396 (_("%pB(%pA): error: secondary reloc section has zero sized entries"),
13398 bfd_set_error (bfd_error_bad_value
);
13402 else if (entsize
!= ebd
->s
->sizeof_rel
13403 && entsize
!= ebd
->s
->sizeof_rela
)
13406 /* xgettext:c-format */
13407 (_("%pB(%pA): error: secondary reloc section has non-standard sized entries"),
13409 bfd_set_error (bfd_error_bad_value
);
13414 reloc_count
= hdr
->sh_size
/ entsize
;
13415 if (reloc_count
<= 0)
13418 /* xgettext:c-format */
13419 (_("%pB(%pA): error: secondary reloc section is empty!"),
13421 bfd_set_error (bfd_error_bad_value
);
13426 hdr
->contents
= bfd_alloc (abfd
, hdr
->sh_size
);
13427 if (hdr
->contents
== NULL
)
13430 #if DEBUG_SECONDARY_RELOCS
13431 fprintf (stderr
, "write %u secondary relocs for %s from %s\n",
13432 reloc_count
, sec
->name
, relsec
->name
);
13436 dst_rela
= hdr
->contents
;
13437 src_irel
= (arelent
*) esd
->sec_info
;
13438 if (src_irel
== NULL
)
13441 /* xgettext:c-format */
13442 (_("%pB(%pA): error: internal relocs missing for secondary reloc section"),
13444 bfd_set_error (bfd_error_bad_value
);
13449 for (idx
= 0; idx
< reloc_count
; idx
++, dst_rela
+= entsize
)
13451 Elf_Internal_Rela src_rela
;
13456 ptr
= src_irel
+ idx
;
13460 /* xgettext:c-format */
13461 (_("%pB(%pA): error: reloc table entry %u is empty"),
13462 abfd
, relsec
, idx
);
13463 bfd_set_error (bfd_error_bad_value
);
13468 if (ptr
->sym_ptr_ptr
== NULL
)
13470 /* FIXME: Is this an error ? */
13475 sym
= *ptr
->sym_ptr_ptr
;
13477 if (sym
== last_sym
)
13481 n
= _bfd_elf_symbol_from_bfd_symbol (abfd
, & sym
);
13485 /* xgettext:c-format */
13486 (_("%pB(%pA): error: secondary reloc %u references a missing symbol"),
13487 abfd
, relsec
, idx
);
13488 bfd_set_error (bfd_error_bad_value
);
13497 if (sym
->the_bfd
!= NULL
13498 && sym
->the_bfd
->xvec
!= abfd
->xvec
13499 && ! _bfd_elf_validate_reloc (abfd
, ptr
))
13502 /* xgettext:c-format */
13503 (_("%pB(%pA): error: secondary reloc %u references a deleted symbol"),
13504 abfd
, relsec
, idx
);
13505 bfd_set_error (bfd_error_bad_value
);
13511 src_rela
.r_offset
= ptr
->address
+ addr_offset
;
13512 if (ptr
->howto
== NULL
)
13515 /* xgettext:c-format */
13516 (_("%pB(%pA): error: secondary reloc %u is of an unknown type"),
13517 abfd
, relsec
, idx
);
13518 bfd_set_error (bfd_error_bad_value
);
13520 src_rela
.r_info
= r_info (0, 0);
13523 src_rela
.r_info
= r_info (n
, ptr
->howto
->type
);
13524 src_rela
.r_addend
= ptr
->addend
;
13526 if (entsize
== ebd
->s
->sizeof_rel
)
13527 ebd
->s
->swap_reloc_out (abfd
, &src_rela
, dst_rela
);
13528 else /* entsize == ebd->s->sizeof_rela */
13529 ebd
->s
->swap_reloca_out (abfd
, &src_rela
, dst_rela
);