readelf: Support RELR in -S and -d and output
[deliverable/binutils-gdb.git] / bfd / elf.c
1 /* ELF executable support for BFD.
2
3 Copyright (C) 1993-2021 Free Software Foundation, Inc.
4
5 This file is part of BFD, the Binary File Descriptor library.
6
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.
11
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.
16
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. */
21
22
23 /*
24 SECTION
25 ELF backends
26
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).
30
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. */
34
35 /* For sparc64-cross-sparc32. */
36 #define _SYSCALL32
37 #include "sysdep.h"
38 #include <limits.h>
39 #include "bfd.h"
40 #include "bfdlink.h"
41 #include "libbfd.h"
42 #define ARCH_SIZE 0
43 #include "elf-bfd.h"
44 #include "libiberty.h"
45 #include "safe-ctype.h"
46 #include "elf-linux-core.h"
47
48 #ifdef CORE_HEADER
49 #include CORE_HEADER
50 #endif
51
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);
58
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. */
62
63 /* Swap in a Verdef structure. */
64
65 void
66 _bfd_elf_swap_verdef_in (bfd *abfd,
67 const Elf_External_Verdef *src,
68 Elf_Internal_Verdef *dst)
69 {
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);
77 }
78
79 /* Swap out a Verdef structure. */
80
81 void
82 _bfd_elf_swap_verdef_out (bfd *abfd,
83 const Elf_Internal_Verdef *src,
84 Elf_External_Verdef *dst)
85 {
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);
93 }
94
95 /* Swap in a Verdaux structure. */
96
97 void
98 _bfd_elf_swap_verdaux_in (bfd *abfd,
99 const Elf_External_Verdaux *src,
100 Elf_Internal_Verdaux *dst)
101 {
102 dst->vda_name = H_GET_32 (abfd, src->vda_name);
103 dst->vda_next = H_GET_32 (abfd, src->vda_next);
104 }
105
106 /* Swap out a Verdaux structure. */
107
108 void
109 _bfd_elf_swap_verdaux_out (bfd *abfd,
110 const Elf_Internal_Verdaux *src,
111 Elf_External_Verdaux *dst)
112 {
113 H_PUT_32 (abfd, src->vda_name, dst->vda_name);
114 H_PUT_32 (abfd, src->vda_next, dst->vda_next);
115 }
116
117 /* Swap in a Verneed structure. */
118
119 void
120 _bfd_elf_swap_verneed_in (bfd *abfd,
121 const Elf_External_Verneed *src,
122 Elf_Internal_Verneed *dst)
123 {
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);
129 }
130
131 /* Swap out a Verneed structure. */
132
133 void
134 _bfd_elf_swap_verneed_out (bfd *abfd,
135 const Elf_Internal_Verneed *src,
136 Elf_External_Verneed *dst)
137 {
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);
143 }
144
145 /* Swap in a Vernaux structure. */
146
147 void
148 _bfd_elf_swap_vernaux_in (bfd *abfd,
149 const Elf_External_Vernaux *src,
150 Elf_Internal_Vernaux *dst)
151 {
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);
157 }
158
159 /* Swap out a Vernaux structure. */
160
161 void
162 _bfd_elf_swap_vernaux_out (bfd *abfd,
163 const Elf_Internal_Vernaux *src,
164 Elf_External_Vernaux *dst)
165 {
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);
171 }
172
173 /* Swap in a Versym structure. */
174
175 void
176 _bfd_elf_swap_versym_in (bfd *abfd,
177 const Elf_External_Versym *src,
178 Elf_Internal_Versym *dst)
179 {
180 dst->vs_vers = H_GET_16 (abfd, src->vs_vers);
181 }
182
183 /* Swap out a Versym structure. */
184
185 void
186 _bfd_elf_swap_versym_out (bfd *abfd,
187 const Elf_Internal_Versym *src,
188 Elf_External_Versym *dst)
189 {
190 H_PUT_16 (abfd, src->vs_vers, dst->vs_vers);
191 }
192
193 /* Standard ELF hash function. Do not change this function; you will
194 cause invalid hash tables to be generated. */
195
196 unsigned long
197 bfd_elf_hash (const char *namearg)
198 {
199 const unsigned char *name = (const unsigned char *) namearg;
200 unsigned long h = 0;
201 unsigned long g;
202 int ch;
203
204 while ((ch = *name++) != '\0')
205 {
206 h = (h << 4) + ch;
207 if ((g = (h & 0xf0000000)) != 0)
208 {
209 h ^= g >> 24;
210 /* The ELF ABI says `h &= ~g', but this is equivalent in
211 this case and on some machines one insn instead of two. */
212 h ^= g;
213 }
214 }
215 return h & 0xffffffff;
216 }
217
218 /* DT_GNU_HASH hash function. Do not change this function; you will
219 cause invalid hash tables to be generated. */
220
221 unsigned long
222 bfd_elf_gnu_hash (const char *namearg)
223 {
224 const unsigned char *name = (const unsigned char *) namearg;
225 unsigned long h = 5381;
226 unsigned char ch;
227
228 while ((ch = *name++) != '\0')
229 h = (h << 5) + h + ch;
230 return h & 0xffffffff;
231 }
232
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. */
235 bool
236 bfd_elf_allocate_object (bfd *abfd,
237 size_t object_size,
238 enum elf_target_id object_id)
239 {
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)
243 return false;
244
245 elf_object_id (abfd) = object_id;
246 if (abfd->direction != read_direction)
247 {
248 struct output_elf_obj_tdata *o = bfd_zalloc (abfd, sizeof *o);
249 if (o == NULL)
250 return false;
251 elf_tdata (abfd)->o = o;
252 elf_program_header_size (abfd) = (bfd_size_type) -1;
253 }
254 return true;
255 }
256
257
258 bool
259 bfd_elf_make_object (bfd *abfd)
260 {
261 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
262 return bfd_elf_allocate_object (abfd, sizeof (struct elf_obj_tdata),
263 bed->target_id);
264 }
265
266 bool
267 bfd_elf_mkcorefile (bfd *abfd)
268 {
269 /* I think this can be done just like an object file. */
270 if (!abfd->xvec->_bfd_set_format[(int) bfd_object] (abfd))
271 return false;
272 elf_tdata (abfd)->core = bfd_zalloc (abfd, sizeof (*elf_tdata (abfd)->core));
273 return elf_tdata (abfd)->core != NULL;
274 }
275
276 char *
277 bfd_elf_get_str_section (bfd *abfd, unsigned int shindex)
278 {
279 Elf_Internal_Shdr **i_shdrp;
280 bfd_byte *shstrtab = NULL;
281 file_ptr offset;
282 bfd_size_type shstrtabsize;
283
284 i_shdrp = elf_elfsections (abfd);
285 if (i_shdrp == 0
286 || shindex >= elf_numsections (abfd)
287 || i_shdrp[shindex] == 0)
288 return NULL;
289
290 shstrtab = i_shdrp[shindex]->contents;
291 if (shstrtab == NULL)
292 {
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;
296
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)
303 {
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;
308 }
309 else
310 shstrtab[shstrtabsize] = '\0';
311 i_shdrp[shindex]->contents = shstrtab;
312 }
313 return (char *) shstrtab;
314 }
315
316 char *
317 bfd_elf_string_from_elf_section (bfd *abfd,
318 unsigned int shindex,
319 unsigned int strindex)
320 {
321 Elf_Internal_Shdr *hdr;
322
323 if (strindex == 0)
324 return "";
325
326 if (elf_elfsections (abfd) == NULL || shindex >= elf_numsections (abfd))
327 return NULL;
328
329 hdr = elf_elfsections (abfd)[shindex];
330
331 if (hdr->contents == NULL)
332 {
333 if (hdr->sh_type != SHT_STRTAB && hdr->sh_type < SHT_LOOS)
334 {
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)"),
339 abfd, shindex);
340 return NULL;
341 }
342
343 if (bfd_elf_get_str_section (abfd, shindex) == NULL)
344 return NULL;
345 }
346 else
347 {
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)
354 return NULL;
355 }
356
357 if (strindex >= hdr->sh_size)
358 {
359 unsigned int shstrndx = elf_elfheader(abfd)->e_shstrndx;
360 _bfd_error_handler
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
365 ? ".shstrtab"
366 : bfd_elf_string_from_elf_section (abfd, shstrndx, hdr->sh_name)));
367 return NULL;
368 }
369
370 return ((char *) hdr->contents) + strindex;
371 }
372
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. */
380
381 Elf_Internal_Sym *
382 bfd_elf_get_elf_syms (bfd *ibfd,
383 Elf_Internal_Shdr *symtab_hdr,
384 size_t symcount,
385 size_t symoffset,
386 Elf_Internal_Sym *intsym_buf,
387 void *extsym_buf,
388 Elf_External_Sym_Shndx *extshndx_buf)
389 {
390 Elf_Internal_Shdr *shndx_hdr;
391 void *alloc_ext;
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;
399 size_t extsym_size;
400 size_t amt;
401 file_ptr pos;
402
403 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour)
404 abort ();
405
406 if (symcount == 0)
407 return intsym_buf;
408
409 /* Normal syms might have section extension entries. */
410 shndx_hdr = NULL;
411 if (elf_symtab_shndx_list (ibfd) != NULL)
412 {
413 elf_section_list * entry;
414 Elf_Internal_Shdr **sections = elf_elfsections (ibfd);
415
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)
418 {
419 /* PR 20063. */
420 if (entry->hdr.sh_link >= elf_numsections (ibfd))
421 continue;
422
423 if (sections[entry->hdr.sh_link] == symtab_hdr)
424 {
425 shndx_hdr = & entry->hdr;
426 break;
427 };
428 }
429
430 if (shndx_hdr == NULL)
431 {
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. */
437 }
438 }
439
440 /* Read the symbols. */
441 alloc_ext = NULL;
442 alloc_extshndx = NULL;
443 alloc_intsym = NULL;
444 bed = get_elf_backend_data (ibfd);
445 extsym_size = bed->s->sizeof_sym;
446 if (_bfd_mul_overflow (symcount, extsym_size, &amt))
447 {
448 bfd_set_error (bfd_error_file_too_big);
449 intsym_buf = NULL;
450 goto out;
451 }
452 pos = symtab_hdr->sh_offset + symoffset * extsym_size;
453 if (extsym_buf == NULL)
454 {
455 alloc_ext = bfd_malloc (amt);
456 extsym_buf = alloc_ext;
457 }
458 if (extsym_buf == NULL
459 || bfd_seek (ibfd, pos, SEEK_SET) != 0
460 || bfd_bread (extsym_buf, amt, ibfd) != amt)
461 {
462 intsym_buf = NULL;
463 goto out;
464 }
465
466 if (shndx_hdr == NULL || shndx_hdr->sh_size == 0)
467 extshndx_buf = NULL;
468 else
469 {
470 if (_bfd_mul_overflow (symcount, sizeof (Elf_External_Sym_Shndx), &amt))
471 {
472 bfd_set_error (bfd_error_file_too_big);
473 intsym_buf = NULL;
474 goto out;
475 }
476 pos = shndx_hdr->sh_offset + symoffset * sizeof (Elf_External_Sym_Shndx);
477 if (extshndx_buf == NULL)
478 {
479 alloc_extshndx = (Elf_External_Sym_Shndx *) bfd_malloc (amt);
480 extshndx_buf = alloc_extshndx;
481 }
482 if (extshndx_buf == NULL
483 || bfd_seek (ibfd, pos, SEEK_SET) != 0
484 || bfd_bread (extshndx_buf, amt, ibfd) != amt)
485 {
486 intsym_buf = NULL;
487 goto out;
488 }
489 }
490
491 if (intsym_buf == NULL)
492 {
493 if (_bfd_mul_overflow (symcount, sizeof (Elf_Internal_Sym), &amt))
494 {
495 bfd_set_error (bfd_error_file_too_big);
496 goto out;
497 }
498 alloc_intsym = (Elf_Internal_Sym *) bfd_malloc (amt);
499 intsym_buf = alloc_intsym;
500 if (intsym_buf == NULL)
501 goto out;
502 }
503
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;
508 isym < isymend;
509 esym += extsym_size, isym++, shndx = shndx != NULL ? shndx + 1 : NULL)
510 if (!(*bed->s->swap_symbol_in) (ibfd, esym, shndx, isym))
511 {
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);
517 free (alloc_intsym);
518 intsym_buf = NULL;
519 goto out;
520 }
521
522 out:
523 free (alloc_ext);
524 free (alloc_extshndx);
525
526 return intsym_buf;
527 }
528
529 /* Look up a symbol name. */
530 const char *
531 bfd_elf_sym_name (bfd *abfd,
532 Elf_Internal_Shdr *symtab_hdr,
533 Elf_Internal_Sym *isym,
534 asection *sym_sec)
535 {
536 const char *name;
537 unsigned int iname = isym->st_name;
538 unsigned int shindex = symtab_hdr->sh_link;
539
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))
543 {
544 iname = elf_elfsections (abfd)[isym->st_shndx]->sh_name;
545 shindex = elf_elfheader (abfd)->e_shstrndx;
546 }
547
548 name = bfd_elf_string_from_elf_section (abfd, shindex, iname);
549 if (name == NULL)
550 name = "(null)";
551 else if (sym_sec && *name == '\0')
552 name = bfd_section_name (sym_sec);
553
554 return name;
555 }
556
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
559 pointers. */
560
561 typedef union elf_internal_group {
562 Elf_Internal_Shdr *shdr;
563 unsigned int flags;
564 } Elf_Internal_Group;
565
566 /* Return the name of the group signature symbol. Why isn't the
567 signature just a string? */
568
569 static const char *
570 group_signature (bfd *abfd, Elf_Internal_Shdr *ghdr)
571 {
572 Elf_Internal_Shdr *hdr;
573 unsigned char esym[sizeof (Elf64_External_Sym)];
574 Elf_External_Sym_Shndx eshndx;
575 Elf_Internal_Sym isym;
576
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))
580 return NULL;
581 hdr = elf_elfsections (abfd) [ghdr->sh_link];
582 if (hdr->sh_type != SHT_SYMTAB
583 || ! bfd_section_from_shdr (abfd, ghdr->sh_link))
584 return NULL;
585
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)
590 return NULL;
591
592 return bfd_elf_sym_name (abfd, hdr, &isym, NULL);
593 }
594
595 /* Set next_in_group list pointer, and group name for NEWSECT. */
596
597 static bool
598 setup_group (bfd *abfd, Elf_Internal_Shdr *hdr, asection *newsect)
599 {
600 unsigned int num_group = elf_tdata (abfd)->num_group;
601
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. */
604 if (num_group == 0)
605 {
606 unsigned int i, shnum;
607
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);
611 num_group = 0;
612
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)
618
619 for (i = 0; i < shnum; i++)
620 {
621 Elf_Internal_Shdr *shdr = elf_elfsections (abfd)[i];
622
623 if (IS_VALID_GROUP_SECTION_HEADER (shdr, 2 * GRP_ENTRY_SIZE))
624 num_group += 1;
625 }
626
627 if (num_group == 0)
628 {
629 num_group = (unsigned) -1;
630 elf_tdata (abfd)->num_group = num_group;
631 elf_tdata (abfd)->group_sect_ptr = NULL;
632 }
633 else
634 {
635 /* We keep a list of elf section headers for group sections,
636 so we can find them quickly. */
637 size_t amt;
638
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)
644 return false;
645 num_group = 0;
646
647 for (i = 0; i < shnum; i++)
648 {
649 Elf_Internal_Shdr *shdr = elf_elfsections (abfd)[i];
650
651 if (IS_VALID_GROUP_SECTION_HEADER (shdr, 2 * GRP_ENTRY_SIZE))
652 {
653 unsigned char *src;
654 Elf_Internal_Group *dest;
655
656 /* Make sure the group section has a BFD section
657 attached to it. */
658 if (!bfd_section_from_shdr (abfd, i))
659 return false;
660
661 /* Add to list of sections. */
662 elf_tdata (abfd)->group_sect_ptr[num_group] = shdr;
663 num_group += 1;
664
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
671 || !(shdr->contents
672 = _bfd_alloc_and_read (abfd, amt, shdr->sh_size)))
673 {
674 _bfd_error_handler
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);
680 -- num_group;
681 continue;
682 }
683
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
687 pointers. */
688 src = shdr->contents + shdr->sh_size;
689 dest = (Elf_Internal_Group *) (shdr->contents + amt);
690
691 while (1)
692 {
693 unsigned int idx;
694
695 src -= 4;
696 --dest;
697 idx = H_GET_32 (abfd, src);
698 if (src == shdr->contents)
699 {
700 dest->shdr = NULL;
701 dest->flags = idx;
702 if (shdr->bfd_section != NULL && (idx & GRP_COMDAT))
703 shdr->bfd_section->flags
704 |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
705 break;
706 }
707 if (idx < shnum)
708 {
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
714 them up here. */
715 dest->shdr->sh_flags |= SHF_GROUP;
716 }
717 if (idx >= shnum
718 || dest->shdr->sh_type == SHT_GROUP)
719 {
720 _bfd_error_handler
721 (_("%pB: invalid entry in SHT_GROUP section [%u]"),
722 abfd, i);
723 dest->shdr = NULL;
724 }
725 }
726 }
727 }
728
729 /* PR 17510: Corrupt binaries might contain invalid groups. */
730 if (num_group != (unsigned) elf_tdata (abfd)->num_group)
731 {
732 elf_tdata (abfd)->num_group = num_group;
733
734 /* If all groups are invalid then fail. */
735 if (num_group == 0)
736 {
737 elf_tdata (abfd)->group_sect_ptr = NULL;
738 elf_tdata (abfd)->num_group = num_group = -1;
739 _bfd_error_handler
740 (_("%pB: no valid group sections found"), abfd);
741 bfd_set_error (bfd_error_bad_value);
742 }
743 }
744 }
745 }
746
747 if (num_group != (unsigned) -1)
748 {
749 unsigned int search_offset = elf_tdata (abfd)->group_search_offset;
750 unsigned int j;
751
752 for (j = 0; j < num_group; j++)
753 {
754 /* Begin search from previous found group. */
755 unsigned i = (j + search_offset) % num_group;
756
757 Elf_Internal_Shdr *shdr = elf_tdata (abfd)->group_sect_ptr[i];
758 Elf_Internal_Group *idx;
759 bfd_size_type n_elt;
760
761 if (shdr == NULL)
762 continue;
763
764 idx = (Elf_Internal_Group *) shdr->contents;
765 if (idx == NULL || shdr->sh_size < 4)
766 {
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);
773 return false;
774 }
775 n_elt = shdr->sh_size / 4;
776
777 /* Look through this group's sections to see if current
778 section is a member. */
779 while (--n_elt != 0)
780 if ((++idx)->shdr == hdr)
781 {
782 asection *s = NULL;
783
784 /* We are a member of this group. Go looking through
785 other members to see if any others are linked via
786 next_in_group. */
787 idx = (Elf_Internal_Group *) shdr->contents;
788 n_elt = shdr->sh_size / 4;
789 while (--n_elt != 0)
790 if ((++idx)->shdr != NULL
791 && (s = idx->shdr->bfd_section) != NULL
792 && elf_next_in_group (s) != NULL)
793 break;
794 if (n_elt != 0)
795 {
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;
801 }
802 else
803 {
804 const char *gname;
805
806 gname = group_signature (abfd, shdr);
807 if (gname == NULL)
808 return false;
809 elf_group_name (newsect) = gname;
810
811 /* Start a circular list with one element. */
812 elf_next_in_group (newsect) = newsect;
813 }
814
815 /* If the group section has been created, point to the
816 new member. */
817 if (shdr->bfd_section != NULL)
818 elf_next_in_group (shdr->bfd_section) = newsect;
819
820 elf_tdata (abfd)->group_search_offset = i;
821 j = num_group - 1;
822 break;
823 }
824 }
825 }
826
827 if (elf_group_name (newsect) == NULL)
828 {
829 /* xgettext:c-format */
830 _bfd_error_handler (_("%pB: no group info for section '%pA'"),
831 abfd, newsect);
832 return false;
833 }
834 return true;
835 }
836
837 bool
838 _bfd_elf_setup_sections (bfd *abfd)
839 {
840 unsigned int i;
841 unsigned int num_group = elf_tdata (abfd)->num_group;
842 bool result = true;
843 asection *s;
844
845 /* Process SHF_LINK_ORDER. */
846 for (s = abfd->sections; s != NULL; s = s->next)
847 {
848 Elf_Internal_Shdr *this_hdr = &elf_section_data (s)->this_hdr;
849 if ((this_hdr->sh_flags & SHF_LINK_ORDER) != 0)
850 {
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
856 however. */
857 if (elfsec == 0)
858 {
859 elf_linked_to_section (s) = NULL;
860 }
861 else
862 {
863 asection *linksec = NULL;
864
865 if (elfsec < elf_numsections (abfd))
866 {
867 this_hdr = elf_elfsections (abfd)[elfsec];
868 linksec = this_hdr->bfd_section;
869 }
870
871 /* PR 1991, 2008:
872 Some strip/objcopy may leave an incorrect value in
873 sh_link. We don't want to proceed. */
874 if (linksec == NULL)
875 {
876 _bfd_error_handler
877 /* xgettext:c-format */
878 (_("%pB: sh_link [%d] in section `%pA' is incorrect"),
879 s->owner, elfsec, s);
880 result = false;
881 }
882
883 elf_linked_to_section (s) = linksec;
884 }
885 }
886 else if (this_hdr->sh_type == SHT_GROUP
887 && elf_next_in_group (s) == NULL)
888 {
889 _bfd_error_handler
890 /* xgettext:c-format */
891 (_("%pB: SHT_GROUP section [index %d] has no SHF_GROUP sections"),
892 abfd, elf_section_data (s)->this_idx);
893 result = false;
894 }
895 }
896
897 /* Process section groups. */
898 if (num_group == (unsigned) -1)
899 return result;
900
901 for (i = 0; i < num_group; i++)
902 {
903 Elf_Internal_Shdr *shdr = elf_tdata (abfd)->group_sect_ptr[i];
904 Elf_Internal_Group *idx;
905 unsigned int n_elt;
906
907 /* PR binutils/18758: Beware of corrupt binaries with invalid group data. */
908 if (shdr == NULL || shdr->bfd_section == NULL || shdr->contents == NULL)
909 {
910 _bfd_error_handler
911 /* xgettext:c-format */
912 (_("%pB: section group entry number %u is corrupt"),
913 abfd, i);
914 result = false;
915 continue;
916 }
917
918 idx = (Elf_Internal_Group *) shdr->contents;
919 n_elt = shdr->sh_size / 4;
920
921 while (--n_elt != 0)
922 {
923 ++ idx;
924
925 if (idx->shdr == NULL)
926 continue;
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)
931 {
932 /* There are some unknown sections in the group. */
933 _bfd_error_handler
934 /* xgettext:c-format */
935 (_("%pB: unknown type [%#x] section `%s' in group [%pA]"),
936 abfd,
937 idx->shdr->sh_type,
938 bfd_elf_string_from_elf_section (abfd,
939 (elf_elfheader (abfd)
940 ->e_shstrndx),
941 idx->shdr->sh_name),
942 shdr->bfd_section);
943 result = false;
944 }
945 }
946 }
947
948 return result;
949 }
950
951 bool
952 bfd_elf_is_group_section (bfd *abfd ATTRIBUTE_UNUSED, const asection *sec)
953 {
954 return elf_next_in_group (sec) != NULL;
955 }
956
957 const char *
958 bfd_elf_group_name (bfd *abfd ATTRIBUTE_UNUSED, const asection *sec)
959 {
960 if (elf_sec_group (sec) != NULL)
961 return elf_group_name (sec);
962 return NULL;
963 }
964
965 static char *
966 convert_debug_to_zdebug (bfd *abfd, const char *name)
967 {
968 unsigned int len = strlen (name);
969 char *new_name = bfd_alloc (abfd, len + 2);
970 if (new_name == NULL)
971 return NULL;
972 new_name[0] = '.';
973 new_name[1] = 'z';
974 memcpy (new_name + 2, name + 1, len);
975 return new_name;
976 }
977
978 static char *
979 convert_zdebug_to_debug (bfd *abfd, const char *name)
980 {
981 unsigned int len = strlen (name);
982 char *new_name = bfd_alloc (abfd, len);
983 if (new_name == NULL)
984 return NULL;
985 new_name[0] = '.';
986 memcpy (new_name + 1, name + 2, len - 1);
987 return new_name;
988 }
989
990 /* This a copy of lto_section defined in GCC (lto-streamer.h). */
991
992 struct lto_section
993 {
994 int16_t major_version;
995 int16_t minor_version;
996 unsigned char slim_object;
997
998 /* Flags is a private field that is not defined publicly. */
999 uint16_t flags;
1000 };
1001
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. */
1004
1005 bool
1006 _bfd_elf_make_section_from_shdr (bfd *abfd,
1007 Elf_Internal_Shdr *hdr,
1008 const char *name,
1009 int shindex)
1010 {
1011 asection *newsect;
1012 flagword flags;
1013 const struct elf_backend_data *bed;
1014 unsigned int opb = bfd_octets_per_byte (abfd, NULL);
1015
1016 if (hdr->bfd_section != NULL)
1017 return true;
1018
1019 newsect = bfd_make_section_anyway (abfd, name);
1020 if (newsect == NULL)
1021 return false;
1022
1023 hdr->bfd_section = newsect;
1024 elf_section_data (newsect)->this_hdr = *hdr;
1025 elf_section_data (newsect)->this_idx = shindex;
1026
1027 /* Always use the real type/flags. */
1028 elf_section_type (newsect) = hdr->sh_type;
1029 elf_section_flags (newsect) = hdr->sh_flags;
1030
1031 newsect->filepos = hdr->sh_offset;
1032
1033 flags = SEC_NO_FLAGS;
1034 if (hdr->sh_type != SHT_NOBITS)
1035 flags |= SEC_HAS_CONTENTS;
1036 if (hdr->sh_type == SHT_GROUP)
1037 flags |= SEC_GROUP;
1038 if ((hdr->sh_flags & SHF_ALLOC) != 0)
1039 {
1040 flags |= SEC_ALLOC;
1041 if (hdr->sh_type != SHT_NOBITS)
1042 flags |= SEC_LOAD;
1043 }
1044 if ((hdr->sh_flags & SHF_WRITE) == 0)
1045 flags |= SEC_READONLY;
1046 if ((hdr->sh_flags & SHF_EXECINSTR) != 0)
1047 flags |= SEC_CODE;
1048 else if ((flags & SEC_LOAD) != 0)
1049 flags |= SEC_DATA;
1050 if ((hdr->sh_flags & SHF_MERGE) != 0)
1051 {
1052 flags |= SEC_MERGE;
1053 newsect->entsize = hdr->sh_entsize;
1054 }
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))
1059 return false;
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;
1064
1065 switch (elf_elfheader (abfd)->e_ident[EI_OSABI])
1066 {
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
1069 byte. */
1070 case ELFOSABI_GNU:
1071 case ELFOSABI_FREEBSD:
1072 if ((hdr->sh_flags & SHF_GNU_RETAIN) != 0)
1073 elf_tdata (abfd)->has_gnu_osabi |= elf_gnu_osabi_retain;
1074 /* Fall through */
1075 case ELFOSABI_NONE:
1076 if ((hdr->sh_flags & SHF_GNU_MBIND) != 0)
1077 elf_tdata (abfd)->has_gnu_osabi |= elf_gnu_osabi_mbind;
1078 break;
1079 }
1080
1081 if ((flags & SEC_ALLOC) == 0)
1082 {
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] == '.')
1086 {
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"))
1094 {
1095 flags |= SEC_ELF_OCTETS;
1096 opb = 1;
1097 }
1098 else if (startswith (name, ".line")
1099 || startswith (name, ".stab")
1100 || strcmp (name, ".gdb_index") == 0)
1101 flags |= SEC_DEBUGGING;
1102 }
1103 }
1104
1105 if (!bfd_set_section_vma (newsect, hdr->sh_addr / opb)
1106 || !bfd_set_section_size (newsect, hdr->sh_size)
1107 || !bfd_set_section_alignment (newsect, bfd_log2 (hdr->sh_addralign)))
1108 return false;
1109
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;
1119
1120 if (!bfd_set_section_flags (newsect, flags))
1121 return false;
1122
1123 bed = get_elf_backend_data (abfd);
1124 if (bed->elf_backend_section_flags)
1125 if (!bed->elf_backend_section_flags (hdr))
1126 return false;
1127
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)
1132 {
1133 bfd_byte *contents;
1134
1135 if (!bfd_malloc_and_get_section (abfd, newsect, &contents))
1136 return false;
1137
1138 elf_parse_notes (abfd, (char *) contents, hdr->sh_size,
1139 hdr->sh_offset, hdr->sh_addralign);
1140 free (contents);
1141 }
1142
1143 if ((newsect->flags & SEC_ALLOC) != 0)
1144 {
1145 Elf_Internal_Phdr *phdr;
1146 unsigned int i, nload;
1147
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)
1155 break;
1156 else if (phdr->p_type == PT_LOAD && phdr->p_memsz != 0)
1157 ++nload;
1158 if (i >= elf_elfheader (abfd)->e_phnum && nload > 1)
1159 return true;
1160
1161 phdr = elf_tdata (abfd)->phdr;
1162 for (i = 0; i < elf_elfheader (abfd)->e_phnum; i++, phdr++)
1163 {
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))
1168 {
1169 if ((newsect->flags & SEC_LOAD) == 0)
1170 newsect->lma = (phdr->p_paddr
1171 + hdr->sh_addr - phdr->p_vaddr) / opb;
1172 else
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;
1182
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))
1190 break;
1191 }
1192 }
1193 }
1194
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] == '_')))
1200 {
1201 enum { nothing, compress, decompress } action = nothing;
1202 int compression_header_size;
1203 bfd_size_type uncompressed_size;
1204 unsigned int uncompressed_align_power;
1205 bool compressed
1206 = bfd_is_section_compressed_with_header (abfd, newsect,
1207 &compression_header_size,
1208 &uncompressed_size,
1209 &uncompressed_align_power);
1210 if (compressed)
1211 {
1212 /* Compressed section. Check if we should decompress. */
1213 if ((abfd->flags & BFD_DECOMPRESS))
1214 action = decompress;
1215 }
1216
1217 /* Compress the uncompressed section or convert from/to .zdebug*
1218 section. Check if we should compress. */
1219 if (action == nothing)
1220 {
1221 if (newsect->size != 0
1222 && (abfd->flags & BFD_COMPRESS)
1223 && compression_header_size >= 0
1224 && uncompressed_size > 0
1225 && (!compressed
1226 || ((compression_header_size > 0)
1227 != ((abfd->flags & BFD_COMPRESS_GABI) != 0))))
1228 action = compress;
1229 else
1230 return true;
1231 }
1232
1233 if (action == compress)
1234 {
1235 if (!bfd_init_section_compress_status (abfd, newsect))
1236 {
1237 _bfd_error_handler
1238 /* xgettext:c-format */
1239 (_("%pB: unable to initialize compress status for section %s"),
1240 abfd, name);
1241 return false;
1242 }
1243 }
1244 else
1245 {
1246 if (!bfd_init_section_decompress_status (abfd, newsect))
1247 {
1248 _bfd_error_handler
1249 /* xgettext:c-format */
1250 (_("%pB: unable to initialize decompress status for section %s"),
1251 abfd, name);
1252 return false;
1253 }
1254 }
1255
1256 if (abfd->is_linker_input)
1257 {
1258 if (name[1] == 'z'
1259 && (action == decompress
1260 || (action == compress
1261 && (abfd->flags & BFD_COMPRESS_GABI) != 0)))
1262 {
1263 /* Convert section name from .zdebug_* to .debug_* so
1264 that linker will consider this section as a debug
1265 section. */
1266 char *new_name = convert_zdebug_to_debug (abfd, name);
1267 if (new_name == NULL)
1268 return false;
1269 bfd_rename_section (newsect, new_name);
1270 }
1271 }
1272 else
1273 /* For objdump, don't rename the section. For objcopy, delay
1274 section rename to elf_fake_sections. */
1275 newsect->flags |= SEC_ELF_RENAME;
1276 }
1277
1278 /* GCC uses .gnu.lto_.lto.<some_hash> as a LTO bytecode information
1279 section. */
1280 if (startswith (name, ".gnu.lto_.lto."))
1281 {
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;
1286 }
1287
1288 return true;
1289 }
1290
1291 const char *const bfd_elf_section_type_names[] =
1292 {
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",
1296 };
1297
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. */
1306
1307 bfd_reloc_status_type
1308 bfd_elf_generic_reloc (bfd *abfd ATTRIBUTE_UNUSED,
1309 arelent *reloc_entry,
1310 asymbol *symbol,
1311 void *data ATTRIBUTE_UNUSED,
1312 asection *input_section,
1313 bfd *output_bfd,
1314 char **error_message ATTRIBUTE_UNUSED)
1315 {
1316 if (output_bfd != NULL
1317 && (symbol->flags & BSF_SECTION_SYM) == 0
1318 && (! reloc_entry->howto->partial_inplace
1319 || reloc_entry->addend == 0))
1320 {
1321 reloc_entry->address += input_section->output_offset;
1322 return bfd_reloc_ok;
1323 }
1324
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;
1338
1339 return bfd_reloc_continue;
1340 }
1341 \f
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. */
1345
1346 static bool
1347 section_match (const Elf_Internal_Shdr * a,
1348 const Elf_Internal_Shdr * b)
1349 {
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)
1354 return false;
1355 if (a->sh_type == SHT_SYMTAB
1356 || a->sh_type == SHT_STRTAB)
1357 return true;
1358 return a->sh_size == b->sh_size;
1359 }
1360
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. */
1365
1366 static unsigned int
1367 find_link (const bfd *obfd, const Elf_Internal_Shdr *iheader,
1368 const unsigned int hint)
1369 {
1370 Elf_Internal_Shdr ** oheaders = elf_elfsections (obfd);
1371 unsigned int i;
1372
1373 BFD_ASSERT (iheader != NULL);
1374
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))
1379 return hint;
1380
1381 for (i = 1; i < elf_numsections (obfd); i++)
1382 {
1383 Elf_Internal_Shdr * oheader = oheaders[i];
1384
1385 if (oheader == NULL)
1386 continue;
1387 if (section_match (oheader, iheader))
1388 /* FIXME: Do we care if there is a potential for
1389 multiple matches ? */
1390 return i;
1391 }
1392
1393 return SHN_UNDEF;
1394 }
1395
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. */
1399
1400 static bool
1401 copy_special_section_fields (const bfd *ibfd,
1402 bfd *obfd,
1403 const Elf_Internal_Shdr *iheader,
1404 Elf_Internal_Shdr *oheader,
1405 const unsigned int secnum)
1406 {
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;
1411
1412 if (oheader->sh_type == SHT_NOBITS)
1413 {
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.
1418
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;
1434 return true;
1435 }
1436
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,
1439 iheader, oheader))
1440 return true;
1441
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)
1447 {
1448 /* See PR 20931 for a reproducer. */
1449 if (iheader->sh_link >= elf_numsections (ibfd))
1450 {
1451 _bfd_error_handler
1452 /* xgettext:c-format */
1453 (_("%pB: invalid sh_link field (%d) in section number %d"),
1454 ibfd, iheader->sh_link, secnum);
1455 return false;
1456 }
1457
1458 sh_link = find_link (obfd, iheaders[iheader->sh_link], iheader->sh_link);
1459 if (sh_link != SHN_UNDEF)
1460 {
1461 oheader->sh_link = sh_link;
1462 changed = true;
1463 }
1464 else
1465 /* FIXME: Should we install iheader->sh_link
1466 if we could not find a match ? */
1467 _bfd_error_handler
1468 /* xgettext:c-format */
1469 (_("%pB: failed to find link section for section %d"), obfd, secnum);
1470 }
1471
1472 if (iheader->sh_info)
1473 {
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
1476 section index. */
1477 if (iheader->sh_flags & SHF_INFO_LINK)
1478 {
1479 sh_link = find_link (obfd, iheaders[iheader->sh_info],
1480 iheader->sh_info);
1481 if (sh_link != SHN_UNDEF)
1482 oheader->sh_flags |= SHF_INFO_LINK;
1483 }
1484 else
1485 /* No idea what it means - just copy it. */
1486 sh_link = iheader->sh_info;
1487
1488 if (sh_link != SHN_UNDEF)
1489 {
1490 oheader->sh_info = sh_link;
1491 changed = true;
1492 }
1493 else
1494 _bfd_error_handler
1495 /* xgettext:c-format */
1496 (_("%pB: failed to find info section for section %d"), obfd, secnum);
1497 }
1498
1499 return changed;
1500 }
1501
1502 /* Copy the program header and other data from one object module to
1503 another. */
1504
1505 bool
1506 _bfd_elf_copy_private_bfd_data (bfd *ibfd, bfd *obfd)
1507 {
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;
1511 unsigned int i;
1512
1513 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
1514 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
1515 return true;
1516
1517 if (!elf_flags_init (obfd))
1518 {
1519 elf_elfheader (obfd)->e_flags = elf_elfheader (ibfd)->e_flags;
1520 elf_flags_init (obfd) = true;
1521 }
1522
1523 elf_gp (obfd) = elf_gp (ibfd);
1524
1525 /* Also copy the EI_OSABI field. */
1526 elf_elfheader (obfd)->e_ident[EI_OSABI] =
1527 elf_elfheader (ibfd)->e_ident[EI_OSABI];
1528
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];
1533
1534 /* Copy object attributes. */
1535 _bfd_elf_copy_obj_attributes (ibfd, obfd);
1536
1537 if (iheaders == NULL || oheaders == NULL)
1538 return true;
1539
1540 bed = get_elf_backend_data (obfd);
1541
1542 /* Possibly copy other fields in the section header. */
1543 for (i = 1; i < elf_numsections (obfd); i++)
1544 {
1545 unsigned int j;
1546 Elf_Internal_Shdr * oheader = oheaders[i];
1547
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. */
1551 if (oheader == NULL
1552 || (oheader->sh_type != SHT_NOBITS
1553 && oheader->sh_type < SHT_LOOS))
1554 continue;
1555
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))
1560 continue;
1561
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++)
1565 {
1566 const Elf_Internal_Shdr * iheader = iheaders[j];
1567
1568 if (iheader == NULL)
1569 continue;
1570
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)
1575 {
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);
1582 break;
1583 }
1584 }
1585
1586 if (j < elf_numsections (ibfd))
1587 continue;
1588
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++)
1593 {
1594 const Elf_Internal_Shdr * iheader = iheaders[j];
1595
1596 if (iheader == NULL)
1597 continue;
1598
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
1602 input type. */
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))
1613 {
1614 if (copy_special_section_fields (ibfd, obfd, iheader, oheader, i))
1615 break;
1616 }
1617 }
1618
1619 if (j == elf_numsections (ibfd) && oheader->sh_type >= SHT_LOOS)
1620 {
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,
1624 NULL, oheader);
1625 }
1626 }
1627
1628 return true;
1629 }
1630
1631 static const char *
1632 get_segment_type (unsigned int p_type)
1633 {
1634 const char *pt;
1635 switch (p_type)
1636 {
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;
1649 }
1650 return pt;
1651 }
1652
1653 /* Print out the program headers. */
1654
1655 bool
1656 _bfd_elf_print_private_bfd_data (bfd *abfd, void *farg)
1657 {
1658 FILE *f = (FILE *) farg;
1659 Elf_Internal_Phdr *p;
1660 asection *s;
1661 bfd_byte *dynbuf = NULL;
1662
1663 p = elf_tdata (abfd)->phdr;
1664 if (p != NULL)
1665 {
1666 unsigned int i, c;
1667
1668 fprintf (f, _("\nProgram Header:\n"));
1669 c = elf_elfheader (abfd)->e_phnum;
1670 for (i = 0; i < c; i++, p++)
1671 {
1672 const char *pt = get_segment_type (p->p_type);
1673 char buf[20];
1674
1675 if (pt == NULL)
1676 {
1677 sprintf (buf, "0x%lx", p->p_type);
1678 pt = buf;
1679 }
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));
1697 fprintf (f, "\n");
1698 }
1699 }
1700
1701 s = bfd_get_section_by_name (abfd, ".dynamic");
1702 if (s != NULL)
1703 {
1704 unsigned int elfsec;
1705 unsigned long shlink;
1706 bfd_byte *extdyn, *extdynend;
1707 size_t extdynsize;
1708 void (*swap_dyn_in) (bfd *, const void *, Elf_Internal_Dyn *);
1709
1710 fprintf (f, _("\nDynamic Section:\n"));
1711
1712 if (!bfd_malloc_and_get_section (abfd, s, &dynbuf))
1713 goto error_return;
1714
1715 elfsec = _bfd_elf_section_from_bfd_section (abfd, s);
1716 if (elfsec == SHN_BAD)
1717 goto error_return;
1718 shlink = elf_elfsections (abfd)[elfsec]->sh_link;
1719
1720 extdynsize = get_elf_backend_data (abfd)->s->sizeof_dyn;
1721 swap_dyn_in = get_elf_backend_data (abfd)->s->swap_dyn_in;
1722
1723 extdyn = dynbuf;
1724 /* PR 17512: file: 6f427532. */
1725 if (s->size < extdynsize)
1726 goto error_return;
1727 extdynend = extdyn + s->size;
1728 /* PR 17512: file: id:000006,sig:06,src:000000,op:flip4,pos:5664.
1729 Fix range check. */
1730 for (; extdyn <= (extdynend - extdynsize); extdyn += extdynsize)
1731 {
1732 Elf_Internal_Dyn dyn;
1733 const char *name = "";
1734 char ab[20];
1735 bool stringp;
1736 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
1737
1738 (*swap_dyn_in) (abfd, extdyn, &dyn);
1739
1740 if (dyn.d_tag == DT_NULL)
1741 break;
1742
1743 stringp = false;
1744 switch (dyn.d_tag)
1745 {
1746 default:
1747 if (bed->elf_backend_get_target_dtag)
1748 name = (*bed->elf_backend_get_target_dtag) (dyn.d_tag);
1749
1750 if (!strcmp (name, ""))
1751 {
1752 sprintf (ab, "%#" BFD_VMA_FMT "x", dyn.d_tag);
1753 name = ab;
1754 }
1755 break;
1756
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;
1818 }
1819
1820 fprintf (f, " %-20s ", name);
1821 if (! stringp)
1822 {
1823 fprintf (f, "0x");
1824 bfd_fprintf_vma (abfd, f, dyn.d_un.d_val);
1825 }
1826 else
1827 {
1828 const char *string;
1829 unsigned int tagv = dyn.d_un.d_val;
1830
1831 string = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
1832 if (string == NULL)
1833 goto error_return;
1834 fprintf (f, "%s", string);
1835 }
1836 fprintf (f, "\n");
1837 }
1838
1839 free (dynbuf);
1840 dynbuf = NULL;
1841 }
1842
1843 if ((elf_dynverdef (abfd) != 0 && elf_tdata (abfd)->verdef == NULL)
1844 || (elf_dynverref (abfd) != 0 && elf_tdata (abfd)->verref == NULL))
1845 {
1846 if (! _bfd_elf_slurp_version_tables (abfd, false))
1847 return false;
1848 }
1849
1850 if (elf_dynverdef (abfd) != 0)
1851 {
1852 Elf_Internal_Verdef *t;
1853
1854 fprintf (f, _("\nVersion definitions:\n"));
1855 for (t = elf_tdata (abfd)->verdef; t != NULL; t = t->vd_nextdef)
1856 {
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)
1861 {
1862 Elf_Internal_Verdaux *a;
1863
1864 fprintf (f, "\t");
1865 for (a = t->vd_auxptr->vda_nextptr;
1866 a != NULL;
1867 a = a->vda_nextptr)
1868 fprintf (f, "%s ",
1869 a->vda_nodename ? a->vda_nodename : "<corrupt>");
1870 fprintf (f, "\n");
1871 }
1872 }
1873 }
1874
1875 if (elf_dynverref (abfd) != 0)
1876 {
1877 Elf_Internal_Verneed *t;
1878
1879 fprintf (f, _("\nVersion References:\n"));
1880 for (t = elf_tdata (abfd)->verref; t != NULL; t = t->vn_nextref)
1881 {
1882 Elf_Internal_Vernaux *a;
1883
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>");
1890 }
1891 }
1892
1893 return true;
1894
1895 error_return:
1896 free (dynbuf);
1897 return false;
1898 }
1899
1900 /* Get version name. If BASE_P is TRUE, return "Base" for VER_FLG_BASE
1901 and return symbol version for symbol version itself. */
1902
1903 const char *
1904 _bfd_elf_get_symbol_version_string (bfd *abfd, asymbol *symbol,
1905 bool base_p,
1906 bool *hidden)
1907 {
1908 const char *version_string = NULL;
1909 if (elf_dynversym (abfd) != 0
1910 && (elf_dynverdef (abfd) != 0 || elf_dynverref (abfd) != 0))
1911 {
1912 unsigned int vernum = ((elf_symbol_type *) symbol)->version;
1913
1914 *hidden = (vernum & VERSYM_HIDDEN) != 0;
1915 vernum &= VERSYM_VERSION;
1916
1917 if (vernum == 0)
1918 version_string = "";
1919 else if (vernum == 1
1920 && (vernum > elf_tdata (abfd)->cverdefs
1921 || (elf_tdata (abfd)->verdef[0].vd_flags
1922 == VER_FLG_BASE)))
1923 version_string = base_p ? "Base" : "";
1924 else if (vernum <= elf_tdata (abfd)->cverdefs)
1925 {
1926 const char *nodename
1927 = elf_tdata (abfd)->verdef[vernum - 1].vd_nodename;
1928 version_string = "";
1929 if (base_p
1930 || nodename == NULL
1931 || symbol->name == NULL
1932 || strcmp (symbol->name, nodename) != 0)
1933 version_string = nodename;
1934 }
1935 else
1936 {
1937 Elf_Internal_Verneed *t;
1938
1939 version_string = _("<corrupt>");
1940 for (t = elf_tdata (abfd)->verref;
1941 t != NULL;
1942 t = t->vn_nextref)
1943 {
1944 Elf_Internal_Vernaux *a;
1945
1946 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
1947 {
1948 if (a->vna_other == vernum)
1949 {
1950 version_string = a->vna_nodename;
1951 break;
1952 }
1953 }
1954 }
1955 }
1956 }
1957 return version_string;
1958 }
1959
1960 /* Display ELF-specific fields of a symbol. */
1961
1962 void
1963 bfd_elf_print_symbol (bfd *abfd,
1964 void *filep,
1965 asymbol *symbol,
1966 bfd_print_symbol_type how)
1967 {
1968 FILE *file = (FILE *) filep;
1969 switch (how)
1970 {
1971 case bfd_print_symbol_name:
1972 fprintf (file, "%s", symbol->name);
1973 break;
1974 case bfd_print_symbol_more:
1975 fprintf (file, "elf ");
1976 bfd_fprintf_vma (abfd, file, symbol->value);
1977 fprintf (file, " %x", symbol->flags);
1978 break;
1979 case bfd_print_symbol_all:
1980 {
1981 const char *section_name;
1982 const char *name = NULL;
1983 const struct elf_backend_data *bed;
1984 unsigned char st_other;
1985 bfd_vma val;
1986 const char *version_string;
1987 bool hidden;
1988
1989 section_name = symbol->section ? symbol->section->name : "(*none*)";
1990
1991 bed = get_elf_backend_data (abfd);
1992 if (bed->elf_backend_print_symbol_all)
1993 name = (*bed->elf_backend_print_symbol_all) (abfd, filep, symbol);
1994
1995 if (name == NULL)
1996 {
1997 name = symbol->name;
1998 bfd_print_symbol_vandf (abfd, file, symbol);
1999 }
2000
2001 fprintf (file, " %s\t", section_name);
2002 /* Print the "other" value for a symbol. For common symbols,
2003 we've already printed the size; now print the alignment.
2004 For other symbols, we have no specified alignment, and
2005 we've printed the address; now print the size. */
2006 if (symbol->section && bfd_is_com_section (symbol->section))
2007 val = ((elf_symbol_type *) symbol)->internal_elf_sym.st_value;
2008 else
2009 val = ((elf_symbol_type *) symbol)->internal_elf_sym.st_size;
2010 bfd_fprintf_vma (abfd, file, val);
2011
2012 /* If we have version information, print it. */
2013 version_string = _bfd_elf_get_symbol_version_string (abfd,
2014 symbol,
2015 true,
2016 &hidden);
2017 if (version_string)
2018 {
2019 if (!hidden)
2020 fprintf (file, " %-11s", version_string);
2021 else
2022 {
2023 int i;
2024
2025 fprintf (file, " (%s)", version_string);
2026 for (i = 10 - strlen (version_string); i > 0; --i)
2027 putc (' ', file);
2028 }
2029 }
2030
2031 /* If the st_other field is not zero, print it. */
2032 st_other = ((elf_symbol_type *) symbol)->internal_elf_sym.st_other;
2033
2034 switch (st_other)
2035 {
2036 case 0: break;
2037 case STV_INTERNAL: fprintf (file, " .internal"); break;
2038 case STV_HIDDEN: fprintf (file, " .hidden"); break;
2039 case STV_PROTECTED: fprintf (file, " .protected"); break;
2040 default:
2041 /* Some other non-defined flags are also present, so print
2042 everything hex. */
2043 fprintf (file, " 0x%02x", (unsigned int) st_other);
2044 }
2045
2046 fprintf (file, " %s", name);
2047 }
2048 break;
2049 }
2050 }
2051 \f
2052 /* ELF .o/exec file reading */
2053
2054 /* Create a new bfd section from an ELF section header. */
2055
2056 bool
2057 bfd_section_from_shdr (bfd *abfd, unsigned int shindex)
2058 {
2059 Elf_Internal_Shdr *hdr;
2060 Elf_Internal_Ehdr *ehdr;
2061 const struct elf_backend_data *bed;
2062 const char *name;
2063 bool ret = true;
2064
2065 if (shindex >= elf_numsections (abfd))
2066 return false;
2067
2068 /* PR17512: A corrupt ELF binary might contain a loop of sections via
2069 sh_link or sh_info. Detect this here, by refusing to load a
2070 section that we are already in the process of loading. */
2071 if (elf_tdata (abfd)->being_created[shindex])
2072 {
2073 _bfd_error_handler
2074 (_("%pB: warning: loop in section dependencies detected"), abfd);
2075 return false;
2076 }
2077 elf_tdata (abfd)->being_created[shindex] = true;
2078
2079 hdr = elf_elfsections (abfd)[shindex];
2080 ehdr = elf_elfheader (abfd);
2081 name = bfd_elf_string_from_elf_section (abfd, ehdr->e_shstrndx,
2082 hdr->sh_name);
2083 if (name == NULL)
2084 goto fail;
2085
2086 bed = get_elf_backend_data (abfd);
2087 switch (hdr->sh_type)
2088 {
2089 case SHT_NULL:
2090 /* Inactive section. Throw it away. */
2091 goto success;
2092
2093 case SHT_PROGBITS: /* Normal section with contents. */
2094 case SHT_NOBITS: /* .bss section. */
2095 case SHT_HASH: /* .hash section. */
2096 case SHT_NOTE: /* .note section. */
2097 case SHT_INIT_ARRAY: /* .init_array section. */
2098 case SHT_FINI_ARRAY: /* .fini_array section. */
2099 case SHT_PREINIT_ARRAY: /* .preinit_array section. */
2100 case SHT_GNU_LIBLIST: /* .gnu.liblist section. */
2101 case SHT_GNU_HASH: /* .gnu.hash section. */
2102 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2103 goto success;
2104
2105 case SHT_DYNAMIC: /* Dynamic linking information. */
2106 if (! _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex))
2107 goto fail;
2108
2109 if (hdr->sh_link > elf_numsections (abfd))
2110 {
2111 /* PR 10478: Accept Solaris binaries with a sh_link
2112 field set to SHN_BEFORE or SHN_AFTER. */
2113 switch (bfd_get_arch (abfd))
2114 {
2115 case bfd_arch_i386:
2116 case bfd_arch_sparc:
2117 if (hdr->sh_link == (SHN_LORESERVE & 0xffff) /* SHN_BEFORE */
2118 || hdr->sh_link == ((SHN_LORESERVE + 1) & 0xffff) /* SHN_AFTER */)
2119 break;
2120 /* Otherwise fall through. */
2121 default:
2122 goto fail;
2123 }
2124 }
2125 else if (elf_elfsections (abfd)[hdr->sh_link] == NULL)
2126 goto fail;
2127 else if (elf_elfsections (abfd)[hdr->sh_link]->sh_type != SHT_STRTAB)
2128 {
2129 Elf_Internal_Shdr *dynsymhdr;
2130
2131 /* The shared libraries distributed with hpux11 have a bogus
2132 sh_link field for the ".dynamic" section. Find the
2133 string table for the ".dynsym" section instead. */
2134 if (elf_dynsymtab (abfd) != 0)
2135 {
2136 dynsymhdr = elf_elfsections (abfd)[elf_dynsymtab (abfd)];
2137 hdr->sh_link = dynsymhdr->sh_link;
2138 }
2139 else
2140 {
2141 unsigned int i, num_sec;
2142
2143 num_sec = elf_numsections (abfd);
2144 for (i = 1; i < num_sec; i++)
2145 {
2146 dynsymhdr = elf_elfsections (abfd)[i];
2147 if (dynsymhdr->sh_type == SHT_DYNSYM)
2148 {
2149 hdr->sh_link = dynsymhdr->sh_link;
2150 break;
2151 }
2152 }
2153 }
2154 }
2155 goto success;
2156
2157 case SHT_SYMTAB: /* A symbol table. */
2158 if (elf_onesymtab (abfd) == shindex)
2159 goto success;
2160
2161 if (hdr->sh_entsize != bed->s->sizeof_sym)
2162 goto fail;
2163
2164 if (hdr->sh_info * hdr->sh_entsize > hdr->sh_size)
2165 {
2166 if (hdr->sh_size != 0)
2167 goto fail;
2168 /* Some assemblers erroneously set sh_info to one with a
2169 zero sh_size. ld sees this as a global symbol count
2170 of (unsigned) -1. Fix it here. */
2171 hdr->sh_info = 0;
2172 goto success;
2173 }
2174
2175 /* PR 18854: A binary might contain more than one symbol table.
2176 Unusual, but possible. Warn, but continue. */
2177 if (elf_onesymtab (abfd) != 0)
2178 {
2179 _bfd_error_handler
2180 /* xgettext:c-format */
2181 (_("%pB: warning: multiple symbol tables detected"
2182 " - ignoring the table in section %u"),
2183 abfd, shindex);
2184 goto success;
2185 }
2186 elf_onesymtab (abfd) = shindex;
2187 elf_symtab_hdr (abfd) = *hdr;
2188 elf_elfsections (abfd)[shindex] = hdr = & elf_symtab_hdr (abfd);
2189 abfd->flags |= HAS_SYMS;
2190
2191 /* Sometimes a shared object will map in the symbol table. If
2192 SHF_ALLOC is set, and this is a shared object, then we also
2193 treat this section as a BFD section. We can not base the
2194 decision purely on SHF_ALLOC, because that flag is sometimes
2195 set in a relocatable object file, which would confuse the
2196 linker. */
2197 if ((hdr->sh_flags & SHF_ALLOC) != 0
2198 && (abfd->flags & DYNAMIC) != 0
2199 && ! _bfd_elf_make_section_from_shdr (abfd, hdr, name,
2200 shindex))
2201 goto fail;
2202
2203 /* Go looking for SHT_SYMTAB_SHNDX too, since if there is one we
2204 can't read symbols without that section loaded as well. It
2205 is most likely specified by the next section header. */
2206 {
2207 elf_section_list * entry;
2208 unsigned int i, num_sec;
2209
2210 for (entry = elf_symtab_shndx_list (abfd); entry != NULL; entry = entry->next)
2211 if (entry->hdr.sh_link == shindex)
2212 goto success;
2213
2214 num_sec = elf_numsections (abfd);
2215 for (i = shindex + 1; i < num_sec; i++)
2216 {
2217 Elf_Internal_Shdr *hdr2 = elf_elfsections (abfd)[i];
2218
2219 if (hdr2->sh_type == SHT_SYMTAB_SHNDX
2220 && hdr2->sh_link == shindex)
2221 break;
2222 }
2223
2224 if (i == num_sec)
2225 for (i = 1; i < shindex; i++)
2226 {
2227 Elf_Internal_Shdr *hdr2 = elf_elfsections (abfd)[i];
2228
2229 if (hdr2->sh_type == SHT_SYMTAB_SHNDX
2230 && hdr2->sh_link == shindex)
2231 break;
2232 }
2233
2234 if (i != shindex)
2235 ret = bfd_section_from_shdr (abfd, i);
2236 /* else FIXME: we have failed to find the symbol table - should we issue an error ? */
2237 goto success;
2238 }
2239
2240 case SHT_DYNSYM: /* A dynamic symbol table. */
2241 if (elf_dynsymtab (abfd) == shindex)
2242 goto success;
2243
2244 if (hdr->sh_entsize != bed->s->sizeof_sym)
2245 goto fail;
2246
2247 if (hdr->sh_info * hdr->sh_entsize > hdr->sh_size)
2248 {
2249 if (hdr->sh_size != 0)
2250 goto fail;
2251
2252 /* Some linkers erroneously set sh_info to one with a
2253 zero sh_size. ld sees this as a global symbol count
2254 of (unsigned) -1. Fix it here. */
2255 hdr->sh_info = 0;
2256 goto success;
2257 }
2258
2259 /* PR 18854: A binary might contain more than one dynamic symbol table.
2260 Unusual, but possible. Warn, but continue. */
2261 if (elf_dynsymtab (abfd) != 0)
2262 {
2263 _bfd_error_handler
2264 /* xgettext:c-format */
2265 (_("%pB: warning: multiple dynamic symbol tables detected"
2266 " - ignoring the table in section %u"),
2267 abfd, shindex);
2268 goto success;
2269 }
2270 elf_dynsymtab (abfd) = shindex;
2271 elf_tdata (abfd)->dynsymtab_hdr = *hdr;
2272 elf_elfsections (abfd)[shindex] = hdr = &elf_tdata (abfd)->dynsymtab_hdr;
2273 abfd->flags |= HAS_SYMS;
2274
2275 /* Besides being a symbol table, we also treat this as a regular
2276 section, so that objcopy can handle it. */
2277 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2278 goto success;
2279
2280 case SHT_SYMTAB_SHNDX: /* Symbol section indices when >64k sections. */
2281 {
2282 elf_section_list * entry;
2283
2284 for (entry = elf_symtab_shndx_list (abfd); entry != NULL; entry = entry->next)
2285 if (entry->ndx == shindex)
2286 goto success;
2287
2288 entry = bfd_alloc (abfd, sizeof (*entry));
2289 if (entry == NULL)
2290 goto fail;
2291 entry->ndx = shindex;
2292 entry->hdr = * hdr;
2293 entry->next = elf_symtab_shndx_list (abfd);
2294 elf_symtab_shndx_list (abfd) = entry;
2295 elf_elfsections (abfd)[shindex] = & entry->hdr;
2296 goto success;
2297 }
2298
2299 case SHT_STRTAB: /* A string table. */
2300 if (hdr->bfd_section != NULL)
2301 goto success;
2302
2303 if (ehdr->e_shstrndx == shindex)
2304 {
2305 elf_tdata (abfd)->shstrtab_hdr = *hdr;
2306 elf_elfsections (abfd)[shindex] = &elf_tdata (abfd)->shstrtab_hdr;
2307 goto success;
2308 }
2309
2310 if (elf_elfsections (abfd)[elf_onesymtab (abfd)]->sh_link == shindex)
2311 {
2312 symtab_strtab:
2313 elf_tdata (abfd)->strtab_hdr = *hdr;
2314 elf_elfsections (abfd)[shindex] = &elf_tdata (abfd)->strtab_hdr;
2315 goto success;
2316 }
2317
2318 if (elf_elfsections (abfd)[elf_dynsymtab (abfd)]->sh_link == shindex)
2319 {
2320 dynsymtab_strtab:
2321 elf_tdata (abfd)->dynstrtab_hdr = *hdr;
2322 hdr = &elf_tdata (abfd)->dynstrtab_hdr;
2323 elf_elfsections (abfd)[shindex] = hdr;
2324 /* We also treat this as a regular section, so that objcopy
2325 can handle it. */
2326 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name,
2327 shindex);
2328 goto success;
2329 }
2330
2331 /* If the string table isn't one of the above, then treat it as a
2332 regular section. We need to scan all the headers to be sure,
2333 just in case this strtab section appeared before the above. */
2334 if (elf_onesymtab (abfd) == 0 || elf_dynsymtab (abfd) == 0)
2335 {
2336 unsigned int i, num_sec;
2337
2338 num_sec = elf_numsections (abfd);
2339 for (i = 1; i < num_sec; i++)
2340 {
2341 Elf_Internal_Shdr *hdr2 = elf_elfsections (abfd)[i];
2342 if (hdr2->sh_link == shindex)
2343 {
2344 /* Prevent endless recursion on broken objects. */
2345 if (i == shindex)
2346 goto fail;
2347 if (! bfd_section_from_shdr (abfd, i))
2348 goto fail;
2349 if (elf_onesymtab (abfd) == i)
2350 goto symtab_strtab;
2351 if (elf_dynsymtab (abfd) == i)
2352 goto dynsymtab_strtab;
2353 }
2354 }
2355 }
2356 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2357 goto success;
2358
2359 case SHT_REL:
2360 case SHT_RELA:
2361 /* *These* do a lot of work -- but build no sections! */
2362 {
2363 asection *target_sect;
2364 Elf_Internal_Shdr *hdr2, **p_hdr;
2365 unsigned int num_sec = elf_numsections (abfd);
2366 struct bfd_elf_section_data *esdt;
2367
2368 if (hdr->sh_entsize
2369 != (bfd_size_type) (hdr->sh_type == SHT_REL
2370 ? bed->s->sizeof_rel : bed->s->sizeof_rela))
2371 goto fail;
2372
2373 /* Check for a bogus link to avoid crashing. */
2374 if (hdr->sh_link >= num_sec)
2375 {
2376 _bfd_error_handler
2377 /* xgettext:c-format */
2378 (_("%pB: invalid link %u for reloc section %s (index %u)"),
2379 abfd, hdr->sh_link, name, shindex);
2380 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name,
2381 shindex);
2382 goto success;
2383 }
2384
2385 /* For some incomprehensible reason Oracle distributes
2386 libraries for Solaris in which some of the objects have
2387 bogus sh_link fields. It would be nice if we could just
2388 reject them, but, unfortunately, some people need to use
2389 them. We scan through the section headers; if we find only
2390 one suitable symbol table, we clobber the sh_link to point
2391 to it. I hope this doesn't break anything.
2392
2393 Don't do it on executable nor shared library. */
2394 if ((abfd->flags & (DYNAMIC | EXEC_P)) == 0
2395 && elf_elfsections (abfd)[hdr->sh_link]->sh_type != SHT_SYMTAB
2396 && elf_elfsections (abfd)[hdr->sh_link]->sh_type != SHT_DYNSYM)
2397 {
2398 unsigned int scan;
2399 int found;
2400
2401 found = 0;
2402 for (scan = 1; scan < num_sec; scan++)
2403 {
2404 if (elf_elfsections (abfd)[scan]->sh_type == SHT_SYMTAB
2405 || elf_elfsections (abfd)[scan]->sh_type == SHT_DYNSYM)
2406 {
2407 if (found != 0)
2408 {
2409 found = 0;
2410 break;
2411 }
2412 found = scan;
2413 }
2414 }
2415 if (found != 0)
2416 hdr->sh_link = found;
2417 }
2418
2419 /* Get the symbol table. */
2420 if ((elf_elfsections (abfd)[hdr->sh_link]->sh_type == SHT_SYMTAB
2421 || elf_elfsections (abfd)[hdr->sh_link]->sh_type == SHT_DYNSYM)
2422 && ! bfd_section_from_shdr (abfd, hdr->sh_link))
2423 goto fail;
2424
2425 /* If this is an alloc section in an executable or shared
2426 library, or the reloc section does not use the main symbol
2427 table we don't treat it as a reloc section. BFD can't
2428 adequately represent such a section, so at least for now,
2429 we don't try. We just present it as a normal section. We
2430 also can't use it as a reloc section if it points to the
2431 null section, an invalid section, another reloc section, or
2432 its sh_link points to the null section. */
2433 if (((abfd->flags & (DYNAMIC | EXEC_P)) != 0
2434 && (hdr->sh_flags & SHF_ALLOC) != 0)
2435 || hdr->sh_link == SHN_UNDEF
2436 || hdr->sh_link != elf_onesymtab (abfd)
2437 || hdr->sh_info == SHN_UNDEF
2438 || hdr->sh_info >= num_sec
2439 || elf_elfsections (abfd)[hdr->sh_info]->sh_type == SHT_REL
2440 || elf_elfsections (abfd)[hdr->sh_info]->sh_type == SHT_RELA)
2441 {
2442 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name,
2443 shindex);
2444 goto success;
2445 }
2446
2447 if (! bfd_section_from_shdr (abfd, hdr->sh_info))
2448 goto fail;
2449
2450 target_sect = bfd_section_from_elf_index (abfd, hdr->sh_info);
2451 if (target_sect == NULL)
2452 goto fail;
2453
2454 esdt = elf_section_data (target_sect);
2455 if (hdr->sh_type == SHT_RELA)
2456 p_hdr = &esdt->rela.hdr;
2457 else
2458 p_hdr = &esdt->rel.hdr;
2459
2460 /* PR 17512: file: 0b4f81b7.
2461 Also see PR 24456, for a file which deliberately has two reloc
2462 sections. */
2463 if (*p_hdr != NULL)
2464 {
2465 if (!bed->init_secondary_reloc_section (abfd, hdr, name, shindex))
2466 {
2467 _bfd_error_handler
2468 /* xgettext:c-format */
2469 (_("%pB: warning: secondary relocation section '%s' "
2470 "for section %pA found - ignoring"),
2471 abfd, name, target_sect);
2472 }
2473 else
2474 esdt->has_secondary_relocs = true;
2475 goto success;
2476 }
2477
2478 hdr2 = (Elf_Internal_Shdr *) bfd_alloc (abfd, sizeof (*hdr2));
2479 if (hdr2 == NULL)
2480 goto fail;
2481 *hdr2 = *hdr;
2482 *p_hdr = hdr2;
2483 elf_elfsections (abfd)[shindex] = hdr2;
2484 target_sect->reloc_count += (NUM_SHDR_ENTRIES (hdr)
2485 * bed->s->int_rels_per_ext_rel);
2486 target_sect->flags |= SEC_RELOC;
2487 target_sect->relocation = NULL;
2488 target_sect->rel_filepos = hdr->sh_offset;
2489 /* In the section to which the relocations apply, mark whether
2490 its relocations are of the REL or RELA variety. */
2491 if (hdr->sh_size != 0)
2492 {
2493 if (hdr->sh_type == SHT_RELA)
2494 target_sect->use_rela_p = 1;
2495 }
2496 abfd->flags |= HAS_RELOC;
2497 goto success;
2498 }
2499
2500 case SHT_GNU_verdef:
2501 elf_dynverdef (abfd) = shindex;
2502 elf_tdata (abfd)->dynverdef_hdr = *hdr;
2503 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2504 goto success;
2505
2506 case SHT_GNU_versym:
2507 if (hdr->sh_entsize != sizeof (Elf_External_Versym))
2508 goto fail;
2509
2510 elf_dynversym (abfd) = shindex;
2511 elf_tdata (abfd)->dynversym_hdr = *hdr;
2512 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2513 goto success;
2514
2515 case SHT_GNU_verneed:
2516 elf_dynverref (abfd) = shindex;
2517 elf_tdata (abfd)->dynverref_hdr = *hdr;
2518 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2519 goto success;
2520
2521 case SHT_SHLIB:
2522 goto success;
2523
2524 case SHT_GROUP:
2525 if (! IS_VALID_GROUP_SECTION_HEADER (hdr, GRP_ENTRY_SIZE))
2526 goto fail;
2527
2528 if (!_bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex))
2529 goto fail;
2530
2531 goto success;
2532
2533 default:
2534 /* Possibly an attributes section. */
2535 if (hdr->sh_type == SHT_GNU_ATTRIBUTES
2536 || hdr->sh_type == bed->obj_attrs_section_type)
2537 {
2538 if (! _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex))
2539 goto fail;
2540 _bfd_elf_parse_attributes (abfd, hdr);
2541 goto success;
2542 }
2543
2544 /* Check for any processor-specific section types. */
2545 if (bed->elf_backend_section_from_shdr (abfd, hdr, name, shindex))
2546 goto success;
2547
2548 if (hdr->sh_type >= SHT_LOUSER && hdr->sh_type <= SHT_HIUSER)
2549 {
2550 if ((hdr->sh_flags & SHF_ALLOC) != 0)
2551 /* FIXME: How to properly handle allocated section reserved
2552 for applications? */
2553 _bfd_error_handler
2554 /* xgettext:c-format */
2555 (_("%pB: unknown type [%#x] section `%s'"),
2556 abfd, hdr->sh_type, name);
2557 else
2558 {
2559 /* Allow sections reserved for applications. */
2560 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name,
2561 shindex);
2562 goto success;
2563 }
2564 }
2565 else if (hdr->sh_type >= SHT_LOPROC
2566 && hdr->sh_type <= SHT_HIPROC)
2567 /* FIXME: We should handle this section. */
2568 _bfd_error_handler
2569 /* xgettext:c-format */
2570 (_("%pB: unknown type [%#x] section `%s'"),
2571 abfd, hdr->sh_type, name);
2572 else if (hdr->sh_type >= SHT_LOOS && hdr->sh_type <= SHT_HIOS)
2573 {
2574 /* Unrecognised OS-specific sections. */
2575 if ((hdr->sh_flags & SHF_OS_NONCONFORMING) != 0)
2576 /* SHF_OS_NONCONFORMING indicates that special knowledge is
2577 required to correctly process the section and the file should
2578 be rejected with an error message. */
2579 _bfd_error_handler
2580 /* xgettext:c-format */
2581 (_("%pB: unknown type [%#x] section `%s'"),
2582 abfd, hdr->sh_type, name);
2583 else
2584 {
2585 /* Otherwise it should be processed. */
2586 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2587 goto success;
2588 }
2589 }
2590 else
2591 /* FIXME: We should handle this section. */
2592 _bfd_error_handler
2593 /* xgettext:c-format */
2594 (_("%pB: unknown type [%#x] section `%s'"),
2595 abfd, hdr->sh_type, name);
2596
2597 goto fail;
2598 }
2599
2600 fail:
2601 ret = false;
2602 success:
2603 elf_tdata (abfd)->being_created[shindex] = false;
2604 return ret;
2605 }
2606
2607 /* Return the local symbol specified by ABFD, R_SYMNDX. */
2608
2609 Elf_Internal_Sym *
2610 bfd_sym_from_r_symndx (struct sym_cache *cache,
2611 bfd *abfd,
2612 unsigned long r_symndx)
2613 {
2614 unsigned int ent = r_symndx % LOCAL_SYM_CACHE_SIZE;
2615
2616 if (cache->abfd != abfd || cache->indx[ent] != r_symndx)
2617 {
2618 Elf_Internal_Shdr *symtab_hdr;
2619 unsigned char esym[sizeof (Elf64_External_Sym)];
2620 Elf_External_Sym_Shndx eshndx;
2621
2622 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
2623 if (bfd_elf_get_elf_syms (abfd, symtab_hdr, 1, r_symndx,
2624 &cache->sym[ent], esym, &eshndx) == NULL)
2625 return NULL;
2626
2627 if (cache->abfd != abfd)
2628 {
2629 memset (cache->indx, -1, sizeof (cache->indx));
2630 cache->abfd = abfd;
2631 }
2632 cache->indx[ent] = r_symndx;
2633 }
2634
2635 return &cache->sym[ent];
2636 }
2637
2638 /* Given an ELF section number, retrieve the corresponding BFD
2639 section. */
2640
2641 asection *
2642 bfd_section_from_elf_index (bfd *abfd, unsigned int sec_index)
2643 {
2644 if (sec_index >= elf_numsections (abfd))
2645 return NULL;
2646 return elf_elfsections (abfd)[sec_index]->bfd_section;
2647 }
2648
2649 static const struct bfd_elf_special_section special_sections_b[] =
2650 {
2651 { STRING_COMMA_LEN (".bss"), -2, SHT_NOBITS, SHF_ALLOC + SHF_WRITE },
2652 { NULL, 0, 0, 0, 0 }
2653 };
2654
2655 static const struct bfd_elf_special_section special_sections_c[] =
2656 {
2657 { STRING_COMMA_LEN (".comment"), 0, SHT_PROGBITS, 0 },
2658 { STRING_COMMA_LEN (".ctf"), 0, SHT_PROGBITS, 0 },
2659 { NULL, 0, 0, 0, 0 }
2660 };
2661
2662 static const struct bfd_elf_special_section special_sections_d[] =
2663 {
2664 { STRING_COMMA_LEN (".data"), -2, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
2665 { STRING_COMMA_LEN (".data1"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
2666 /* There are more DWARF sections than these, but they needn't be added here
2667 unless you have to cope with broken compilers that don't emit section
2668 attributes or you want to help the user writing assembler. */
2669 { STRING_COMMA_LEN (".debug"), 0, SHT_PROGBITS, 0 },
2670 { STRING_COMMA_LEN (".debug_line"), 0, SHT_PROGBITS, 0 },
2671 { STRING_COMMA_LEN (".debug_info"), 0, SHT_PROGBITS, 0 },
2672 { STRING_COMMA_LEN (".debug_abbrev"), 0, SHT_PROGBITS, 0 },
2673 { STRING_COMMA_LEN (".debug_aranges"), 0, SHT_PROGBITS, 0 },
2674 { STRING_COMMA_LEN (".dynamic"), 0, SHT_DYNAMIC, SHF_ALLOC },
2675 { STRING_COMMA_LEN (".dynstr"), 0, SHT_STRTAB, SHF_ALLOC },
2676 { STRING_COMMA_LEN (".dynsym"), 0, SHT_DYNSYM, SHF_ALLOC },
2677 { NULL, 0, 0, 0, 0 }
2678 };
2679
2680 static const struct bfd_elf_special_section special_sections_f[] =
2681 {
2682 { STRING_COMMA_LEN (".fini"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_EXECINSTR },
2683 { STRING_COMMA_LEN (".fini_array"), -2, SHT_FINI_ARRAY, SHF_ALLOC + SHF_WRITE },
2684 { NULL, 0 , 0, 0, 0 }
2685 };
2686
2687 static const struct bfd_elf_special_section special_sections_g[] =
2688 {
2689 { STRING_COMMA_LEN (".gnu.linkonce.b"), -2, SHT_NOBITS, SHF_ALLOC + SHF_WRITE },
2690 { STRING_COMMA_LEN (".gnu.linkonce.n"), -2, SHT_NOBITS, SHF_ALLOC + SHF_WRITE },
2691 { STRING_COMMA_LEN (".gnu.linkonce.p"), -2, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
2692 { STRING_COMMA_LEN (".gnu.lto_"), -1, SHT_PROGBITS, SHF_EXCLUDE },
2693 { STRING_COMMA_LEN (".got"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
2694 { STRING_COMMA_LEN (".gnu.version"), 0, SHT_GNU_versym, 0 },
2695 { STRING_COMMA_LEN (".gnu.version_d"), 0, SHT_GNU_verdef, 0 },
2696 { STRING_COMMA_LEN (".gnu.version_r"), 0, SHT_GNU_verneed, 0 },
2697 { STRING_COMMA_LEN (".gnu.liblist"), 0, SHT_GNU_LIBLIST, SHF_ALLOC },
2698 { STRING_COMMA_LEN (".gnu.conflict"), 0, SHT_RELA, SHF_ALLOC },
2699 { STRING_COMMA_LEN (".gnu.hash"), 0, SHT_GNU_HASH, SHF_ALLOC },
2700 { NULL, 0, 0, 0, 0 }
2701 };
2702
2703 static const struct bfd_elf_special_section special_sections_h[] =
2704 {
2705 { STRING_COMMA_LEN (".hash"), 0, SHT_HASH, SHF_ALLOC },
2706 { NULL, 0, 0, 0, 0 }
2707 };
2708
2709 static const struct bfd_elf_special_section special_sections_i[] =
2710 {
2711 { STRING_COMMA_LEN (".init"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_EXECINSTR },
2712 { STRING_COMMA_LEN (".init_array"), -2, SHT_INIT_ARRAY, SHF_ALLOC + SHF_WRITE },
2713 { STRING_COMMA_LEN (".interp"), 0, SHT_PROGBITS, 0 },
2714 { NULL, 0, 0, 0, 0 }
2715 };
2716
2717 static const struct bfd_elf_special_section special_sections_l[] =
2718 {
2719 { STRING_COMMA_LEN (".line"), 0, SHT_PROGBITS, 0 },
2720 { NULL, 0, 0, 0, 0 }
2721 };
2722
2723 static const struct bfd_elf_special_section special_sections_n[] =
2724 {
2725 { STRING_COMMA_LEN (".noinit"), -2, SHT_NOBITS, SHF_ALLOC + SHF_WRITE },
2726 { STRING_COMMA_LEN (".note.GNU-stack"), 0, SHT_PROGBITS, 0 },
2727 { STRING_COMMA_LEN (".note"), -1, SHT_NOTE, 0 },
2728 { NULL, 0, 0, 0, 0 }
2729 };
2730
2731 static const struct bfd_elf_special_section special_sections_p[] =
2732 {
2733 { STRING_COMMA_LEN (".persistent.bss"), 0, SHT_NOBITS, SHF_ALLOC + SHF_WRITE },
2734 { STRING_COMMA_LEN (".persistent"), -2, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
2735 { STRING_COMMA_LEN (".preinit_array"), -2, SHT_PREINIT_ARRAY, SHF_ALLOC + SHF_WRITE },
2736 { STRING_COMMA_LEN (".plt"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_EXECINSTR },
2737 { NULL, 0, 0, 0, 0 }
2738 };
2739
2740 static const struct bfd_elf_special_section special_sections_r[] =
2741 {
2742 { STRING_COMMA_LEN (".rodata"), -2, SHT_PROGBITS, SHF_ALLOC },
2743 { STRING_COMMA_LEN (".rodata1"), 0, SHT_PROGBITS, SHF_ALLOC },
2744 { STRING_COMMA_LEN (".rela"), -1, SHT_RELA, 0 },
2745 { STRING_COMMA_LEN (".rel"), -1, SHT_REL, 0 },
2746 { NULL, 0, 0, 0, 0 }
2747 };
2748
2749 static const struct bfd_elf_special_section special_sections_s[] =
2750 {
2751 { STRING_COMMA_LEN (".shstrtab"), 0, SHT_STRTAB, 0 },
2752 { STRING_COMMA_LEN (".strtab"), 0, SHT_STRTAB, 0 },
2753 { STRING_COMMA_LEN (".symtab"), 0, SHT_SYMTAB, 0 },
2754 /* See struct bfd_elf_special_section declaration for the semantics of
2755 this special case where .prefix_length != strlen (.prefix). */
2756 { ".stabstr", 5, 3, SHT_STRTAB, 0 },
2757 { NULL, 0, 0, 0, 0 }
2758 };
2759
2760 static const struct bfd_elf_special_section special_sections_t[] =
2761 {
2762 { STRING_COMMA_LEN (".text"), -2, SHT_PROGBITS, SHF_ALLOC + SHF_EXECINSTR },
2763 { STRING_COMMA_LEN (".tbss"), -2, SHT_NOBITS, SHF_ALLOC + SHF_WRITE + SHF_TLS },
2764 { STRING_COMMA_LEN (".tdata"), -2, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE + SHF_TLS },
2765 { NULL, 0, 0, 0, 0 }
2766 };
2767
2768 static const struct bfd_elf_special_section special_sections_z[] =
2769 {
2770 { STRING_COMMA_LEN (".zdebug_line"), 0, SHT_PROGBITS, 0 },
2771 { STRING_COMMA_LEN (".zdebug_info"), 0, SHT_PROGBITS, 0 },
2772 { STRING_COMMA_LEN (".zdebug_abbrev"), 0, SHT_PROGBITS, 0 },
2773 { STRING_COMMA_LEN (".zdebug_aranges"), 0, SHT_PROGBITS, 0 },
2774 { NULL, 0, 0, 0, 0 }
2775 };
2776
2777 static const struct bfd_elf_special_section * const special_sections[] =
2778 {
2779 special_sections_b, /* 'b' */
2780 special_sections_c, /* 'c' */
2781 special_sections_d, /* 'd' */
2782 NULL, /* 'e' */
2783 special_sections_f, /* 'f' */
2784 special_sections_g, /* 'g' */
2785 special_sections_h, /* 'h' */
2786 special_sections_i, /* 'i' */
2787 NULL, /* 'j' */
2788 NULL, /* 'k' */
2789 special_sections_l, /* 'l' */
2790 NULL, /* 'm' */
2791 special_sections_n, /* 'n' */
2792 NULL, /* 'o' */
2793 special_sections_p, /* 'p' */
2794 NULL, /* 'q' */
2795 special_sections_r, /* 'r' */
2796 special_sections_s, /* 's' */
2797 special_sections_t, /* 't' */
2798 NULL, /* 'u' */
2799 NULL, /* 'v' */
2800 NULL, /* 'w' */
2801 NULL, /* 'x' */
2802 NULL, /* 'y' */
2803 special_sections_z /* 'z' */
2804 };
2805
2806 const struct bfd_elf_special_section *
2807 _bfd_elf_get_special_section (const char *name,
2808 const struct bfd_elf_special_section *spec,
2809 unsigned int rela)
2810 {
2811 int i;
2812 int len;
2813
2814 len = strlen (name);
2815
2816 for (i = 0; spec[i].prefix != NULL; i++)
2817 {
2818 int suffix_len;
2819 int prefix_len = spec[i].prefix_length;
2820
2821 if (len < prefix_len)
2822 continue;
2823 if (memcmp (name, spec[i].prefix, prefix_len) != 0)
2824 continue;
2825
2826 suffix_len = spec[i].suffix_length;
2827 if (suffix_len <= 0)
2828 {
2829 if (name[prefix_len] != 0)
2830 {
2831 if (suffix_len == 0)
2832 continue;
2833 if (name[prefix_len] != '.'
2834 && (suffix_len == -2
2835 || (rela && spec[i].type == SHT_REL)))
2836 continue;
2837 }
2838 }
2839 else
2840 {
2841 if (len < prefix_len + suffix_len)
2842 continue;
2843 if (memcmp (name + len - suffix_len,
2844 spec[i].prefix + prefix_len,
2845 suffix_len) != 0)
2846 continue;
2847 }
2848 return &spec[i];
2849 }
2850
2851 return NULL;
2852 }
2853
2854 const struct bfd_elf_special_section *
2855 _bfd_elf_get_sec_type_attr (bfd *abfd, asection *sec)
2856 {
2857 int i;
2858 const struct bfd_elf_special_section *spec;
2859 const struct elf_backend_data *bed;
2860
2861 /* See if this is one of the special sections. */
2862 if (sec->name == NULL)
2863 return NULL;
2864
2865 bed = get_elf_backend_data (abfd);
2866 spec = bed->special_sections;
2867 if (spec)
2868 {
2869 spec = _bfd_elf_get_special_section (sec->name,
2870 bed->special_sections,
2871 sec->use_rela_p);
2872 if (spec != NULL)
2873 return spec;
2874 }
2875
2876 if (sec->name[0] != '.')
2877 return NULL;
2878
2879 i = sec->name[1] - 'b';
2880 if (i < 0 || i > 'z' - 'b')
2881 return NULL;
2882
2883 spec = special_sections[i];
2884
2885 if (spec == NULL)
2886 return NULL;
2887
2888 return _bfd_elf_get_special_section (sec->name, spec, sec->use_rela_p);
2889 }
2890
2891 bool
2892 _bfd_elf_new_section_hook (bfd *abfd, asection *sec)
2893 {
2894 struct bfd_elf_section_data *sdata;
2895 const struct elf_backend_data *bed;
2896 const struct bfd_elf_special_section *ssect;
2897
2898 sdata = (struct bfd_elf_section_data *) sec->used_by_bfd;
2899 if (sdata == NULL)
2900 {
2901 sdata = (struct bfd_elf_section_data *) bfd_zalloc (abfd,
2902 sizeof (*sdata));
2903 if (sdata == NULL)
2904 return false;
2905 sec->used_by_bfd = sdata;
2906 }
2907
2908 /* Indicate whether or not this section should use RELA relocations. */
2909 bed = get_elf_backend_data (abfd);
2910 sec->use_rela_p = bed->default_use_rela_p;
2911
2912 /* Set up ELF section type and flags for newly created sections, if
2913 there is an ABI mandated section. */
2914 ssect = (*bed->get_sec_type_attr) (abfd, sec);
2915 if (ssect != NULL)
2916 {
2917 elf_section_type (sec) = ssect->type;
2918 elf_section_flags (sec) = ssect->attr;
2919 }
2920
2921 return _bfd_generic_new_section_hook (abfd, sec);
2922 }
2923
2924 /* Create a new bfd section from an ELF program header.
2925
2926 Since program segments have no names, we generate a synthetic name
2927 of the form segment<NUM>, where NUM is generally the index in the
2928 program header table. For segments that are split (see below) we
2929 generate the names segment<NUM>a and segment<NUM>b.
2930
2931 Note that some program segments may have a file size that is different than
2932 (less than) the memory size. All this means is that at execution the
2933 system must allocate the amount of memory specified by the memory size,
2934 but only initialize it with the first "file size" bytes read from the
2935 file. This would occur for example, with program segments consisting
2936 of combined data+bss.
2937
2938 To handle the above situation, this routine generates TWO bfd sections
2939 for the single program segment. The first has the length specified by
2940 the file size of the segment, and the second has the length specified
2941 by the difference between the two sizes. In effect, the segment is split
2942 into its initialized and uninitialized parts.
2943
2944 */
2945
2946 bool
2947 _bfd_elf_make_section_from_phdr (bfd *abfd,
2948 Elf_Internal_Phdr *hdr,
2949 int hdr_index,
2950 const char *type_name)
2951 {
2952 asection *newsect;
2953 char *name;
2954 char namebuf[64];
2955 size_t len;
2956 int split;
2957 unsigned int opb = bfd_octets_per_byte (abfd, NULL);
2958
2959 split = ((hdr->p_memsz > 0)
2960 && (hdr->p_filesz > 0)
2961 && (hdr->p_memsz > hdr->p_filesz));
2962
2963 if (hdr->p_filesz > 0)
2964 {
2965 sprintf (namebuf, "%s%d%s", type_name, hdr_index, split ? "a" : "");
2966 len = strlen (namebuf) + 1;
2967 name = (char *) bfd_alloc (abfd, len);
2968 if (!name)
2969 return false;
2970 memcpy (name, namebuf, len);
2971 newsect = bfd_make_section (abfd, name);
2972 if (newsect == NULL)
2973 return false;
2974 newsect->vma = hdr->p_vaddr / opb;
2975 newsect->lma = hdr->p_paddr / opb;
2976 newsect->size = hdr->p_filesz;
2977 newsect->filepos = hdr->p_offset;
2978 newsect->flags |= SEC_HAS_CONTENTS;
2979 newsect->alignment_power = bfd_log2 (hdr->p_align);
2980 if (hdr->p_type == PT_LOAD)
2981 {
2982 newsect->flags |= SEC_ALLOC;
2983 newsect->flags |= SEC_LOAD;
2984 if (hdr->p_flags & PF_X)
2985 {
2986 /* FIXME: all we known is that it has execute PERMISSION,
2987 may be data. */
2988 newsect->flags |= SEC_CODE;
2989 }
2990 }
2991 if (!(hdr->p_flags & PF_W))
2992 {
2993 newsect->flags |= SEC_READONLY;
2994 }
2995 }
2996
2997 if (hdr->p_memsz > hdr->p_filesz)
2998 {
2999 bfd_vma align;
3000
3001 sprintf (namebuf, "%s%d%s", type_name, hdr_index, split ? "b" : "");
3002 len = strlen (namebuf) + 1;
3003 name = (char *) bfd_alloc (abfd, len);
3004 if (!name)
3005 return false;
3006 memcpy (name, namebuf, len);
3007 newsect = bfd_make_section (abfd, name);
3008 if (newsect == NULL)
3009 return false;
3010 newsect->vma = (hdr->p_vaddr + hdr->p_filesz) / opb;
3011 newsect->lma = (hdr->p_paddr + hdr->p_filesz) / opb;
3012 newsect->size = hdr->p_memsz - hdr->p_filesz;
3013 newsect->filepos = hdr->p_offset + hdr->p_filesz;
3014 align = newsect->vma & -newsect->vma;
3015 if (align == 0 || align > hdr->p_align)
3016 align = hdr->p_align;
3017 newsect->alignment_power = bfd_log2 (align);
3018 if (hdr->p_type == PT_LOAD)
3019 {
3020 newsect->flags |= SEC_ALLOC;
3021 if (hdr->p_flags & PF_X)
3022 newsect->flags |= SEC_CODE;
3023 }
3024 if (!(hdr->p_flags & PF_W))
3025 newsect->flags |= SEC_READONLY;
3026 }
3027
3028 return true;
3029 }
3030
3031 static bool
3032 _bfd_elf_core_find_build_id (bfd *templ, bfd_vma offset)
3033 {
3034 /* The return value is ignored. Build-ids are considered optional. */
3035 if (templ->xvec->flavour == bfd_target_elf_flavour)
3036 return (*get_elf_backend_data (templ)->elf_backend_core_find_build_id)
3037 (templ, offset);
3038 return false;
3039 }
3040
3041 bool
3042 bfd_section_from_phdr (bfd *abfd, Elf_Internal_Phdr *hdr, int hdr_index)
3043 {
3044 const struct elf_backend_data *bed;
3045
3046 switch (hdr->p_type)
3047 {
3048 case PT_NULL:
3049 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "null");
3050
3051 case PT_LOAD:
3052 if (! _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "load"))
3053 return false;
3054 if (bfd_get_format (abfd) == bfd_core && abfd->build_id == NULL)
3055 _bfd_elf_core_find_build_id (abfd, hdr->p_offset);
3056 return true;
3057
3058 case PT_DYNAMIC:
3059 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "dynamic");
3060
3061 case PT_INTERP:
3062 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "interp");
3063
3064 case PT_NOTE:
3065 if (! _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "note"))
3066 return false;
3067 if (! elf_read_notes (abfd, hdr->p_offset, hdr->p_filesz,
3068 hdr->p_align))
3069 return false;
3070 return true;
3071
3072 case PT_SHLIB:
3073 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "shlib");
3074
3075 case PT_PHDR:
3076 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "phdr");
3077
3078 case PT_GNU_EH_FRAME:
3079 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index,
3080 "eh_frame_hdr");
3081
3082 case PT_GNU_STACK:
3083 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "stack");
3084
3085 case PT_GNU_RELRO:
3086 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "relro");
3087
3088 default:
3089 /* Check for any processor-specific program segment types. */
3090 bed = get_elf_backend_data (abfd);
3091 return bed->elf_backend_section_from_phdr (abfd, hdr, hdr_index, "proc");
3092 }
3093 }
3094
3095 /* Return the REL_HDR for SEC, assuming there is only a single one, either
3096 REL or RELA. */
3097
3098 Elf_Internal_Shdr *
3099 _bfd_elf_single_rel_hdr (asection *sec)
3100 {
3101 if (elf_section_data (sec)->rel.hdr)
3102 {
3103 BFD_ASSERT (elf_section_data (sec)->rela.hdr == NULL);
3104 return elf_section_data (sec)->rel.hdr;
3105 }
3106 else
3107 return elf_section_data (sec)->rela.hdr;
3108 }
3109
3110 static bool
3111 _bfd_elf_set_reloc_sh_name (bfd *abfd,
3112 Elf_Internal_Shdr *rel_hdr,
3113 const char *sec_name,
3114 bool use_rela_p)
3115 {
3116 char *name = (char *) bfd_alloc (abfd,
3117 sizeof ".rela" + strlen (sec_name));
3118 if (name == NULL)
3119 return false;
3120
3121 sprintf (name, "%s%s", use_rela_p ? ".rela" : ".rel", sec_name);
3122 rel_hdr->sh_name =
3123 (unsigned int) _bfd_elf_strtab_add (elf_shstrtab (abfd), name,
3124 false);
3125 if (rel_hdr->sh_name == (unsigned int) -1)
3126 return false;
3127
3128 return true;
3129 }
3130
3131 /* Allocate and initialize a section-header for a new reloc section,
3132 containing relocations against ASECT. It is stored in RELDATA. If
3133 USE_RELA_P is TRUE, we use RELA relocations; otherwise, we use REL
3134 relocations. */
3135
3136 static bool
3137 _bfd_elf_init_reloc_shdr (bfd *abfd,
3138 struct bfd_elf_section_reloc_data *reldata,
3139 const char *sec_name,
3140 bool use_rela_p,
3141 bool delay_st_name_p)
3142 {
3143 Elf_Internal_Shdr *rel_hdr;
3144 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
3145
3146 BFD_ASSERT (reldata->hdr == NULL);
3147 rel_hdr = bfd_zalloc (abfd, sizeof (*rel_hdr));
3148 reldata->hdr = rel_hdr;
3149
3150 if (delay_st_name_p)
3151 rel_hdr->sh_name = (unsigned int) -1;
3152 else if (!_bfd_elf_set_reloc_sh_name (abfd, rel_hdr, sec_name,
3153 use_rela_p))
3154 return false;
3155 rel_hdr->sh_type = use_rela_p ? SHT_RELA : SHT_REL;
3156 rel_hdr->sh_entsize = (use_rela_p
3157 ? bed->s->sizeof_rela
3158 : bed->s->sizeof_rel);
3159 rel_hdr->sh_addralign = (bfd_vma) 1 << bed->s->log_file_align;
3160 rel_hdr->sh_flags = 0;
3161 rel_hdr->sh_addr = 0;
3162 rel_hdr->sh_size = 0;
3163 rel_hdr->sh_offset = 0;
3164
3165 return true;
3166 }
3167
3168 /* Return the default section type based on the passed in section flags. */
3169
3170 int
3171 bfd_elf_get_default_section_type (flagword flags)
3172 {
3173 if ((flags & (SEC_ALLOC | SEC_IS_COMMON)) != 0
3174 && (flags & (SEC_LOAD | SEC_HAS_CONTENTS)) == 0)
3175 return SHT_NOBITS;
3176 return SHT_PROGBITS;
3177 }
3178
3179 struct fake_section_arg
3180 {
3181 struct bfd_link_info *link_info;
3182 bool failed;
3183 };
3184
3185 /* Set up an ELF internal section header for a section. */
3186
3187 static void
3188 elf_fake_sections (bfd *abfd, asection *asect, void *fsarg)
3189 {
3190 struct fake_section_arg *arg = (struct fake_section_arg *)fsarg;
3191 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
3192 struct bfd_elf_section_data *esd = elf_section_data (asect);
3193 Elf_Internal_Shdr *this_hdr;
3194 unsigned int sh_type;
3195 const char *name = asect->name;
3196 bool delay_st_name_p = false;
3197 bfd_vma mask;
3198
3199 if (arg->failed)
3200 {
3201 /* We already failed; just get out of the bfd_map_over_sections
3202 loop. */
3203 return;
3204 }
3205
3206 this_hdr = &esd->this_hdr;
3207
3208 if (arg->link_info)
3209 {
3210 /* ld: compress DWARF debug sections with names: .debug_*. */
3211 if ((arg->link_info->compress_debug & COMPRESS_DEBUG)
3212 && (asect->flags & SEC_DEBUGGING)
3213 && name[1] == 'd'
3214 && name[6] == '_')
3215 {
3216 /* Set SEC_ELF_COMPRESS to indicate this section should be
3217 compressed. */
3218 asect->flags |= SEC_ELF_COMPRESS;
3219 /* If this section will be compressed, delay adding section
3220 name to section name section after it is compressed in
3221 _bfd_elf_assign_file_positions_for_non_load. */
3222 delay_st_name_p = true;
3223 }
3224 }
3225 else if ((asect->flags & SEC_ELF_RENAME))
3226 {
3227 /* objcopy: rename output DWARF debug section. */
3228 if ((abfd->flags & (BFD_DECOMPRESS | BFD_COMPRESS_GABI)))
3229 {
3230 /* When we decompress or compress with SHF_COMPRESSED,
3231 convert section name from .zdebug_* to .debug_* if
3232 needed. */
3233 if (name[1] == 'z')
3234 {
3235 char *new_name = convert_zdebug_to_debug (abfd, name);
3236 if (new_name == NULL)
3237 {
3238 arg->failed = true;
3239 return;
3240 }
3241 name = new_name;
3242 }
3243 }
3244 else if (asect->compress_status == COMPRESS_SECTION_DONE)
3245 {
3246 /* PR binutils/18087: Compression does not always make a
3247 section smaller. So only rename the section when
3248 compression has actually taken place. If input section
3249 name is .zdebug_*, we should never compress it again. */
3250 char *new_name = convert_debug_to_zdebug (abfd, name);
3251 if (new_name == NULL)
3252 {
3253 arg->failed = true;
3254 return;
3255 }
3256 BFD_ASSERT (name[1] != 'z');
3257 name = new_name;
3258 }
3259 }
3260
3261 if (delay_st_name_p)
3262 this_hdr->sh_name = (unsigned int) -1;
3263 else
3264 {
3265 this_hdr->sh_name
3266 = (unsigned int) _bfd_elf_strtab_add (elf_shstrtab (abfd),
3267 name, false);
3268 if (this_hdr->sh_name == (unsigned int) -1)
3269 {
3270 arg->failed = true;
3271 return;
3272 }
3273 }
3274
3275 /* Don't clear sh_flags. Assembler may set additional bits. */
3276
3277 if ((asect->flags & SEC_ALLOC) != 0
3278 || asect->user_set_vma)
3279 this_hdr->sh_addr = asect->vma * bfd_octets_per_byte (abfd, asect);
3280 else
3281 this_hdr->sh_addr = 0;
3282
3283 this_hdr->sh_offset = 0;
3284 this_hdr->sh_size = asect->size;
3285 this_hdr->sh_link = 0;
3286 /* PR 17512: file: 0eb809fe, 8b0535ee. */
3287 if (asect->alignment_power >= (sizeof (bfd_vma) * 8) - 1)
3288 {
3289 _bfd_error_handler
3290 /* xgettext:c-format */
3291 (_("%pB: error: alignment power %d of section `%pA' is too big"),
3292 abfd, asect->alignment_power, asect);
3293 arg->failed = true;
3294 return;
3295 }
3296 /* Set sh_addralign to the highest power of two given by alignment
3297 consistent with the section VMA. Linker scripts can force VMA. */
3298 mask = ((bfd_vma) 1 << asect->alignment_power) | this_hdr->sh_addr;
3299 this_hdr->sh_addralign = mask & -mask;
3300 /* The sh_entsize and sh_info fields may have been set already by
3301 copy_private_section_data. */
3302
3303 this_hdr->bfd_section = asect;
3304 this_hdr->contents = NULL;
3305
3306 /* If the section type is unspecified, we set it based on
3307 asect->flags. */
3308 if ((asect->flags & SEC_GROUP) != 0)
3309 sh_type = SHT_GROUP;
3310 else
3311 sh_type = bfd_elf_get_default_section_type (asect->flags);
3312
3313 if (this_hdr->sh_type == SHT_NULL)
3314 this_hdr->sh_type = sh_type;
3315 else if (this_hdr->sh_type == SHT_NOBITS
3316 && sh_type == SHT_PROGBITS
3317 && (asect->flags & SEC_ALLOC) != 0)
3318 {
3319 /* Warn if we are changing a NOBITS section to PROGBITS, but
3320 allow the link to proceed. This can happen when users link
3321 non-bss input sections to bss output sections, or emit data
3322 to a bss output section via a linker script. */
3323 _bfd_error_handler
3324 (_("warning: section `%pA' type changed to PROGBITS"), asect);
3325 this_hdr->sh_type = sh_type;
3326 }
3327
3328 switch (this_hdr->sh_type)
3329 {
3330 default:
3331 break;
3332
3333 case SHT_STRTAB:
3334 case SHT_NOTE:
3335 case SHT_NOBITS:
3336 case SHT_PROGBITS:
3337 break;
3338
3339 case SHT_INIT_ARRAY:
3340 case SHT_FINI_ARRAY:
3341 case SHT_PREINIT_ARRAY:
3342 this_hdr->sh_entsize = bed->s->arch_size / 8;
3343 break;
3344
3345 case SHT_HASH:
3346 this_hdr->sh_entsize = bed->s->sizeof_hash_entry;
3347 break;
3348
3349 case SHT_DYNSYM:
3350 this_hdr->sh_entsize = bed->s->sizeof_sym;
3351 break;
3352
3353 case SHT_DYNAMIC:
3354 this_hdr->sh_entsize = bed->s->sizeof_dyn;
3355 break;
3356
3357 case SHT_RELA:
3358 if (get_elf_backend_data (abfd)->may_use_rela_p)
3359 this_hdr->sh_entsize = bed->s->sizeof_rela;
3360 break;
3361
3362 case SHT_REL:
3363 if (get_elf_backend_data (abfd)->may_use_rel_p)
3364 this_hdr->sh_entsize = bed->s->sizeof_rel;
3365 break;
3366
3367 case SHT_GNU_versym:
3368 this_hdr->sh_entsize = sizeof (Elf_External_Versym);
3369 break;
3370
3371 case SHT_GNU_verdef:
3372 this_hdr->sh_entsize = 0;
3373 /* objcopy or strip will copy over sh_info, but may not set
3374 cverdefs. The linker will set cverdefs, but sh_info will be
3375 zero. */
3376 if (this_hdr->sh_info == 0)
3377 this_hdr->sh_info = elf_tdata (abfd)->cverdefs;
3378 else
3379 BFD_ASSERT (elf_tdata (abfd)->cverdefs == 0
3380 || this_hdr->sh_info == elf_tdata (abfd)->cverdefs);
3381 break;
3382
3383 case SHT_GNU_verneed:
3384 this_hdr->sh_entsize = 0;
3385 /* objcopy or strip will copy over sh_info, but may not set
3386 cverrefs. The linker will set cverrefs, but sh_info will be
3387 zero. */
3388 if (this_hdr->sh_info == 0)
3389 this_hdr->sh_info = elf_tdata (abfd)->cverrefs;
3390 else
3391 BFD_ASSERT (elf_tdata (abfd)->cverrefs == 0
3392 || this_hdr->sh_info == elf_tdata (abfd)->cverrefs);
3393 break;
3394
3395 case SHT_GROUP:
3396 this_hdr->sh_entsize = GRP_ENTRY_SIZE;
3397 break;
3398
3399 case SHT_GNU_HASH:
3400 this_hdr->sh_entsize = bed->s->arch_size == 64 ? 0 : 4;
3401 break;
3402 }
3403
3404 if ((asect->flags & SEC_ALLOC) != 0)
3405 this_hdr->sh_flags |= SHF_ALLOC;
3406 if ((asect->flags & SEC_READONLY) == 0)
3407 this_hdr->sh_flags |= SHF_WRITE;
3408 if ((asect->flags & SEC_CODE) != 0)
3409 this_hdr->sh_flags |= SHF_EXECINSTR;
3410 if ((asect->flags & SEC_MERGE) != 0)
3411 {
3412 this_hdr->sh_flags |= SHF_MERGE;
3413 this_hdr->sh_entsize = asect->entsize;
3414 }
3415 if ((asect->flags & SEC_STRINGS) != 0)
3416 this_hdr->sh_flags |= SHF_STRINGS;
3417 if ((asect->flags & SEC_GROUP) == 0 && elf_group_name (asect) != NULL)
3418 this_hdr->sh_flags |= SHF_GROUP;
3419 if ((asect->flags & SEC_THREAD_LOCAL) != 0)
3420 {
3421 this_hdr->sh_flags |= SHF_TLS;
3422 if (asect->size == 0
3423 && (asect->flags & SEC_HAS_CONTENTS) == 0)
3424 {
3425 struct bfd_link_order *o = asect->map_tail.link_order;
3426
3427 this_hdr->sh_size = 0;
3428 if (o != NULL)
3429 {
3430 this_hdr->sh_size = o->offset + o->size;
3431 if (this_hdr->sh_size != 0)
3432 this_hdr->sh_type = SHT_NOBITS;
3433 }
3434 }
3435 }
3436 if ((asect->flags & (SEC_GROUP | SEC_EXCLUDE)) == SEC_EXCLUDE)
3437 this_hdr->sh_flags |= SHF_EXCLUDE;
3438
3439 /* If the section has relocs, set up a section header for the
3440 SHT_REL[A] section. If two relocation sections are required for
3441 this section, it is up to the processor-specific back-end to
3442 create the other. */
3443 if ((asect->flags & SEC_RELOC) != 0)
3444 {
3445 /* When doing a relocatable link, create both REL and RELA sections if
3446 needed. */
3447 if (arg->link_info
3448 /* Do the normal setup if we wouldn't create any sections here. */
3449 && esd->rel.count + esd->rela.count > 0
3450 && (bfd_link_relocatable (arg->link_info)
3451 || arg->link_info->emitrelocations))
3452 {
3453 if (esd->rel.count && esd->rel.hdr == NULL
3454 && !_bfd_elf_init_reloc_shdr (abfd, &esd->rel, name,
3455 false, delay_st_name_p))
3456 {
3457 arg->failed = true;
3458 return;
3459 }
3460 if (esd->rela.count && esd->rela.hdr == NULL
3461 && !_bfd_elf_init_reloc_shdr (abfd, &esd->rela, name,
3462 true, delay_st_name_p))
3463 {
3464 arg->failed = true;
3465 return;
3466 }
3467 }
3468 else if (!_bfd_elf_init_reloc_shdr (abfd,
3469 (asect->use_rela_p
3470 ? &esd->rela : &esd->rel),
3471 name,
3472 asect->use_rela_p,
3473 delay_st_name_p))
3474 {
3475 arg->failed = true;
3476 return;
3477 }
3478 }
3479
3480 /* Check for processor-specific section types. */
3481 sh_type = this_hdr->sh_type;
3482 if (bed->elf_backend_fake_sections
3483 && !(*bed->elf_backend_fake_sections) (abfd, this_hdr, asect))
3484 {
3485 arg->failed = true;
3486 return;
3487 }
3488
3489 if (sh_type == SHT_NOBITS && asect->size != 0)
3490 {
3491 /* Don't change the header type from NOBITS if we are being
3492 called for objcopy --only-keep-debug. */
3493 this_hdr->sh_type = sh_type;
3494 }
3495 }
3496
3497 /* Fill in the contents of a SHT_GROUP section. Called from
3498 _bfd_elf_compute_section_file_positions for gas, objcopy, and
3499 when ELF targets use the generic linker, ld. Called for ld -r
3500 from bfd_elf_final_link. */
3501
3502 void
3503 bfd_elf_set_group_contents (bfd *abfd, asection *sec, void *failedptrarg)
3504 {
3505 bool *failedptr = (bool *) failedptrarg;
3506 asection *elt, *first;
3507 unsigned char *loc;
3508 bool gas;
3509
3510 /* Ignore linker created group section. See elfNN_ia64_object_p in
3511 elfxx-ia64.c. */
3512 if ((sec->flags & (SEC_GROUP | SEC_LINKER_CREATED)) != SEC_GROUP
3513 || sec->size == 0
3514 || *failedptr)
3515 return;
3516
3517 if (elf_section_data (sec)->this_hdr.sh_info == 0)
3518 {
3519 unsigned long symindx = 0;
3520
3521 /* elf_group_id will have been set up by objcopy and the
3522 generic linker. */
3523 if (elf_group_id (sec) != NULL)
3524 symindx = elf_group_id (sec)->udata.i;
3525
3526 if (symindx == 0)
3527 {
3528 /* If called from the assembler, swap_out_syms will have set up
3529 elf_section_syms.
3530 PR 25699: A corrupt input file could contain bogus group info. */
3531 if (elf_section_syms (abfd) == NULL)
3532 {
3533 *failedptr = true;
3534 return;
3535 }
3536 symindx = elf_section_syms (abfd)[sec->index]->udata.i;
3537 }
3538 elf_section_data (sec)->this_hdr.sh_info = symindx;
3539 }
3540 else if (elf_section_data (sec)->this_hdr.sh_info == (unsigned int) -2)
3541 {
3542 /* The ELF backend linker sets sh_info to -2 when the group
3543 signature symbol is global, and thus the index can't be
3544 set until all local symbols are output. */
3545 asection *igroup;
3546 struct bfd_elf_section_data *sec_data;
3547 unsigned long symndx;
3548 unsigned long extsymoff;
3549 struct elf_link_hash_entry *h;
3550
3551 /* The point of this little dance to the first SHF_GROUP section
3552 then back to the SHT_GROUP section is that this gets us to
3553 the SHT_GROUP in the input object. */
3554 igroup = elf_sec_group (elf_next_in_group (sec));
3555 sec_data = elf_section_data (igroup);
3556 symndx = sec_data->this_hdr.sh_info;
3557 extsymoff = 0;
3558 if (!elf_bad_symtab (igroup->owner))
3559 {
3560 Elf_Internal_Shdr *symtab_hdr;
3561
3562 symtab_hdr = &elf_tdata (igroup->owner)->symtab_hdr;
3563 extsymoff = symtab_hdr->sh_info;
3564 }
3565 h = elf_sym_hashes (igroup->owner)[symndx - extsymoff];
3566 while (h->root.type == bfd_link_hash_indirect
3567 || h->root.type == bfd_link_hash_warning)
3568 h = (struct elf_link_hash_entry *) h->root.u.i.link;
3569
3570 elf_section_data (sec)->this_hdr.sh_info = h->indx;
3571 }
3572
3573 /* The contents won't be allocated for "ld -r" or objcopy. */
3574 gas = true;
3575 if (sec->contents == NULL)
3576 {
3577 gas = false;
3578 sec->contents = (unsigned char *) bfd_alloc (abfd, sec->size);
3579
3580 /* Arrange for the section to be written out. */
3581 elf_section_data (sec)->this_hdr.contents = sec->contents;
3582 if (sec->contents == NULL)
3583 {
3584 *failedptr = true;
3585 return;
3586 }
3587 }
3588
3589 loc = sec->contents + sec->size;
3590
3591 /* Get the pointer to the first section in the group that gas
3592 squirreled away here. objcopy arranges for this to be set to the
3593 start of the input section group. */
3594 first = elt = elf_next_in_group (sec);
3595
3596 /* First element is a flag word. Rest of section is elf section
3597 indices for all the sections of the group. Write them backwards
3598 just to keep the group in the same order as given in .section
3599 directives, not that it matters. */
3600 while (elt != NULL)
3601 {
3602 asection *s;
3603
3604 s = elt;
3605 if (!gas)
3606 s = s->output_section;
3607 if (s != NULL
3608 && !bfd_is_abs_section (s))
3609 {
3610 struct bfd_elf_section_data *elf_sec = elf_section_data (s);
3611 struct bfd_elf_section_data *input_elf_sec = elf_section_data (elt);
3612
3613 if (elf_sec->rel.hdr != NULL
3614 && (gas
3615 || (input_elf_sec->rel.hdr != NULL
3616 && input_elf_sec->rel.hdr->sh_flags & SHF_GROUP) != 0))
3617 {
3618 elf_sec->rel.hdr->sh_flags |= SHF_GROUP;
3619 loc -= 4;
3620 H_PUT_32 (abfd, elf_sec->rel.idx, loc);
3621 }
3622 if (elf_sec->rela.hdr != NULL
3623 && (gas
3624 || (input_elf_sec->rela.hdr != NULL
3625 && input_elf_sec->rela.hdr->sh_flags & SHF_GROUP) != 0))
3626 {
3627 elf_sec->rela.hdr->sh_flags |= SHF_GROUP;
3628 loc -= 4;
3629 H_PUT_32 (abfd, elf_sec->rela.idx, loc);
3630 }
3631 loc -= 4;
3632 H_PUT_32 (abfd, elf_sec->this_idx, loc);
3633 }
3634 elt = elf_next_in_group (elt);
3635 if (elt == first)
3636 break;
3637 }
3638
3639 loc -= 4;
3640 BFD_ASSERT (loc == sec->contents);
3641
3642 H_PUT_32 (abfd, sec->flags & SEC_LINK_ONCE ? GRP_COMDAT : 0, loc);
3643 }
3644
3645 /* Given NAME, the name of a relocation section stripped of its
3646 .rel/.rela prefix, return the section in ABFD to which the
3647 relocations apply. */
3648
3649 asection *
3650 _bfd_elf_plt_get_reloc_section (bfd *abfd, const char *name)
3651 {
3652 /* If a target needs .got.plt section, relocations in rela.plt/rel.plt
3653 section likely apply to .got.plt or .got section. */
3654 if (get_elf_backend_data (abfd)->want_got_plt
3655 && strcmp (name, ".plt") == 0)
3656 {
3657 asection *sec;
3658
3659 name = ".got.plt";
3660 sec = bfd_get_section_by_name (abfd, name);
3661 if (sec != NULL)
3662 return sec;
3663 name = ".got";
3664 }
3665
3666 return bfd_get_section_by_name (abfd, name);
3667 }
3668
3669 /* Return the section to which RELOC_SEC applies. */
3670
3671 static asection *
3672 elf_get_reloc_section (asection *reloc_sec)
3673 {
3674 const char *name;
3675 unsigned int type;
3676 bfd *abfd;
3677 const struct elf_backend_data *bed;
3678
3679 type = elf_section_data (reloc_sec)->this_hdr.sh_type;
3680 if (type != SHT_REL && type != SHT_RELA)
3681 return NULL;
3682
3683 /* We look up the section the relocs apply to by name. */
3684 name = reloc_sec->name;
3685 if (!startswith (name, ".rel"))
3686 return NULL;
3687 name += 4;
3688 if (type == SHT_RELA && *name++ != 'a')
3689 return NULL;
3690
3691 abfd = reloc_sec->owner;
3692 bed = get_elf_backend_data (abfd);
3693 return bed->get_reloc_section (abfd, name);
3694 }
3695
3696 /* Assign all ELF section numbers. The dummy first section is handled here
3697 too. The link/info pointers for the standard section types are filled
3698 in here too, while we're at it. LINK_INFO will be 0 when arriving
3699 here for objcopy, and when using the generic ELF linker. */
3700
3701 static bool
3702 assign_section_numbers (bfd *abfd, struct bfd_link_info *link_info)
3703 {
3704 struct elf_obj_tdata *t = elf_tdata (abfd);
3705 asection *sec;
3706 unsigned int section_number;
3707 Elf_Internal_Shdr **i_shdrp;
3708 struct bfd_elf_section_data *d;
3709 bool need_symtab;
3710 size_t amt;
3711
3712 section_number = 1;
3713
3714 _bfd_elf_strtab_clear_all_refs (elf_shstrtab (abfd));
3715
3716 /* SHT_GROUP sections are in relocatable files only. */
3717 if (link_info == NULL || !link_info->resolve_section_groups)
3718 {
3719 size_t reloc_count = 0;
3720
3721 /* Put SHT_GROUP sections first. */
3722 for (sec = abfd->sections; sec != NULL; sec = sec->next)
3723 {
3724 d = elf_section_data (sec);
3725
3726 if (d->this_hdr.sh_type == SHT_GROUP)
3727 {
3728 if (sec->flags & SEC_LINKER_CREATED)
3729 {
3730 /* Remove the linker created SHT_GROUP sections. */
3731 bfd_section_list_remove (abfd, sec);
3732 abfd->section_count--;
3733 }
3734 else
3735 d->this_idx = section_number++;
3736 }
3737
3738 /* Count relocations. */
3739 reloc_count += sec->reloc_count;
3740 }
3741
3742 /* Clear HAS_RELOC if there are no relocations. */
3743 if (reloc_count == 0)
3744 abfd->flags &= ~HAS_RELOC;
3745 }
3746
3747 for (sec = abfd->sections; sec; sec = sec->next)
3748 {
3749 d = elf_section_data (sec);
3750
3751 if (d->this_hdr.sh_type != SHT_GROUP)
3752 d->this_idx = section_number++;
3753 if (d->this_hdr.sh_name != (unsigned int) -1)
3754 _bfd_elf_strtab_addref (elf_shstrtab (abfd), d->this_hdr.sh_name);
3755 if (d->rel.hdr)
3756 {
3757 d->rel.idx = section_number++;
3758 if (d->rel.hdr->sh_name != (unsigned int) -1)
3759 _bfd_elf_strtab_addref (elf_shstrtab (abfd), d->rel.hdr->sh_name);
3760 }
3761 else
3762 d->rel.idx = 0;
3763
3764 if (d->rela.hdr)
3765 {
3766 d->rela.idx = section_number++;
3767 if (d->rela.hdr->sh_name != (unsigned int) -1)
3768 _bfd_elf_strtab_addref (elf_shstrtab (abfd), d->rela.hdr->sh_name);
3769 }
3770 else
3771 d->rela.idx = 0;
3772 }
3773
3774 need_symtab = (bfd_get_symcount (abfd) > 0
3775 || (link_info == NULL
3776 && ((abfd->flags & (EXEC_P | DYNAMIC | HAS_RELOC))
3777 == HAS_RELOC)));
3778 if (need_symtab)
3779 {
3780 elf_onesymtab (abfd) = section_number++;
3781 _bfd_elf_strtab_addref (elf_shstrtab (abfd), t->symtab_hdr.sh_name);
3782 if (section_number > ((SHN_LORESERVE - 2) & 0xFFFF))
3783 {
3784 elf_section_list *entry;
3785
3786 BFD_ASSERT (elf_symtab_shndx_list (abfd) == NULL);
3787
3788 entry = bfd_zalloc (abfd, sizeof (*entry));
3789 entry->ndx = section_number++;
3790 elf_symtab_shndx_list (abfd) = entry;
3791 entry->hdr.sh_name
3792 = (unsigned int) _bfd_elf_strtab_add (elf_shstrtab (abfd),
3793 ".symtab_shndx", false);
3794 if (entry->hdr.sh_name == (unsigned int) -1)
3795 return false;
3796 }
3797 elf_strtab_sec (abfd) = section_number++;
3798 _bfd_elf_strtab_addref (elf_shstrtab (abfd), t->strtab_hdr.sh_name);
3799 }
3800
3801 elf_shstrtab_sec (abfd) = section_number++;
3802 _bfd_elf_strtab_addref (elf_shstrtab (abfd), t->shstrtab_hdr.sh_name);
3803 elf_elfheader (abfd)->e_shstrndx = elf_shstrtab_sec (abfd);
3804
3805 if (section_number >= SHN_LORESERVE)
3806 {
3807 /* xgettext:c-format */
3808 _bfd_error_handler (_("%pB: too many sections: %u"),
3809 abfd, section_number);
3810 return false;
3811 }
3812
3813 elf_numsections (abfd) = section_number;
3814 elf_elfheader (abfd)->e_shnum = section_number;
3815
3816 /* Set up the list of section header pointers, in agreement with the
3817 indices. */
3818 amt = section_number * sizeof (Elf_Internal_Shdr *);
3819 i_shdrp = (Elf_Internal_Shdr **) bfd_zalloc (abfd, amt);
3820 if (i_shdrp == NULL)
3821 return false;
3822
3823 i_shdrp[0] = (Elf_Internal_Shdr *) bfd_zalloc (abfd,
3824 sizeof (Elf_Internal_Shdr));
3825 if (i_shdrp[0] == NULL)
3826 {
3827 bfd_release (abfd, i_shdrp);
3828 return false;
3829 }
3830
3831 elf_elfsections (abfd) = i_shdrp;
3832
3833 i_shdrp[elf_shstrtab_sec (abfd)] = &t->shstrtab_hdr;
3834 if (need_symtab)
3835 {
3836 i_shdrp[elf_onesymtab (abfd)] = &t->symtab_hdr;
3837 if (elf_numsections (abfd) > (SHN_LORESERVE & 0xFFFF))
3838 {
3839 elf_section_list * entry = elf_symtab_shndx_list (abfd);
3840 BFD_ASSERT (entry != NULL);
3841 i_shdrp[entry->ndx] = & entry->hdr;
3842 entry->hdr.sh_link = elf_onesymtab (abfd);
3843 }
3844 i_shdrp[elf_strtab_sec (abfd)] = &t->strtab_hdr;
3845 t->symtab_hdr.sh_link = elf_strtab_sec (abfd);
3846 }
3847
3848 for (sec = abfd->sections; sec; sec = sec->next)
3849 {
3850 asection *s;
3851
3852 d = elf_section_data (sec);
3853
3854 i_shdrp[d->this_idx] = &d->this_hdr;
3855 if (d->rel.idx != 0)
3856 i_shdrp[d->rel.idx] = d->rel.hdr;
3857 if (d->rela.idx != 0)
3858 i_shdrp[d->rela.idx] = d->rela.hdr;
3859
3860 /* Fill in the sh_link and sh_info fields while we're at it. */
3861
3862 /* sh_link of a reloc section is the section index of the symbol
3863 table. sh_info is the section index of the section to which
3864 the relocation entries apply. */
3865 if (d->rel.idx != 0)
3866 {
3867 d->rel.hdr->sh_link = elf_onesymtab (abfd);
3868 d->rel.hdr->sh_info = d->this_idx;
3869 d->rel.hdr->sh_flags |= SHF_INFO_LINK;
3870 }
3871 if (d->rela.idx != 0)
3872 {
3873 d->rela.hdr->sh_link = elf_onesymtab (abfd);
3874 d->rela.hdr->sh_info = d->this_idx;
3875 d->rela.hdr->sh_flags |= SHF_INFO_LINK;
3876 }
3877
3878 /* We need to set up sh_link for SHF_LINK_ORDER. */
3879 if ((d->this_hdr.sh_flags & SHF_LINK_ORDER) != 0)
3880 {
3881 s = elf_linked_to_section (sec);
3882 /* We can now have a NULL linked section pointer.
3883 This happens when the sh_link field is 0, which is done
3884 when a linked to section is discarded but the linking
3885 section has been retained for some reason. */
3886 if (s)
3887 {
3888 /* Check discarded linkonce section. */
3889 if (discarded_section (s))
3890 {
3891 asection *kept;
3892 _bfd_error_handler
3893 /* xgettext:c-format */
3894 (_("%pB: sh_link of section `%pA' points to"
3895 " discarded section `%pA' of `%pB'"),
3896 abfd, d->this_hdr.bfd_section, s, s->owner);
3897 /* Point to the kept section if it has the same
3898 size as the discarded one. */
3899 kept = _bfd_elf_check_kept_section (s, link_info);
3900 if (kept == NULL)
3901 {
3902 bfd_set_error (bfd_error_bad_value);
3903 return false;
3904 }
3905 s = kept;
3906 }
3907 /* Handle objcopy. */
3908 else if (s->output_section == NULL)
3909 {
3910 _bfd_error_handler
3911 /* xgettext:c-format */
3912 (_("%pB: sh_link of section `%pA' points to"
3913 " removed section `%pA' of `%pB'"),
3914 abfd, d->this_hdr.bfd_section, s, s->owner);
3915 bfd_set_error (bfd_error_bad_value);
3916 return false;
3917 }
3918 s = s->output_section;
3919 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
3920 }
3921 }
3922
3923 switch (d->this_hdr.sh_type)
3924 {
3925 case SHT_REL:
3926 case SHT_RELA:
3927 /* A reloc section which we are treating as a normal BFD
3928 section. sh_link is the section index of the symbol
3929 table. sh_info is the section index of the section to
3930 which the relocation entries apply. We assume that an
3931 allocated reloc section uses the dynamic symbol table.
3932 FIXME: How can we be sure? */
3933 s = bfd_get_section_by_name (abfd, ".dynsym");
3934 if (s != NULL)
3935 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
3936
3937 s = elf_get_reloc_section (sec);
3938 if (s != NULL)
3939 {
3940 d->this_hdr.sh_info = elf_section_data (s)->this_idx;
3941 d->this_hdr.sh_flags |= SHF_INFO_LINK;
3942 }
3943 break;
3944
3945 case SHT_STRTAB:
3946 /* We assume that a section named .stab*str is a stabs
3947 string section. We look for a section with the same name
3948 but without the trailing ``str'', and set its sh_link
3949 field to point to this section. */
3950 if (startswith (sec->name, ".stab")
3951 && strcmp (sec->name + strlen (sec->name) - 3, "str") == 0)
3952 {
3953 size_t len;
3954 char *alc;
3955
3956 len = strlen (sec->name);
3957 alc = (char *) bfd_malloc (len - 2);
3958 if (alc == NULL)
3959 return false;
3960 memcpy (alc, sec->name, len - 3);
3961 alc[len - 3] = '\0';
3962 s = bfd_get_section_by_name (abfd, alc);
3963 free (alc);
3964 if (s != NULL)
3965 {
3966 elf_section_data (s)->this_hdr.sh_link = d->this_idx;
3967
3968 /* This is a .stab section. */
3969 elf_section_data (s)->this_hdr.sh_entsize = 12;
3970 }
3971 }
3972 break;
3973
3974 case SHT_DYNAMIC:
3975 case SHT_DYNSYM:
3976 case SHT_GNU_verneed:
3977 case SHT_GNU_verdef:
3978 /* sh_link is the section header index of the string table
3979 used for the dynamic entries, or the symbol table, or the
3980 version strings. */
3981 s = bfd_get_section_by_name (abfd, ".dynstr");
3982 if (s != NULL)
3983 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
3984 break;
3985
3986 case SHT_GNU_LIBLIST:
3987 /* sh_link is the section header index of the prelink library
3988 list used for the dynamic entries, or the symbol table, or
3989 the version strings. */
3990 s = bfd_get_section_by_name (abfd, (sec->flags & SEC_ALLOC)
3991 ? ".dynstr" : ".gnu.libstr");
3992 if (s != NULL)
3993 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
3994 break;
3995
3996 case SHT_HASH:
3997 case SHT_GNU_HASH:
3998 case SHT_GNU_versym:
3999 /* sh_link is the section header index of the symbol table
4000 this hash table or version table is for. */
4001 s = bfd_get_section_by_name (abfd, ".dynsym");
4002 if (s != NULL)
4003 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
4004 break;
4005
4006 case SHT_GROUP:
4007 d->this_hdr.sh_link = elf_onesymtab (abfd);
4008 }
4009 }
4010
4011 /* Delay setting sh_name to _bfd_elf_write_object_contents so that
4012 _bfd_elf_assign_file_positions_for_non_load can convert DWARF
4013 debug section name from .debug_* to .zdebug_* if needed. */
4014
4015 return true;
4016 }
4017
4018 static bool
4019 sym_is_global (bfd *abfd, asymbol *sym)
4020 {
4021 /* If the backend has a special mapping, use it. */
4022 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
4023 if (bed->elf_backend_sym_is_global)
4024 return (*bed->elf_backend_sym_is_global) (abfd, sym);
4025
4026 return ((sym->flags & (BSF_GLOBAL | BSF_WEAK | BSF_GNU_UNIQUE)) != 0
4027 || bfd_is_und_section (bfd_asymbol_section (sym))
4028 || bfd_is_com_section (bfd_asymbol_section (sym)));
4029 }
4030
4031 /* Filter global symbols of ABFD to include in the import library. All
4032 SYMCOUNT symbols of ABFD can be examined from their pointers in
4033 SYMS. Pointers of symbols to keep should be stored contiguously at
4034 the beginning of that array.
4035
4036 Returns the number of symbols to keep. */
4037
4038 unsigned int
4039 _bfd_elf_filter_global_symbols (bfd *abfd, struct bfd_link_info *info,
4040 asymbol **syms, long symcount)
4041 {
4042 long src_count, dst_count = 0;
4043
4044 for (src_count = 0; src_count < symcount; src_count++)
4045 {
4046 asymbol *sym = syms[src_count];
4047 char *name = (char *) bfd_asymbol_name (sym);
4048 struct bfd_link_hash_entry *h;
4049
4050 if (!sym_is_global (abfd, sym))
4051 continue;
4052
4053 h = bfd_link_hash_lookup (info->hash, name, false, false, false);
4054 if (h == NULL)
4055 continue;
4056 if (h->type != bfd_link_hash_defined && h->type != bfd_link_hash_defweak)
4057 continue;
4058 if (h->linker_def || h->ldscript_def)
4059 continue;
4060
4061 syms[dst_count++] = sym;
4062 }
4063
4064 syms[dst_count] = NULL;
4065
4066 return dst_count;
4067 }
4068
4069 /* Don't output section symbols for sections that are not going to be
4070 output, that are duplicates or there is no BFD section. */
4071
4072 static bool
4073 ignore_section_sym (bfd *abfd, asymbol *sym)
4074 {
4075 elf_symbol_type *type_ptr;
4076
4077 if (sym == NULL)
4078 return false;
4079
4080 if ((sym->flags & BSF_SECTION_SYM) == 0)
4081 return false;
4082
4083 /* Ignore the section symbol if it isn't used. */
4084 if ((sym->flags & BSF_SECTION_SYM_USED) == 0)
4085 return true;
4086
4087 if (sym->section == NULL)
4088 return true;
4089
4090 type_ptr = elf_symbol_from (sym);
4091 return ((type_ptr != NULL
4092 && type_ptr->internal_elf_sym.st_shndx != 0
4093 && bfd_is_abs_section (sym->section))
4094 || !(sym->section->owner == abfd
4095 || (sym->section->output_section != NULL
4096 && sym->section->output_section->owner == abfd
4097 && sym->section->output_offset == 0)
4098 || bfd_is_abs_section (sym->section)));
4099 }
4100
4101 /* Map symbol from it's internal number to the external number, moving
4102 all local symbols to be at the head of the list. */
4103
4104 static bool
4105 elf_map_symbols (bfd *abfd, unsigned int *pnum_locals)
4106 {
4107 unsigned int symcount = bfd_get_symcount (abfd);
4108 asymbol **syms = bfd_get_outsymbols (abfd);
4109 asymbol **sect_syms;
4110 unsigned int num_locals = 0;
4111 unsigned int num_globals = 0;
4112 unsigned int num_locals2 = 0;
4113 unsigned int num_globals2 = 0;
4114 unsigned int max_index = 0;
4115 unsigned int idx;
4116 asection *asect;
4117 asymbol **new_syms;
4118 size_t amt;
4119
4120 #ifdef DEBUG
4121 fprintf (stderr, "elf_map_symbols\n");
4122 fflush (stderr);
4123 #endif
4124
4125 for (asect = abfd->sections; asect; asect = asect->next)
4126 {
4127 if (max_index < asect->index)
4128 max_index = asect->index;
4129 }
4130
4131 max_index++;
4132 amt = max_index * sizeof (asymbol *);
4133 sect_syms = (asymbol **) bfd_zalloc (abfd, amt);
4134 if (sect_syms == NULL)
4135 return false;
4136 elf_section_syms (abfd) = sect_syms;
4137 elf_num_section_syms (abfd) = max_index;
4138
4139 /* Init sect_syms entries for any section symbols we have already
4140 decided to output. */
4141 for (idx = 0; idx < symcount; idx++)
4142 {
4143 asymbol *sym = syms[idx];
4144
4145 if ((sym->flags & BSF_SECTION_SYM) != 0
4146 && sym->value == 0
4147 && !ignore_section_sym (abfd, sym)
4148 && !bfd_is_abs_section (sym->section))
4149 {
4150 asection *sec = sym->section;
4151
4152 if (sec->owner != abfd)
4153 sec = sec->output_section;
4154
4155 sect_syms[sec->index] = syms[idx];
4156 }
4157 }
4158
4159 /* Classify all of the symbols. */
4160 for (idx = 0; idx < symcount; idx++)
4161 {
4162 if (sym_is_global (abfd, syms[idx]))
4163 num_globals++;
4164 else if (!ignore_section_sym (abfd, syms[idx]))
4165 num_locals++;
4166 }
4167
4168 /* We will be adding a section symbol for each normal BFD section. Most
4169 sections will already have a section symbol in outsymbols, but
4170 eg. SHT_GROUP sections will not, and we need the section symbol mapped
4171 at least in that case. */
4172 for (asect = abfd->sections; asect; asect = asect->next)
4173 {
4174 asymbol *sym = asect->symbol;
4175 /* Don't include ignored section symbols. */
4176 if (!ignore_section_sym (abfd, sym)
4177 && sect_syms[asect->index] == NULL)
4178 {
4179 if (!sym_is_global (abfd, asect->symbol))
4180 num_locals++;
4181 else
4182 num_globals++;
4183 }
4184 }
4185
4186 /* Now sort the symbols so the local symbols are first. */
4187 amt = (num_locals + num_globals) * sizeof (asymbol *);
4188 new_syms = (asymbol **) bfd_alloc (abfd, amt);
4189 if (new_syms == NULL)
4190 return false;
4191
4192 for (idx = 0; idx < symcount; idx++)
4193 {
4194 asymbol *sym = syms[idx];
4195 unsigned int i;
4196
4197 if (sym_is_global (abfd, sym))
4198 i = num_locals + num_globals2++;
4199 /* Don't include ignored section symbols. */
4200 else if (!ignore_section_sym (abfd, sym))
4201 i = num_locals2++;
4202 else
4203 continue;
4204 new_syms[i] = sym;
4205 sym->udata.i = i + 1;
4206 }
4207 for (asect = abfd->sections; asect; asect = asect->next)
4208 {
4209 asymbol *sym = asect->symbol;
4210 if (!ignore_section_sym (abfd, sym)
4211 && sect_syms[asect->index] == NULL)
4212 {
4213 unsigned int i;
4214
4215 sect_syms[asect->index] = sym;
4216 if (!sym_is_global (abfd, sym))
4217 i = num_locals2++;
4218 else
4219 i = num_locals + num_globals2++;
4220 new_syms[i] = sym;
4221 sym->udata.i = i + 1;
4222 }
4223 }
4224
4225 bfd_set_symtab (abfd, new_syms, num_locals + num_globals);
4226
4227 *pnum_locals = num_locals;
4228 return true;
4229 }
4230
4231 /* Align to the maximum file alignment that could be required for any
4232 ELF data structure. */
4233
4234 static inline file_ptr
4235 align_file_position (file_ptr off, int align)
4236 {
4237 return (off + align - 1) & ~(align - 1);
4238 }
4239
4240 /* Assign a file position to a section, optionally aligning to the
4241 required section alignment. */
4242
4243 file_ptr
4244 _bfd_elf_assign_file_position_for_section (Elf_Internal_Shdr *i_shdrp,
4245 file_ptr offset,
4246 bool align)
4247 {
4248 if (align && i_shdrp->sh_addralign > 1)
4249 offset = BFD_ALIGN (offset, i_shdrp->sh_addralign);
4250 i_shdrp->sh_offset = offset;
4251 if (i_shdrp->bfd_section != NULL)
4252 i_shdrp->bfd_section->filepos = offset;
4253 if (i_shdrp->sh_type != SHT_NOBITS)
4254 offset += i_shdrp->sh_size;
4255 return offset;
4256 }
4257
4258 /* Compute the file positions we are going to put the sections at, and
4259 otherwise prepare to begin writing out the ELF file. If LINK_INFO
4260 is not NULL, this is being called by the ELF backend linker. */
4261
4262 bool
4263 _bfd_elf_compute_section_file_positions (bfd *abfd,
4264 struct bfd_link_info *link_info)
4265 {
4266 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
4267 struct fake_section_arg fsargs;
4268 bool failed;
4269 struct elf_strtab_hash *strtab = NULL;
4270 Elf_Internal_Shdr *shstrtab_hdr;
4271 bool need_symtab;
4272
4273 if (abfd->output_has_begun)
4274 return true;
4275
4276 /* Do any elf backend specific processing first. */
4277 if (bed->elf_backend_begin_write_processing)
4278 (*bed->elf_backend_begin_write_processing) (abfd, link_info);
4279
4280 if (!(*bed->elf_backend_init_file_header) (abfd, link_info))
4281 return false;
4282
4283 fsargs.failed = false;
4284 fsargs.link_info = link_info;
4285 bfd_map_over_sections (abfd, elf_fake_sections, &fsargs);
4286 if (fsargs.failed)
4287 return false;
4288
4289 if (!assign_section_numbers (abfd, link_info))
4290 return false;
4291
4292 /* The backend linker builds symbol table information itself. */
4293 need_symtab = (link_info == NULL
4294 && (bfd_get_symcount (abfd) > 0
4295 || ((abfd->flags & (EXEC_P | DYNAMIC | HAS_RELOC))
4296 == HAS_RELOC)));
4297 if (need_symtab)
4298 {
4299 /* Non-zero if doing a relocatable link. */
4300 int relocatable_p = ! (abfd->flags & (EXEC_P | DYNAMIC));
4301
4302 if (! swap_out_syms (abfd, &strtab, relocatable_p, link_info))
4303 return false;
4304 }
4305
4306 failed = false;
4307 if (link_info == NULL)
4308 {
4309 bfd_map_over_sections (abfd, bfd_elf_set_group_contents, &failed);
4310 if (failed)
4311 return false;
4312 }
4313
4314 shstrtab_hdr = &elf_tdata (abfd)->shstrtab_hdr;
4315 /* sh_name was set in init_file_header. */
4316 shstrtab_hdr->sh_type = SHT_STRTAB;
4317 shstrtab_hdr->sh_flags = bed->elf_strtab_flags;
4318 shstrtab_hdr->sh_addr = 0;
4319 /* sh_size is set in _bfd_elf_assign_file_positions_for_non_load. */
4320 shstrtab_hdr->sh_entsize = 0;
4321 shstrtab_hdr->sh_link = 0;
4322 shstrtab_hdr->sh_info = 0;
4323 /* sh_offset is set in _bfd_elf_assign_file_positions_for_non_load. */
4324 shstrtab_hdr->sh_addralign = 1;
4325
4326 if (!assign_file_positions_except_relocs (abfd, link_info))
4327 return false;
4328
4329 if (need_symtab)
4330 {
4331 file_ptr off;
4332 Elf_Internal_Shdr *hdr;
4333
4334 off = elf_next_file_pos (abfd);
4335
4336 hdr = & elf_symtab_hdr (abfd);
4337 off = _bfd_elf_assign_file_position_for_section (hdr, off, true);
4338
4339 if (elf_symtab_shndx_list (abfd) != NULL)
4340 {
4341 hdr = & elf_symtab_shndx_list (abfd)->hdr;
4342 if (hdr->sh_size != 0)
4343 off = _bfd_elf_assign_file_position_for_section (hdr, off, true);
4344 /* FIXME: What about other symtab_shndx sections in the list ? */
4345 }
4346
4347 hdr = &elf_tdata (abfd)->strtab_hdr;
4348 off = _bfd_elf_assign_file_position_for_section (hdr, off, true);
4349
4350 elf_next_file_pos (abfd) = off;
4351
4352 /* Now that we know where the .strtab section goes, write it
4353 out. */
4354 if (bfd_seek (abfd, hdr->sh_offset, SEEK_SET) != 0
4355 || ! _bfd_elf_strtab_emit (abfd, strtab))
4356 return false;
4357 _bfd_elf_strtab_free (strtab);
4358 }
4359
4360 abfd->output_has_begun = true;
4361
4362 return true;
4363 }
4364
4365 /* Make an initial estimate of the size of the program header. If we
4366 get the number wrong here, we'll redo section placement. */
4367
4368 static bfd_size_type
4369 get_program_header_size (bfd *abfd, struct bfd_link_info *info)
4370 {
4371 size_t segs;
4372 asection *s;
4373 const struct elf_backend_data *bed;
4374
4375 /* Assume we will need exactly two PT_LOAD segments: one for text
4376 and one for data. */
4377 segs = 2;
4378
4379 s = bfd_get_section_by_name (abfd, ".interp");
4380 if (s != NULL && (s->flags & SEC_LOAD) != 0 && s->size != 0)
4381 {
4382 /* If we have a loadable interpreter section, we need a
4383 PT_INTERP segment. In this case, assume we also need a
4384 PT_PHDR segment, although that may not be true for all
4385 targets. */
4386 segs += 2;
4387 }
4388
4389 if (bfd_get_section_by_name (abfd, ".dynamic") != NULL)
4390 {
4391 /* We need a PT_DYNAMIC segment. */
4392 ++segs;
4393 }
4394
4395 if (info != NULL && info->relro)
4396 {
4397 /* We need a PT_GNU_RELRO segment. */
4398 ++segs;
4399 }
4400
4401 if (elf_eh_frame_hdr (abfd))
4402 {
4403 /* We need a PT_GNU_EH_FRAME segment. */
4404 ++segs;
4405 }
4406
4407 if (elf_stack_flags (abfd))
4408 {
4409 /* We need a PT_GNU_STACK segment. */
4410 ++segs;
4411 }
4412
4413 s = bfd_get_section_by_name (abfd,
4414 NOTE_GNU_PROPERTY_SECTION_NAME);
4415 if (s != NULL && s->size != 0)
4416 {
4417 /* We need a PT_GNU_PROPERTY segment. */
4418 ++segs;
4419 }
4420
4421 for (s = abfd->sections; s != NULL; s = s->next)
4422 {
4423 if ((s->flags & SEC_LOAD) != 0
4424 && elf_section_type (s) == SHT_NOTE)
4425 {
4426 unsigned int alignment_power;
4427 /* We need a PT_NOTE segment. */
4428 ++segs;
4429 /* Try to create just one PT_NOTE segment for all adjacent
4430 loadable SHT_NOTE sections. gABI requires that within a
4431 PT_NOTE segment (and also inside of each SHT_NOTE section)
4432 each note should have the same alignment. So we check
4433 whether the sections are correctly aligned. */
4434 alignment_power = s->alignment_power;
4435 while (s->next != NULL
4436 && s->next->alignment_power == alignment_power
4437 && (s->next->flags & SEC_LOAD) != 0
4438 && elf_section_type (s->next) == SHT_NOTE)
4439 s = s->next;
4440 }
4441 }
4442
4443 for (s = abfd->sections; s != NULL; s = s->next)
4444 {
4445 if (s->flags & SEC_THREAD_LOCAL)
4446 {
4447 /* We need a PT_TLS segment. */
4448 ++segs;
4449 break;
4450 }
4451 }
4452
4453 bed = get_elf_backend_data (abfd);
4454
4455 if ((abfd->flags & D_PAGED) != 0
4456 && (elf_tdata (abfd)->has_gnu_osabi & elf_gnu_osabi_mbind) != 0)
4457 {
4458 /* Add a PT_GNU_MBIND segment for each mbind section. */
4459 bfd_vma commonpagesize;
4460 unsigned int page_align_power;
4461
4462 if (info != NULL)
4463 commonpagesize = info->commonpagesize;
4464 else
4465 commonpagesize = bed->commonpagesize;
4466 page_align_power = bfd_log2 (commonpagesize);
4467 for (s = abfd->sections; s != NULL; s = s->next)
4468 if (elf_section_flags (s) & SHF_GNU_MBIND)
4469 {
4470 if (elf_section_data (s)->this_hdr.sh_info > PT_GNU_MBIND_NUM)
4471 {
4472 _bfd_error_handler
4473 /* xgettext:c-format */
4474 (_("%pB: GNU_MBIND section `%pA' has invalid "
4475 "sh_info field: %d"),
4476 abfd, s, elf_section_data (s)->this_hdr.sh_info);
4477 continue;
4478 }
4479 /* Align mbind section to page size. */
4480 if (s->alignment_power < page_align_power)
4481 s->alignment_power = page_align_power;
4482 segs ++;
4483 }
4484 }
4485
4486 /* Let the backend count up any program headers it might need. */
4487 if (bed->elf_backend_additional_program_headers)
4488 {
4489 int a;
4490
4491 a = (*bed->elf_backend_additional_program_headers) (abfd, info);
4492 if (a == -1)
4493 abort ();
4494 segs += a;
4495 }
4496
4497 return segs * bed->s->sizeof_phdr;
4498 }
4499
4500 /* Find the segment that contains the output_section of section. */
4501
4502 Elf_Internal_Phdr *
4503 _bfd_elf_find_segment_containing_section (bfd * abfd, asection * section)
4504 {
4505 struct elf_segment_map *m;
4506 Elf_Internal_Phdr *p;
4507
4508 for (m = elf_seg_map (abfd), p = elf_tdata (abfd)->phdr;
4509 m != NULL;
4510 m = m->next, p++)
4511 {
4512 int i;
4513
4514 for (i = m->count - 1; i >= 0; i--)
4515 if (m->sections[i] == section)
4516 return p;
4517 }
4518
4519 return NULL;
4520 }
4521
4522 /* Create a mapping from a set of sections to a program segment. */
4523
4524 static struct elf_segment_map *
4525 make_mapping (bfd *abfd,
4526 asection **sections,
4527 unsigned int from,
4528 unsigned int to,
4529 bool phdr)
4530 {
4531 struct elf_segment_map *m;
4532 unsigned int i;
4533 asection **hdrpp;
4534 size_t amt;
4535
4536 amt = sizeof (struct elf_segment_map) - sizeof (asection *);
4537 amt += (to - from) * sizeof (asection *);
4538 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
4539 if (m == NULL)
4540 return NULL;
4541 m->next = NULL;
4542 m->p_type = PT_LOAD;
4543 for (i = from, hdrpp = sections + from; i < to; i++, hdrpp++)
4544 m->sections[i - from] = *hdrpp;
4545 m->count = to - from;
4546
4547 if (from == 0 && phdr)
4548 {
4549 /* Include the headers in the first PT_LOAD segment. */
4550 m->includes_filehdr = 1;
4551 m->includes_phdrs = 1;
4552 }
4553
4554 return m;
4555 }
4556
4557 /* Create the PT_DYNAMIC segment, which includes DYNSEC. Returns NULL
4558 on failure. */
4559
4560 struct elf_segment_map *
4561 _bfd_elf_make_dynamic_segment (bfd *abfd, asection *dynsec)
4562 {
4563 struct elf_segment_map *m;
4564
4565 m = (struct elf_segment_map *) bfd_zalloc (abfd,
4566 sizeof (struct elf_segment_map));
4567 if (m == NULL)
4568 return NULL;
4569 m->next = NULL;
4570 m->p_type = PT_DYNAMIC;
4571 m->count = 1;
4572 m->sections[0] = dynsec;
4573
4574 return m;
4575 }
4576
4577 /* Possibly add or remove segments from the segment map. */
4578
4579 static bool
4580 elf_modify_segment_map (bfd *abfd,
4581 struct bfd_link_info *info,
4582 bool remove_empty_load)
4583 {
4584 struct elf_segment_map **m;
4585 const struct elf_backend_data *bed;
4586
4587 /* The placement algorithm assumes that non allocated sections are
4588 not in PT_LOAD segments. We ensure this here by removing such
4589 sections from the segment map. We also remove excluded
4590 sections. Finally, any PT_LOAD segment without sections is
4591 removed. */
4592 m = &elf_seg_map (abfd);
4593 while (*m)
4594 {
4595 unsigned int i, new_count;
4596
4597 for (new_count = 0, i = 0; i < (*m)->count; i++)
4598 {
4599 if (((*m)->sections[i]->flags & SEC_EXCLUDE) == 0
4600 && (((*m)->sections[i]->flags & SEC_ALLOC) != 0
4601 || (*m)->p_type != PT_LOAD))
4602 {
4603 (*m)->sections[new_count] = (*m)->sections[i];
4604 new_count++;
4605 }
4606 }
4607 (*m)->count = new_count;
4608
4609 if (remove_empty_load
4610 && (*m)->p_type == PT_LOAD
4611 && (*m)->count == 0
4612 && !(*m)->includes_phdrs)
4613 *m = (*m)->next;
4614 else
4615 m = &(*m)->next;
4616 }
4617
4618 bed = get_elf_backend_data (abfd);
4619 if (bed->elf_backend_modify_segment_map != NULL)
4620 {
4621 if (!(*bed->elf_backend_modify_segment_map) (abfd, info))
4622 return false;
4623 }
4624
4625 return true;
4626 }
4627
4628 #define IS_TBSS(s) \
4629 ((s->flags & (SEC_THREAD_LOCAL | SEC_LOAD)) == SEC_THREAD_LOCAL)
4630
4631 /* Set up a mapping from BFD sections to program segments. */
4632
4633 bool
4634 _bfd_elf_map_sections_to_segments (bfd *abfd, struct bfd_link_info *info)
4635 {
4636 unsigned int count;
4637 struct elf_segment_map *m;
4638 asection **sections = NULL;
4639 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
4640 bool no_user_phdrs;
4641
4642 no_user_phdrs = elf_seg_map (abfd) == NULL;
4643
4644 if (info != NULL)
4645 info->user_phdrs = !no_user_phdrs;
4646
4647 if (no_user_phdrs && bfd_count_sections (abfd) != 0)
4648 {
4649 asection *s;
4650 unsigned int i;
4651 struct elf_segment_map *mfirst;
4652 struct elf_segment_map **pm;
4653 asection *last_hdr;
4654 bfd_vma last_size;
4655 unsigned int hdr_index;
4656 bfd_vma maxpagesize;
4657 asection **hdrpp;
4658 bool phdr_in_segment;
4659 bool writable;
4660 bool executable;
4661 unsigned int tls_count = 0;
4662 asection *first_tls = NULL;
4663 asection *first_mbind = NULL;
4664 asection *dynsec, *eh_frame_hdr;
4665 size_t amt;
4666 bfd_vma addr_mask, wrap_to = 0; /* Bytes. */
4667 bfd_size_type phdr_size; /* Octets/bytes. */
4668 unsigned int opb = bfd_octets_per_byte (abfd, NULL);
4669
4670 /* Select the allocated sections, and sort them. */
4671
4672 amt = bfd_count_sections (abfd) * sizeof (asection *);
4673 sections = (asection **) bfd_malloc (amt);
4674 if (sections == NULL)
4675 goto error_return;
4676
4677 /* Calculate top address, avoiding undefined behaviour of shift
4678 left operator when shift count is equal to size of type
4679 being shifted. */
4680 addr_mask = ((bfd_vma) 1 << (bfd_arch_bits_per_address (abfd) - 1)) - 1;
4681 addr_mask = (addr_mask << 1) + 1;
4682
4683 i = 0;
4684 for (s = abfd->sections; s != NULL; s = s->next)
4685 {
4686 if ((s->flags & SEC_ALLOC) != 0)
4687 {
4688 /* target_index is unused until bfd_elf_final_link
4689 starts output of section symbols. Use it to make
4690 qsort stable. */
4691 s->target_index = i;
4692 sections[i] = s;
4693 ++i;
4694 /* A wrapping section potentially clashes with header. */
4695 if (((s->lma + s->size / opb) & addr_mask) < (s->lma & addr_mask))
4696 wrap_to = (s->lma + s->size / opb) & addr_mask;
4697 }
4698 }
4699 BFD_ASSERT (i <= bfd_count_sections (abfd));
4700 count = i;
4701
4702 qsort (sections, (size_t) count, sizeof (asection *), elf_sort_sections);
4703
4704 phdr_size = elf_program_header_size (abfd);
4705 if (phdr_size == (bfd_size_type) -1)
4706 phdr_size = get_program_header_size (abfd, info);
4707 phdr_size += bed->s->sizeof_ehdr;
4708 /* phdr_size is compared to LMA values which are in bytes. */
4709 phdr_size /= opb;
4710 if (info != NULL)
4711 maxpagesize = info->maxpagesize;
4712 else
4713 maxpagesize = bed->maxpagesize;
4714 if (maxpagesize == 0)
4715 maxpagesize = 1;
4716 phdr_in_segment = info != NULL && info->load_phdrs;
4717 if (count != 0
4718 && (((sections[0]->lma & addr_mask) & (maxpagesize - 1))
4719 >= (phdr_size & (maxpagesize - 1))))
4720 /* For compatibility with old scripts that may not be using
4721 SIZEOF_HEADERS, add headers when it looks like space has
4722 been left for them. */
4723 phdr_in_segment = true;
4724
4725 /* Build the mapping. */
4726 mfirst = NULL;
4727 pm = &mfirst;
4728
4729 /* If we have a .interp section, then create a PT_PHDR segment for
4730 the program headers and a PT_INTERP segment for the .interp
4731 section. */
4732 s = bfd_get_section_by_name (abfd, ".interp");
4733 if (s != NULL && (s->flags & SEC_LOAD) != 0 && s->size != 0)
4734 {
4735 amt = sizeof (struct elf_segment_map);
4736 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
4737 if (m == NULL)
4738 goto error_return;
4739 m->next = NULL;
4740 m->p_type = PT_PHDR;
4741 m->p_flags = PF_R;
4742 m->p_flags_valid = 1;
4743 m->includes_phdrs = 1;
4744 phdr_in_segment = true;
4745 *pm = m;
4746 pm = &m->next;
4747
4748 amt = sizeof (struct elf_segment_map);
4749 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
4750 if (m == NULL)
4751 goto error_return;
4752 m->next = NULL;
4753 m->p_type = PT_INTERP;
4754 m->count = 1;
4755 m->sections[0] = s;
4756
4757 *pm = m;
4758 pm = &m->next;
4759 }
4760
4761 /* Look through the sections. We put sections in the same program
4762 segment when the start of the second section can be placed within
4763 a few bytes of the end of the first section. */
4764 last_hdr = NULL;
4765 last_size = 0;
4766 hdr_index = 0;
4767 writable = false;
4768 executable = false;
4769 dynsec = bfd_get_section_by_name (abfd, ".dynamic");
4770 if (dynsec != NULL
4771 && (dynsec->flags & SEC_LOAD) == 0)
4772 dynsec = NULL;
4773
4774 if ((abfd->flags & D_PAGED) == 0)
4775 phdr_in_segment = false;
4776
4777 /* Deal with -Ttext or something similar such that the first section
4778 is not adjacent to the program headers. This is an
4779 approximation, since at this point we don't know exactly how many
4780 program headers we will need. */
4781 if (phdr_in_segment && count > 0)
4782 {
4783 bfd_vma phdr_lma; /* Bytes. */
4784 bool separate_phdr = false;
4785
4786 phdr_lma = (sections[0]->lma - phdr_size) & addr_mask & -maxpagesize;
4787 if (info != NULL
4788 && info->separate_code
4789 && (sections[0]->flags & SEC_CODE) != 0)
4790 {
4791 /* If data sections should be separate from code and
4792 thus not executable, and the first section is
4793 executable then put the file and program headers in
4794 their own PT_LOAD. */
4795 separate_phdr = true;
4796 if ((((phdr_lma + phdr_size - 1) & addr_mask & -maxpagesize)
4797 == (sections[0]->lma & addr_mask & -maxpagesize)))
4798 {
4799 /* The file and program headers are currently on the
4800 same page as the first section. Put them on the
4801 previous page if we can. */
4802 if (phdr_lma >= maxpagesize)
4803 phdr_lma -= maxpagesize;
4804 else
4805 separate_phdr = false;
4806 }
4807 }
4808 if ((sections[0]->lma & addr_mask) < phdr_lma
4809 || (sections[0]->lma & addr_mask) < phdr_size)
4810 /* If file and program headers would be placed at the end
4811 of memory then it's probably better to omit them. */
4812 phdr_in_segment = false;
4813 else if (phdr_lma < wrap_to)
4814 /* If a section wraps around to where we'll be placing
4815 file and program headers, then the headers will be
4816 overwritten. */
4817 phdr_in_segment = false;
4818 else if (separate_phdr)
4819 {
4820 m = make_mapping (abfd, sections, 0, 0, phdr_in_segment);
4821 if (m == NULL)
4822 goto error_return;
4823 m->p_paddr = phdr_lma * opb;
4824 m->p_vaddr_offset
4825 = (sections[0]->vma - phdr_size) & addr_mask & -maxpagesize;
4826 m->p_paddr_valid = 1;
4827 *pm = m;
4828 pm = &m->next;
4829 phdr_in_segment = false;
4830 }
4831 }
4832
4833 for (i = 0, hdrpp = sections; i < count; i++, hdrpp++)
4834 {
4835 asection *hdr;
4836 bool new_segment;
4837
4838 hdr = *hdrpp;
4839
4840 /* See if this section and the last one will fit in the same
4841 segment. */
4842
4843 if (last_hdr == NULL)
4844 {
4845 /* If we don't have a segment yet, then we don't need a new
4846 one (we build the last one after this loop). */
4847 new_segment = false;
4848 }
4849 else if (last_hdr->lma - last_hdr->vma != hdr->lma - hdr->vma)
4850 {
4851 /* If this section has a different relation between the
4852 virtual address and the load address, then we need a new
4853 segment. */
4854 new_segment = true;
4855 }
4856 else if (hdr->lma < last_hdr->lma + last_size
4857 || last_hdr->lma + last_size < last_hdr->lma)
4858 {
4859 /* If this section has a load address that makes it overlap
4860 the previous section, then we need a new segment. */
4861 new_segment = true;
4862 }
4863 else if ((abfd->flags & D_PAGED) != 0
4864 && (((last_hdr->lma + last_size - 1) & -maxpagesize)
4865 == (hdr->lma & -maxpagesize)))
4866 {
4867 /* If we are demand paged then we can't map two disk
4868 pages onto the same memory page. */
4869 new_segment = false;
4870 }
4871 /* In the next test we have to be careful when last_hdr->lma is close
4872 to the end of the address space. If the aligned address wraps
4873 around to the start of the address space, then there are no more
4874 pages left in memory and it is OK to assume that the current
4875 section can be included in the current segment. */
4876 else if ((BFD_ALIGN (last_hdr->lma + last_size, maxpagesize)
4877 + maxpagesize > last_hdr->lma)
4878 && (BFD_ALIGN (last_hdr->lma + last_size, maxpagesize)
4879 + maxpagesize <= hdr->lma))
4880 {
4881 /* If putting this section in this segment would force us to
4882 skip a page in the segment, then we need a new segment. */
4883 new_segment = true;
4884 }
4885 else if ((last_hdr->flags & (SEC_LOAD | SEC_THREAD_LOCAL)) == 0
4886 && (hdr->flags & (SEC_LOAD | SEC_THREAD_LOCAL)) != 0)
4887 {
4888 /* We don't want to put a loaded section after a
4889 nonloaded (ie. bss style) section in the same segment
4890 as that will force the non-loaded section to be loaded.
4891 Consider .tbss sections as loaded for this purpose. */
4892 new_segment = true;
4893 }
4894 else if ((abfd->flags & D_PAGED) == 0)
4895 {
4896 /* If the file is not demand paged, which means that we
4897 don't require the sections to be correctly aligned in the
4898 file, then there is no other reason for a new segment. */
4899 new_segment = false;
4900 }
4901 else if (info != NULL
4902 && info->separate_code
4903 && executable != ((hdr->flags & SEC_CODE) != 0))
4904 {
4905 new_segment = true;
4906 }
4907 else if (! writable
4908 && (hdr->flags & SEC_READONLY) == 0)
4909 {
4910 /* We don't want to put a writable section in a read only
4911 segment. */
4912 new_segment = true;
4913 }
4914 else
4915 {
4916 /* Otherwise, we can use the same segment. */
4917 new_segment = false;
4918 }
4919
4920 /* Allow interested parties a chance to override our decision. */
4921 if (last_hdr != NULL
4922 && info != NULL
4923 && info->callbacks->override_segment_assignment != NULL)
4924 new_segment
4925 = info->callbacks->override_segment_assignment (info, abfd, hdr,
4926 last_hdr,
4927 new_segment);
4928
4929 if (! new_segment)
4930 {
4931 if ((hdr->flags & SEC_READONLY) == 0)
4932 writable = true;
4933 if ((hdr->flags & SEC_CODE) != 0)
4934 executable = true;
4935 last_hdr = hdr;
4936 /* .tbss sections effectively have zero size. */
4937 last_size = (!IS_TBSS (hdr) ? hdr->size : 0) / opb;
4938 continue;
4939 }
4940
4941 /* We need a new program segment. We must create a new program
4942 header holding all the sections from hdr_index until hdr. */
4943
4944 m = make_mapping (abfd, sections, hdr_index, i, phdr_in_segment);
4945 if (m == NULL)
4946 goto error_return;
4947
4948 *pm = m;
4949 pm = &m->next;
4950
4951 if ((hdr->flags & SEC_READONLY) == 0)
4952 writable = true;
4953 else
4954 writable = false;
4955
4956 if ((hdr->flags & SEC_CODE) == 0)
4957 executable = false;
4958 else
4959 executable = true;
4960
4961 last_hdr = hdr;
4962 /* .tbss sections effectively have zero size. */
4963 last_size = (!IS_TBSS (hdr) ? hdr->size : 0) / opb;
4964 hdr_index = i;
4965 phdr_in_segment = false;
4966 }
4967
4968 /* Create a final PT_LOAD program segment, but not if it's just
4969 for .tbss. */
4970 if (last_hdr != NULL
4971 && (i - hdr_index != 1
4972 || !IS_TBSS (last_hdr)))
4973 {
4974 m = make_mapping (abfd, sections, hdr_index, i, phdr_in_segment);
4975 if (m == NULL)
4976 goto error_return;
4977
4978 *pm = m;
4979 pm = &m->next;
4980 }
4981
4982 /* If there is a .dynamic section, throw in a PT_DYNAMIC segment. */
4983 if (dynsec != NULL)
4984 {
4985 m = _bfd_elf_make_dynamic_segment (abfd, dynsec);
4986 if (m == NULL)
4987 goto error_return;
4988 *pm = m;
4989 pm = &m->next;
4990 }
4991
4992 /* For each batch of consecutive loadable SHT_NOTE sections,
4993 add a PT_NOTE segment. We don't use bfd_get_section_by_name,
4994 because if we link together nonloadable .note sections and
4995 loadable .note sections, we will generate two .note sections
4996 in the output file. */
4997 for (s = abfd->sections; s != NULL; s = s->next)
4998 {
4999 if ((s->flags & SEC_LOAD) != 0
5000 && elf_section_type (s) == SHT_NOTE)
5001 {
5002 asection *s2;
5003 unsigned int alignment_power = s->alignment_power;
5004
5005 count = 1;
5006 for (s2 = s; s2->next != NULL; s2 = s2->next)
5007 {
5008 if (s2->next->alignment_power == alignment_power
5009 && (s2->next->flags & SEC_LOAD) != 0
5010 && elf_section_type (s2->next) == SHT_NOTE
5011 && align_power (s2->lma + s2->size / opb,
5012 alignment_power)
5013 == s2->next->lma)
5014 count++;
5015 else
5016 break;
5017 }
5018 amt = sizeof (struct elf_segment_map) - sizeof (asection *);
5019 amt += count * sizeof (asection *);
5020 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
5021 if (m == NULL)
5022 goto error_return;
5023 m->next = NULL;
5024 m->p_type = PT_NOTE;
5025 m->count = count;
5026 while (count > 1)
5027 {
5028 m->sections[m->count - count--] = s;
5029 BFD_ASSERT ((s->flags & SEC_THREAD_LOCAL) == 0);
5030 s = s->next;
5031 }
5032 m->sections[m->count - 1] = s;
5033 BFD_ASSERT ((s->flags & SEC_THREAD_LOCAL) == 0);
5034 *pm = m;
5035 pm = &m->next;
5036 }
5037 if (s->flags & SEC_THREAD_LOCAL)
5038 {
5039 if (! tls_count)
5040 first_tls = s;
5041 tls_count++;
5042 }
5043 if (first_mbind == NULL
5044 && (elf_section_flags (s) & SHF_GNU_MBIND) != 0)
5045 first_mbind = s;
5046 }
5047
5048 /* If there are any SHF_TLS output sections, add PT_TLS segment. */
5049 if (tls_count > 0)
5050 {
5051 amt = sizeof (struct elf_segment_map) - sizeof (asection *);
5052 amt += tls_count * sizeof (asection *);
5053 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
5054 if (m == NULL)
5055 goto error_return;
5056 m->next = NULL;
5057 m->p_type = PT_TLS;
5058 m->count = tls_count;
5059 /* Mandated PF_R. */
5060 m->p_flags = PF_R;
5061 m->p_flags_valid = 1;
5062 s = first_tls;
5063 for (i = 0; i < tls_count; ++i)
5064 {
5065 if ((s->flags & SEC_THREAD_LOCAL) == 0)
5066 {
5067 _bfd_error_handler
5068 (_("%pB: TLS sections are not adjacent:"), abfd);
5069 s = first_tls;
5070 i = 0;
5071 while (i < tls_count)
5072 {
5073 if ((s->flags & SEC_THREAD_LOCAL) != 0)
5074 {
5075 _bfd_error_handler (_(" TLS: %pA"), s);
5076 i++;
5077 }
5078 else
5079 _bfd_error_handler (_(" non-TLS: %pA"), s);
5080 s = s->next;
5081 }
5082 bfd_set_error (bfd_error_bad_value);
5083 goto error_return;
5084 }
5085 m->sections[i] = s;
5086 s = s->next;
5087 }
5088
5089 *pm = m;
5090 pm = &m->next;
5091 }
5092
5093 if (first_mbind
5094 && (abfd->flags & D_PAGED) != 0
5095 && (elf_tdata (abfd)->has_gnu_osabi & elf_gnu_osabi_mbind) != 0)
5096 for (s = first_mbind; s != NULL; s = s->next)
5097 if ((elf_section_flags (s) & SHF_GNU_MBIND) != 0
5098 && elf_section_data (s)->this_hdr.sh_info <= PT_GNU_MBIND_NUM)
5099 {
5100 /* Mandated PF_R. */
5101 unsigned long p_flags = PF_R;
5102 if ((s->flags & SEC_READONLY) == 0)
5103 p_flags |= PF_W;
5104 if ((s->flags & SEC_CODE) != 0)
5105 p_flags |= PF_X;
5106
5107 amt = sizeof (struct elf_segment_map) + sizeof (asection *);
5108 m = bfd_zalloc (abfd, amt);
5109 if (m == NULL)
5110 goto error_return;
5111 m->next = NULL;
5112 m->p_type = (PT_GNU_MBIND_LO
5113 + elf_section_data (s)->this_hdr.sh_info);
5114 m->count = 1;
5115 m->p_flags_valid = 1;
5116 m->sections[0] = s;
5117 m->p_flags = p_flags;
5118
5119 *pm = m;
5120 pm = &m->next;
5121 }
5122
5123 s = bfd_get_section_by_name (abfd,
5124 NOTE_GNU_PROPERTY_SECTION_NAME);
5125 if (s != NULL && s->size != 0)
5126 {
5127 amt = sizeof (struct elf_segment_map) + sizeof (asection *);
5128 m = bfd_zalloc (abfd, amt);
5129 if (m == NULL)
5130 goto error_return;
5131 m->next = NULL;
5132 m->p_type = PT_GNU_PROPERTY;
5133 m->count = 1;
5134 m->p_flags_valid = 1;
5135 m->sections[0] = s;
5136 m->p_flags = PF_R;
5137 *pm = m;
5138 pm = &m->next;
5139 }
5140
5141 /* If there is a .eh_frame_hdr section, throw in a PT_GNU_EH_FRAME
5142 segment. */
5143 eh_frame_hdr = elf_eh_frame_hdr (abfd);
5144 if (eh_frame_hdr != NULL
5145 && (eh_frame_hdr->output_section->flags & SEC_LOAD) != 0)
5146 {
5147 amt = sizeof (struct elf_segment_map);
5148 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
5149 if (m == NULL)
5150 goto error_return;
5151 m->next = NULL;
5152 m->p_type = PT_GNU_EH_FRAME;
5153 m->count = 1;
5154 m->sections[0] = eh_frame_hdr->output_section;
5155
5156 *pm = m;
5157 pm = &m->next;
5158 }
5159
5160 if (elf_stack_flags (abfd))
5161 {
5162 amt = sizeof (struct elf_segment_map);
5163 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
5164 if (m == NULL)
5165 goto error_return;
5166 m->next = NULL;
5167 m->p_type = PT_GNU_STACK;
5168 m->p_flags = elf_stack_flags (abfd);
5169 m->p_align = bed->stack_align;
5170 m->p_flags_valid = 1;
5171 m->p_align_valid = m->p_align != 0;
5172 if (info->stacksize > 0)
5173 {
5174 m->p_size = info->stacksize;
5175 m->p_size_valid = 1;
5176 }
5177
5178 *pm = m;
5179 pm = &m->next;
5180 }
5181
5182 if (info != NULL && info->relro)
5183 {
5184 for (m = mfirst; m != NULL; m = m->next)
5185 {
5186 if (m->p_type == PT_LOAD
5187 && m->count != 0
5188 && m->sections[0]->vma >= info->relro_start
5189 && m->sections[0]->vma < info->relro_end)
5190 {
5191 i = m->count;
5192 while (--i != (unsigned) -1)
5193 {
5194 if (m->sections[i]->size > 0
5195 && (m->sections[i]->flags & (SEC_LOAD | SEC_HAS_CONTENTS))
5196 == (SEC_LOAD | SEC_HAS_CONTENTS))
5197 break;
5198 }
5199
5200 if (i != (unsigned) -1)
5201 break;
5202 }
5203 }
5204
5205 /* Make a PT_GNU_RELRO segment only when it isn't empty. */
5206 if (m != NULL)
5207 {
5208 amt = sizeof (struct elf_segment_map);
5209 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
5210 if (m == NULL)
5211 goto error_return;
5212 m->next = NULL;
5213 m->p_type = PT_GNU_RELRO;
5214 *pm = m;
5215 pm = &m->next;
5216 }
5217 }
5218
5219 free (sections);
5220 elf_seg_map (abfd) = mfirst;
5221 }
5222
5223 if (!elf_modify_segment_map (abfd, info, no_user_phdrs))
5224 return false;
5225
5226 for (count = 0, m = elf_seg_map (abfd); m != NULL; m = m->next)
5227 ++count;
5228 elf_program_header_size (abfd) = count * bed->s->sizeof_phdr;
5229
5230 return true;
5231
5232 error_return:
5233 free (sections);
5234 return false;
5235 }
5236
5237 /* Sort sections by address. */
5238
5239 static int
5240 elf_sort_sections (const void *arg1, const void *arg2)
5241 {
5242 const asection *sec1 = *(const asection **) arg1;
5243 const asection *sec2 = *(const asection **) arg2;
5244 bfd_size_type size1, size2;
5245
5246 /* Sort by LMA first, since this is the address used to
5247 place the section into a segment. */
5248 if (sec1->lma < sec2->lma)
5249 return -1;
5250 else if (sec1->lma > sec2->lma)
5251 return 1;
5252
5253 /* Then sort by VMA. Normally the LMA and the VMA will be
5254 the same, and this will do nothing. */
5255 if (sec1->vma < sec2->vma)
5256 return -1;
5257 else if (sec1->vma > sec2->vma)
5258 return 1;
5259
5260 /* Put !SEC_LOAD sections after SEC_LOAD ones. */
5261
5262 #define TOEND(x) (((x)->flags & (SEC_LOAD | SEC_THREAD_LOCAL)) == 0 \
5263 && (x)->size != 0)
5264
5265 if (TOEND (sec1))
5266 {
5267 if (!TOEND (sec2))
5268 return 1;
5269 }
5270 else if (TOEND (sec2))
5271 return -1;
5272
5273 #undef TOEND
5274
5275 /* Sort by size, to put zero sized sections
5276 before others at the same address. */
5277
5278 size1 = (sec1->flags & SEC_LOAD) ? sec1->size : 0;
5279 size2 = (sec2->flags & SEC_LOAD) ? sec2->size : 0;
5280
5281 if (size1 < size2)
5282 return -1;
5283 if (size1 > size2)
5284 return 1;
5285
5286 return sec1->target_index - sec2->target_index;
5287 }
5288
5289 /* This qsort comparison functions sorts PT_LOAD segments first and
5290 by p_paddr, for assign_file_positions_for_load_sections. */
5291
5292 static int
5293 elf_sort_segments (const void *arg1, const void *arg2)
5294 {
5295 const struct elf_segment_map *m1 = *(const struct elf_segment_map **) arg1;
5296 const struct elf_segment_map *m2 = *(const struct elf_segment_map **) arg2;
5297
5298 if (m1->p_type != m2->p_type)
5299 {
5300 if (m1->p_type == PT_NULL)
5301 return 1;
5302 if (m2->p_type == PT_NULL)
5303 return -1;
5304 return m1->p_type < m2->p_type ? -1 : 1;
5305 }
5306 if (m1->includes_filehdr != m2->includes_filehdr)
5307 return m1->includes_filehdr ? -1 : 1;
5308 if (m1->no_sort_lma != m2->no_sort_lma)
5309 return m1->no_sort_lma ? -1 : 1;
5310 if (m1->p_type == PT_LOAD && !m1->no_sort_lma)
5311 {
5312 bfd_vma lma1, lma2; /* Octets. */
5313 lma1 = 0;
5314 if (m1->p_paddr_valid)
5315 lma1 = m1->p_paddr;
5316 else if (m1->count != 0)
5317 {
5318 unsigned int opb = bfd_octets_per_byte (m1->sections[0]->owner,
5319 m1->sections[0]);
5320 lma1 = (m1->sections[0]->lma + m1->p_vaddr_offset) * opb;
5321 }
5322 lma2 = 0;
5323 if (m2->p_paddr_valid)
5324 lma2 = m2->p_paddr;
5325 else if (m2->count != 0)
5326 {
5327 unsigned int opb = bfd_octets_per_byte (m2->sections[0]->owner,
5328 m2->sections[0]);
5329 lma2 = (m2->sections[0]->lma + m2->p_vaddr_offset) * opb;
5330 }
5331 if (lma1 != lma2)
5332 return lma1 < lma2 ? -1 : 1;
5333 }
5334 if (m1->idx != m2->idx)
5335 return m1->idx < m2->idx ? -1 : 1;
5336 return 0;
5337 }
5338
5339 /* Ian Lance Taylor writes:
5340
5341 We shouldn't be using % with a negative signed number. That's just
5342 not good. We have to make sure either that the number is not
5343 negative, or that the number has an unsigned type. When the types
5344 are all the same size they wind up as unsigned. When file_ptr is a
5345 larger signed type, the arithmetic winds up as signed long long,
5346 which is wrong.
5347
5348 What we're trying to say here is something like ``increase OFF by
5349 the least amount that will cause it to be equal to the VMA modulo
5350 the page size.'' */
5351 /* In other words, something like:
5352
5353 vma_offset = m->sections[0]->vma % bed->maxpagesize;
5354 off_offset = off % bed->maxpagesize;
5355 if (vma_offset < off_offset)
5356 adjustment = vma_offset + bed->maxpagesize - off_offset;
5357 else
5358 adjustment = vma_offset - off_offset;
5359
5360 which can be collapsed into the expression below. */
5361
5362 static file_ptr
5363 vma_page_aligned_bias (bfd_vma vma, ufile_ptr off, bfd_vma maxpagesize)
5364 {
5365 /* PR binutils/16199: Handle an alignment of zero. */
5366 if (maxpagesize == 0)
5367 maxpagesize = 1;
5368 return ((vma - off) % maxpagesize);
5369 }
5370
5371 static void
5372 print_segment_map (const struct elf_segment_map *m)
5373 {
5374 unsigned int j;
5375 const char *pt = get_segment_type (m->p_type);
5376 char buf[32];
5377
5378 if (pt == NULL)
5379 {
5380 if (m->p_type >= PT_LOPROC && m->p_type <= PT_HIPROC)
5381 sprintf (buf, "LOPROC+%7.7x",
5382 (unsigned int) (m->p_type - PT_LOPROC));
5383 else if (m->p_type >= PT_LOOS && m->p_type <= PT_HIOS)
5384 sprintf (buf, "LOOS+%7.7x",
5385 (unsigned int) (m->p_type - PT_LOOS));
5386 else
5387 snprintf (buf, sizeof (buf), "%8.8x",
5388 (unsigned int) m->p_type);
5389 pt = buf;
5390 }
5391 fflush (stdout);
5392 fprintf (stderr, "%s:", pt);
5393 for (j = 0; j < m->count; j++)
5394 fprintf (stderr, " %s", m->sections [j]->name);
5395 putc ('\n',stderr);
5396 fflush (stderr);
5397 }
5398
5399 static bool
5400 write_zeros (bfd *abfd, file_ptr pos, bfd_size_type len)
5401 {
5402 void *buf;
5403 bool ret;
5404
5405 if (bfd_seek (abfd, pos, SEEK_SET) != 0)
5406 return false;
5407 buf = bfd_zmalloc (len);
5408 if (buf == NULL)
5409 return false;
5410 ret = bfd_bwrite (buf, len, abfd) == len;
5411 free (buf);
5412 return ret;
5413 }
5414
5415 /* Assign file positions to the sections based on the mapping from
5416 sections to segments. This function also sets up some fields in
5417 the file header. */
5418
5419 static bool
5420 assign_file_positions_for_load_sections (bfd *abfd,
5421 struct bfd_link_info *link_info)
5422 {
5423 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
5424 struct elf_segment_map *m;
5425 struct elf_segment_map *phdr_load_seg;
5426 Elf_Internal_Phdr *phdrs;
5427 Elf_Internal_Phdr *p;
5428 file_ptr off; /* Octets. */
5429 bfd_size_type maxpagesize;
5430 unsigned int alloc, actual;
5431 unsigned int i, j;
5432 struct elf_segment_map **sorted_seg_map;
5433 unsigned int opb = bfd_octets_per_byte (abfd, NULL);
5434
5435 if (link_info == NULL
5436 && !_bfd_elf_map_sections_to_segments (abfd, link_info))
5437 return false;
5438
5439 alloc = 0;
5440 for (m = elf_seg_map (abfd); m != NULL; m = m->next)
5441 m->idx = alloc++;
5442
5443 if (alloc)
5444 {
5445 elf_elfheader (abfd)->e_phoff = bed->s->sizeof_ehdr;
5446 elf_elfheader (abfd)->e_phentsize = bed->s->sizeof_phdr;
5447 }
5448 else
5449 {
5450 /* PR binutils/12467. */
5451 elf_elfheader (abfd)->e_phoff = 0;
5452 elf_elfheader (abfd)->e_phentsize = 0;
5453 }
5454
5455 elf_elfheader (abfd)->e_phnum = alloc;
5456
5457 if (elf_program_header_size (abfd) == (bfd_size_type) -1)
5458 {
5459 actual = alloc;
5460 elf_program_header_size (abfd) = alloc * bed->s->sizeof_phdr;
5461 }
5462 else
5463 {
5464 actual = elf_program_header_size (abfd) / bed->s->sizeof_phdr;
5465 BFD_ASSERT (elf_program_header_size (abfd)
5466 == actual * bed->s->sizeof_phdr);
5467 BFD_ASSERT (actual >= alloc);
5468 }
5469
5470 if (alloc == 0)
5471 {
5472 elf_next_file_pos (abfd) = bed->s->sizeof_ehdr;
5473 return true;
5474 }
5475
5476 /* We're writing the size in elf_program_header_size (abfd),
5477 see assign_file_positions_except_relocs, so make sure we have
5478 that amount allocated, with trailing space cleared.
5479 The variable alloc contains the computed need, while
5480 elf_program_header_size (abfd) contains the size used for the
5481 layout.
5482 See ld/emultempl/elf-generic.em:gld${EMULATION_NAME}_map_segments
5483 where the layout is forced to according to a larger size in the
5484 last iterations for the testcase ld-elf/header. */
5485 phdrs = bfd_zalloc (abfd, (actual * sizeof (*phdrs)
5486 + alloc * sizeof (*sorted_seg_map)));
5487 sorted_seg_map = (struct elf_segment_map **) (phdrs + actual);
5488 elf_tdata (abfd)->phdr = phdrs;
5489 if (phdrs == NULL)
5490 return false;
5491
5492 for (m = elf_seg_map (abfd), j = 0; m != NULL; m = m->next, j++)
5493 {
5494 sorted_seg_map[j] = m;
5495 /* If elf_segment_map is not from map_sections_to_segments, the
5496 sections may not be correctly ordered. NOTE: sorting should
5497 not be done to the PT_NOTE section of a corefile, which may
5498 contain several pseudo-sections artificially created by bfd.
5499 Sorting these pseudo-sections breaks things badly. */
5500 if (m->count > 1
5501 && !(elf_elfheader (abfd)->e_type == ET_CORE
5502 && m->p_type == PT_NOTE))
5503 {
5504 for (i = 0; i < m->count; i++)
5505 m->sections[i]->target_index = i;
5506 qsort (m->sections, (size_t) m->count, sizeof (asection *),
5507 elf_sort_sections);
5508 }
5509 }
5510 if (alloc > 1)
5511 qsort (sorted_seg_map, alloc, sizeof (*sorted_seg_map),
5512 elf_sort_segments);
5513
5514 maxpagesize = 1;
5515 if ((abfd->flags & D_PAGED) != 0)
5516 {
5517 if (link_info != NULL)
5518 maxpagesize = link_info->maxpagesize;
5519 else
5520 maxpagesize = bed->maxpagesize;
5521 }
5522
5523 /* Sections must map to file offsets past the ELF file header. */
5524 off = bed->s->sizeof_ehdr;
5525 /* And if one of the PT_LOAD headers doesn't include the program
5526 headers then we'll be mapping program headers in the usual
5527 position after the ELF file header. */
5528 phdr_load_seg = NULL;
5529 for (j = 0; j < alloc; j++)
5530 {
5531 m = sorted_seg_map[j];
5532 if (m->p_type != PT_LOAD)
5533 break;
5534 if (m->includes_phdrs)
5535 {
5536 phdr_load_seg = m;
5537 break;
5538 }
5539 }
5540 if (phdr_load_seg == NULL)
5541 off += actual * bed->s->sizeof_phdr;
5542
5543 for (j = 0; j < alloc; j++)
5544 {
5545 asection **secpp;
5546 bfd_vma off_adjust; /* Octets. */
5547 bool no_contents;
5548
5549 /* An ELF segment (described by Elf_Internal_Phdr) may contain a
5550 number of sections with contents contributing to both p_filesz
5551 and p_memsz, followed by a number of sections with no contents
5552 that just contribute to p_memsz. In this loop, OFF tracks next
5553 available file offset for PT_LOAD and PT_NOTE segments. */
5554 m = sorted_seg_map[j];
5555 p = phdrs + m->idx;
5556 p->p_type = m->p_type;
5557 p->p_flags = m->p_flags;
5558
5559 if (m->count == 0)
5560 p->p_vaddr = m->p_vaddr_offset * opb;
5561 else
5562 p->p_vaddr = (m->sections[0]->vma + m->p_vaddr_offset) * opb;
5563
5564 if (m->p_paddr_valid)
5565 p->p_paddr = m->p_paddr;
5566 else if (m->count == 0)
5567 p->p_paddr = 0;
5568 else
5569 p->p_paddr = (m->sections[0]->lma + m->p_vaddr_offset) * opb;
5570
5571 if (p->p_type == PT_LOAD
5572 && (abfd->flags & D_PAGED) != 0)
5573 {
5574 /* p_align in demand paged PT_LOAD segments effectively stores
5575 the maximum page size. When copying an executable with
5576 objcopy, we set m->p_align from the input file. Use this
5577 value for maxpagesize rather than bed->maxpagesize, which
5578 may be different. Note that we use maxpagesize for PT_TLS
5579 segment alignment later in this function, so we are relying
5580 on at least one PT_LOAD segment appearing before a PT_TLS
5581 segment. */
5582 if (m->p_align_valid)
5583 maxpagesize = m->p_align;
5584
5585 p->p_align = maxpagesize;
5586 }
5587 else if (m->p_align_valid)
5588 p->p_align = m->p_align;
5589 else if (m->count == 0)
5590 p->p_align = 1 << bed->s->log_file_align;
5591
5592 if (m == phdr_load_seg)
5593 {
5594 if (!m->includes_filehdr)
5595 p->p_offset = off;
5596 off += actual * bed->s->sizeof_phdr;
5597 }
5598
5599 no_contents = false;
5600 off_adjust = 0;
5601 if (p->p_type == PT_LOAD
5602 && m->count > 0)
5603 {
5604 bfd_size_type align; /* Bytes. */
5605 unsigned int align_power = 0;
5606
5607 if (m->p_align_valid)
5608 align = p->p_align;
5609 else
5610 {
5611 for (i = 0, secpp = m->sections; i < m->count; i++, secpp++)
5612 {
5613 unsigned int secalign;
5614
5615 secalign = bfd_section_alignment (*secpp);
5616 if (secalign > align_power)
5617 align_power = secalign;
5618 }
5619 align = (bfd_size_type) 1 << align_power;
5620 if (align < maxpagesize)
5621 align = maxpagesize;
5622 }
5623
5624 for (i = 0; i < m->count; i++)
5625 if ((m->sections[i]->flags & (SEC_LOAD | SEC_HAS_CONTENTS)) == 0)
5626 /* If we aren't making room for this section, then
5627 it must be SHT_NOBITS regardless of what we've
5628 set via struct bfd_elf_special_section. */
5629 elf_section_type (m->sections[i]) = SHT_NOBITS;
5630
5631 /* Find out whether this segment contains any loadable
5632 sections. */
5633 no_contents = true;
5634 for (i = 0; i < m->count; i++)
5635 if (elf_section_type (m->sections[i]) != SHT_NOBITS)
5636 {
5637 no_contents = false;
5638 break;
5639 }
5640
5641 off_adjust = vma_page_aligned_bias (p->p_vaddr, off, align * opb);
5642
5643 /* Broken hardware and/or kernel require that files do not
5644 map the same page with different permissions on some hppa
5645 processors. */
5646 if (j != 0
5647 && (abfd->flags & D_PAGED) != 0
5648 && bed->no_page_alias
5649 && (off & (maxpagesize - 1)) != 0
5650 && ((off & -maxpagesize)
5651 == ((off + off_adjust) & -maxpagesize)))
5652 off_adjust += maxpagesize;
5653 off += off_adjust;
5654 if (no_contents)
5655 {
5656 /* We shouldn't need to align the segment on disk since
5657 the segment doesn't need file space, but the gABI
5658 arguably requires the alignment and glibc ld.so
5659 checks it. So to comply with the alignment
5660 requirement but not waste file space, we adjust
5661 p_offset for just this segment. (OFF_ADJUST is
5662 subtracted from OFF later.) This may put p_offset
5663 past the end of file, but that shouldn't matter. */
5664 }
5665 else
5666 off_adjust = 0;
5667 }
5668 /* Make sure the .dynamic section is the first section in the
5669 PT_DYNAMIC segment. */
5670 else if (p->p_type == PT_DYNAMIC
5671 && m->count > 1
5672 && strcmp (m->sections[0]->name, ".dynamic") != 0)
5673 {
5674 _bfd_error_handler
5675 (_("%pB: The first section in the PT_DYNAMIC segment"
5676 " is not the .dynamic section"),
5677 abfd);
5678 bfd_set_error (bfd_error_bad_value);
5679 return false;
5680 }
5681 /* Set the note section type to SHT_NOTE. */
5682 else if (p->p_type == PT_NOTE)
5683 for (i = 0; i < m->count; i++)
5684 elf_section_type (m->sections[i]) = SHT_NOTE;
5685
5686 if (m->includes_filehdr)
5687 {
5688 if (!m->p_flags_valid)
5689 p->p_flags |= PF_R;
5690 p->p_filesz = bed->s->sizeof_ehdr;
5691 p->p_memsz = bed->s->sizeof_ehdr;
5692 if (p->p_type == PT_LOAD)
5693 {
5694 if (m->count > 0)
5695 {
5696 if (p->p_vaddr < (bfd_vma) off
5697 || (!m->p_paddr_valid
5698 && p->p_paddr < (bfd_vma) off))
5699 {
5700 _bfd_error_handler
5701 (_("%pB: not enough room for program headers,"
5702 " try linking with -N"),
5703 abfd);
5704 bfd_set_error (bfd_error_bad_value);
5705 return false;
5706 }
5707 p->p_vaddr -= off;
5708 if (!m->p_paddr_valid)
5709 p->p_paddr -= off;
5710 }
5711 }
5712 else if (sorted_seg_map[0]->includes_filehdr)
5713 {
5714 Elf_Internal_Phdr *filehdr = phdrs + sorted_seg_map[0]->idx;
5715 p->p_vaddr = filehdr->p_vaddr;
5716 if (!m->p_paddr_valid)
5717 p->p_paddr = filehdr->p_paddr;
5718 }
5719 }
5720
5721 if (m->includes_phdrs)
5722 {
5723 if (!m->p_flags_valid)
5724 p->p_flags |= PF_R;
5725 p->p_filesz += actual * bed->s->sizeof_phdr;
5726 p->p_memsz += actual * bed->s->sizeof_phdr;
5727 if (!m->includes_filehdr)
5728 {
5729 if (p->p_type == PT_LOAD)
5730 {
5731 elf_elfheader (abfd)->e_phoff = p->p_offset;
5732 if (m->count > 0)
5733 {
5734 p->p_vaddr -= off - p->p_offset;
5735 if (!m->p_paddr_valid)
5736 p->p_paddr -= off - p->p_offset;
5737 }
5738 }
5739 else if (phdr_load_seg != NULL)
5740 {
5741 Elf_Internal_Phdr *phdr = phdrs + phdr_load_seg->idx;
5742 bfd_vma phdr_off = 0; /* Octets. */
5743 if (phdr_load_seg->includes_filehdr)
5744 phdr_off = bed->s->sizeof_ehdr;
5745 p->p_vaddr = phdr->p_vaddr + phdr_off;
5746 if (!m->p_paddr_valid)
5747 p->p_paddr = phdr->p_paddr + phdr_off;
5748 p->p_offset = phdr->p_offset + phdr_off;
5749 }
5750 else
5751 p->p_offset = bed->s->sizeof_ehdr;
5752 }
5753 }
5754
5755 if (p->p_type == PT_LOAD
5756 || (p->p_type == PT_NOTE && bfd_get_format (abfd) == bfd_core))
5757 {
5758 if (!m->includes_filehdr && !m->includes_phdrs)
5759 {
5760 p->p_offset = off;
5761 if (no_contents)
5762 {
5763 /* Put meaningless p_offset for PT_LOAD segments
5764 without file contents somewhere within the first
5765 page, in an attempt to not point past EOF. */
5766 bfd_size_type align = maxpagesize;
5767 if (align < p->p_align)
5768 align = p->p_align;
5769 if (align < 1)
5770 align = 1;
5771 p->p_offset = off % align;
5772 }
5773 }
5774 else
5775 {
5776 file_ptr adjust; /* Octets. */
5777
5778 adjust = off - (p->p_offset + p->p_filesz);
5779 if (!no_contents)
5780 p->p_filesz += adjust;
5781 p->p_memsz += adjust;
5782 }
5783 }
5784
5785 /* Set up p_filesz, p_memsz, p_align and p_flags from the section
5786 maps. Set filepos for sections in PT_LOAD segments, and in
5787 core files, for sections in PT_NOTE segments.
5788 assign_file_positions_for_non_load_sections will set filepos
5789 for other sections and update p_filesz for other segments. */
5790 for (i = 0, secpp = m->sections; i < m->count; i++, secpp++)
5791 {
5792 asection *sec;
5793 bfd_size_type align;
5794 Elf_Internal_Shdr *this_hdr;
5795
5796 sec = *secpp;
5797 this_hdr = &elf_section_data (sec)->this_hdr;
5798 align = (bfd_size_type) 1 << bfd_section_alignment (sec);
5799
5800 if ((p->p_type == PT_LOAD
5801 || p->p_type == PT_TLS)
5802 && (this_hdr->sh_type != SHT_NOBITS
5803 || ((this_hdr->sh_flags & SHF_ALLOC) != 0
5804 && ((this_hdr->sh_flags & SHF_TLS) == 0
5805 || p->p_type == PT_TLS))))
5806 {
5807 bfd_vma p_start = p->p_paddr; /* Octets. */
5808 bfd_vma p_end = p_start + p->p_memsz; /* Octets. */
5809 bfd_vma s_start = sec->lma * opb; /* Octets. */
5810 bfd_vma adjust = s_start - p_end; /* Octets. */
5811
5812 if (adjust != 0
5813 && (s_start < p_end
5814 || p_end < p_start))
5815 {
5816 _bfd_error_handler
5817 /* xgettext:c-format */
5818 (_("%pB: section %pA lma %#" PRIx64 " adjusted to %#" PRIx64),
5819 abfd, sec, (uint64_t) s_start / opb,
5820 (uint64_t) p_end / opb);
5821 adjust = 0;
5822 sec->lma = p_end / opb;
5823 }
5824 p->p_memsz += adjust;
5825
5826 if (p->p_type == PT_LOAD)
5827 {
5828 if (this_hdr->sh_type != SHT_NOBITS)
5829 {
5830 off_adjust = 0;
5831 if (p->p_filesz + adjust < p->p_memsz)
5832 {
5833 /* We have a PROGBITS section following NOBITS ones.
5834 Allocate file space for the NOBITS section(s) and
5835 zero it. */
5836 adjust = p->p_memsz - p->p_filesz;
5837 if (!write_zeros (abfd, off, adjust))
5838 return false;
5839 }
5840 }
5841 /* We only adjust sh_offset in SHT_NOBITS sections
5842 as would seem proper for their address when the
5843 section is first in the segment. sh_offset
5844 doesn't really have any significance for
5845 SHT_NOBITS anyway, apart from a notional position
5846 relative to other sections. Historically we
5847 didn't bother with adjusting sh_offset and some
5848 programs depend on it not being adjusted. See
5849 pr12921 and pr25662. */
5850 if (this_hdr->sh_type != SHT_NOBITS || i == 0)
5851 {
5852 off += adjust;
5853 if (this_hdr->sh_type == SHT_NOBITS)
5854 off_adjust += adjust;
5855 }
5856 }
5857 if (this_hdr->sh_type != SHT_NOBITS)
5858 p->p_filesz += adjust;
5859 }
5860
5861 if (p->p_type == PT_NOTE && bfd_get_format (abfd) == bfd_core)
5862 {
5863 /* The section at i == 0 is the one that actually contains
5864 everything. */
5865 if (i == 0)
5866 {
5867 this_hdr->sh_offset = sec->filepos = off;
5868 off += this_hdr->sh_size;
5869 p->p_filesz = this_hdr->sh_size;
5870 p->p_memsz = 0;
5871 p->p_align = 1;
5872 }
5873 else
5874 {
5875 /* The rest are fake sections that shouldn't be written. */
5876 sec->filepos = 0;
5877 sec->size = 0;
5878 sec->flags = 0;
5879 continue;
5880 }
5881 }
5882 else
5883 {
5884 if (p->p_type == PT_LOAD)
5885 {
5886 this_hdr->sh_offset = sec->filepos = off;
5887 if (this_hdr->sh_type != SHT_NOBITS)
5888 off += this_hdr->sh_size;
5889 }
5890 else if (this_hdr->sh_type == SHT_NOBITS
5891 && (this_hdr->sh_flags & SHF_TLS) != 0
5892 && this_hdr->sh_offset == 0)
5893 {
5894 /* This is a .tbss section that didn't get a PT_LOAD.
5895 (See _bfd_elf_map_sections_to_segments "Create a
5896 final PT_LOAD".) Set sh_offset to the value it
5897 would have if we had created a zero p_filesz and
5898 p_memsz PT_LOAD header for the section. This
5899 also makes the PT_TLS header have the same
5900 p_offset value. */
5901 bfd_vma adjust = vma_page_aligned_bias (this_hdr->sh_addr,
5902 off, align);
5903 this_hdr->sh_offset = sec->filepos = off + adjust;
5904 }
5905
5906 if (this_hdr->sh_type != SHT_NOBITS)
5907 {
5908 p->p_filesz += this_hdr->sh_size;
5909 /* A load section without SHF_ALLOC is something like
5910 a note section in a PT_NOTE segment. These take
5911 file space but are not loaded into memory. */
5912 if ((this_hdr->sh_flags & SHF_ALLOC) != 0)
5913 p->p_memsz += this_hdr->sh_size;
5914 }
5915 else if ((this_hdr->sh_flags & SHF_ALLOC) != 0)
5916 {
5917 if (p->p_type == PT_TLS)
5918 p->p_memsz += this_hdr->sh_size;
5919
5920 /* .tbss is special. It doesn't contribute to p_memsz of
5921 normal segments. */
5922 else if ((this_hdr->sh_flags & SHF_TLS) == 0)
5923 p->p_memsz += this_hdr->sh_size;
5924 }
5925
5926 if (align > p->p_align
5927 && !m->p_align_valid
5928 && (p->p_type != PT_LOAD
5929 || (abfd->flags & D_PAGED) == 0))
5930 p->p_align = align;
5931 }
5932
5933 if (!m->p_flags_valid)
5934 {
5935 p->p_flags |= PF_R;
5936 if ((this_hdr->sh_flags & SHF_EXECINSTR) != 0)
5937 p->p_flags |= PF_X;
5938 if ((this_hdr->sh_flags & SHF_WRITE) != 0)
5939 p->p_flags |= PF_W;
5940 }
5941 }
5942
5943 off -= off_adjust;
5944
5945 /* PR ld/20815 - Check that the program header segment, if
5946 present, will be loaded into memory. */
5947 if (p->p_type == PT_PHDR
5948 && phdr_load_seg == NULL
5949 && !(bed->elf_backend_allow_non_load_phdr != NULL
5950 && bed->elf_backend_allow_non_load_phdr (abfd, phdrs, alloc)))
5951 {
5952 /* The fix for this error is usually to edit the linker script being
5953 used and set up the program headers manually. Either that or
5954 leave room for the headers at the start of the SECTIONS. */
5955 _bfd_error_handler (_("%pB: error: PHDR segment not covered"
5956 " by LOAD segment"),
5957 abfd);
5958 if (link_info == NULL)
5959 return false;
5960 /* Arrange for the linker to exit with an error, deleting
5961 the output file unless --noinhibit-exec is given. */
5962 link_info->callbacks->info ("%X");
5963 }
5964
5965 /* Check that all sections are in a PT_LOAD segment.
5966 Don't check funky gdb generated core files. */
5967 if (p->p_type == PT_LOAD && bfd_get_format (abfd) != bfd_core)
5968 {
5969 bool check_vma = true;
5970
5971 for (i = 1; i < m->count; i++)
5972 if (m->sections[i]->vma == m->sections[i - 1]->vma
5973 && ELF_SECTION_SIZE (&(elf_section_data (m->sections[i])
5974 ->this_hdr), p) != 0
5975 && ELF_SECTION_SIZE (&(elf_section_data (m->sections[i - 1])
5976 ->this_hdr), p) != 0)
5977 {
5978 /* Looks like we have overlays packed into the segment. */
5979 check_vma = false;
5980 break;
5981 }
5982
5983 for (i = 0; i < m->count; i++)
5984 {
5985 Elf_Internal_Shdr *this_hdr;
5986 asection *sec;
5987
5988 sec = m->sections[i];
5989 this_hdr = &(elf_section_data(sec)->this_hdr);
5990 if (!ELF_SECTION_IN_SEGMENT_1 (this_hdr, p, check_vma, 0)
5991 && !ELF_TBSS_SPECIAL (this_hdr, p))
5992 {
5993 _bfd_error_handler
5994 /* xgettext:c-format */
5995 (_("%pB: section `%pA' can't be allocated in segment %d"),
5996 abfd, sec, j);
5997 print_segment_map (m);
5998 }
5999 }
6000 }
6001 }
6002
6003 elf_next_file_pos (abfd) = off;
6004
6005 if (link_info != NULL
6006 && phdr_load_seg != NULL
6007 && phdr_load_seg->includes_filehdr)
6008 {
6009 /* There is a segment that contains both the file headers and the
6010 program headers, so provide a symbol __ehdr_start pointing there.
6011 A program can use this to examine itself robustly. */
6012
6013 struct elf_link_hash_entry *hash
6014 = elf_link_hash_lookup (elf_hash_table (link_info), "__ehdr_start",
6015 false, false, true);
6016 /* If the symbol was referenced and not defined, define it. */
6017 if (hash != NULL
6018 && (hash->root.type == bfd_link_hash_new
6019 || hash->root.type == bfd_link_hash_undefined
6020 || hash->root.type == bfd_link_hash_undefweak
6021 || hash->root.type == bfd_link_hash_common))
6022 {
6023 asection *s = NULL;
6024 bfd_vma filehdr_vaddr = phdrs[phdr_load_seg->idx].p_vaddr / opb;
6025
6026 if (phdr_load_seg->count != 0)
6027 /* The segment contains sections, so use the first one. */
6028 s = phdr_load_seg->sections[0];
6029 else
6030 /* Use the first (i.e. lowest-addressed) section in any segment. */
6031 for (m = elf_seg_map (abfd); m != NULL; m = m->next)
6032 if (m->p_type == PT_LOAD && m->count != 0)
6033 {
6034 s = m->sections[0];
6035 break;
6036 }
6037
6038 if (s != NULL)
6039 {
6040 hash->root.u.def.value = filehdr_vaddr - s->vma;
6041 hash->root.u.def.section = s;
6042 }
6043 else
6044 {
6045 hash->root.u.def.value = filehdr_vaddr;
6046 hash->root.u.def.section = bfd_abs_section_ptr;
6047 }
6048
6049 hash->root.type = bfd_link_hash_defined;
6050 hash->def_regular = 1;
6051 hash->non_elf = 0;
6052 }
6053 }
6054
6055 return true;
6056 }
6057
6058 /* Determine if a bfd is a debuginfo file. Unfortunately there
6059 is no defined method for detecting such files, so we have to
6060 use heuristics instead. */
6061
6062 bool
6063 is_debuginfo_file (bfd *abfd)
6064 {
6065 if (abfd == NULL || bfd_get_flavour (abfd) != bfd_target_elf_flavour)
6066 return false;
6067
6068 Elf_Internal_Shdr **start_headers = elf_elfsections (abfd);
6069 Elf_Internal_Shdr **end_headers = start_headers + elf_numsections (abfd);
6070 Elf_Internal_Shdr **headerp;
6071
6072 for (headerp = start_headers; headerp < end_headers; headerp ++)
6073 {
6074 Elf_Internal_Shdr *header = * headerp;
6075
6076 /* Debuginfo files do not have any allocated SHT_PROGBITS sections.
6077 The only allocated sections are SHT_NOBITS or SHT_NOTES. */
6078 if ((header->sh_flags & SHF_ALLOC) == SHF_ALLOC
6079 && header->sh_type != SHT_NOBITS
6080 && header->sh_type != SHT_NOTE)
6081 return false;
6082 }
6083
6084 return true;
6085 }
6086
6087 /* Assign file positions for the other sections, except for compressed debugging
6088 and other sections assigned in _bfd_elf_assign_file_positions_for_non_load(). */
6089
6090 static bool
6091 assign_file_positions_for_non_load_sections (bfd *abfd,
6092 struct bfd_link_info *link_info)
6093 {
6094 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
6095 Elf_Internal_Shdr **i_shdrpp;
6096 Elf_Internal_Shdr **hdrpp, **end_hdrpp;
6097 Elf_Internal_Phdr *phdrs;
6098 Elf_Internal_Phdr *p;
6099 struct elf_segment_map *m;
6100 file_ptr off;
6101 unsigned int opb = bfd_octets_per_byte (abfd, NULL);
6102 bfd_vma maxpagesize;
6103
6104 if (link_info != NULL)
6105 maxpagesize = link_info->maxpagesize;
6106 else
6107 maxpagesize = bed->maxpagesize;
6108 i_shdrpp = elf_elfsections (abfd);
6109 end_hdrpp = i_shdrpp + elf_numsections (abfd);
6110 off = elf_next_file_pos (abfd);
6111 for (hdrpp = i_shdrpp + 1; hdrpp < end_hdrpp; hdrpp++)
6112 {
6113 Elf_Internal_Shdr *hdr;
6114
6115 hdr = *hdrpp;
6116 if (hdr->bfd_section != NULL
6117 && (hdr->bfd_section->filepos != 0
6118 || (hdr->sh_type == SHT_NOBITS
6119 && hdr->contents == NULL)))
6120 BFD_ASSERT (hdr->sh_offset == hdr->bfd_section->filepos);
6121 else if ((hdr->sh_flags & SHF_ALLOC) != 0)
6122 {
6123 if (hdr->sh_size != 0
6124 /* PR 24717 - debuginfo files are known to be not strictly
6125 compliant with the ELF standard. In particular they often
6126 have .note.gnu.property sections that are outside of any
6127 loadable segment. This is not a problem for such files,
6128 so do not warn about them. */
6129 && ! is_debuginfo_file (abfd))
6130 _bfd_error_handler
6131 /* xgettext:c-format */
6132 (_("%pB: warning: allocated section `%s' not in segment"),
6133 abfd,
6134 (hdr->bfd_section == NULL
6135 ? "*unknown*"
6136 : hdr->bfd_section->name));
6137 /* We don't need to page align empty sections. */
6138 if ((abfd->flags & D_PAGED) != 0 && hdr->sh_size != 0)
6139 off += vma_page_aligned_bias (hdr->sh_addr, off,
6140 maxpagesize);
6141 else
6142 off += vma_page_aligned_bias (hdr->sh_addr, off,
6143 hdr->sh_addralign);
6144 off = _bfd_elf_assign_file_position_for_section (hdr, off,
6145 false);
6146 }
6147 else if (((hdr->sh_type == SHT_REL || hdr->sh_type == SHT_RELA)
6148 && hdr->bfd_section == NULL)
6149 /* We don't know the offset of these sections yet: their size has
6150 not been decided. */
6151 || (hdr->bfd_section != NULL
6152 && (hdr->bfd_section->flags & SEC_ELF_COMPRESS
6153 || (bfd_section_is_ctf (hdr->bfd_section)
6154 && abfd->is_linker_output)))
6155 || hdr == i_shdrpp[elf_onesymtab (abfd)]
6156 || (elf_symtab_shndx_list (abfd) != NULL
6157 && hdr == i_shdrpp[elf_symtab_shndx_list (abfd)->ndx])
6158 || hdr == i_shdrpp[elf_strtab_sec (abfd)]
6159 || hdr == i_shdrpp[elf_shstrtab_sec (abfd)])
6160 hdr->sh_offset = -1;
6161 else
6162 off = _bfd_elf_assign_file_position_for_section (hdr, off, true);
6163 }
6164 elf_next_file_pos (abfd) = off;
6165
6166 /* Now that we have set the section file positions, we can set up
6167 the file positions for the non PT_LOAD segments. */
6168 phdrs = elf_tdata (abfd)->phdr;
6169 for (m = elf_seg_map (abfd), p = phdrs; m != NULL; m = m->next, p++)
6170 {
6171 if (p->p_type == PT_GNU_RELRO)
6172 {
6173 bfd_vma start, end; /* Bytes. */
6174 bool ok;
6175
6176 if (link_info != NULL)
6177 {
6178 /* During linking the range of the RELRO segment is passed
6179 in link_info. Note that there may be padding between
6180 relro_start and the first RELRO section. */
6181 start = link_info->relro_start;
6182 end = link_info->relro_end;
6183 }
6184 else if (m->count != 0)
6185 {
6186 if (!m->p_size_valid)
6187 abort ();
6188 start = m->sections[0]->vma;
6189 end = start + m->p_size / opb;
6190 }
6191 else
6192 {
6193 start = 0;
6194 end = 0;
6195 }
6196
6197 ok = false;
6198 if (start < end)
6199 {
6200 struct elf_segment_map *lm;
6201 const Elf_Internal_Phdr *lp;
6202 unsigned int i;
6203
6204 /* Find a LOAD segment containing a section in the RELRO
6205 segment. */
6206 for (lm = elf_seg_map (abfd), lp = phdrs;
6207 lm != NULL;
6208 lm = lm->next, lp++)
6209 {
6210 if (lp->p_type == PT_LOAD
6211 && lm->count != 0
6212 && (lm->sections[lm->count - 1]->vma
6213 + (!IS_TBSS (lm->sections[lm->count - 1])
6214 ? lm->sections[lm->count - 1]->size / opb
6215 : 0)) > start
6216 && lm->sections[0]->vma < end)
6217 break;
6218 }
6219
6220 if (lm != NULL)
6221 {
6222 /* Find the section starting the RELRO segment. */
6223 for (i = 0; i < lm->count; i++)
6224 {
6225 asection *s = lm->sections[i];
6226 if (s->vma >= start
6227 && s->vma < end
6228 && s->size != 0)
6229 break;
6230 }
6231
6232 if (i < lm->count)
6233 {
6234 p->p_vaddr = lm->sections[i]->vma * opb;
6235 p->p_paddr = lm->sections[i]->lma * opb;
6236 p->p_offset = lm->sections[i]->filepos;
6237 p->p_memsz = end * opb - p->p_vaddr;
6238 p->p_filesz = p->p_memsz;
6239
6240 /* The RELRO segment typically ends a few bytes
6241 into .got.plt but other layouts are possible.
6242 In cases where the end does not match any
6243 loaded section (for instance is in file
6244 padding), trim p_filesz back to correspond to
6245 the end of loaded section contents. */
6246 if (p->p_filesz > lp->p_vaddr + lp->p_filesz - p->p_vaddr)
6247 p->p_filesz = lp->p_vaddr + lp->p_filesz - p->p_vaddr;
6248
6249 /* Preserve the alignment and flags if they are
6250 valid. The gold linker generates RW/4 for
6251 the PT_GNU_RELRO section. It is better for
6252 objcopy/strip to honor these attributes
6253 otherwise gdb will choke when using separate
6254 debug files. */
6255 if (!m->p_align_valid)
6256 p->p_align = 1;
6257 if (!m->p_flags_valid)
6258 p->p_flags = PF_R;
6259 ok = true;
6260 }
6261 }
6262 }
6263 if (link_info != NULL)
6264 BFD_ASSERT (ok);
6265 if (!ok)
6266 memset (p, 0, sizeof *p);
6267 }
6268 else if (p->p_type == PT_GNU_STACK)
6269 {
6270 if (m->p_size_valid)
6271 p->p_memsz = m->p_size;
6272 }
6273 else if (m->count != 0)
6274 {
6275 unsigned int i;
6276
6277 if (p->p_type != PT_LOAD
6278 && (p->p_type != PT_NOTE
6279 || bfd_get_format (abfd) != bfd_core))
6280 {
6281 /* A user specified segment layout may include a PHDR
6282 segment that overlaps with a LOAD segment... */
6283 if (p->p_type == PT_PHDR)
6284 {
6285 m->count = 0;
6286 continue;
6287 }
6288
6289 if (m->includes_filehdr || m->includes_phdrs)
6290 {
6291 /* PR 17512: file: 2195325e. */
6292 _bfd_error_handler
6293 (_("%pB: error: non-load segment %d includes file header "
6294 "and/or program header"),
6295 abfd, (int) (p - phdrs));
6296 return false;
6297 }
6298
6299 p->p_filesz = 0;
6300 p->p_offset = m->sections[0]->filepos;
6301 for (i = m->count; i-- != 0;)
6302 {
6303 asection *sect = m->sections[i];
6304 Elf_Internal_Shdr *hdr = &elf_section_data (sect)->this_hdr;
6305 if (hdr->sh_type != SHT_NOBITS)
6306 {
6307 p->p_filesz = (sect->filepos - m->sections[0]->filepos
6308 + hdr->sh_size);
6309 /* NB: p_memsz of the loadable PT_NOTE segment
6310 should be the same as p_filesz. */
6311 if (p->p_type == PT_NOTE
6312 && (hdr->sh_flags & SHF_ALLOC) != 0)
6313 p->p_memsz = p->p_filesz;
6314 break;
6315 }
6316 }
6317 }
6318 }
6319 }
6320
6321 return true;
6322 }
6323
6324 static elf_section_list *
6325 find_section_in_list (unsigned int i, elf_section_list * list)
6326 {
6327 for (;list != NULL; list = list->next)
6328 if (list->ndx == i)
6329 break;
6330 return list;
6331 }
6332
6333 /* Work out the file positions of all the sections. This is called by
6334 _bfd_elf_compute_section_file_positions. All the section sizes and
6335 VMAs must be known before this is called.
6336
6337 Reloc sections come in two flavours: Those processed specially as
6338 "side-channel" data attached to a section to which they apply, and those that
6339 bfd doesn't process as relocations. The latter sort are stored in a normal
6340 bfd section by bfd_section_from_shdr. We don't consider the former sort
6341 here, unless they form part of the loadable image. Reloc sections not
6342 assigned here (and compressed debugging sections and CTF sections which
6343 nothing else in the file can rely upon) will be handled later by
6344 assign_file_positions_for_relocs.
6345
6346 We also don't set the positions of the .symtab and .strtab here. */
6347
6348 static bool
6349 assign_file_positions_except_relocs (bfd *abfd,
6350 struct bfd_link_info *link_info)
6351 {
6352 struct elf_obj_tdata *tdata = elf_tdata (abfd);
6353 Elf_Internal_Ehdr *i_ehdrp = elf_elfheader (abfd);
6354 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
6355 unsigned int alloc;
6356
6357 if ((abfd->flags & (EXEC_P | DYNAMIC)) == 0
6358 && bfd_get_format (abfd) != bfd_core)
6359 {
6360 Elf_Internal_Shdr ** const i_shdrpp = elf_elfsections (abfd);
6361 unsigned int num_sec = elf_numsections (abfd);
6362 Elf_Internal_Shdr **hdrpp;
6363 unsigned int i;
6364 file_ptr off;
6365
6366 /* Start after the ELF header. */
6367 off = i_ehdrp->e_ehsize;
6368
6369 /* We are not creating an executable, which means that we are
6370 not creating a program header, and that the actual order of
6371 the sections in the file is unimportant. */
6372 for (i = 1, hdrpp = i_shdrpp + 1; i < num_sec; i++, hdrpp++)
6373 {
6374 Elf_Internal_Shdr *hdr;
6375
6376 hdr = *hdrpp;
6377 if (((hdr->sh_type == SHT_REL || hdr->sh_type == SHT_RELA)
6378 && hdr->bfd_section == NULL)
6379 /* Do not assign offsets for these sections yet: we don't know
6380 their sizes. */
6381 || (hdr->bfd_section != NULL
6382 && (hdr->bfd_section->flags & SEC_ELF_COMPRESS
6383 || (bfd_section_is_ctf (hdr->bfd_section)
6384 && abfd->is_linker_output)))
6385 || i == elf_onesymtab (abfd)
6386 || (elf_symtab_shndx_list (abfd) != NULL
6387 && hdr == i_shdrpp[elf_symtab_shndx_list (abfd)->ndx])
6388 || i == elf_strtab_sec (abfd)
6389 || i == elf_shstrtab_sec (abfd))
6390 {
6391 hdr->sh_offset = -1;
6392 }
6393 else
6394 off = _bfd_elf_assign_file_position_for_section (hdr, off, true);
6395 }
6396
6397 elf_next_file_pos (abfd) = off;
6398 elf_program_header_size (abfd) = 0;
6399 }
6400 else
6401 {
6402 /* Assign file positions for the loaded sections based on the
6403 assignment of sections to segments. */
6404 if (!assign_file_positions_for_load_sections (abfd, link_info))
6405 return false;
6406
6407 /* And for non-load sections. */
6408 if (!assign_file_positions_for_non_load_sections (abfd, link_info))
6409 return false;
6410 }
6411
6412 if (!(*bed->elf_backend_modify_headers) (abfd, link_info))
6413 return false;
6414
6415 /* Write out the program headers. */
6416 alloc = i_ehdrp->e_phnum;
6417 if (alloc != 0)
6418 {
6419 if (bfd_seek (abfd, i_ehdrp->e_phoff, SEEK_SET) != 0
6420 || bed->s->write_out_phdrs (abfd, tdata->phdr, alloc) != 0)
6421 return false;
6422 }
6423
6424 return true;
6425 }
6426
6427 bool
6428 _bfd_elf_init_file_header (bfd *abfd,
6429 struct bfd_link_info *info ATTRIBUTE_UNUSED)
6430 {
6431 Elf_Internal_Ehdr *i_ehdrp; /* Elf file header, internal form. */
6432 struct elf_strtab_hash *shstrtab;
6433 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
6434
6435 i_ehdrp = elf_elfheader (abfd);
6436
6437 shstrtab = _bfd_elf_strtab_init ();
6438 if (shstrtab == NULL)
6439 return false;
6440
6441 elf_shstrtab (abfd) = shstrtab;
6442
6443 i_ehdrp->e_ident[EI_MAG0] = ELFMAG0;
6444 i_ehdrp->e_ident[EI_MAG1] = ELFMAG1;
6445 i_ehdrp->e_ident[EI_MAG2] = ELFMAG2;
6446 i_ehdrp->e_ident[EI_MAG3] = ELFMAG3;
6447
6448 i_ehdrp->e_ident[EI_CLASS] = bed->s->elfclass;
6449 i_ehdrp->e_ident[EI_DATA] =
6450 bfd_big_endian (abfd) ? ELFDATA2MSB : ELFDATA2LSB;
6451 i_ehdrp->e_ident[EI_VERSION] = bed->s->ev_current;
6452
6453 if ((abfd->flags & DYNAMIC) != 0)
6454 i_ehdrp->e_type = ET_DYN;
6455 else if ((abfd->flags & EXEC_P) != 0)
6456 i_ehdrp->e_type = ET_EXEC;
6457 else if (bfd_get_format (abfd) == bfd_core)
6458 i_ehdrp->e_type = ET_CORE;
6459 else
6460 i_ehdrp->e_type = ET_REL;
6461
6462 switch (bfd_get_arch (abfd))
6463 {
6464 case bfd_arch_unknown:
6465 i_ehdrp->e_machine = EM_NONE;
6466 break;
6467
6468 /* There used to be a long list of cases here, each one setting
6469 e_machine to the same EM_* macro #defined as ELF_MACHINE_CODE
6470 in the corresponding bfd definition. To avoid duplication,
6471 the switch was removed. Machines that need special handling
6472 can generally do it in elf_backend_final_write_processing(),
6473 unless they need the information earlier than the final write.
6474 Such need can generally be supplied by replacing the tests for
6475 e_machine with the conditions used to determine it. */
6476 default:
6477 i_ehdrp->e_machine = bed->elf_machine_code;
6478 }
6479
6480 i_ehdrp->e_version = bed->s->ev_current;
6481 i_ehdrp->e_ehsize = bed->s->sizeof_ehdr;
6482
6483 /* No program header, for now. */
6484 i_ehdrp->e_phoff = 0;
6485 i_ehdrp->e_phentsize = 0;
6486 i_ehdrp->e_phnum = 0;
6487
6488 /* Each bfd section is section header entry. */
6489 i_ehdrp->e_entry = bfd_get_start_address (abfd);
6490 i_ehdrp->e_shentsize = bed->s->sizeof_shdr;
6491
6492 elf_tdata (abfd)->symtab_hdr.sh_name =
6493 (unsigned int) _bfd_elf_strtab_add (shstrtab, ".symtab", false);
6494 elf_tdata (abfd)->strtab_hdr.sh_name =
6495 (unsigned int) _bfd_elf_strtab_add (shstrtab, ".strtab", false);
6496 elf_tdata (abfd)->shstrtab_hdr.sh_name =
6497 (unsigned int) _bfd_elf_strtab_add (shstrtab, ".shstrtab", false);
6498 if (elf_tdata (abfd)->symtab_hdr.sh_name == (unsigned int) -1
6499 || elf_tdata (abfd)->strtab_hdr.sh_name == (unsigned int) -1
6500 || elf_tdata (abfd)->shstrtab_hdr.sh_name == (unsigned int) -1)
6501 return false;
6502
6503 return true;
6504 }
6505
6506 /* Set e_type in ELF header to ET_EXEC for -pie -Ttext-segment=.
6507
6508 FIXME: We used to have code here to sort the PT_LOAD segments into
6509 ascending order, as per the ELF spec. But this breaks some programs,
6510 including the Linux kernel. But really either the spec should be
6511 changed or the programs updated. */
6512
6513 bool
6514 _bfd_elf_modify_headers (bfd *obfd, struct bfd_link_info *link_info)
6515 {
6516 if (link_info != NULL && bfd_link_pie (link_info))
6517 {
6518 Elf_Internal_Ehdr *i_ehdrp = elf_elfheader (obfd);
6519 unsigned int num_segments = i_ehdrp->e_phnum;
6520 struct elf_obj_tdata *tdata = elf_tdata (obfd);
6521 Elf_Internal_Phdr *segment = tdata->phdr;
6522 Elf_Internal_Phdr *end_segment = &segment[num_segments];
6523
6524 /* Find the lowest p_vaddr in PT_LOAD segments. */
6525 bfd_vma p_vaddr = (bfd_vma) -1;
6526 for (; segment < end_segment; segment++)
6527 if (segment->p_type == PT_LOAD && p_vaddr > segment->p_vaddr)
6528 p_vaddr = segment->p_vaddr;
6529
6530 /* Set e_type to ET_EXEC if the lowest p_vaddr in PT_LOAD
6531 segments is non-zero. */
6532 if (p_vaddr)
6533 i_ehdrp->e_type = ET_EXEC;
6534 }
6535 return true;
6536 }
6537
6538 /* Assign file positions for all the reloc sections which are not part
6539 of the loadable file image, and the file position of section headers. */
6540
6541 static bool
6542 _bfd_elf_assign_file_positions_for_non_load (bfd *abfd)
6543 {
6544 file_ptr off;
6545 Elf_Internal_Shdr **shdrpp, **end_shdrpp;
6546 Elf_Internal_Shdr *shdrp;
6547 Elf_Internal_Ehdr *i_ehdrp;
6548 const struct elf_backend_data *bed;
6549
6550 off = elf_next_file_pos (abfd);
6551
6552 shdrpp = elf_elfsections (abfd);
6553 end_shdrpp = shdrpp + elf_numsections (abfd);
6554 for (shdrpp++; shdrpp < end_shdrpp; shdrpp++)
6555 {
6556 shdrp = *shdrpp;
6557 if (shdrp->sh_offset == -1)
6558 {
6559 asection *sec = shdrp->bfd_section;
6560 bool is_rel = (shdrp->sh_type == SHT_REL
6561 || shdrp->sh_type == SHT_RELA);
6562 bool is_ctf = sec && bfd_section_is_ctf (sec);
6563 if (is_rel
6564 || is_ctf
6565 || (sec != NULL && (sec->flags & SEC_ELF_COMPRESS)))
6566 {
6567 if (!is_rel && !is_ctf)
6568 {
6569 const char *name = sec->name;
6570 struct bfd_elf_section_data *d;
6571
6572 /* Compress DWARF debug sections. */
6573 if (!bfd_compress_section (abfd, sec,
6574 shdrp->contents))
6575 return false;
6576
6577 if (sec->compress_status == COMPRESS_SECTION_DONE
6578 && (abfd->flags & BFD_COMPRESS_GABI) == 0)
6579 {
6580 /* If section is compressed with zlib-gnu, convert
6581 section name from .debug_* to .zdebug_*. */
6582 char *new_name
6583 = convert_debug_to_zdebug (abfd, name);
6584 if (new_name == NULL)
6585 return false;
6586 name = new_name;
6587 }
6588 /* Add section name to section name section. */
6589 if (shdrp->sh_name != (unsigned int) -1)
6590 abort ();
6591 shdrp->sh_name
6592 = (unsigned int) _bfd_elf_strtab_add (elf_shstrtab (abfd),
6593 name, false);
6594 d = elf_section_data (sec);
6595
6596 /* Add reloc section name to section name section. */
6597 if (d->rel.hdr
6598 && !_bfd_elf_set_reloc_sh_name (abfd,
6599 d->rel.hdr,
6600 name, false))
6601 return false;
6602 if (d->rela.hdr
6603 && !_bfd_elf_set_reloc_sh_name (abfd,
6604 d->rela.hdr,
6605 name, true))
6606 return false;
6607
6608 /* Update section size and contents. */
6609 shdrp->sh_size = sec->size;
6610 shdrp->contents = sec->contents;
6611 shdrp->bfd_section->contents = NULL;
6612 }
6613 else if (is_ctf)
6614 {
6615 /* Update section size and contents. */
6616 shdrp->sh_size = sec->size;
6617 shdrp->contents = sec->contents;
6618 }
6619
6620 off = _bfd_elf_assign_file_position_for_section (shdrp,
6621 off,
6622 true);
6623 }
6624 }
6625 }
6626
6627 /* Place section name section after DWARF debug sections have been
6628 compressed. */
6629 _bfd_elf_strtab_finalize (elf_shstrtab (abfd));
6630 shdrp = &elf_tdata (abfd)->shstrtab_hdr;
6631 shdrp->sh_size = _bfd_elf_strtab_size (elf_shstrtab (abfd));
6632 off = _bfd_elf_assign_file_position_for_section (shdrp, off, true);
6633
6634 /* Place the section headers. */
6635 i_ehdrp = elf_elfheader (abfd);
6636 bed = get_elf_backend_data (abfd);
6637 off = align_file_position (off, 1 << bed->s->log_file_align);
6638 i_ehdrp->e_shoff = off;
6639 off += i_ehdrp->e_shnum * i_ehdrp->e_shentsize;
6640 elf_next_file_pos (abfd) = off;
6641
6642 return true;
6643 }
6644
6645 bool
6646 _bfd_elf_write_object_contents (bfd *abfd)
6647 {
6648 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
6649 Elf_Internal_Shdr **i_shdrp;
6650 bool failed;
6651 unsigned int count, num_sec;
6652 struct elf_obj_tdata *t;
6653
6654 if (! abfd->output_has_begun
6655 && ! _bfd_elf_compute_section_file_positions (abfd, NULL))
6656 return false;
6657 /* Do not rewrite ELF data when the BFD has been opened for update.
6658 abfd->output_has_begun was set to TRUE on opening, so creation of new
6659 sections, and modification of existing section sizes was restricted.
6660 This means the ELF header, program headers and section headers can't have
6661 changed.
6662 If the contents of any sections has been modified, then those changes have
6663 already been written to the BFD. */
6664 else if (abfd->direction == both_direction)
6665 {
6666 BFD_ASSERT (abfd->output_has_begun);
6667 return true;
6668 }
6669
6670 i_shdrp = elf_elfsections (abfd);
6671
6672 failed = false;
6673 bfd_map_over_sections (abfd, bed->s->write_relocs, &failed);
6674 if (failed)
6675 return false;
6676
6677 if (!_bfd_elf_assign_file_positions_for_non_load (abfd))
6678 return false;
6679
6680 /* After writing the headers, we need to write the sections too... */
6681 num_sec = elf_numsections (abfd);
6682 for (count = 1; count < num_sec; count++)
6683 {
6684 i_shdrp[count]->sh_name
6685 = _bfd_elf_strtab_offset (elf_shstrtab (abfd),
6686 i_shdrp[count]->sh_name);
6687 if (bed->elf_backend_section_processing)
6688 if (!(*bed->elf_backend_section_processing) (abfd, i_shdrp[count]))
6689 return false;
6690 if (i_shdrp[count]->contents)
6691 {
6692 bfd_size_type amt = i_shdrp[count]->sh_size;
6693
6694 if (bfd_seek (abfd, i_shdrp[count]->sh_offset, SEEK_SET) != 0
6695 || bfd_bwrite (i_shdrp[count]->contents, amt, abfd) != amt)
6696 return false;
6697 }
6698 }
6699
6700 /* Write out the section header names. */
6701 t = elf_tdata (abfd);
6702 if (elf_shstrtab (abfd) != NULL
6703 && (bfd_seek (abfd, t->shstrtab_hdr.sh_offset, SEEK_SET) != 0
6704 || !_bfd_elf_strtab_emit (abfd, elf_shstrtab (abfd))))
6705 return false;
6706
6707 if (!(*bed->elf_backend_final_write_processing) (abfd))
6708 return false;
6709
6710 if (!bed->s->write_shdrs_and_ehdr (abfd))
6711 return false;
6712
6713 /* This is last since write_shdrs_and_ehdr can touch i_shdrp[0]. */
6714 if (t->o->build_id.after_write_object_contents != NULL)
6715 return (*t->o->build_id.after_write_object_contents) (abfd);
6716
6717 return true;
6718 }
6719
6720 bool
6721 _bfd_elf_write_corefile_contents (bfd *abfd)
6722 {
6723 /* Hopefully this can be done just like an object file. */
6724 return _bfd_elf_write_object_contents (abfd);
6725 }
6726
6727 /* Given a section, search the header to find them. */
6728
6729 unsigned int
6730 _bfd_elf_section_from_bfd_section (bfd *abfd, struct bfd_section *asect)
6731 {
6732 const struct elf_backend_data *bed;
6733 unsigned int sec_index;
6734
6735 if (elf_section_data (asect) != NULL
6736 && elf_section_data (asect)->this_idx != 0)
6737 return elf_section_data (asect)->this_idx;
6738
6739 if (bfd_is_abs_section (asect))
6740 sec_index = SHN_ABS;
6741 else if (bfd_is_com_section (asect))
6742 sec_index = SHN_COMMON;
6743 else if (bfd_is_und_section (asect))
6744 sec_index = SHN_UNDEF;
6745 else
6746 sec_index = SHN_BAD;
6747
6748 bed = get_elf_backend_data (abfd);
6749 if (bed->elf_backend_section_from_bfd_section)
6750 {
6751 int retval = sec_index;
6752
6753 if ((*bed->elf_backend_section_from_bfd_section) (abfd, asect, &retval))
6754 return retval;
6755 }
6756
6757 if (sec_index == SHN_BAD)
6758 bfd_set_error (bfd_error_nonrepresentable_section);
6759
6760 return sec_index;
6761 }
6762
6763 /* Given a BFD symbol, return the index in the ELF symbol table, or -1
6764 on error. */
6765
6766 int
6767 _bfd_elf_symbol_from_bfd_symbol (bfd *abfd, asymbol **asym_ptr_ptr)
6768 {
6769 asymbol *asym_ptr = *asym_ptr_ptr;
6770 int idx;
6771 flagword flags = asym_ptr->flags;
6772
6773 /* When gas creates relocations against local labels, it creates its
6774 own symbol for the section, but does put the symbol into the
6775 symbol chain, so udata is 0. When the linker is generating
6776 relocatable output, this section symbol may be for one of the
6777 input sections rather than the output section. */
6778 if (asym_ptr->udata.i == 0
6779 && (flags & BSF_SECTION_SYM)
6780 && asym_ptr->section)
6781 {
6782 asection *sec;
6783 int indx;
6784
6785 sec = asym_ptr->section;
6786 if (sec->owner != abfd && sec->output_section != NULL)
6787 sec = sec->output_section;
6788 if (sec->owner == abfd
6789 && (indx = sec->index) < elf_num_section_syms (abfd)
6790 && elf_section_syms (abfd)[indx] != NULL)
6791 asym_ptr->udata.i = elf_section_syms (abfd)[indx]->udata.i;
6792 }
6793
6794 idx = asym_ptr->udata.i;
6795
6796 if (idx == 0)
6797 {
6798 /* This case can occur when using --strip-symbol on a symbol
6799 which is used in a relocation entry. */
6800 _bfd_error_handler
6801 /* xgettext:c-format */
6802 (_("%pB: symbol `%s' required but not present"),
6803 abfd, bfd_asymbol_name (asym_ptr));
6804 bfd_set_error (bfd_error_no_symbols);
6805 return -1;
6806 }
6807
6808 #if DEBUG & 4
6809 {
6810 fprintf (stderr,
6811 "elf_symbol_from_bfd_symbol 0x%.8lx, name = %s, sym num = %d, flags = 0x%.8x\n",
6812 (long) asym_ptr, asym_ptr->name, idx, flags);
6813 fflush (stderr);
6814 }
6815 #endif
6816
6817 return idx;
6818 }
6819
6820 /* Rewrite program header information. */
6821
6822 static bool
6823 rewrite_elf_program_header (bfd *ibfd, bfd *obfd, bfd_vma maxpagesize)
6824 {
6825 Elf_Internal_Ehdr *iehdr;
6826 struct elf_segment_map *map;
6827 struct elf_segment_map *map_first;
6828 struct elf_segment_map **pointer_to_map;
6829 Elf_Internal_Phdr *segment;
6830 asection *section;
6831 unsigned int i;
6832 unsigned int num_segments;
6833 bool phdr_included = false;
6834 bool p_paddr_valid;
6835 struct elf_segment_map *phdr_adjust_seg = NULL;
6836 unsigned int phdr_adjust_num = 0;
6837 const struct elf_backend_data *bed;
6838 unsigned int opb = bfd_octets_per_byte (ibfd, NULL);
6839
6840 bed = get_elf_backend_data (ibfd);
6841 iehdr = elf_elfheader (ibfd);
6842
6843 map_first = NULL;
6844 pointer_to_map = &map_first;
6845
6846 num_segments = elf_elfheader (ibfd)->e_phnum;
6847
6848 /* Returns the end address of the segment + 1. */
6849 #define SEGMENT_END(segment, start) \
6850 (start + (segment->p_memsz > segment->p_filesz \
6851 ? segment->p_memsz : segment->p_filesz))
6852
6853 #define SECTION_SIZE(section, segment) \
6854 (((section->flags & (SEC_HAS_CONTENTS | SEC_THREAD_LOCAL)) \
6855 != SEC_THREAD_LOCAL || segment->p_type == PT_TLS) \
6856 ? section->size : 0)
6857
6858 /* Returns TRUE if the given section is contained within
6859 the given segment. VMA addresses are compared. */
6860 #define IS_CONTAINED_BY_VMA(section, segment, opb) \
6861 (section->vma * (opb) >= segment->p_vaddr \
6862 && (section->vma * (opb) + SECTION_SIZE (section, segment) \
6863 <= (SEGMENT_END (segment, segment->p_vaddr))))
6864
6865 /* Returns TRUE if the given section is contained within
6866 the given segment. LMA addresses are compared. */
6867 #define IS_CONTAINED_BY_LMA(section, segment, base, opb) \
6868 (section->lma * (opb) >= base \
6869 && (section->lma + SECTION_SIZE (section, segment) / (opb) >= section->lma) \
6870 && (section->lma * (opb) + SECTION_SIZE (section, segment) \
6871 <= SEGMENT_END (segment, base)))
6872
6873 /* Handle PT_NOTE segment. */
6874 #define IS_NOTE(p, s) \
6875 (p->p_type == PT_NOTE \
6876 && elf_section_type (s) == SHT_NOTE \
6877 && (bfd_vma) s->filepos >= p->p_offset \
6878 && ((bfd_vma) s->filepos + s->size \
6879 <= p->p_offset + p->p_filesz))
6880
6881 /* Special case: corefile "NOTE" section containing regs, prpsinfo
6882 etc. */
6883 #define IS_COREFILE_NOTE(p, s) \
6884 (IS_NOTE (p, s) \
6885 && bfd_get_format (ibfd) == bfd_core \
6886 && s->vma == 0 \
6887 && s->lma == 0)
6888
6889 /* The complicated case when p_vaddr is 0 is to handle the Solaris
6890 linker, which generates a PT_INTERP section with p_vaddr and
6891 p_memsz set to 0. */
6892 #define IS_SOLARIS_PT_INTERP(p, s) \
6893 (p->p_vaddr == 0 \
6894 && p->p_paddr == 0 \
6895 && p->p_memsz == 0 \
6896 && p->p_filesz > 0 \
6897 && (s->flags & SEC_HAS_CONTENTS) != 0 \
6898 && s->size > 0 \
6899 && (bfd_vma) s->filepos >= p->p_offset \
6900 && ((bfd_vma) s->filepos + s->size \
6901 <= p->p_offset + p->p_filesz))
6902
6903 /* Decide if the given section should be included in the given segment.
6904 A section will be included if:
6905 1. It is within the address space of the segment -- we use the LMA
6906 if that is set for the segment and the VMA otherwise,
6907 2. It is an allocated section or a NOTE section in a PT_NOTE
6908 segment.
6909 3. There is an output section associated with it,
6910 4. The section has not already been allocated to a previous segment.
6911 5. PT_GNU_STACK segments do not include any sections.
6912 6. PT_TLS segment includes only SHF_TLS sections.
6913 7. SHF_TLS sections are only in PT_TLS or PT_LOAD segments.
6914 8. PT_DYNAMIC should not contain empty sections at the beginning
6915 (with the possible exception of .dynamic). */
6916 #define IS_SECTION_IN_INPUT_SEGMENT(section, segment, bed, opb) \
6917 ((((segment->p_paddr \
6918 ? IS_CONTAINED_BY_LMA (section, segment, segment->p_paddr, opb) \
6919 : IS_CONTAINED_BY_VMA (section, segment, opb)) \
6920 && (section->flags & SEC_ALLOC) != 0) \
6921 || IS_NOTE (segment, section)) \
6922 && segment->p_type != PT_GNU_STACK \
6923 && (segment->p_type != PT_TLS \
6924 || (section->flags & SEC_THREAD_LOCAL)) \
6925 && (segment->p_type == PT_LOAD \
6926 || segment->p_type == PT_TLS \
6927 || (section->flags & SEC_THREAD_LOCAL) == 0) \
6928 && (segment->p_type != PT_DYNAMIC \
6929 || SECTION_SIZE (section, segment) > 0 \
6930 || (segment->p_paddr \
6931 ? segment->p_paddr != section->lma * (opb) \
6932 : segment->p_vaddr != section->vma * (opb)) \
6933 || (strcmp (bfd_section_name (section), ".dynamic") == 0)) \
6934 && (segment->p_type != PT_LOAD || !section->segment_mark))
6935
6936 /* If the output section of a section in the input segment is NULL,
6937 it is removed from the corresponding output segment. */
6938 #define INCLUDE_SECTION_IN_SEGMENT(section, segment, bed, opb) \
6939 (IS_SECTION_IN_INPUT_SEGMENT (section, segment, bed, opb) \
6940 && section->output_section != NULL)
6941
6942 /* Returns TRUE iff seg1 starts after the end of seg2. */
6943 #define SEGMENT_AFTER_SEGMENT(seg1, seg2, field) \
6944 (seg1->field >= SEGMENT_END (seg2, seg2->field))
6945
6946 /* Returns TRUE iff seg1 and seg2 overlap. Segments overlap iff both
6947 their VMA address ranges and their LMA address ranges overlap.
6948 It is possible to have overlapping VMA ranges without overlapping LMA
6949 ranges. RedBoot images for example can have both .data and .bss mapped
6950 to the same VMA range, but with the .data section mapped to a different
6951 LMA. */
6952 #define SEGMENT_OVERLAPS(seg1, seg2) \
6953 ( !(SEGMENT_AFTER_SEGMENT (seg1, seg2, p_vaddr) \
6954 || SEGMENT_AFTER_SEGMENT (seg2, seg1, p_vaddr)) \
6955 && !(SEGMENT_AFTER_SEGMENT (seg1, seg2, p_paddr) \
6956 || SEGMENT_AFTER_SEGMENT (seg2, seg1, p_paddr)))
6957
6958 /* Initialise the segment mark field. */
6959 for (section = ibfd->sections; section != NULL; section = section->next)
6960 section->segment_mark = false;
6961
6962 /* The Solaris linker creates program headers in which all the
6963 p_paddr fields are zero. When we try to objcopy or strip such a
6964 file, we get confused. Check for this case, and if we find it
6965 don't set the p_paddr_valid fields. */
6966 p_paddr_valid = false;
6967 for (i = 0, segment = elf_tdata (ibfd)->phdr;
6968 i < num_segments;
6969 i++, segment++)
6970 if (segment->p_paddr != 0)
6971 {
6972 p_paddr_valid = true;
6973 break;
6974 }
6975
6976 /* Scan through the segments specified in the program header
6977 of the input BFD. For this first scan we look for overlaps
6978 in the loadable segments. These can be created by weird
6979 parameters to objcopy. Also, fix some solaris weirdness. */
6980 for (i = 0, segment = elf_tdata (ibfd)->phdr;
6981 i < num_segments;
6982 i++, segment++)
6983 {
6984 unsigned int j;
6985 Elf_Internal_Phdr *segment2;
6986
6987 if (segment->p_type == PT_INTERP)
6988 for (section = ibfd->sections; section; section = section->next)
6989 if (IS_SOLARIS_PT_INTERP (segment, section))
6990 {
6991 /* Mininal change so that the normal section to segment
6992 assignment code will work. */
6993 segment->p_vaddr = section->vma * opb;
6994 break;
6995 }
6996
6997 if (segment->p_type != PT_LOAD)
6998 {
6999 /* Remove PT_GNU_RELRO segment. */
7000 if (segment->p_type == PT_GNU_RELRO)
7001 segment->p_type = PT_NULL;
7002 continue;
7003 }
7004
7005 /* Determine if this segment overlaps any previous segments. */
7006 for (j = 0, segment2 = elf_tdata (ibfd)->phdr; j < i; j++, segment2++)
7007 {
7008 bfd_signed_vma extra_length;
7009
7010 if (segment2->p_type != PT_LOAD
7011 || !SEGMENT_OVERLAPS (segment, segment2))
7012 continue;
7013
7014 /* Merge the two segments together. */
7015 if (segment2->p_vaddr < segment->p_vaddr)
7016 {
7017 /* Extend SEGMENT2 to include SEGMENT and then delete
7018 SEGMENT. */
7019 extra_length = (SEGMENT_END (segment, segment->p_vaddr)
7020 - SEGMENT_END (segment2, segment2->p_vaddr));
7021
7022 if (extra_length > 0)
7023 {
7024 segment2->p_memsz += extra_length;
7025 segment2->p_filesz += extra_length;
7026 }
7027
7028 segment->p_type = PT_NULL;
7029
7030 /* Since we have deleted P we must restart the outer loop. */
7031 i = 0;
7032 segment = elf_tdata (ibfd)->phdr;
7033 break;
7034 }
7035 else
7036 {
7037 /* Extend SEGMENT to include SEGMENT2 and then delete
7038 SEGMENT2. */
7039 extra_length = (SEGMENT_END (segment2, segment2->p_vaddr)
7040 - SEGMENT_END (segment, segment->p_vaddr));
7041
7042 if (extra_length > 0)
7043 {
7044 segment->p_memsz += extra_length;
7045 segment->p_filesz += extra_length;
7046 }
7047
7048 segment2->p_type = PT_NULL;
7049 }
7050 }
7051 }
7052
7053 /* The second scan attempts to assign sections to segments. */
7054 for (i = 0, segment = elf_tdata (ibfd)->phdr;
7055 i < num_segments;
7056 i++, segment++)
7057 {
7058 unsigned int section_count;
7059 asection **sections;
7060 asection *output_section;
7061 unsigned int isec;
7062 asection *matching_lma;
7063 asection *suggested_lma;
7064 unsigned int j;
7065 size_t amt;
7066 asection *first_section;
7067
7068 if (segment->p_type == PT_NULL)
7069 continue;
7070
7071 first_section = NULL;
7072 /* Compute how many sections might be placed into this segment. */
7073 for (section = ibfd->sections, section_count = 0;
7074 section != NULL;
7075 section = section->next)
7076 {
7077 /* Find the first section in the input segment, which may be
7078 removed from the corresponding output segment. */
7079 if (IS_SECTION_IN_INPUT_SEGMENT (section, segment, bed, opb))
7080 {
7081 if (first_section == NULL)
7082 first_section = section;
7083 if (section->output_section != NULL)
7084 ++section_count;
7085 }
7086 }
7087
7088 /* Allocate a segment map big enough to contain
7089 all of the sections we have selected. */
7090 amt = sizeof (struct elf_segment_map) - sizeof (asection *);
7091 amt += section_count * sizeof (asection *);
7092 map = (struct elf_segment_map *) bfd_zalloc (obfd, amt);
7093 if (map == NULL)
7094 return false;
7095
7096 /* Initialise the fields of the segment map. Default to
7097 using the physical address of the segment in the input BFD. */
7098 map->next = NULL;
7099 map->p_type = segment->p_type;
7100 map->p_flags = segment->p_flags;
7101 map->p_flags_valid = 1;
7102
7103 if (map->p_type == PT_LOAD
7104 && (ibfd->flags & D_PAGED) != 0
7105 && maxpagesize > 1
7106 && segment->p_align > 1)
7107 {
7108 map->p_align = segment->p_align;
7109 if (segment->p_align > maxpagesize)
7110 map->p_align = maxpagesize;
7111 map->p_align_valid = 1;
7112 }
7113
7114 /* If the first section in the input segment is removed, there is
7115 no need to preserve segment physical address in the corresponding
7116 output segment. */
7117 if (!first_section || first_section->output_section != NULL)
7118 {
7119 map->p_paddr = segment->p_paddr;
7120 map->p_paddr_valid = p_paddr_valid;
7121 }
7122
7123 /* Determine if this segment contains the ELF file header
7124 and if it contains the program headers themselves. */
7125 map->includes_filehdr = (segment->p_offset == 0
7126 && segment->p_filesz >= iehdr->e_ehsize);
7127 map->includes_phdrs = 0;
7128
7129 if (!phdr_included || segment->p_type != PT_LOAD)
7130 {
7131 map->includes_phdrs =
7132 (segment->p_offset <= (bfd_vma) iehdr->e_phoff
7133 && (segment->p_offset + segment->p_filesz
7134 >= ((bfd_vma) iehdr->e_phoff
7135 + iehdr->e_phnum * iehdr->e_phentsize)));
7136
7137 if (segment->p_type == PT_LOAD && map->includes_phdrs)
7138 phdr_included = true;
7139 }
7140
7141 if (section_count == 0)
7142 {
7143 /* Special segments, such as the PT_PHDR segment, may contain
7144 no sections, but ordinary, loadable segments should contain
7145 something. They are allowed by the ELF spec however, so only
7146 a warning is produced.
7147 There is however the valid use case of embedded systems which
7148 have segments with p_filesz of 0 and a p_memsz > 0 to initialize
7149 flash memory with zeros. No warning is shown for that case. */
7150 if (segment->p_type == PT_LOAD
7151 && (segment->p_filesz > 0 || segment->p_memsz == 0))
7152 /* xgettext:c-format */
7153 _bfd_error_handler
7154 (_("%pB: warning: empty loadable segment detected"
7155 " at vaddr=%#" PRIx64 ", is this intentional?"),
7156 ibfd, (uint64_t) segment->p_vaddr);
7157
7158 map->p_vaddr_offset = segment->p_vaddr / opb;
7159 map->count = 0;
7160 *pointer_to_map = map;
7161 pointer_to_map = &map->next;
7162
7163 continue;
7164 }
7165
7166 /* Now scan the sections in the input BFD again and attempt
7167 to add their corresponding output sections to the segment map.
7168 The problem here is how to handle an output section which has
7169 been moved (ie had its LMA changed). There are four possibilities:
7170
7171 1. None of the sections have been moved.
7172 In this case we can continue to use the segment LMA from the
7173 input BFD.
7174
7175 2. All of the sections have been moved by the same amount.
7176 In this case we can change the segment's LMA to match the LMA
7177 of the first section.
7178
7179 3. Some of the sections have been moved, others have not.
7180 In this case those sections which have not been moved can be
7181 placed in the current segment which will have to have its size,
7182 and possibly its LMA changed, and a new segment or segments will
7183 have to be created to contain the other sections.
7184
7185 4. The sections have been moved, but not by the same amount.
7186 In this case we can change the segment's LMA to match the LMA
7187 of the first section and we will have to create a new segment
7188 or segments to contain the other sections.
7189
7190 In order to save time, we allocate an array to hold the section
7191 pointers that we are interested in. As these sections get assigned
7192 to a segment, they are removed from this array. */
7193
7194 amt = section_count * sizeof (asection *);
7195 sections = (asection **) bfd_malloc (amt);
7196 if (sections == NULL)
7197 return false;
7198
7199 /* Step One: Scan for segment vs section LMA conflicts.
7200 Also add the sections to the section array allocated above.
7201 Also add the sections to the current segment. In the common
7202 case, where the sections have not been moved, this means that
7203 we have completely filled the segment, and there is nothing
7204 more to do. */
7205 isec = 0;
7206 matching_lma = NULL;
7207 suggested_lma = NULL;
7208
7209 for (section = first_section, j = 0;
7210 section != NULL;
7211 section = section->next)
7212 {
7213 if (INCLUDE_SECTION_IN_SEGMENT (section, segment, bed, opb))
7214 {
7215 output_section = section->output_section;
7216
7217 sections[j++] = section;
7218
7219 /* The Solaris native linker always sets p_paddr to 0.
7220 We try to catch that case here, and set it to the
7221 correct value. Note - some backends require that
7222 p_paddr be left as zero. */
7223 if (!p_paddr_valid
7224 && segment->p_vaddr != 0
7225 && !bed->want_p_paddr_set_to_zero
7226 && isec == 0
7227 && output_section->lma != 0
7228 && (align_power (segment->p_vaddr
7229 + (map->includes_filehdr
7230 ? iehdr->e_ehsize : 0)
7231 + (map->includes_phdrs
7232 ? iehdr->e_phnum * iehdr->e_phentsize
7233 : 0),
7234 output_section->alignment_power * opb)
7235 == (output_section->vma * opb)))
7236 map->p_paddr = segment->p_vaddr;
7237
7238 /* Match up the physical address of the segment with the
7239 LMA address of the output section. */
7240 if (IS_CONTAINED_BY_LMA (output_section, segment, map->p_paddr,
7241 opb)
7242 || IS_COREFILE_NOTE (segment, section)
7243 || (bed->want_p_paddr_set_to_zero
7244 && IS_CONTAINED_BY_VMA (output_section, segment, opb)))
7245 {
7246 if (matching_lma == NULL
7247 || output_section->lma < matching_lma->lma)
7248 matching_lma = output_section;
7249
7250 /* We assume that if the section fits within the segment
7251 then it does not overlap any other section within that
7252 segment. */
7253 map->sections[isec++] = output_section;
7254 }
7255 else if (suggested_lma == NULL)
7256 suggested_lma = output_section;
7257
7258 if (j == section_count)
7259 break;
7260 }
7261 }
7262
7263 BFD_ASSERT (j == section_count);
7264
7265 /* Step Two: Adjust the physical address of the current segment,
7266 if necessary. */
7267 if (isec == section_count)
7268 {
7269 /* All of the sections fitted within the segment as currently
7270 specified. This is the default case. Add the segment to
7271 the list of built segments and carry on to process the next
7272 program header in the input BFD. */
7273 map->count = section_count;
7274 *pointer_to_map = map;
7275 pointer_to_map = &map->next;
7276
7277 if (p_paddr_valid
7278 && !bed->want_p_paddr_set_to_zero)
7279 {
7280 bfd_vma hdr_size = 0;
7281 if (map->includes_filehdr)
7282 hdr_size = iehdr->e_ehsize;
7283 if (map->includes_phdrs)
7284 hdr_size += iehdr->e_phnum * iehdr->e_phentsize;
7285
7286 /* Account for padding before the first section in the
7287 segment. */
7288 map->p_vaddr_offset = ((map->p_paddr + hdr_size) / opb
7289 - matching_lma->lma);
7290 }
7291
7292 free (sections);
7293 continue;
7294 }
7295 else
7296 {
7297 /* Change the current segment's physical address to match
7298 the LMA of the first section that fitted, or if no
7299 section fitted, the first section. */
7300 if (matching_lma == NULL)
7301 matching_lma = suggested_lma;
7302
7303 map->p_paddr = matching_lma->lma * opb;
7304
7305 /* Offset the segment physical address from the lma
7306 to allow for space taken up by elf headers. */
7307 if (map->includes_phdrs)
7308 {
7309 map->p_paddr -= iehdr->e_phnum * iehdr->e_phentsize;
7310
7311 /* iehdr->e_phnum is just an estimate of the number
7312 of program headers that we will need. Make a note
7313 here of the number we used and the segment we chose
7314 to hold these headers, so that we can adjust the
7315 offset when we know the correct value. */
7316 phdr_adjust_num = iehdr->e_phnum;
7317 phdr_adjust_seg = map;
7318 }
7319
7320 if (map->includes_filehdr)
7321 {
7322 bfd_vma align = (bfd_vma) 1 << matching_lma->alignment_power;
7323 map->p_paddr -= iehdr->e_ehsize;
7324 /* We've subtracted off the size of headers from the
7325 first section lma, but there may have been some
7326 alignment padding before that section too. Try to
7327 account for that by adjusting the segment lma down to
7328 the same alignment. */
7329 if (segment->p_align != 0 && segment->p_align < align)
7330 align = segment->p_align;
7331 map->p_paddr &= -(align * opb);
7332 }
7333 }
7334
7335 /* Step Three: Loop over the sections again, this time assigning
7336 those that fit to the current segment and removing them from the
7337 sections array; but making sure not to leave large gaps. Once all
7338 possible sections have been assigned to the current segment it is
7339 added to the list of built segments and if sections still remain
7340 to be assigned, a new segment is constructed before repeating
7341 the loop. */
7342 isec = 0;
7343 do
7344 {
7345 map->count = 0;
7346 suggested_lma = NULL;
7347
7348 /* Fill the current segment with sections that fit. */
7349 for (j = 0; j < section_count; j++)
7350 {
7351 section = sections[j];
7352
7353 if (section == NULL)
7354 continue;
7355
7356 output_section = section->output_section;
7357
7358 BFD_ASSERT (output_section != NULL);
7359
7360 if (IS_CONTAINED_BY_LMA (output_section, segment, map->p_paddr,
7361 opb)
7362 || IS_COREFILE_NOTE (segment, section))
7363 {
7364 if (map->count == 0)
7365 {
7366 /* If the first section in a segment does not start at
7367 the beginning of the segment, then something is
7368 wrong. */
7369 if (align_power (map->p_paddr
7370 + (map->includes_filehdr
7371 ? iehdr->e_ehsize : 0)
7372 + (map->includes_phdrs
7373 ? iehdr->e_phnum * iehdr->e_phentsize
7374 : 0),
7375 output_section->alignment_power * opb)
7376 != output_section->lma * opb)
7377 goto sorry;
7378 }
7379 else
7380 {
7381 asection *prev_sec;
7382
7383 prev_sec = map->sections[map->count - 1];
7384
7385 /* If the gap between the end of the previous section
7386 and the start of this section is more than
7387 maxpagesize then we need to start a new segment. */
7388 if ((BFD_ALIGN (prev_sec->lma + prev_sec->size,
7389 maxpagesize)
7390 < BFD_ALIGN (output_section->lma, maxpagesize))
7391 || (prev_sec->lma + prev_sec->size
7392 > output_section->lma))
7393 {
7394 if (suggested_lma == NULL)
7395 suggested_lma = output_section;
7396
7397 continue;
7398 }
7399 }
7400
7401 map->sections[map->count++] = output_section;
7402 ++isec;
7403 sections[j] = NULL;
7404 if (segment->p_type == PT_LOAD)
7405 section->segment_mark = true;
7406 }
7407 else if (suggested_lma == NULL)
7408 suggested_lma = output_section;
7409 }
7410
7411 /* PR 23932. A corrupt input file may contain sections that cannot
7412 be assigned to any segment - because for example they have a
7413 negative size - or segments that do not contain any sections.
7414 But there are also valid reasons why a segment can be empty.
7415 So allow a count of zero. */
7416
7417 /* Add the current segment to the list of built segments. */
7418 *pointer_to_map = map;
7419 pointer_to_map = &map->next;
7420
7421 if (isec < section_count)
7422 {
7423 /* We still have not allocated all of the sections to
7424 segments. Create a new segment here, initialise it
7425 and carry on looping. */
7426 amt = sizeof (struct elf_segment_map) - sizeof (asection *);
7427 amt += section_count * sizeof (asection *);
7428 map = (struct elf_segment_map *) bfd_zalloc (obfd, amt);
7429 if (map == NULL)
7430 {
7431 free (sections);
7432 return false;
7433 }
7434
7435 /* Initialise the fields of the segment map. Set the physical
7436 physical address to the LMA of the first section that has
7437 not yet been assigned. */
7438 map->next = NULL;
7439 map->p_type = segment->p_type;
7440 map->p_flags = segment->p_flags;
7441 map->p_flags_valid = 1;
7442 map->p_paddr = suggested_lma->lma * opb;
7443 map->p_paddr_valid = p_paddr_valid;
7444 map->includes_filehdr = 0;
7445 map->includes_phdrs = 0;
7446 }
7447
7448 continue;
7449 sorry:
7450 bfd_set_error (bfd_error_sorry);
7451 free (sections);
7452 return false;
7453 }
7454 while (isec < section_count);
7455
7456 free (sections);
7457 }
7458
7459 elf_seg_map (obfd) = map_first;
7460
7461 /* If we had to estimate the number of program headers that were
7462 going to be needed, then check our estimate now and adjust
7463 the offset if necessary. */
7464 if (phdr_adjust_seg != NULL)
7465 {
7466 unsigned int count;
7467
7468 for (count = 0, map = map_first; map != NULL; map = map->next)
7469 count++;
7470
7471 if (count > phdr_adjust_num)
7472 phdr_adjust_seg->p_paddr
7473 -= (count - phdr_adjust_num) * iehdr->e_phentsize;
7474
7475 for (map = map_first; map != NULL; map = map->next)
7476 if (map->p_type == PT_PHDR)
7477 {
7478 bfd_vma adjust
7479 = phdr_adjust_seg->includes_filehdr ? iehdr->e_ehsize : 0;
7480 map->p_paddr = phdr_adjust_seg->p_paddr + adjust;
7481 break;
7482 }
7483 }
7484
7485 #undef SEGMENT_END
7486 #undef SECTION_SIZE
7487 #undef IS_CONTAINED_BY_VMA
7488 #undef IS_CONTAINED_BY_LMA
7489 #undef IS_NOTE
7490 #undef IS_COREFILE_NOTE
7491 #undef IS_SOLARIS_PT_INTERP
7492 #undef IS_SECTION_IN_INPUT_SEGMENT
7493 #undef INCLUDE_SECTION_IN_SEGMENT
7494 #undef SEGMENT_AFTER_SEGMENT
7495 #undef SEGMENT_OVERLAPS
7496 return true;
7497 }
7498
7499 /* Copy ELF program header information. */
7500
7501 static bool
7502 copy_elf_program_header (bfd *ibfd, bfd *obfd)
7503 {
7504 Elf_Internal_Ehdr *iehdr;
7505 struct elf_segment_map *map;
7506 struct elf_segment_map *map_first;
7507 struct elf_segment_map **pointer_to_map;
7508 Elf_Internal_Phdr *segment;
7509 unsigned int i;
7510 unsigned int num_segments;
7511 bool phdr_included = false;
7512 bool p_paddr_valid;
7513 unsigned int opb = bfd_octets_per_byte (ibfd, NULL);
7514
7515 iehdr = elf_elfheader (ibfd);
7516
7517 map_first = NULL;
7518 pointer_to_map = &map_first;
7519
7520 /* If all the segment p_paddr fields are zero, don't set
7521 map->p_paddr_valid. */
7522 p_paddr_valid = false;
7523 num_segments = elf_elfheader (ibfd)->e_phnum;
7524 for (i = 0, segment = elf_tdata (ibfd)->phdr;
7525 i < num_segments;
7526 i++, segment++)
7527 if (segment->p_paddr != 0)
7528 {
7529 p_paddr_valid = true;
7530 break;
7531 }
7532
7533 for (i = 0, segment = elf_tdata (ibfd)->phdr;
7534 i < num_segments;
7535 i++, segment++)
7536 {
7537 asection *section;
7538 unsigned int section_count;
7539 size_t amt;
7540 Elf_Internal_Shdr *this_hdr;
7541 asection *first_section = NULL;
7542 asection *lowest_section;
7543
7544 /* Compute how many sections are in this segment. */
7545 for (section = ibfd->sections, section_count = 0;
7546 section != NULL;
7547 section = section->next)
7548 {
7549 this_hdr = &(elf_section_data(section)->this_hdr);
7550 if (ELF_SECTION_IN_SEGMENT (this_hdr, segment))
7551 {
7552 if (first_section == NULL)
7553 first_section = section;
7554 section_count++;
7555 }
7556 }
7557
7558 /* Allocate a segment map big enough to contain
7559 all of the sections we have selected. */
7560 amt = sizeof (struct elf_segment_map) - sizeof (asection *);
7561 amt += section_count * sizeof (asection *);
7562 map = (struct elf_segment_map *) bfd_zalloc (obfd, amt);
7563 if (map == NULL)
7564 return false;
7565
7566 /* Initialize the fields of the output segment map with the
7567 input segment. */
7568 map->next = NULL;
7569 map->p_type = segment->p_type;
7570 map->p_flags = segment->p_flags;
7571 map->p_flags_valid = 1;
7572 map->p_paddr = segment->p_paddr;
7573 map->p_paddr_valid = p_paddr_valid;
7574 map->p_align = segment->p_align;
7575 map->p_align_valid = 1;
7576 map->p_vaddr_offset = 0;
7577
7578 if (map->p_type == PT_GNU_RELRO
7579 || map->p_type == PT_GNU_STACK)
7580 {
7581 /* The PT_GNU_RELRO segment may contain the first a few
7582 bytes in the .got.plt section even if the whole .got.plt
7583 section isn't in the PT_GNU_RELRO segment. We won't
7584 change the size of the PT_GNU_RELRO segment.
7585 Similarly, PT_GNU_STACK size is significant on uclinux
7586 systems. */
7587 map->p_size = segment->p_memsz;
7588 map->p_size_valid = 1;
7589 }
7590
7591 /* Determine if this segment contains the ELF file header
7592 and if it contains the program headers themselves. */
7593 map->includes_filehdr = (segment->p_offset == 0
7594 && segment->p_filesz >= iehdr->e_ehsize);
7595
7596 map->includes_phdrs = 0;
7597 if (! phdr_included || segment->p_type != PT_LOAD)
7598 {
7599 map->includes_phdrs =
7600 (segment->p_offset <= (bfd_vma) iehdr->e_phoff
7601 && (segment->p_offset + segment->p_filesz
7602 >= ((bfd_vma) iehdr->e_phoff
7603 + iehdr->e_phnum * iehdr->e_phentsize)));
7604
7605 if (segment->p_type == PT_LOAD && map->includes_phdrs)
7606 phdr_included = true;
7607 }
7608
7609 lowest_section = NULL;
7610 if (section_count != 0)
7611 {
7612 unsigned int isec = 0;
7613
7614 for (section = first_section;
7615 section != NULL;
7616 section = section->next)
7617 {
7618 this_hdr = &(elf_section_data(section)->this_hdr);
7619 if (ELF_SECTION_IN_SEGMENT (this_hdr, segment))
7620 {
7621 map->sections[isec++] = section->output_section;
7622 if ((section->flags & SEC_ALLOC) != 0)
7623 {
7624 bfd_vma seg_off;
7625
7626 if (lowest_section == NULL
7627 || section->lma < lowest_section->lma)
7628 lowest_section = section;
7629
7630 /* Section lmas are set up from PT_LOAD header
7631 p_paddr in _bfd_elf_make_section_from_shdr.
7632 If this header has a p_paddr that disagrees
7633 with the section lma, flag the p_paddr as
7634 invalid. */
7635 if ((section->flags & SEC_LOAD) != 0)
7636 seg_off = this_hdr->sh_offset - segment->p_offset;
7637 else
7638 seg_off = this_hdr->sh_addr - segment->p_vaddr;
7639 if (section->lma * opb - segment->p_paddr != seg_off)
7640 map->p_paddr_valid = false;
7641 }
7642 if (isec == section_count)
7643 break;
7644 }
7645 }
7646 }
7647
7648 if (section_count == 0)
7649 map->p_vaddr_offset = segment->p_vaddr / opb;
7650 else if (map->p_paddr_valid)
7651 {
7652 /* Account for padding before the first section in the segment. */
7653 bfd_vma hdr_size = 0;
7654 if (map->includes_filehdr)
7655 hdr_size = iehdr->e_ehsize;
7656 if (map->includes_phdrs)
7657 hdr_size += iehdr->e_phnum * iehdr->e_phentsize;
7658
7659 map->p_vaddr_offset = ((map->p_paddr + hdr_size) / opb
7660 - (lowest_section ? lowest_section->lma : 0));
7661 }
7662
7663 map->count = section_count;
7664 *pointer_to_map = map;
7665 pointer_to_map = &map->next;
7666 }
7667
7668 elf_seg_map (obfd) = map_first;
7669 return true;
7670 }
7671
7672 /* Copy private BFD data. This copies or rewrites ELF program header
7673 information. */
7674
7675 static bool
7676 copy_private_bfd_data (bfd *ibfd, bfd *obfd)
7677 {
7678 bfd_vma maxpagesize;
7679
7680 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
7681 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
7682 return true;
7683
7684 if (elf_tdata (ibfd)->phdr == NULL)
7685 return true;
7686
7687 if (ibfd->xvec == obfd->xvec)
7688 {
7689 /* Check to see if any sections in the input BFD
7690 covered by ELF program header have changed. */
7691 Elf_Internal_Phdr *segment;
7692 asection *section, *osec;
7693 unsigned int i, num_segments;
7694 Elf_Internal_Shdr *this_hdr;
7695 const struct elf_backend_data *bed;
7696
7697 bed = get_elf_backend_data (ibfd);
7698
7699 /* Regenerate the segment map if p_paddr is set to 0. */
7700 if (bed->want_p_paddr_set_to_zero)
7701 goto rewrite;
7702
7703 /* Initialize the segment mark field. */
7704 for (section = obfd->sections; section != NULL;
7705 section = section->next)
7706 section->segment_mark = false;
7707
7708 num_segments = elf_elfheader (ibfd)->e_phnum;
7709 for (i = 0, segment = elf_tdata (ibfd)->phdr;
7710 i < num_segments;
7711 i++, segment++)
7712 {
7713 /* PR binutils/3535. The Solaris linker always sets the p_paddr
7714 and p_memsz fields of special segments (DYNAMIC, INTERP) to 0
7715 which severly confuses things, so always regenerate the segment
7716 map in this case. */
7717 if (segment->p_paddr == 0
7718 && segment->p_memsz == 0
7719 && (segment->p_type == PT_INTERP || segment->p_type == PT_DYNAMIC))
7720 goto rewrite;
7721
7722 for (section = ibfd->sections;
7723 section != NULL; section = section->next)
7724 {
7725 /* We mark the output section so that we know it comes
7726 from the input BFD. */
7727 osec = section->output_section;
7728 if (osec)
7729 osec->segment_mark = true;
7730
7731 /* Check if this section is covered by the segment. */
7732 this_hdr = &(elf_section_data(section)->this_hdr);
7733 if (ELF_SECTION_IN_SEGMENT (this_hdr, segment))
7734 {
7735 /* FIXME: Check if its output section is changed or
7736 removed. What else do we need to check? */
7737 if (osec == NULL
7738 || section->flags != osec->flags
7739 || section->lma != osec->lma
7740 || section->vma != osec->vma
7741 || section->size != osec->size
7742 || section->rawsize != osec->rawsize
7743 || section->alignment_power != osec->alignment_power)
7744 goto rewrite;
7745 }
7746 }
7747 }
7748
7749 /* Check to see if any output section do not come from the
7750 input BFD. */
7751 for (section = obfd->sections; section != NULL;
7752 section = section->next)
7753 {
7754 if (!section->segment_mark)
7755 goto rewrite;
7756 else
7757 section->segment_mark = false;
7758 }
7759
7760 return copy_elf_program_header (ibfd, obfd);
7761 }
7762
7763 rewrite:
7764 maxpagesize = 0;
7765 if (ibfd->xvec == obfd->xvec)
7766 {
7767 /* When rewriting program header, set the output maxpagesize to
7768 the maximum alignment of input PT_LOAD segments. */
7769 Elf_Internal_Phdr *segment;
7770 unsigned int i;
7771 unsigned int num_segments = elf_elfheader (ibfd)->e_phnum;
7772
7773 for (i = 0, segment = elf_tdata (ibfd)->phdr;
7774 i < num_segments;
7775 i++, segment++)
7776 if (segment->p_type == PT_LOAD
7777 && maxpagesize < segment->p_align)
7778 {
7779 /* PR 17512: file: f17299af. */
7780 if (segment->p_align > (bfd_vma) 1 << ((sizeof (bfd_vma) * 8) - 2))
7781 /* xgettext:c-format */
7782 _bfd_error_handler (_("%pB: warning: segment alignment of %#"
7783 PRIx64 " is too large"),
7784 ibfd, (uint64_t) segment->p_align);
7785 else
7786 maxpagesize = segment->p_align;
7787 }
7788 }
7789 if (maxpagesize == 0)
7790 maxpagesize = get_elf_backend_data (obfd)->maxpagesize;
7791
7792 return rewrite_elf_program_header (ibfd, obfd, maxpagesize);
7793 }
7794
7795 /* Initialize private output section information from input section. */
7796
7797 bool
7798 _bfd_elf_init_private_section_data (bfd *ibfd,
7799 asection *isec,
7800 bfd *obfd,
7801 asection *osec,
7802 struct bfd_link_info *link_info)
7803
7804 {
7805 Elf_Internal_Shdr *ihdr, *ohdr;
7806 bool final_link = (link_info != NULL
7807 && !bfd_link_relocatable (link_info));
7808
7809 if (ibfd->xvec->flavour != bfd_target_elf_flavour
7810 || obfd->xvec->flavour != bfd_target_elf_flavour)
7811 return true;
7812
7813 BFD_ASSERT (elf_section_data (osec) != NULL);
7814
7815 /* If this is a known ABI section, ELF section type and flags may
7816 have been set up when OSEC was created. For normal sections we
7817 allow the user to override the type and flags other than
7818 SHF_MASKOS and SHF_MASKPROC. */
7819 if (elf_section_type (osec) == SHT_PROGBITS
7820 || elf_section_type (osec) == SHT_NOTE
7821 || elf_section_type (osec) == SHT_NOBITS)
7822 elf_section_type (osec) = SHT_NULL;
7823 /* For objcopy and relocatable link, copy the ELF section type from
7824 the input file if the BFD section flags are the same. (If they
7825 are different the user may be doing something like
7826 "objcopy --set-section-flags .text=alloc,data".) For a final
7827 link allow some flags that the linker clears to differ. */
7828 if (elf_section_type (osec) == SHT_NULL
7829 && (osec->flags == isec->flags
7830 || (final_link
7831 && ((osec->flags ^ isec->flags)
7832 & ~(SEC_LINK_ONCE | SEC_LINK_DUPLICATES | SEC_RELOC)) == 0)))
7833 elf_section_type (osec) = elf_section_type (isec);
7834
7835 /* FIXME: Is this correct for all OS/PROC specific flags? */
7836 elf_section_flags (osec) = (elf_section_flags (isec)
7837 & (SHF_MASKOS | SHF_MASKPROC));
7838
7839 /* Copy sh_info from input for mbind section. */
7840 if ((elf_tdata (ibfd)->has_gnu_osabi & elf_gnu_osabi_mbind) != 0
7841 && elf_section_flags (isec) & SHF_GNU_MBIND)
7842 elf_section_data (osec)->this_hdr.sh_info
7843 = elf_section_data (isec)->this_hdr.sh_info;
7844
7845 /* Set things up for objcopy and relocatable link. The output
7846 SHT_GROUP section will have its elf_next_in_group pointing back
7847 to the input group members. Ignore linker created group section.
7848 See elfNN_ia64_object_p in elfxx-ia64.c. */
7849 if ((link_info == NULL
7850 || !link_info->resolve_section_groups)
7851 && (elf_sec_group (isec) == NULL
7852 || (elf_sec_group (isec)->flags & SEC_LINKER_CREATED) == 0))
7853 {
7854 if (elf_section_flags (isec) & SHF_GROUP)
7855 elf_section_flags (osec) |= SHF_GROUP;
7856 elf_next_in_group (osec) = elf_next_in_group (isec);
7857 elf_section_data (osec)->group = elf_section_data (isec)->group;
7858 }
7859
7860 /* If not decompress, preserve SHF_COMPRESSED. */
7861 if (!final_link && (ibfd->flags & BFD_DECOMPRESS) == 0)
7862 elf_section_flags (osec) |= (elf_section_flags (isec)
7863 & SHF_COMPRESSED);
7864
7865 ihdr = &elf_section_data (isec)->this_hdr;
7866
7867 /* We need to handle elf_linked_to_section for SHF_LINK_ORDER. We
7868 don't use the output section of the linked-to section since it
7869 may be NULL at this point. */
7870 if ((ihdr->sh_flags & SHF_LINK_ORDER) != 0)
7871 {
7872 ohdr = &elf_section_data (osec)->this_hdr;
7873 ohdr->sh_flags |= SHF_LINK_ORDER;
7874 elf_linked_to_section (osec) = elf_linked_to_section (isec);
7875 }
7876
7877 osec->use_rela_p = isec->use_rela_p;
7878
7879 return true;
7880 }
7881
7882 /* Copy private section information. This copies over the entsize
7883 field, and sometimes the info field. */
7884
7885 bool
7886 _bfd_elf_copy_private_section_data (bfd *ibfd,
7887 asection *isec,
7888 bfd *obfd,
7889 asection *osec)
7890 {
7891 Elf_Internal_Shdr *ihdr, *ohdr;
7892
7893 if (ibfd->xvec->flavour != bfd_target_elf_flavour
7894 || obfd->xvec->flavour != bfd_target_elf_flavour)
7895 return true;
7896
7897 ihdr = &elf_section_data (isec)->this_hdr;
7898 ohdr = &elf_section_data (osec)->this_hdr;
7899
7900 ohdr->sh_entsize = ihdr->sh_entsize;
7901
7902 if (ihdr->sh_type == SHT_SYMTAB
7903 || ihdr->sh_type == SHT_DYNSYM
7904 || ihdr->sh_type == SHT_GNU_verneed
7905 || ihdr->sh_type == SHT_GNU_verdef)
7906 ohdr->sh_info = ihdr->sh_info;
7907
7908 return _bfd_elf_init_private_section_data (ibfd, isec, obfd, osec,
7909 NULL);
7910 }
7911
7912 /* Look at all the SHT_GROUP sections in IBFD, making any adjustments
7913 necessary if we are removing either the SHT_GROUP section or any of
7914 the group member sections. DISCARDED is the value that a section's
7915 output_section has if the section will be discarded, NULL when this
7916 function is called from objcopy, bfd_abs_section_ptr when called
7917 from the linker. */
7918
7919 bool
7920 _bfd_elf_fixup_group_sections (bfd *ibfd, asection *discarded)
7921 {
7922 asection *isec;
7923
7924 for (isec = ibfd->sections; isec != NULL; isec = isec->next)
7925 if (elf_section_type (isec) == SHT_GROUP)
7926 {
7927 asection *first = elf_next_in_group (isec);
7928 asection *s = first;
7929 bfd_size_type removed = 0;
7930
7931 while (s != NULL)
7932 {
7933 /* If this member section is being output but the
7934 SHT_GROUP section is not, then clear the group info
7935 set up by _bfd_elf_copy_private_section_data. */
7936 if (s->output_section != discarded
7937 && isec->output_section == discarded)
7938 {
7939 elf_section_flags (s->output_section) &= ~SHF_GROUP;
7940 elf_group_name (s->output_section) = NULL;
7941 }
7942 else
7943 {
7944 struct bfd_elf_section_data *elf_sec = elf_section_data (s);
7945 if (s->output_section == discarded
7946 && isec->output_section != discarded)
7947 {
7948 /* Conversely, if the member section is not being
7949 output but the SHT_GROUP section is, then adjust
7950 its size. */
7951 removed += 4;
7952 if (elf_sec->rel.hdr != NULL
7953 && (elf_sec->rel.hdr->sh_flags & SHF_GROUP) != 0)
7954 removed += 4;
7955 if (elf_sec->rela.hdr != NULL
7956 && (elf_sec->rela.hdr->sh_flags & SHF_GROUP) != 0)
7957 removed += 4;
7958 }
7959 else
7960 {
7961 /* Also adjust for zero-sized relocation member
7962 section. */
7963 if (elf_sec->rel.hdr != NULL
7964 && elf_sec->rel.hdr->sh_size == 0)
7965 removed += 4;
7966 if (elf_sec->rela.hdr != NULL
7967 && elf_sec->rela.hdr->sh_size == 0)
7968 removed += 4;
7969 }
7970 }
7971 s = elf_next_in_group (s);
7972 if (s == first)
7973 break;
7974 }
7975 if (removed != 0)
7976 {
7977 if (discarded != NULL)
7978 {
7979 /* If we've been called for ld -r, then we need to
7980 adjust the input section size. */
7981 if (isec->rawsize == 0)
7982 isec->rawsize = isec->size;
7983 isec->size = isec->rawsize - removed;
7984 if (isec->size <= 4)
7985 {
7986 isec->size = 0;
7987 isec->flags |= SEC_EXCLUDE;
7988 }
7989 }
7990 else
7991 {
7992 /* Adjust the output section size when called from
7993 objcopy. */
7994 isec->output_section->size -= removed;
7995 if (isec->output_section->size <= 4)
7996 {
7997 isec->output_section->size = 0;
7998 isec->output_section->flags |= SEC_EXCLUDE;
7999 }
8000 }
8001 }
8002 }
8003
8004 return true;
8005 }
8006
8007 /* Copy private header information. */
8008
8009 bool
8010 _bfd_elf_copy_private_header_data (bfd *ibfd, bfd *obfd)
8011 {
8012 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
8013 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
8014 return true;
8015
8016 /* Copy over private BFD data if it has not already been copied.
8017 This must be done here, rather than in the copy_private_bfd_data
8018 entry point, because the latter is called after the section
8019 contents have been set, which means that the program headers have
8020 already been worked out. */
8021 if (elf_seg_map (obfd) == NULL && elf_tdata (ibfd)->phdr != NULL)
8022 {
8023 if (! copy_private_bfd_data (ibfd, obfd))
8024 return false;
8025 }
8026
8027 return _bfd_elf_fixup_group_sections (ibfd, NULL);
8028 }
8029
8030 /* Copy private symbol information. If this symbol is in a section
8031 which we did not map into a BFD section, try to map the section
8032 index correctly. We use special macro definitions for the mapped
8033 section indices; these definitions are interpreted by the
8034 swap_out_syms function. */
8035
8036 #define MAP_ONESYMTAB (SHN_HIOS + 1)
8037 #define MAP_DYNSYMTAB (SHN_HIOS + 2)
8038 #define MAP_STRTAB (SHN_HIOS + 3)
8039 #define MAP_SHSTRTAB (SHN_HIOS + 4)
8040 #define MAP_SYM_SHNDX (SHN_HIOS + 5)
8041
8042 bool
8043 _bfd_elf_copy_private_symbol_data (bfd *ibfd,
8044 asymbol *isymarg,
8045 bfd *obfd,
8046 asymbol *osymarg)
8047 {
8048 elf_symbol_type *isym, *osym;
8049
8050 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
8051 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
8052 return true;
8053
8054 isym = elf_symbol_from (isymarg);
8055 osym = elf_symbol_from (osymarg);
8056
8057 if (isym != NULL
8058 && isym->internal_elf_sym.st_shndx != 0
8059 && osym != NULL
8060 && bfd_is_abs_section (isym->symbol.section))
8061 {
8062 unsigned int shndx;
8063
8064 shndx = isym->internal_elf_sym.st_shndx;
8065 if (shndx == elf_onesymtab (ibfd))
8066 shndx = MAP_ONESYMTAB;
8067 else if (shndx == elf_dynsymtab (ibfd))
8068 shndx = MAP_DYNSYMTAB;
8069 else if (shndx == elf_strtab_sec (ibfd))
8070 shndx = MAP_STRTAB;
8071 else if (shndx == elf_shstrtab_sec (ibfd))
8072 shndx = MAP_SHSTRTAB;
8073 else if (find_section_in_list (shndx, elf_symtab_shndx_list (ibfd)))
8074 shndx = MAP_SYM_SHNDX;
8075 osym->internal_elf_sym.st_shndx = shndx;
8076 }
8077
8078 return true;
8079 }
8080
8081 /* Swap out the symbols. */
8082
8083 static bool
8084 swap_out_syms (bfd *abfd,
8085 struct elf_strtab_hash **sttp,
8086 int relocatable_p,
8087 struct bfd_link_info *info)
8088 {
8089 const struct elf_backend_data *bed;
8090 unsigned int symcount;
8091 asymbol **syms;
8092 struct elf_strtab_hash *stt;
8093 Elf_Internal_Shdr *symtab_hdr;
8094 Elf_Internal_Shdr *symtab_shndx_hdr;
8095 Elf_Internal_Shdr *symstrtab_hdr;
8096 struct elf_sym_strtab *symstrtab;
8097 bfd_byte *outbound_syms;
8098 bfd_byte *outbound_shndx;
8099 unsigned long outbound_syms_index;
8100 unsigned long outbound_shndx_index;
8101 unsigned int idx;
8102 unsigned int num_locals;
8103 size_t amt;
8104 bool name_local_sections;
8105
8106 if (!elf_map_symbols (abfd, &num_locals))
8107 return false;
8108
8109 /* Dump out the symtabs. */
8110 stt = _bfd_elf_strtab_init ();
8111 if (stt == NULL)
8112 return false;
8113
8114 bed = get_elf_backend_data (abfd);
8115 symcount = bfd_get_symcount (abfd);
8116 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
8117 symtab_hdr->sh_type = SHT_SYMTAB;
8118 symtab_hdr->sh_entsize = bed->s->sizeof_sym;
8119 symtab_hdr->sh_size = symtab_hdr->sh_entsize * (symcount + 1);
8120 symtab_hdr->sh_info = num_locals + 1;
8121 symtab_hdr->sh_addralign = (bfd_vma) 1 << bed->s->log_file_align;
8122
8123 symstrtab_hdr = &elf_tdata (abfd)->strtab_hdr;
8124 symstrtab_hdr->sh_type = SHT_STRTAB;
8125
8126 /* Allocate buffer to swap out the .strtab section. */
8127 if (_bfd_mul_overflow (symcount + 1, sizeof (*symstrtab), &amt)
8128 || (symstrtab = (struct elf_sym_strtab *) bfd_malloc (amt)) == NULL)
8129 {
8130 bfd_set_error (bfd_error_no_memory);
8131 _bfd_elf_strtab_free (stt);
8132 return false;
8133 }
8134
8135 if (_bfd_mul_overflow (symcount + 1, bed->s->sizeof_sym, &amt)
8136 || (outbound_syms = (bfd_byte *) bfd_alloc (abfd, amt)) == NULL)
8137 {
8138 error_no_mem:
8139 bfd_set_error (bfd_error_no_memory);
8140 error_return:
8141 free (symstrtab);
8142 _bfd_elf_strtab_free (stt);
8143 return false;
8144 }
8145 symtab_hdr->contents = outbound_syms;
8146 outbound_syms_index = 0;
8147
8148 outbound_shndx = NULL;
8149 outbound_shndx_index = 0;
8150
8151 if (elf_symtab_shndx_list (abfd))
8152 {
8153 symtab_shndx_hdr = & elf_symtab_shndx_list (abfd)->hdr;
8154 if (symtab_shndx_hdr->sh_name != 0)
8155 {
8156 if (_bfd_mul_overflow (symcount + 1,
8157 sizeof (Elf_External_Sym_Shndx), &amt))
8158 goto error_no_mem;
8159 outbound_shndx = (bfd_byte *) bfd_zalloc (abfd, amt);
8160 if (outbound_shndx == NULL)
8161 goto error_return;
8162
8163 symtab_shndx_hdr->contents = outbound_shndx;
8164 symtab_shndx_hdr->sh_type = SHT_SYMTAB_SHNDX;
8165 symtab_shndx_hdr->sh_size = amt;
8166 symtab_shndx_hdr->sh_addralign = sizeof (Elf_External_Sym_Shndx);
8167 symtab_shndx_hdr->sh_entsize = sizeof (Elf_External_Sym_Shndx);
8168 }
8169 /* FIXME: What about any other headers in the list ? */
8170 }
8171
8172 /* Now generate the data (for "contents"). */
8173 {
8174 /* Fill in zeroth symbol and swap it out. */
8175 Elf_Internal_Sym sym;
8176 sym.st_name = 0;
8177 sym.st_value = 0;
8178 sym.st_size = 0;
8179 sym.st_info = 0;
8180 sym.st_other = 0;
8181 sym.st_shndx = SHN_UNDEF;
8182 sym.st_target_internal = 0;
8183 symstrtab[0].sym = sym;
8184 symstrtab[0].dest_index = outbound_syms_index;
8185 symstrtab[0].destshndx_index = outbound_shndx_index;
8186 outbound_syms_index++;
8187 if (outbound_shndx != NULL)
8188 outbound_shndx_index++;
8189 }
8190
8191 name_local_sections
8192 = (bed->elf_backend_name_local_section_symbols
8193 && bed->elf_backend_name_local_section_symbols (abfd));
8194
8195 syms = bfd_get_outsymbols (abfd);
8196 for (idx = 0; idx < symcount;)
8197 {
8198 Elf_Internal_Sym sym;
8199 bfd_vma value = syms[idx]->value;
8200 elf_symbol_type *type_ptr;
8201 flagword flags = syms[idx]->flags;
8202 int type;
8203
8204 if (!name_local_sections
8205 && (flags & (BSF_SECTION_SYM | BSF_GLOBAL)) == BSF_SECTION_SYM)
8206 {
8207 /* Local section symbols have no name. */
8208 sym.st_name = (unsigned long) -1;
8209 }
8210 else
8211 {
8212 /* Call _bfd_elf_strtab_offset after _bfd_elf_strtab_finalize
8213 to get the final offset for st_name. */
8214 sym.st_name
8215 = (unsigned long) _bfd_elf_strtab_add (stt, syms[idx]->name,
8216 false);
8217 if (sym.st_name == (unsigned long) -1)
8218 goto error_return;
8219 }
8220
8221 type_ptr = elf_symbol_from (syms[idx]);
8222
8223 if ((flags & BSF_SECTION_SYM) == 0
8224 && bfd_is_com_section (syms[idx]->section))
8225 {
8226 /* ELF common symbols put the alignment into the `value' field,
8227 and the size into the `size' field. This is backwards from
8228 how BFD handles it, so reverse it here. */
8229 sym.st_size = value;
8230 if (type_ptr == NULL
8231 || type_ptr->internal_elf_sym.st_value == 0)
8232 sym.st_value = value >= 16 ? 16 : (1 << bfd_log2 (value));
8233 else
8234 sym.st_value = type_ptr->internal_elf_sym.st_value;
8235 sym.st_shndx = _bfd_elf_section_from_bfd_section
8236 (abfd, syms[idx]->section);
8237 }
8238 else
8239 {
8240 asection *sec = syms[idx]->section;
8241 unsigned int shndx;
8242
8243 if (sec->output_section)
8244 {
8245 value += sec->output_offset;
8246 sec = sec->output_section;
8247 }
8248
8249 /* Don't add in the section vma for relocatable output. */
8250 if (! relocatable_p)
8251 value += sec->vma;
8252 sym.st_value = value;
8253 sym.st_size = type_ptr ? type_ptr->internal_elf_sym.st_size : 0;
8254
8255 if (bfd_is_abs_section (sec)
8256 && type_ptr != NULL
8257 && type_ptr->internal_elf_sym.st_shndx != 0)
8258 {
8259 /* This symbol is in a real ELF section which we did
8260 not create as a BFD section. Undo the mapping done
8261 by copy_private_symbol_data. */
8262 shndx = type_ptr->internal_elf_sym.st_shndx;
8263 switch (shndx)
8264 {
8265 case MAP_ONESYMTAB:
8266 shndx = elf_onesymtab (abfd);
8267 break;
8268 case MAP_DYNSYMTAB:
8269 shndx = elf_dynsymtab (abfd);
8270 break;
8271 case MAP_STRTAB:
8272 shndx = elf_strtab_sec (abfd);
8273 break;
8274 case MAP_SHSTRTAB:
8275 shndx = elf_shstrtab_sec (abfd);
8276 break;
8277 case MAP_SYM_SHNDX:
8278 if (elf_symtab_shndx_list (abfd))
8279 shndx = elf_symtab_shndx_list (abfd)->ndx;
8280 break;
8281 case SHN_COMMON:
8282 case SHN_ABS:
8283 shndx = SHN_ABS;
8284 break;
8285 default:
8286 if (shndx >= SHN_LOPROC && shndx <= SHN_HIOS)
8287 {
8288 if (bed->symbol_section_index)
8289 shndx = bed->symbol_section_index (abfd, type_ptr);
8290 /* Otherwise just leave the index alone. */
8291 }
8292 else
8293 {
8294 if (shndx > SHN_HIOS && shndx < SHN_HIRESERVE)
8295 _bfd_error_handler (_("%pB: \
8296 Unable to handle section index %x in ELF symbol. Using ABS instead."),
8297 abfd, shndx);
8298 shndx = SHN_ABS;
8299 }
8300 break;
8301 }
8302 }
8303 else
8304 {
8305 shndx = _bfd_elf_section_from_bfd_section (abfd, sec);
8306
8307 if (shndx == SHN_BAD)
8308 {
8309 asection *sec2;
8310
8311 /* Writing this would be a hell of a lot easier if
8312 we had some decent documentation on bfd, and
8313 knew what to expect of the library, and what to
8314 demand of applications. For example, it
8315 appears that `objcopy' might not set the
8316 section of a symbol to be a section that is
8317 actually in the output file. */
8318 sec2 = bfd_get_section_by_name (abfd, sec->name);
8319 if (sec2 != NULL)
8320 shndx = _bfd_elf_section_from_bfd_section (abfd, sec2);
8321 if (shndx == SHN_BAD)
8322 {
8323 /* xgettext:c-format */
8324 _bfd_error_handler
8325 (_("unable to find equivalent output section"
8326 " for symbol '%s' from section '%s'"),
8327 syms[idx]->name ? syms[idx]->name : "<Local sym>",
8328 sec->name);
8329 bfd_set_error (bfd_error_invalid_operation);
8330 goto error_return;
8331 }
8332 }
8333 }
8334
8335 sym.st_shndx = shndx;
8336 }
8337
8338 if ((flags & BSF_THREAD_LOCAL) != 0)
8339 type = STT_TLS;
8340 else if ((flags & BSF_GNU_INDIRECT_FUNCTION) != 0)
8341 type = STT_GNU_IFUNC;
8342 else if ((flags & BSF_FUNCTION) != 0)
8343 type = STT_FUNC;
8344 else if ((flags & BSF_OBJECT) != 0)
8345 type = STT_OBJECT;
8346 else if ((flags & BSF_RELC) != 0)
8347 type = STT_RELC;
8348 else if ((flags & BSF_SRELC) != 0)
8349 type = STT_SRELC;
8350 else
8351 type = STT_NOTYPE;
8352
8353 if (syms[idx]->section->flags & SEC_THREAD_LOCAL)
8354 type = STT_TLS;
8355
8356 /* Processor-specific types. */
8357 if (type_ptr != NULL
8358 && bed->elf_backend_get_symbol_type)
8359 type = ((*bed->elf_backend_get_symbol_type)
8360 (&type_ptr->internal_elf_sym, type));
8361
8362 if (flags & BSF_SECTION_SYM)
8363 {
8364 if (flags & BSF_GLOBAL)
8365 sym.st_info = ELF_ST_INFO (STB_GLOBAL, STT_SECTION);
8366 else
8367 sym.st_info = ELF_ST_INFO (STB_LOCAL, STT_SECTION);
8368 }
8369 else if (bfd_is_com_section (syms[idx]->section))
8370 {
8371 if (type != STT_TLS)
8372 {
8373 if ((abfd->flags & BFD_CONVERT_ELF_COMMON))
8374 type = ((abfd->flags & BFD_USE_ELF_STT_COMMON)
8375 ? STT_COMMON : STT_OBJECT);
8376 else
8377 type = ((flags & BSF_ELF_COMMON) != 0
8378 ? STT_COMMON : STT_OBJECT);
8379 }
8380 sym.st_info = ELF_ST_INFO (STB_GLOBAL, type);
8381 }
8382 else if (bfd_is_und_section (syms[idx]->section))
8383 sym.st_info = ELF_ST_INFO (((flags & BSF_WEAK)
8384 ? STB_WEAK
8385 : STB_GLOBAL),
8386 type);
8387 else if (flags & BSF_FILE)
8388 sym.st_info = ELF_ST_INFO (STB_LOCAL, STT_FILE);
8389 else
8390 {
8391 int bind = STB_LOCAL;
8392
8393 if (flags & BSF_LOCAL)
8394 bind = STB_LOCAL;
8395 else if (flags & BSF_GNU_UNIQUE)
8396 bind = STB_GNU_UNIQUE;
8397 else if (flags & BSF_WEAK)
8398 bind = STB_WEAK;
8399 else if (flags & BSF_GLOBAL)
8400 bind = STB_GLOBAL;
8401
8402 sym.st_info = ELF_ST_INFO (bind, type);
8403 }
8404
8405 if (type_ptr != NULL)
8406 {
8407 sym.st_other = type_ptr->internal_elf_sym.st_other;
8408 sym.st_target_internal
8409 = type_ptr->internal_elf_sym.st_target_internal;
8410 }
8411 else
8412 {
8413 sym.st_other = 0;
8414 sym.st_target_internal = 0;
8415 }
8416
8417 idx++;
8418 symstrtab[idx].sym = sym;
8419 symstrtab[idx].dest_index = outbound_syms_index;
8420 symstrtab[idx].destshndx_index = outbound_shndx_index;
8421
8422 outbound_syms_index++;
8423 if (outbound_shndx != NULL)
8424 outbound_shndx_index++;
8425 }
8426
8427 /* Finalize the .strtab section. */
8428 _bfd_elf_strtab_finalize (stt);
8429
8430 /* Swap out the .strtab section. */
8431 for (idx = 0; idx <= symcount; idx++)
8432 {
8433 struct elf_sym_strtab *elfsym = &symstrtab[idx];
8434 if (elfsym->sym.st_name == (unsigned long) -1)
8435 elfsym->sym.st_name = 0;
8436 else
8437 elfsym->sym.st_name = _bfd_elf_strtab_offset (stt,
8438 elfsym->sym.st_name);
8439 if (info && info->callbacks->ctf_new_symbol)
8440 info->callbacks->ctf_new_symbol (elfsym->dest_index,
8441 &elfsym->sym);
8442
8443 /* Inform the linker of the addition of this symbol. */
8444
8445 bed->s->swap_symbol_out (abfd, &elfsym->sym,
8446 (outbound_syms
8447 + (elfsym->dest_index
8448 * bed->s->sizeof_sym)),
8449 (outbound_shndx
8450 + (elfsym->destshndx_index
8451 * sizeof (Elf_External_Sym_Shndx))));
8452 }
8453 free (symstrtab);
8454
8455 *sttp = stt;
8456 symstrtab_hdr->sh_size = _bfd_elf_strtab_size (stt);
8457 symstrtab_hdr->sh_type = SHT_STRTAB;
8458 symstrtab_hdr->sh_flags = bed->elf_strtab_flags;
8459 symstrtab_hdr->sh_addr = 0;
8460 symstrtab_hdr->sh_entsize = 0;
8461 symstrtab_hdr->sh_link = 0;
8462 symstrtab_hdr->sh_info = 0;
8463 symstrtab_hdr->sh_addralign = 1;
8464
8465 return true;
8466 }
8467
8468 /* Return the number of bytes required to hold the symtab vector.
8469
8470 Note that we base it on the count plus 1, since we will null terminate
8471 the vector allocated based on this size. However, the ELF symbol table
8472 always has a dummy entry as symbol #0, so it ends up even. */
8473
8474 long
8475 _bfd_elf_get_symtab_upper_bound (bfd *abfd)
8476 {
8477 bfd_size_type symcount;
8478 long symtab_size;
8479 Elf_Internal_Shdr *hdr = &elf_tdata (abfd)->symtab_hdr;
8480
8481 symcount = hdr->sh_size / get_elf_backend_data (abfd)->s->sizeof_sym;
8482 if (symcount > LONG_MAX / sizeof (asymbol *))
8483 {
8484 bfd_set_error (bfd_error_file_too_big);
8485 return -1;
8486 }
8487 symtab_size = symcount * (sizeof (asymbol *));
8488 if (symcount == 0)
8489 symtab_size = sizeof (asymbol *);
8490 else if (!bfd_write_p (abfd))
8491 {
8492 ufile_ptr filesize = bfd_get_file_size (abfd);
8493
8494 if (filesize != 0 && (unsigned long) symtab_size > filesize)
8495 {
8496 bfd_set_error (bfd_error_file_truncated);
8497 return -1;
8498 }
8499 }
8500
8501 return symtab_size;
8502 }
8503
8504 long
8505 _bfd_elf_get_dynamic_symtab_upper_bound (bfd *abfd)
8506 {
8507 bfd_size_type symcount;
8508 long symtab_size;
8509 Elf_Internal_Shdr *hdr = &elf_tdata (abfd)->dynsymtab_hdr;
8510
8511 if (elf_dynsymtab (abfd) == 0)
8512 {
8513 bfd_set_error (bfd_error_invalid_operation);
8514 return -1;
8515 }
8516
8517 symcount = hdr->sh_size / get_elf_backend_data (abfd)->s->sizeof_sym;
8518 if (symcount > LONG_MAX / sizeof (asymbol *))
8519 {
8520 bfd_set_error (bfd_error_file_too_big);
8521 return -1;
8522 }
8523 symtab_size = symcount * (sizeof (asymbol *));
8524 if (symcount == 0)
8525 symtab_size = sizeof (asymbol *);
8526 else if (!bfd_write_p (abfd))
8527 {
8528 ufile_ptr filesize = bfd_get_file_size (abfd);
8529
8530 if (filesize != 0 && (unsigned long) symtab_size > filesize)
8531 {
8532 bfd_set_error (bfd_error_file_truncated);
8533 return -1;
8534 }
8535 }
8536
8537 return symtab_size;
8538 }
8539
8540 long
8541 _bfd_elf_get_reloc_upper_bound (bfd *abfd, sec_ptr asect)
8542 {
8543 if (asect->reloc_count != 0 && !bfd_write_p (abfd))
8544 {
8545 /* Sanity check reloc section size. */
8546 struct bfd_elf_section_data *d = elf_section_data (asect);
8547 Elf_Internal_Shdr *rel_hdr = &d->this_hdr;
8548 bfd_size_type ext_rel_size = rel_hdr->sh_size;
8549 ufile_ptr filesize = bfd_get_file_size (abfd);
8550
8551 if (filesize != 0 && ext_rel_size > filesize)
8552 {
8553 bfd_set_error (bfd_error_file_truncated);
8554 return -1;
8555 }
8556 }
8557
8558 #if SIZEOF_LONG == SIZEOF_INT
8559 if (asect->reloc_count >= LONG_MAX / sizeof (arelent *))
8560 {
8561 bfd_set_error (bfd_error_file_too_big);
8562 return -1;
8563 }
8564 #endif
8565 return (asect->reloc_count + 1) * sizeof (arelent *);
8566 }
8567
8568 /* Canonicalize the relocs. */
8569
8570 long
8571 _bfd_elf_canonicalize_reloc (bfd *abfd,
8572 sec_ptr section,
8573 arelent **relptr,
8574 asymbol **symbols)
8575 {
8576 arelent *tblptr;
8577 unsigned int i;
8578 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
8579
8580 if (! bed->s->slurp_reloc_table (abfd, section, symbols, false))
8581 return -1;
8582
8583 tblptr = section->relocation;
8584 for (i = 0; i < section->reloc_count; i++)
8585 *relptr++ = tblptr++;
8586
8587 *relptr = NULL;
8588
8589 return section->reloc_count;
8590 }
8591
8592 long
8593 _bfd_elf_canonicalize_symtab (bfd *abfd, asymbol **allocation)
8594 {
8595 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
8596 long symcount = bed->s->slurp_symbol_table (abfd, allocation, false);
8597
8598 if (symcount >= 0)
8599 abfd->symcount = symcount;
8600 return symcount;
8601 }
8602
8603 long
8604 _bfd_elf_canonicalize_dynamic_symtab (bfd *abfd,
8605 asymbol **allocation)
8606 {
8607 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
8608 long symcount = bed->s->slurp_symbol_table (abfd, allocation, true);
8609
8610 if (symcount >= 0)
8611 abfd->dynsymcount = symcount;
8612 return symcount;
8613 }
8614
8615 /* Return the size required for the dynamic reloc entries. Any loadable
8616 section that was actually installed in the BFD, and has type SHT_REL
8617 or SHT_RELA, and uses the dynamic symbol table, is considered to be a
8618 dynamic reloc section. */
8619
8620 long
8621 _bfd_elf_get_dynamic_reloc_upper_bound (bfd *abfd)
8622 {
8623 bfd_size_type count, ext_rel_size;
8624 asection *s;
8625
8626 if (elf_dynsymtab (abfd) == 0)
8627 {
8628 bfd_set_error (bfd_error_invalid_operation);
8629 return -1;
8630 }
8631
8632 count = 1;
8633 ext_rel_size = 0;
8634 for (s = abfd->sections; s != NULL; s = s->next)
8635 if (elf_section_data (s)->this_hdr.sh_link == elf_dynsymtab (abfd)
8636 && (elf_section_data (s)->this_hdr.sh_type == SHT_REL
8637 || elf_section_data (s)->this_hdr.sh_type == SHT_RELA))
8638 {
8639 ext_rel_size += s->size;
8640 if (ext_rel_size < s->size)
8641 {
8642 bfd_set_error (bfd_error_file_truncated);
8643 return -1;
8644 }
8645 count += s->size / elf_section_data (s)->this_hdr.sh_entsize;
8646 if (count > LONG_MAX / sizeof (arelent *))
8647 {
8648 bfd_set_error (bfd_error_file_too_big);
8649 return -1;
8650 }
8651 }
8652 if (count > 1 && !bfd_write_p (abfd))
8653 {
8654 /* Sanity check reloc section sizes. */
8655 ufile_ptr filesize = bfd_get_file_size (abfd);
8656 if (filesize != 0 && ext_rel_size > filesize)
8657 {
8658 bfd_set_error (bfd_error_file_truncated);
8659 return -1;
8660 }
8661 }
8662 return count * sizeof (arelent *);
8663 }
8664
8665 /* Canonicalize the dynamic relocation entries. Note that we return the
8666 dynamic relocations as a single block, although they are actually
8667 associated with particular sections; the interface, which was
8668 designed for SunOS style shared libraries, expects that there is only
8669 one set of dynamic relocs. Any loadable section that was actually
8670 installed in the BFD, and has type SHT_REL or SHT_RELA, and uses the
8671 dynamic symbol table, is considered to be a dynamic reloc section. */
8672
8673 long
8674 _bfd_elf_canonicalize_dynamic_reloc (bfd *abfd,
8675 arelent **storage,
8676 asymbol **syms)
8677 {
8678 bool (*slurp_relocs) (bfd *, asection *, asymbol **, bool);
8679 asection *s;
8680 long ret;
8681
8682 if (elf_dynsymtab (abfd) == 0)
8683 {
8684 bfd_set_error (bfd_error_invalid_operation);
8685 return -1;
8686 }
8687
8688 slurp_relocs = get_elf_backend_data (abfd)->s->slurp_reloc_table;
8689 ret = 0;
8690 for (s = abfd->sections; s != NULL; s = s->next)
8691 {
8692 if (elf_section_data (s)->this_hdr.sh_link == elf_dynsymtab (abfd)
8693 && (elf_section_data (s)->this_hdr.sh_type == SHT_REL
8694 || elf_section_data (s)->this_hdr.sh_type == SHT_RELA))
8695 {
8696 arelent *p;
8697 long count, i;
8698
8699 if (! (*slurp_relocs) (abfd, s, syms, true))
8700 return -1;
8701 count = s->size / elf_section_data (s)->this_hdr.sh_entsize;
8702 p = s->relocation;
8703 for (i = 0; i < count; i++)
8704 *storage++ = p++;
8705 ret += count;
8706 }
8707 }
8708
8709 *storage = NULL;
8710
8711 return ret;
8712 }
8713 \f
8714 /* Read in the version information. */
8715
8716 bool
8717 _bfd_elf_slurp_version_tables (bfd *abfd, bool default_imported_symver)
8718 {
8719 bfd_byte *contents = NULL;
8720 unsigned int freeidx = 0;
8721 size_t amt;
8722
8723 if (elf_dynverref (abfd) != 0)
8724 {
8725 Elf_Internal_Shdr *hdr;
8726 Elf_External_Verneed *everneed;
8727 Elf_Internal_Verneed *iverneed;
8728 unsigned int i;
8729 bfd_byte *contents_end;
8730
8731 hdr = &elf_tdata (abfd)->dynverref_hdr;
8732
8733 if (hdr->sh_info == 0
8734 || hdr->sh_info > hdr->sh_size / sizeof (Elf_External_Verneed))
8735 {
8736 error_return_bad_verref:
8737 _bfd_error_handler
8738 (_("%pB: .gnu.version_r invalid entry"), abfd);
8739 bfd_set_error (bfd_error_bad_value);
8740 error_return_verref:
8741 elf_tdata (abfd)->verref = NULL;
8742 elf_tdata (abfd)->cverrefs = 0;
8743 goto error_return;
8744 }
8745
8746 if (bfd_seek (abfd, hdr->sh_offset, SEEK_SET) != 0)
8747 goto error_return_verref;
8748 contents = _bfd_malloc_and_read (abfd, hdr->sh_size, hdr->sh_size);
8749 if (contents == NULL)
8750 goto error_return_verref;
8751
8752 if (_bfd_mul_overflow (hdr->sh_info, sizeof (Elf_Internal_Verneed), &amt))
8753 {
8754 bfd_set_error (bfd_error_file_too_big);
8755 goto error_return_verref;
8756 }
8757 elf_tdata (abfd)->verref = (Elf_Internal_Verneed *) bfd_alloc (abfd, amt);
8758 if (elf_tdata (abfd)->verref == NULL)
8759 goto error_return_verref;
8760
8761 BFD_ASSERT (sizeof (Elf_External_Verneed)
8762 == sizeof (Elf_External_Vernaux));
8763 contents_end = contents + hdr->sh_size - sizeof (Elf_External_Verneed);
8764 everneed = (Elf_External_Verneed *) contents;
8765 iverneed = elf_tdata (abfd)->verref;
8766 for (i = 0; i < hdr->sh_info; i++, iverneed++)
8767 {
8768 Elf_External_Vernaux *evernaux;
8769 Elf_Internal_Vernaux *ivernaux;
8770 unsigned int j;
8771
8772 _bfd_elf_swap_verneed_in (abfd, everneed, iverneed);
8773
8774 iverneed->vn_bfd = abfd;
8775
8776 iverneed->vn_filename =
8777 bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
8778 iverneed->vn_file);
8779 if (iverneed->vn_filename == NULL)
8780 goto error_return_bad_verref;
8781
8782 if (iverneed->vn_cnt == 0)
8783 iverneed->vn_auxptr = NULL;
8784 else
8785 {
8786 if (_bfd_mul_overflow (iverneed->vn_cnt,
8787 sizeof (Elf_Internal_Vernaux), &amt))
8788 {
8789 bfd_set_error (bfd_error_file_too_big);
8790 goto error_return_verref;
8791 }
8792 iverneed->vn_auxptr = (struct elf_internal_vernaux *)
8793 bfd_alloc (abfd, amt);
8794 if (iverneed->vn_auxptr == NULL)
8795 goto error_return_verref;
8796 }
8797
8798 if (iverneed->vn_aux
8799 > (size_t) (contents_end - (bfd_byte *) everneed))
8800 goto error_return_bad_verref;
8801
8802 evernaux = ((Elf_External_Vernaux *)
8803 ((bfd_byte *) everneed + iverneed->vn_aux));
8804 ivernaux = iverneed->vn_auxptr;
8805 for (j = 0; j < iverneed->vn_cnt; j++, ivernaux++)
8806 {
8807 _bfd_elf_swap_vernaux_in (abfd, evernaux, ivernaux);
8808
8809 ivernaux->vna_nodename =
8810 bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
8811 ivernaux->vna_name);
8812 if (ivernaux->vna_nodename == NULL)
8813 goto error_return_bad_verref;
8814
8815 if (ivernaux->vna_other > freeidx)
8816 freeidx = ivernaux->vna_other;
8817
8818 ivernaux->vna_nextptr = NULL;
8819 if (ivernaux->vna_next == 0)
8820 {
8821 iverneed->vn_cnt = j + 1;
8822 break;
8823 }
8824 if (j + 1 < iverneed->vn_cnt)
8825 ivernaux->vna_nextptr = ivernaux + 1;
8826
8827 if (ivernaux->vna_next
8828 > (size_t) (contents_end - (bfd_byte *) evernaux))
8829 goto error_return_bad_verref;
8830
8831 evernaux = ((Elf_External_Vernaux *)
8832 ((bfd_byte *) evernaux + ivernaux->vna_next));
8833 }
8834
8835 iverneed->vn_nextref = NULL;
8836 if (iverneed->vn_next == 0)
8837 break;
8838 if (i + 1 < hdr->sh_info)
8839 iverneed->vn_nextref = iverneed + 1;
8840
8841 if (iverneed->vn_next
8842 > (size_t) (contents_end - (bfd_byte *) everneed))
8843 goto error_return_bad_verref;
8844
8845 everneed = ((Elf_External_Verneed *)
8846 ((bfd_byte *) everneed + iverneed->vn_next));
8847 }
8848 elf_tdata (abfd)->cverrefs = i;
8849
8850 free (contents);
8851 contents = NULL;
8852 }
8853
8854 if (elf_dynverdef (abfd) != 0)
8855 {
8856 Elf_Internal_Shdr *hdr;
8857 Elf_External_Verdef *everdef;
8858 Elf_Internal_Verdef *iverdef;
8859 Elf_Internal_Verdef *iverdefarr;
8860 Elf_Internal_Verdef iverdefmem;
8861 unsigned int i;
8862 unsigned int maxidx;
8863 bfd_byte *contents_end_def, *contents_end_aux;
8864
8865 hdr = &elf_tdata (abfd)->dynverdef_hdr;
8866
8867 if (hdr->sh_info == 0 || hdr->sh_size < sizeof (Elf_External_Verdef))
8868 {
8869 error_return_bad_verdef:
8870 _bfd_error_handler
8871 (_("%pB: .gnu.version_d invalid entry"), abfd);
8872 bfd_set_error (bfd_error_bad_value);
8873 error_return_verdef:
8874 elf_tdata (abfd)->verdef = NULL;
8875 elf_tdata (abfd)->cverdefs = 0;
8876 goto error_return;
8877 }
8878
8879 if (bfd_seek (abfd, hdr->sh_offset, SEEK_SET) != 0)
8880 goto error_return_verdef;
8881 contents = _bfd_malloc_and_read (abfd, hdr->sh_size, hdr->sh_size);
8882 if (contents == NULL)
8883 goto error_return_verdef;
8884
8885 BFD_ASSERT (sizeof (Elf_External_Verdef)
8886 >= sizeof (Elf_External_Verdaux));
8887 contents_end_def = contents + hdr->sh_size
8888 - sizeof (Elf_External_Verdef);
8889 contents_end_aux = contents + hdr->sh_size
8890 - sizeof (Elf_External_Verdaux);
8891
8892 /* We know the number of entries in the section but not the maximum
8893 index. Therefore we have to run through all entries and find
8894 the maximum. */
8895 everdef = (Elf_External_Verdef *) contents;
8896 maxidx = 0;
8897 for (i = 0; i < hdr->sh_info; ++i)
8898 {
8899 _bfd_elf_swap_verdef_in (abfd, everdef, &iverdefmem);
8900
8901 if ((iverdefmem.vd_ndx & ((unsigned) VERSYM_VERSION)) == 0)
8902 goto error_return_bad_verdef;
8903 if ((iverdefmem.vd_ndx & ((unsigned) VERSYM_VERSION)) > maxidx)
8904 maxidx = iverdefmem.vd_ndx & ((unsigned) VERSYM_VERSION);
8905
8906 if (iverdefmem.vd_next == 0)
8907 break;
8908
8909 if (iverdefmem.vd_next
8910 > (size_t) (contents_end_def - (bfd_byte *) everdef))
8911 goto error_return_bad_verdef;
8912
8913 everdef = ((Elf_External_Verdef *)
8914 ((bfd_byte *) everdef + iverdefmem.vd_next));
8915 }
8916
8917 if (default_imported_symver)
8918 {
8919 if (freeidx > maxidx)
8920 maxidx = ++freeidx;
8921 else
8922 freeidx = ++maxidx;
8923 }
8924 if (_bfd_mul_overflow (maxidx, sizeof (Elf_Internal_Verdef), &amt))
8925 {
8926 bfd_set_error (bfd_error_file_too_big);
8927 goto error_return_verdef;
8928 }
8929 elf_tdata (abfd)->verdef = (Elf_Internal_Verdef *) bfd_zalloc (abfd, amt);
8930 if (elf_tdata (abfd)->verdef == NULL)
8931 goto error_return_verdef;
8932
8933 elf_tdata (abfd)->cverdefs = maxidx;
8934
8935 everdef = (Elf_External_Verdef *) contents;
8936 iverdefarr = elf_tdata (abfd)->verdef;
8937 for (i = 0; i < hdr->sh_info; i++)
8938 {
8939 Elf_External_Verdaux *everdaux;
8940 Elf_Internal_Verdaux *iverdaux;
8941 unsigned int j;
8942
8943 _bfd_elf_swap_verdef_in (abfd, everdef, &iverdefmem);
8944
8945 if ((iverdefmem.vd_ndx & VERSYM_VERSION) == 0)
8946 goto error_return_bad_verdef;
8947
8948 iverdef = &iverdefarr[(iverdefmem.vd_ndx & VERSYM_VERSION) - 1];
8949 memcpy (iverdef, &iverdefmem, offsetof (Elf_Internal_Verdef, vd_bfd));
8950
8951 iverdef->vd_bfd = abfd;
8952
8953 if (iverdef->vd_cnt == 0)
8954 iverdef->vd_auxptr = NULL;
8955 else
8956 {
8957 if (_bfd_mul_overflow (iverdef->vd_cnt,
8958 sizeof (Elf_Internal_Verdaux), &amt))
8959 {
8960 bfd_set_error (bfd_error_file_too_big);
8961 goto error_return_verdef;
8962 }
8963 iverdef->vd_auxptr = (struct elf_internal_verdaux *)
8964 bfd_alloc (abfd, amt);
8965 if (iverdef->vd_auxptr == NULL)
8966 goto error_return_verdef;
8967 }
8968
8969 if (iverdef->vd_aux
8970 > (size_t) (contents_end_aux - (bfd_byte *) everdef))
8971 goto error_return_bad_verdef;
8972
8973 everdaux = ((Elf_External_Verdaux *)
8974 ((bfd_byte *) everdef + iverdef->vd_aux));
8975 iverdaux = iverdef->vd_auxptr;
8976 for (j = 0; j < iverdef->vd_cnt; j++, iverdaux++)
8977 {
8978 _bfd_elf_swap_verdaux_in (abfd, everdaux, iverdaux);
8979
8980 iverdaux->vda_nodename =
8981 bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
8982 iverdaux->vda_name);
8983 if (iverdaux->vda_nodename == NULL)
8984 goto error_return_bad_verdef;
8985
8986 iverdaux->vda_nextptr = NULL;
8987 if (iverdaux->vda_next == 0)
8988 {
8989 iverdef->vd_cnt = j + 1;
8990 break;
8991 }
8992 if (j + 1 < iverdef->vd_cnt)
8993 iverdaux->vda_nextptr = iverdaux + 1;
8994
8995 if (iverdaux->vda_next
8996 > (size_t) (contents_end_aux - (bfd_byte *) everdaux))
8997 goto error_return_bad_verdef;
8998
8999 everdaux = ((Elf_External_Verdaux *)
9000 ((bfd_byte *) everdaux + iverdaux->vda_next));
9001 }
9002
9003 iverdef->vd_nodename = NULL;
9004 if (iverdef->vd_cnt)
9005 iverdef->vd_nodename = iverdef->vd_auxptr->vda_nodename;
9006
9007 iverdef->vd_nextdef = NULL;
9008 if (iverdef->vd_next == 0)
9009 break;
9010 if ((size_t) (iverdef - iverdefarr) + 1 < maxidx)
9011 iverdef->vd_nextdef = iverdef + 1;
9012
9013 everdef = ((Elf_External_Verdef *)
9014 ((bfd_byte *) everdef + iverdef->vd_next));
9015 }
9016
9017 free (contents);
9018 contents = NULL;
9019 }
9020 else if (default_imported_symver)
9021 {
9022 if (freeidx < 3)
9023 freeidx = 3;
9024 else
9025 freeidx++;
9026
9027 if (_bfd_mul_overflow (freeidx, sizeof (Elf_Internal_Verdef), &amt))
9028 {
9029 bfd_set_error (bfd_error_file_too_big);
9030 goto error_return;
9031 }
9032 elf_tdata (abfd)->verdef = (Elf_Internal_Verdef *) bfd_zalloc (abfd, amt);
9033 if (elf_tdata (abfd)->verdef == NULL)
9034 goto error_return;
9035
9036 elf_tdata (abfd)->cverdefs = freeidx;
9037 }
9038
9039 /* Create a default version based on the soname. */
9040 if (default_imported_symver)
9041 {
9042 Elf_Internal_Verdef *iverdef;
9043 Elf_Internal_Verdaux *iverdaux;
9044
9045 iverdef = &elf_tdata (abfd)->verdef[freeidx - 1];
9046
9047 iverdef->vd_version = VER_DEF_CURRENT;
9048 iverdef->vd_flags = 0;
9049 iverdef->vd_ndx = freeidx;
9050 iverdef->vd_cnt = 1;
9051
9052 iverdef->vd_bfd = abfd;
9053
9054 iverdef->vd_nodename = bfd_elf_get_dt_soname (abfd);
9055 if (iverdef->vd_nodename == NULL)
9056 goto error_return_verdef;
9057 iverdef->vd_nextdef = NULL;
9058 iverdef->vd_auxptr = ((struct elf_internal_verdaux *)
9059 bfd_zalloc (abfd, sizeof (Elf_Internal_Verdaux)));
9060 if (iverdef->vd_auxptr == NULL)
9061 goto error_return_verdef;
9062
9063 iverdaux = iverdef->vd_auxptr;
9064 iverdaux->vda_nodename = iverdef->vd_nodename;
9065 }
9066
9067 return true;
9068
9069 error_return:
9070 free (contents);
9071 return false;
9072 }
9073 \f
9074 asymbol *
9075 _bfd_elf_make_empty_symbol (bfd *abfd)
9076 {
9077 elf_symbol_type *newsym;
9078
9079 newsym = (elf_symbol_type *) bfd_zalloc (abfd, sizeof (*newsym));
9080 if (!newsym)
9081 return NULL;
9082 newsym->symbol.the_bfd = abfd;
9083 return &newsym->symbol;
9084 }
9085
9086 void
9087 _bfd_elf_get_symbol_info (bfd *abfd ATTRIBUTE_UNUSED,
9088 asymbol *symbol,
9089 symbol_info *ret)
9090 {
9091 bfd_symbol_info (symbol, ret);
9092 }
9093
9094 /* Return whether a symbol name implies a local symbol. Most targets
9095 use this function for the is_local_label_name entry point, but some
9096 override it. */
9097
9098 bool
9099 _bfd_elf_is_local_label_name (bfd *abfd ATTRIBUTE_UNUSED,
9100 const char *name)
9101 {
9102 /* Normal local symbols start with ``.L''. */
9103 if (name[0] == '.' && name[1] == 'L')
9104 return true;
9105
9106 /* At least some SVR4 compilers (e.g., UnixWare 2.1 cc) generate
9107 DWARF debugging symbols starting with ``..''. */
9108 if (name[0] == '.' && name[1] == '.')
9109 return true;
9110
9111 /* gcc will sometimes generate symbols beginning with ``_.L_'' when
9112 emitting DWARF debugging output. I suspect this is actually a
9113 small bug in gcc (it calls ASM_OUTPUT_LABEL when it should call
9114 ASM_GENERATE_INTERNAL_LABEL, and this causes the leading
9115 underscore to be emitted on some ELF targets). For ease of use,
9116 we treat such symbols as local. */
9117 if (name[0] == '_' && name[1] == '.' && name[2] == 'L' && name[3] == '_')
9118 return true;
9119
9120 /* Treat assembler generated fake symbols, dollar local labels and
9121 forward-backward labels (aka local labels) as locals.
9122 These labels have the form:
9123
9124 L0^A.* (fake symbols)
9125
9126 [.]?L[0123456789]+{^A|^B}[0123456789]* (local labels)
9127
9128 Versions which start with .L will have already been matched above,
9129 so we only need to match the rest. */
9130 if (name[0] == 'L' && ISDIGIT (name[1]))
9131 {
9132 bool ret = false;
9133 const char * p;
9134 char c;
9135
9136 for (p = name + 2; (c = *p); p++)
9137 {
9138 if (c == 1 || c == 2)
9139 {
9140 if (c == 1 && p == name + 2)
9141 /* A fake symbol. */
9142 return true;
9143
9144 /* FIXME: We are being paranoid here and treating symbols like
9145 L0^Bfoo as if there were non-local, on the grounds that the
9146 assembler will never generate them. But can any symbol
9147 containing an ASCII value in the range 1-31 ever be anything
9148 other than some kind of local ? */
9149 ret = true;
9150 }
9151
9152 if (! ISDIGIT (c))
9153 {
9154 ret = false;
9155 break;
9156 }
9157 }
9158 return ret;
9159 }
9160
9161 return false;
9162 }
9163
9164 alent *
9165 _bfd_elf_get_lineno (bfd *abfd ATTRIBUTE_UNUSED,
9166 asymbol *symbol ATTRIBUTE_UNUSED)
9167 {
9168 abort ();
9169 return NULL;
9170 }
9171
9172 bool
9173 _bfd_elf_set_arch_mach (bfd *abfd,
9174 enum bfd_architecture arch,
9175 unsigned long machine)
9176 {
9177 /* If this isn't the right architecture for this backend, and this
9178 isn't the generic backend, fail. */
9179 if (arch != get_elf_backend_data (abfd)->arch
9180 && arch != bfd_arch_unknown
9181 && get_elf_backend_data (abfd)->arch != bfd_arch_unknown)
9182 return false;
9183
9184 return bfd_default_set_arch_mach (abfd, arch, machine);
9185 }
9186
9187 /* Find the nearest line to a particular section and offset,
9188 for error reporting. */
9189
9190 bool
9191 _bfd_elf_find_nearest_line (bfd *abfd,
9192 asymbol **symbols,
9193 asection *section,
9194 bfd_vma offset,
9195 const char **filename_ptr,
9196 const char **functionname_ptr,
9197 unsigned int *line_ptr,
9198 unsigned int *discriminator_ptr)
9199 {
9200 bool found;
9201
9202 if (_bfd_dwarf2_find_nearest_line (abfd, symbols, NULL, section, offset,
9203 filename_ptr, functionname_ptr,
9204 line_ptr, discriminator_ptr,
9205 dwarf_debug_sections,
9206 &elf_tdata (abfd)->dwarf2_find_line_info))
9207 return true;
9208
9209 if (_bfd_dwarf1_find_nearest_line (abfd, symbols, section, offset,
9210 filename_ptr, functionname_ptr, line_ptr))
9211 {
9212 if (!*functionname_ptr)
9213 _bfd_elf_find_function (abfd, symbols, section, offset,
9214 *filename_ptr ? NULL : filename_ptr,
9215 functionname_ptr);
9216 return true;
9217 }
9218
9219 if (! _bfd_stab_section_find_nearest_line (abfd, symbols, section, offset,
9220 &found, filename_ptr,
9221 functionname_ptr, line_ptr,
9222 &elf_tdata (abfd)->line_info))
9223 return false;
9224 if (found && (*functionname_ptr || *line_ptr))
9225 return true;
9226
9227 if (symbols == NULL)
9228 return false;
9229
9230 if (! _bfd_elf_find_function (abfd, symbols, section, offset,
9231 filename_ptr, functionname_ptr))
9232 return false;
9233
9234 *line_ptr = 0;
9235 return true;
9236 }
9237
9238 /* Find the line for a symbol. */
9239
9240 bool
9241 _bfd_elf_find_line (bfd *abfd, asymbol **symbols, asymbol *symbol,
9242 const char **filename_ptr, unsigned int *line_ptr)
9243 {
9244 return _bfd_dwarf2_find_nearest_line (abfd, symbols, symbol, NULL, 0,
9245 filename_ptr, NULL, line_ptr, NULL,
9246 dwarf_debug_sections,
9247 &elf_tdata (abfd)->dwarf2_find_line_info);
9248 }
9249
9250 /* After a call to bfd_find_nearest_line, successive calls to
9251 bfd_find_inliner_info can be used to get source information about
9252 each level of function inlining that terminated at the address
9253 passed to bfd_find_nearest_line. Currently this is only supported
9254 for DWARF2 with appropriate DWARF3 extensions. */
9255
9256 bool
9257 _bfd_elf_find_inliner_info (bfd *abfd,
9258 const char **filename_ptr,
9259 const char **functionname_ptr,
9260 unsigned int *line_ptr)
9261 {
9262 bool found;
9263 found = _bfd_dwarf2_find_inliner_info (abfd, filename_ptr,
9264 functionname_ptr, line_ptr,
9265 & elf_tdata (abfd)->dwarf2_find_line_info);
9266 return found;
9267 }
9268
9269 int
9270 _bfd_elf_sizeof_headers (bfd *abfd, struct bfd_link_info *info)
9271 {
9272 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
9273 int ret = bed->s->sizeof_ehdr;
9274
9275 if (!bfd_link_relocatable (info))
9276 {
9277 bfd_size_type phdr_size = elf_program_header_size (abfd);
9278
9279 if (phdr_size == (bfd_size_type) -1)
9280 {
9281 struct elf_segment_map *m;
9282
9283 phdr_size = 0;
9284 for (m = elf_seg_map (abfd); m != NULL; m = m->next)
9285 phdr_size += bed->s->sizeof_phdr;
9286
9287 if (phdr_size == 0)
9288 phdr_size = get_program_header_size (abfd, info);
9289 }
9290
9291 elf_program_header_size (abfd) = phdr_size;
9292 ret += phdr_size;
9293 }
9294
9295 return ret;
9296 }
9297
9298 bool
9299 _bfd_elf_set_section_contents (bfd *abfd,
9300 sec_ptr section,
9301 const void *location,
9302 file_ptr offset,
9303 bfd_size_type count)
9304 {
9305 Elf_Internal_Shdr *hdr;
9306 file_ptr pos;
9307
9308 if (! abfd->output_has_begun
9309 && ! _bfd_elf_compute_section_file_positions (abfd, NULL))
9310 return false;
9311
9312 if (!count)
9313 return true;
9314
9315 hdr = &elf_section_data (section)->this_hdr;
9316 if (hdr->sh_offset == (file_ptr) -1)
9317 {
9318 unsigned char *contents;
9319
9320 if (bfd_section_is_ctf (section))
9321 /* Nothing to do with this section: the contents are generated
9322 later. */
9323 return true;
9324
9325 if ((section->flags & SEC_ELF_COMPRESS) == 0)
9326 {
9327 _bfd_error_handler
9328 (_("%pB:%pA: error: attempting to write into an unallocated compressed section"),
9329 abfd, section);
9330 bfd_set_error (bfd_error_invalid_operation);
9331 return false;
9332 }
9333
9334 if ((offset + count) > hdr->sh_size)
9335 {
9336 _bfd_error_handler
9337 (_("%pB:%pA: error: attempting to write over the end of the section"),
9338 abfd, section);
9339
9340 bfd_set_error (bfd_error_invalid_operation);
9341 return false;
9342 }
9343
9344 contents = hdr->contents;
9345 if (contents == NULL)
9346 {
9347 _bfd_error_handler
9348 (_("%pB:%pA: error: attempting to write section into an empty buffer"),
9349 abfd, section);
9350
9351 bfd_set_error (bfd_error_invalid_operation);
9352 return false;
9353 }
9354
9355 memcpy (contents + offset, location, count);
9356 return true;
9357 }
9358
9359 pos = hdr->sh_offset + offset;
9360 if (bfd_seek (abfd, pos, SEEK_SET) != 0
9361 || bfd_bwrite (location, count, abfd) != count)
9362 return false;
9363
9364 return true;
9365 }
9366
9367 bool
9368 _bfd_elf_no_info_to_howto (bfd *abfd ATTRIBUTE_UNUSED,
9369 arelent *cache_ptr ATTRIBUTE_UNUSED,
9370 Elf_Internal_Rela *dst ATTRIBUTE_UNUSED)
9371 {
9372 abort ();
9373 return false;
9374 }
9375
9376 /* Try to convert a non-ELF reloc into an ELF one. */
9377
9378 bool
9379 _bfd_elf_validate_reloc (bfd *abfd, arelent *areloc)
9380 {
9381 /* Check whether we really have an ELF howto. */
9382
9383 if ((*areloc->sym_ptr_ptr)->the_bfd->xvec != abfd->xvec)
9384 {
9385 bfd_reloc_code_real_type code;
9386 reloc_howto_type *howto;
9387
9388 /* Alien reloc: Try to determine its type to replace it with an
9389 equivalent ELF reloc. */
9390
9391 if (areloc->howto->pc_relative)
9392 {
9393 switch (areloc->howto->bitsize)
9394 {
9395 case 8:
9396 code = BFD_RELOC_8_PCREL;
9397 break;
9398 case 12:
9399 code = BFD_RELOC_12_PCREL;
9400 break;
9401 case 16:
9402 code = BFD_RELOC_16_PCREL;
9403 break;
9404 case 24:
9405 code = BFD_RELOC_24_PCREL;
9406 break;
9407 case 32:
9408 code = BFD_RELOC_32_PCREL;
9409 break;
9410 case 64:
9411 code = BFD_RELOC_64_PCREL;
9412 break;
9413 default:
9414 goto fail;
9415 }
9416
9417 howto = bfd_reloc_type_lookup (abfd, code);
9418
9419 if (howto && areloc->howto->pcrel_offset != howto->pcrel_offset)
9420 {
9421 if (howto->pcrel_offset)
9422 areloc->addend += areloc->address;
9423 else
9424 areloc->addend -= areloc->address; /* addend is unsigned!! */
9425 }
9426 }
9427 else
9428 {
9429 switch (areloc->howto->bitsize)
9430 {
9431 case 8:
9432 code = BFD_RELOC_8;
9433 break;
9434 case 14:
9435 code = BFD_RELOC_14;
9436 break;
9437 case 16:
9438 code = BFD_RELOC_16;
9439 break;
9440 case 26:
9441 code = BFD_RELOC_26;
9442 break;
9443 case 32:
9444 code = BFD_RELOC_32;
9445 break;
9446 case 64:
9447 code = BFD_RELOC_64;
9448 break;
9449 default:
9450 goto fail;
9451 }
9452
9453 howto = bfd_reloc_type_lookup (abfd, code);
9454 }
9455
9456 if (howto)
9457 areloc->howto = howto;
9458 else
9459 goto fail;
9460 }
9461
9462 return true;
9463
9464 fail:
9465 /* xgettext:c-format */
9466 _bfd_error_handler (_("%pB: %s unsupported"),
9467 abfd, areloc->howto->name);
9468 bfd_set_error (bfd_error_sorry);
9469 return false;
9470 }
9471
9472 bool
9473 _bfd_elf_close_and_cleanup (bfd *abfd)
9474 {
9475 struct elf_obj_tdata *tdata = elf_tdata (abfd);
9476 if (tdata != NULL
9477 && (bfd_get_format (abfd) == bfd_object
9478 || bfd_get_format (abfd) == bfd_core))
9479 {
9480 if (elf_tdata (abfd)->o != NULL && elf_shstrtab (abfd) != NULL)
9481 _bfd_elf_strtab_free (elf_shstrtab (abfd));
9482 _bfd_dwarf2_cleanup_debug_info (abfd, &tdata->dwarf2_find_line_info);
9483 }
9484
9485 return _bfd_generic_close_and_cleanup (abfd);
9486 }
9487
9488 /* For Rel targets, we encode meaningful data for BFD_RELOC_VTABLE_ENTRY
9489 in the relocation's offset. Thus we cannot allow any sort of sanity
9490 range-checking to interfere. There is nothing else to do in processing
9491 this reloc. */
9492
9493 bfd_reloc_status_type
9494 _bfd_elf_rel_vtable_reloc_fn
9495 (bfd *abfd ATTRIBUTE_UNUSED, arelent *re ATTRIBUTE_UNUSED,
9496 struct bfd_symbol *symbol ATTRIBUTE_UNUSED,
9497 void *data ATTRIBUTE_UNUSED, asection *is ATTRIBUTE_UNUSED,
9498 bfd *obfd ATTRIBUTE_UNUSED, char **errmsg ATTRIBUTE_UNUSED)
9499 {
9500 return bfd_reloc_ok;
9501 }
9502 \f
9503 /* Elf core file support. Much of this only works on native
9504 toolchains, since we rely on knowing the
9505 machine-dependent procfs structure in order to pick
9506 out details about the corefile. */
9507
9508 #ifdef HAVE_SYS_PROCFS_H
9509 # include <sys/procfs.h>
9510 #endif
9511
9512 /* Return a PID that identifies a "thread" for threaded cores, or the
9513 PID of the main process for non-threaded cores. */
9514
9515 static int
9516 elfcore_make_pid (bfd *abfd)
9517 {
9518 int pid;
9519
9520 pid = elf_tdata (abfd)->core->lwpid;
9521 if (pid == 0)
9522 pid = elf_tdata (abfd)->core->pid;
9523
9524 return pid;
9525 }
9526
9527 /* If there isn't a section called NAME, make one, using
9528 data from SECT. Note, this function will generate a
9529 reference to NAME, so you shouldn't deallocate or
9530 overwrite it. */
9531
9532 static bool
9533 elfcore_maybe_make_sect (bfd *abfd, char *name, asection *sect)
9534 {
9535 asection *sect2;
9536
9537 if (bfd_get_section_by_name (abfd, name) != NULL)
9538 return true;
9539
9540 sect2 = bfd_make_section_with_flags (abfd, name, sect->flags);
9541 if (sect2 == NULL)
9542 return false;
9543
9544 sect2->size = sect->size;
9545 sect2->filepos = sect->filepos;
9546 sect2->alignment_power = sect->alignment_power;
9547 return true;
9548 }
9549
9550 /* Create a pseudosection containing SIZE bytes at FILEPOS. This
9551 actually creates up to two pseudosections:
9552 - For the single-threaded case, a section named NAME, unless
9553 such a section already exists.
9554 - For the multi-threaded case, a section named "NAME/PID", where
9555 PID is elfcore_make_pid (abfd).
9556 Both pseudosections have identical contents. */
9557 bool
9558 _bfd_elfcore_make_pseudosection (bfd *abfd,
9559 char *name,
9560 size_t size,
9561 ufile_ptr filepos)
9562 {
9563 char buf[100];
9564 char *threaded_name;
9565 size_t len;
9566 asection *sect;
9567
9568 /* Build the section name. */
9569
9570 sprintf (buf, "%s/%d", name, elfcore_make_pid (abfd));
9571 len = strlen (buf) + 1;
9572 threaded_name = (char *) bfd_alloc (abfd, len);
9573 if (threaded_name == NULL)
9574 return false;
9575 memcpy (threaded_name, buf, len);
9576
9577 sect = bfd_make_section_anyway_with_flags (abfd, threaded_name,
9578 SEC_HAS_CONTENTS);
9579 if (sect == NULL)
9580 return false;
9581 sect->size = size;
9582 sect->filepos = filepos;
9583 sect->alignment_power = 2;
9584
9585 return elfcore_maybe_make_sect (abfd, name, sect);
9586 }
9587
9588 static bool
9589 elfcore_make_auxv_note_section (bfd *abfd, Elf_Internal_Note *note,
9590 size_t offs)
9591 {
9592 asection *sect = bfd_make_section_anyway_with_flags (abfd, ".auxv",
9593 SEC_HAS_CONTENTS);
9594
9595 if (sect == NULL)
9596 return false;
9597
9598 sect->size = note->descsz - offs;
9599 sect->filepos = note->descpos + offs;
9600 sect->alignment_power = 1 + bfd_get_arch_size (abfd) / 32;
9601
9602 return true;
9603 }
9604
9605 /* prstatus_t exists on:
9606 solaris 2.5+
9607 linux 2.[01] + glibc
9608 unixware 4.2
9609 */
9610
9611 #if defined (HAVE_PRSTATUS_T)
9612
9613 static bool
9614 elfcore_grok_prstatus (bfd *abfd, Elf_Internal_Note *note)
9615 {
9616 size_t size;
9617 int offset;
9618
9619 if (note->descsz == sizeof (prstatus_t))
9620 {
9621 prstatus_t prstat;
9622
9623 size = sizeof (prstat.pr_reg);
9624 offset = offsetof (prstatus_t, pr_reg);
9625 memcpy (&prstat, note->descdata, sizeof (prstat));
9626
9627 /* Do not overwrite the core signal if it
9628 has already been set by another thread. */
9629 if (elf_tdata (abfd)->core->signal == 0)
9630 elf_tdata (abfd)->core->signal = prstat.pr_cursig;
9631 if (elf_tdata (abfd)->core->pid == 0)
9632 elf_tdata (abfd)->core->pid = prstat.pr_pid;
9633
9634 /* pr_who exists on:
9635 solaris 2.5+
9636 unixware 4.2
9637 pr_who doesn't exist on:
9638 linux 2.[01]
9639 */
9640 #if defined (HAVE_PRSTATUS_T_PR_WHO)
9641 elf_tdata (abfd)->core->lwpid = prstat.pr_who;
9642 #else
9643 elf_tdata (abfd)->core->lwpid = prstat.pr_pid;
9644 #endif
9645 }
9646 #if defined (HAVE_PRSTATUS32_T)
9647 else if (note->descsz == sizeof (prstatus32_t))
9648 {
9649 /* 64-bit host, 32-bit corefile */
9650 prstatus32_t prstat;
9651
9652 size = sizeof (prstat.pr_reg);
9653 offset = offsetof (prstatus32_t, pr_reg);
9654 memcpy (&prstat, note->descdata, sizeof (prstat));
9655
9656 /* Do not overwrite the core signal if it
9657 has already been set by another thread. */
9658 if (elf_tdata (abfd)->core->signal == 0)
9659 elf_tdata (abfd)->core->signal = prstat.pr_cursig;
9660 if (elf_tdata (abfd)->core->pid == 0)
9661 elf_tdata (abfd)->core->pid = prstat.pr_pid;
9662
9663 /* pr_who exists on:
9664 solaris 2.5+
9665 unixware 4.2
9666 pr_who doesn't exist on:
9667 linux 2.[01]
9668 */
9669 #if defined (HAVE_PRSTATUS32_T_PR_WHO)
9670 elf_tdata (abfd)->core->lwpid = prstat.pr_who;
9671 #else
9672 elf_tdata (abfd)->core->lwpid = prstat.pr_pid;
9673 #endif
9674 }
9675 #endif /* HAVE_PRSTATUS32_T */
9676 else
9677 {
9678 /* Fail - we don't know how to handle any other
9679 note size (ie. data object type). */
9680 return true;
9681 }
9682
9683 /* Make a ".reg/999" section and a ".reg" section. */
9684 return _bfd_elfcore_make_pseudosection (abfd, ".reg",
9685 size, note->descpos + offset);
9686 }
9687 #endif /* defined (HAVE_PRSTATUS_T) */
9688
9689 /* Create a pseudosection containing the exact contents of NOTE. */
9690 static bool
9691 elfcore_make_note_pseudosection (bfd *abfd,
9692 char *name,
9693 Elf_Internal_Note *note)
9694 {
9695 return _bfd_elfcore_make_pseudosection (abfd, name,
9696 note->descsz, note->descpos);
9697 }
9698
9699 /* There isn't a consistent prfpregset_t across platforms,
9700 but it doesn't matter, because we don't have to pick this
9701 data structure apart. */
9702
9703 static bool
9704 elfcore_grok_prfpreg (bfd *abfd, Elf_Internal_Note *note)
9705 {
9706 return elfcore_make_note_pseudosection (abfd, ".reg2", note);
9707 }
9708
9709 /* Linux dumps the Intel SSE regs in a note named "LINUX" with a note
9710 type of NT_PRXFPREG. Just include the whole note's contents
9711 literally. */
9712
9713 static bool
9714 elfcore_grok_prxfpreg (bfd *abfd, Elf_Internal_Note *note)
9715 {
9716 return elfcore_make_note_pseudosection (abfd, ".reg-xfp", note);
9717 }
9718
9719 /* Linux dumps the Intel XSAVE extended state in a note named "LINUX"
9720 with a note type of NT_X86_XSTATE. Just include the whole note's
9721 contents literally. */
9722
9723 static bool
9724 elfcore_grok_xstatereg (bfd *abfd, Elf_Internal_Note *note)
9725 {
9726 return elfcore_make_note_pseudosection (abfd, ".reg-xstate", note);
9727 }
9728
9729 static bool
9730 elfcore_grok_ppc_vmx (bfd *abfd, Elf_Internal_Note *note)
9731 {
9732 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-vmx", note);
9733 }
9734
9735 static bool
9736 elfcore_grok_ppc_vsx (bfd *abfd, Elf_Internal_Note *note)
9737 {
9738 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-vsx", note);
9739 }
9740
9741 static bool
9742 elfcore_grok_ppc_tar (bfd *abfd, Elf_Internal_Note *note)
9743 {
9744 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tar", note);
9745 }
9746
9747 static bool
9748 elfcore_grok_ppc_ppr (bfd *abfd, Elf_Internal_Note *note)
9749 {
9750 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-ppr", note);
9751 }
9752
9753 static bool
9754 elfcore_grok_ppc_dscr (bfd *abfd, Elf_Internal_Note *note)
9755 {
9756 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-dscr", note);
9757 }
9758
9759 static bool
9760 elfcore_grok_ppc_ebb (bfd *abfd, Elf_Internal_Note *note)
9761 {
9762 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-ebb", note);
9763 }
9764
9765 static bool
9766 elfcore_grok_ppc_pmu (bfd *abfd, Elf_Internal_Note *note)
9767 {
9768 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-pmu", note);
9769 }
9770
9771 static bool
9772 elfcore_grok_ppc_tm_cgpr (bfd *abfd, Elf_Internal_Note *note)
9773 {
9774 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-cgpr", note);
9775 }
9776
9777 static bool
9778 elfcore_grok_ppc_tm_cfpr (bfd *abfd, Elf_Internal_Note *note)
9779 {
9780 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-cfpr", note);
9781 }
9782
9783 static bool
9784 elfcore_grok_ppc_tm_cvmx (bfd *abfd, Elf_Internal_Note *note)
9785 {
9786 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-cvmx", note);
9787 }
9788
9789 static bool
9790 elfcore_grok_ppc_tm_cvsx (bfd *abfd, Elf_Internal_Note *note)
9791 {
9792 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-cvsx", note);
9793 }
9794
9795 static bool
9796 elfcore_grok_ppc_tm_spr (bfd *abfd, Elf_Internal_Note *note)
9797 {
9798 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-spr", note);
9799 }
9800
9801 static bool
9802 elfcore_grok_ppc_tm_ctar (bfd *abfd, Elf_Internal_Note *note)
9803 {
9804 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-ctar", note);
9805 }
9806
9807 static bool
9808 elfcore_grok_ppc_tm_cppr (bfd *abfd, Elf_Internal_Note *note)
9809 {
9810 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-cppr", note);
9811 }
9812
9813 static bool
9814 elfcore_grok_ppc_tm_cdscr (bfd *abfd, Elf_Internal_Note *note)
9815 {
9816 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-tm-cdscr", note);
9817 }
9818
9819 static bool
9820 elfcore_grok_s390_high_gprs (bfd *abfd, Elf_Internal_Note *note)
9821 {
9822 return elfcore_make_note_pseudosection (abfd, ".reg-s390-high-gprs", note);
9823 }
9824
9825 static bool
9826 elfcore_grok_s390_timer (bfd *abfd, Elf_Internal_Note *note)
9827 {
9828 return elfcore_make_note_pseudosection (abfd, ".reg-s390-timer", note);
9829 }
9830
9831 static bool
9832 elfcore_grok_s390_todcmp (bfd *abfd, Elf_Internal_Note *note)
9833 {
9834 return elfcore_make_note_pseudosection (abfd, ".reg-s390-todcmp", note);
9835 }
9836
9837 static bool
9838 elfcore_grok_s390_todpreg (bfd *abfd, Elf_Internal_Note *note)
9839 {
9840 return elfcore_make_note_pseudosection (abfd, ".reg-s390-todpreg", note);
9841 }
9842
9843 static bool
9844 elfcore_grok_s390_ctrs (bfd *abfd, Elf_Internal_Note *note)
9845 {
9846 return elfcore_make_note_pseudosection (abfd, ".reg-s390-ctrs", note);
9847 }
9848
9849 static bool
9850 elfcore_grok_s390_prefix (bfd *abfd, Elf_Internal_Note *note)
9851 {
9852 return elfcore_make_note_pseudosection (abfd, ".reg-s390-prefix", note);
9853 }
9854
9855 static bool
9856 elfcore_grok_s390_last_break (bfd *abfd, Elf_Internal_Note *note)
9857 {
9858 return elfcore_make_note_pseudosection (abfd, ".reg-s390-last-break", note);
9859 }
9860
9861 static bool
9862 elfcore_grok_s390_system_call (bfd *abfd, Elf_Internal_Note *note)
9863 {
9864 return elfcore_make_note_pseudosection (abfd, ".reg-s390-system-call", note);
9865 }
9866
9867 static bool
9868 elfcore_grok_s390_tdb (bfd *abfd, Elf_Internal_Note *note)
9869 {
9870 return elfcore_make_note_pseudosection (abfd, ".reg-s390-tdb", note);
9871 }
9872
9873 static bool
9874 elfcore_grok_s390_vxrs_low (bfd *abfd, Elf_Internal_Note *note)
9875 {
9876 return elfcore_make_note_pseudosection (abfd, ".reg-s390-vxrs-low", note);
9877 }
9878
9879 static bool
9880 elfcore_grok_s390_vxrs_high (bfd *abfd, Elf_Internal_Note *note)
9881 {
9882 return elfcore_make_note_pseudosection (abfd, ".reg-s390-vxrs-high", note);
9883 }
9884
9885 static bool
9886 elfcore_grok_s390_gs_cb (bfd *abfd, Elf_Internal_Note *note)
9887 {
9888 return elfcore_make_note_pseudosection (abfd, ".reg-s390-gs-cb", note);
9889 }
9890
9891 static bool
9892 elfcore_grok_s390_gs_bc (bfd *abfd, Elf_Internal_Note *note)
9893 {
9894 return elfcore_make_note_pseudosection (abfd, ".reg-s390-gs-bc", note);
9895 }
9896
9897 static bool
9898 elfcore_grok_arm_vfp (bfd *abfd, Elf_Internal_Note *note)
9899 {
9900 return elfcore_make_note_pseudosection (abfd, ".reg-arm-vfp", note);
9901 }
9902
9903 static bool
9904 elfcore_grok_aarch_tls (bfd *abfd, Elf_Internal_Note *note)
9905 {
9906 return elfcore_make_note_pseudosection (abfd, ".reg-aarch-tls", note);
9907 }
9908
9909 static bool
9910 elfcore_grok_aarch_hw_break (bfd *abfd, Elf_Internal_Note *note)
9911 {
9912 return elfcore_make_note_pseudosection (abfd, ".reg-aarch-hw-break", note);
9913 }
9914
9915 static bool
9916 elfcore_grok_aarch_hw_watch (bfd *abfd, Elf_Internal_Note *note)
9917 {
9918 return elfcore_make_note_pseudosection (abfd, ".reg-aarch-hw-watch", note);
9919 }
9920
9921 static bool
9922 elfcore_grok_aarch_sve (bfd *abfd, Elf_Internal_Note *note)
9923 {
9924 return elfcore_make_note_pseudosection (abfd, ".reg-aarch-sve", note);
9925 }
9926
9927 static bool
9928 elfcore_grok_aarch_pauth (bfd *abfd, Elf_Internal_Note *note)
9929 {
9930 return elfcore_make_note_pseudosection (abfd, ".reg-aarch-pauth", note);
9931 }
9932
9933 static bool
9934 elfcore_grok_aarch_mte (bfd *abfd, Elf_Internal_Note *note)
9935 {
9936 return elfcore_make_note_pseudosection (abfd, ".reg-aarch-mte",
9937 note);
9938 }
9939
9940 static bool
9941 elfcore_grok_arc_v2 (bfd *abfd, Elf_Internal_Note *note)
9942 {
9943 return elfcore_make_note_pseudosection (abfd, ".reg-arc-v2", note);
9944 }
9945
9946 /* Convert NOTE into a bfd_section called ".reg-riscv-csr". Return TRUE if
9947 successful otherwise, return FALSE. */
9948
9949 static bool
9950 elfcore_grok_riscv_csr (bfd *abfd, Elf_Internal_Note *note)
9951 {
9952 return elfcore_make_note_pseudosection (abfd, ".reg-riscv-csr", note);
9953 }
9954
9955 /* Convert NOTE into a bfd_section called ".gdb-tdesc". Return TRUE if
9956 successful otherwise, return FALSE. */
9957
9958 static bool
9959 elfcore_grok_gdb_tdesc (bfd *abfd, Elf_Internal_Note *note)
9960 {
9961 return elfcore_make_note_pseudosection (abfd, ".gdb-tdesc", note);
9962 }
9963
9964 #if defined (HAVE_PRPSINFO_T)
9965 typedef prpsinfo_t elfcore_psinfo_t;
9966 #if defined (HAVE_PRPSINFO32_T) /* Sparc64 cross Sparc32 */
9967 typedef prpsinfo32_t elfcore_psinfo32_t;
9968 #endif
9969 #endif
9970
9971 #if defined (HAVE_PSINFO_T)
9972 typedef psinfo_t elfcore_psinfo_t;
9973 #if defined (HAVE_PSINFO32_T) /* Sparc64 cross Sparc32 */
9974 typedef psinfo32_t elfcore_psinfo32_t;
9975 #endif
9976 #endif
9977
9978 /* return a malloc'ed copy of a string at START which is at
9979 most MAX bytes long, possibly without a terminating '\0'.
9980 the copy will always have a terminating '\0'. */
9981
9982 char *
9983 _bfd_elfcore_strndup (bfd *abfd, char *start, size_t max)
9984 {
9985 char *dups;
9986 char *end = (char *) memchr (start, '\0', max);
9987 size_t len;
9988
9989 if (end == NULL)
9990 len = max;
9991 else
9992 len = end - start;
9993
9994 dups = (char *) bfd_alloc (abfd, len + 1);
9995 if (dups == NULL)
9996 return NULL;
9997
9998 memcpy (dups, start, len);
9999 dups[len] = '\0';
10000
10001 return dups;
10002 }
10003
10004 #if defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T)
10005 static bool
10006 elfcore_grok_psinfo (bfd *abfd, Elf_Internal_Note *note)
10007 {
10008 if (note->descsz == sizeof (elfcore_psinfo_t))
10009 {
10010 elfcore_psinfo_t psinfo;
10011
10012 memcpy (&psinfo, note->descdata, sizeof (psinfo));
10013
10014 #if defined (HAVE_PSINFO_T_PR_PID) || defined (HAVE_PRPSINFO_T_PR_PID)
10015 elf_tdata (abfd)->core->pid = psinfo.pr_pid;
10016 #endif
10017 elf_tdata (abfd)->core->program
10018 = _bfd_elfcore_strndup (abfd, psinfo.pr_fname,
10019 sizeof (psinfo.pr_fname));
10020
10021 elf_tdata (abfd)->core->command
10022 = _bfd_elfcore_strndup (abfd, psinfo.pr_psargs,
10023 sizeof (psinfo.pr_psargs));
10024 }
10025 #if defined (HAVE_PRPSINFO32_T) || defined (HAVE_PSINFO32_T)
10026 else if (note->descsz == sizeof (elfcore_psinfo32_t))
10027 {
10028 /* 64-bit host, 32-bit corefile */
10029 elfcore_psinfo32_t psinfo;
10030
10031 memcpy (&psinfo, note->descdata, sizeof (psinfo));
10032
10033 #if defined (HAVE_PSINFO32_T_PR_PID) || defined (HAVE_PRPSINFO32_T_PR_PID)
10034 elf_tdata (abfd)->core->pid = psinfo.pr_pid;
10035 #endif
10036 elf_tdata (abfd)->core->program
10037 = _bfd_elfcore_strndup (abfd, psinfo.pr_fname,
10038 sizeof (psinfo.pr_fname));
10039
10040 elf_tdata (abfd)->core->command
10041 = _bfd_elfcore_strndup (abfd, psinfo.pr_psargs,
10042 sizeof (psinfo.pr_psargs));
10043 }
10044 #endif
10045
10046 else
10047 {
10048 /* Fail - we don't know how to handle any other
10049 note size (ie. data object type). */
10050 return true;
10051 }
10052
10053 /* Note that for some reason, a spurious space is tacked
10054 onto the end of the args in some (at least one anyway)
10055 implementations, so strip it off if it exists. */
10056
10057 {
10058 char *command = elf_tdata (abfd)->core->command;
10059 int n = strlen (command);
10060
10061 if (0 < n && command[n - 1] == ' ')
10062 command[n - 1] = '\0';
10063 }
10064
10065 return true;
10066 }
10067 #endif /* defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T) */
10068
10069 #if defined (HAVE_PSTATUS_T)
10070 static bool
10071 elfcore_grok_pstatus (bfd *abfd, Elf_Internal_Note *note)
10072 {
10073 if (note->descsz == sizeof (pstatus_t)
10074 #if defined (HAVE_PXSTATUS_T)
10075 || note->descsz == sizeof (pxstatus_t)
10076 #endif
10077 )
10078 {
10079 pstatus_t pstat;
10080
10081 memcpy (&pstat, note->descdata, sizeof (pstat));
10082
10083 elf_tdata (abfd)->core->pid = pstat.pr_pid;
10084 }
10085 #if defined (HAVE_PSTATUS32_T)
10086 else if (note->descsz == sizeof (pstatus32_t))
10087 {
10088 /* 64-bit host, 32-bit corefile */
10089 pstatus32_t pstat;
10090
10091 memcpy (&pstat, note->descdata, sizeof (pstat));
10092
10093 elf_tdata (abfd)->core->pid = pstat.pr_pid;
10094 }
10095 #endif
10096 /* Could grab some more details from the "representative"
10097 lwpstatus_t in pstat.pr_lwp, but we'll catch it all in an
10098 NT_LWPSTATUS note, presumably. */
10099
10100 return true;
10101 }
10102 #endif /* defined (HAVE_PSTATUS_T) */
10103
10104 #if defined (HAVE_LWPSTATUS_T)
10105 static bool
10106 elfcore_grok_lwpstatus (bfd *abfd, Elf_Internal_Note *note)
10107 {
10108 lwpstatus_t lwpstat;
10109 char buf[100];
10110 char *name;
10111 size_t len;
10112 asection *sect;
10113
10114 if (note->descsz != sizeof (lwpstat)
10115 #if defined (HAVE_LWPXSTATUS_T)
10116 && note->descsz != sizeof (lwpxstatus_t)
10117 #endif
10118 )
10119 return true;
10120
10121 memcpy (&lwpstat, note->descdata, sizeof (lwpstat));
10122
10123 elf_tdata (abfd)->core->lwpid = lwpstat.pr_lwpid;
10124 /* Do not overwrite the core signal if it has already been set by
10125 another thread. */
10126 if (elf_tdata (abfd)->core->signal == 0)
10127 elf_tdata (abfd)->core->signal = lwpstat.pr_cursig;
10128
10129 /* Make a ".reg/999" section. */
10130
10131 sprintf (buf, ".reg/%d", elfcore_make_pid (abfd));
10132 len = strlen (buf) + 1;
10133 name = bfd_alloc (abfd, len);
10134 if (name == NULL)
10135 return false;
10136 memcpy (name, buf, len);
10137
10138 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
10139 if (sect == NULL)
10140 return false;
10141
10142 #if defined (HAVE_LWPSTATUS_T_PR_CONTEXT)
10143 sect->size = sizeof (lwpstat.pr_context.uc_mcontext.gregs);
10144 sect->filepos = note->descpos
10145 + offsetof (lwpstatus_t, pr_context.uc_mcontext.gregs);
10146 #endif
10147
10148 #if defined (HAVE_LWPSTATUS_T_PR_REG)
10149 sect->size = sizeof (lwpstat.pr_reg);
10150 sect->filepos = note->descpos + offsetof (lwpstatus_t, pr_reg);
10151 #endif
10152
10153 sect->alignment_power = 2;
10154
10155 if (!elfcore_maybe_make_sect (abfd, ".reg", sect))
10156 return false;
10157
10158 /* Make a ".reg2/999" section */
10159
10160 sprintf (buf, ".reg2/%d", elfcore_make_pid (abfd));
10161 len = strlen (buf) + 1;
10162 name = bfd_alloc (abfd, len);
10163 if (name == NULL)
10164 return false;
10165 memcpy (name, buf, len);
10166
10167 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
10168 if (sect == NULL)
10169 return false;
10170
10171 #if defined (HAVE_LWPSTATUS_T_PR_CONTEXT)
10172 sect->size = sizeof (lwpstat.pr_context.uc_mcontext.fpregs);
10173 sect->filepos = note->descpos
10174 + offsetof (lwpstatus_t, pr_context.uc_mcontext.fpregs);
10175 #endif
10176
10177 #if defined (HAVE_LWPSTATUS_T_PR_FPREG)
10178 sect->size = sizeof (lwpstat.pr_fpreg);
10179 sect->filepos = note->descpos + offsetof (lwpstatus_t, pr_fpreg);
10180 #endif
10181
10182 sect->alignment_power = 2;
10183
10184 return elfcore_maybe_make_sect (abfd, ".reg2", sect);
10185 }
10186 #endif /* defined (HAVE_LWPSTATUS_T) */
10187
10188 /* These constants, and the structure offsets used below, are defined by
10189 Cygwin's core_dump.h */
10190 #define NOTE_INFO_PROCESS 1
10191 #define NOTE_INFO_THREAD 2
10192 #define NOTE_INFO_MODULE 3
10193 #define NOTE_INFO_MODULE64 4
10194
10195 static bool
10196 elfcore_grok_win32pstatus (bfd *abfd, Elf_Internal_Note *note)
10197 {
10198 char buf[30];
10199 char *name;
10200 size_t len;
10201 unsigned int name_size;
10202 asection *sect;
10203 unsigned int type;
10204 int is_active_thread;
10205 bfd_vma base_addr;
10206
10207 if (note->descsz < 4)
10208 return true;
10209
10210 if (! startswith (note->namedata, "win32"))
10211 return true;
10212
10213 type = bfd_get_32 (abfd, note->descdata);
10214
10215 struct
10216 {
10217 const char *type_name;
10218 unsigned long min_size;
10219 } size_check[] =
10220 {
10221 { "NOTE_INFO_PROCESS", 12 },
10222 { "NOTE_INFO_THREAD", 12 },
10223 { "NOTE_INFO_MODULE", 12 },
10224 { "NOTE_INFO_MODULE64", 16 },
10225 };
10226
10227 if (type == 0 || type > (sizeof(size_check)/sizeof(size_check[0])))
10228 return true;
10229
10230 if (note->descsz < size_check[type - 1].min_size)
10231 {
10232 _bfd_error_handler (_("%pB: warning: win32pstatus %s of size %lu bytes is too small"),
10233 abfd, size_check[type - 1].type_name, note->descsz);
10234 return true;
10235 }
10236
10237 switch (type)
10238 {
10239 case NOTE_INFO_PROCESS:
10240 /* FIXME: need to add ->core->command. */
10241 elf_tdata (abfd)->core->pid = bfd_get_32 (abfd, note->descdata + 4);
10242 elf_tdata (abfd)->core->signal = bfd_get_32 (abfd, note->descdata + 8);
10243 break;
10244
10245 case NOTE_INFO_THREAD:
10246 /* Make a ".reg/<tid>" section containing the Win32 API thread CONTEXT
10247 structure. */
10248 /* thread_info.tid */
10249 sprintf (buf, ".reg/%ld", (long) bfd_get_32 (abfd, note->descdata + 4));
10250
10251 len = strlen (buf) + 1;
10252 name = (char *) bfd_alloc (abfd, len);
10253 if (name == NULL)
10254 return false;
10255
10256 memcpy (name, buf, len);
10257
10258 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
10259 if (sect == NULL)
10260 return false;
10261
10262 /* sizeof (thread_info.thread_context) */
10263 sect->size = note->descsz - 12;
10264 /* offsetof (thread_info.thread_context) */
10265 sect->filepos = note->descpos + 12;
10266 sect->alignment_power = 2;
10267
10268 /* thread_info.is_active_thread */
10269 is_active_thread = bfd_get_32 (abfd, note->descdata + 8);
10270
10271 if (is_active_thread)
10272 if (! elfcore_maybe_make_sect (abfd, ".reg", sect))
10273 return false;
10274 break;
10275
10276 case NOTE_INFO_MODULE:
10277 case NOTE_INFO_MODULE64:
10278 /* Make a ".module/xxxxxxxx" section. */
10279 if (type == NOTE_INFO_MODULE)
10280 {
10281 /* module_info.base_address */
10282 base_addr = bfd_get_32 (abfd, note->descdata + 4);
10283 sprintf (buf, ".module/%08lx", (unsigned long) base_addr);
10284 /* module_info.module_name_size */
10285 name_size = bfd_get_32 (abfd, note->descdata + 8);
10286 }
10287 else /* NOTE_INFO_MODULE64 */
10288 {
10289 /* module_info.base_address */
10290 base_addr = bfd_get_64 (abfd, note->descdata + 4);
10291 sprintf (buf, ".module/%016lx", (unsigned long) base_addr);
10292 /* module_info.module_name_size */
10293 name_size = bfd_get_32 (abfd, note->descdata + 12);
10294 }
10295
10296 len = strlen (buf) + 1;
10297 name = (char *) bfd_alloc (abfd, len);
10298 if (name == NULL)
10299 return false;
10300
10301 memcpy (name, buf, len);
10302
10303 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
10304
10305 if (sect == NULL)
10306 return false;
10307
10308 if (note->descsz < 12 + name_size)
10309 {
10310 _bfd_error_handler (_("%pB: win32pstatus NOTE_INFO_MODULE of size %lu is too small to contain a name of size %u"),
10311 abfd, note->descsz, name_size);
10312 return true;
10313 }
10314
10315 sect->size = note->descsz;
10316 sect->filepos = note->descpos;
10317 sect->alignment_power = 2;
10318 break;
10319
10320 default:
10321 return true;
10322 }
10323
10324 return true;
10325 }
10326
10327 static bool
10328 elfcore_grok_note (bfd *abfd, Elf_Internal_Note *note)
10329 {
10330 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
10331
10332 switch (note->type)
10333 {
10334 default:
10335 return true;
10336
10337 case NT_PRSTATUS:
10338 if (bed->elf_backend_grok_prstatus)
10339 if ((*bed->elf_backend_grok_prstatus) (abfd, note))
10340 return true;
10341 #if defined (HAVE_PRSTATUS_T)
10342 return elfcore_grok_prstatus (abfd, note);
10343 #else
10344 return true;
10345 #endif
10346
10347 #if defined (HAVE_PSTATUS_T)
10348 case NT_PSTATUS:
10349 return elfcore_grok_pstatus (abfd, note);
10350 #endif
10351
10352 #if defined (HAVE_LWPSTATUS_T)
10353 case NT_LWPSTATUS:
10354 return elfcore_grok_lwpstatus (abfd, note);
10355 #endif
10356
10357 case NT_FPREGSET: /* FIXME: rename to NT_PRFPREG */
10358 return elfcore_grok_prfpreg (abfd, note);
10359
10360 case NT_WIN32PSTATUS:
10361 return elfcore_grok_win32pstatus (abfd, note);
10362
10363 case NT_PRXFPREG: /* Linux SSE extension */
10364 if (note->namesz == 6
10365 && strcmp (note->namedata, "LINUX") == 0)
10366 return elfcore_grok_prxfpreg (abfd, note);
10367 else
10368 return true;
10369
10370 case NT_X86_XSTATE: /* Linux XSAVE extension */
10371 if (note->namesz == 6
10372 && strcmp (note->namedata, "LINUX") == 0)
10373 return elfcore_grok_xstatereg (abfd, note);
10374 else
10375 return true;
10376
10377 case NT_PPC_VMX:
10378 if (note->namesz == 6
10379 && strcmp (note->namedata, "LINUX") == 0)
10380 return elfcore_grok_ppc_vmx (abfd, note);
10381 else
10382 return true;
10383
10384 case NT_PPC_VSX:
10385 if (note->namesz == 6
10386 && strcmp (note->namedata, "LINUX") == 0)
10387 return elfcore_grok_ppc_vsx (abfd, note);
10388 else
10389 return true;
10390
10391 case NT_PPC_TAR:
10392 if (note->namesz == 6
10393 && strcmp (note->namedata, "LINUX") == 0)
10394 return elfcore_grok_ppc_tar (abfd, note);
10395 else
10396 return true;
10397
10398 case NT_PPC_PPR:
10399 if (note->namesz == 6
10400 && strcmp (note->namedata, "LINUX") == 0)
10401 return elfcore_grok_ppc_ppr (abfd, note);
10402 else
10403 return true;
10404
10405 case NT_PPC_DSCR:
10406 if (note->namesz == 6
10407 && strcmp (note->namedata, "LINUX") == 0)
10408 return elfcore_grok_ppc_dscr (abfd, note);
10409 else
10410 return true;
10411
10412 case NT_PPC_EBB:
10413 if (note->namesz == 6
10414 && strcmp (note->namedata, "LINUX") == 0)
10415 return elfcore_grok_ppc_ebb (abfd, note);
10416 else
10417 return true;
10418
10419 case NT_PPC_PMU:
10420 if (note->namesz == 6
10421 && strcmp (note->namedata, "LINUX") == 0)
10422 return elfcore_grok_ppc_pmu (abfd, note);
10423 else
10424 return true;
10425
10426 case NT_PPC_TM_CGPR:
10427 if (note->namesz == 6
10428 && strcmp (note->namedata, "LINUX") == 0)
10429 return elfcore_grok_ppc_tm_cgpr (abfd, note);
10430 else
10431 return true;
10432
10433 case NT_PPC_TM_CFPR:
10434 if (note->namesz == 6
10435 && strcmp (note->namedata, "LINUX") == 0)
10436 return elfcore_grok_ppc_tm_cfpr (abfd, note);
10437 else
10438 return true;
10439
10440 case NT_PPC_TM_CVMX:
10441 if (note->namesz == 6
10442 && strcmp (note->namedata, "LINUX") == 0)
10443 return elfcore_grok_ppc_tm_cvmx (abfd, note);
10444 else
10445 return true;
10446
10447 case NT_PPC_TM_CVSX:
10448 if (note->namesz == 6
10449 && strcmp (note->namedata, "LINUX") == 0)
10450 return elfcore_grok_ppc_tm_cvsx (abfd, note);
10451 else
10452 return true;
10453
10454 case NT_PPC_TM_SPR:
10455 if (note->namesz == 6
10456 && strcmp (note->namedata, "LINUX") == 0)
10457 return elfcore_grok_ppc_tm_spr (abfd, note);
10458 else
10459 return true;
10460
10461 case NT_PPC_TM_CTAR:
10462 if (note->namesz == 6
10463 && strcmp (note->namedata, "LINUX") == 0)
10464 return elfcore_grok_ppc_tm_ctar (abfd, note);
10465 else
10466 return true;
10467
10468 case NT_PPC_TM_CPPR:
10469 if (note->namesz == 6
10470 && strcmp (note->namedata, "LINUX") == 0)
10471 return elfcore_grok_ppc_tm_cppr (abfd, note);
10472 else
10473 return true;
10474
10475 case NT_PPC_TM_CDSCR:
10476 if (note->namesz == 6
10477 && strcmp (note->namedata, "LINUX") == 0)
10478 return elfcore_grok_ppc_tm_cdscr (abfd, note);
10479 else
10480 return true;
10481
10482 case NT_S390_HIGH_GPRS:
10483 if (note->namesz == 6
10484 && strcmp (note->namedata, "LINUX") == 0)
10485 return elfcore_grok_s390_high_gprs (abfd, note);
10486 else
10487 return true;
10488
10489 case NT_S390_TIMER:
10490 if (note->namesz == 6
10491 && strcmp (note->namedata, "LINUX") == 0)
10492 return elfcore_grok_s390_timer (abfd, note);
10493 else
10494 return true;
10495
10496 case NT_S390_TODCMP:
10497 if (note->namesz == 6
10498 && strcmp (note->namedata, "LINUX") == 0)
10499 return elfcore_grok_s390_todcmp (abfd, note);
10500 else
10501 return true;
10502
10503 case NT_S390_TODPREG:
10504 if (note->namesz == 6
10505 && strcmp (note->namedata, "LINUX") == 0)
10506 return elfcore_grok_s390_todpreg (abfd, note);
10507 else
10508 return true;
10509
10510 case NT_S390_CTRS:
10511 if (note->namesz == 6
10512 && strcmp (note->namedata, "LINUX") == 0)
10513 return elfcore_grok_s390_ctrs (abfd, note);
10514 else
10515 return true;
10516
10517 case NT_S390_PREFIX:
10518 if (note->namesz == 6
10519 && strcmp (note->namedata, "LINUX") == 0)
10520 return elfcore_grok_s390_prefix (abfd, note);
10521 else
10522 return true;
10523
10524 case NT_S390_LAST_BREAK:
10525 if (note->namesz == 6
10526 && strcmp (note->namedata, "LINUX") == 0)
10527 return elfcore_grok_s390_last_break (abfd, note);
10528 else
10529 return true;
10530
10531 case NT_S390_SYSTEM_CALL:
10532 if (note->namesz == 6
10533 && strcmp (note->namedata, "LINUX") == 0)
10534 return elfcore_grok_s390_system_call (abfd, note);
10535 else
10536 return true;
10537
10538 case NT_S390_TDB:
10539 if (note->namesz == 6
10540 && strcmp (note->namedata, "LINUX") == 0)
10541 return elfcore_grok_s390_tdb (abfd, note);
10542 else
10543 return true;
10544
10545 case NT_S390_VXRS_LOW:
10546 if (note->namesz == 6
10547 && strcmp (note->namedata, "LINUX") == 0)
10548 return elfcore_grok_s390_vxrs_low (abfd, note);
10549 else
10550 return true;
10551
10552 case NT_S390_VXRS_HIGH:
10553 if (note->namesz == 6
10554 && strcmp (note->namedata, "LINUX") == 0)
10555 return elfcore_grok_s390_vxrs_high (abfd, note);
10556 else
10557 return true;
10558
10559 case NT_S390_GS_CB:
10560 if (note->namesz == 6
10561 && strcmp (note->namedata, "LINUX") == 0)
10562 return elfcore_grok_s390_gs_cb (abfd, note);
10563 else
10564 return true;
10565
10566 case NT_S390_GS_BC:
10567 if (note->namesz == 6
10568 && strcmp (note->namedata, "LINUX") == 0)
10569 return elfcore_grok_s390_gs_bc (abfd, note);
10570 else
10571 return true;
10572
10573 case NT_ARC_V2:
10574 if (note->namesz == 6
10575 && strcmp (note->namedata, "LINUX") == 0)
10576 return elfcore_grok_arc_v2 (abfd, note);
10577 else
10578 return true;
10579
10580 case NT_ARM_VFP:
10581 if (note->namesz == 6
10582 && strcmp (note->namedata, "LINUX") == 0)
10583 return elfcore_grok_arm_vfp (abfd, note);
10584 else
10585 return true;
10586
10587 case NT_ARM_TLS:
10588 if (note->namesz == 6
10589 && strcmp (note->namedata, "LINUX") == 0)
10590 return elfcore_grok_aarch_tls (abfd, note);
10591 else
10592 return true;
10593
10594 case NT_ARM_HW_BREAK:
10595 if (note->namesz == 6
10596 && strcmp (note->namedata, "LINUX") == 0)
10597 return elfcore_grok_aarch_hw_break (abfd, note);
10598 else
10599 return true;
10600
10601 case NT_ARM_HW_WATCH:
10602 if (note->namesz == 6
10603 && strcmp (note->namedata, "LINUX") == 0)
10604 return elfcore_grok_aarch_hw_watch (abfd, note);
10605 else
10606 return true;
10607
10608 case NT_ARM_SVE:
10609 if (note->namesz == 6
10610 && strcmp (note->namedata, "LINUX") == 0)
10611 return elfcore_grok_aarch_sve (abfd, note);
10612 else
10613 return true;
10614
10615 case NT_ARM_PAC_MASK:
10616 if (note->namesz == 6
10617 && strcmp (note->namedata, "LINUX") == 0)
10618 return elfcore_grok_aarch_pauth (abfd, note);
10619 else
10620 return true;
10621
10622 case NT_ARM_TAGGED_ADDR_CTRL:
10623 if (note->namesz == 6
10624 && strcmp (note->namedata, "LINUX") == 0)
10625 return elfcore_grok_aarch_mte (abfd, note);
10626 else
10627 return true;
10628
10629 case NT_GDB_TDESC:
10630 if (note->namesz == 4
10631 && strcmp (note->namedata, "GDB") == 0)
10632 return elfcore_grok_gdb_tdesc (abfd, note);
10633 else
10634 return true;
10635
10636 case NT_RISCV_CSR:
10637 if (note->namesz == 4
10638 && strcmp (note->namedata, "GDB") == 0)
10639 return elfcore_grok_riscv_csr (abfd, note);
10640 else
10641 return true;
10642
10643 case NT_PRPSINFO:
10644 case NT_PSINFO:
10645 if (bed->elf_backend_grok_psinfo)
10646 if ((*bed->elf_backend_grok_psinfo) (abfd, note))
10647 return true;
10648 #if defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T)
10649 return elfcore_grok_psinfo (abfd, note);
10650 #else
10651 return true;
10652 #endif
10653
10654 case NT_AUXV:
10655 return elfcore_make_auxv_note_section (abfd, note, 0);
10656
10657 case NT_FILE:
10658 return elfcore_make_note_pseudosection (abfd, ".note.linuxcore.file",
10659 note);
10660
10661 case NT_SIGINFO:
10662 return elfcore_make_note_pseudosection (abfd, ".note.linuxcore.siginfo",
10663 note);
10664
10665 }
10666 }
10667
10668 static bool
10669 elfobj_grok_gnu_build_id (bfd *abfd, Elf_Internal_Note *note)
10670 {
10671 struct bfd_build_id* build_id;
10672
10673 if (note->descsz == 0)
10674 return false;
10675
10676 build_id = bfd_alloc (abfd, sizeof (struct bfd_build_id) - 1 + note->descsz);
10677 if (build_id == NULL)
10678 return false;
10679
10680 build_id->size = note->descsz;
10681 memcpy (build_id->data, note->descdata, note->descsz);
10682 abfd->build_id = build_id;
10683
10684 return true;
10685 }
10686
10687 static bool
10688 elfobj_grok_gnu_note (bfd *abfd, Elf_Internal_Note *note)
10689 {
10690 switch (note->type)
10691 {
10692 default:
10693 return true;
10694
10695 case NT_GNU_PROPERTY_TYPE_0:
10696 return _bfd_elf_parse_gnu_properties (abfd, note);
10697
10698 case NT_GNU_BUILD_ID:
10699 return elfobj_grok_gnu_build_id (abfd, note);
10700 }
10701 }
10702
10703 static bool
10704 elfobj_grok_stapsdt_note_1 (bfd *abfd, Elf_Internal_Note *note)
10705 {
10706 struct sdt_note *cur =
10707 (struct sdt_note *) bfd_alloc (abfd,
10708 sizeof (struct sdt_note) + note->descsz);
10709
10710 cur->next = (struct sdt_note *) (elf_tdata (abfd))->sdt_note_head;
10711 cur->size = (bfd_size_type) note->descsz;
10712 memcpy (cur->data, note->descdata, note->descsz);
10713
10714 elf_tdata (abfd)->sdt_note_head = cur;
10715
10716 return true;
10717 }
10718
10719 static bool
10720 elfobj_grok_stapsdt_note (bfd *abfd, Elf_Internal_Note *note)
10721 {
10722 switch (note->type)
10723 {
10724 case NT_STAPSDT:
10725 return elfobj_grok_stapsdt_note_1 (abfd, note);
10726
10727 default:
10728 return true;
10729 }
10730 }
10731
10732 static bool
10733 elfcore_grok_freebsd_psinfo (bfd *abfd, Elf_Internal_Note *note)
10734 {
10735 size_t offset;
10736
10737 switch (elf_elfheader (abfd)->e_ident[EI_CLASS])
10738 {
10739 case ELFCLASS32:
10740 if (note->descsz < 108)
10741 return false;
10742 break;
10743
10744 case ELFCLASS64:
10745 if (note->descsz < 120)
10746 return false;
10747 break;
10748
10749 default:
10750 return false;
10751 }
10752
10753 /* Check for version 1 in pr_version. */
10754 if (bfd_h_get_32 (abfd, (bfd_byte *) note->descdata) != 1)
10755 return false;
10756
10757 offset = 4;
10758
10759 /* Skip over pr_psinfosz. */
10760 if (elf_elfheader (abfd)->e_ident[EI_CLASS] == ELFCLASS32)
10761 offset += 4;
10762 else
10763 {
10764 offset += 4; /* Padding before pr_psinfosz. */
10765 offset += 8;
10766 }
10767
10768 /* pr_fname is PRFNAMESZ (16) + 1 bytes in size. */
10769 elf_tdata (abfd)->core->program
10770 = _bfd_elfcore_strndup (abfd, note->descdata + offset, 17);
10771 offset += 17;
10772
10773 /* pr_psargs is PRARGSZ (80) + 1 bytes in size. */
10774 elf_tdata (abfd)->core->command
10775 = _bfd_elfcore_strndup (abfd, note->descdata + offset, 81);
10776 offset += 81;
10777
10778 /* Padding before pr_pid. */
10779 offset += 2;
10780
10781 /* The pr_pid field was added in version "1a". */
10782 if (note->descsz < offset + 4)
10783 return true;
10784
10785 elf_tdata (abfd)->core->pid
10786 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + offset);
10787
10788 return true;
10789 }
10790
10791 static bool
10792 elfcore_grok_freebsd_prstatus (bfd *abfd, Elf_Internal_Note *note)
10793 {
10794 size_t offset;
10795 size_t size;
10796 size_t min_size;
10797
10798 /* Compute offset of pr_getregsz, skipping over pr_statussz.
10799 Also compute minimum size of this note. */
10800 switch (elf_elfheader (abfd)->e_ident[EI_CLASS])
10801 {
10802 case ELFCLASS32:
10803 offset = 4 + 4;
10804 min_size = offset + (4 * 2) + 4 + 4 + 4;
10805 break;
10806
10807 case ELFCLASS64:
10808 offset = 4 + 4 + 8; /* Includes padding before pr_statussz. */
10809 min_size = offset + (8 * 2) + 4 + 4 + 4 + 4;
10810 break;
10811
10812 default:
10813 return false;
10814 }
10815
10816 if (note->descsz < min_size)
10817 return false;
10818
10819 /* Check for version 1 in pr_version. */
10820 if (bfd_h_get_32 (abfd, (bfd_byte *) note->descdata) != 1)
10821 return false;
10822
10823 /* Extract size of pr_reg from pr_gregsetsz. */
10824 /* Skip over pr_gregsetsz and pr_fpregsetsz. */
10825 if (elf_elfheader (abfd)->e_ident[EI_CLASS] == ELFCLASS32)
10826 {
10827 size = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + offset);
10828 offset += 4 * 2;
10829 }
10830 else
10831 {
10832 size = bfd_h_get_64 (abfd, (bfd_byte *) note->descdata + offset);
10833 offset += 8 * 2;
10834 }
10835
10836 /* Skip over pr_osreldate. */
10837 offset += 4;
10838
10839 /* Read signal from pr_cursig. */
10840 if (elf_tdata (abfd)->core->signal == 0)
10841 elf_tdata (abfd)->core->signal
10842 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + offset);
10843 offset += 4;
10844
10845 /* Read TID from pr_pid. */
10846 elf_tdata (abfd)->core->lwpid
10847 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + offset);
10848 offset += 4;
10849
10850 /* Padding before pr_reg. */
10851 if (elf_elfheader (abfd)->e_ident[EI_CLASS] == ELFCLASS64)
10852 offset += 4;
10853
10854 /* Make sure that there is enough data remaining in the note. */
10855 if ((note->descsz - offset) < size)
10856 return false;
10857
10858 /* Make a ".reg/999" section and a ".reg" section. */
10859 return _bfd_elfcore_make_pseudosection (abfd, ".reg",
10860 size, note->descpos + offset);
10861 }
10862
10863 static bool
10864 elfcore_grok_freebsd_note (bfd *abfd, Elf_Internal_Note *note)
10865 {
10866 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
10867
10868 switch (note->type)
10869 {
10870 case NT_PRSTATUS:
10871 if (bed->elf_backend_grok_freebsd_prstatus)
10872 if ((*bed->elf_backend_grok_freebsd_prstatus) (abfd, note))
10873 return true;
10874 return elfcore_grok_freebsd_prstatus (abfd, note);
10875
10876 case NT_FPREGSET:
10877 return elfcore_grok_prfpreg (abfd, note);
10878
10879 case NT_PRPSINFO:
10880 return elfcore_grok_freebsd_psinfo (abfd, note);
10881
10882 case NT_FREEBSD_THRMISC:
10883 if (note->namesz == 8)
10884 return elfcore_make_note_pseudosection (abfd, ".thrmisc", note);
10885 else
10886 return true;
10887
10888 case NT_FREEBSD_PROCSTAT_PROC:
10889 return elfcore_make_note_pseudosection (abfd, ".note.freebsdcore.proc",
10890 note);
10891
10892 case NT_FREEBSD_PROCSTAT_FILES:
10893 return elfcore_make_note_pseudosection (abfd, ".note.freebsdcore.files",
10894 note);
10895
10896 case NT_FREEBSD_PROCSTAT_VMMAP:
10897 return elfcore_make_note_pseudosection (abfd, ".note.freebsdcore.vmmap",
10898 note);
10899
10900 case NT_FREEBSD_PROCSTAT_AUXV:
10901 return elfcore_make_auxv_note_section (abfd, note, 4);
10902
10903 case NT_X86_XSTATE:
10904 if (note->namesz == 8)
10905 return elfcore_grok_xstatereg (abfd, note);
10906 else
10907 return true;
10908
10909 case NT_FREEBSD_PTLWPINFO:
10910 return elfcore_make_note_pseudosection (abfd, ".note.freebsdcore.lwpinfo",
10911 note);
10912
10913 case NT_ARM_VFP:
10914 return elfcore_grok_arm_vfp (abfd, note);
10915
10916 default:
10917 return true;
10918 }
10919 }
10920
10921 static bool
10922 elfcore_netbsd_get_lwpid (Elf_Internal_Note *note, int *lwpidp)
10923 {
10924 char *cp;
10925
10926 cp = strchr (note->namedata, '@');
10927 if (cp != NULL)
10928 {
10929 *lwpidp = atoi(cp + 1);
10930 return true;
10931 }
10932 return false;
10933 }
10934
10935 static bool
10936 elfcore_grok_netbsd_procinfo (bfd *abfd, Elf_Internal_Note *note)
10937 {
10938 if (note->descsz <= 0x7c + 31)
10939 return false;
10940
10941 /* Signal number at offset 0x08. */
10942 elf_tdata (abfd)->core->signal
10943 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + 0x08);
10944
10945 /* Process ID at offset 0x50. */
10946 elf_tdata (abfd)->core->pid
10947 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + 0x50);
10948
10949 /* Command name at 0x7c (max 32 bytes, including nul). */
10950 elf_tdata (abfd)->core->command
10951 = _bfd_elfcore_strndup (abfd, note->descdata + 0x7c, 31);
10952
10953 return elfcore_make_note_pseudosection (abfd, ".note.netbsdcore.procinfo",
10954 note);
10955 }
10956
10957 static bool
10958 elfcore_grok_netbsd_note (bfd *abfd, Elf_Internal_Note *note)
10959 {
10960 int lwp;
10961
10962 if (elfcore_netbsd_get_lwpid (note, &lwp))
10963 elf_tdata (abfd)->core->lwpid = lwp;
10964
10965 switch (note->type)
10966 {
10967 case NT_NETBSDCORE_PROCINFO:
10968 /* NetBSD-specific core "procinfo". Note that we expect to
10969 find this note before any of the others, which is fine,
10970 since the kernel writes this note out first when it
10971 creates a core file. */
10972 return elfcore_grok_netbsd_procinfo (abfd, note);
10973 case NT_NETBSDCORE_AUXV:
10974 /* NetBSD-specific Elf Auxiliary Vector data. */
10975 return elfcore_make_auxv_note_section (abfd, note, 4);
10976 case NT_NETBSDCORE_LWPSTATUS:
10977 return elfcore_make_note_pseudosection (abfd,
10978 ".note.netbsdcore.lwpstatus",
10979 note);
10980 default:
10981 break;
10982 }
10983
10984 /* As of March 2020 there are no other machine-independent notes
10985 defined for NetBSD core files. If the note type is less
10986 than the start of the machine-dependent note types, we don't
10987 understand it. */
10988
10989 if (note->type < NT_NETBSDCORE_FIRSTMACH)
10990 return true;
10991
10992
10993 switch (bfd_get_arch (abfd))
10994 {
10995 /* On the Alpha, SPARC (32-bit and 64-bit), PT_GETREGS == mach+0 and
10996 PT_GETFPREGS == mach+2. */
10997
10998 case bfd_arch_aarch64:
10999 case bfd_arch_alpha:
11000 case bfd_arch_sparc:
11001 switch (note->type)
11002 {
11003 case NT_NETBSDCORE_FIRSTMACH+0:
11004 return elfcore_make_note_pseudosection (abfd, ".reg", note);
11005
11006 case NT_NETBSDCORE_FIRSTMACH+2:
11007 return elfcore_make_note_pseudosection (abfd, ".reg2", note);
11008
11009 default:
11010 return true;
11011 }
11012
11013 /* On SuperH, PT_GETREGS == mach+3 and PT_GETFPREGS == mach+5.
11014 There's also old PT___GETREGS40 == mach + 1 for old reg
11015 structure which lacks GBR. */
11016
11017 case bfd_arch_sh:
11018 switch (note->type)
11019 {
11020 case NT_NETBSDCORE_FIRSTMACH+3:
11021 return elfcore_make_note_pseudosection (abfd, ".reg", note);
11022
11023 case NT_NETBSDCORE_FIRSTMACH+5:
11024 return elfcore_make_note_pseudosection (abfd, ".reg2", note);
11025
11026 default:
11027 return true;
11028 }
11029
11030 /* On all other arch's, PT_GETREGS == mach+1 and
11031 PT_GETFPREGS == mach+3. */
11032
11033 default:
11034 switch (note->type)
11035 {
11036 case NT_NETBSDCORE_FIRSTMACH+1:
11037 return elfcore_make_note_pseudosection (abfd, ".reg", note);
11038
11039 case NT_NETBSDCORE_FIRSTMACH+3:
11040 return elfcore_make_note_pseudosection (abfd, ".reg2", note);
11041
11042 default:
11043 return true;
11044 }
11045 }
11046 /* NOTREACHED */
11047 }
11048
11049 static bool
11050 elfcore_grok_openbsd_procinfo (bfd *abfd, Elf_Internal_Note *note)
11051 {
11052 if (note->descsz <= 0x48 + 31)
11053 return false;
11054
11055 /* Signal number at offset 0x08. */
11056 elf_tdata (abfd)->core->signal
11057 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + 0x08);
11058
11059 /* Process ID at offset 0x20. */
11060 elf_tdata (abfd)->core->pid
11061 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + 0x20);
11062
11063 /* Command name at 0x48 (max 32 bytes, including nul). */
11064 elf_tdata (abfd)->core->command
11065 = _bfd_elfcore_strndup (abfd, note->descdata + 0x48, 31);
11066
11067 return true;
11068 }
11069
11070 static bool
11071 elfcore_grok_openbsd_note (bfd *abfd, Elf_Internal_Note *note)
11072 {
11073 if (note->type == NT_OPENBSD_PROCINFO)
11074 return elfcore_grok_openbsd_procinfo (abfd, note);
11075
11076 if (note->type == NT_OPENBSD_REGS)
11077 return elfcore_make_note_pseudosection (abfd, ".reg", note);
11078
11079 if (note->type == NT_OPENBSD_FPREGS)
11080 return elfcore_make_note_pseudosection (abfd, ".reg2", note);
11081
11082 if (note->type == NT_OPENBSD_XFPREGS)
11083 return elfcore_make_note_pseudosection (abfd, ".reg-xfp", note);
11084
11085 if (note->type == NT_OPENBSD_AUXV)
11086 return elfcore_make_auxv_note_section (abfd, note, 0);
11087
11088 if (note->type == NT_OPENBSD_WCOOKIE)
11089 {
11090 asection *sect = bfd_make_section_anyway_with_flags (abfd, ".wcookie",
11091 SEC_HAS_CONTENTS);
11092
11093 if (sect == NULL)
11094 return false;
11095 sect->size = note->descsz;
11096 sect->filepos = note->descpos;
11097 sect->alignment_power = 1 + bfd_get_arch_size (abfd) / 32;
11098
11099 return true;
11100 }
11101
11102 return true;
11103 }
11104
11105 static bool
11106 elfcore_grok_nto_status (bfd *abfd, Elf_Internal_Note *note, long *tid)
11107 {
11108 void *ddata = note->descdata;
11109 char buf[100];
11110 char *name;
11111 asection *sect;
11112 short sig;
11113 unsigned flags;
11114
11115 if (note->descsz < 16)
11116 return false;
11117
11118 /* nto_procfs_status 'pid' field is at offset 0. */
11119 elf_tdata (abfd)->core->pid = bfd_get_32 (abfd, (bfd_byte *) ddata);
11120
11121 /* nto_procfs_status 'tid' field is at offset 4. Pass it back. */
11122 *tid = bfd_get_32 (abfd, (bfd_byte *) ddata + 4);
11123
11124 /* nto_procfs_status 'flags' field is at offset 8. */
11125 flags = bfd_get_32 (abfd, (bfd_byte *) ddata + 8);
11126
11127 /* nto_procfs_status 'what' field is at offset 14. */
11128 if ((sig = bfd_get_16 (abfd, (bfd_byte *) ddata + 14)) > 0)
11129 {
11130 elf_tdata (abfd)->core->signal = sig;
11131 elf_tdata (abfd)->core->lwpid = *tid;
11132 }
11133
11134 /* _DEBUG_FLAG_CURTID (current thread) is 0x80. Some cores
11135 do not come from signals so we make sure we set the current
11136 thread just in case. */
11137 if (flags & 0x00000080)
11138 elf_tdata (abfd)->core->lwpid = *tid;
11139
11140 /* Make a ".qnx_core_status/%d" section. */
11141 sprintf (buf, ".qnx_core_status/%ld", *tid);
11142
11143 name = (char *) bfd_alloc (abfd, strlen (buf) + 1);
11144 if (name == NULL)
11145 return false;
11146 strcpy (name, buf);
11147
11148 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
11149 if (sect == NULL)
11150 return false;
11151
11152 sect->size = note->descsz;
11153 sect->filepos = note->descpos;
11154 sect->alignment_power = 2;
11155
11156 return (elfcore_maybe_make_sect (abfd, ".qnx_core_status", sect));
11157 }
11158
11159 static bool
11160 elfcore_grok_nto_regs (bfd *abfd,
11161 Elf_Internal_Note *note,
11162 long tid,
11163 char *base)
11164 {
11165 char buf[100];
11166 char *name;
11167 asection *sect;
11168
11169 /* Make a "(base)/%d" section. */
11170 sprintf (buf, "%s/%ld", base, tid);
11171
11172 name = (char *) bfd_alloc (abfd, strlen (buf) + 1);
11173 if (name == NULL)
11174 return false;
11175 strcpy (name, buf);
11176
11177 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
11178 if (sect == NULL)
11179 return false;
11180
11181 sect->size = note->descsz;
11182 sect->filepos = note->descpos;
11183 sect->alignment_power = 2;
11184
11185 /* This is the current thread. */
11186 if (elf_tdata (abfd)->core->lwpid == tid)
11187 return elfcore_maybe_make_sect (abfd, base, sect);
11188
11189 return true;
11190 }
11191
11192 #define BFD_QNT_CORE_INFO 7
11193 #define BFD_QNT_CORE_STATUS 8
11194 #define BFD_QNT_CORE_GREG 9
11195 #define BFD_QNT_CORE_FPREG 10
11196
11197 static bool
11198 elfcore_grok_nto_note (bfd *abfd, Elf_Internal_Note *note)
11199 {
11200 /* Every GREG section has a STATUS section before it. Store the
11201 tid from the previous call to pass down to the next gregs
11202 function. */
11203 static long tid = 1;
11204
11205 switch (note->type)
11206 {
11207 case BFD_QNT_CORE_INFO:
11208 return elfcore_make_note_pseudosection (abfd, ".qnx_core_info", note);
11209 case BFD_QNT_CORE_STATUS:
11210 return elfcore_grok_nto_status (abfd, note, &tid);
11211 case BFD_QNT_CORE_GREG:
11212 return elfcore_grok_nto_regs (abfd, note, tid, ".reg");
11213 case BFD_QNT_CORE_FPREG:
11214 return elfcore_grok_nto_regs (abfd, note, tid, ".reg2");
11215 default:
11216 return true;
11217 }
11218 }
11219
11220 static bool
11221 elfcore_grok_spu_note (bfd *abfd, Elf_Internal_Note *note)
11222 {
11223 char *name;
11224 asection *sect;
11225 size_t len;
11226
11227 /* Use note name as section name. */
11228 len = note->namesz;
11229 name = (char *) bfd_alloc (abfd, len);
11230 if (name == NULL)
11231 return false;
11232 memcpy (name, note->namedata, len);
11233 name[len - 1] = '\0';
11234
11235 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
11236 if (sect == NULL)
11237 return false;
11238
11239 sect->size = note->descsz;
11240 sect->filepos = note->descpos;
11241 sect->alignment_power = 1;
11242
11243 return true;
11244 }
11245
11246 /* Function: elfcore_write_note
11247
11248 Inputs:
11249 buffer to hold note, and current size of buffer
11250 name of note
11251 type of note
11252 data for note
11253 size of data for note
11254
11255 Writes note to end of buffer. ELF64 notes are written exactly as
11256 for ELF32, despite the current (as of 2006) ELF gabi specifying
11257 that they ought to have 8-byte namesz and descsz field, and have
11258 8-byte alignment. Other writers, eg. Linux kernel, do the same.
11259
11260 Return:
11261 Pointer to realloc'd buffer, *BUFSIZ updated. */
11262
11263 char *
11264 elfcore_write_note (bfd *abfd,
11265 char *buf,
11266 int *bufsiz,
11267 const char *name,
11268 int type,
11269 const void *input,
11270 int size)
11271 {
11272 Elf_External_Note *xnp;
11273 size_t namesz;
11274 size_t newspace;
11275 char *dest;
11276
11277 namesz = 0;
11278 if (name != NULL)
11279 namesz = strlen (name) + 1;
11280
11281 newspace = 12 + ((namesz + 3) & -4) + ((size + 3) & -4);
11282
11283 buf = (char *) realloc (buf, *bufsiz + newspace);
11284 if (buf == NULL)
11285 return buf;
11286 dest = buf + *bufsiz;
11287 *bufsiz += newspace;
11288 xnp = (Elf_External_Note *) dest;
11289 H_PUT_32 (abfd, namesz, xnp->namesz);
11290 H_PUT_32 (abfd, size, xnp->descsz);
11291 H_PUT_32 (abfd, type, xnp->type);
11292 dest = xnp->name;
11293 if (name != NULL)
11294 {
11295 memcpy (dest, name, namesz);
11296 dest += namesz;
11297 while (namesz & 3)
11298 {
11299 *dest++ = '\0';
11300 ++namesz;
11301 }
11302 }
11303 memcpy (dest, input, size);
11304 dest += size;
11305 while (size & 3)
11306 {
11307 *dest++ = '\0';
11308 ++size;
11309 }
11310 return buf;
11311 }
11312
11313 /* gcc-8 warns (*) on all the strncpy calls in this function about
11314 possible string truncation. The "truncation" is not a bug. We
11315 have an external representation of structs with fields that are not
11316 necessarily NULL terminated and corresponding internal
11317 representation fields that are one larger so that they can always
11318 be NULL terminated.
11319 gcc versions between 4.2 and 4.6 do not allow pragma control of
11320 diagnostics inside functions, giving a hard error if you try to use
11321 the finer control available with later versions.
11322 gcc prior to 4.2 warns about diagnostic push and pop.
11323 gcc-5, gcc-6 and gcc-7 warn that -Wstringop-truncation is unknown,
11324 unless you also add #pragma GCC diagnostic ignored "-Wpragma".
11325 (*) Depending on your system header files! */
11326 #if GCC_VERSION >= 8000
11327 # pragma GCC diagnostic push
11328 # pragma GCC diagnostic ignored "-Wstringop-truncation"
11329 #endif
11330 char *
11331 elfcore_write_prpsinfo (bfd *abfd,
11332 char *buf,
11333 int *bufsiz,
11334 const char *fname,
11335 const char *psargs)
11336 {
11337 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
11338
11339 if (bed->elf_backend_write_core_note != NULL)
11340 {
11341 char *ret;
11342 ret = (*bed->elf_backend_write_core_note) (abfd, buf, bufsiz,
11343 NT_PRPSINFO, fname, psargs);
11344 if (ret != NULL)
11345 return ret;
11346 }
11347
11348 #if defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T)
11349 # if defined (HAVE_PRPSINFO32_T) || defined (HAVE_PSINFO32_T)
11350 if (bed->s->elfclass == ELFCLASS32)
11351 {
11352 # if defined (HAVE_PSINFO32_T)
11353 psinfo32_t data;
11354 int note_type = NT_PSINFO;
11355 # else
11356 prpsinfo32_t data;
11357 int note_type = NT_PRPSINFO;
11358 # endif
11359
11360 memset (&data, 0, sizeof (data));
11361 strncpy (data.pr_fname, fname, sizeof (data.pr_fname));
11362 strncpy (data.pr_psargs, psargs, sizeof (data.pr_psargs));
11363 return elfcore_write_note (abfd, buf, bufsiz,
11364 "CORE", note_type, &data, sizeof (data));
11365 }
11366 else
11367 # endif
11368 {
11369 # if defined (HAVE_PSINFO_T)
11370 psinfo_t data;
11371 int note_type = NT_PSINFO;
11372 # else
11373 prpsinfo_t data;
11374 int note_type = NT_PRPSINFO;
11375 # endif
11376
11377 memset (&data, 0, sizeof (data));
11378 strncpy (data.pr_fname, fname, sizeof (data.pr_fname));
11379 strncpy (data.pr_psargs, psargs, sizeof (data.pr_psargs));
11380 return elfcore_write_note (abfd, buf, bufsiz,
11381 "CORE", note_type, &data, sizeof (data));
11382 }
11383 #endif /* PSINFO_T or PRPSINFO_T */
11384
11385 free (buf);
11386 return NULL;
11387 }
11388 #if GCC_VERSION >= 8000
11389 # pragma GCC diagnostic pop
11390 #endif
11391
11392 char *
11393 elfcore_write_linux_prpsinfo32
11394 (bfd *abfd, char *buf, int *bufsiz,
11395 const struct elf_internal_linux_prpsinfo *prpsinfo)
11396 {
11397 if (get_elf_backend_data (abfd)->linux_prpsinfo32_ugid16)
11398 {
11399 struct elf_external_linux_prpsinfo32_ugid16 data;
11400
11401 swap_linux_prpsinfo32_ugid16_out (abfd, prpsinfo, &data);
11402 return elfcore_write_note (abfd, buf, bufsiz, "CORE", NT_PRPSINFO,
11403 &data, sizeof (data));
11404 }
11405 else
11406 {
11407 struct elf_external_linux_prpsinfo32_ugid32 data;
11408
11409 swap_linux_prpsinfo32_ugid32_out (abfd, prpsinfo, &data);
11410 return elfcore_write_note (abfd, buf, bufsiz, "CORE", NT_PRPSINFO,
11411 &data, sizeof (data));
11412 }
11413 }
11414
11415 char *
11416 elfcore_write_linux_prpsinfo64
11417 (bfd *abfd, char *buf, int *bufsiz,
11418 const struct elf_internal_linux_prpsinfo *prpsinfo)
11419 {
11420 if (get_elf_backend_data (abfd)->linux_prpsinfo64_ugid16)
11421 {
11422 struct elf_external_linux_prpsinfo64_ugid16 data;
11423
11424 swap_linux_prpsinfo64_ugid16_out (abfd, prpsinfo, &data);
11425 return elfcore_write_note (abfd, buf, bufsiz,
11426 "CORE", NT_PRPSINFO, &data, sizeof (data));
11427 }
11428 else
11429 {
11430 struct elf_external_linux_prpsinfo64_ugid32 data;
11431
11432 swap_linux_prpsinfo64_ugid32_out (abfd, prpsinfo, &data);
11433 return elfcore_write_note (abfd, buf, bufsiz,
11434 "CORE", NT_PRPSINFO, &data, sizeof (data));
11435 }
11436 }
11437
11438 char *
11439 elfcore_write_prstatus (bfd *abfd,
11440 char *buf,
11441 int *bufsiz,
11442 long pid,
11443 int cursig,
11444 const void *gregs)
11445 {
11446 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
11447
11448 if (bed->elf_backend_write_core_note != NULL)
11449 {
11450 char *ret;
11451 ret = (*bed->elf_backend_write_core_note) (abfd, buf, bufsiz,
11452 NT_PRSTATUS,
11453 pid, cursig, gregs);
11454 if (ret != NULL)
11455 return ret;
11456 }
11457
11458 #if defined (HAVE_PRSTATUS_T)
11459 #if defined (HAVE_PRSTATUS32_T)
11460 if (bed->s->elfclass == ELFCLASS32)
11461 {
11462 prstatus32_t prstat;
11463
11464 memset (&prstat, 0, sizeof (prstat));
11465 prstat.pr_pid = pid;
11466 prstat.pr_cursig = cursig;
11467 memcpy (&prstat.pr_reg, gregs, sizeof (prstat.pr_reg));
11468 return elfcore_write_note (abfd, buf, bufsiz, "CORE",
11469 NT_PRSTATUS, &prstat, sizeof (prstat));
11470 }
11471 else
11472 #endif
11473 {
11474 prstatus_t prstat;
11475
11476 memset (&prstat, 0, sizeof (prstat));
11477 prstat.pr_pid = pid;
11478 prstat.pr_cursig = cursig;
11479 memcpy (&prstat.pr_reg, gregs, sizeof (prstat.pr_reg));
11480 return elfcore_write_note (abfd, buf, bufsiz, "CORE",
11481 NT_PRSTATUS, &prstat, sizeof (prstat));
11482 }
11483 #endif /* HAVE_PRSTATUS_T */
11484
11485 free (buf);
11486 return NULL;
11487 }
11488
11489 #if defined (HAVE_LWPSTATUS_T)
11490 char *
11491 elfcore_write_lwpstatus (bfd *abfd,
11492 char *buf,
11493 int *bufsiz,
11494 long pid,
11495 int cursig,
11496 const void *gregs)
11497 {
11498 lwpstatus_t lwpstat;
11499 const char *note_name = "CORE";
11500
11501 memset (&lwpstat, 0, sizeof (lwpstat));
11502 lwpstat.pr_lwpid = pid >> 16;
11503 lwpstat.pr_cursig = cursig;
11504 #if defined (HAVE_LWPSTATUS_T_PR_REG)
11505 memcpy (&lwpstat.pr_reg, gregs, sizeof (lwpstat.pr_reg));
11506 #elif defined (HAVE_LWPSTATUS_T_PR_CONTEXT)
11507 #if !defined(gregs)
11508 memcpy (lwpstat.pr_context.uc_mcontext.gregs,
11509 gregs, sizeof (lwpstat.pr_context.uc_mcontext.gregs));
11510 #else
11511 memcpy (lwpstat.pr_context.uc_mcontext.__gregs,
11512 gregs, sizeof (lwpstat.pr_context.uc_mcontext.__gregs));
11513 #endif
11514 #endif
11515 return elfcore_write_note (abfd, buf, bufsiz, note_name,
11516 NT_LWPSTATUS, &lwpstat, sizeof (lwpstat));
11517 }
11518 #endif /* HAVE_LWPSTATUS_T */
11519
11520 #if defined (HAVE_PSTATUS_T)
11521 char *
11522 elfcore_write_pstatus (bfd *abfd,
11523 char *buf,
11524 int *bufsiz,
11525 long pid,
11526 int cursig ATTRIBUTE_UNUSED,
11527 const void *gregs ATTRIBUTE_UNUSED)
11528 {
11529 const char *note_name = "CORE";
11530 #if defined (HAVE_PSTATUS32_T)
11531 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
11532
11533 if (bed->s->elfclass == ELFCLASS32)
11534 {
11535 pstatus32_t pstat;
11536
11537 memset (&pstat, 0, sizeof (pstat));
11538 pstat.pr_pid = pid & 0xffff;
11539 buf = elfcore_write_note (abfd, buf, bufsiz, note_name,
11540 NT_PSTATUS, &pstat, sizeof (pstat));
11541 return buf;
11542 }
11543 else
11544 #endif
11545 {
11546 pstatus_t pstat;
11547
11548 memset (&pstat, 0, sizeof (pstat));
11549 pstat.pr_pid = pid & 0xffff;
11550 buf = elfcore_write_note (abfd, buf, bufsiz, note_name,
11551 NT_PSTATUS, &pstat, sizeof (pstat));
11552 return buf;
11553 }
11554 }
11555 #endif /* HAVE_PSTATUS_T */
11556
11557 char *
11558 elfcore_write_prfpreg (bfd *abfd,
11559 char *buf,
11560 int *bufsiz,
11561 const void *fpregs,
11562 int size)
11563 {
11564 const char *note_name = "CORE";
11565 return elfcore_write_note (abfd, buf, bufsiz,
11566 note_name, NT_FPREGSET, fpregs, size);
11567 }
11568
11569 char *
11570 elfcore_write_prxfpreg (bfd *abfd,
11571 char *buf,
11572 int *bufsiz,
11573 const void *xfpregs,
11574 int size)
11575 {
11576 char *note_name = "LINUX";
11577 return elfcore_write_note (abfd, buf, bufsiz,
11578 note_name, NT_PRXFPREG, xfpregs, size);
11579 }
11580
11581 char *
11582 elfcore_write_xstatereg (bfd *abfd, char *buf, int *bufsiz,
11583 const void *xfpregs, int size)
11584 {
11585 char *note_name;
11586 if (get_elf_backend_data (abfd)->elf_osabi == ELFOSABI_FREEBSD)
11587 note_name = "FreeBSD";
11588 else
11589 note_name = "LINUX";
11590 return elfcore_write_note (abfd, buf, bufsiz,
11591 note_name, NT_X86_XSTATE, xfpregs, size);
11592 }
11593
11594 char *
11595 elfcore_write_ppc_vmx (bfd *abfd,
11596 char *buf,
11597 int *bufsiz,
11598 const void *ppc_vmx,
11599 int size)
11600 {
11601 char *note_name = "LINUX";
11602 return elfcore_write_note (abfd, buf, bufsiz,
11603 note_name, NT_PPC_VMX, ppc_vmx, size);
11604 }
11605
11606 char *
11607 elfcore_write_ppc_vsx (bfd *abfd,
11608 char *buf,
11609 int *bufsiz,
11610 const void *ppc_vsx,
11611 int size)
11612 {
11613 char *note_name = "LINUX";
11614 return elfcore_write_note (abfd, buf, bufsiz,
11615 note_name, NT_PPC_VSX, ppc_vsx, size);
11616 }
11617
11618 char *
11619 elfcore_write_ppc_tar (bfd *abfd,
11620 char *buf,
11621 int *bufsiz,
11622 const void *ppc_tar,
11623 int size)
11624 {
11625 char *note_name = "LINUX";
11626 return elfcore_write_note (abfd, buf, bufsiz,
11627 note_name, NT_PPC_TAR, ppc_tar, size);
11628 }
11629
11630 char *
11631 elfcore_write_ppc_ppr (bfd *abfd,
11632 char *buf,
11633 int *bufsiz,
11634 const void *ppc_ppr,
11635 int size)
11636 {
11637 char *note_name = "LINUX";
11638 return elfcore_write_note (abfd, buf, bufsiz,
11639 note_name, NT_PPC_PPR, ppc_ppr, size);
11640 }
11641
11642 char *
11643 elfcore_write_ppc_dscr (bfd *abfd,
11644 char *buf,
11645 int *bufsiz,
11646 const void *ppc_dscr,
11647 int size)
11648 {
11649 char *note_name = "LINUX";
11650 return elfcore_write_note (abfd, buf, bufsiz,
11651 note_name, NT_PPC_DSCR, ppc_dscr, size);
11652 }
11653
11654 char *
11655 elfcore_write_ppc_ebb (bfd *abfd,
11656 char *buf,
11657 int *bufsiz,
11658 const void *ppc_ebb,
11659 int size)
11660 {
11661 char *note_name = "LINUX";
11662 return elfcore_write_note (abfd, buf, bufsiz,
11663 note_name, NT_PPC_EBB, ppc_ebb, size);
11664 }
11665
11666 char *
11667 elfcore_write_ppc_pmu (bfd *abfd,
11668 char *buf,
11669 int *bufsiz,
11670 const void *ppc_pmu,
11671 int size)
11672 {
11673 char *note_name = "LINUX";
11674 return elfcore_write_note (abfd, buf, bufsiz,
11675 note_name, NT_PPC_PMU, ppc_pmu, size);
11676 }
11677
11678 char *
11679 elfcore_write_ppc_tm_cgpr (bfd *abfd,
11680 char *buf,
11681 int *bufsiz,
11682 const void *ppc_tm_cgpr,
11683 int size)
11684 {
11685 char *note_name = "LINUX";
11686 return elfcore_write_note (abfd, buf, bufsiz,
11687 note_name, NT_PPC_TM_CGPR, ppc_tm_cgpr, size);
11688 }
11689
11690 char *
11691 elfcore_write_ppc_tm_cfpr (bfd *abfd,
11692 char *buf,
11693 int *bufsiz,
11694 const void *ppc_tm_cfpr,
11695 int size)
11696 {
11697 char *note_name = "LINUX";
11698 return elfcore_write_note (abfd, buf, bufsiz,
11699 note_name, NT_PPC_TM_CFPR, ppc_tm_cfpr, size);
11700 }
11701
11702 char *
11703 elfcore_write_ppc_tm_cvmx (bfd *abfd,
11704 char *buf,
11705 int *bufsiz,
11706 const void *ppc_tm_cvmx,
11707 int size)
11708 {
11709 char *note_name = "LINUX";
11710 return elfcore_write_note (abfd, buf, bufsiz,
11711 note_name, NT_PPC_TM_CVMX, ppc_tm_cvmx, size);
11712 }
11713
11714 char *
11715 elfcore_write_ppc_tm_cvsx (bfd *abfd,
11716 char *buf,
11717 int *bufsiz,
11718 const void *ppc_tm_cvsx,
11719 int size)
11720 {
11721 char *note_name = "LINUX";
11722 return elfcore_write_note (abfd, buf, bufsiz,
11723 note_name, NT_PPC_TM_CVSX, ppc_tm_cvsx, size);
11724 }
11725
11726 char *
11727 elfcore_write_ppc_tm_spr (bfd *abfd,
11728 char *buf,
11729 int *bufsiz,
11730 const void *ppc_tm_spr,
11731 int size)
11732 {
11733 char *note_name = "LINUX";
11734 return elfcore_write_note (abfd, buf, bufsiz,
11735 note_name, NT_PPC_TM_SPR, ppc_tm_spr, size);
11736 }
11737
11738 char *
11739 elfcore_write_ppc_tm_ctar (bfd *abfd,
11740 char *buf,
11741 int *bufsiz,
11742 const void *ppc_tm_ctar,
11743 int size)
11744 {
11745 char *note_name = "LINUX";
11746 return elfcore_write_note (abfd, buf, bufsiz,
11747 note_name, NT_PPC_TM_CTAR, ppc_tm_ctar, size);
11748 }
11749
11750 char *
11751 elfcore_write_ppc_tm_cppr (bfd *abfd,
11752 char *buf,
11753 int *bufsiz,
11754 const void *ppc_tm_cppr,
11755 int size)
11756 {
11757 char *note_name = "LINUX";
11758 return elfcore_write_note (abfd, buf, bufsiz,
11759 note_name, NT_PPC_TM_CPPR, ppc_tm_cppr, size);
11760 }
11761
11762 char *
11763 elfcore_write_ppc_tm_cdscr (bfd *abfd,
11764 char *buf,
11765 int *bufsiz,
11766 const void *ppc_tm_cdscr,
11767 int size)
11768 {
11769 char *note_name = "LINUX";
11770 return elfcore_write_note (abfd, buf, bufsiz,
11771 note_name, NT_PPC_TM_CDSCR, ppc_tm_cdscr, size);
11772 }
11773
11774 static char *
11775 elfcore_write_s390_high_gprs (bfd *abfd,
11776 char *buf,
11777 int *bufsiz,
11778 const void *s390_high_gprs,
11779 int size)
11780 {
11781 char *note_name = "LINUX";
11782 return elfcore_write_note (abfd, buf, bufsiz,
11783 note_name, NT_S390_HIGH_GPRS,
11784 s390_high_gprs, size);
11785 }
11786
11787 char *
11788 elfcore_write_s390_timer (bfd *abfd,
11789 char *buf,
11790 int *bufsiz,
11791 const void *s390_timer,
11792 int size)
11793 {
11794 char *note_name = "LINUX";
11795 return elfcore_write_note (abfd, buf, bufsiz,
11796 note_name, NT_S390_TIMER, s390_timer, size);
11797 }
11798
11799 char *
11800 elfcore_write_s390_todcmp (bfd *abfd,
11801 char *buf,
11802 int *bufsiz,
11803 const void *s390_todcmp,
11804 int size)
11805 {
11806 char *note_name = "LINUX";
11807 return elfcore_write_note (abfd, buf, bufsiz,
11808 note_name, NT_S390_TODCMP, s390_todcmp, size);
11809 }
11810
11811 char *
11812 elfcore_write_s390_todpreg (bfd *abfd,
11813 char *buf,
11814 int *bufsiz,
11815 const void *s390_todpreg,
11816 int size)
11817 {
11818 char *note_name = "LINUX";
11819 return elfcore_write_note (abfd, buf, bufsiz,
11820 note_name, NT_S390_TODPREG, s390_todpreg, size);
11821 }
11822
11823 char *
11824 elfcore_write_s390_ctrs (bfd *abfd,
11825 char *buf,
11826 int *bufsiz,
11827 const void *s390_ctrs,
11828 int size)
11829 {
11830 char *note_name = "LINUX";
11831 return elfcore_write_note (abfd, buf, bufsiz,
11832 note_name, NT_S390_CTRS, s390_ctrs, size);
11833 }
11834
11835 char *
11836 elfcore_write_s390_prefix (bfd *abfd,
11837 char *buf,
11838 int *bufsiz,
11839 const void *s390_prefix,
11840 int size)
11841 {
11842 char *note_name = "LINUX";
11843 return elfcore_write_note (abfd, buf, bufsiz,
11844 note_name, NT_S390_PREFIX, s390_prefix, size);
11845 }
11846
11847 char *
11848 elfcore_write_s390_last_break (bfd *abfd,
11849 char *buf,
11850 int *bufsiz,
11851 const void *s390_last_break,
11852 int size)
11853 {
11854 char *note_name = "LINUX";
11855 return elfcore_write_note (abfd, buf, bufsiz,
11856 note_name, NT_S390_LAST_BREAK,
11857 s390_last_break, size);
11858 }
11859
11860 char *
11861 elfcore_write_s390_system_call (bfd *abfd,
11862 char *buf,
11863 int *bufsiz,
11864 const void *s390_system_call,
11865 int size)
11866 {
11867 char *note_name = "LINUX";
11868 return elfcore_write_note (abfd, buf, bufsiz,
11869 note_name, NT_S390_SYSTEM_CALL,
11870 s390_system_call, size);
11871 }
11872
11873 char *
11874 elfcore_write_s390_tdb (bfd *abfd,
11875 char *buf,
11876 int *bufsiz,
11877 const void *s390_tdb,
11878 int size)
11879 {
11880 char *note_name = "LINUX";
11881 return elfcore_write_note (abfd, buf, bufsiz,
11882 note_name, NT_S390_TDB, s390_tdb, size);
11883 }
11884
11885 char *
11886 elfcore_write_s390_vxrs_low (bfd *abfd,
11887 char *buf,
11888 int *bufsiz,
11889 const void *s390_vxrs_low,
11890 int size)
11891 {
11892 char *note_name = "LINUX";
11893 return elfcore_write_note (abfd, buf, bufsiz,
11894 note_name, NT_S390_VXRS_LOW, s390_vxrs_low, size);
11895 }
11896
11897 char *
11898 elfcore_write_s390_vxrs_high (bfd *abfd,
11899 char *buf,
11900 int *bufsiz,
11901 const void *s390_vxrs_high,
11902 int size)
11903 {
11904 char *note_name = "LINUX";
11905 return elfcore_write_note (abfd, buf, bufsiz,
11906 note_name, NT_S390_VXRS_HIGH,
11907 s390_vxrs_high, size);
11908 }
11909
11910 char *
11911 elfcore_write_s390_gs_cb (bfd *abfd,
11912 char *buf,
11913 int *bufsiz,
11914 const void *s390_gs_cb,
11915 int size)
11916 {
11917 char *note_name = "LINUX";
11918 return elfcore_write_note (abfd, buf, bufsiz,
11919 note_name, NT_S390_GS_CB,
11920 s390_gs_cb, size);
11921 }
11922
11923 char *
11924 elfcore_write_s390_gs_bc (bfd *abfd,
11925 char *buf,
11926 int *bufsiz,
11927 const void *s390_gs_bc,
11928 int size)
11929 {
11930 char *note_name = "LINUX";
11931 return elfcore_write_note (abfd, buf, bufsiz,
11932 note_name, NT_S390_GS_BC,
11933 s390_gs_bc, size);
11934 }
11935
11936 char *
11937 elfcore_write_arm_vfp (bfd *abfd,
11938 char *buf,
11939 int *bufsiz,
11940 const void *arm_vfp,
11941 int size)
11942 {
11943 char *note_name = "LINUX";
11944 return elfcore_write_note (abfd, buf, bufsiz,
11945 note_name, NT_ARM_VFP, arm_vfp, size);
11946 }
11947
11948 char *
11949 elfcore_write_aarch_tls (bfd *abfd,
11950 char *buf,
11951 int *bufsiz,
11952 const void *aarch_tls,
11953 int size)
11954 {
11955 char *note_name = "LINUX";
11956 return elfcore_write_note (abfd, buf, bufsiz,
11957 note_name, NT_ARM_TLS, aarch_tls, size);
11958 }
11959
11960 char *
11961 elfcore_write_aarch_hw_break (bfd *abfd,
11962 char *buf,
11963 int *bufsiz,
11964 const void *aarch_hw_break,
11965 int size)
11966 {
11967 char *note_name = "LINUX";
11968 return elfcore_write_note (abfd, buf, bufsiz,
11969 note_name, NT_ARM_HW_BREAK, aarch_hw_break, size);
11970 }
11971
11972 char *
11973 elfcore_write_aarch_hw_watch (bfd *abfd,
11974 char *buf,
11975 int *bufsiz,
11976 const void *aarch_hw_watch,
11977 int size)
11978 {
11979 char *note_name = "LINUX";
11980 return elfcore_write_note (abfd, buf, bufsiz,
11981 note_name, NT_ARM_HW_WATCH, aarch_hw_watch, size);
11982 }
11983
11984 char *
11985 elfcore_write_aarch_sve (bfd *abfd,
11986 char *buf,
11987 int *bufsiz,
11988 const void *aarch_sve,
11989 int size)
11990 {
11991 char *note_name = "LINUX";
11992 return elfcore_write_note (abfd, buf, bufsiz,
11993 note_name, NT_ARM_SVE, aarch_sve, size);
11994 }
11995
11996 char *
11997 elfcore_write_aarch_pauth (bfd *abfd,
11998 char *buf,
11999 int *bufsiz,
12000 const void *aarch_pauth,
12001 int size)
12002 {
12003 char *note_name = "LINUX";
12004 return elfcore_write_note (abfd, buf, bufsiz,
12005 note_name, NT_ARM_PAC_MASK, aarch_pauth, size);
12006 }
12007
12008 char *
12009 elfcore_write_aarch_mte (bfd *abfd,
12010 char *buf,
12011 int *bufsiz,
12012 const void *aarch_mte,
12013 int size)
12014 {
12015 char *note_name = "LINUX";
12016 return elfcore_write_note (abfd, buf, bufsiz,
12017 note_name, NT_ARM_TAGGED_ADDR_CTRL,
12018 aarch_mte,
12019 size);
12020 }
12021
12022 char *
12023 elfcore_write_arc_v2 (bfd *abfd,
12024 char *buf,
12025 int *bufsiz,
12026 const void *arc_v2,
12027 int size)
12028 {
12029 char *note_name = "LINUX";
12030 return elfcore_write_note (abfd, buf, bufsiz,
12031 note_name, NT_ARC_V2, arc_v2, size);
12032 }
12033
12034 /* Write the buffer of csr values in CSRS (length SIZE) into the note
12035 buffer BUF and update *BUFSIZ. ABFD is the bfd the note is being
12036 written into. Return a pointer to the new start of the note buffer, to
12037 replace BUF which may no longer be valid. */
12038
12039 char *
12040 elfcore_write_riscv_csr (bfd *abfd,
12041 char *buf,
12042 int *bufsiz,
12043 const void *csrs,
12044 int size)
12045 {
12046 const char *note_name = "GDB";
12047 return elfcore_write_note (abfd, buf, bufsiz,
12048 note_name, NT_RISCV_CSR, csrs, size);
12049 }
12050
12051 /* Write the target description (a string) pointed to by TDESC, length
12052 SIZE, into the note buffer BUF, and update *BUFSIZ. ABFD is the bfd the
12053 note is being written into. Return a pointer to the new start of the
12054 note buffer, to replace BUF which may no longer be valid. */
12055
12056 char *
12057 elfcore_write_gdb_tdesc (bfd *abfd,
12058 char *buf,
12059 int *bufsiz,
12060 const void *tdesc,
12061 int size)
12062 {
12063 const char *note_name = "GDB";
12064 return elfcore_write_note (abfd, buf, bufsiz,
12065 note_name, NT_GDB_TDESC, tdesc, size);
12066 }
12067
12068 char *
12069 elfcore_write_register_note (bfd *abfd,
12070 char *buf,
12071 int *bufsiz,
12072 const char *section,
12073 const void *data,
12074 int size)
12075 {
12076 if (strcmp (section, ".reg2") == 0)
12077 return elfcore_write_prfpreg (abfd, buf, bufsiz, data, size);
12078 if (strcmp (section, ".reg-xfp") == 0)
12079 return elfcore_write_prxfpreg (abfd, buf, bufsiz, data, size);
12080 if (strcmp (section, ".reg-xstate") == 0)
12081 return elfcore_write_xstatereg (abfd, buf, bufsiz, data, size);
12082 if (strcmp (section, ".reg-ppc-vmx") == 0)
12083 return elfcore_write_ppc_vmx (abfd, buf, bufsiz, data, size);
12084 if (strcmp (section, ".reg-ppc-vsx") == 0)
12085 return elfcore_write_ppc_vsx (abfd, buf, bufsiz, data, size);
12086 if (strcmp (section, ".reg-ppc-tar") == 0)
12087 return elfcore_write_ppc_tar (abfd, buf, bufsiz, data, size);
12088 if (strcmp (section, ".reg-ppc-ppr") == 0)
12089 return elfcore_write_ppc_ppr (abfd, buf, bufsiz, data, size);
12090 if (strcmp (section, ".reg-ppc-dscr") == 0)
12091 return elfcore_write_ppc_dscr (abfd, buf, bufsiz, data, size);
12092 if (strcmp (section, ".reg-ppc-ebb") == 0)
12093 return elfcore_write_ppc_ebb (abfd, buf, bufsiz, data, size);
12094 if (strcmp (section, ".reg-ppc-pmu") == 0)
12095 return elfcore_write_ppc_pmu (abfd, buf, bufsiz, data, size);
12096 if (strcmp (section, ".reg-ppc-tm-cgpr") == 0)
12097 return elfcore_write_ppc_tm_cgpr (abfd, buf, bufsiz, data, size);
12098 if (strcmp (section, ".reg-ppc-tm-cfpr") == 0)
12099 return elfcore_write_ppc_tm_cfpr (abfd, buf, bufsiz, data, size);
12100 if (strcmp (section, ".reg-ppc-tm-cvmx") == 0)
12101 return elfcore_write_ppc_tm_cvmx (abfd, buf, bufsiz, data, size);
12102 if (strcmp (section, ".reg-ppc-tm-cvsx") == 0)
12103 return elfcore_write_ppc_tm_cvsx (abfd, buf, bufsiz, data, size);
12104 if (strcmp (section, ".reg-ppc-tm-spr") == 0)
12105 return elfcore_write_ppc_tm_spr (abfd, buf, bufsiz, data, size);
12106 if (strcmp (section, ".reg-ppc-tm-ctar") == 0)
12107 return elfcore_write_ppc_tm_ctar (abfd, buf, bufsiz, data, size);
12108 if (strcmp (section, ".reg-ppc-tm-cppr") == 0)
12109 return elfcore_write_ppc_tm_cppr (abfd, buf, bufsiz, data, size);
12110 if (strcmp (section, ".reg-ppc-tm-cdscr") == 0)
12111 return elfcore_write_ppc_tm_cdscr (abfd, buf, bufsiz, data, size);
12112 if (strcmp (section, ".reg-s390-high-gprs") == 0)
12113 return elfcore_write_s390_high_gprs (abfd, buf, bufsiz, data, size);
12114 if (strcmp (section, ".reg-s390-timer") == 0)
12115 return elfcore_write_s390_timer (abfd, buf, bufsiz, data, size);
12116 if (strcmp (section, ".reg-s390-todcmp") == 0)
12117 return elfcore_write_s390_todcmp (abfd, buf, bufsiz, data, size);
12118 if (strcmp (section, ".reg-s390-todpreg") == 0)
12119 return elfcore_write_s390_todpreg (abfd, buf, bufsiz, data, size);
12120 if (strcmp (section, ".reg-s390-ctrs") == 0)
12121 return elfcore_write_s390_ctrs (abfd, buf, bufsiz, data, size);
12122 if (strcmp (section, ".reg-s390-prefix") == 0)
12123 return elfcore_write_s390_prefix (abfd, buf, bufsiz, data, size);
12124 if (strcmp (section, ".reg-s390-last-break") == 0)
12125 return elfcore_write_s390_last_break (abfd, buf, bufsiz, data, size);
12126 if (strcmp (section, ".reg-s390-system-call") == 0)
12127 return elfcore_write_s390_system_call (abfd, buf, bufsiz, data, size);
12128 if (strcmp (section, ".reg-s390-tdb") == 0)
12129 return elfcore_write_s390_tdb (abfd, buf, bufsiz, data, size);
12130 if (strcmp (section, ".reg-s390-vxrs-low") == 0)
12131 return elfcore_write_s390_vxrs_low (abfd, buf, bufsiz, data, size);
12132 if (strcmp (section, ".reg-s390-vxrs-high") == 0)
12133 return elfcore_write_s390_vxrs_high (abfd, buf, bufsiz, data, size);
12134 if (strcmp (section, ".reg-s390-gs-cb") == 0)
12135 return elfcore_write_s390_gs_cb (abfd, buf, bufsiz, data, size);
12136 if (strcmp (section, ".reg-s390-gs-bc") == 0)
12137 return elfcore_write_s390_gs_bc (abfd, buf, bufsiz, data, size);
12138 if (strcmp (section, ".reg-arm-vfp") == 0)
12139 return elfcore_write_arm_vfp (abfd, buf, bufsiz, data, size);
12140 if (strcmp (section, ".reg-aarch-tls") == 0)
12141 return elfcore_write_aarch_tls (abfd, buf, bufsiz, data, size);
12142 if (strcmp (section, ".reg-aarch-hw-break") == 0)
12143 return elfcore_write_aarch_hw_break (abfd, buf, bufsiz, data, size);
12144 if (strcmp (section, ".reg-aarch-hw-watch") == 0)
12145 return elfcore_write_aarch_hw_watch (abfd, buf, bufsiz, data, size);
12146 if (strcmp (section, ".reg-aarch-sve") == 0)
12147 return elfcore_write_aarch_sve (abfd, buf, bufsiz, data, size);
12148 if (strcmp (section, ".reg-aarch-pauth") == 0)
12149 return elfcore_write_aarch_pauth (abfd, buf, bufsiz, data, size);
12150 if (strcmp (section, ".reg-aarch-mte") == 0)
12151 return elfcore_write_aarch_mte (abfd, buf, bufsiz, data, size);
12152 if (strcmp (section, ".reg-arc-v2") == 0)
12153 return elfcore_write_arc_v2 (abfd, buf, bufsiz, data, size);
12154 if (strcmp (section, ".gdb-tdesc") == 0)
12155 return elfcore_write_gdb_tdesc (abfd, buf, bufsiz, data, size);
12156 if (strcmp (section, ".reg-riscv-csr") == 0)
12157 return elfcore_write_riscv_csr (abfd, buf, bufsiz, data, size);
12158 return NULL;
12159 }
12160
12161 char *
12162 elfcore_write_file_note (bfd *obfd, char *note_data, int *note_size,
12163 const void *buf, int bufsiz)
12164 {
12165 return elfcore_write_note (obfd, note_data, note_size,
12166 "CORE", NT_FILE, buf, bufsiz);
12167 }
12168
12169 static bool
12170 elf_parse_notes (bfd *abfd, char *buf, size_t size, file_ptr offset,
12171 size_t align)
12172 {
12173 char *p;
12174
12175 /* NB: CORE PT_NOTE segments may have p_align values of 0 or 1.
12176 gABI specifies that PT_NOTE alignment should be aligned to 4
12177 bytes for 32-bit objects and to 8 bytes for 64-bit objects. If
12178 align is less than 4, we use 4 byte alignment. */
12179 if (align < 4)
12180 align = 4;
12181 if (align != 4 && align != 8)
12182 return false;
12183
12184 p = buf;
12185 while (p < buf + size)
12186 {
12187 Elf_External_Note *xnp = (Elf_External_Note *) p;
12188 Elf_Internal_Note in;
12189
12190 if (offsetof (Elf_External_Note, name) > buf - p + size)
12191 return false;
12192
12193 in.type = H_GET_32 (abfd, xnp->type);
12194
12195 in.namesz = H_GET_32 (abfd, xnp->namesz);
12196 in.namedata = xnp->name;
12197 if (in.namesz > buf - in.namedata + size)
12198 return false;
12199
12200 in.descsz = H_GET_32 (abfd, xnp->descsz);
12201 in.descdata = p + ELF_NOTE_DESC_OFFSET (in.namesz, align);
12202 in.descpos = offset + (in.descdata - buf);
12203 if (in.descsz != 0
12204 && (in.descdata >= buf + size
12205 || in.descsz > buf - in.descdata + size))
12206 return false;
12207
12208 switch (bfd_get_format (abfd))
12209 {
12210 default:
12211 return true;
12212
12213 case bfd_core:
12214 {
12215 #define GROKER_ELEMENT(S,F) {S, sizeof (S) - 1, F}
12216 struct
12217 {
12218 const char * string;
12219 size_t len;
12220 bool (*func) (bfd *, Elf_Internal_Note *);
12221 }
12222 grokers[] =
12223 {
12224 GROKER_ELEMENT ("", elfcore_grok_note),
12225 GROKER_ELEMENT ("FreeBSD", elfcore_grok_freebsd_note),
12226 GROKER_ELEMENT ("NetBSD-CORE", elfcore_grok_netbsd_note),
12227 GROKER_ELEMENT ( "OpenBSD", elfcore_grok_openbsd_note),
12228 GROKER_ELEMENT ("QNX", elfcore_grok_nto_note),
12229 GROKER_ELEMENT ("SPU/", elfcore_grok_spu_note),
12230 GROKER_ELEMENT ("GNU", elfobj_grok_gnu_note)
12231 };
12232 #undef GROKER_ELEMENT
12233 int i;
12234
12235 for (i = ARRAY_SIZE (grokers); i--;)
12236 {
12237 if (in.namesz >= grokers[i].len
12238 && strncmp (in.namedata, grokers[i].string,
12239 grokers[i].len) == 0)
12240 {
12241 if (! grokers[i].func (abfd, & in))
12242 return false;
12243 break;
12244 }
12245 }
12246 break;
12247 }
12248
12249 case bfd_object:
12250 if (in.namesz == sizeof "GNU" && strcmp (in.namedata, "GNU") == 0)
12251 {
12252 if (! elfobj_grok_gnu_note (abfd, &in))
12253 return false;
12254 }
12255 else if (in.namesz == sizeof "stapsdt"
12256 && strcmp (in.namedata, "stapsdt") == 0)
12257 {
12258 if (! elfobj_grok_stapsdt_note (abfd, &in))
12259 return false;
12260 }
12261 break;
12262 }
12263
12264 p += ELF_NOTE_NEXT_OFFSET (in.namesz, in.descsz, align);
12265 }
12266
12267 return true;
12268 }
12269
12270 bool
12271 elf_read_notes (bfd *abfd, file_ptr offset, bfd_size_type size,
12272 size_t align)
12273 {
12274 char *buf;
12275
12276 if (size == 0 || (size + 1) == 0)
12277 return true;
12278
12279 if (bfd_seek (abfd, offset, SEEK_SET) != 0)
12280 return false;
12281
12282 buf = (char *) _bfd_malloc_and_read (abfd, size + 1, size);
12283 if (buf == NULL)
12284 return false;
12285
12286 /* PR 17512: file: ec08f814
12287 0-termintate the buffer so that string searches will not overflow. */
12288 buf[size] = 0;
12289
12290 if (!elf_parse_notes (abfd, buf, size, offset, align))
12291 {
12292 free (buf);
12293 return false;
12294 }
12295
12296 free (buf);
12297 return true;
12298 }
12299 \f
12300 /* Providing external access to the ELF program header table. */
12301
12302 /* Return an upper bound on the number of bytes required to store a
12303 copy of ABFD's program header table entries. Return -1 if an error
12304 occurs; bfd_get_error will return an appropriate code. */
12305
12306 long
12307 bfd_get_elf_phdr_upper_bound (bfd *abfd)
12308 {
12309 if (abfd->xvec->flavour != bfd_target_elf_flavour)
12310 {
12311 bfd_set_error (bfd_error_wrong_format);
12312 return -1;
12313 }
12314
12315 return elf_elfheader (abfd)->e_phnum * sizeof (Elf_Internal_Phdr);
12316 }
12317
12318 /* Copy ABFD's program header table entries to *PHDRS. The entries
12319 will be stored as an array of Elf_Internal_Phdr structures, as
12320 defined in include/elf/internal.h. To find out how large the
12321 buffer needs to be, call bfd_get_elf_phdr_upper_bound.
12322
12323 Return the number of program header table entries read, or -1 if an
12324 error occurs; bfd_get_error will return an appropriate code. */
12325
12326 int
12327 bfd_get_elf_phdrs (bfd *abfd, void *phdrs)
12328 {
12329 int num_phdrs;
12330
12331 if (abfd->xvec->flavour != bfd_target_elf_flavour)
12332 {
12333 bfd_set_error (bfd_error_wrong_format);
12334 return -1;
12335 }
12336
12337 num_phdrs = elf_elfheader (abfd)->e_phnum;
12338 if (num_phdrs != 0)
12339 memcpy (phdrs, elf_tdata (abfd)->phdr,
12340 num_phdrs * sizeof (Elf_Internal_Phdr));
12341
12342 return num_phdrs;
12343 }
12344
12345 enum elf_reloc_type_class
12346 _bfd_elf_reloc_type_class (const struct bfd_link_info *info ATTRIBUTE_UNUSED,
12347 const asection *rel_sec ATTRIBUTE_UNUSED,
12348 const Elf_Internal_Rela *rela ATTRIBUTE_UNUSED)
12349 {
12350 return reloc_class_normal;
12351 }
12352
12353 /* For RELA architectures, return the relocation value for a
12354 relocation against a local symbol. */
12355
12356 bfd_vma
12357 _bfd_elf_rela_local_sym (bfd *abfd,
12358 Elf_Internal_Sym *sym,
12359 asection **psec,
12360 Elf_Internal_Rela *rel)
12361 {
12362 asection *sec = *psec;
12363 bfd_vma relocation;
12364
12365 relocation = (sec->output_section->vma
12366 + sec->output_offset
12367 + sym->st_value);
12368 if ((sec->flags & SEC_MERGE)
12369 && ELF_ST_TYPE (sym->st_info) == STT_SECTION
12370 && sec->sec_info_type == SEC_INFO_TYPE_MERGE)
12371 {
12372 rel->r_addend =
12373 _bfd_merged_section_offset (abfd, psec,
12374 elf_section_data (sec)->sec_info,
12375 sym->st_value + rel->r_addend);
12376 if (sec != *psec)
12377 {
12378 /* If we have changed the section, and our original section is
12379 marked with SEC_EXCLUDE, it means that the original
12380 SEC_MERGE section has been completely subsumed in some
12381 other SEC_MERGE section. In this case, we need to leave
12382 some info around for --emit-relocs. */
12383 if ((sec->flags & SEC_EXCLUDE) != 0)
12384 sec->kept_section = *psec;
12385 sec = *psec;
12386 }
12387 rel->r_addend -= relocation;
12388 rel->r_addend += sec->output_section->vma + sec->output_offset;
12389 }
12390 return relocation;
12391 }
12392
12393 bfd_vma
12394 _bfd_elf_rel_local_sym (bfd *abfd,
12395 Elf_Internal_Sym *sym,
12396 asection **psec,
12397 bfd_vma addend)
12398 {
12399 asection *sec = *psec;
12400
12401 if (sec->sec_info_type != SEC_INFO_TYPE_MERGE)
12402 return sym->st_value + addend;
12403
12404 return _bfd_merged_section_offset (abfd, psec,
12405 elf_section_data (sec)->sec_info,
12406 sym->st_value + addend);
12407 }
12408
12409 /* Adjust an address within a section. Given OFFSET within SEC, return
12410 the new offset within the section, based upon changes made to the
12411 section. Returns -1 if the offset is now invalid.
12412 The offset (in abnd out) is in target sized bytes, however big a
12413 byte may be. */
12414
12415 bfd_vma
12416 _bfd_elf_section_offset (bfd *abfd,
12417 struct bfd_link_info *info,
12418 asection *sec,
12419 bfd_vma offset)
12420 {
12421 switch (sec->sec_info_type)
12422 {
12423 case SEC_INFO_TYPE_STABS:
12424 return _bfd_stab_section_offset (sec, elf_section_data (sec)->sec_info,
12425 offset);
12426 case SEC_INFO_TYPE_EH_FRAME:
12427 return _bfd_elf_eh_frame_section_offset (abfd, info, sec, offset);
12428
12429 default:
12430 if ((sec->flags & SEC_ELF_REVERSE_COPY) != 0)
12431 {
12432 /* Reverse the offset. */
12433 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
12434 bfd_size_type address_size = bed->s->arch_size / 8;
12435
12436 /* address_size and sec->size are in octets. Convert
12437 to bytes before subtracting the original offset. */
12438 offset = ((sec->size - address_size)
12439 / bfd_octets_per_byte (abfd, sec) - offset);
12440 }
12441 return offset;
12442 }
12443 }
12444 \f
12445 /* Create a new BFD as if by bfd_openr. Rather than opening a file,
12446 reconstruct an ELF file by reading the segments out of remote memory
12447 based on the ELF file header at EHDR_VMA and the ELF program headers it
12448 points to. If not null, *LOADBASEP is filled in with the difference
12449 between the VMAs from which the segments were read, and the VMAs the
12450 file headers (and hence BFD's idea of each section's VMA) put them at.
12451
12452 The function TARGET_READ_MEMORY is called to copy LEN bytes from the
12453 remote memory at target address VMA into the local buffer at MYADDR; it
12454 should return zero on success or an `errno' code on failure. TEMPL must
12455 be a BFD for an ELF target with the word size and byte order found in
12456 the remote memory. */
12457
12458 bfd *
12459 bfd_elf_bfd_from_remote_memory
12460 (bfd *templ,
12461 bfd_vma ehdr_vma,
12462 bfd_size_type size,
12463 bfd_vma *loadbasep,
12464 int (*target_read_memory) (bfd_vma, bfd_byte *, bfd_size_type))
12465 {
12466 return (*get_elf_backend_data (templ)->elf_backend_bfd_from_remote_memory)
12467 (templ, ehdr_vma, size, loadbasep, target_read_memory);
12468 }
12469 \f
12470 long
12471 _bfd_elf_get_synthetic_symtab (bfd *abfd,
12472 long symcount ATTRIBUTE_UNUSED,
12473 asymbol **syms ATTRIBUTE_UNUSED,
12474 long dynsymcount,
12475 asymbol **dynsyms,
12476 asymbol **ret)
12477 {
12478 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
12479 asection *relplt;
12480 asymbol *s;
12481 const char *relplt_name;
12482 bool (*slurp_relocs) (bfd *, asection *, asymbol **, bool);
12483 arelent *p;
12484 long count, i, n;
12485 size_t size;
12486 Elf_Internal_Shdr *hdr;
12487 char *names;
12488 asection *plt;
12489
12490 *ret = NULL;
12491
12492 if ((abfd->flags & (DYNAMIC | EXEC_P)) == 0)
12493 return 0;
12494
12495 if (dynsymcount <= 0)
12496 return 0;
12497
12498 if (!bed->plt_sym_val)
12499 return 0;
12500
12501 relplt_name = bed->relplt_name;
12502 if (relplt_name == NULL)
12503 relplt_name = bed->rela_plts_and_copies_p ? ".rela.plt" : ".rel.plt";
12504 relplt = bfd_get_section_by_name (abfd, relplt_name);
12505 if (relplt == NULL)
12506 return 0;
12507
12508 hdr = &elf_section_data (relplt)->this_hdr;
12509 if (hdr->sh_link != elf_dynsymtab (abfd)
12510 || (hdr->sh_type != SHT_REL && hdr->sh_type != SHT_RELA))
12511 return 0;
12512
12513 plt = bfd_get_section_by_name (abfd, ".plt");
12514 if (plt == NULL)
12515 return 0;
12516
12517 slurp_relocs = get_elf_backend_data (abfd)->s->slurp_reloc_table;
12518 if (! (*slurp_relocs) (abfd, relplt, dynsyms, true))
12519 return -1;
12520
12521 count = relplt->size / hdr->sh_entsize;
12522 size = count * sizeof (asymbol);
12523 p = relplt->relocation;
12524 for (i = 0; i < count; i++, p += bed->s->int_rels_per_ext_rel)
12525 {
12526 size += strlen ((*p->sym_ptr_ptr)->name) + sizeof ("@plt");
12527 if (p->addend != 0)
12528 {
12529 #ifdef BFD64
12530 size += sizeof ("+0x") - 1 + 8 + 8 * (bed->s->elfclass == ELFCLASS64);
12531 #else
12532 size += sizeof ("+0x") - 1 + 8;
12533 #endif
12534 }
12535 }
12536
12537 s = *ret = (asymbol *) bfd_malloc (size);
12538 if (s == NULL)
12539 return -1;
12540
12541 names = (char *) (s + count);
12542 p = relplt->relocation;
12543 n = 0;
12544 for (i = 0; i < count; i++, p += bed->s->int_rels_per_ext_rel)
12545 {
12546 size_t len;
12547 bfd_vma addr;
12548
12549 addr = bed->plt_sym_val (i, plt, p);
12550 if (addr == (bfd_vma) -1)
12551 continue;
12552
12553 *s = **p->sym_ptr_ptr;
12554 /* Undefined syms won't have BSF_LOCAL or BSF_GLOBAL set. Since
12555 we are defining a symbol, ensure one of them is set. */
12556 if ((s->flags & BSF_LOCAL) == 0)
12557 s->flags |= BSF_GLOBAL;
12558 s->flags |= BSF_SYNTHETIC;
12559 s->section = plt;
12560 s->value = addr - plt->vma;
12561 s->name = names;
12562 s->udata.p = NULL;
12563 len = strlen ((*p->sym_ptr_ptr)->name);
12564 memcpy (names, (*p->sym_ptr_ptr)->name, len);
12565 names += len;
12566 if (p->addend != 0)
12567 {
12568 char buf[30], *a;
12569
12570 memcpy (names, "+0x", sizeof ("+0x") - 1);
12571 names += sizeof ("+0x") - 1;
12572 bfd_sprintf_vma (abfd, buf, p->addend);
12573 for (a = buf; *a == '0'; ++a)
12574 ;
12575 len = strlen (a);
12576 memcpy (names, a, len);
12577 names += len;
12578 }
12579 memcpy (names, "@plt", sizeof ("@plt"));
12580 names += sizeof ("@plt");
12581 ++s, ++n;
12582 }
12583
12584 return n;
12585 }
12586
12587 /* It is only used by x86-64 so far.
12588 ??? This repeats *COM* id of zero. sec->id is supposed to be unique,
12589 but current usage would allow all of _bfd_std_section to be zero. */
12590 static const asymbol lcomm_sym
12591 = GLOBAL_SYM_INIT ("LARGE_COMMON", &_bfd_elf_large_com_section);
12592 asection _bfd_elf_large_com_section
12593 = BFD_FAKE_SECTION (_bfd_elf_large_com_section, &lcomm_sym,
12594 "LARGE_COMMON", 0, SEC_IS_COMMON);
12595
12596 bool
12597 _bfd_elf_final_write_processing (bfd *abfd)
12598 {
12599 Elf_Internal_Ehdr *i_ehdrp; /* ELF file header, internal form. */
12600
12601 i_ehdrp = elf_elfheader (abfd);
12602
12603 if (i_ehdrp->e_ident[EI_OSABI] == ELFOSABI_NONE)
12604 i_ehdrp->e_ident[EI_OSABI] = get_elf_backend_data (abfd)->elf_osabi;
12605
12606 /* Set the osabi field to ELFOSABI_GNU if the binary contains
12607 SHF_GNU_MBIND or SHF_GNU_RETAIN sections or symbols of STT_GNU_IFUNC type
12608 or STB_GNU_UNIQUE binding. */
12609 if (elf_tdata (abfd)->has_gnu_osabi != 0)
12610 {
12611 if (i_ehdrp->e_ident[EI_OSABI] == ELFOSABI_NONE)
12612 i_ehdrp->e_ident[EI_OSABI] = ELFOSABI_GNU;
12613 else if (i_ehdrp->e_ident[EI_OSABI] != ELFOSABI_GNU
12614 && i_ehdrp->e_ident[EI_OSABI] != ELFOSABI_FREEBSD)
12615 {
12616 if (elf_tdata (abfd)->has_gnu_osabi & elf_gnu_osabi_mbind)
12617 _bfd_error_handler (_("GNU_MBIND section is supported only by GNU "
12618 "and FreeBSD targets"));
12619 if (elf_tdata (abfd)->has_gnu_osabi & elf_gnu_osabi_ifunc)
12620 _bfd_error_handler (_("symbol type STT_GNU_IFUNC is supported "
12621 "only by GNU and FreeBSD targets"));
12622 if (elf_tdata (abfd)->has_gnu_osabi & elf_gnu_osabi_unique)
12623 _bfd_error_handler (_("symbol binding STB_GNU_UNIQUE is supported "
12624 "only by GNU and FreeBSD targets"));
12625 if (elf_tdata (abfd)->has_gnu_osabi & elf_gnu_osabi_retain)
12626 _bfd_error_handler (_("GNU_RETAIN section is supported "
12627 "only by GNU and FreeBSD targets"));
12628 bfd_set_error (bfd_error_sorry);
12629 return false;
12630 }
12631 }
12632 return true;
12633 }
12634
12635
12636 /* Return TRUE for ELF symbol types that represent functions.
12637 This is the default version of this function, which is sufficient for
12638 most targets. It returns true if TYPE is STT_FUNC or STT_GNU_IFUNC. */
12639
12640 bool
12641 _bfd_elf_is_function_type (unsigned int type)
12642 {
12643 return (type == STT_FUNC
12644 || type == STT_GNU_IFUNC);
12645 }
12646
12647 /* If the ELF symbol SYM might be a function in SEC, return the
12648 function size and set *CODE_OFF to the function's entry point,
12649 otherwise return zero. */
12650
12651 bfd_size_type
12652 _bfd_elf_maybe_function_sym (const asymbol *sym, asection *sec,
12653 bfd_vma *code_off)
12654 {
12655 bfd_size_type size;
12656 elf_symbol_type * elf_sym = (elf_symbol_type *) sym;
12657
12658 if ((sym->flags & (BSF_SECTION_SYM | BSF_FILE | BSF_OBJECT
12659 | BSF_THREAD_LOCAL | BSF_RELC | BSF_SRELC)) != 0
12660 || sym->section != sec)
12661 return 0;
12662
12663 size = (sym->flags & BSF_SYNTHETIC) ? 0 : elf_sym->internal_elf_sym.st_size;
12664
12665 /* In theory we should check that the symbol's type satisfies
12666 _bfd_elf_is_function_type(), but there are some function-like
12667 symbols which would fail this test. (eg _start). Instead
12668 we check for hidden, local, notype symbols with zero size.
12669 This type of symbol is generated by the annobin plugin for gcc
12670 and clang, and should not be considered to be a function symbol. */
12671 if (size == 0
12672 && ((sym->flags & (BSF_SYNTHETIC | BSF_LOCAL)) == BSF_LOCAL)
12673 && ELF_ST_TYPE (elf_sym->internal_elf_sym.st_info) == STT_NOTYPE
12674 && ELF_ST_VISIBILITY (elf_sym->internal_elf_sym.st_other) == STV_HIDDEN)
12675 return 0;
12676
12677 *code_off = sym->value;
12678 /* Do not return 0 for the function's size. */
12679 return size ? size : 1;
12680 }
12681
12682 /* Set to non-zero to enable some debug messages. */
12683 #define DEBUG_SECONDARY_RELOCS 0
12684
12685 /* An internal-to-the-bfd-library only section type
12686 used to indicate a cached secondary reloc section. */
12687 #define SHT_SECONDARY_RELOC (SHT_LOOS + SHT_RELA)
12688
12689 /* Create a BFD section to hold a secondary reloc section. */
12690
12691 bool
12692 _bfd_elf_init_secondary_reloc_section (bfd * abfd,
12693 Elf_Internal_Shdr *hdr,
12694 const char * name,
12695 unsigned int shindex)
12696 {
12697 /* We only support RELA secondary relocs. */
12698 if (hdr->sh_type != SHT_RELA)
12699 return false;
12700
12701 #if DEBUG_SECONDARY_RELOCS
12702 fprintf (stderr, "secondary reloc section %s encountered\n", name);
12703 #endif
12704 hdr->sh_type = SHT_SECONDARY_RELOC;
12705 return _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
12706 }
12707
12708 /* Read in any secondary relocs associated with SEC. */
12709
12710 bool
12711 _bfd_elf_slurp_secondary_reloc_section (bfd * abfd,
12712 asection * sec,
12713 asymbol ** symbols,
12714 bool dynamic)
12715 {
12716 const struct elf_backend_data * const ebd = get_elf_backend_data (abfd);
12717 asection * relsec;
12718 bool result = true;
12719 bfd_vma (*r_sym) (bfd_vma);
12720
12721 #if BFD_DEFAULT_TARGET_SIZE > 32
12722 if (bfd_arch_bits_per_address (abfd) != 32)
12723 r_sym = elf64_r_sym;
12724 else
12725 #endif
12726 r_sym = elf32_r_sym;
12727
12728 if (!elf_section_data (sec)->has_secondary_relocs)
12729 return true;
12730
12731 /* Discover if there are any secondary reloc sections
12732 associated with SEC. */
12733 for (relsec = abfd->sections; relsec != NULL; relsec = relsec->next)
12734 {
12735 Elf_Internal_Shdr * hdr = & elf_section_data (relsec)->this_hdr;
12736
12737 if (hdr->sh_type == SHT_SECONDARY_RELOC
12738 && hdr->sh_info == (unsigned) elf_section_data (sec)->this_idx
12739 && (hdr->sh_entsize == ebd->s->sizeof_rel
12740 || hdr->sh_entsize == ebd->s->sizeof_rela))
12741 {
12742 bfd_byte * native_relocs;
12743 bfd_byte * native_reloc;
12744 arelent * internal_relocs;
12745 arelent * internal_reloc;
12746 unsigned int i;
12747 unsigned int entsize;
12748 unsigned int symcount;
12749 unsigned int reloc_count;
12750 size_t amt;
12751
12752 if (ebd->elf_info_to_howto == NULL)
12753 return false;
12754
12755 #if DEBUG_SECONDARY_RELOCS
12756 fprintf (stderr, "read secondary relocs for %s from %s\n",
12757 sec->name, relsec->name);
12758 #endif
12759 entsize = hdr->sh_entsize;
12760
12761 native_relocs = bfd_malloc (hdr->sh_size);
12762 if (native_relocs == NULL)
12763 {
12764 result = false;
12765 continue;
12766 }
12767
12768 reloc_count = NUM_SHDR_ENTRIES (hdr);
12769 if (_bfd_mul_overflow (reloc_count, sizeof (arelent), & amt))
12770 {
12771 free (native_relocs);
12772 bfd_set_error (bfd_error_file_too_big);
12773 result = false;
12774 continue;
12775 }
12776
12777 internal_relocs = (arelent *) bfd_alloc (abfd, amt);
12778 if (internal_relocs == NULL)
12779 {
12780 free (native_relocs);
12781 result = false;
12782 continue;
12783 }
12784
12785 if (bfd_seek (abfd, hdr->sh_offset, SEEK_SET) != 0
12786 || (bfd_bread (native_relocs, hdr->sh_size, abfd)
12787 != hdr->sh_size))
12788 {
12789 free (native_relocs);
12790 /* The internal_relocs will be freed when
12791 the memory for the bfd is released. */
12792 result = false;
12793 continue;
12794 }
12795
12796 if (dynamic)
12797 symcount = bfd_get_dynamic_symcount (abfd);
12798 else
12799 symcount = bfd_get_symcount (abfd);
12800
12801 for (i = 0, internal_reloc = internal_relocs,
12802 native_reloc = native_relocs;
12803 i < reloc_count;
12804 i++, internal_reloc++, native_reloc += entsize)
12805 {
12806 bool res;
12807 Elf_Internal_Rela rela;
12808
12809 if (entsize == ebd->s->sizeof_rel)
12810 ebd->s->swap_reloc_in (abfd, native_reloc, & rela);
12811 else /* entsize == ebd->s->sizeof_rela */
12812 ebd->s->swap_reloca_in (abfd, native_reloc, & rela);
12813
12814 /* The address of an ELF reloc is section relative for an object
12815 file, and absolute for an executable file or shared library.
12816 The address of a normal BFD reloc is always section relative,
12817 and the address of a dynamic reloc is absolute.. */
12818 if ((abfd->flags & (EXEC_P | DYNAMIC)) == 0)
12819 internal_reloc->address = rela.r_offset;
12820 else
12821 internal_reloc->address = rela.r_offset - sec->vma;
12822
12823 if (r_sym (rela.r_info) == STN_UNDEF)
12824 {
12825 /* FIXME: This and the error case below mean that we
12826 have a symbol on relocs that is not elf_symbol_type. */
12827 internal_reloc->sym_ptr_ptr =
12828 bfd_abs_section_ptr->symbol_ptr_ptr;
12829 }
12830 else if (r_sym (rela.r_info) > symcount)
12831 {
12832 _bfd_error_handler
12833 /* xgettext:c-format */
12834 (_("%pB(%pA): relocation %d has invalid symbol index %ld"),
12835 abfd, sec, i, (long) r_sym (rela.r_info));
12836 bfd_set_error (bfd_error_bad_value);
12837 internal_reloc->sym_ptr_ptr =
12838 bfd_abs_section_ptr->symbol_ptr_ptr;
12839 result = false;
12840 }
12841 else
12842 {
12843 asymbol **ps;
12844
12845 ps = symbols + r_sym (rela.r_info) - 1;
12846 internal_reloc->sym_ptr_ptr = ps;
12847 /* Make sure that this symbol is not removed by strip. */
12848 (*ps)->flags |= BSF_KEEP;
12849 }
12850
12851 internal_reloc->addend = rela.r_addend;
12852
12853 res = ebd->elf_info_to_howto (abfd, internal_reloc, & rela);
12854 if (! res || internal_reloc->howto == NULL)
12855 {
12856 #if DEBUG_SECONDARY_RELOCS
12857 fprintf (stderr, "there is no howto associated with reloc %lx\n",
12858 rela.r_info);
12859 #endif
12860 result = false;
12861 }
12862 }
12863
12864 free (native_relocs);
12865 /* Store the internal relocs. */
12866 elf_section_data (relsec)->sec_info = internal_relocs;
12867 }
12868 }
12869
12870 return result;
12871 }
12872
12873 /* Set the ELF section header fields of an output secondary reloc section. */
12874
12875 bool
12876 _bfd_elf_copy_special_section_fields (const bfd * ibfd ATTRIBUTE_UNUSED,
12877 bfd * obfd ATTRIBUTE_UNUSED,
12878 const Elf_Internal_Shdr * isection,
12879 Elf_Internal_Shdr * osection)
12880 {
12881 asection * isec;
12882 asection * osec;
12883 struct bfd_elf_section_data * esd;
12884
12885 if (isection == NULL)
12886 return false;
12887
12888 if (isection->sh_type != SHT_SECONDARY_RELOC)
12889 return true;
12890
12891 isec = isection->bfd_section;
12892 if (isec == NULL)
12893 return false;
12894
12895 osec = osection->bfd_section;
12896 if (osec == NULL)
12897 return false;
12898
12899 esd = elf_section_data (osec);
12900 BFD_ASSERT (esd->sec_info == NULL);
12901 esd->sec_info = elf_section_data (isec)->sec_info;
12902 osection->sh_type = SHT_RELA;
12903 osection->sh_link = elf_onesymtab (obfd);
12904 if (osection->sh_link == 0)
12905 {
12906 /* There is no symbol table - we are hosed... */
12907 _bfd_error_handler
12908 /* xgettext:c-format */
12909 (_("%pB(%pA): link section cannot be set because the output file does not have a symbol table"),
12910 obfd, osec);
12911 bfd_set_error (bfd_error_bad_value);
12912 return false;
12913 }
12914
12915 /* Find the output section that corresponds to the isection's sh_info link. */
12916 if (isection->sh_info == 0
12917 || isection->sh_info >= elf_numsections (ibfd))
12918 {
12919 _bfd_error_handler
12920 /* xgettext:c-format */
12921 (_("%pB(%pA): info section index is invalid"),
12922 obfd, osec);
12923 bfd_set_error (bfd_error_bad_value);
12924 return false;
12925 }
12926
12927 isection = elf_elfsections (ibfd)[isection->sh_info];
12928
12929 if (isection == NULL
12930 || isection->bfd_section == NULL
12931 || isection->bfd_section->output_section == NULL)
12932 {
12933 _bfd_error_handler
12934 /* xgettext:c-format */
12935 (_("%pB(%pA): info section index cannot be set because the section is not in the output"),
12936 obfd, osec);
12937 bfd_set_error (bfd_error_bad_value);
12938 return false;
12939 }
12940
12941 esd = elf_section_data (isection->bfd_section->output_section);
12942 BFD_ASSERT (esd != NULL);
12943 osection->sh_info = esd->this_idx;
12944 esd->has_secondary_relocs = true;
12945 #if DEBUG_SECONDARY_RELOCS
12946 fprintf (stderr, "update header of %s, sh_link = %u, sh_info = %u\n",
12947 osec->name, osection->sh_link, osection->sh_info);
12948 fprintf (stderr, "mark section %s as having secondary relocs\n",
12949 bfd_section_name (isection->bfd_section->output_section));
12950 #endif
12951
12952 return true;
12953 }
12954
12955 /* Write out a secondary reloc section.
12956
12957 FIXME: Currently this function can result in a serious performance penalty
12958 for files with secondary relocs and lots of sections. The proper way to
12959 fix this is for _bfd_elf_copy_special_section_fields() to chain secondary
12960 relocs together and then to have this function just walk that chain. */
12961
12962 bool
12963 _bfd_elf_write_secondary_reloc_section (bfd *abfd, asection *sec)
12964 {
12965 const struct elf_backend_data * const ebd = get_elf_backend_data (abfd);
12966 bfd_vma addr_offset;
12967 asection * relsec;
12968 bfd_vma (*r_info) (bfd_vma, bfd_vma);
12969 bool result = true;
12970
12971 if (sec == NULL)
12972 return false;
12973
12974 #if BFD_DEFAULT_TARGET_SIZE > 32
12975 if (bfd_arch_bits_per_address (abfd) != 32)
12976 r_info = elf64_r_info;
12977 else
12978 #endif
12979 r_info = elf32_r_info;
12980
12981 /* The address of an ELF reloc is section relative for an object
12982 file, and absolute for an executable file or shared library.
12983 The address of a BFD reloc is always section relative. */
12984 addr_offset = 0;
12985 if ((abfd->flags & (EXEC_P | DYNAMIC)) != 0)
12986 addr_offset = sec->vma;
12987
12988 /* Discover if there are any secondary reloc sections
12989 associated with SEC. */
12990 for (relsec = abfd->sections; relsec != NULL; relsec = relsec->next)
12991 {
12992 const struct bfd_elf_section_data * const esd = elf_section_data (relsec);
12993 Elf_Internal_Shdr * const hdr = (Elf_Internal_Shdr *) & esd->this_hdr;
12994
12995 if (hdr->sh_type == SHT_RELA
12996 && hdr->sh_info == (unsigned) elf_section_data (sec)->this_idx)
12997 {
12998 asymbol * last_sym;
12999 int last_sym_idx;
13000 unsigned int reloc_count;
13001 unsigned int idx;
13002 unsigned int entsize;
13003 arelent * src_irel;
13004 bfd_byte * dst_rela;
13005
13006 if (hdr->contents != NULL)
13007 {
13008 _bfd_error_handler
13009 /* xgettext:c-format */
13010 (_("%pB(%pA): error: secondary reloc section processed twice"),
13011 abfd, relsec);
13012 bfd_set_error (bfd_error_bad_value);
13013 result = false;
13014 continue;
13015 }
13016
13017 entsize = hdr->sh_entsize;
13018 if (entsize == 0)
13019 {
13020 _bfd_error_handler
13021 /* xgettext:c-format */
13022 (_("%pB(%pA): error: secondary reloc section has zero sized entries"),
13023 abfd, relsec);
13024 bfd_set_error (bfd_error_bad_value);
13025 result = false;
13026 continue;
13027 }
13028 else if (entsize != ebd->s->sizeof_rel
13029 && entsize != ebd->s->sizeof_rela)
13030 {
13031 _bfd_error_handler
13032 /* xgettext:c-format */
13033 (_("%pB(%pA): error: secondary reloc section has non-standard sized entries"),
13034 abfd, relsec);
13035 bfd_set_error (bfd_error_bad_value);
13036 result = false;
13037 continue;
13038 }
13039
13040 reloc_count = hdr->sh_size / entsize;
13041 if (reloc_count <= 0)
13042 {
13043 _bfd_error_handler
13044 /* xgettext:c-format */
13045 (_("%pB(%pA): error: secondary reloc section is empty!"),
13046 abfd, relsec);
13047 bfd_set_error (bfd_error_bad_value);
13048 result = false;
13049 continue;
13050 }
13051
13052 hdr->contents = bfd_alloc (abfd, hdr->sh_size);
13053 if (hdr->contents == NULL)
13054 continue;
13055
13056 #if DEBUG_SECONDARY_RELOCS
13057 fprintf (stderr, "write %u secondary relocs for %s from %s\n",
13058 reloc_count, sec->name, relsec->name);
13059 #endif
13060 last_sym = NULL;
13061 last_sym_idx = 0;
13062 dst_rela = hdr->contents;
13063 src_irel = (arelent *) esd->sec_info;
13064 if (src_irel == NULL)
13065 {
13066 _bfd_error_handler
13067 /* xgettext:c-format */
13068 (_("%pB(%pA): error: internal relocs missing for secondary reloc section"),
13069 abfd, relsec);
13070 bfd_set_error (bfd_error_bad_value);
13071 result = false;
13072 continue;
13073 }
13074
13075 for (idx = 0; idx < reloc_count; idx++, dst_rela += entsize)
13076 {
13077 Elf_Internal_Rela src_rela;
13078 arelent *ptr;
13079 asymbol *sym;
13080 int n;
13081
13082 ptr = src_irel + idx;
13083 if (ptr == NULL)
13084 {
13085 _bfd_error_handler
13086 /* xgettext:c-format */
13087 (_("%pB(%pA): error: reloc table entry %u is empty"),
13088 abfd, relsec, idx);
13089 bfd_set_error (bfd_error_bad_value);
13090 result = false;
13091 break;
13092 }
13093
13094 if (ptr->sym_ptr_ptr == NULL)
13095 {
13096 /* FIXME: Is this an error ? */
13097 n = 0;
13098 }
13099 else
13100 {
13101 sym = *ptr->sym_ptr_ptr;
13102
13103 if (sym == last_sym)
13104 n = last_sym_idx;
13105 else
13106 {
13107 n = _bfd_elf_symbol_from_bfd_symbol (abfd, & sym);
13108 if (n < 0)
13109 {
13110 _bfd_error_handler
13111 /* xgettext:c-format */
13112 (_("%pB(%pA): error: secondary reloc %u references a missing symbol"),
13113 abfd, relsec, idx);
13114 bfd_set_error (bfd_error_bad_value);
13115 result = false;
13116 n = 0;
13117 }
13118
13119 last_sym = sym;
13120 last_sym_idx = n;
13121 }
13122
13123 if (sym->the_bfd != NULL
13124 && sym->the_bfd->xvec != abfd->xvec
13125 && ! _bfd_elf_validate_reloc (abfd, ptr))
13126 {
13127 _bfd_error_handler
13128 /* xgettext:c-format */
13129 (_("%pB(%pA): error: secondary reloc %u references a deleted symbol"),
13130 abfd, relsec, idx);
13131 bfd_set_error (bfd_error_bad_value);
13132 result = false;
13133 n = 0;
13134 }
13135 }
13136
13137 src_rela.r_offset = ptr->address + addr_offset;
13138 if (ptr->howto == NULL)
13139 {
13140 _bfd_error_handler
13141 /* xgettext:c-format */
13142 (_("%pB(%pA): error: secondary reloc %u is of an unknown type"),
13143 abfd, relsec, idx);
13144 bfd_set_error (bfd_error_bad_value);
13145 result = false;
13146 src_rela.r_info = r_info (0, 0);
13147 }
13148 else
13149 src_rela.r_info = r_info (n, ptr->howto->type);
13150 src_rela.r_addend = ptr->addend;
13151
13152 if (entsize == ebd->s->sizeof_rel)
13153 ebd->s->swap_reloc_out (abfd, &src_rela, dst_rela);
13154 else /* entsize == ebd->s->sizeof_rela */
13155 ebd->s->swap_reloca_out (abfd, &src_rela, dst_rela);
13156 }
13157 }
13158 }
13159
13160 return result;
13161 }
This page took 0.344593 seconds and 4 git commands to generate.