Automatic date update in version.in
[deliverable/binutils-gdb.git] / bfd / elf.c
1 /* ELF executable support for BFD.
2
3 Copyright (C) 1993-2016 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 "bfd.h"
39 #include "bfdlink.h"
40 #include "libbfd.h"
41 #define ARCH_SIZE 0
42 #include "elf-bfd.h"
43 #include "libiberty.h"
44 #include "safe-ctype.h"
45 #include "elf-linux-core.h"
46
47 #ifdef CORE_HEADER
48 #include CORE_HEADER
49 #endif
50
51 static int elf_sort_sections (const void *, const void *);
52 static bfd_boolean assign_file_positions_except_relocs (bfd *, struct bfd_link_info *);
53 static bfd_boolean prep_headers (bfd *);
54 static bfd_boolean swap_out_syms (bfd *, struct elf_strtab_hash **, int) ;
55 static bfd_boolean elf_read_notes (bfd *, file_ptr, bfd_size_type) ;
56 static bfd_boolean elf_parse_notes (bfd *abfd, char *buf, size_t size,
57 file_ptr offset);
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 bfd_boolean
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 bfd_boolean
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 bfd_boolean
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 static 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_byte *) bfd_alloc (abfd, shstrtabsize + 1)) == NULL)
302 shstrtab = NULL;
303 else if (bfd_bread (shstrtab, shstrtabsize, abfd) != shstrtabsize)
304 {
305 if (bfd_get_error () != bfd_error_system_call)
306 bfd_set_error (bfd_error_file_truncated);
307 bfd_release (abfd, shstrtab);
308 shstrtab = NULL;
309 /* Once we've failed to read it, make sure we don't keep
310 trying. Otherwise, we'll keep allocating space for
311 the string table over and over. */
312 i_shdrp[shindex]->sh_size = 0;
313 }
314 else
315 shstrtab[shstrtabsize] = '\0';
316 i_shdrp[shindex]->contents = shstrtab;
317 }
318 return (char *) shstrtab;
319 }
320
321 char *
322 bfd_elf_string_from_elf_section (bfd *abfd,
323 unsigned int shindex,
324 unsigned int strindex)
325 {
326 Elf_Internal_Shdr *hdr;
327
328 if (strindex == 0)
329 return "";
330
331 if (elf_elfsections (abfd) == NULL || shindex >= elf_numsections (abfd))
332 return NULL;
333
334 hdr = elf_elfsections (abfd)[shindex];
335
336 if (hdr->contents == NULL)
337 {
338 if (hdr->sh_type != SHT_STRTAB && hdr->sh_type < SHT_LOOS)
339 {
340 /* PR 17512: file: f057ec89. */
341 _bfd_error_handler (_("%B: attempt to load strings from a non-string section (number %d)"),
342 abfd, shindex);
343 return NULL;
344 }
345
346 if (bfd_elf_get_str_section (abfd, shindex) == NULL)
347 return NULL;
348 }
349
350 if (strindex >= hdr->sh_size)
351 {
352 unsigned int shstrndx = elf_elfheader(abfd)->e_shstrndx;
353 (*_bfd_error_handler)
354 (_("%B: invalid string offset %u >= %lu for section `%s'"),
355 abfd, strindex, (unsigned long) hdr->sh_size,
356 (shindex == shstrndx && strindex == hdr->sh_name
357 ? ".shstrtab"
358 : bfd_elf_string_from_elf_section (abfd, shstrndx, hdr->sh_name)));
359 return NULL;
360 }
361
362 return ((char *) hdr->contents) + strindex;
363 }
364
365 /* Read and convert symbols to internal format.
366 SYMCOUNT specifies the number of symbols to read, starting from
367 symbol SYMOFFSET. If any of INTSYM_BUF, EXTSYM_BUF or EXTSHNDX_BUF
368 are non-NULL, they are used to store the internal symbols, external
369 symbols, and symbol section index extensions, respectively.
370 Returns a pointer to the internal symbol buffer (malloced if necessary)
371 or NULL if there were no symbols or some kind of problem. */
372
373 Elf_Internal_Sym *
374 bfd_elf_get_elf_syms (bfd *ibfd,
375 Elf_Internal_Shdr *symtab_hdr,
376 size_t symcount,
377 size_t symoffset,
378 Elf_Internal_Sym *intsym_buf,
379 void *extsym_buf,
380 Elf_External_Sym_Shndx *extshndx_buf)
381 {
382 Elf_Internal_Shdr *shndx_hdr;
383 void *alloc_ext;
384 const bfd_byte *esym;
385 Elf_External_Sym_Shndx *alloc_extshndx;
386 Elf_External_Sym_Shndx *shndx;
387 Elf_Internal_Sym *alloc_intsym;
388 Elf_Internal_Sym *isym;
389 Elf_Internal_Sym *isymend;
390 const struct elf_backend_data *bed;
391 size_t extsym_size;
392 bfd_size_type amt;
393 file_ptr pos;
394
395 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour)
396 abort ();
397
398 if (symcount == 0)
399 return intsym_buf;
400
401 /* Normal syms might have section extension entries. */
402 shndx_hdr = NULL;
403 if (elf_symtab_shndx_list (ibfd) != NULL)
404 {
405 elf_section_list * entry;
406 Elf_Internal_Shdr **sections = elf_elfsections (ibfd);
407
408 /* Find an index section that is linked to this symtab section. */
409 for (entry = elf_symtab_shndx_list (ibfd); entry != NULL; entry = entry->next)
410 {
411 /* PR 20063. */
412 if (entry->hdr.sh_link >= elf_numsections (ibfd))
413 continue;
414
415 if (sections[entry->hdr.sh_link] == symtab_hdr)
416 {
417 shndx_hdr = & entry->hdr;
418 break;
419 };
420 }
421
422 if (shndx_hdr == NULL)
423 {
424 if (symtab_hdr == & elf_symtab_hdr (ibfd))
425 /* Not really accurate, but this was how the old code used to work. */
426 shndx_hdr = & elf_symtab_shndx_list (ibfd)->hdr;
427 /* Otherwise we do nothing. The assumption is that
428 the index table will not be needed. */
429 }
430 }
431
432 /* Read the symbols. */
433 alloc_ext = NULL;
434 alloc_extshndx = NULL;
435 alloc_intsym = NULL;
436 bed = get_elf_backend_data (ibfd);
437 extsym_size = bed->s->sizeof_sym;
438 amt = symcount * extsym_size;
439 pos = symtab_hdr->sh_offset + symoffset * extsym_size;
440 if (extsym_buf == NULL)
441 {
442 alloc_ext = bfd_malloc2 (symcount, extsym_size);
443 extsym_buf = alloc_ext;
444 }
445 if (extsym_buf == NULL
446 || bfd_seek (ibfd, pos, SEEK_SET) != 0
447 || bfd_bread (extsym_buf, amt, ibfd) != amt)
448 {
449 intsym_buf = NULL;
450 goto out;
451 }
452
453 if (shndx_hdr == NULL || shndx_hdr->sh_size == 0)
454 extshndx_buf = NULL;
455 else
456 {
457 amt = symcount * sizeof (Elf_External_Sym_Shndx);
458 pos = shndx_hdr->sh_offset + symoffset * sizeof (Elf_External_Sym_Shndx);
459 if (extshndx_buf == NULL)
460 {
461 alloc_extshndx = (Elf_External_Sym_Shndx *)
462 bfd_malloc2 (symcount, sizeof (Elf_External_Sym_Shndx));
463 extshndx_buf = alloc_extshndx;
464 }
465 if (extshndx_buf == NULL
466 || bfd_seek (ibfd, pos, SEEK_SET) != 0
467 || bfd_bread (extshndx_buf, amt, ibfd) != amt)
468 {
469 intsym_buf = NULL;
470 goto out;
471 }
472 }
473
474 if (intsym_buf == NULL)
475 {
476 alloc_intsym = (Elf_Internal_Sym *)
477 bfd_malloc2 (symcount, sizeof (Elf_Internal_Sym));
478 intsym_buf = alloc_intsym;
479 if (intsym_buf == NULL)
480 goto out;
481 }
482
483 /* Convert the symbols to internal form. */
484 isymend = intsym_buf + symcount;
485 for (esym = (const bfd_byte *) extsym_buf, isym = intsym_buf,
486 shndx = extshndx_buf;
487 isym < isymend;
488 esym += extsym_size, isym++, shndx = shndx != NULL ? shndx + 1 : NULL)
489 if (!(*bed->s->swap_symbol_in) (ibfd, esym, shndx, isym))
490 {
491 symoffset += (esym - (bfd_byte *) extsym_buf) / extsym_size;
492 (*_bfd_error_handler) (_("%B symbol number %lu references "
493 "nonexistent SHT_SYMTAB_SHNDX section"),
494 ibfd, (unsigned long) symoffset);
495 if (alloc_intsym != NULL)
496 free (alloc_intsym);
497 intsym_buf = NULL;
498 goto out;
499 }
500
501 out:
502 if (alloc_ext != NULL)
503 free (alloc_ext);
504 if (alloc_extshndx != NULL)
505 free (alloc_extshndx);
506
507 return intsym_buf;
508 }
509
510 /* Look up a symbol name. */
511 const char *
512 bfd_elf_sym_name (bfd *abfd,
513 Elf_Internal_Shdr *symtab_hdr,
514 Elf_Internal_Sym *isym,
515 asection *sym_sec)
516 {
517 const char *name;
518 unsigned int iname = isym->st_name;
519 unsigned int shindex = symtab_hdr->sh_link;
520
521 if (iname == 0 && ELF_ST_TYPE (isym->st_info) == STT_SECTION
522 /* Check for a bogus st_shndx to avoid crashing. */
523 && isym->st_shndx < elf_numsections (abfd))
524 {
525 iname = elf_elfsections (abfd)[isym->st_shndx]->sh_name;
526 shindex = elf_elfheader (abfd)->e_shstrndx;
527 }
528
529 name = bfd_elf_string_from_elf_section (abfd, shindex, iname);
530 if (name == NULL)
531 name = "(null)";
532 else if (sym_sec && *name == '\0')
533 name = bfd_section_name (abfd, sym_sec);
534
535 return name;
536 }
537
538 /* Elf_Internal_Shdr->contents is an array of these for SHT_GROUP
539 sections. The first element is the flags, the rest are section
540 pointers. */
541
542 typedef union elf_internal_group {
543 Elf_Internal_Shdr *shdr;
544 unsigned int flags;
545 } Elf_Internal_Group;
546
547 /* Return the name of the group signature symbol. Why isn't the
548 signature just a string? */
549
550 static const char *
551 group_signature (bfd *abfd, Elf_Internal_Shdr *ghdr)
552 {
553 Elf_Internal_Shdr *hdr;
554 unsigned char esym[sizeof (Elf64_External_Sym)];
555 Elf_External_Sym_Shndx eshndx;
556 Elf_Internal_Sym isym;
557
558 /* First we need to ensure the symbol table is available. Make sure
559 that it is a symbol table section. */
560 if (ghdr->sh_link >= elf_numsections (abfd))
561 return NULL;
562 hdr = elf_elfsections (abfd) [ghdr->sh_link];
563 if (hdr->sh_type != SHT_SYMTAB
564 || ! bfd_section_from_shdr (abfd, ghdr->sh_link))
565 return NULL;
566
567 /* Go read the symbol. */
568 hdr = &elf_tdata (abfd)->symtab_hdr;
569 if (bfd_elf_get_elf_syms (abfd, hdr, 1, ghdr->sh_info,
570 &isym, esym, &eshndx) == NULL)
571 return NULL;
572
573 return bfd_elf_sym_name (abfd, hdr, &isym, NULL);
574 }
575
576 /* Set next_in_group list pointer, and group name for NEWSECT. */
577
578 static bfd_boolean
579 setup_group (bfd *abfd, Elf_Internal_Shdr *hdr, asection *newsect)
580 {
581 unsigned int num_group = elf_tdata (abfd)->num_group;
582
583 /* If num_group is zero, read in all SHT_GROUP sections. The count
584 is set to -1 if there are no SHT_GROUP sections. */
585 if (num_group == 0)
586 {
587 unsigned int i, shnum;
588
589 /* First count the number of groups. If we have a SHT_GROUP
590 section with just a flag word (ie. sh_size is 4), ignore it. */
591 shnum = elf_numsections (abfd);
592 num_group = 0;
593
594 #define IS_VALID_GROUP_SECTION_HEADER(shdr, minsize) \
595 ( (shdr)->sh_type == SHT_GROUP \
596 && (shdr)->sh_size >= minsize \
597 && (shdr)->sh_entsize == GRP_ENTRY_SIZE \
598 && ((shdr)->sh_size % GRP_ENTRY_SIZE) == 0)
599
600 for (i = 0; i < shnum; i++)
601 {
602 Elf_Internal_Shdr *shdr = elf_elfsections (abfd)[i];
603
604 if (IS_VALID_GROUP_SECTION_HEADER (shdr, 2 * GRP_ENTRY_SIZE))
605 num_group += 1;
606 }
607
608 if (num_group == 0)
609 {
610 num_group = (unsigned) -1;
611 elf_tdata (abfd)->num_group = num_group;
612 }
613 else
614 {
615 /* We keep a list of elf section headers for group sections,
616 so we can find them quickly. */
617 bfd_size_type amt;
618
619 elf_tdata (abfd)->num_group = num_group;
620 elf_tdata (abfd)->group_sect_ptr = (Elf_Internal_Shdr **)
621 bfd_alloc2 (abfd, num_group, sizeof (Elf_Internal_Shdr *));
622 if (elf_tdata (abfd)->group_sect_ptr == NULL)
623 return FALSE;
624
625 num_group = 0;
626 for (i = 0; i < shnum; i++)
627 {
628 Elf_Internal_Shdr *shdr = elf_elfsections (abfd)[i];
629
630 if (IS_VALID_GROUP_SECTION_HEADER (shdr, 2 * GRP_ENTRY_SIZE))
631 {
632 unsigned char *src;
633 Elf_Internal_Group *dest;
634
635 /* Add to list of sections. */
636 elf_tdata (abfd)->group_sect_ptr[num_group] = shdr;
637 num_group += 1;
638
639 /* Read the raw contents. */
640 BFD_ASSERT (sizeof (*dest) >= 4);
641 amt = shdr->sh_size * sizeof (*dest) / 4;
642 shdr->contents = (unsigned char *)
643 bfd_alloc2 (abfd, shdr->sh_size, sizeof (*dest) / 4);
644 /* PR binutils/4110: Handle corrupt group headers. */
645 if (shdr->contents == NULL)
646 {
647 _bfd_error_handler
648 (_("%B: corrupt size field in group section header: 0x%lx"), abfd, shdr->sh_size);
649 bfd_set_error (bfd_error_bad_value);
650 -- num_group;
651 continue;
652 }
653
654 memset (shdr->contents, 0, amt);
655
656 if (bfd_seek (abfd, shdr->sh_offset, SEEK_SET) != 0
657 || (bfd_bread (shdr->contents, shdr->sh_size, abfd)
658 != shdr->sh_size))
659 {
660 _bfd_error_handler
661 (_("%B: invalid size field in group section header: 0x%lx"), abfd, shdr->sh_size);
662 bfd_set_error (bfd_error_bad_value);
663 -- num_group;
664 /* PR 17510: If the group contents are even partially
665 corrupt, do not allow any of the contents to be used. */
666 memset (shdr->contents, 0, amt);
667 continue;
668 }
669
670 /* Translate raw contents, a flag word followed by an
671 array of elf section indices all in target byte order,
672 to the flag word followed by an array of elf section
673 pointers. */
674 src = shdr->contents + shdr->sh_size;
675 dest = (Elf_Internal_Group *) (shdr->contents + amt);
676
677 while (1)
678 {
679 unsigned int idx;
680
681 src -= 4;
682 --dest;
683 idx = H_GET_32 (abfd, src);
684 if (src == shdr->contents)
685 {
686 dest->flags = idx;
687 if (shdr->bfd_section != NULL && (idx & GRP_COMDAT))
688 shdr->bfd_section->flags
689 |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
690 break;
691 }
692 if (idx >= shnum)
693 {
694 ((*_bfd_error_handler)
695 (_("%B: invalid SHT_GROUP entry"), abfd));
696 idx = 0;
697 }
698 dest->shdr = elf_elfsections (abfd)[idx];
699 }
700 }
701 }
702
703 /* PR 17510: Corrupt binaries might contain invalid groups. */
704 if (num_group != (unsigned) elf_tdata (abfd)->num_group)
705 {
706 elf_tdata (abfd)->num_group = num_group;
707
708 /* If all groups are invalid then fail. */
709 if (num_group == 0)
710 {
711 elf_tdata (abfd)->group_sect_ptr = NULL;
712 elf_tdata (abfd)->num_group = num_group = -1;
713 (*_bfd_error_handler) (_("%B: no valid group sections found"), abfd);
714 bfd_set_error (bfd_error_bad_value);
715 }
716 }
717 }
718 }
719
720 if (num_group != (unsigned) -1)
721 {
722 unsigned int i;
723
724 for (i = 0; i < num_group; i++)
725 {
726 Elf_Internal_Shdr *shdr = elf_tdata (abfd)->group_sect_ptr[i];
727 Elf_Internal_Group *idx = (Elf_Internal_Group *) shdr->contents;
728 unsigned int n_elt = shdr->sh_size / 4;
729
730 /* Look through this group's sections to see if current
731 section is a member. */
732 while (--n_elt != 0)
733 if ((++idx)->shdr == hdr)
734 {
735 asection *s = NULL;
736
737 /* We are a member of this group. Go looking through
738 other members to see if any others are linked via
739 next_in_group. */
740 idx = (Elf_Internal_Group *) shdr->contents;
741 n_elt = shdr->sh_size / 4;
742 while (--n_elt != 0)
743 if ((s = (++idx)->shdr->bfd_section) != NULL
744 && elf_next_in_group (s) != NULL)
745 break;
746 if (n_elt != 0)
747 {
748 /* Snarf the group name from other member, and
749 insert current section in circular list. */
750 elf_group_name (newsect) = elf_group_name (s);
751 elf_next_in_group (newsect) = elf_next_in_group (s);
752 elf_next_in_group (s) = newsect;
753 }
754 else
755 {
756 const char *gname;
757
758 gname = group_signature (abfd, shdr);
759 if (gname == NULL)
760 return FALSE;
761 elf_group_name (newsect) = gname;
762
763 /* Start a circular list with one element. */
764 elf_next_in_group (newsect) = newsect;
765 }
766
767 /* If the group section has been created, point to the
768 new member. */
769 if (shdr->bfd_section != NULL)
770 elf_next_in_group (shdr->bfd_section) = newsect;
771
772 i = num_group - 1;
773 break;
774 }
775 }
776 }
777
778 if (elf_group_name (newsect) == NULL)
779 {
780 (*_bfd_error_handler) (_("%B: no group info for section %A"),
781 abfd, newsect);
782 return FALSE;
783 }
784 return TRUE;
785 }
786
787 bfd_boolean
788 _bfd_elf_setup_sections (bfd *abfd)
789 {
790 unsigned int i;
791 unsigned int num_group = elf_tdata (abfd)->num_group;
792 bfd_boolean result = TRUE;
793 asection *s;
794
795 /* Process SHF_LINK_ORDER. */
796 for (s = abfd->sections; s != NULL; s = s->next)
797 {
798 Elf_Internal_Shdr *this_hdr = &elf_section_data (s)->this_hdr;
799 if ((this_hdr->sh_flags & SHF_LINK_ORDER) != 0)
800 {
801 unsigned int elfsec = this_hdr->sh_link;
802 /* FIXME: The old Intel compiler and old strip/objcopy may
803 not set the sh_link or sh_info fields. Hence we could
804 get the situation where elfsec is 0. */
805 if (elfsec == 0)
806 {
807 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
808 if (bed->link_order_error_handler)
809 bed->link_order_error_handler
810 (_("%B: warning: sh_link not set for section `%A'"),
811 abfd, s);
812 }
813 else
814 {
815 asection *linksec = NULL;
816
817 if (elfsec < elf_numsections (abfd))
818 {
819 this_hdr = elf_elfsections (abfd)[elfsec];
820 linksec = this_hdr->bfd_section;
821 }
822
823 /* PR 1991, 2008:
824 Some strip/objcopy may leave an incorrect value in
825 sh_link. We don't want to proceed. */
826 if (linksec == NULL)
827 {
828 (*_bfd_error_handler)
829 (_("%B: sh_link [%d] in section `%A' is incorrect"),
830 s->owner, s, elfsec);
831 result = FALSE;
832 }
833
834 elf_linked_to_section (s) = linksec;
835 }
836 }
837 }
838
839 /* Process section groups. */
840 if (num_group == (unsigned) -1)
841 return result;
842
843 for (i = 0; i < num_group; i++)
844 {
845 Elf_Internal_Shdr *shdr = elf_tdata (abfd)->group_sect_ptr[i];
846 Elf_Internal_Group *idx;
847 unsigned int n_elt;
848
849 /* PR binutils/18758: Beware of corrupt binaries with invalid group data. */
850 if (shdr == NULL || shdr->bfd_section == NULL || shdr->contents == NULL)
851 {
852 (*_bfd_error_handler)
853 (_("%B: section group entry number %u is corrupt"),
854 abfd, i);
855 result = FALSE;
856 continue;
857 }
858
859 idx = (Elf_Internal_Group *) shdr->contents;
860 n_elt = shdr->sh_size / 4;
861
862 while (--n_elt != 0)
863 if ((++idx)->shdr->bfd_section)
864 elf_sec_group (idx->shdr->bfd_section) = shdr->bfd_section;
865 else if (idx->shdr->sh_type == SHT_RELA
866 || idx->shdr->sh_type == SHT_REL)
867 /* We won't include relocation sections in section groups in
868 output object files. We adjust the group section size here
869 so that relocatable link will work correctly when
870 relocation sections are in section group in input object
871 files. */
872 shdr->bfd_section->size -= 4;
873 else
874 {
875 /* There are some unknown sections in the group. */
876 (*_bfd_error_handler)
877 (_("%B: unknown [%d] section `%s' in group [%s]"),
878 abfd,
879 (unsigned int) idx->shdr->sh_type,
880 bfd_elf_string_from_elf_section (abfd,
881 (elf_elfheader (abfd)
882 ->e_shstrndx),
883 idx->shdr->sh_name),
884 shdr->bfd_section->name);
885 result = FALSE;
886 }
887 }
888 return result;
889 }
890
891 bfd_boolean
892 bfd_elf_is_group_section (bfd *abfd ATTRIBUTE_UNUSED, const asection *sec)
893 {
894 return elf_next_in_group (sec) != NULL;
895 }
896
897 static char *
898 convert_debug_to_zdebug (bfd *abfd, const char *name)
899 {
900 unsigned int len = strlen (name);
901 char *new_name = bfd_alloc (abfd, len + 2);
902 if (new_name == NULL)
903 return NULL;
904 new_name[0] = '.';
905 new_name[1] = 'z';
906 memcpy (new_name + 2, name + 1, len);
907 return new_name;
908 }
909
910 static char *
911 convert_zdebug_to_debug (bfd *abfd, const char *name)
912 {
913 unsigned int len = strlen (name);
914 char *new_name = bfd_alloc (abfd, len);
915 if (new_name == NULL)
916 return NULL;
917 new_name[0] = '.';
918 memcpy (new_name + 1, name + 2, len - 1);
919 return new_name;
920 }
921
922 /* Make a BFD section from an ELF section. We store a pointer to the
923 BFD section in the bfd_section field of the header. */
924
925 bfd_boolean
926 _bfd_elf_make_section_from_shdr (bfd *abfd,
927 Elf_Internal_Shdr *hdr,
928 const char *name,
929 int shindex)
930 {
931 asection *newsect;
932 flagword flags;
933 const struct elf_backend_data *bed;
934
935 if (hdr->bfd_section != NULL)
936 return TRUE;
937
938 newsect = bfd_make_section_anyway (abfd, name);
939 if (newsect == NULL)
940 return FALSE;
941
942 hdr->bfd_section = newsect;
943 elf_section_data (newsect)->this_hdr = *hdr;
944 elf_section_data (newsect)->this_idx = shindex;
945
946 /* Always use the real type/flags. */
947 elf_section_type (newsect) = hdr->sh_type;
948 elf_section_flags (newsect) = hdr->sh_flags;
949
950 newsect->filepos = hdr->sh_offset;
951
952 if (! bfd_set_section_vma (abfd, newsect, hdr->sh_addr)
953 || ! bfd_set_section_size (abfd, newsect, hdr->sh_size)
954 || ! bfd_set_section_alignment (abfd, newsect,
955 bfd_log2 (hdr->sh_addralign)))
956 return FALSE;
957
958 flags = SEC_NO_FLAGS;
959 if (hdr->sh_type != SHT_NOBITS)
960 flags |= SEC_HAS_CONTENTS;
961 if (hdr->sh_type == SHT_GROUP)
962 flags |= SEC_GROUP | SEC_EXCLUDE;
963 if ((hdr->sh_flags & SHF_ALLOC) != 0)
964 {
965 flags |= SEC_ALLOC;
966 if (hdr->sh_type != SHT_NOBITS)
967 flags |= SEC_LOAD;
968 }
969 if ((hdr->sh_flags & SHF_WRITE) == 0)
970 flags |= SEC_READONLY;
971 if ((hdr->sh_flags & SHF_EXECINSTR) != 0)
972 flags |= SEC_CODE;
973 else if ((flags & SEC_LOAD) != 0)
974 flags |= SEC_DATA;
975 if ((hdr->sh_flags & SHF_MERGE) != 0)
976 {
977 flags |= SEC_MERGE;
978 newsect->entsize = hdr->sh_entsize;
979 }
980 if ((hdr->sh_flags & SHF_STRINGS) != 0)
981 flags |= SEC_STRINGS;
982 if (hdr->sh_flags & SHF_GROUP)
983 if (!setup_group (abfd, hdr, newsect))
984 return FALSE;
985 if ((hdr->sh_flags & SHF_TLS) != 0)
986 flags |= SEC_THREAD_LOCAL;
987 if ((hdr->sh_flags & SHF_EXCLUDE) != 0)
988 flags |= SEC_EXCLUDE;
989
990 if ((flags & SEC_ALLOC) == 0)
991 {
992 /* The debugging sections appear to be recognized only by name,
993 not any sort of flag. Their SEC_ALLOC bits are cleared. */
994 if (name [0] == '.')
995 {
996 const char *p;
997 int n;
998 if (name[1] == 'd')
999 p = ".debug", n = 6;
1000 else if (name[1] == 'g' && name[2] == 'n')
1001 p = ".gnu.linkonce.wi.", n = 17;
1002 else if (name[1] == 'g' && name[2] == 'd')
1003 p = ".gdb_index", n = 11; /* yes we really do mean 11. */
1004 else if (name[1] == 'l')
1005 p = ".line", n = 5;
1006 else if (name[1] == 's')
1007 p = ".stab", n = 5;
1008 else if (name[1] == 'z')
1009 p = ".zdebug", n = 7;
1010 else
1011 p = NULL, n = 0;
1012 if (p != NULL && strncmp (name, p, n) == 0)
1013 flags |= SEC_DEBUGGING;
1014 }
1015 }
1016
1017 /* As a GNU extension, if the name begins with .gnu.linkonce, we
1018 only link a single copy of the section. This is used to support
1019 g++. g++ will emit each template expansion in its own section.
1020 The symbols will be defined as weak, so that multiple definitions
1021 are permitted. The GNU linker extension is to actually discard
1022 all but one of the sections. */
1023 if (CONST_STRNEQ (name, ".gnu.linkonce")
1024 && elf_next_in_group (newsect) == NULL)
1025 flags |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
1026
1027 bed = get_elf_backend_data (abfd);
1028 if (bed->elf_backend_section_flags)
1029 if (! bed->elf_backend_section_flags (&flags, hdr))
1030 return FALSE;
1031
1032 if (! bfd_set_section_flags (abfd, newsect, flags))
1033 return FALSE;
1034
1035 /* We do not parse the PT_NOTE segments as we are interested even in the
1036 separate debug info files which may have the segments offsets corrupted.
1037 PT_NOTEs from the core files are currently not parsed using BFD. */
1038 if (hdr->sh_type == SHT_NOTE)
1039 {
1040 bfd_byte *contents;
1041
1042 if (!bfd_malloc_and_get_section (abfd, newsect, &contents))
1043 return FALSE;
1044
1045 elf_parse_notes (abfd, (char *) contents, hdr->sh_size, -1);
1046 free (contents);
1047 }
1048
1049 if ((flags & SEC_ALLOC) != 0)
1050 {
1051 Elf_Internal_Phdr *phdr;
1052 unsigned int i, nload;
1053
1054 /* Some ELF linkers produce binaries with all the program header
1055 p_paddr fields zero. If we have such a binary with more than
1056 one PT_LOAD header, then leave the section lma equal to vma
1057 so that we don't create sections with overlapping lma. */
1058 phdr = elf_tdata (abfd)->phdr;
1059 for (nload = 0, i = 0; i < elf_elfheader (abfd)->e_phnum; i++, phdr++)
1060 if (phdr->p_paddr != 0)
1061 break;
1062 else if (phdr->p_type == PT_LOAD && phdr->p_memsz != 0)
1063 ++nload;
1064 if (i >= elf_elfheader (abfd)->e_phnum && nload > 1)
1065 return TRUE;
1066
1067 phdr = elf_tdata (abfd)->phdr;
1068 for (i = 0; i < elf_elfheader (abfd)->e_phnum; i++, phdr++)
1069 {
1070 if (((phdr->p_type == PT_LOAD
1071 && (hdr->sh_flags & SHF_TLS) == 0)
1072 || phdr->p_type == PT_TLS)
1073 && ELF_SECTION_IN_SEGMENT (hdr, phdr))
1074 {
1075 if ((flags & SEC_LOAD) == 0)
1076 newsect->lma = (phdr->p_paddr
1077 + hdr->sh_addr - phdr->p_vaddr);
1078 else
1079 /* We used to use the same adjustment for SEC_LOAD
1080 sections, but that doesn't work if the segment
1081 is packed with code from multiple VMAs.
1082 Instead we calculate the section LMA based on
1083 the segment LMA. It is assumed that the
1084 segment will contain sections with contiguous
1085 LMAs, even if the VMAs are not. */
1086 newsect->lma = (phdr->p_paddr
1087 + hdr->sh_offset - phdr->p_offset);
1088
1089 /* With contiguous segments, we can't tell from file
1090 offsets whether a section with zero size should
1091 be placed at the end of one segment or the
1092 beginning of the next. Decide based on vaddr. */
1093 if (hdr->sh_addr >= phdr->p_vaddr
1094 && (hdr->sh_addr + hdr->sh_size
1095 <= phdr->p_vaddr + phdr->p_memsz))
1096 break;
1097 }
1098 }
1099 }
1100
1101 /* Compress/decompress DWARF debug sections with names: .debug_* and
1102 .zdebug_*, after the section flags is set. */
1103 if ((flags & SEC_DEBUGGING)
1104 && ((name[1] == 'd' && name[6] == '_')
1105 || (name[1] == 'z' && name[7] == '_')))
1106 {
1107 enum { nothing, compress, decompress } action = nothing;
1108 int compression_header_size;
1109 bfd_size_type uncompressed_size;
1110 bfd_boolean compressed
1111 = bfd_is_section_compressed_with_header (abfd, newsect,
1112 &compression_header_size,
1113 &uncompressed_size);
1114
1115 if (compressed)
1116 {
1117 /* Compressed section. Check if we should decompress. */
1118 if ((abfd->flags & BFD_DECOMPRESS))
1119 action = decompress;
1120 }
1121
1122 /* Compress the uncompressed section or convert from/to .zdebug*
1123 section. Check if we should compress. */
1124 if (action == nothing)
1125 {
1126 if (newsect->size != 0
1127 && (abfd->flags & BFD_COMPRESS)
1128 && compression_header_size >= 0
1129 && uncompressed_size > 0
1130 && (!compressed
1131 || ((compression_header_size > 0)
1132 != ((abfd->flags & BFD_COMPRESS_GABI) != 0))))
1133 action = compress;
1134 else
1135 return TRUE;
1136 }
1137
1138 if (action == compress)
1139 {
1140 if (!bfd_init_section_compress_status (abfd, newsect))
1141 {
1142 (*_bfd_error_handler)
1143 (_("%B: unable to initialize compress status for section %s"),
1144 abfd, name);
1145 return FALSE;
1146 }
1147 }
1148 else
1149 {
1150 if (!bfd_init_section_decompress_status (abfd, newsect))
1151 {
1152 (*_bfd_error_handler)
1153 (_("%B: unable to initialize decompress status for section %s"),
1154 abfd, name);
1155 return FALSE;
1156 }
1157 }
1158
1159 if (abfd->is_linker_input)
1160 {
1161 if (name[1] == 'z'
1162 && (action == decompress
1163 || (action == compress
1164 && (abfd->flags & BFD_COMPRESS_GABI) != 0)))
1165 {
1166 /* Convert section name from .zdebug_* to .debug_* so
1167 that linker will consider this section as a debug
1168 section. */
1169 char *new_name = convert_zdebug_to_debug (abfd, name);
1170 if (new_name == NULL)
1171 return FALSE;
1172 bfd_rename_section (abfd, newsect, new_name);
1173 }
1174 }
1175 else
1176 /* For objdump, don't rename the section. For objcopy, delay
1177 section rename to elf_fake_sections. */
1178 newsect->flags |= SEC_ELF_RENAME;
1179 }
1180
1181 return TRUE;
1182 }
1183
1184 const char *const bfd_elf_section_type_names[] =
1185 {
1186 "SHT_NULL", "SHT_PROGBITS", "SHT_SYMTAB", "SHT_STRTAB",
1187 "SHT_RELA", "SHT_HASH", "SHT_DYNAMIC", "SHT_NOTE",
1188 "SHT_NOBITS", "SHT_REL", "SHT_SHLIB", "SHT_DYNSYM",
1189 };
1190
1191 /* ELF relocs are against symbols. If we are producing relocatable
1192 output, and the reloc is against an external symbol, and nothing
1193 has given us any additional addend, the resulting reloc will also
1194 be against the same symbol. In such a case, we don't want to
1195 change anything about the way the reloc is handled, since it will
1196 all be done at final link time. Rather than put special case code
1197 into bfd_perform_relocation, all the reloc types use this howto
1198 function. It just short circuits the reloc if producing
1199 relocatable output against an external symbol. */
1200
1201 bfd_reloc_status_type
1202 bfd_elf_generic_reloc (bfd *abfd ATTRIBUTE_UNUSED,
1203 arelent *reloc_entry,
1204 asymbol *symbol,
1205 void *data ATTRIBUTE_UNUSED,
1206 asection *input_section,
1207 bfd *output_bfd,
1208 char **error_message ATTRIBUTE_UNUSED)
1209 {
1210 if (output_bfd != NULL
1211 && (symbol->flags & BSF_SECTION_SYM) == 0
1212 && (! reloc_entry->howto->partial_inplace
1213 || reloc_entry->addend == 0))
1214 {
1215 reloc_entry->address += input_section->output_offset;
1216 return bfd_reloc_ok;
1217 }
1218
1219 return bfd_reloc_continue;
1220 }
1221 \f
1222 /* Returns TRUE if section A matches section B.
1223 Names, addresses and links may be different, but everything else
1224 should be the same. */
1225
1226 static bfd_boolean
1227 section_match (const Elf_Internal_Shdr * a,
1228 const Elf_Internal_Shdr * b)
1229 {
1230 return
1231 a->sh_type == b->sh_type
1232 && (a->sh_flags & ~ SHF_INFO_LINK)
1233 == (b->sh_flags & ~ SHF_INFO_LINK)
1234 && a->sh_addralign == b->sh_addralign
1235 && a->sh_size == b->sh_size
1236 && a->sh_entsize == b->sh_entsize
1237 /* FIXME: Check sh_addr ? */
1238 ;
1239 }
1240
1241 /* Find a section in OBFD that has the same characteristics
1242 as IHEADER. Return the index of this section or SHN_UNDEF if
1243 none can be found. Check's section HINT first, as this is likely
1244 to be the correct section. */
1245
1246 static unsigned int
1247 find_link (const bfd * obfd, const Elf_Internal_Shdr * iheader, const unsigned int hint)
1248 {
1249 Elf_Internal_Shdr ** oheaders = elf_elfsections (obfd);
1250 unsigned int i;
1251
1252 if (section_match (oheaders[hint], iheader))
1253 return hint;
1254
1255 for (i = 1; i < elf_numsections (obfd); i++)
1256 {
1257 Elf_Internal_Shdr * oheader = oheaders[i];
1258
1259 if (section_match (oheader, iheader))
1260 /* FIXME: Do we care if there is a potential for
1261 multiple matches ? */
1262 return i;
1263 }
1264
1265 return SHN_UNDEF;
1266 }
1267
1268 /* PR 19938: Attempt to set the ELF section header fields of an OS or
1269 Processor specific section, based upon a matching input section.
1270 Returns TRUE upon success, FALSE otherwise. */
1271
1272 static bfd_boolean
1273 copy_special_section_fields (const bfd *ibfd,
1274 bfd *obfd,
1275 const Elf_Internal_Shdr *iheader,
1276 Elf_Internal_Shdr *oheader,
1277 const unsigned int secnum)
1278 {
1279 const struct elf_backend_data *bed = get_elf_backend_data (obfd);
1280 const Elf_Internal_Shdr **iheaders = (const Elf_Internal_Shdr **) elf_elfsections (ibfd);
1281 bfd_boolean changed = FALSE;
1282 unsigned int sh_link;
1283
1284 if (oheader->sh_type == SHT_NOBITS)
1285 {
1286 /* This is a feature for objcopy --only-keep-debug:
1287 When a section's type is changed to NOBITS, we preserve
1288 the sh_link and sh_info fields so that they can be
1289 matched up with the original.
1290
1291 Note: Strictly speaking these assignments are wrong.
1292 The sh_link and sh_info fields should point to the
1293 relevent sections in the output BFD, which may not be in
1294 the same location as they were in the input BFD. But
1295 the whole point of this action is to preserve the
1296 original values of the sh_link and sh_info fields, so
1297 that they can be matched up with the section headers in
1298 the original file. So strictly speaking we may be
1299 creating an invalid ELF file, but it is only for a file
1300 that just contains debug info and only for sections
1301 without any contents. */
1302 if (oheader->sh_link == 0)
1303 oheader->sh_link = iheader->sh_link;
1304 if (oheader->sh_info == 0)
1305 oheader->sh_info = iheader->sh_info;
1306 return TRUE;
1307 }
1308
1309 /* Allow the target a chance to decide how these fields should be set. */
1310 if (bed->elf_backend_copy_special_section_fields != NULL
1311 && bed->elf_backend_copy_special_section_fields
1312 (ibfd, obfd, iheader, oheader))
1313 return TRUE;
1314
1315 /* We have an iheader which might match oheader, and which has non-zero
1316 sh_info and/or sh_link fields. Attempt to follow those links and find
1317 the section in the output bfd which corresponds to the linked section
1318 in the input bfd. */
1319 if (iheader->sh_link != SHN_UNDEF)
1320 {
1321 sh_link = find_link (obfd, iheaders[iheader->sh_link], iheader->sh_link);
1322 if (sh_link != SHN_UNDEF)
1323 {
1324 oheader->sh_link = sh_link;
1325 changed = TRUE;
1326 }
1327 else
1328 /* FIXME: Should we install iheader->sh_link
1329 if we could not find a match ? */
1330 (* _bfd_error_handler)
1331 (_("%B: Failed to find link section for section %d"), obfd, secnum);
1332 }
1333
1334 if (iheader->sh_info)
1335 {
1336 /* The sh_info field can hold arbitrary information, but if the
1337 SHF_LINK_INFO flag is set then it should be interpreted as a
1338 section index. */
1339 if (iheader->sh_flags & SHF_INFO_LINK)
1340 {
1341 sh_link = find_link (obfd, iheaders[iheader->sh_info],
1342 iheader->sh_info);
1343 if (sh_link != SHN_UNDEF)
1344 oheader->sh_flags |= SHF_INFO_LINK;
1345 }
1346 else
1347 /* No idea what it means - just copy it. */
1348 sh_link = iheader->sh_info;
1349
1350 if (sh_link != SHN_UNDEF)
1351 {
1352 oheader->sh_info = sh_link;
1353 changed = TRUE;
1354 }
1355 else
1356 (* _bfd_error_handler)
1357 (_("%B: Failed to find info section for section %d"), obfd, secnum);
1358 }
1359
1360 return changed;
1361 }
1362
1363 /* Copy the program header and other data from one object module to
1364 another. */
1365
1366 bfd_boolean
1367 _bfd_elf_copy_private_bfd_data (bfd *ibfd, bfd *obfd)
1368 {
1369 const Elf_Internal_Shdr **iheaders = (const Elf_Internal_Shdr **) elf_elfsections (ibfd);
1370 Elf_Internal_Shdr **oheaders = elf_elfsections (obfd);
1371 const struct elf_backend_data *bed;
1372 unsigned int i;
1373
1374 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
1375 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
1376 return TRUE;
1377
1378 if (!elf_flags_init (obfd))
1379 {
1380 elf_elfheader (obfd)->e_flags = elf_elfheader (ibfd)->e_flags;
1381 elf_flags_init (obfd) = TRUE;
1382 }
1383
1384 elf_gp (obfd) = elf_gp (ibfd);
1385
1386 /* Also copy the EI_OSABI field. */
1387 elf_elfheader (obfd)->e_ident[EI_OSABI] =
1388 elf_elfheader (ibfd)->e_ident[EI_OSABI];
1389
1390 /* If set, copy the EI_ABIVERSION field. */
1391 if (elf_elfheader (ibfd)->e_ident[EI_ABIVERSION])
1392 elf_elfheader (obfd)->e_ident[EI_ABIVERSION]
1393 = elf_elfheader (ibfd)->e_ident[EI_ABIVERSION];
1394
1395 /* Copy object attributes. */
1396 _bfd_elf_copy_obj_attributes (ibfd, obfd);
1397
1398 if (iheaders == NULL || oheaders == NULL)
1399 return TRUE;
1400
1401 bed = get_elf_backend_data (obfd);
1402
1403 /* Possibly copy other fields in the section header. */
1404 for (i = 1; i < elf_numsections (obfd); i++)
1405 {
1406 unsigned int j;
1407 Elf_Internal_Shdr * oheader = oheaders[i];
1408
1409 /* Ignore ordinary sections. SHT_NOBITS sections are considered however
1410 because of a special case need for generating separate debug info
1411 files. See below for more details. */
1412 if (oheader == NULL
1413 || (oheader->sh_type != SHT_NOBITS
1414 && oheader->sh_type < SHT_LOOS))
1415 continue;
1416
1417 /* Ignore empty sections, and sections whose
1418 fields have already been initialised. */
1419 if (oheader->sh_size == 0
1420 || (oheader->sh_info != 0 && oheader->sh_link != 0))
1421 continue;
1422
1423 /* Scan for the matching section in the input bfd.
1424 First we try for a direct mapping between the input and output sections. */
1425 for (j = 1; j < elf_numsections (ibfd); j++)
1426 {
1427 const Elf_Internal_Shdr * iheader = iheaders[j];
1428
1429 if (iheader == NULL)
1430 continue;
1431
1432 if (oheader->bfd_section != NULL
1433 && iheader->bfd_section != NULL
1434 && iheader->bfd_section->output_section != NULL
1435 && iheader->bfd_section->output_section == oheader->bfd_section)
1436 {
1437 /* We have found a connection from the input section to the
1438 output section. Attempt to copy the header fields. If
1439 this fails then do not try any further sections - there
1440 should only be a one-to-one mapping between input and output. */
1441 if (! copy_special_section_fields (ibfd, obfd, iheader, oheader, i))
1442 j = elf_numsections (ibfd);
1443 break;
1444 }
1445 }
1446
1447 if (j < elf_numsections (ibfd))
1448 continue;
1449
1450 /* That failed. So try to deduce the corresponding input section.
1451 Unfortunately we cannot compare names as the output string table
1452 is empty, so instead we check size, address and type. */
1453 for (j = 1; j < elf_numsections (ibfd); j++)
1454 {
1455 const Elf_Internal_Shdr * iheader = iheaders[j];
1456
1457 if (iheader == NULL)
1458 continue;
1459
1460 /* Try matching fields in the input section's header.
1461 Since --only-keep-debug turns all non-debug sections into
1462 SHT_NOBITS sections, the output SHT_NOBITS type matches any
1463 input type. */
1464 if ((oheader->sh_type == SHT_NOBITS
1465 || iheader->sh_type == oheader->sh_type)
1466 && (iheader->sh_flags & ~ SHF_INFO_LINK)
1467 == (oheader->sh_flags & ~ SHF_INFO_LINK)
1468 && iheader->sh_addralign == oheader->sh_addralign
1469 && iheader->sh_entsize == oheader->sh_entsize
1470 && iheader->sh_size == oheader->sh_size
1471 && iheader->sh_addr == oheader->sh_addr
1472 && (iheader->sh_info != oheader->sh_info
1473 || iheader->sh_link != oheader->sh_link))
1474 {
1475 if (copy_special_section_fields (ibfd, obfd, iheader, oheader, i))
1476 break;
1477 }
1478 }
1479
1480 if (j == elf_numsections (ibfd) && oheader->sh_type >= SHT_LOOS)
1481 {
1482 /* Final attempt. Call the backend copy function
1483 with a NULL input section. */
1484 if (bed->elf_backend_copy_special_section_fields != NULL)
1485 bed->elf_backend_copy_special_section_fields (ibfd, obfd, NULL, oheader);
1486 }
1487 }
1488
1489 return TRUE;
1490 }
1491
1492 static const char *
1493 get_segment_type (unsigned int p_type)
1494 {
1495 const char *pt;
1496 switch (p_type)
1497 {
1498 case PT_NULL: pt = "NULL"; break;
1499 case PT_LOAD: pt = "LOAD"; break;
1500 case PT_DYNAMIC: pt = "DYNAMIC"; break;
1501 case PT_INTERP: pt = "INTERP"; break;
1502 case PT_NOTE: pt = "NOTE"; break;
1503 case PT_SHLIB: pt = "SHLIB"; break;
1504 case PT_PHDR: pt = "PHDR"; break;
1505 case PT_TLS: pt = "TLS"; break;
1506 case PT_GNU_EH_FRAME: pt = "EH_FRAME"; break;
1507 case PT_GNU_STACK: pt = "STACK"; break;
1508 case PT_GNU_RELRO: pt = "RELRO"; break;
1509 default: pt = NULL; break;
1510 }
1511 return pt;
1512 }
1513
1514 /* Print out the program headers. */
1515
1516 bfd_boolean
1517 _bfd_elf_print_private_bfd_data (bfd *abfd, void *farg)
1518 {
1519 FILE *f = (FILE *) farg;
1520 Elf_Internal_Phdr *p;
1521 asection *s;
1522 bfd_byte *dynbuf = NULL;
1523
1524 p = elf_tdata (abfd)->phdr;
1525 if (p != NULL)
1526 {
1527 unsigned int i, c;
1528
1529 fprintf (f, _("\nProgram Header:\n"));
1530 c = elf_elfheader (abfd)->e_phnum;
1531 for (i = 0; i < c; i++, p++)
1532 {
1533 const char *pt = get_segment_type (p->p_type);
1534 char buf[20];
1535
1536 if (pt == NULL)
1537 {
1538 sprintf (buf, "0x%lx", p->p_type);
1539 pt = buf;
1540 }
1541 fprintf (f, "%8s off 0x", pt);
1542 bfd_fprintf_vma (abfd, f, p->p_offset);
1543 fprintf (f, " vaddr 0x");
1544 bfd_fprintf_vma (abfd, f, p->p_vaddr);
1545 fprintf (f, " paddr 0x");
1546 bfd_fprintf_vma (abfd, f, p->p_paddr);
1547 fprintf (f, " align 2**%u\n", bfd_log2 (p->p_align));
1548 fprintf (f, " filesz 0x");
1549 bfd_fprintf_vma (abfd, f, p->p_filesz);
1550 fprintf (f, " memsz 0x");
1551 bfd_fprintf_vma (abfd, f, p->p_memsz);
1552 fprintf (f, " flags %c%c%c",
1553 (p->p_flags & PF_R) != 0 ? 'r' : '-',
1554 (p->p_flags & PF_W) != 0 ? 'w' : '-',
1555 (p->p_flags & PF_X) != 0 ? 'x' : '-');
1556 if ((p->p_flags &~ (unsigned) (PF_R | PF_W | PF_X)) != 0)
1557 fprintf (f, " %lx", p->p_flags &~ (unsigned) (PF_R | PF_W | PF_X));
1558 fprintf (f, "\n");
1559 }
1560 }
1561
1562 s = bfd_get_section_by_name (abfd, ".dynamic");
1563 if (s != NULL)
1564 {
1565 unsigned int elfsec;
1566 unsigned long shlink;
1567 bfd_byte *extdyn, *extdynend;
1568 size_t extdynsize;
1569 void (*swap_dyn_in) (bfd *, const void *, Elf_Internal_Dyn *);
1570
1571 fprintf (f, _("\nDynamic Section:\n"));
1572
1573 if (!bfd_malloc_and_get_section (abfd, s, &dynbuf))
1574 goto error_return;
1575
1576 elfsec = _bfd_elf_section_from_bfd_section (abfd, s);
1577 if (elfsec == SHN_BAD)
1578 goto error_return;
1579 shlink = elf_elfsections (abfd)[elfsec]->sh_link;
1580
1581 extdynsize = get_elf_backend_data (abfd)->s->sizeof_dyn;
1582 swap_dyn_in = get_elf_backend_data (abfd)->s->swap_dyn_in;
1583
1584 extdyn = dynbuf;
1585 /* PR 17512: file: 6f427532. */
1586 if (s->size < extdynsize)
1587 goto error_return;
1588 extdynend = extdyn + s->size;
1589 /* PR 17512: file: id:000006,sig:06,src:000000,op:flip4,pos:5664.
1590 Fix range check. */
1591 for (; extdyn <= (extdynend - extdynsize); extdyn += extdynsize)
1592 {
1593 Elf_Internal_Dyn dyn;
1594 const char *name = "";
1595 char ab[20];
1596 bfd_boolean stringp;
1597 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
1598
1599 (*swap_dyn_in) (abfd, extdyn, &dyn);
1600
1601 if (dyn.d_tag == DT_NULL)
1602 break;
1603
1604 stringp = FALSE;
1605 switch (dyn.d_tag)
1606 {
1607 default:
1608 if (bed->elf_backend_get_target_dtag)
1609 name = (*bed->elf_backend_get_target_dtag) (dyn.d_tag);
1610
1611 if (!strcmp (name, ""))
1612 {
1613 sprintf (ab, "0x%lx", (unsigned long) dyn.d_tag);
1614 name = ab;
1615 }
1616 break;
1617
1618 case DT_NEEDED: name = "NEEDED"; stringp = TRUE; break;
1619 case DT_PLTRELSZ: name = "PLTRELSZ"; break;
1620 case DT_PLTGOT: name = "PLTGOT"; break;
1621 case DT_HASH: name = "HASH"; break;
1622 case DT_STRTAB: name = "STRTAB"; break;
1623 case DT_SYMTAB: name = "SYMTAB"; break;
1624 case DT_RELA: name = "RELA"; break;
1625 case DT_RELASZ: name = "RELASZ"; break;
1626 case DT_RELAENT: name = "RELAENT"; break;
1627 case DT_STRSZ: name = "STRSZ"; break;
1628 case DT_SYMENT: name = "SYMENT"; break;
1629 case DT_INIT: name = "INIT"; break;
1630 case DT_FINI: name = "FINI"; break;
1631 case DT_SONAME: name = "SONAME"; stringp = TRUE; break;
1632 case DT_RPATH: name = "RPATH"; stringp = TRUE; break;
1633 case DT_SYMBOLIC: name = "SYMBOLIC"; break;
1634 case DT_REL: name = "REL"; break;
1635 case DT_RELSZ: name = "RELSZ"; break;
1636 case DT_RELENT: name = "RELENT"; break;
1637 case DT_PLTREL: name = "PLTREL"; break;
1638 case DT_DEBUG: name = "DEBUG"; break;
1639 case DT_TEXTREL: name = "TEXTREL"; break;
1640 case DT_JMPREL: name = "JMPREL"; break;
1641 case DT_BIND_NOW: name = "BIND_NOW"; break;
1642 case DT_INIT_ARRAY: name = "INIT_ARRAY"; break;
1643 case DT_FINI_ARRAY: name = "FINI_ARRAY"; break;
1644 case DT_INIT_ARRAYSZ: name = "INIT_ARRAYSZ"; break;
1645 case DT_FINI_ARRAYSZ: name = "FINI_ARRAYSZ"; break;
1646 case DT_RUNPATH: name = "RUNPATH"; stringp = TRUE; break;
1647 case DT_FLAGS: name = "FLAGS"; break;
1648 case DT_PREINIT_ARRAY: name = "PREINIT_ARRAY"; break;
1649 case DT_PREINIT_ARRAYSZ: name = "PREINIT_ARRAYSZ"; break;
1650 case DT_CHECKSUM: name = "CHECKSUM"; break;
1651 case DT_PLTPADSZ: name = "PLTPADSZ"; break;
1652 case DT_MOVEENT: name = "MOVEENT"; break;
1653 case DT_MOVESZ: name = "MOVESZ"; break;
1654 case DT_FEATURE: name = "FEATURE"; break;
1655 case DT_POSFLAG_1: name = "POSFLAG_1"; break;
1656 case DT_SYMINSZ: name = "SYMINSZ"; break;
1657 case DT_SYMINENT: name = "SYMINENT"; break;
1658 case DT_CONFIG: name = "CONFIG"; stringp = TRUE; break;
1659 case DT_DEPAUDIT: name = "DEPAUDIT"; stringp = TRUE; break;
1660 case DT_AUDIT: name = "AUDIT"; stringp = TRUE; break;
1661 case DT_PLTPAD: name = "PLTPAD"; break;
1662 case DT_MOVETAB: name = "MOVETAB"; break;
1663 case DT_SYMINFO: name = "SYMINFO"; break;
1664 case DT_RELACOUNT: name = "RELACOUNT"; break;
1665 case DT_RELCOUNT: name = "RELCOUNT"; break;
1666 case DT_FLAGS_1: name = "FLAGS_1"; break;
1667 case DT_VERSYM: name = "VERSYM"; break;
1668 case DT_VERDEF: name = "VERDEF"; break;
1669 case DT_VERDEFNUM: name = "VERDEFNUM"; break;
1670 case DT_VERNEED: name = "VERNEED"; break;
1671 case DT_VERNEEDNUM: name = "VERNEEDNUM"; break;
1672 case DT_AUXILIARY: name = "AUXILIARY"; stringp = TRUE; break;
1673 case DT_USED: name = "USED"; break;
1674 case DT_FILTER: name = "FILTER"; stringp = TRUE; break;
1675 case DT_GNU_HASH: name = "GNU_HASH"; break;
1676 }
1677
1678 fprintf (f, " %-20s ", name);
1679 if (! stringp)
1680 {
1681 fprintf (f, "0x");
1682 bfd_fprintf_vma (abfd, f, dyn.d_un.d_val);
1683 }
1684 else
1685 {
1686 const char *string;
1687 unsigned int tagv = dyn.d_un.d_val;
1688
1689 string = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
1690 if (string == NULL)
1691 goto error_return;
1692 fprintf (f, "%s", string);
1693 }
1694 fprintf (f, "\n");
1695 }
1696
1697 free (dynbuf);
1698 dynbuf = NULL;
1699 }
1700
1701 if ((elf_dynverdef (abfd) != 0 && elf_tdata (abfd)->verdef == NULL)
1702 || (elf_dynverref (abfd) != 0 && elf_tdata (abfd)->verref == NULL))
1703 {
1704 if (! _bfd_elf_slurp_version_tables (abfd, FALSE))
1705 return FALSE;
1706 }
1707
1708 if (elf_dynverdef (abfd) != 0)
1709 {
1710 Elf_Internal_Verdef *t;
1711
1712 fprintf (f, _("\nVersion definitions:\n"));
1713 for (t = elf_tdata (abfd)->verdef; t != NULL; t = t->vd_nextdef)
1714 {
1715 fprintf (f, "%d 0x%2.2x 0x%8.8lx %s\n", t->vd_ndx,
1716 t->vd_flags, t->vd_hash,
1717 t->vd_nodename ? t->vd_nodename : "<corrupt>");
1718 if (t->vd_auxptr != NULL && t->vd_auxptr->vda_nextptr != NULL)
1719 {
1720 Elf_Internal_Verdaux *a;
1721
1722 fprintf (f, "\t");
1723 for (a = t->vd_auxptr->vda_nextptr;
1724 a != NULL;
1725 a = a->vda_nextptr)
1726 fprintf (f, "%s ",
1727 a->vda_nodename ? a->vda_nodename : "<corrupt>");
1728 fprintf (f, "\n");
1729 }
1730 }
1731 }
1732
1733 if (elf_dynverref (abfd) != 0)
1734 {
1735 Elf_Internal_Verneed *t;
1736
1737 fprintf (f, _("\nVersion References:\n"));
1738 for (t = elf_tdata (abfd)->verref; t != NULL; t = t->vn_nextref)
1739 {
1740 Elf_Internal_Vernaux *a;
1741
1742 fprintf (f, _(" required from %s:\n"),
1743 t->vn_filename ? t->vn_filename : "<corrupt>");
1744 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
1745 fprintf (f, " 0x%8.8lx 0x%2.2x %2.2d %s\n", a->vna_hash,
1746 a->vna_flags, a->vna_other,
1747 a->vna_nodename ? a->vna_nodename : "<corrupt>");
1748 }
1749 }
1750
1751 return TRUE;
1752
1753 error_return:
1754 if (dynbuf != NULL)
1755 free (dynbuf);
1756 return FALSE;
1757 }
1758
1759 /* Get version string. */
1760
1761 const char *
1762 _bfd_elf_get_symbol_version_string (bfd *abfd, asymbol *symbol,
1763 bfd_boolean *hidden)
1764 {
1765 const char *version_string = NULL;
1766 if (elf_dynversym (abfd) != 0
1767 && (elf_dynverdef (abfd) != 0 || elf_dynverref (abfd) != 0))
1768 {
1769 unsigned int vernum = ((elf_symbol_type *) symbol)->version;
1770
1771 *hidden = (vernum & VERSYM_HIDDEN) != 0;
1772 vernum &= VERSYM_VERSION;
1773
1774 if (vernum == 0)
1775 version_string = "";
1776 else if (vernum == 1)
1777 version_string = "Base";
1778 else if (vernum <= elf_tdata (abfd)->cverdefs)
1779 version_string =
1780 elf_tdata (abfd)->verdef[vernum - 1].vd_nodename;
1781 else
1782 {
1783 Elf_Internal_Verneed *t;
1784
1785 version_string = "";
1786 for (t = elf_tdata (abfd)->verref;
1787 t != NULL;
1788 t = t->vn_nextref)
1789 {
1790 Elf_Internal_Vernaux *a;
1791
1792 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
1793 {
1794 if (a->vna_other == vernum)
1795 {
1796 version_string = a->vna_nodename;
1797 break;
1798 }
1799 }
1800 }
1801 }
1802 }
1803 return version_string;
1804 }
1805
1806 /* Display ELF-specific fields of a symbol. */
1807
1808 void
1809 bfd_elf_print_symbol (bfd *abfd,
1810 void *filep,
1811 asymbol *symbol,
1812 bfd_print_symbol_type how)
1813 {
1814 FILE *file = (FILE *) filep;
1815 switch (how)
1816 {
1817 case bfd_print_symbol_name:
1818 fprintf (file, "%s", symbol->name);
1819 break;
1820 case bfd_print_symbol_more:
1821 fprintf (file, "elf ");
1822 bfd_fprintf_vma (abfd, file, symbol->value);
1823 fprintf (file, " %lx", (unsigned long) symbol->flags);
1824 break;
1825 case bfd_print_symbol_all:
1826 {
1827 const char *section_name;
1828 const char *name = NULL;
1829 const struct elf_backend_data *bed;
1830 unsigned char st_other;
1831 bfd_vma val;
1832 const char *version_string;
1833 bfd_boolean hidden;
1834
1835 section_name = symbol->section ? symbol->section->name : "(*none*)";
1836
1837 bed = get_elf_backend_data (abfd);
1838 if (bed->elf_backend_print_symbol_all)
1839 name = (*bed->elf_backend_print_symbol_all) (abfd, filep, symbol);
1840
1841 if (name == NULL)
1842 {
1843 name = symbol->name;
1844 bfd_print_symbol_vandf (abfd, file, symbol);
1845 }
1846
1847 fprintf (file, " %s\t", section_name);
1848 /* Print the "other" value for a symbol. For common symbols,
1849 we've already printed the size; now print the alignment.
1850 For other symbols, we have no specified alignment, and
1851 we've printed the address; now print the size. */
1852 if (symbol->section && bfd_is_com_section (symbol->section))
1853 val = ((elf_symbol_type *) symbol)->internal_elf_sym.st_value;
1854 else
1855 val = ((elf_symbol_type *) symbol)->internal_elf_sym.st_size;
1856 bfd_fprintf_vma (abfd, file, val);
1857
1858 /* If we have version information, print it. */
1859 version_string = _bfd_elf_get_symbol_version_string (abfd,
1860 symbol,
1861 &hidden);
1862 if (version_string)
1863 {
1864 if (!hidden)
1865 fprintf (file, " %-11s", version_string);
1866 else
1867 {
1868 int i;
1869
1870 fprintf (file, " (%s)", version_string);
1871 for (i = 10 - strlen (version_string); i > 0; --i)
1872 putc (' ', file);
1873 }
1874 }
1875
1876 /* If the st_other field is not zero, print it. */
1877 st_other = ((elf_symbol_type *) symbol)->internal_elf_sym.st_other;
1878
1879 switch (st_other)
1880 {
1881 case 0: break;
1882 case STV_INTERNAL: fprintf (file, " .internal"); break;
1883 case STV_HIDDEN: fprintf (file, " .hidden"); break;
1884 case STV_PROTECTED: fprintf (file, " .protected"); break;
1885 default:
1886 /* Some other non-defined flags are also present, so print
1887 everything hex. */
1888 fprintf (file, " 0x%02x", (unsigned int) st_other);
1889 }
1890
1891 fprintf (file, " %s", name);
1892 }
1893 break;
1894 }
1895 }
1896 \f
1897 /* ELF .o/exec file reading */
1898
1899 /* Create a new bfd section from an ELF section header. */
1900
1901 bfd_boolean
1902 bfd_section_from_shdr (bfd *abfd, unsigned int shindex)
1903 {
1904 Elf_Internal_Shdr *hdr;
1905 Elf_Internal_Ehdr *ehdr;
1906 const struct elf_backend_data *bed;
1907 const char *name;
1908 bfd_boolean ret = TRUE;
1909 static bfd_boolean * sections_being_created = NULL;
1910 static bfd * sections_being_created_abfd = NULL;
1911 static unsigned int nesting = 0;
1912
1913 if (shindex >= elf_numsections (abfd))
1914 return FALSE;
1915
1916 if (++ nesting > 3)
1917 {
1918 /* PR17512: A corrupt ELF binary might contain a recursive group of
1919 sections, with each the string indicies pointing to the next in the
1920 loop. Detect this here, by refusing to load a section that we are
1921 already in the process of loading. We only trigger this test if
1922 we have nested at least three sections deep as normal ELF binaries
1923 can expect to recurse at least once.
1924
1925 FIXME: It would be better if this array was attached to the bfd,
1926 rather than being held in a static pointer. */
1927
1928 if (sections_being_created_abfd != abfd)
1929 sections_being_created = NULL;
1930 if (sections_being_created == NULL)
1931 {
1932 /* FIXME: It would be more efficient to attach this array to the bfd somehow. */
1933 sections_being_created = (bfd_boolean *)
1934 bfd_zalloc (abfd, elf_numsections (abfd) * sizeof (bfd_boolean));
1935 sections_being_created_abfd = abfd;
1936 }
1937 if (sections_being_created [shindex])
1938 {
1939 (*_bfd_error_handler)
1940 (_("%B: warning: loop in section dependencies detected"), abfd);
1941 return FALSE;
1942 }
1943 sections_being_created [shindex] = TRUE;
1944 }
1945
1946 hdr = elf_elfsections (abfd)[shindex];
1947 ehdr = elf_elfheader (abfd);
1948 name = bfd_elf_string_from_elf_section (abfd, ehdr->e_shstrndx,
1949 hdr->sh_name);
1950 if (name == NULL)
1951 goto fail;
1952
1953 bed = get_elf_backend_data (abfd);
1954 switch (hdr->sh_type)
1955 {
1956 case SHT_NULL:
1957 /* Inactive section. Throw it away. */
1958 goto success;
1959
1960 case SHT_PROGBITS: /* Normal section with contents. */
1961 case SHT_NOBITS: /* .bss section. */
1962 case SHT_HASH: /* .hash section. */
1963 case SHT_NOTE: /* .note section. */
1964 case SHT_INIT_ARRAY: /* .init_array section. */
1965 case SHT_FINI_ARRAY: /* .fini_array section. */
1966 case SHT_PREINIT_ARRAY: /* .preinit_array section. */
1967 case SHT_GNU_LIBLIST: /* .gnu.liblist section. */
1968 case SHT_GNU_HASH: /* .gnu.hash section. */
1969 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
1970 goto success;
1971
1972 case SHT_DYNAMIC: /* Dynamic linking information. */
1973 if (! _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex))
1974 goto fail;
1975
1976 if (hdr->sh_link > elf_numsections (abfd))
1977 {
1978 /* PR 10478: Accept Solaris binaries with a sh_link
1979 field set to SHN_BEFORE or SHN_AFTER. */
1980 switch (bfd_get_arch (abfd))
1981 {
1982 case bfd_arch_i386:
1983 case bfd_arch_sparc:
1984 if (hdr->sh_link == (SHN_LORESERVE & 0xffff) /* SHN_BEFORE */
1985 || hdr->sh_link == ((SHN_LORESERVE + 1) & 0xffff) /* SHN_AFTER */)
1986 break;
1987 /* Otherwise fall through. */
1988 default:
1989 goto fail;
1990 }
1991 }
1992 else if (elf_elfsections (abfd)[hdr->sh_link] == NULL)
1993 goto fail;
1994 else if (elf_elfsections (abfd)[hdr->sh_link]->sh_type != SHT_STRTAB)
1995 {
1996 Elf_Internal_Shdr *dynsymhdr;
1997
1998 /* The shared libraries distributed with hpux11 have a bogus
1999 sh_link field for the ".dynamic" section. Find the
2000 string table for the ".dynsym" section instead. */
2001 if (elf_dynsymtab (abfd) != 0)
2002 {
2003 dynsymhdr = elf_elfsections (abfd)[elf_dynsymtab (abfd)];
2004 hdr->sh_link = dynsymhdr->sh_link;
2005 }
2006 else
2007 {
2008 unsigned int i, num_sec;
2009
2010 num_sec = elf_numsections (abfd);
2011 for (i = 1; i < num_sec; i++)
2012 {
2013 dynsymhdr = elf_elfsections (abfd)[i];
2014 if (dynsymhdr->sh_type == SHT_DYNSYM)
2015 {
2016 hdr->sh_link = dynsymhdr->sh_link;
2017 break;
2018 }
2019 }
2020 }
2021 }
2022 goto success;
2023
2024 case SHT_SYMTAB: /* A symbol table. */
2025 if (elf_onesymtab (abfd) == shindex)
2026 goto success;
2027
2028 if (hdr->sh_entsize != bed->s->sizeof_sym)
2029 goto fail;
2030
2031 if (hdr->sh_info * hdr->sh_entsize > hdr->sh_size)
2032 {
2033 if (hdr->sh_size != 0)
2034 goto fail;
2035 /* Some assemblers erroneously set sh_info to one with a
2036 zero sh_size. ld sees this as a global symbol count
2037 of (unsigned) -1. Fix it here. */
2038 hdr->sh_info = 0;
2039 goto success;
2040 }
2041
2042 /* PR 18854: A binary might contain more than one symbol table.
2043 Unusual, but possible. Warn, but continue. */
2044 if (elf_onesymtab (abfd) != 0)
2045 {
2046 (*_bfd_error_handler)
2047 (_("%B: warning: multiple symbol tables detected - ignoring the table in section %u"),
2048 abfd, shindex);
2049 goto success;
2050 }
2051 elf_onesymtab (abfd) = shindex;
2052 elf_symtab_hdr (abfd) = *hdr;
2053 elf_elfsections (abfd)[shindex] = hdr = & elf_symtab_hdr (abfd);
2054 abfd->flags |= HAS_SYMS;
2055
2056 /* Sometimes a shared object will map in the symbol table. If
2057 SHF_ALLOC is set, and this is a shared object, then we also
2058 treat this section as a BFD section. We can not base the
2059 decision purely on SHF_ALLOC, because that flag is sometimes
2060 set in a relocatable object file, which would confuse the
2061 linker. */
2062 if ((hdr->sh_flags & SHF_ALLOC) != 0
2063 && (abfd->flags & DYNAMIC) != 0
2064 && ! _bfd_elf_make_section_from_shdr (abfd, hdr, name,
2065 shindex))
2066 goto fail;
2067
2068 /* Go looking for SHT_SYMTAB_SHNDX too, since if there is one we
2069 can't read symbols without that section loaded as well. It
2070 is most likely specified by the next section header. */
2071 {
2072 elf_section_list * entry;
2073 unsigned int i, num_sec;
2074
2075 for (entry = elf_symtab_shndx_list (abfd); entry != NULL; entry = entry->next)
2076 if (entry->hdr.sh_link == shindex)
2077 goto success;
2078
2079 num_sec = elf_numsections (abfd);
2080 for (i = shindex + 1; i < num_sec; i++)
2081 {
2082 Elf_Internal_Shdr *hdr2 = elf_elfsections (abfd)[i];
2083
2084 if (hdr2->sh_type == SHT_SYMTAB_SHNDX
2085 && hdr2->sh_link == shindex)
2086 break;
2087 }
2088
2089 if (i == num_sec)
2090 for (i = 1; i < shindex; i++)
2091 {
2092 Elf_Internal_Shdr *hdr2 = elf_elfsections (abfd)[i];
2093
2094 if (hdr2->sh_type == SHT_SYMTAB_SHNDX
2095 && hdr2->sh_link == shindex)
2096 break;
2097 }
2098
2099 if (i != shindex)
2100 ret = bfd_section_from_shdr (abfd, i);
2101 /* else FIXME: we have failed to find the symbol table - should we issue an error ? */
2102 goto success;
2103 }
2104
2105 case SHT_DYNSYM: /* A dynamic symbol table. */
2106 if (elf_dynsymtab (abfd) == shindex)
2107 goto success;
2108
2109 if (hdr->sh_entsize != bed->s->sizeof_sym)
2110 goto fail;
2111
2112 if (hdr->sh_info * hdr->sh_entsize > hdr->sh_size)
2113 {
2114 if (hdr->sh_size != 0)
2115 goto fail;
2116
2117 /* Some linkers erroneously set sh_info to one with a
2118 zero sh_size. ld sees this as a global symbol count
2119 of (unsigned) -1. Fix it here. */
2120 hdr->sh_info = 0;
2121 goto success;
2122 }
2123
2124 /* PR 18854: A binary might contain more than one dynamic symbol table.
2125 Unusual, but possible. Warn, but continue. */
2126 if (elf_dynsymtab (abfd) != 0)
2127 {
2128 (*_bfd_error_handler)
2129 (_("%B: warning: multiple dynamic symbol tables detected - ignoring the table in section %u"),
2130 abfd, shindex);
2131 goto success;
2132 }
2133 elf_dynsymtab (abfd) = shindex;
2134 elf_tdata (abfd)->dynsymtab_hdr = *hdr;
2135 elf_elfsections (abfd)[shindex] = hdr = &elf_tdata (abfd)->dynsymtab_hdr;
2136 abfd->flags |= HAS_SYMS;
2137
2138 /* Besides being a symbol table, we also treat this as a regular
2139 section, so that objcopy can handle it. */
2140 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2141 goto success;
2142
2143 case SHT_SYMTAB_SHNDX: /* Symbol section indices when >64k sections. */
2144 {
2145 elf_section_list * entry;
2146
2147 for (entry = elf_symtab_shndx_list (abfd); entry != NULL; entry = entry->next)
2148 if (entry->ndx == shindex)
2149 goto success;
2150
2151 entry = bfd_alloc (abfd, sizeof * entry);
2152 if (entry == NULL)
2153 goto fail;
2154 entry->ndx = shindex;
2155 entry->hdr = * hdr;
2156 entry->next = elf_symtab_shndx_list (abfd);
2157 elf_symtab_shndx_list (abfd) = entry;
2158 elf_elfsections (abfd)[shindex] = & entry->hdr;
2159 goto success;
2160 }
2161
2162 case SHT_STRTAB: /* A string table. */
2163 if (hdr->bfd_section != NULL)
2164 goto success;
2165
2166 if (ehdr->e_shstrndx == shindex)
2167 {
2168 elf_tdata (abfd)->shstrtab_hdr = *hdr;
2169 elf_elfsections (abfd)[shindex] = &elf_tdata (abfd)->shstrtab_hdr;
2170 goto success;
2171 }
2172
2173 if (elf_elfsections (abfd)[elf_onesymtab (abfd)]->sh_link == shindex)
2174 {
2175 symtab_strtab:
2176 elf_tdata (abfd)->strtab_hdr = *hdr;
2177 elf_elfsections (abfd)[shindex] = &elf_tdata (abfd)->strtab_hdr;
2178 goto success;
2179 }
2180
2181 if (elf_elfsections (abfd)[elf_dynsymtab (abfd)]->sh_link == shindex)
2182 {
2183 dynsymtab_strtab:
2184 elf_tdata (abfd)->dynstrtab_hdr = *hdr;
2185 hdr = &elf_tdata (abfd)->dynstrtab_hdr;
2186 elf_elfsections (abfd)[shindex] = hdr;
2187 /* We also treat this as a regular section, so that objcopy
2188 can handle it. */
2189 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name,
2190 shindex);
2191 goto success;
2192 }
2193
2194 /* If the string table isn't one of the above, then treat it as a
2195 regular section. We need to scan all the headers to be sure,
2196 just in case this strtab section appeared before the above. */
2197 if (elf_onesymtab (abfd) == 0 || elf_dynsymtab (abfd) == 0)
2198 {
2199 unsigned int i, num_sec;
2200
2201 num_sec = elf_numsections (abfd);
2202 for (i = 1; i < num_sec; i++)
2203 {
2204 Elf_Internal_Shdr *hdr2 = elf_elfsections (abfd)[i];
2205 if (hdr2->sh_link == shindex)
2206 {
2207 /* Prevent endless recursion on broken objects. */
2208 if (i == shindex)
2209 goto fail;
2210 if (! bfd_section_from_shdr (abfd, i))
2211 goto fail;
2212 if (elf_onesymtab (abfd) == i)
2213 goto symtab_strtab;
2214 if (elf_dynsymtab (abfd) == i)
2215 goto dynsymtab_strtab;
2216 }
2217 }
2218 }
2219 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2220 goto success;
2221
2222 case SHT_REL:
2223 case SHT_RELA:
2224 /* *These* do a lot of work -- but build no sections! */
2225 {
2226 asection *target_sect;
2227 Elf_Internal_Shdr *hdr2, **p_hdr;
2228 unsigned int num_sec = elf_numsections (abfd);
2229 struct bfd_elf_section_data *esdt;
2230 bfd_size_type amt;
2231
2232 if (hdr->sh_entsize
2233 != (bfd_size_type) (hdr->sh_type == SHT_REL
2234 ? bed->s->sizeof_rel : bed->s->sizeof_rela))
2235 goto fail;
2236
2237 /* Check for a bogus link to avoid crashing. */
2238 if (hdr->sh_link >= num_sec)
2239 {
2240 ((*_bfd_error_handler)
2241 (_("%B: invalid link %lu for reloc section %s (index %u)"),
2242 abfd, hdr->sh_link, name, shindex));
2243 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name,
2244 shindex);
2245 goto success;
2246 }
2247
2248 /* For some incomprehensible reason Oracle distributes
2249 libraries for Solaris in which some of the objects have
2250 bogus sh_link fields. It would be nice if we could just
2251 reject them, but, unfortunately, some people need to use
2252 them. We scan through the section headers; if we find only
2253 one suitable symbol table, we clobber the sh_link to point
2254 to it. I hope this doesn't break anything.
2255
2256 Don't do it on executable nor shared library. */
2257 if ((abfd->flags & (DYNAMIC | EXEC_P)) == 0
2258 && elf_elfsections (abfd)[hdr->sh_link]->sh_type != SHT_SYMTAB
2259 && elf_elfsections (abfd)[hdr->sh_link]->sh_type != SHT_DYNSYM)
2260 {
2261 unsigned int scan;
2262 int found;
2263
2264 found = 0;
2265 for (scan = 1; scan < num_sec; scan++)
2266 {
2267 if (elf_elfsections (abfd)[scan]->sh_type == SHT_SYMTAB
2268 || elf_elfsections (abfd)[scan]->sh_type == SHT_DYNSYM)
2269 {
2270 if (found != 0)
2271 {
2272 found = 0;
2273 break;
2274 }
2275 found = scan;
2276 }
2277 }
2278 if (found != 0)
2279 hdr->sh_link = found;
2280 }
2281
2282 /* Get the symbol table. */
2283 if ((elf_elfsections (abfd)[hdr->sh_link]->sh_type == SHT_SYMTAB
2284 || elf_elfsections (abfd)[hdr->sh_link]->sh_type == SHT_DYNSYM)
2285 && ! bfd_section_from_shdr (abfd, hdr->sh_link))
2286 goto fail;
2287
2288 /* If this reloc section does not use the main symbol table we
2289 don't treat it as a reloc section. BFD can't adequately
2290 represent such a section, so at least for now, we don't
2291 try. We just present it as a normal section. We also
2292 can't use it as a reloc section if it points to the null
2293 section, an invalid section, another reloc section, or its
2294 sh_link points to the null section. */
2295 if (hdr->sh_link != elf_onesymtab (abfd)
2296 || hdr->sh_link == SHN_UNDEF
2297 || hdr->sh_info == SHN_UNDEF
2298 || hdr->sh_info >= num_sec
2299 || elf_elfsections (abfd)[hdr->sh_info]->sh_type == SHT_REL
2300 || elf_elfsections (abfd)[hdr->sh_info]->sh_type == SHT_RELA)
2301 {
2302 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name,
2303 shindex);
2304 goto success;
2305 }
2306
2307 if (! bfd_section_from_shdr (abfd, hdr->sh_info))
2308 goto fail;
2309
2310 target_sect = bfd_section_from_elf_index (abfd, hdr->sh_info);
2311 if (target_sect == NULL)
2312 goto fail;
2313
2314 esdt = elf_section_data (target_sect);
2315 if (hdr->sh_type == SHT_RELA)
2316 p_hdr = &esdt->rela.hdr;
2317 else
2318 p_hdr = &esdt->rel.hdr;
2319
2320 /* PR 17512: file: 0b4f81b7. */
2321 if (*p_hdr != NULL)
2322 goto fail;
2323 amt = sizeof (*hdr2);
2324 hdr2 = (Elf_Internal_Shdr *) bfd_alloc (abfd, amt);
2325 if (hdr2 == NULL)
2326 goto fail;
2327 *hdr2 = *hdr;
2328 *p_hdr = hdr2;
2329 elf_elfsections (abfd)[shindex] = hdr2;
2330 target_sect->reloc_count += NUM_SHDR_ENTRIES (hdr);
2331 target_sect->flags |= SEC_RELOC;
2332 target_sect->relocation = NULL;
2333 target_sect->rel_filepos = hdr->sh_offset;
2334 /* In the section to which the relocations apply, mark whether
2335 its relocations are of the REL or RELA variety. */
2336 if (hdr->sh_size != 0)
2337 {
2338 if (hdr->sh_type == SHT_RELA)
2339 target_sect->use_rela_p = 1;
2340 }
2341 abfd->flags |= HAS_RELOC;
2342 goto success;
2343 }
2344
2345 case SHT_GNU_verdef:
2346 elf_dynverdef (abfd) = shindex;
2347 elf_tdata (abfd)->dynverdef_hdr = *hdr;
2348 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2349 goto success;
2350
2351 case SHT_GNU_versym:
2352 if (hdr->sh_entsize != sizeof (Elf_External_Versym))
2353 goto fail;
2354
2355 elf_dynversym (abfd) = shindex;
2356 elf_tdata (abfd)->dynversym_hdr = *hdr;
2357 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2358 goto success;
2359
2360 case SHT_GNU_verneed:
2361 elf_dynverref (abfd) = shindex;
2362 elf_tdata (abfd)->dynverref_hdr = *hdr;
2363 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2364 goto success;
2365
2366 case SHT_SHLIB:
2367 goto success;
2368
2369 case SHT_GROUP:
2370 if (! IS_VALID_GROUP_SECTION_HEADER (hdr, GRP_ENTRY_SIZE))
2371 goto fail;
2372
2373 if (!_bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex))
2374 goto fail;
2375
2376 if (hdr->contents != NULL)
2377 {
2378 Elf_Internal_Group *idx = (Elf_Internal_Group *) hdr->contents;
2379 unsigned int n_elt = hdr->sh_size / sizeof (* idx);
2380 asection *s;
2381
2382 if (n_elt == 0)
2383 goto fail;
2384 if (idx->flags & GRP_COMDAT)
2385 hdr->bfd_section->flags
2386 |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
2387
2388 /* We try to keep the same section order as it comes in. */
2389 idx += n_elt;
2390
2391 while (--n_elt != 0)
2392 {
2393 --idx;
2394
2395 if (idx->shdr != NULL
2396 && (s = idx->shdr->bfd_section) != NULL
2397 && elf_next_in_group (s) != NULL)
2398 {
2399 elf_next_in_group (hdr->bfd_section) = s;
2400 break;
2401 }
2402 }
2403 }
2404 goto success;
2405
2406 default:
2407 /* Possibly an attributes section. */
2408 if (hdr->sh_type == SHT_GNU_ATTRIBUTES
2409 || hdr->sh_type == bed->obj_attrs_section_type)
2410 {
2411 if (! _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex))
2412 goto fail;
2413 _bfd_elf_parse_attributes (abfd, hdr);
2414 goto success;
2415 }
2416
2417 /* Check for any processor-specific section types. */
2418 if (bed->elf_backend_section_from_shdr (abfd, hdr, name, shindex))
2419 goto success;
2420
2421 if (hdr->sh_type >= SHT_LOUSER && hdr->sh_type <= SHT_HIUSER)
2422 {
2423 if ((hdr->sh_flags & SHF_ALLOC) != 0)
2424 /* FIXME: How to properly handle allocated section reserved
2425 for applications? */
2426 (*_bfd_error_handler)
2427 (_("%B: don't know how to handle allocated, application "
2428 "specific section `%s' [0x%8x]"),
2429 abfd, name, hdr->sh_type);
2430 else
2431 {
2432 /* Allow sections reserved for applications. */
2433 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name,
2434 shindex);
2435 goto success;
2436 }
2437 }
2438 else if (hdr->sh_type >= SHT_LOPROC
2439 && hdr->sh_type <= SHT_HIPROC)
2440 /* FIXME: We should handle this section. */
2441 (*_bfd_error_handler)
2442 (_("%B: don't know how to handle processor specific section "
2443 "`%s' [0x%8x]"),
2444 abfd, name, hdr->sh_type);
2445 else if (hdr->sh_type >= SHT_LOOS && hdr->sh_type <= SHT_HIOS)
2446 {
2447 /* Unrecognised OS-specific sections. */
2448 if ((hdr->sh_flags & SHF_OS_NONCONFORMING) != 0)
2449 /* SHF_OS_NONCONFORMING indicates that special knowledge is
2450 required to correctly process the section and the file should
2451 be rejected with an error message. */
2452 (*_bfd_error_handler)
2453 (_("%B: don't know how to handle OS specific section "
2454 "`%s' [0x%8x]"),
2455 abfd, name, hdr->sh_type);
2456 else
2457 {
2458 /* Otherwise it should be processed. */
2459 ret = _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
2460 goto success;
2461 }
2462 }
2463 else
2464 /* FIXME: We should handle this section. */
2465 (*_bfd_error_handler)
2466 (_("%B: don't know how to handle section `%s' [0x%8x]"),
2467 abfd, name, hdr->sh_type);
2468
2469 goto fail;
2470 }
2471
2472 fail:
2473 ret = FALSE;
2474 success:
2475 if (sections_being_created && sections_being_created_abfd == abfd)
2476 sections_being_created [shindex] = FALSE;
2477 if (-- nesting == 0)
2478 {
2479 sections_being_created = NULL;
2480 sections_being_created_abfd = abfd;
2481 }
2482 return ret;
2483 }
2484
2485 /* Return the local symbol specified by ABFD, R_SYMNDX. */
2486
2487 Elf_Internal_Sym *
2488 bfd_sym_from_r_symndx (struct sym_cache *cache,
2489 bfd *abfd,
2490 unsigned long r_symndx)
2491 {
2492 unsigned int ent = r_symndx % LOCAL_SYM_CACHE_SIZE;
2493
2494 if (cache->abfd != abfd || cache->indx[ent] != r_symndx)
2495 {
2496 Elf_Internal_Shdr *symtab_hdr;
2497 unsigned char esym[sizeof (Elf64_External_Sym)];
2498 Elf_External_Sym_Shndx eshndx;
2499
2500 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
2501 if (bfd_elf_get_elf_syms (abfd, symtab_hdr, 1, r_symndx,
2502 &cache->sym[ent], esym, &eshndx) == NULL)
2503 return NULL;
2504
2505 if (cache->abfd != abfd)
2506 {
2507 memset (cache->indx, -1, sizeof (cache->indx));
2508 cache->abfd = abfd;
2509 }
2510 cache->indx[ent] = r_symndx;
2511 }
2512
2513 return &cache->sym[ent];
2514 }
2515
2516 /* Given an ELF section number, retrieve the corresponding BFD
2517 section. */
2518
2519 asection *
2520 bfd_section_from_elf_index (bfd *abfd, unsigned int sec_index)
2521 {
2522 if (sec_index >= elf_numsections (abfd))
2523 return NULL;
2524 return elf_elfsections (abfd)[sec_index]->bfd_section;
2525 }
2526
2527 static const struct bfd_elf_special_section special_sections_b[] =
2528 {
2529 { STRING_COMMA_LEN (".bss"), -2, SHT_NOBITS, SHF_ALLOC + SHF_WRITE },
2530 { NULL, 0, 0, 0, 0 }
2531 };
2532
2533 static const struct bfd_elf_special_section special_sections_c[] =
2534 {
2535 { STRING_COMMA_LEN (".comment"), 0, SHT_PROGBITS, 0 },
2536 { NULL, 0, 0, 0, 0 }
2537 };
2538
2539 static const struct bfd_elf_special_section special_sections_d[] =
2540 {
2541 { STRING_COMMA_LEN (".data"), -2, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
2542 { STRING_COMMA_LEN (".data1"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
2543 /* There are more DWARF sections than these, but they needn't be added here
2544 unless you have to cope with broken compilers that don't emit section
2545 attributes or you want to help the user writing assembler. */
2546 { STRING_COMMA_LEN (".debug"), 0, SHT_PROGBITS, 0 },
2547 { STRING_COMMA_LEN (".debug_line"), 0, SHT_PROGBITS, 0 },
2548 { STRING_COMMA_LEN (".debug_info"), 0, SHT_PROGBITS, 0 },
2549 { STRING_COMMA_LEN (".debug_abbrev"), 0, SHT_PROGBITS, 0 },
2550 { STRING_COMMA_LEN (".debug_aranges"), 0, SHT_PROGBITS, 0 },
2551 { STRING_COMMA_LEN (".dynamic"), 0, SHT_DYNAMIC, SHF_ALLOC },
2552 { STRING_COMMA_LEN (".dynstr"), 0, SHT_STRTAB, SHF_ALLOC },
2553 { STRING_COMMA_LEN (".dynsym"), 0, SHT_DYNSYM, SHF_ALLOC },
2554 { NULL, 0, 0, 0, 0 }
2555 };
2556
2557 static const struct bfd_elf_special_section special_sections_f[] =
2558 {
2559 { STRING_COMMA_LEN (".fini"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_EXECINSTR },
2560 { STRING_COMMA_LEN (".fini_array"), 0, SHT_FINI_ARRAY, SHF_ALLOC + SHF_WRITE },
2561 { NULL, 0, 0, 0, 0 }
2562 };
2563
2564 static const struct bfd_elf_special_section special_sections_g[] =
2565 {
2566 { STRING_COMMA_LEN (".gnu.linkonce.b"), -2, SHT_NOBITS, SHF_ALLOC + SHF_WRITE },
2567 { STRING_COMMA_LEN (".gnu.lto_"), -1, SHT_PROGBITS, SHF_EXCLUDE },
2568 { STRING_COMMA_LEN (".got"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
2569 { STRING_COMMA_LEN (".gnu.version"), 0, SHT_GNU_versym, 0 },
2570 { STRING_COMMA_LEN (".gnu.version_d"), 0, SHT_GNU_verdef, 0 },
2571 { STRING_COMMA_LEN (".gnu.version_r"), 0, SHT_GNU_verneed, 0 },
2572 { STRING_COMMA_LEN (".gnu.liblist"), 0, SHT_GNU_LIBLIST, SHF_ALLOC },
2573 { STRING_COMMA_LEN (".gnu.conflict"), 0, SHT_RELA, SHF_ALLOC },
2574 { STRING_COMMA_LEN (".gnu.hash"), 0, SHT_GNU_HASH, SHF_ALLOC },
2575 { NULL, 0, 0, 0, 0 }
2576 };
2577
2578 static const struct bfd_elf_special_section special_sections_h[] =
2579 {
2580 { STRING_COMMA_LEN (".hash"), 0, SHT_HASH, SHF_ALLOC },
2581 { NULL, 0, 0, 0, 0 }
2582 };
2583
2584 static const struct bfd_elf_special_section special_sections_i[] =
2585 {
2586 { STRING_COMMA_LEN (".init"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_EXECINSTR },
2587 { STRING_COMMA_LEN (".init_array"), 0, SHT_INIT_ARRAY, SHF_ALLOC + SHF_WRITE },
2588 { STRING_COMMA_LEN (".interp"), 0, SHT_PROGBITS, 0 },
2589 { NULL, 0, 0, 0, 0 }
2590 };
2591
2592 static const struct bfd_elf_special_section special_sections_l[] =
2593 {
2594 { STRING_COMMA_LEN (".line"), 0, SHT_PROGBITS, 0 },
2595 { NULL, 0, 0, 0, 0 }
2596 };
2597
2598 static const struct bfd_elf_special_section special_sections_n[] =
2599 {
2600 { STRING_COMMA_LEN (".note.GNU-stack"), 0, SHT_PROGBITS, 0 },
2601 { STRING_COMMA_LEN (".note"), -1, SHT_NOTE, 0 },
2602 { NULL, 0, 0, 0, 0 }
2603 };
2604
2605 static const struct bfd_elf_special_section special_sections_p[] =
2606 {
2607 { STRING_COMMA_LEN (".preinit_array"), 0, SHT_PREINIT_ARRAY, SHF_ALLOC + SHF_WRITE },
2608 { STRING_COMMA_LEN (".plt"), 0, SHT_PROGBITS, SHF_ALLOC + SHF_EXECINSTR },
2609 { NULL, 0, 0, 0, 0 }
2610 };
2611
2612 static const struct bfd_elf_special_section special_sections_r[] =
2613 {
2614 { STRING_COMMA_LEN (".rodata"), -2, SHT_PROGBITS, SHF_ALLOC },
2615 { STRING_COMMA_LEN (".rodata1"), 0, SHT_PROGBITS, SHF_ALLOC },
2616 { STRING_COMMA_LEN (".rela"), -1, SHT_RELA, 0 },
2617 { STRING_COMMA_LEN (".rel"), -1, SHT_REL, 0 },
2618 { NULL, 0, 0, 0, 0 }
2619 };
2620
2621 static const struct bfd_elf_special_section special_sections_s[] =
2622 {
2623 { STRING_COMMA_LEN (".shstrtab"), 0, SHT_STRTAB, 0 },
2624 { STRING_COMMA_LEN (".strtab"), 0, SHT_STRTAB, 0 },
2625 { STRING_COMMA_LEN (".symtab"), 0, SHT_SYMTAB, 0 },
2626 /* See struct bfd_elf_special_section declaration for the semantics of
2627 this special case where .prefix_length != strlen (.prefix). */
2628 { ".stabstr", 5, 3, SHT_STRTAB, 0 },
2629 { NULL, 0, 0, 0, 0 }
2630 };
2631
2632 static const struct bfd_elf_special_section special_sections_t[] =
2633 {
2634 { STRING_COMMA_LEN (".text"), -2, SHT_PROGBITS, SHF_ALLOC + SHF_EXECINSTR },
2635 { STRING_COMMA_LEN (".tbss"), -2, SHT_NOBITS, SHF_ALLOC + SHF_WRITE + SHF_TLS },
2636 { STRING_COMMA_LEN (".tdata"), -2, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE + SHF_TLS },
2637 { NULL, 0, 0, 0, 0 }
2638 };
2639
2640 static const struct bfd_elf_special_section special_sections_z[] =
2641 {
2642 { STRING_COMMA_LEN (".zdebug_line"), 0, SHT_PROGBITS, 0 },
2643 { STRING_COMMA_LEN (".zdebug_info"), 0, SHT_PROGBITS, 0 },
2644 { STRING_COMMA_LEN (".zdebug_abbrev"), 0, SHT_PROGBITS, 0 },
2645 { STRING_COMMA_LEN (".zdebug_aranges"), 0, SHT_PROGBITS, 0 },
2646 { NULL, 0, 0, 0, 0 }
2647 };
2648
2649 static const struct bfd_elf_special_section * const special_sections[] =
2650 {
2651 special_sections_b, /* 'b' */
2652 special_sections_c, /* 'c' */
2653 special_sections_d, /* 'd' */
2654 NULL, /* 'e' */
2655 special_sections_f, /* 'f' */
2656 special_sections_g, /* 'g' */
2657 special_sections_h, /* 'h' */
2658 special_sections_i, /* 'i' */
2659 NULL, /* 'j' */
2660 NULL, /* 'k' */
2661 special_sections_l, /* 'l' */
2662 NULL, /* 'm' */
2663 special_sections_n, /* 'n' */
2664 NULL, /* 'o' */
2665 special_sections_p, /* 'p' */
2666 NULL, /* 'q' */
2667 special_sections_r, /* 'r' */
2668 special_sections_s, /* 's' */
2669 special_sections_t, /* 't' */
2670 NULL, /* 'u' */
2671 NULL, /* 'v' */
2672 NULL, /* 'w' */
2673 NULL, /* 'x' */
2674 NULL, /* 'y' */
2675 special_sections_z /* 'z' */
2676 };
2677
2678 const struct bfd_elf_special_section *
2679 _bfd_elf_get_special_section (const char *name,
2680 const struct bfd_elf_special_section *spec,
2681 unsigned int rela)
2682 {
2683 int i;
2684 int len;
2685
2686 len = strlen (name);
2687
2688 for (i = 0; spec[i].prefix != NULL; i++)
2689 {
2690 int suffix_len;
2691 int prefix_len = spec[i].prefix_length;
2692
2693 if (len < prefix_len)
2694 continue;
2695 if (memcmp (name, spec[i].prefix, prefix_len) != 0)
2696 continue;
2697
2698 suffix_len = spec[i].suffix_length;
2699 if (suffix_len <= 0)
2700 {
2701 if (name[prefix_len] != 0)
2702 {
2703 if (suffix_len == 0)
2704 continue;
2705 if (name[prefix_len] != '.'
2706 && (suffix_len == -2
2707 || (rela && spec[i].type == SHT_REL)))
2708 continue;
2709 }
2710 }
2711 else
2712 {
2713 if (len < prefix_len + suffix_len)
2714 continue;
2715 if (memcmp (name + len - suffix_len,
2716 spec[i].prefix + prefix_len,
2717 suffix_len) != 0)
2718 continue;
2719 }
2720 return &spec[i];
2721 }
2722
2723 return NULL;
2724 }
2725
2726 const struct bfd_elf_special_section *
2727 _bfd_elf_get_sec_type_attr (bfd *abfd, asection *sec)
2728 {
2729 int i;
2730 const struct bfd_elf_special_section *spec;
2731 const struct elf_backend_data *bed;
2732
2733 /* See if this is one of the special sections. */
2734 if (sec->name == NULL)
2735 return NULL;
2736
2737 bed = get_elf_backend_data (abfd);
2738 spec = bed->special_sections;
2739 if (spec)
2740 {
2741 spec = _bfd_elf_get_special_section (sec->name,
2742 bed->special_sections,
2743 sec->use_rela_p);
2744 if (spec != NULL)
2745 return spec;
2746 }
2747
2748 if (sec->name[0] != '.')
2749 return NULL;
2750
2751 i = sec->name[1] - 'b';
2752 if (i < 0 || i > 'z' - 'b')
2753 return NULL;
2754
2755 spec = special_sections[i];
2756
2757 if (spec == NULL)
2758 return NULL;
2759
2760 return _bfd_elf_get_special_section (sec->name, spec, sec->use_rela_p);
2761 }
2762
2763 bfd_boolean
2764 _bfd_elf_new_section_hook (bfd *abfd, asection *sec)
2765 {
2766 struct bfd_elf_section_data *sdata;
2767 const struct elf_backend_data *bed;
2768 const struct bfd_elf_special_section *ssect;
2769
2770 sdata = (struct bfd_elf_section_data *) sec->used_by_bfd;
2771 if (sdata == NULL)
2772 {
2773 sdata = (struct bfd_elf_section_data *) bfd_zalloc (abfd,
2774 sizeof (*sdata));
2775 if (sdata == NULL)
2776 return FALSE;
2777 sec->used_by_bfd = sdata;
2778 }
2779
2780 /* Indicate whether or not this section should use RELA relocations. */
2781 bed = get_elf_backend_data (abfd);
2782 sec->use_rela_p = bed->default_use_rela_p;
2783
2784 /* When we read a file, we don't need to set ELF section type and
2785 flags. They will be overridden in _bfd_elf_make_section_from_shdr
2786 anyway. We will set ELF section type and flags for all linker
2787 created sections. If user specifies BFD section flags, we will
2788 set ELF section type and flags based on BFD section flags in
2789 elf_fake_sections. Special handling for .init_array/.fini_array
2790 output sections since they may contain .ctors/.dtors input
2791 sections. We don't want _bfd_elf_init_private_section_data to
2792 copy ELF section type from .ctors/.dtors input sections. */
2793 if (abfd->direction != read_direction
2794 || (sec->flags & SEC_LINKER_CREATED) != 0)
2795 {
2796 ssect = (*bed->get_sec_type_attr) (abfd, sec);
2797 if (ssect != NULL
2798 && (!sec->flags
2799 || (sec->flags & SEC_LINKER_CREATED) != 0
2800 || ssect->type == SHT_INIT_ARRAY
2801 || ssect->type == SHT_FINI_ARRAY))
2802 {
2803 elf_section_type (sec) = ssect->type;
2804 elf_section_flags (sec) = ssect->attr;
2805 }
2806 }
2807
2808 return _bfd_generic_new_section_hook (abfd, sec);
2809 }
2810
2811 /* Create a new bfd section from an ELF program header.
2812
2813 Since program segments have no names, we generate a synthetic name
2814 of the form segment<NUM>, where NUM is generally the index in the
2815 program header table. For segments that are split (see below) we
2816 generate the names segment<NUM>a and segment<NUM>b.
2817
2818 Note that some program segments may have a file size that is different than
2819 (less than) the memory size. All this means is that at execution the
2820 system must allocate the amount of memory specified by the memory size,
2821 but only initialize it with the first "file size" bytes read from the
2822 file. This would occur for example, with program segments consisting
2823 of combined data+bss.
2824
2825 To handle the above situation, this routine generates TWO bfd sections
2826 for the single program segment. The first has the length specified by
2827 the file size of the segment, and the second has the length specified
2828 by the difference between the two sizes. In effect, the segment is split
2829 into its initialized and uninitialized parts.
2830
2831 */
2832
2833 bfd_boolean
2834 _bfd_elf_make_section_from_phdr (bfd *abfd,
2835 Elf_Internal_Phdr *hdr,
2836 int hdr_index,
2837 const char *type_name)
2838 {
2839 asection *newsect;
2840 char *name;
2841 char namebuf[64];
2842 size_t len;
2843 int split;
2844
2845 split = ((hdr->p_memsz > 0)
2846 && (hdr->p_filesz > 0)
2847 && (hdr->p_memsz > hdr->p_filesz));
2848
2849 if (hdr->p_filesz > 0)
2850 {
2851 sprintf (namebuf, "%s%d%s", type_name, hdr_index, split ? "a" : "");
2852 len = strlen (namebuf) + 1;
2853 name = (char *) bfd_alloc (abfd, len);
2854 if (!name)
2855 return FALSE;
2856 memcpy (name, namebuf, len);
2857 newsect = bfd_make_section (abfd, name);
2858 if (newsect == NULL)
2859 return FALSE;
2860 newsect->vma = hdr->p_vaddr;
2861 newsect->lma = hdr->p_paddr;
2862 newsect->size = hdr->p_filesz;
2863 newsect->filepos = hdr->p_offset;
2864 newsect->flags |= SEC_HAS_CONTENTS;
2865 newsect->alignment_power = bfd_log2 (hdr->p_align);
2866 if (hdr->p_type == PT_LOAD)
2867 {
2868 newsect->flags |= SEC_ALLOC;
2869 newsect->flags |= SEC_LOAD;
2870 if (hdr->p_flags & PF_X)
2871 {
2872 /* FIXME: all we known is that it has execute PERMISSION,
2873 may be data. */
2874 newsect->flags |= SEC_CODE;
2875 }
2876 }
2877 if (!(hdr->p_flags & PF_W))
2878 {
2879 newsect->flags |= SEC_READONLY;
2880 }
2881 }
2882
2883 if (hdr->p_memsz > hdr->p_filesz)
2884 {
2885 bfd_vma align;
2886
2887 sprintf (namebuf, "%s%d%s", type_name, hdr_index, split ? "b" : "");
2888 len = strlen (namebuf) + 1;
2889 name = (char *) bfd_alloc (abfd, len);
2890 if (!name)
2891 return FALSE;
2892 memcpy (name, namebuf, len);
2893 newsect = bfd_make_section (abfd, name);
2894 if (newsect == NULL)
2895 return FALSE;
2896 newsect->vma = hdr->p_vaddr + hdr->p_filesz;
2897 newsect->lma = hdr->p_paddr + hdr->p_filesz;
2898 newsect->size = hdr->p_memsz - hdr->p_filesz;
2899 newsect->filepos = hdr->p_offset + hdr->p_filesz;
2900 align = newsect->vma & -newsect->vma;
2901 if (align == 0 || align > hdr->p_align)
2902 align = hdr->p_align;
2903 newsect->alignment_power = bfd_log2 (align);
2904 if (hdr->p_type == PT_LOAD)
2905 {
2906 /* Hack for gdb. Segments that have not been modified do
2907 not have their contents written to a core file, on the
2908 assumption that a debugger can find the contents in the
2909 executable. We flag this case by setting the fake
2910 section size to zero. Note that "real" bss sections will
2911 always have their contents dumped to the core file. */
2912 if (bfd_get_format (abfd) == bfd_core)
2913 newsect->size = 0;
2914 newsect->flags |= SEC_ALLOC;
2915 if (hdr->p_flags & PF_X)
2916 newsect->flags |= SEC_CODE;
2917 }
2918 if (!(hdr->p_flags & PF_W))
2919 newsect->flags |= SEC_READONLY;
2920 }
2921
2922 return TRUE;
2923 }
2924
2925 bfd_boolean
2926 bfd_section_from_phdr (bfd *abfd, Elf_Internal_Phdr *hdr, int hdr_index)
2927 {
2928 const struct elf_backend_data *bed;
2929
2930 switch (hdr->p_type)
2931 {
2932 case PT_NULL:
2933 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "null");
2934
2935 case PT_LOAD:
2936 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "load");
2937
2938 case PT_DYNAMIC:
2939 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "dynamic");
2940
2941 case PT_INTERP:
2942 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "interp");
2943
2944 case PT_NOTE:
2945 if (! _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "note"))
2946 return FALSE;
2947 if (! elf_read_notes (abfd, hdr->p_offset, hdr->p_filesz))
2948 return FALSE;
2949 return TRUE;
2950
2951 case PT_SHLIB:
2952 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "shlib");
2953
2954 case PT_PHDR:
2955 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "phdr");
2956
2957 case PT_GNU_EH_FRAME:
2958 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index,
2959 "eh_frame_hdr");
2960
2961 case PT_GNU_STACK:
2962 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "stack");
2963
2964 case PT_GNU_RELRO:
2965 return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "relro");
2966
2967 default:
2968 /* Check for any processor-specific program segment types. */
2969 bed = get_elf_backend_data (abfd);
2970 return bed->elf_backend_section_from_phdr (abfd, hdr, hdr_index, "proc");
2971 }
2972 }
2973
2974 /* Return the REL_HDR for SEC, assuming there is only a single one, either
2975 REL or RELA. */
2976
2977 Elf_Internal_Shdr *
2978 _bfd_elf_single_rel_hdr (asection *sec)
2979 {
2980 if (elf_section_data (sec)->rel.hdr)
2981 {
2982 BFD_ASSERT (elf_section_data (sec)->rela.hdr == NULL);
2983 return elf_section_data (sec)->rel.hdr;
2984 }
2985 else
2986 return elf_section_data (sec)->rela.hdr;
2987 }
2988
2989 static bfd_boolean
2990 _bfd_elf_set_reloc_sh_name (bfd *abfd,
2991 Elf_Internal_Shdr *rel_hdr,
2992 const char *sec_name,
2993 bfd_boolean use_rela_p)
2994 {
2995 char *name = (char *) bfd_alloc (abfd,
2996 sizeof ".rela" + strlen (sec_name));
2997 if (name == NULL)
2998 return FALSE;
2999
3000 sprintf (name, "%s%s", use_rela_p ? ".rela" : ".rel", sec_name);
3001 rel_hdr->sh_name =
3002 (unsigned int) _bfd_elf_strtab_add (elf_shstrtab (abfd), name,
3003 FALSE);
3004 if (rel_hdr->sh_name == (unsigned int) -1)
3005 return FALSE;
3006
3007 return TRUE;
3008 }
3009
3010 /* Allocate and initialize a section-header for a new reloc section,
3011 containing relocations against ASECT. It is stored in RELDATA. If
3012 USE_RELA_P is TRUE, we use RELA relocations; otherwise, we use REL
3013 relocations. */
3014
3015 static bfd_boolean
3016 _bfd_elf_init_reloc_shdr (bfd *abfd,
3017 struct bfd_elf_section_reloc_data *reldata,
3018 const char *sec_name,
3019 bfd_boolean use_rela_p,
3020 bfd_boolean delay_st_name_p)
3021 {
3022 Elf_Internal_Shdr *rel_hdr;
3023 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
3024 bfd_size_type amt;
3025
3026 amt = sizeof (Elf_Internal_Shdr);
3027 BFD_ASSERT (reldata->hdr == NULL);
3028 rel_hdr = bfd_zalloc (abfd, amt);
3029 reldata->hdr = rel_hdr;
3030
3031 if (delay_st_name_p)
3032 rel_hdr->sh_name = (unsigned int) -1;
3033 else if (!_bfd_elf_set_reloc_sh_name (abfd, rel_hdr, sec_name,
3034 use_rela_p))
3035 return FALSE;
3036 rel_hdr->sh_type = use_rela_p ? SHT_RELA : SHT_REL;
3037 rel_hdr->sh_entsize = (use_rela_p
3038 ? bed->s->sizeof_rela
3039 : bed->s->sizeof_rel);
3040 rel_hdr->sh_addralign = (bfd_vma) 1 << bed->s->log_file_align;
3041 rel_hdr->sh_flags = 0;
3042 rel_hdr->sh_addr = 0;
3043 rel_hdr->sh_size = 0;
3044 rel_hdr->sh_offset = 0;
3045
3046 return TRUE;
3047 }
3048
3049 /* Return the default section type based on the passed in section flags. */
3050
3051 int
3052 bfd_elf_get_default_section_type (flagword flags)
3053 {
3054 if ((flags & SEC_ALLOC) != 0
3055 && (flags & (SEC_LOAD | SEC_HAS_CONTENTS)) == 0)
3056 return SHT_NOBITS;
3057 return SHT_PROGBITS;
3058 }
3059
3060 struct fake_section_arg
3061 {
3062 struct bfd_link_info *link_info;
3063 bfd_boolean failed;
3064 };
3065
3066 /* Set up an ELF internal section header for a section. */
3067
3068 static void
3069 elf_fake_sections (bfd *abfd, asection *asect, void *fsarg)
3070 {
3071 struct fake_section_arg *arg = (struct fake_section_arg *)fsarg;
3072 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
3073 struct bfd_elf_section_data *esd = elf_section_data (asect);
3074 Elf_Internal_Shdr *this_hdr;
3075 unsigned int sh_type;
3076 const char *name = asect->name;
3077 bfd_boolean delay_st_name_p = FALSE;
3078
3079 if (arg->failed)
3080 {
3081 /* We already failed; just get out of the bfd_map_over_sections
3082 loop. */
3083 return;
3084 }
3085
3086 this_hdr = &esd->this_hdr;
3087
3088 if (arg->link_info)
3089 {
3090 /* ld: compress DWARF debug sections with names: .debug_*. */
3091 if ((arg->link_info->compress_debug & COMPRESS_DEBUG)
3092 && (asect->flags & SEC_DEBUGGING)
3093 && name[1] == 'd'
3094 && name[6] == '_')
3095 {
3096 /* Set SEC_ELF_COMPRESS to indicate this section should be
3097 compressed. */
3098 asect->flags |= SEC_ELF_COMPRESS;
3099
3100 /* If this section will be compressed, delay adding setion
3101 name to section name section after it is compressed in
3102 _bfd_elf_assign_file_positions_for_non_load. */
3103 delay_st_name_p = TRUE;
3104 }
3105 }
3106 else if ((asect->flags & SEC_ELF_RENAME))
3107 {
3108 /* objcopy: rename output DWARF debug section. */
3109 if ((abfd->flags & (BFD_DECOMPRESS | BFD_COMPRESS_GABI)))
3110 {
3111 /* When we decompress or compress with SHF_COMPRESSED,
3112 convert section name from .zdebug_* to .debug_* if
3113 needed. */
3114 if (name[1] == 'z')
3115 {
3116 char *new_name = convert_zdebug_to_debug (abfd, name);
3117 if (new_name == NULL)
3118 {
3119 arg->failed = TRUE;
3120 return;
3121 }
3122 name = new_name;
3123 }
3124 }
3125 else if (asect->compress_status == COMPRESS_SECTION_DONE)
3126 {
3127 /* PR binutils/18087: Compression does not always make a
3128 section smaller. So only rename the section when
3129 compression has actually taken place. If input section
3130 name is .zdebug_*, we should never compress it again. */
3131 char *new_name = convert_debug_to_zdebug (abfd, name);
3132 if (new_name == NULL)
3133 {
3134 arg->failed = TRUE;
3135 return;
3136 }
3137 BFD_ASSERT (name[1] != 'z');
3138 name = new_name;
3139 }
3140 }
3141
3142 if (delay_st_name_p)
3143 this_hdr->sh_name = (unsigned int) -1;
3144 else
3145 {
3146 this_hdr->sh_name
3147 = (unsigned int) _bfd_elf_strtab_add (elf_shstrtab (abfd),
3148 name, FALSE);
3149 if (this_hdr->sh_name == (unsigned int) -1)
3150 {
3151 arg->failed = TRUE;
3152 return;
3153 }
3154 }
3155
3156 /* Don't clear sh_flags. Assembler may set additional bits. */
3157
3158 if ((asect->flags & SEC_ALLOC) != 0
3159 || asect->user_set_vma)
3160 this_hdr->sh_addr = asect->vma;
3161 else
3162 this_hdr->sh_addr = 0;
3163
3164 this_hdr->sh_offset = 0;
3165 this_hdr->sh_size = asect->size;
3166 this_hdr->sh_link = 0;
3167 /* PR 17512: file: 0eb809fe, 8b0535ee. */
3168 if (asect->alignment_power >= (sizeof (bfd_vma) * 8) - 1)
3169 {
3170 (*_bfd_error_handler)
3171 (_("%B: error: Alignment power %d of section `%A' is too big"),
3172 abfd, asect, asect->alignment_power);
3173 arg->failed = TRUE;
3174 return;
3175 }
3176 this_hdr->sh_addralign = (bfd_vma) 1 << asect->alignment_power;
3177 /* The sh_entsize and sh_info fields may have been set already by
3178 copy_private_section_data. */
3179
3180 this_hdr->bfd_section = asect;
3181 this_hdr->contents = NULL;
3182
3183 /* If the section type is unspecified, we set it based on
3184 asect->flags. */
3185 if ((asect->flags & SEC_GROUP) != 0)
3186 sh_type = SHT_GROUP;
3187 else
3188 sh_type = bfd_elf_get_default_section_type (asect->flags);
3189
3190 if (this_hdr->sh_type == SHT_NULL)
3191 this_hdr->sh_type = sh_type;
3192 else if (this_hdr->sh_type == SHT_NOBITS
3193 && sh_type == SHT_PROGBITS
3194 && (asect->flags & SEC_ALLOC) != 0)
3195 {
3196 /* Warn if we are changing a NOBITS section to PROGBITS, but
3197 allow the link to proceed. This can happen when users link
3198 non-bss input sections to bss output sections, or emit data
3199 to a bss output section via a linker script. */
3200 (*_bfd_error_handler)
3201 (_("warning: section `%A' type changed to PROGBITS"), asect);
3202 this_hdr->sh_type = sh_type;
3203 }
3204
3205 switch (this_hdr->sh_type)
3206 {
3207 default:
3208 break;
3209
3210 case SHT_STRTAB:
3211 case SHT_INIT_ARRAY:
3212 case SHT_FINI_ARRAY:
3213 case SHT_PREINIT_ARRAY:
3214 case SHT_NOTE:
3215 case SHT_NOBITS:
3216 case SHT_PROGBITS:
3217 break;
3218
3219 case SHT_HASH:
3220 this_hdr->sh_entsize = bed->s->sizeof_hash_entry;
3221 break;
3222
3223 case SHT_DYNSYM:
3224 this_hdr->sh_entsize = bed->s->sizeof_sym;
3225 break;
3226
3227 case SHT_DYNAMIC:
3228 this_hdr->sh_entsize = bed->s->sizeof_dyn;
3229 break;
3230
3231 case SHT_RELA:
3232 if (get_elf_backend_data (abfd)->may_use_rela_p)
3233 this_hdr->sh_entsize = bed->s->sizeof_rela;
3234 break;
3235
3236 case SHT_REL:
3237 if (get_elf_backend_data (abfd)->may_use_rel_p)
3238 this_hdr->sh_entsize = bed->s->sizeof_rel;
3239 break;
3240
3241 case SHT_GNU_versym:
3242 this_hdr->sh_entsize = sizeof (Elf_External_Versym);
3243 break;
3244
3245 case SHT_GNU_verdef:
3246 this_hdr->sh_entsize = 0;
3247 /* objcopy or strip will copy over sh_info, but may not set
3248 cverdefs. The linker will set cverdefs, but sh_info will be
3249 zero. */
3250 if (this_hdr->sh_info == 0)
3251 this_hdr->sh_info = elf_tdata (abfd)->cverdefs;
3252 else
3253 BFD_ASSERT (elf_tdata (abfd)->cverdefs == 0
3254 || this_hdr->sh_info == elf_tdata (abfd)->cverdefs);
3255 break;
3256
3257 case SHT_GNU_verneed:
3258 this_hdr->sh_entsize = 0;
3259 /* objcopy or strip will copy over sh_info, but may not set
3260 cverrefs. The linker will set cverrefs, but sh_info will be
3261 zero. */
3262 if (this_hdr->sh_info == 0)
3263 this_hdr->sh_info = elf_tdata (abfd)->cverrefs;
3264 else
3265 BFD_ASSERT (elf_tdata (abfd)->cverrefs == 0
3266 || this_hdr->sh_info == elf_tdata (abfd)->cverrefs);
3267 break;
3268
3269 case SHT_GROUP:
3270 this_hdr->sh_entsize = GRP_ENTRY_SIZE;
3271 break;
3272
3273 case SHT_GNU_HASH:
3274 this_hdr->sh_entsize = bed->s->arch_size == 64 ? 0 : 4;
3275 break;
3276 }
3277
3278 if ((asect->flags & SEC_ALLOC) != 0)
3279 this_hdr->sh_flags |= SHF_ALLOC;
3280 if ((asect->flags & SEC_READONLY) == 0)
3281 this_hdr->sh_flags |= SHF_WRITE;
3282 if ((asect->flags & SEC_CODE) != 0)
3283 this_hdr->sh_flags |= SHF_EXECINSTR;
3284 if ((asect->flags & SEC_MERGE) != 0)
3285 {
3286 this_hdr->sh_flags |= SHF_MERGE;
3287 this_hdr->sh_entsize = asect->entsize;
3288 }
3289 if ((asect->flags & SEC_STRINGS) != 0)
3290 this_hdr->sh_flags |= SHF_STRINGS;
3291 if ((asect->flags & SEC_GROUP) == 0 && elf_group_name (asect) != NULL)
3292 this_hdr->sh_flags |= SHF_GROUP;
3293 if ((asect->flags & SEC_THREAD_LOCAL) != 0)
3294 {
3295 this_hdr->sh_flags |= SHF_TLS;
3296 if (asect->size == 0
3297 && (asect->flags & SEC_HAS_CONTENTS) == 0)
3298 {
3299 struct bfd_link_order *o = asect->map_tail.link_order;
3300
3301 this_hdr->sh_size = 0;
3302 if (o != NULL)
3303 {
3304 this_hdr->sh_size = o->offset + o->size;
3305 if (this_hdr->sh_size != 0)
3306 this_hdr->sh_type = SHT_NOBITS;
3307 }
3308 }
3309 }
3310 if ((asect->flags & (SEC_GROUP | SEC_EXCLUDE)) == SEC_EXCLUDE)
3311 this_hdr->sh_flags |= SHF_EXCLUDE;
3312
3313 /* If the section has relocs, set up a section header for the
3314 SHT_REL[A] section. If two relocation sections are required for
3315 this section, it is up to the processor-specific back-end to
3316 create the other. */
3317 if ((asect->flags & SEC_RELOC) != 0)
3318 {
3319 /* When doing a relocatable link, create both REL and RELA sections if
3320 needed. */
3321 if (arg->link_info
3322 /* Do the normal setup if we wouldn't create any sections here. */
3323 && esd->rel.count + esd->rela.count > 0
3324 && (bfd_link_relocatable (arg->link_info)
3325 || arg->link_info->emitrelocations))
3326 {
3327 if (esd->rel.count && esd->rel.hdr == NULL
3328 && !_bfd_elf_init_reloc_shdr (abfd, &esd->rel, name, FALSE,
3329 delay_st_name_p))
3330 {
3331 arg->failed = TRUE;
3332 return;
3333 }
3334 if (esd->rela.count && esd->rela.hdr == NULL
3335 && !_bfd_elf_init_reloc_shdr (abfd, &esd->rela, name, TRUE,
3336 delay_st_name_p))
3337 {
3338 arg->failed = TRUE;
3339 return;
3340 }
3341 }
3342 else if (!_bfd_elf_init_reloc_shdr (abfd,
3343 (asect->use_rela_p
3344 ? &esd->rela : &esd->rel),
3345 name,
3346 asect->use_rela_p,
3347 delay_st_name_p))
3348 arg->failed = TRUE;
3349 }
3350
3351 /* Check for processor-specific section types. */
3352 sh_type = this_hdr->sh_type;
3353 if (bed->elf_backend_fake_sections
3354 && !(*bed->elf_backend_fake_sections) (abfd, this_hdr, asect))
3355 arg->failed = TRUE;
3356
3357 if (sh_type == SHT_NOBITS && asect->size != 0)
3358 {
3359 /* Don't change the header type from NOBITS if we are being
3360 called for objcopy --only-keep-debug. */
3361 this_hdr->sh_type = sh_type;
3362 }
3363 }
3364
3365 /* Fill in the contents of a SHT_GROUP section. Called from
3366 _bfd_elf_compute_section_file_positions for gas, objcopy, and
3367 when ELF targets use the generic linker, ld. Called for ld -r
3368 from bfd_elf_final_link. */
3369
3370 void
3371 bfd_elf_set_group_contents (bfd *abfd, asection *sec, void *failedptrarg)
3372 {
3373 bfd_boolean *failedptr = (bfd_boolean *) failedptrarg;
3374 asection *elt, *first;
3375 unsigned char *loc;
3376 bfd_boolean gas;
3377
3378 /* Ignore linker created group section. See elfNN_ia64_object_p in
3379 elfxx-ia64.c. */
3380 if (((sec->flags & (SEC_GROUP | SEC_LINKER_CREATED)) != SEC_GROUP)
3381 || *failedptr)
3382 return;
3383
3384 if (elf_section_data (sec)->this_hdr.sh_info == 0)
3385 {
3386 unsigned long symindx = 0;
3387
3388 /* elf_group_id will have been set up by objcopy and the
3389 generic linker. */
3390 if (elf_group_id (sec) != NULL)
3391 symindx = elf_group_id (sec)->udata.i;
3392
3393 if (symindx == 0)
3394 {
3395 /* If called from the assembler, swap_out_syms will have set up
3396 elf_section_syms. */
3397 BFD_ASSERT (elf_section_syms (abfd) != NULL);
3398 symindx = elf_section_syms (abfd)[sec->index]->udata.i;
3399 }
3400 elf_section_data (sec)->this_hdr.sh_info = symindx;
3401 }
3402 else if (elf_section_data (sec)->this_hdr.sh_info == (unsigned int) -2)
3403 {
3404 /* The ELF backend linker sets sh_info to -2 when the group
3405 signature symbol is global, and thus the index can't be
3406 set until all local symbols are output. */
3407 asection *igroup = elf_sec_group (elf_next_in_group (sec));
3408 struct bfd_elf_section_data *sec_data = elf_section_data (igroup);
3409 unsigned long symndx = sec_data->this_hdr.sh_info;
3410 unsigned long extsymoff = 0;
3411 struct elf_link_hash_entry *h;
3412
3413 if (!elf_bad_symtab (igroup->owner))
3414 {
3415 Elf_Internal_Shdr *symtab_hdr;
3416
3417 symtab_hdr = &elf_tdata (igroup->owner)->symtab_hdr;
3418 extsymoff = symtab_hdr->sh_info;
3419 }
3420 h = elf_sym_hashes (igroup->owner)[symndx - extsymoff];
3421 while (h->root.type == bfd_link_hash_indirect
3422 || h->root.type == bfd_link_hash_warning)
3423 h = (struct elf_link_hash_entry *) h->root.u.i.link;
3424
3425 elf_section_data (sec)->this_hdr.sh_info = h->indx;
3426 }
3427
3428 /* The contents won't be allocated for "ld -r" or objcopy. */
3429 gas = TRUE;
3430 if (sec->contents == NULL)
3431 {
3432 gas = FALSE;
3433 sec->contents = (unsigned char *) bfd_alloc (abfd, sec->size);
3434
3435 /* Arrange for the section to be written out. */
3436 elf_section_data (sec)->this_hdr.contents = sec->contents;
3437 if (sec->contents == NULL)
3438 {
3439 *failedptr = TRUE;
3440 return;
3441 }
3442 }
3443
3444 loc = sec->contents + sec->size;
3445
3446 /* Get the pointer to the first section in the group that gas
3447 squirreled away here. objcopy arranges for this to be set to the
3448 start of the input section group. */
3449 first = elt = elf_next_in_group (sec);
3450
3451 /* First element is a flag word. Rest of section is elf section
3452 indices for all the sections of the group. Write them backwards
3453 just to keep the group in the same order as given in .section
3454 directives, not that it matters. */
3455 while (elt != NULL)
3456 {
3457 asection *s;
3458
3459 s = elt;
3460 if (!gas)
3461 s = s->output_section;
3462 if (s != NULL
3463 && !bfd_is_abs_section (s))
3464 {
3465 unsigned int idx = elf_section_data (s)->this_idx;
3466
3467 loc -= 4;
3468 H_PUT_32 (abfd, idx, loc);
3469 }
3470 elt = elf_next_in_group (elt);
3471 if (elt == first)
3472 break;
3473 }
3474
3475 if ((loc -= 4) != sec->contents)
3476 abort ();
3477
3478 H_PUT_32 (abfd, sec->flags & SEC_LINK_ONCE ? GRP_COMDAT : 0, loc);
3479 }
3480
3481 /* Return the section which RELOC_SEC applies to. */
3482
3483 asection *
3484 _bfd_elf_get_reloc_section (asection *reloc_sec)
3485 {
3486 const char *name;
3487 unsigned int type;
3488 bfd *abfd;
3489
3490 if (reloc_sec == NULL)
3491 return NULL;
3492
3493 type = elf_section_data (reloc_sec)->this_hdr.sh_type;
3494 if (type != SHT_REL && type != SHT_RELA)
3495 return NULL;
3496
3497 /* We look up the section the relocs apply to by name. */
3498 name = reloc_sec->name;
3499 if (type == SHT_REL)
3500 name += 4;
3501 else
3502 name += 5;
3503
3504 /* If a target needs .got.plt section, relocations in rela.plt/rel.plt
3505 section apply to .got.plt section. */
3506 abfd = reloc_sec->owner;
3507 if (get_elf_backend_data (abfd)->want_got_plt
3508 && strcmp (name, ".plt") == 0)
3509 {
3510 /* .got.plt is a linker created input section. It may be mapped
3511 to some other output section. Try two likely sections. */
3512 name = ".got.plt";
3513 reloc_sec = bfd_get_section_by_name (abfd, name);
3514 if (reloc_sec != NULL)
3515 return reloc_sec;
3516 name = ".got";
3517 }
3518
3519 reloc_sec = bfd_get_section_by_name (abfd, name);
3520 return reloc_sec;
3521 }
3522
3523 /* Assign all ELF section numbers. The dummy first section is handled here
3524 too. The link/info pointers for the standard section types are filled
3525 in here too, while we're at it. */
3526
3527 static bfd_boolean
3528 assign_section_numbers (bfd *abfd, struct bfd_link_info *link_info)
3529 {
3530 struct elf_obj_tdata *t = elf_tdata (abfd);
3531 asection *sec;
3532 unsigned int section_number;
3533 Elf_Internal_Shdr **i_shdrp;
3534 struct bfd_elf_section_data *d;
3535 bfd_boolean need_symtab;
3536
3537 section_number = 1;
3538
3539 _bfd_elf_strtab_clear_all_refs (elf_shstrtab (abfd));
3540
3541 /* SHT_GROUP sections are in relocatable files only. */
3542 if (link_info == NULL || bfd_link_relocatable (link_info))
3543 {
3544 bfd_size_type reloc_count = 0;
3545
3546 /* Put SHT_GROUP sections first. */
3547 for (sec = abfd->sections; sec != NULL; sec = sec->next)
3548 {
3549 d = elf_section_data (sec);
3550
3551 if (d->this_hdr.sh_type == SHT_GROUP)
3552 {
3553 if (sec->flags & SEC_LINKER_CREATED)
3554 {
3555 /* Remove the linker created SHT_GROUP sections. */
3556 bfd_section_list_remove (abfd, sec);
3557 abfd->section_count--;
3558 }
3559 else
3560 d->this_idx = section_number++;
3561 }
3562
3563 /* Count relocations. */
3564 reloc_count += sec->reloc_count;
3565 }
3566
3567 /* Clear HAS_RELOC if there are no relocations. */
3568 if (reloc_count == 0)
3569 abfd->flags &= ~HAS_RELOC;
3570 }
3571
3572 for (sec = abfd->sections; sec; sec = sec->next)
3573 {
3574 d = elf_section_data (sec);
3575
3576 if (d->this_hdr.sh_type != SHT_GROUP)
3577 d->this_idx = section_number++;
3578 if (d->this_hdr.sh_name != (unsigned int) -1)
3579 _bfd_elf_strtab_addref (elf_shstrtab (abfd), d->this_hdr.sh_name);
3580 if (d->rel.hdr)
3581 {
3582 d->rel.idx = section_number++;
3583 if (d->rel.hdr->sh_name != (unsigned int) -1)
3584 _bfd_elf_strtab_addref (elf_shstrtab (abfd), d->rel.hdr->sh_name);
3585 }
3586 else
3587 d->rel.idx = 0;
3588
3589 if (d->rela.hdr)
3590 {
3591 d->rela.idx = section_number++;
3592 if (d->rela.hdr->sh_name != (unsigned int) -1)
3593 _bfd_elf_strtab_addref (elf_shstrtab (abfd), d->rela.hdr->sh_name);
3594 }
3595 else
3596 d->rela.idx = 0;
3597 }
3598
3599 elf_shstrtab_sec (abfd) = section_number++;
3600 _bfd_elf_strtab_addref (elf_shstrtab (abfd), t->shstrtab_hdr.sh_name);
3601 elf_elfheader (abfd)->e_shstrndx = elf_shstrtab_sec (abfd);
3602
3603 need_symtab = (bfd_get_symcount (abfd) > 0
3604 || (link_info == NULL
3605 && ((abfd->flags & (EXEC_P | DYNAMIC | HAS_RELOC))
3606 == HAS_RELOC)));
3607 if (need_symtab)
3608 {
3609 elf_onesymtab (abfd) = section_number++;
3610 _bfd_elf_strtab_addref (elf_shstrtab (abfd), t->symtab_hdr.sh_name);
3611 if (section_number > ((SHN_LORESERVE - 2) & 0xFFFF))
3612 {
3613 elf_section_list * entry;
3614
3615 BFD_ASSERT (elf_symtab_shndx_list (abfd) == NULL);
3616
3617 entry = bfd_zalloc (abfd, sizeof * entry);
3618 entry->ndx = section_number++;
3619 elf_symtab_shndx_list (abfd) = entry;
3620 entry->hdr.sh_name
3621 = (unsigned int) _bfd_elf_strtab_add (elf_shstrtab (abfd),
3622 ".symtab_shndx", FALSE);
3623 if (entry->hdr.sh_name == (unsigned int) -1)
3624 return FALSE;
3625 }
3626 elf_strtab_sec (abfd) = section_number++;
3627 _bfd_elf_strtab_addref (elf_shstrtab (abfd), t->strtab_hdr.sh_name);
3628 }
3629
3630 if (section_number >= SHN_LORESERVE)
3631 {
3632 _bfd_error_handler (_("%B: too many sections: %u"),
3633 abfd, section_number);
3634 return FALSE;
3635 }
3636
3637 elf_numsections (abfd) = section_number;
3638 elf_elfheader (abfd)->e_shnum = section_number;
3639
3640 /* Set up the list of section header pointers, in agreement with the
3641 indices. */
3642 i_shdrp = (Elf_Internal_Shdr **) bfd_zalloc2 (abfd, section_number,
3643 sizeof (Elf_Internal_Shdr *));
3644 if (i_shdrp == NULL)
3645 return FALSE;
3646
3647 i_shdrp[0] = (Elf_Internal_Shdr *) bfd_zalloc (abfd,
3648 sizeof (Elf_Internal_Shdr));
3649 if (i_shdrp[0] == NULL)
3650 {
3651 bfd_release (abfd, i_shdrp);
3652 return FALSE;
3653 }
3654
3655 elf_elfsections (abfd) = i_shdrp;
3656
3657 i_shdrp[elf_shstrtab_sec (abfd)] = &t->shstrtab_hdr;
3658 if (need_symtab)
3659 {
3660 i_shdrp[elf_onesymtab (abfd)] = &t->symtab_hdr;
3661 if (elf_numsections (abfd) > (SHN_LORESERVE & 0xFFFF))
3662 {
3663 elf_section_list * entry = elf_symtab_shndx_list (abfd);
3664 BFD_ASSERT (entry != NULL);
3665 i_shdrp[entry->ndx] = & entry->hdr;
3666 entry->hdr.sh_link = elf_onesymtab (abfd);
3667 }
3668 i_shdrp[elf_strtab_sec (abfd)] = &t->strtab_hdr;
3669 t->symtab_hdr.sh_link = elf_strtab_sec (abfd);
3670 }
3671
3672 for (sec = abfd->sections; sec; sec = sec->next)
3673 {
3674 asection *s;
3675
3676 d = elf_section_data (sec);
3677
3678 i_shdrp[d->this_idx] = &d->this_hdr;
3679 if (d->rel.idx != 0)
3680 i_shdrp[d->rel.idx] = d->rel.hdr;
3681 if (d->rela.idx != 0)
3682 i_shdrp[d->rela.idx] = d->rela.hdr;
3683
3684 /* Fill in the sh_link and sh_info fields while we're at it. */
3685
3686 /* sh_link of a reloc section is the section index of the symbol
3687 table. sh_info is the section index of the section to which
3688 the relocation entries apply. */
3689 if (d->rel.idx != 0)
3690 {
3691 d->rel.hdr->sh_link = elf_onesymtab (abfd);
3692 d->rel.hdr->sh_info = d->this_idx;
3693 d->rel.hdr->sh_flags |= SHF_INFO_LINK;
3694 }
3695 if (d->rela.idx != 0)
3696 {
3697 d->rela.hdr->sh_link = elf_onesymtab (abfd);
3698 d->rela.hdr->sh_info = d->this_idx;
3699 d->rela.hdr->sh_flags |= SHF_INFO_LINK;
3700 }
3701
3702 /* We need to set up sh_link for SHF_LINK_ORDER. */
3703 if ((d->this_hdr.sh_flags & SHF_LINK_ORDER) != 0)
3704 {
3705 s = elf_linked_to_section (sec);
3706 if (s)
3707 {
3708 /* elf_linked_to_section points to the input section. */
3709 if (link_info != NULL)
3710 {
3711 /* Check discarded linkonce section. */
3712 if (discarded_section (s))
3713 {
3714 asection *kept;
3715 (*_bfd_error_handler)
3716 (_("%B: sh_link of section `%A' points to discarded section `%A' of `%B'"),
3717 abfd, d->this_hdr.bfd_section,
3718 s, s->owner);
3719 /* Point to the kept section if it has the same
3720 size as the discarded one. */
3721 kept = _bfd_elf_check_kept_section (s, link_info);
3722 if (kept == NULL)
3723 {
3724 bfd_set_error (bfd_error_bad_value);
3725 return FALSE;
3726 }
3727 s = kept;
3728 }
3729
3730 s = s->output_section;
3731 BFD_ASSERT (s != NULL);
3732 }
3733 else
3734 {
3735 /* Handle objcopy. */
3736 if (s->output_section == NULL)
3737 {
3738 (*_bfd_error_handler)
3739 (_("%B: sh_link of section `%A' points to removed section `%A' of `%B'"),
3740 abfd, d->this_hdr.bfd_section, s, s->owner);
3741 bfd_set_error (bfd_error_bad_value);
3742 return FALSE;
3743 }
3744 s = s->output_section;
3745 }
3746 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
3747 }
3748 else
3749 {
3750 /* PR 290:
3751 The Intel C compiler generates SHT_IA_64_UNWIND with
3752 SHF_LINK_ORDER. But it doesn't set the sh_link or
3753 sh_info fields. Hence we could get the situation
3754 where s is NULL. */
3755 const struct elf_backend_data *bed
3756 = get_elf_backend_data (abfd);
3757 if (bed->link_order_error_handler)
3758 bed->link_order_error_handler
3759 (_("%B: warning: sh_link not set for section `%A'"),
3760 abfd, sec);
3761 }
3762 }
3763
3764 switch (d->this_hdr.sh_type)
3765 {
3766 case SHT_REL:
3767 case SHT_RELA:
3768 /* A reloc section which we are treating as a normal BFD
3769 section. sh_link is the section index of the symbol
3770 table. sh_info is the section index of the section to
3771 which the relocation entries apply. We assume that an
3772 allocated reloc section uses the dynamic symbol table.
3773 FIXME: How can we be sure? */
3774 s = bfd_get_section_by_name (abfd, ".dynsym");
3775 if (s != NULL)
3776 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
3777
3778 s = get_elf_backend_data (abfd)->get_reloc_section (sec);
3779 if (s != NULL)
3780 {
3781 d->this_hdr.sh_info = elf_section_data (s)->this_idx;
3782 d->this_hdr.sh_flags |= SHF_INFO_LINK;
3783 }
3784 break;
3785
3786 case SHT_STRTAB:
3787 /* We assume that a section named .stab*str is a stabs
3788 string section. We look for a section with the same name
3789 but without the trailing ``str'', and set its sh_link
3790 field to point to this section. */
3791 if (CONST_STRNEQ (sec->name, ".stab")
3792 && strcmp (sec->name + strlen (sec->name) - 3, "str") == 0)
3793 {
3794 size_t len;
3795 char *alc;
3796
3797 len = strlen (sec->name);
3798 alc = (char *) bfd_malloc (len - 2);
3799 if (alc == NULL)
3800 return FALSE;
3801 memcpy (alc, sec->name, len - 3);
3802 alc[len - 3] = '\0';
3803 s = bfd_get_section_by_name (abfd, alc);
3804 free (alc);
3805 if (s != NULL)
3806 {
3807 elf_section_data (s)->this_hdr.sh_link = d->this_idx;
3808
3809 /* This is a .stab section. */
3810 if (elf_section_data (s)->this_hdr.sh_entsize == 0)
3811 elf_section_data (s)->this_hdr.sh_entsize
3812 = 4 + 2 * bfd_get_arch_size (abfd) / 8;
3813 }
3814 }
3815 break;
3816
3817 case SHT_DYNAMIC:
3818 case SHT_DYNSYM:
3819 case SHT_GNU_verneed:
3820 case SHT_GNU_verdef:
3821 /* sh_link is the section header index of the string table
3822 used for the dynamic entries, or the symbol table, or the
3823 version strings. */
3824 s = bfd_get_section_by_name (abfd, ".dynstr");
3825 if (s != NULL)
3826 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
3827 break;
3828
3829 case SHT_GNU_LIBLIST:
3830 /* sh_link is the section header index of the prelink library
3831 list used for the dynamic entries, or the symbol table, or
3832 the version strings. */
3833 s = bfd_get_section_by_name (abfd, (sec->flags & SEC_ALLOC)
3834 ? ".dynstr" : ".gnu.libstr");
3835 if (s != NULL)
3836 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
3837 break;
3838
3839 case SHT_HASH:
3840 case SHT_GNU_HASH:
3841 case SHT_GNU_versym:
3842 /* sh_link is the section header index of the symbol table
3843 this hash table or version table is for. */
3844 s = bfd_get_section_by_name (abfd, ".dynsym");
3845 if (s != NULL)
3846 d->this_hdr.sh_link = elf_section_data (s)->this_idx;
3847 break;
3848
3849 case SHT_GROUP:
3850 d->this_hdr.sh_link = elf_onesymtab (abfd);
3851 }
3852 }
3853
3854 /* Delay setting sh_name to _bfd_elf_write_object_contents so that
3855 _bfd_elf_assign_file_positions_for_non_load can convert DWARF
3856 debug section name from .debug_* to .zdebug_* if needed. */
3857
3858 return TRUE;
3859 }
3860
3861 static bfd_boolean
3862 sym_is_global (bfd *abfd, asymbol *sym)
3863 {
3864 /* If the backend has a special mapping, use it. */
3865 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
3866 if (bed->elf_backend_sym_is_global)
3867 return (*bed->elf_backend_sym_is_global) (abfd, sym);
3868
3869 return ((sym->flags & (BSF_GLOBAL | BSF_WEAK | BSF_GNU_UNIQUE)) != 0
3870 || bfd_is_und_section (bfd_get_section (sym))
3871 || bfd_is_com_section (bfd_get_section (sym)));
3872 }
3873
3874 /* Don't output section symbols for sections that are not going to be
3875 output, that are duplicates or there is no BFD section. */
3876
3877 static bfd_boolean
3878 ignore_section_sym (bfd *abfd, asymbol *sym)
3879 {
3880 elf_symbol_type *type_ptr;
3881
3882 if ((sym->flags & BSF_SECTION_SYM) == 0)
3883 return FALSE;
3884
3885 type_ptr = elf_symbol_from (abfd, sym);
3886 return ((type_ptr != NULL
3887 && type_ptr->internal_elf_sym.st_shndx != 0
3888 && bfd_is_abs_section (sym->section))
3889 || !(sym->section->owner == abfd
3890 || (sym->section->output_section->owner == abfd
3891 && sym->section->output_offset == 0)
3892 || bfd_is_abs_section (sym->section)));
3893 }
3894
3895 /* Map symbol from it's internal number to the external number, moving
3896 all local symbols to be at the head of the list. */
3897
3898 static bfd_boolean
3899 elf_map_symbols (bfd *abfd, unsigned int *pnum_locals)
3900 {
3901 unsigned int symcount = bfd_get_symcount (abfd);
3902 asymbol **syms = bfd_get_outsymbols (abfd);
3903 asymbol **sect_syms;
3904 unsigned int num_locals = 0;
3905 unsigned int num_globals = 0;
3906 unsigned int num_locals2 = 0;
3907 unsigned int num_globals2 = 0;
3908 unsigned int max_index = 0;
3909 unsigned int idx;
3910 asection *asect;
3911 asymbol **new_syms;
3912
3913 #ifdef DEBUG
3914 fprintf (stderr, "elf_map_symbols\n");
3915 fflush (stderr);
3916 #endif
3917
3918 for (asect = abfd->sections; asect; asect = asect->next)
3919 {
3920 if (max_index < asect->index)
3921 max_index = asect->index;
3922 }
3923
3924 max_index++;
3925 sect_syms = (asymbol **) bfd_zalloc2 (abfd, max_index, sizeof (asymbol *));
3926 if (sect_syms == NULL)
3927 return FALSE;
3928 elf_section_syms (abfd) = sect_syms;
3929 elf_num_section_syms (abfd) = max_index;
3930
3931 /* Init sect_syms entries for any section symbols we have already
3932 decided to output. */
3933 for (idx = 0; idx < symcount; idx++)
3934 {
3935 asymbol *sym = syms[idx];
3936
3937 if ((sym->flags & BSF_SECTION_SYM) != 0
3938 && sym->value == 0
3939 && !ignore_section_sym (abfd, sym)
3940 && !bfd_is_abs_section (sym->section))
3941 {
3942 asection *sec = sym->section;
3943
3944 if (sec->owner != abfd)
3945 sec = sec->output_section;
3946
3947 sect_syms[sec->index] = syms[idx];
3948 }
3949 }
3950
3951 /* Classify all of the symbols. */
3952 for (idx = 0; idx < symcount; idx++)
3953 {
3954 if (sym_is_global (abfd, syms[idx]))
3955 num_globals++;
3956 else if (!ignore_section_sym (abfd, syms[idx]))
3957 num_locals++;
3958 }
3959
3960 /* We will be adding a section symbol for each normal BFD section. Most
3961 sections will already have a section symbol in outsymbols, but
3962 eg. SHT_GROUP sections will not, and we need the section symbol mapped
3963 at least in that case. */
3964 for (asect = abfd->sections; asect; asect = asect->next)
3965 {
3966 if (sect_syms[asect->index] == NULL)
3967 {
3968 if (!sym_is_global (abfd, asect->symbol))
3969 num_locals++;
3970 else
3971 num_globals++;
3972 }
3973 }
3974
3975 /* Now sort the symbols so the local symbols are first. */
3976 new_syms = (asymbol **) bfd_alloc2 (abfd, num_locals + num_globals,
3977 sizeof (asymbol *));
3978
3979 if (new_syms == NULL)
3980 return FALSE;
3981
3982 for (idx = 0; idx < symcount; idx++)
3983 {
3984 asymbol *sym = syms[idx];
3985 unsigned int i;
3986
3987 if (sym_is_global (abfd, sym))
3988 i = num_locals + num_globals2++;
3989 else if (!ignore_section_sym (abfd, sym))
3990 i = num_locals2++;
3991 else
3992 continue;
3993 new_syms[i] = sym;
3994 sym->udata.i = i + 1;
3995 }
3996 for (asect = abfd->sections; asect; asect = asect->next)
3997 {
3998 if (sect_syms[asect->index] == NULL)
3999 {
4000 asymbol *sym = asect->symbol;
4001 unsigned int i;
4002
4003 sect_syms[asect->index] = sym;
4004 if (!sym_is_global (abfd, sym))
4005 i = num_locals2++;
4006 else
4007 i = num_locals + num_globals2++;
4008 new_syms[i] = sym;
4009 sym->udata.i = i + 1;
4010 }
4011 }
4012
4013 bfd_set_symtab (abfd, new_syms, num_locals + num_globals);
4014
4015 *pnum_locals = num_locals;
4016 return TRUE;
4017 }
4018
4019 /* Align to the maximum file alignment that could be required for any
4020 ELF data structure. */
4021
4022 static inline file_ptr
4023 align_file_position (file_ptr off, int align)
4024 {
4025 return (off + align - 1) & ~(align - 1);
4026 }
4027
4028 /* Assign a file position to a section, optionally aligning to the
4029 required section alignment. */
4030
4031 file_ptr
4032 _bfd_elf_assign_file_position_for_section (Elf_Internal_Shdr *i_shdrp,
4033 file_ptr offset,
4034 bfd_boolean align)
4035 {
4036 if (align && i_shdrp->sh_addralign > 1)
4037 offset = BFD_ALIGN (offset, i_shdrp->sh_addralign);
4038 i_shdrp->sh_offset = offset;
4039 if (i_shdrp->bfd_section != NULL)
4040 i_shdrp->bfd_section->filepos = offset;
4041 if (i_shdrp->sh_type != SHT_NOBITS)
4042 offset += i_shdrp->sh_size;
4043 return offset;
4044 }
4045
4046 /* Compute the file positions we are going to put the sections at, and
4047 otherwise prepare to begin writing out the ELF file. If LINK_INFO
4048 is not NULL, this is being called by the ELF backend linker. */
4049
4050 bfd_boolean
4051 _bfd_elf_compute_section_file_positions (bfd *abfd,
4052 struct bfd_link_info *link_info)
4053 {
4054 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
4055 struct fake_section_arg fsargs;
4056 bfd_boolean failed;
4057 struct elf_strtab_hash *strtab = NULL;
4058 Elf_Internal_Shdr *shstrtab_hdr;
4059 bfd_boolean need_symtab;
4060
4061 if (abfd->output_has_begun)
4062 return TRUE;
4063
4064 /* Do any elf backend specific processing first. */
4065 if (bed->elf_backend_begin_write_processing)
4066 (*bed->elf_backend_begin_write_processing) (abfd, link_info);
4067
4068 if (! prep_headers (abfd))
4069 return FALSE;
4070
4071 /* Post process the headers if necessary. */
4072 (*bed->elf_backend_post_process_headers) (abfd, link_info);
4073
4074 fsargs.failed = FALSE;
4075 fsargs.link_info = link_info;
4076 bfd_map_over_sections (abfd, elf_fake_sections, &fsargs);
4077 if (fsargs.failed)
4078 return FALSE;
4079
4080 if (!assign_section_numbers (abfd, link_info))
4081 return FALSE;
4082
4083 /* The backend linker builds symbol table information itself. */
4084 need_symtab = (link_info == NULL
4085 && (bfd_get_symcount (abfd) > 0
4086 || ((abfd->flags & (EXEC_P | DYNAMIC | HAS_RELOC))
4087 == HAS_RELOC)));
4088 if (need_symtab)
4089 {
4090 /* Non-zero if doing a relocatable link. */
4091 int relocatable_p = ! (abfd->flags & (EXEC_P | DYNAMIC));
4092
4093 if (! swap_out_syms (abfd, &strtab, relocatable_p))
4094 return FALSE;
4095 }
4096
4097 failed = FALSE;
4098 if (link_info == NULL)
4099 {
4100 bfd_map_over_sections (abfd, bfd_elf_set_group_contents, &failed);
4101 if (failed)
4102 return FALSE;
4103 }
4104
4105 shstrtab_hdr = &elf_tdata (abfd)->shstrtab_hdr;
4106 /* sh_name was set in prep_headers. */
4107 shstrtab_hdr->sh_type = SHT_STRTAB;
4108 shstrtab_hdr->sh_flags = bed->elf_strtab_flags;
4109 shstrtab_hdr->sh_addr = 0;
4110 /* sh_size is set in _bfd_elf_assign_file_positions_for_non_load. */
4111 shstrtab_hdr->sh_entsize = 0;
4112 shstrtab_hdr->sh_link = 0;
4113 shstrtab_hdr->sh_info = 0;
4114 /* sh_offset is set in _bfd_elf_assign_file_positions_for_non_load. */
4115 shstrtab_hdr->sh_addralign = 1;
4116
4117 if (!assign_file_positions_except_relocs (abfd, link_info))
4118 return FALSE;
4119
4120 if (need_symtab)
4121 {
4122 file_ptr off;
4123 Elf_Internal_Shdr *hdr;
4124
4125 off = elf_next_file_pos (abfd);
4126
4127 hdr = & elf_symtab_hdr (abfd);
4128 off = _bfd_elf_assign_file_position_for_section (hdr, off, TRUE);
4129
4130 if (elf_symtab_shndx_list (abfd) != NULL)
4131 {
4132 hdr = & elf_symtab_shndx_list (abfd)->hdr;
4133 if (hdr->sh_size != 0)
4134 off = _bfd_elf_assign_file_position_for_section (hdr, off, TRUE);
4135 /* FIXME: What about other symtab_shndx sections in the list ? */
4136 }
4137
4138 hdr = &elf_tdata (abfd)->strtab_hdr;
4139 off = _bfd_elf_assign_file_position_for_section (hdr, off, TRUE);
4140
4141 elf_next_file_pos (abfd) = off;
4142
4143 /* Now that we know where the .strtab section goes, write it
4144 out. */
4145 if (bfd_seek (abfd, hdr->sh_offset, SEEK_SET) != 0
4146 || ! _bfd_elf_strtab_emit (abfd, strtab))
4147 return FALSE;
4148 _bfd_elf_strtab_free (strtab);
4149 }
4150
4151 abfd->output_has_begun = TRUE;
4152
4153 return TRUE;
4154 }
4155
4156 /* Make an initial estimate of the size of the program header. If we
4157 get the number wrong here, we'll redo section placement. */
4158
4159 static bfd_size_type
4160 get_program_header_size (bfd *abfd, struct bfd_link_info *info)
4161 {
4162 size_t segs;
4163 asection *s;
4164 const struct elf_backend_data *bed;
4165
4166 /* Assume we will need exactly two PT_LOAD segments: one for text
4167 and one for data. */
4168 segs = 2;
4169
4170 s = bfd_get_section_by_name (abfd, ".interp");
4171 if (s != NULL && (s->flags & SEC_LOAD) != 0)
4172 {
4173 /* If we have a loadable interpreter section, we need a
4174 PT_INTERP segment. In this case, assume we also need a
4175 PT_PHDR segment, although that may not be true for all
4176 targets. */
4177 segs += 2;
4178 }
4179
4180 if (bfd_get_section_by_name (abfd, ".dynamic") != NULL)
4181 {
4182 /* We need a PT_DYNAMIC segment. */
4183 ++segs;
4184 }
4185
4186 if (info != NULL && info->relro)
4187 {
4188 /* We need a PT_GNU_RELRO segment. */
4189 ++segs;
4190 }
4191
4192 if (elf_eh_frame_hdr (abfd))
4193 {
4194 /* We need a PT_GNU_EH_FRAME segment. */
4195 ++segs;
4196 }
4197
4198 if (elf_stack_flags (abfd))
4199 {
4200 /* We need a PT_GNU_STACK segment. */
4201 ++segs;
4202 }
4203
4204 for (s = abfd->sections; s != NULL; s = s->next)
4205 {
4206 if ((s->flags & SEC_LOAD) != 0
4207 && CONST_STRNEQ (s->name, ".note"))
4208 {
4209 /* We need a PT_NOTE segment. */
4210 ++segs;
4211 /* Try to create just one PT_NOTE segment
4212 for all adjacent loadable .note* sections.
4213 gABI requires that within a PT_NOTE segment
4214 (and also inside of each SHT_NOTE section)
4215 each note is padded to a multiple of 4 size,
4216 so we check whether the sections are correctly
4217 aligned. */
4218 if (s->alignment_power == 2)
4219 while (s->next != NULL
4220 && s->next->alignment_power == 2
4221 && (s->next->flags & SEC_LOAD) != 0
4222 && CONST_STRNEQ (s->next->name, ".note"))
4223 s = s->next;
4224 }
4225 }
4226
4227 for (s = abfd->sections; s != NULL; s = s->next)
4228 {
4229 if (s->flags & SEC_THREAD_LOCAL)
4230 {
4231 /* We need a PT_TLS segment. */
4232 ++segs;
4233 break;
4234 }
4235 }
4236
4237 /* Let the backend count up any program headers it might need. */
4238 bed = get_elf_backend_data (abfd);
4239 if (bed->elf_backend_additional_program_headers)
4240 {
4241 int a;
4242
4243 a = (*bed->elf_backend_additional_program_headers) (abfd, info);
4244 if (a == -1)
4245 abort ();
4246 segs += a;
4247 }
4248
4249 return segs * bed->s->sizeof_phdr;
4250 }
4251
4252 /* Find the segment that contains the output_section of section. */
4253
4254 Elf_Internal_Phdr *
4255 _bfd_elf_find_segment_containing_section (bfd * abfd, asection * section)
4256 {
4257 struct elf_segment_map *m;
4258 Elf_Internal_Phdr *p;
4259
4260 for (m = elf_seg_map (abfd), p = elf_tdata (abfd)->phdr;
4261 m != NULL;
4262 m = m->next, p++)
4263 {
4264 int i;
4265
4266 for (i = m->count - 1; i >= 0; i--)
4267 if (m->sections[i] == section)
4268 return p;
4269 }
4270
4271 return NULL;
4272 }
4273
4274 /* Create a mapping from a set of sections to a program segment. */
4275
4276 static struct elf_segment_map *
4277 make_mapping (bfd *abfd,
4278 asection **sections,
4279 unsigned int from,
4280 unsigned int to,
4281 bfd_boolean phdr)
4282 {
4283 struct elf_segment_map *m;
4284 unsigned int i;
4285 asection **hdrpp;
4286 bfd_size_type amt;
4287
4288 amt = sizeof (struct elf_segment_map);
4289 amt += (to - from - 1) * sizeof (asection *);
4290 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
4291 if (m == NULL)
4292 return NULL;
4293 m->next = NULL;
4294 m->p_type = PT_LOAD;
4295 for (i = from, hdrpp = sections + from; i < to; i++, hdrpp++)
4296 m->sections[i - from] = *hdrpp;
4297 m->count = to - from;
4298
4299 if (from == 0 && phdr)
4300 {
4301 /* Include the headers in the first PT_LOAD segment. */
4302 m->includes_filehdr = 1;
4303 m->includes_phdrs = 1;
4304 }
4305
4306 return m;
4307 }
4308
4309 /* Create the PT_DYNAMIC segment, which includes DYNSEC. Returns NULL
4310 on failure. */
4311
4312 struct elf_segment_map *
4313 _bfd_elf_make_dynamic_segment (bfd *abfd, asection *dynsec)
4314 {
4315 struct elf_segment_map *m;
4316
4317 m = (struct elf_segment_map *) bfd_zalloc (abfd,
4318 sizeof (struct elf_segment_map));
4319 if (m == NULL)
4320 return NULL;
4321 m->next = NULL;
4322 m->p_type = PT_DYNAMIC;
4323 m->count = 1;
4324 m->sections[0] = dynsec;
4325
4326 return m;
4327 }
4328
4329 /* Possibly add or remove segments from the segment map. */
4330
4331 static bfd_boolean
4332 elf_modify_segment_map (bfd *abfd,
4333 struct bfd_link_info *info,
4334 bfd_boolean remove_empty_load)
4335 {
4336 struct elf_segment_map **m;
4337 const struct elf_backend_data *bed;
4338
4339 /* The placement algorithm assumes that non allocated sections are
4340 not in PT_LOAD segments. We ensure this here by removing such
4341 sections from the segment map. We also remove excluded
4342 sections. Finally, any PT_LOAD segment without sections is
4343 removed. */
4344 m = &elf_seg_map (abfd);
4345 while (*m)
4346 {
4347 unsigned int i, new_count;
4348
4349 for (new_count = 0, i = 0; i < (*m)->count; i++)
4350 {
4351 if (((*m)->sections[i]->flags & SEC_EXCLUDE) == 0
4352 && (((*m)->sections[i]->flags & SEC_ALLOC) != 0
4353 || (*m)->p_type != PT_LOAD))
4354 {
4355 (*m)->sections[new_count] = (*m)->sections[i];
4356 new_count++;
4357 }
4358 }
4359 (*m)->count = new_count;
4360
4361 if (remove_empty_load && (*m)->p_type == PT_LOAD && (*m)->count == 0)
4362 *m = (*m)->next;
4363 else
4364 m = &(*m)->next;
4365 }
4366
4367 bed = get_elf_backend_data (abfd);
4368 if (bed->elf_backend_modify_segment_map != NULL)
4369 {
4370 if (!(*bed->elf_backend_modify_segment_map) (abfd, info))
4371 return FALSE;
4372 }
4373
4374 return TRUE;
4375 }
4376
4377 /* Set up a mapping from BFD sections to program segments. */
4378
4379 bfd_boolean
4380 _bfd_elf_map_sections_to_segments (bfd *abfd, struct bfd_link_info *info)
4381 {
4382 unsigned int count;
4383 struct elf_segment_map *m;
4384 asection **sections = NULL;
4385 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
4386 bfd_boolean no_user_phdrs;
4387
4388 no_user_phdrs = elf_seg_map (abfd) == NULL;
4389
4390 if (info != NULL)
4391 info->user_phdrs = !no_user_phdrs;
4392
4393 if (no_user_phdrs && bfd_count_sections (abfd) != 0)
4394 {
4395 asection *s;
4396 unsigned int i;
4397 struct elf_segment_map *mfirst;
4398 struct elf_segment_map **pm;
4399 asection *last_hdr;
4400 bfd_vma last_size;
4401 unsigned int phdr_index;
4402 bfd_vma maxpagesize;
4403 asection **hdrpp;
4404 bfd_boolean phdr_in_segment = TRUE;
4405 bfd_boolean writable;
4406 int tls_count = 0;
4407 asection *first_tls = NULL;
4408 asection *dynsec, *eh_frame_hdr;
4409 bfd_size_type amt;
4410 bfd_vma addr_mask, wrap_to = 0;
4411
4412 /* Select the allocated sections, and sort them. */
4413
4414 sections = (asection **) bfd_malloc2 (bfd_count_sections (abfd),
4415 sizeof (asection *));
4416 if (sections == NULL)
4417 goto error_return;
4418
4419 /* Calculate top address, avoiding undefined behaviour of shift
4420 left operator when shift count is equal to size of type
4421 being shifted. */
4422 addr_mask = ((bfd_vma) 1 << (bfd_arch_bits_per_address (abfd) - 1)) - 1;
4423 addr_mask = (addr_mask << 1) + 1;
4424
4425 i = 0;
4426 for (s = abfd->sections; s != NULL; s = s->next)
4427 {
4428 if ((s->flags & SEC_ALLOC) != 0)
4429 {
4430 sections[i] = s;
4431 ++i;
4432 /* A wrapping section potentially clashes with header. */
4433 if (((s->lma + s->size) & addr_mask) < (s->lma & addr_mask))
4434 wrap_to = (s->lma + s->size) & addr_mask;
4435 }
4436 }
4437 BFD_ASSERT (i <= bfd_count_sections (abfd));
4438 count = i;
4439
4440 qsort (sections, (size_t) count, sizeof (asection *), elf_sort_sections);
4441
4442 /* Build the mapping. */
4443
4444 mfirst = NULL;
4445 pm = &mfirst;
4446
4447 /* If we have a .interp section, then create a PT_PHDR segment for
4448 the program headers and a PT_INTERP segment for the .interp
4449 section. */
4450 s = bfd_get_section_by_name (abfd, ".interp");
4451 if (s != NULL && (s->flags & SEC_LOAD) != 0)
4452 {
4453 amt = sizeof (struct elf_segment_map);
4454 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
4455 if (m == NULL)
4456 goto error_return;
4457 m->next = NULL;
4458 m->p_type = PT_PHDR;
4459 /* FIXME: UnixWare and Solaris set PF_X, Irix 5 does not. */
4460 m->p_flags = PF_R | PF_X;
4461 m->p_flags_valid = 1;
4462 m->includes_phdrs = 1;
4463
4464 *pm = m;
4465 pm = &m->next;
4466
4467 amt = sizeof (struct elf_segment_map);
4468 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
4469 if (m == NULL)
4470 goto error_return;
4471 m->next = NULL;
4472 m->p_type = PT_INTERP;
4473 m->count = 1;
4474 m->sections[0] = s;
4475
4476 *pm = m;
4477 pm = &m->next;
4478 }
4479
4480 /* Look through the sections. We put sections in the same program
4481 segment when the start of the second section can be placed within
4482 a few bytes of the end of the first section. */
4483 last_hdr = NULL;
4484 last_size = 0;
4485 phdr_index = 0;
4486 maxpagesize = bed->maxpagesize;
4487 /* PR 17512: file: c8455299.
4488 Avoid divide-by-zero errors later on.
4489 FIXME: Should we abort if the maxpagesize is zero ? */
4490 if (maxpagesize == 0)
4491 maxpagesize = 1;
4492 writable = FALSE;
4493 dynsec = bfd_get_section_by_name (abfd, ".dynamic");
4494 if (dynsec != NULL
4495 && (dynsec->flags & SEC_LOAD) == 0)
4496 dynsec = NULL;
4497
4498 /* Deal with -Ttext or something similar such that the first section
4499 is not adjacent to the program headers. This is an
4500 approximation, since at this point we don't know exactly how many
4501 program headers we will need. */
4502 if (count > 0)
4503 {
4504 bfd_size_type phdr_size = elf_program_header_size (abfd);
4505
4506 if (phdr_size == (bfd_size_type) -1)
4507 phdr_size = get_program_header_size (abfd, info);
4508 phdr_size += bed->s->sizeof_ehdr;
4509 if ((abfd->flags & D_PAGED) == 0
4510 || (sections[0]->lma & addr_mask) < phdr_size
4511 || ((sections[0]->lma & addr_mask) % maxpagesize
4512 < phdr_size % maxpagesize)
4513 || (sections[0]->lma & addr_mask & -maxpagesize) < wrap_to)
4514 phdr_in_segment = FALSE;
4515 }
4516
4517 for (i = 0, hdrpp = sections; i < count; i++, hdrpp++)
4518 {
4519 asection *hdr;
4520 bfd_boolean new_segment;
4521
4522 hdr = *hdrpp;
4523
4524 /* See if this section and the last one will fit in the same
4525 segment. */
4526
4527 if (last_hdr == NULL)
4528 {
4529 /* If we don't have a segment yet, then we don't need a new
4530 one (we build the last one after this loop). */
4531 new_segment = FALSE;
4532 }
4533 else if (last_hdr->lma - last_hdr->vma != hdr->lma - hdr->vma)
4534 {
4535 /* If this section has a different relation between the
4536 virtual address and the load address, then we need a new
4537 segment. */
4538 new_segment = TRUE;
4539 }
4540 else if (hdr->lma < last_hdr->lma + last_size
4541 || last_hdr->lma + last_size < last_hdr->lma)
4542 {
4543 /* If this section has a load address that makes it overlap
4544 the previous section, then we need a new segment. */
4545 new_segment = TRUE;
4546 }
4547 /* In the next test we have to be careful when last_hdr->lma is close
4548 to the end of the address space. If the aligned address wraps
4549 around to the start of the address space, then there are no more
4550 pages left in memory and it is OK to assume that the current
4551 section can be included in the current segment. */
4552 else if ((BFD_ALIGN (last_hdr->lma + last_size, maxpagesize) + maxpagesize
4553 > last_hdr->lma)
4554 && (BFD_ALIGN (last_hdr->lma + last_size, maxpagesize) + maxpagesize
4555 <= hdr->lma))
4556 {
4557 /* If putting this section in this segment would force us to
4558 skip a page in the segment, then we need a new segment. */
4559 new_segment = TRUE;
4560 }
4561 else if ((last_hdr->flags & (SEC_LOAD | SEC_THREAD_LOCAL)) == 0
4562 && (hdr->flags & (SEC_LOAD | SEC_THREAD_LOCAL)) != 0
4563 && ((abfd->flags & D_PAGED) == 0
4564 || (((last_hdr->lma + last_size - 1) & -maxpagesize)
4565 != (hdr->lma & -maxpagesize))))
4566 {
4567 /* We don't want to put a loaded section after a
4568 nonloaded (ie. bss style) section in the same segment
4569 as that will force the non-loaded section to be loaded.
4570 Consider .tbss sections as loaded for this purpose.
4571 However, like the writable/non-writable case below,
4572 if they are on the same page then they must be put
4573 in the same segment. */
4574 new_segment = TRUE;
4575 }
4576 else if ((abfd->flags & D_PAGED) == 0)
4577 {
4578 /* If the file is not demand paged, which means that we
4579 don't require the sections to be correctly aligned in the
4580 file, then there is no other reason for a new segment. */
4581 new_segment = FALSE;
4582 }
4583 else if (! writable
4584 && (hdr->flags & SEC_READONLY) == 0
4585 && (((last_hdr->lma + last_size - 1) & -maxpagesize)
4586 != (hdr->lma & -maxpagesize)))
4587 {
4588 /* We don't want to put a writable section in a read only
4589 segment, unless they are on the same page in memory
4590 anyhow. We already know that the last section does not
4591 bring us past the current section on the page, so the
4592 only case in which the new section is not on the same
4593 page as the previous section is when the previous section
4594 ends precisely on a page boundary. */
4595 new_segment = TRUE;
4596 }
4597 else
4598 {
4599 /* Otherwise, we can use the same segment. */
4600 new_segment = FALSE;
4601 }
4602
4603 /* Allow interested parties a chance to override our decision. */
4604 if (last_hdr != NULL
4605 && info != NULL
4606 && info->callbacks->override_segment_assignment != NULL)
4607 new_segment
4608 = info->callbacks->override_segment_assignment (info, abfd, hdr,
4609 last_hdr,
4610 new_segment);
4611
4612 if (! new_segment)
4613 {
4614 if ((hdr->flags & SEC_READONLY) == 0)
4615 writable = TRUE;
4616 last_hdr = hdr;
4617 /* .tbss sections effectively have zero size. */
4618 if ((hdr->flags & (SEC_THREAD_LOCAL | SEC_LOAD))
4619 != SEC_THREAD_LOCAL)
4620 last_size = hdr->size;
4621 else
4622 last_size = 0;
4623 continue;
4624 }
4625
4626 /* We need a new program segment. We must create a new program
4627 header holding all the sections from phdr_index until hdr. */
4628
4629 m = make_mapping (abfd, sections, phdr_index, i, phdr_in_segment);
4630 if (m == NULL)
4631 goto error_return;
4632
4633 *pm = m;
4634 pm = &m->next;
4635
4636 if ((hdr->flags & SEC_READONLY) == 0)
4637 writable = TRUE;
4638 else
4639 writable = FALSE;
4640
4641 last_hdr = hdr;
4642 /* .tbss sections effectively have zero size. */
4643 if ((hdr->flags & (SEC_THREAD_LOCAL | SEC_LOAD)) != SEC_THREAD_LOCAL)
4644 last_size = hdr->size;
4645 else
4646 last_size = 0;
4647 phdr_index = i;
4648 phdr_in_segment = FALSE;
4649 }
4650
4651 /* Create a final PT_LOAD program segment, but not if it's just
4652 for .tbss. */
4653 if (last_hdr != NULL
4654 && (i - phdr_index != 1
4655 || ((last_hdr->flags & (SEC_THREAD_LOCAL | SEC_LOAD))
4656 != SEC_THREAD_LOCAL)))
4657 {
4658 m = make_mapping (abfd, sections, phdr_index, i, phdr_in_segment);
4659 if (m == NULL)
4660 goto error_return;
4661
4662 *pm = m;
4663 pm = &m->next;
4664 }
4665
4666 /* If there is a .dynamic section, throw in a PT_DYNAMIC segment. */
4667 if (dynsec != NULL)
4668 {
4669 m = _bfd_elf_make_dynamic_segment (abfd, dynsec);
4670 if (m == NULL)
4671 goto error_return;
4672 *pm = m;
4673 pm = &m->next;
4674 }
4675
4676 /* For each batch of consecutive loadable .note sections,
4677 add a PT_NOTE segment. We don't use bfd_get_section_by_name,
4678 because if we link together nonloadable .note sections and
4679 loadable .note sections, we will generate two .note sections
4680 in the output file. FIXME: Using names for section types is
4681 bogus anyhow. */
4682 for (s = abfd->sections; s != NULL; s = s->next)
4683 {
4684 if ((s->flags & SEC_LOAD) != 0
4685 && CONST_STRNEQ (s->name, ".note"))
4686 {
4687 asection *s2;
4688
4689 count = 1;
4690 amt = sizeof (struct elf_segment_map);
4691 if (s->alignment_power == 2)
4692 for (s2 = s; s2->next != NULL; s2 = s2->next)
4693 {
4694 if (s2->next->alignment_power == 2
4695 && (s2->next->flags & SEC_LOAD) != 0
4696 && CONST_STRNEQ (s2->next->name, ".note")
4697 && align_power (s2->lma + s2->size, 2)
4698 == s2->next->lma)
4699 count++;
4700 else
4701 break;
4702 }
4703 amt += (count - 1) * sizeof (asection *);
4704 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
4705 if (m == NULL)
4706 goto error_return;
4707 m->next = NULL;
4708 m->p_type = PT_NOTE;
4709 m->count = count;
4710 while (count > 1)
4711 {
4712 m->sections[m->count - count--] = s;
4713 BFD_ASSERT ((s->flags & SEC_THREAD_LOCAL) == 0);
4714 s = s->next;
4715 }
4716 m->sections[m->count - 1] = s;
4717 BFD_ASSERT ((s->flags & SEC_THREAD_LOCAL) == 0);
4718 *pm = m;
4719 pm = &m->next;
4720 }
4721 if (s->flags & SEC_THREAD_LOCAL)
4722 {
4723 if (! tls_count)
4724 first_tls = s;
4725 tls_count++;
4726 }
4727 }
4728
4729 /* If there are any SHF_TLS output sections, add PT_TLS segment. */
4730 if (tls_count > 0)
4731 {
4732 amt = sizeof (struct elf_segment_map);
4733 amt += (tls_count - 1) * sizeof (asection *);
4734 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
4735 if (m == NULL)
4736 goto error_return;
4737 m->next = NULL;
4738 m->p_type = PT_TLS;
4739 m->count = tls_count;
4740 /* Mandated PF_R. */
4741 m->p_flags = PF_R;
4742 m->p_flags_valid = 1;
4743 s = first_tls;
4744 for (i = 0; i < (unsigned int) tls_count; ++i)
4745 {
4746 if ((s->flags & SEC_THREAD_LOCAL) == 0)
4747 {
4748 _bfd_error_handler
4749 (_("%B: TLS sections are not adjacent:"), abfd);
4750 s = first_tls;
4751 i = 0;
4752 while (i < (unsigned int) tls_count)
4753 {
4754 if ((s->flags & SEC_THREAD_LOCAL) != 0)
4755 {
4756 _bfd_error_handler (_(" TLS: %A"), s);
4757 i++;
4758 }
4759 else
4760 _bfd_error_handler (_(" non-TLS: %A"), s);
4761 s = s->next;
4762 }
4763 bfd_set_error (bfd_error_bad_value);
4764 goto error_return;
4765 }
4766 m->sections[i] = s;
4767 s = s->next;
4768 }
4769
4770 *pm = m;
4771 pm = &m->next;
4772 }
4773
4774 /* If there is a .eh_frame_hdr section, throw in a PT_GNU_EH_FRAME
4775 segment. */
4776 eh_frame_hdr = elf_eh_frame_hdr (abfd);
4777 if (eh_frame_hdr != NULL
4778 && (eh_frame_hdr->output_section->flags & SEC_LOAD) != 0)
4779 {
4780 amt = sizeof (struct elf_segment_map);
4781 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
4782 if (m == NULL)
4783 goto error_return;
4784 m->next = NULL;
4785 m->p_type = PT_GNU_EH_FRAME;
4786 m->count = 1;
4787 m->sections[0] = eh_frame_hdr->output_section;
4788
4789 *pm = m;
4790 pm = &m->next;
4791 }
4792
4793 if (elf_stack_flags (abfd))
4794 {
4795 amt = sizeof (struct elf_segment_map);
4796 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
4797 if (m == NULL)
4798 goto error_return;
4799 m->next = NULL;
4800 m->p_type = PT_GNU_STACK;
4801 m->p_flags = elf_stack_flags (abfd);
4802 m->p_align = bed->stack_align;
4803 m->p_flags_valid = 1;
4804 m->p_align_valid = m->p_align != 0;
4805 if (info->stacksize > 0)
4806 {
4807 m->p_size = info->stacksize;
4808 m->p_size_valid = 1;
4809 }
4810
4811 *pm = m;
4812 pm = &m->next;
4813 }
4814
4815 if (info != NULL && info->relro)
4816 {
4817 for (m = mfirst; m != NULL; m = m->next)
4818 {
4819 if (m->p_type == PT_LOAD
4820 && m->count != 0
4821 && m->sections[0]->vma >= info->relro_start
4822 && m->sections[0]->vma < info->relro_end)
4823 {
4824 i = m->count;
4825 while (--i != (unsigned) -1)
4826 if ((m->sections[i]->flags & (SEC_LOAD | SEC_HAS_CONTENTS))
4827 == (SEC_LOAD | SEC_HAS_CONTENTS))
4828 break;
4829
4830 if (i != (unsigned) -1)
4831 break;
4832 }
4833 }
4834
4835 /* Make a PT_GNU_RELRO segment only when it isn't empty. */
4836 if (m != NULL)
4837 {
4838 amt = sizeof (struct elf_segment_map);
4839 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
4840 if (m == NULL)
4841 goto error_return;
4842 m->next = NULL;
4843 m->p_type = PT_GNU_RELRO;
4844 *pm = m;
4845 pm = &m->next;
4846 }
4847 }
4848
4849 free (sections);
4850 elf_seg_map (abfd) = mfirst;
4851 }
4852
4853 if (!elf_modify_segment_map (abfd, info, no_user_phdrs))
4854 return FALSE;
4855
4856 for (count = 0, m = elf_seg_map (abfd); m != NULL; m = m->next)
4857 ++count;
4858 elf_program_header_size (abfd) = count * bed->s->sizeof_phdr;
4859
4860 return TRUE;
4861
4862 error_return:
4863 if (sections != NULL)
4864 free (sections);
4865 return FALSE;
4866 }
4867
4868 /* Sort sections by address. */
4869
4870 static int
4871 elf_sort_sections (const void *arg1, const void *arg2)
4872 {
4873 const asection *sec1 = *(const asection **) arg1;
4874 const asection *sec2 = *(const asection **) arg2;
4875 bfd_size_type size1, size2;
4876
4877 /* Sort by LMA first, since this is the address used to
4878 place the section into a segment. */
4879 if (sec1->lma < sec2->lma)
4880 return -1;
4881 else if (sec1->lma > sec2->lma)
4882 return 1;
4883
4884 /* Then sort by VMA. Normally the LMA and the VMA will be
4885 the same, and this will do nothing. */
4886 if (sec1->vma < sec2->vma)
4887 return -1;
4888 else if (sec1->vma > sec2->vma)
4889 return 1;
4890
4891 /* Put !SEC_LOAD sections after SEC_LOAD ones. */
4892
4893 #define TOEND(x) (((x)->flags & (SEC_LOAD | SEC_THREAD_LOCAL)) == 0)
4894
4895 if (TOEND (sec1))
4896 {
4897 if (TOEND (sec2))
4898 {
4899 /* If the indicies are the same, do not return 0
4900 here, but continue to try the next comparison. */
4901 if (sec1->target_index - sec2->target_index != 0)
4902 return sec1->target_index - sec2->target_index;
4903 }
4904 else
4905 return 1;
4906 }
4907 else if (TOEND (sec2))
4908 return -1;
4909
4910 #undef TOEND
4911
4912 /* Sort by size, to put zero sized sections
4913 before others at the same address. */
4914
4915 size1 = (sec1->flags & SEC_LOAD) ? sec1->size : 0;
4916 size2 = (sec2->flags & SEC_LOAD) ? sec2->size : 0;
4917
4918 if (size1 < size2)
4919 return -1;
4920 if (size1 > size2)
4921 return 1;
4922
4923 return sec1->target_index - sec2->target_index;
4924 }
4925
4926 /* Ian Lance Taylor writes:
4927
4928 We shouldn't be using % with a negative signed number. That's just
4929 not good. We have to make sure either that the number is not
4930 negative, or that the number has an unsigned type. When the types
4931 are all the same size they wind up as unsigned. When file_ptr is a
4932 larger signed type, the arithmetic winds up as signed long long,
4933 which is wrong.
4934
4935 What we're trying to say here is something like ``increase OFF by
4936 the least amount that will cause it to be equal to the VMA modulo
4937 the page size.'' */
4938 /* In other words, something like:
4939
4940 vma_offset = m->sections[0]->vma % bed->maxpagesize;
4941 off_offset = off % bed->maxpagesize;
4942 if (vma_offset < off_offset)
4943 adjustment = vma_offset + bed->maxpagesize - off_offset;
4944 else
4945 adjustment = vma_offset - off_offset;
4946
4947 which can can be collapsed into the expression below. */
4948
4949 static file_ptr
4950 vma_page_aligned_bias (bfd_vma vma, ufile_ptr off, bfd_vma maxpagesize)
4951 {
4952 /* PR binutils/16199: Handle an alignment of zero. */
4953 if (maxpagesize == 0)
4954 maxpagesize = 1;
4955 return ((vma - off) % maxpagesize);
4956 }
4957
4958 static void
4959 print_segment_map (const struct elf_segment_map *m)
4960 {
4961 unsigned int j;
4962 const char *pt = get_segment_type (m->p_type);
4963 char buf[32];
4964
4965 if (pt == NULL)
4966 {
4967 if (m->p_type >= PT_LOPROC && m->p_type <= PT_HIPROC)
4968 sprintf (buf, "LOPROC+%7.7x",
4969 (unsigned int) (m->p_type - PT_LOPROC));
4970 else if (m->p_type >= PT_LOOS && m->p_type <= PT_HIOS)
4971 sprintf (buf, "LOOS+%7.7x",
4972 (unsigned int) (m->p_type - PT_LOOS));
4973 else
4974 snprintf (buf, sizeof (buf), "%8.8x",
4975 (unsigned int) m->p_type);
4976 pt = buf;
4977 }
4978 fflush (stdout);
4979 fprintf (stderr, "%s:", pt);
4980 for (j = 0; j < m->count; j++)
4981 fprintf (stderr, " %s", m->sections [j]->name);
4982 putc ('\n',stderr);
4983 fflush (stderr);
4984 }
4985
4986 static bfd_boolean
4987 write_zeros (bfd *abfd, file_ptr pos, bfd_size_type len)
4988 {
4989 void *buf;
4990 bfd_boolean ret;
4991
4992 if (bfd_seek (abfd, pos, SEEK_SET) != 0)
4993 return FALSE;
4994 buf = bfd_zmalloc (len);
4995 if (buf == NULL)
4996 return FALSE;
4997 ret = bfd_bwrite (buf, len, abfd) == len;
4998 free (buf);
4999 return ret;
5000 }
5001
5002 /* Assign file positions to the sections based on the mapping from
5003 sections to segments. This function also sets up some fields in
5004 the file header. */
5005
5006 static bfd_boolean
5007 assign_file_positions_for_load_sections (bfd *abfd,
5008 struct bfd_link_info *link_info)
5009 {
5010 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
5011 struct elf_segment_map *m;
5012 Elf_Internal_Phdr *phdrs;
5013 Elf_Internal_Phdr *p;
5014 file_ptr off;
5015 bfd_size_type maxpagesize;
5016 unsigned int alloc;
5017 unsigned int i, j;
5018 bfd_vma header_pad = 0;
5019
5020 if (link_info == NULL
5021 && !_bfd_elf_map_sections_to_segments (abfd, link_info))
5022 return FALSE;
5023
5024 alloc = 0;
5025 for (m = elf_seg_map (abfd); m != NULL; m = m->next)
5026 {
5027 ++alloc;
5028 if (m->header_size)
5029 header_pad = m->header_size;
5030 }
5031
5032 if (alloc)
5033 {
5034 elf_elfheader (abfd)->e_phoff = bed->s->sizeof_ehdr;
5035 elf_elfheader (abfd)->e_phentsize = bed->s->sizeof_phdr;
5036 }
5037 else
5038 {
5039 /* PR binutils/12467. */
5040 elf_elfheader (abfd)->e_phoff = 0;
5041 elf_elfheader (abfd)->e_phentsize = 0;
5042 }
5043
5044 elf_elfheader (abfd)->e_phnum = alloc;
5045
5046 if (elf_program_header_size (abfd) == (bfd_size_type) -1)
5047 elf_program_header_size (abfd) = alloc * bed->s->sizeof_phdr;
5048 else
5049 BFD_ASSERT (elf_program_header_size (abfd)
5050 >= alloc * bed->s->sizeof_phdr);
5051
5052 if (alloc == 0)
5053 {
5054 elf_next_file_pos (abfd) = bed->s->sizeof_ehdr;
5055 return TRUE;
5056 }
5057
5058 /* We're writing the size in elf_program_header_size (abfd),
5059 see assign_file_positions_except_relocs, so make sure we have
5060 that amount allocated, with trailing space cleared.
5061 The variable alloc contains the computed need, while
5062 elf_program_header_size (abfd) contains the size used for the
5063 layout.
5064 See ld/emultempl/elf-generic.em:gld${EMULATION_NAME}_map_segments
5065 where the layout is forced to according to a larger size in the
5066 last iterations for the testcase ld-elf/header. */
5067 BFD_ASSERT (elf_program_header_size (abfd) % bed->s->sizeof_phdr
5068 == 0);
5069 phdrs = (Elf_Internal_Phdr *)
5070 bfd_zalloc2 (abfd,
5071 (elf_program_header_size (abfd) / bed->s->sizeof_phdr),
5072 sizeof (Elf_Internal_Phdr));
5073 elf_tdata (abfd)->phdr = phdrs;
5074 if (phdrs == NULL)
5075 return FALSE;
5076
5077 maxpagesize = 1;
5078 if ((abfd->flags & D_PAGED) != 0)
5079 maxpagesize = bed->maxpagesize;
5080
5081 off = bed->s->sizeof_ehdr;
5082 off += alloc * bed->s->sizeof_phdr;
5083 if (header_pad < (bfd_vma) off)
5084 header_pad = 0;
5085 else
5086 header_pad -= off;
5087 off += header_pad;
5088
5089 for (m = elf_seg_map (abfd), p = phdrs, j = 0;
5090 m != NULL;
5091 m = m->next, p++, j++)
5092 {
5093 asection **secpp;
5094 bfd_vma off_adjust;
5095 bfd_boolean no_contents;
5096
5097 /* If elf_segment_map is not from map_sections_to_segments, the
5098 sections may not be correctly ordered. NOTE: sorting should
5099 not be done to the PT_NOTE section of a corefile, which may
5100 contain several pseudo-sections artificially created by bfd.
5101 Sorting these pseudo-sections breaks things badly. */
5102 if (m->count > 1
5103 && !(elf_elfheader (abfd)->e_type == ET_CORE
5104 && m->p_type == PT_NOTE))
5105 qsort (m->sections, (size_t) m->count, sizeof (asection *),
5106 elf_sort_sections);
5107
5108 /* An ELF segment (described by Elf_Internal_Phdr) may contain a
5109 number of sections with contents contributing to both p_filesz
5110 and p_memsz, followed by a number of sections with no contents
5111 that just contribute to p_memsz. In this loop, OFF tracks next
5112 available file offset for PT_LOAD and PT_NOTE segments. */
5113 p->p_type = m->p_type;
5114 p->p_flags = m->p_flags;
5115
5116 if (m->count == 0)
5117 p->p_vaddr = 0;
5118 else
5119 p->p_vaddr = m->sections[0]->vma - m->p_vaddr_offset;
5120
5121 if (m->p_paddr_valid)
5122 p->p_paddr = m->p_paddr;
5123 else if (m->count == 0)
5124 p->p_paddr = 0;
5125 else
5126 p->p_paddr = m->sections[0]->lma - m->p_vaddr_offset;
5127
5128 if (p->p_type == PT_LOAD
5129 && (abfd->flags & D_PAGED) != 0)
5130 {
5131 /* p_align in demand paged PT_LOAD segments effectively stores
5132 the maximum page size. When copying an executable with
5133 objcopy, we set m->p_align from the input file. Use this
5134 value for maxpagesize rather than bed->maxpagesize, which
5135 may be different. Note that we use maxpagesize for PT_TLS
5136 segment alignment later in this function, so we are relying
5137 on at least one PT_LOAD segment appearing before a PT_TLS
5138 segment. */
5139 if (m->p_align_valid)
5140 maxpagesize = m->p_align;
5141
5142 p->p_align = maxpagesize;
5143 }
5144 else if (m->p_align_valid)
5145 p->p_align = m->p_align;
5146 else if (m->count == 0)
5147 p->p_align = 1 << bed->s->log_file_align;
5148 else
5149 p->p_align = 0;
5150
5151 no_contents = FALSE;
5152 off_adjust = 0;
5153 if (p->p_type == PT_LOAD
5154 && m->count > 0)
5155 {
5156 bfd_size_type align;
5157 unsigned int align_power = 0;
5158
5159 if (m->p_align_valid)
5160 align = p->p_align;
5161 else
5162 {
5163 for (i = 0, secpp = m->sections; i < m->count; i++, secpp++)
5164 {
5165 unsigned int secalign;
5166
5167 secalign = bfd_get_section_alignment (abfd, *secpp);
5168 if (secalign > align_power)
5169 align_power = secalign;
5170 }
5171 align = (bfd_size_type) 1 << align_power;
5172 if (align < maxpagesize)
5173 align = maxpagesize;
5174 }
5175
5176 for (i = 0; i < m->count; i++)
5177 if ((m->sections[i]->flags & (SEC_LOAD | SEC_HAS_CONTENTS)) == 0)
5178 /* If we aren't making room for this section, then
5179 it must be SHT_NOBITS regardless of what we've
5180 set via struct bfd_elf_special_section. */
5181 elf_section_type (m->sections[i]) = SHT_NOBITS;
5182
5183 /* Find out whether this segment contains any loadable
5184 sections. */
5185 no_contents = TRUE;
5186 for (i = 0; i < m->count; i++)
5187 if (elf_section_type (m->sections[i]) != SHT_NOBITS)
5188 {
5189 no_contents = FALSE;
5190 break;
5191 }
5192
5193 off_adjust = vma_page_aligned_bias (p->p_vaddr, off, align);
5194 off += off_adjust;
5195 if (no_contents)
5196 {
5197 /* We shouldn't need to align the segment on disk since
5198 the segment doesn't need file space, but the gABI
5199 arguably requires the alignment and glibc ld.so
5200 checks it. So to comply with the alignment
5201 requirement but not waste file space, we adjust
5202 p_offset for just this segment. (OFF_ADJUST is
5203 subtracted from OFF later.) This may put p_offset
5204 past the end of file, but that shouldn't matter. */
5205 }
5206 else
5207 off_adjust = 0;
5208 }
5209 /* Make sure the .dynamic section is the first section in the
5210 PT_DYNAMIC segment. */
5211 else if (p->p_type == PT_DYNAMIC
5212 && m->count > 1
5213 && strcmp (m->sections[0]->name, ".dynamic") != 0)
5214 {
5215 _bfd_error_handler
5216 (_("%B: The first section in the PT_DYNAMIC segment is not the .dynamic section"),
5217 abfd);
5218 bfd_set_error (bfd_error_bad_value);
5219 return FALSE;
5220 }
5221 /* Set the note section type to SHT_NOTE. */
5222 else if (p->p_type == PT_NOTE)
5223 for (i = 0; i < m->count; i++)
5224 elf_section_type (m->sections[i]) = SHT_NOTE;
5225
5226 p->p_offset = 0;
5227 p->p_filesz = 0;
5228 p->p_memsz = 0;
5229
5230 if (m->includes_filehdr)
5231 {
5232 if (!m->p_flags_valid)
5233 p->p_flags |= PF_R;
5234 p->p_filesz = bed->s->sizeof_ehdr;
5235 p->p_memsz = bed->s->sizeof_ehdr;
5236 if (m->count > 0)
5237 {
5238 if (p->p_vaddr < (bfd_vma) off)
5239 {
5240 (*_bfd_error_handler)
5241 (_("%B: Not enough room for program headers, try linking with -N"),
5242 abfd);
5243 bfd_set_error (bfd_error_bad_value);
5244 return FALSE;
5245 }
5246
5247 p->p_vaddr -= off;
5248 if (!m->p_paddr_valid)
5249 p->p_paddr -= off;
5250 }
5251 }
5252
5253 if (m->includes_phdrs)
5254 {
5255 if (!m->p_flags_valid)
5256 p->p_flags |= PF_R;
5257
5258 if (!m->includes_filehdr)
5259 {
5260 p->p_offset = bed->s->sizeof_ehdr;
5261
5262 if (m->count > 0)
5263 {
5264 p->p_vaddr -= off - p->p_offset;
5265 if (!m->p_paddr_valid)
5266 p->p_paddr -= off - p->p_offset;
5267 }
5268 }
5269
5270 p->p_filesz += alloc * bed->s->sizeof_phdr;
5271 p->p_memsz += alloc * bed->s->sizeof_phdr;
5272 if (m->count)
5273 {
5274 p->p_filesz += header_pad;
5275 p->p_memsz += header_pad;
5276 }
5277 }
5278
5279 if (p->p_type == PT_LOAD
5280 || (p->p_type == PT_NOTE && bfd_get_format (abfd) == bfd_core))
5281 {
5282 if (!m->includes_filehdr && !m->includes_phdrs)
5283 p->p_offset = off;
5284 else
5285 {
5286 file_ptr adjust;
5287
5288 adjust = off - (p->p_offset + p->p_filesz);
5289 if (!no_contents)
5290 p->p_filesz += adjust;
5291 p->p_memsz += adjust;
5292 }
5293 }
5294
5295 /* Set up p_filesz, p_memsz, p_align and p_flags from the section
5296 maps. Set filepos for sections in PT_LOAD segments, and in
5297 core files, for sections in PT_NOTE segments.
5298 assign_file_positions_for_non_load_sections will set filepos
5299 for other sections and update p_filesz for other segments. */
5300 for (i = 0, secpp = m->sections; i < m->count; i++, secpp++)
5301 {
5302 asection *sec;
5303 bfd_size_type align;
5304 Elf_Internal_Shdr *this_hdr;
5305
5306 sec = *secpp;
5307 this_hdr = &elf_section_data (sec)->this_hdr;
5308 align = (bfd_size_type) 1 << bfd_get_section_alignment (abfd, sec);
5309
5310 if ((p->p_type == PT_LOAD
5311 || p->p_type == PT_TLS)
5312 && (this_hdr->sh_type != SHT_NOBITS
5313 || ((this_hdr->sh_flags & SHF_ALLOC) != 0
5314 && ((this_hdr->sh_flags & SHF_TLS) == 0
5315 || p->p_type == PT_TLS))))
5316 {
5317 bfd_vma p_start = p->p_paddr;
5318 bfd_vma p_end = p_start + p->p_memsz;
5319 bfd_vma s_start = sec->lma;
5320 bfd_vma adjust = s_start - p_end;
5321
5322 if (adjust != 0
5323 && (s_start < p_end
5324 || p_end < p_start))
5325 {
5326 (*_bfd_error_handler)
5327 (_("%B: section %A lma %#lx adjusted to %#lx"), abfd, sec,
5328 (unsigned long) s_start, (unsigned long) p_end);
5329 adjust = 0;
5330 sec->lma = p_end;
5331 }
5332 p->p_memsz += adjust;
5333
5334 if (this_hdr->sh_type != SHT_NOBITS)
5335 {
5336 if (p->p_filesz + adjust < p->p_memsz)
5337 {
5338 /* We have a PROGBITS section following NOBITS ones.
5339 Allocate file space for the NOBITS section(s) and
5340 zero it. */
5341 adjust = p->p_memsz - p->p_filesz;
5342 if (!write_zeros (abfd, off, adjust))
5343 return FALSE;
5344 }
5345 off += adjust;
5346 p->p_filesz += adjust;
5347 }
5348 }
5349
5350 if (p->p_type == PT_NOTE && bfd_get_format (abfd) == bfd_core)
5351 {
5352 /* The section at i == 0 is the one that actually contains
5353 everything. */
5354 if (i == 0)
5355 {
5356 this_hdr->sh_offset = sec->filepos = off;
5357 off += this_hdr->sh_size;
5358 p->p_filesz = this_hdr->sh_size;
5359 p->p_memsz = 0;
5360 p->p_align = 1;
5361 }
5362 else
5363 {
5364 /* The rest are fake sections that shouldn't be written. */
5365 sec->filepos = 0;
5366 sec->size = 0;
5367 sec->flags = 0;
5368 continue;
5369 }
5370 }
5371 else
5372 {
5373 if (p->p_type == PT_LOAD)
5374 {
5375 this_hdr->sh_offset = sec->filepos = off;
5376 if (this_hdr->sh_type != SHT_NOBITS)
5377 off += this_hdr->sh_size;
5378 }
5379 else if (this_hdr->sh_type == SHT_NOBITS
5380 && (this_hdr->sh_flags & SHF_TLS) != 0
5381 && this_hdr->sh_offset == 0)
5382 {
5383 /* This is a .tbss section that didn't get a PT_LOAD.
5384 (See _bfd_elf_map_sections_to_segments "Create a
5385 final PT_LOAD".) Set sh_offset to the value it
5386 would have if we had created a zero p_filesz and
5387 p_memsz PT_LOAD header for the section. This
5388 also makes the PT_TLS header have the same
5389 p_offset value. */
5390 bfd_vma adjust = vma_page_aligned_bias (this_hdr->sh_addr,
5391 off, align);
5392 this_hdr->sh_offset = sec->filepos = off + adjust;
5393 }
5394
5395 if (this_hdr->sh_type != SHT_NOBITS)
5396 {
5397 p->p_filesz += this_hdr->sh_size;
5398 /* A load section without SHF_ALLOC is something like
5399 a note section in a PT_NOTE segment. These take
5400 file space but are not loaded into memory. */
5401 if ((this_hdr->sh_flags & SHF_ALLOC) != 0)
5402 p->p_memsz += this_hdr->sh_size;
5403 }
5404 else if ((this_hdr->sh_flags & SHF_ALLOC) != 0)
5405 {
5406 if (p->p_type == PT_TLS)
5407 p->p_memsz += this_hdr->sh_size;
5408
5409 /* .tbss is special. It doesn't contribute to p_memsz of
5410 normal segments. */
5411 else if ((this_hdr->sh_flags & SHF_TLS) == 0)
5412 p->p_memsz += this_hdr->sh_size;
5413 }
5414
5415 if (align > p->p_align
5416 && !m->p_align_valid
5417 && (p->p_type != PT_LOAD
5418 || (abfd->flags & D_PAGED) == 0))
5419 p->p_align = align;
5420 }
5421
5422 if (!m->p_flags_valid)
5423 {
5424 p->p_flags |= PF_R;
5425 if ((this_hdr->sh_flags & SHF_EXECINSTR) != 0)
5426 p->p_flags |= PF_X;
5427 if ((this_hdr->sh_flags & SHF_WRITE) != 0)
5428 p->p_flags |= PF_W;
5429 }
5430 }
5431
5432 off -= off_adjust;
5433
5434 /* Check that all sections are in a PT_LOAD segment.
5435 Don't check funky gdb generated core files. */
5436 if (p->p_type == PT_LOAD && bfd_get_format (abfd) != bfd_core)
5437 {
5438 bfd_boolean check_vma = TRUE;
5439
5440 for (i = 1; i < m->count; i++)
5441 if (m->sections[i]->vma == m->sections[i - 1]->vma
5442 && ELF_SECTION_SIZE (&(elf_section_data (m->sections[i])
5443 ->this_hdr), p) != 0
5444 && ELF_SECTION_SIZE (&(elf_section_data (m->sections[i - 1])
5445 ->this_hdr), p) != 0)
5446 {
5447 /* Looks like we have overlays packed into the segment. */
5448 check_vma = FALSE;
5449 break;
5450 }
5451
5452 for (i = 0; i < m->count; i++)
5453 {
5454 Elf_Internal_Shdr *this_hdr;
5455 asection *sec;
5456
5457 sec = m->sections[i];
5458 this_hdr = &(elf_section_data(sec)->this_hdr);
5459 if (!ELF_SECTION_IN_SEGMENT_1 (this_hdr, p, check_vma, 0)
5460 && !ELF_TBSS_SPECIAL (this_hdr, p))
5461 {
5462 (*_bfd_error_handler)
5463 (_("%B: section `%A' can't be allocated in segment %d"),
5464 abfd, sec, j);
5465 print_segment_map (m);
5466 }
5467 }
5468 }
5469 }
5470
5471 elf_next_file_pos (abfd) = off;
5472 return TRUE;
5473 }
5474
5475 /* Assign file positions for the other sections. */
5476
5477 static bfd_boolean
5478 assign_file_positions_for_non_load_sections (bfd *abfd,
5479 struct bfd_link_info *link_info)
5480 {
5481 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
5482 Elf_Internal_Shdr **i_shdrpp;
5483 Elf_Internal_Shdr **hdrpp, **end_hdrpp;
5484 Elf_Internal_Phdr *phdrs;
5485 Elf_Internal_Phdr *p;
5486 struct elf_segment_map *m;
5487 struct elf_segment_map *hdrs_segment;
5488 bfd_vma filehdr_vaddr, filehdr_paddr;
5489 bfd_vma phdrs_vaddr, phdrs_paddr;
5490 file_ptr off;
5491 unsigned int count;
5492
5493 i_shdrpp = elf_elfsections (abfd);
5494 end_hdrpp = i_shdrpp + elf_numsections (abfd);
5495 off = elf_next_file_pos (abfd);
5496 for (hdrpp = i_shdrpp + 1; hdrpp < end_hdrpp; hdrpp++)
5497 {
5498 Elf_Internal_Shdr *hdr;
5499
5500 hdr = *hdrpp;
5501 if (hdr->bfd_section != NULL
5502 && (hdr->bfd_section->filepos != 0
5503 || (hdr->sh_type == SHT_NOBITS
5504 && hdr->contents == NULL)))
5505 BFD_ASSERT (hdr->sh_offset == hdr->bfd_section->filepos);
5506 else if ((hdr->sh_flags & SHF_ALLOC) != 0)
5507 {
5508 if (hdr->sh_size != 0)
5509 (*_bfd_error_handler)
5510 (_("%B: warning: allocated section `%s' not in segment"),
5511 abfd,
5512 (hdr->bfd_section == NULL
5513 ? "*unknown*"
5514 : hdr->bfd_section->name));
5515 /* We don't need to page align empty sections. */
5516 if ((abfd->flags & D_PAGED) != 0 && hdr->sh_size != 0)
5517 off += vma_page_aligned_bias (hdr->sh_addr, off,
5518 bed->maxpagesize);
5519 else
5520 off += vma_page_aligned_bias (hdr->sh_addr, off,
5521 hdr->sh_addralign);
5522 off = _bfd_elf_assign_file_position_for_section (hdr, off,
5523 FALSE);
5524 }
5525 else if (((hdr->sh_type == SHT_REL || hdr->sh_type == SHT_RELA)
5526 && hdr->bfd_section == NULL)
5527 || (hdr->bfd_section != NULL
5528 && (hdr->bfd_section->flags & SEC_ELF_COMPRESS))
5529 /* Compress DWARF debug sections. */
5530 || hdr == i_shdrpp[elf_onesymtab (abfd)]
5531 || (elf_symtab_shndx_list (abfd) != NULL
5532 && hdr == i_shdrpp[elf_symtab_shndx_list (abfd)->ndx])
5533 || hdr == i_shdrpp[elf_strtab_sec (abfd)]
5534 || hdr == i_shdrpp[elf_shstrtab_sec (abfd)])
5535 hdr->sh_offset = -1;
5536 else
5537 off = _bfd_elf_assign_file_position_for_section (hdr, off, TRUE);
5538 }
5539
5540 /* Now that we have set the section file positions, we can set up
5541 the file positions for the non PT_LOAD segments. */
5542 count = 0;
5543 filehdr_vaddr = 0;
5544 filehdr_paddr = 0;
5545 phdrs_vaddr = bed->maxpagesize + bed->s->sizeof_ehdr;
5546 phdrs_paddr = 0;
5547 hdrs_segment = NULL;
5548 phdrs = elf_tdata (abfd)->phdr;
5549 for (m = elf_seg_map (abfd), p = phdrs; m != NULL; m = m->next, p++)
5550 {
5551 ++count;
5552 if (p->p_type != PT_LOAD)
5553 continue;
5554
5555 if (m->includes_filehdr)
5556 {
5557 filehdr_vaddr = p->p_vaddr;
5558 filehdr_paddr = p->p_paddr;
5559 }
5560 if (m->includes_phdrs)
5561 {
5562 phdrs_vaddr = p->p_vaddr;
5563 phdrs_paddr = p->p_paddr;
5564 if (m->includes_filehdr)
5565 {
5566 hdrs_segment = m;
5567 phdrs_vaddr += bed->s->sizeof_ehdr;
5568 phdrs_paddr += bed->s->sizeof_ehdr;
5569 }
5570 }
5571 }
5572
5573 if (hdrs_segment != NULL && link_info != NULL)
5574 {
5575 /* There is a segment that contains both the file headers and the
5576 program headers, so provide a symbol __ehdr_start pointing there.
5577 A program can use this to examine itself robustly. */
5578
5579 struct elf_link_hash_entry *hash
5580 = elf_link_hash_lookup (elf_hash_table (link_info), "__ehdr_start",
5581 FALSE, FALSE, TRUE);
5582 /* If the symbol was referenced and not defined, define it. */
5583 if (hash != NULL
5584 && (hash->root.type == bfd_link_hash_new
5585 || hash->root.type == bfd_link_hash_undefined
5586 || hash->root.type == bfd_link_hash_undefweak
5587 || hash->root.type == bfd_link_hash_common))
5588 {
5589 asection *s = NULL;
5590 if (hdrs_segment->count != 0)
5591 /* The segment contains sections, so use the first one. */
5592 s = hdrs_segment->sections[0];
5593 else
5594 /* Use the first (i.e. lowest-addressed) section in any segment. */
5595 for (m = elf_seg_map (abfd); m != NULL; m = m->next)
5596 if (m->count != 0)
5597 {
5598 s = m->sections[0];
5599 break;
5600 }
5601
5602 if (s != NULL)
5603 {
5604 hash->root.u.def.value = filehdr_vaddr - s->vma;
5605 hash->root.u.def.section = s;
5606 }
5607 else
5608 {
5609 hash->root.u.def.value = filehdr_vaddr;
5610 hash->root.u.def.section = bfd_abs_section_ptr;
5611 }
5612
5613 hash->root.type = bfd_link_hash_defined;
5614 hash->def_regular = 1;
5615 hash->non_elf = 0;
5616 }
5617 }
5618
5619 for (m = elf_seg_map (abfd), p = phdrs; m != NULL; m = m->next, p++)
5620 {
5621 if (p->p_type == PT_GNU_RELRO)
5622 {
5623 const Elf_Internal_Phdr *lp;
5624 struct elf_segment_map *lm;
5625
5626 if (link_info != NULL)
5627 {
5628 /* During linking the range of the RELRO segment is passed
5629 in link_info. */
5630 for (lm = elf_seg_map (abfd), lp = phdrs;
5631 lm != NULL;
5632 lm = lm->next, lp++)
5633 {
5634 if (lp->p_type == PT_LOAD
5635 && lp->p_vaddr < link_info->relro_end
5636 && lm->count != 0
5637 && lm->sections[0]->vma >= link_info->relro_start)
5638 break;
5639 }
5640
5641 BFD_ASSERT (lm != NULL);
5642 }
5643 else
5644 {
5645 /* Otherwise we are copying an executable or shared
5646 library, but we need to use the same linker logic. */
5647 for (lp = phdrs; lp < phdrs + count; ++lp)
5648 {
5649 if (lp->p_type == PT_LOAD
5650 && lp->p_paddr == p->p_paddr)
5651 break;
5652 }
5653 }
5654
5655 if (lp < phdrs + count)
5656 {
5657 p->p_vaddr = lp->p_vaddr;
5658 p->p_paddr = lp->p_paddr;
5659 p->p_offset = lp->p_offset;
5660 if (link_info != NULL)
5661 p->p_filesz = link_info->relro_end - lp->p_vaddr;
5662 else if (m->p_size_valid)
5663 p->p_filesz = m->p_size;
5664 else
5665 abort ();
5666 p->p_memsz = p->p_filesz;
5667 /* Preserve the alignment and flags if they are valid. The
5668 gold linker generates RW/4 for the PT_GNU_RELRO section.
5669 It is better for objcopy/strip to honor these attributes
5670 otherwise gdb will choke when using separate debug files.
5671 */
5672 if (!m->p_align_valid)
5673 p->p_align = 1;
5674 if (!m->p_flags_valid)
5675 p->p_flags = PF_R;
5676 }
5677 else
5678 {
5679 memset (p, 0, sizeof *p);
5680 p->p_type = PT_NULL;
5681 }
5682 }
5683 else if (p->p_type == PT_GNU_STACK)
5684 {
5685 if (m->p_size_valid)
5686 p->p_memsz = m->p_size;
5687 }
5688 else if (m->count != 0)
5689 {
5690 unsigned int i;
5691 if (p->p_type != PT_LOAD
5692 && (p->p_type != PT_NOTE
5693 || bfd_get_format (abfd) != bfd_core))
5694 {
5695 if (m->includes_filehdr || m->includes_phdrs)
5696 {
5697 /* PR 17512: file: 2195325e. */
5698 (*_bfd_error_handler)
5699 (_("%B: warning: non-load segment includes file header and/or program header"),
5700 abfd);
5701 return FALSE;
5702 }
5703
5704 p->p_filesz = 0;
5705 p->p_offset = m->sections[0]->filepos;
5706 for (i = m->count; i-- != 0;)
5707 {
5708 asection *sect = m->sections[i];
5709 Elf_Internal_Shdr *hdr = &elf_section_data (sect)->this_hdr;
5710 if (hdr->sh_type != SHT_NOBITS)
5711 {
5712 p->p_filesz = (sect->filepos - m->sections[0]->filepos
5713 + hdr->sh_size);
5714 break;
5715 }
5716 }
5717 }
5718 }
5719 else if (m->includes_filehdr)
5720 {
5721 p->p_vaddr = filehdr_vaddr;
5722 if (! m->p_paddr_valid)
5723 p->p_paddr = filehdr_paddr;
5724 }
5725 else if (m->includes_phdrs)
5726 {
5727 p->p_vaddr = phdrs_vaddr;
5728 if (! m->p_paddr_valid)
5729 p->p_paddr = phdrs_paddr;
5730 }
5731 }
5732
5733 elf_next_file_pos (abfd) = off;
5734
5735 return TRUE;
5736 }
5737
5738 static elf_section_list *
5739 find_section_in_list (unsigned int i, elf_section_list * list)
5740 {
5741 for (;list != NULL; list = list->next)
5742 if (list->ndx == i)
5743 break;
5744 return list;
5745 }
5746
5747 /* Work out the file positions of all the sections. This is called by
5748 _bfd_elf_compute_section_file_positions. All the section sizes and
5749 VMAs must be known before this is called.
5750
5751 Reloc sections come in two flavours: Those processed specially as
5752 "side-channel" data attached to a section to which they apply, and
5753 those that bfd doesn't process as relocations. The latter sort are
5754 stored in a normal bfd section by bfd_section_from_shdr. We don't
5755 consider the former sort here, unless they form part of the loadable
5756 image. Reloc sections not assigned here will be handled later by
5757 assign_file_positions_for_relocs.
5758
5759 We also don't set the positions of the .symtab and .strtab here. */
5760
5761 static bfd_boolean
5762 assign_file_positions_except_relocs (bfd *abfd,
5763 struct bfd_link_info *link_info)
5764 {
5765 struct elf_obj_tdata *tdata = elf_tdata (abfd);
5766 Elf_Internal_Ehdr *i_ehdrp = elf_elfheader (abfd);
5767 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
5768
5769 if ((abfd->flags & (EXEC_P | DYNAMIC)) == 0
5770 && bfd_get_format (abfd) != bfd_core)
5771 {
5772 Elf_Internal_Shdr ** const i_shdrpp = elf_elfsections (abfd);
5773 unsigned int num_sec = elf_numsections (abfd);
5774 Elf_Internal_Shdr **hdrpp;
5775 unsigned int i;
5776 file_ptr off;
5777
5778 /* Start after the ELF header. */
5779 off = i_ehdrp->e_ehsize;
5780
5781 /* We are not creating an executable, which means that we are
5782 not creating a program header, and that the actual order of
5783 the sections in the file is unimportant. */
5784 for (i = 1, hdrpp = i_shdrpp + 1; i < num_sec; i++, hdrpp++)
5785 {
5786 Elf_Internal_Shdr *hdr;
5787
5788 hdr = *hdrpp;
5789 if (((hdr->sh_type == SHT_REL || hdr->sh_type == SHT_RELA)
5790 && hdr->bfd_section == NULL)
5791 || (hdr->bfd_section != NULL
5792 && (hdr->bfd_section->flags & SEC_ELF_COMPRESS))
5793 /* Compress DWARF debug sections. */
5794 || i == elf_onesymtab (abfd)
5795 || (elf_symtab_shndx_list (abfd) != NULL
5796 && hdr == i_shdrpp[elf_symtab_shndx_list (abfd)->ndx])
5797 || i == elf_strtab_sec (abfd)
5798 || i == elf_shstrtab_sec (abfd))
5799 {
5800 hdr->sh_offset = -1;
5801 }
5802 else
5803 off = _bfd_elf_assign_file_position_for_section (hdr, off, TRUE);
5804 }
5805
5806 elf_next_file_pos (abfd) = off;
5807 }
5808 else
5809 {
5810 unsigned int alloc;
5811
5812 /* Assign file positions for the loaded sections based on the
5813 assignment of sections to segments. */
5814 if (!assign_file_positions_for_load_sections (abfd, link_info))
5815 return FALSE;
5816
5817 /* And for non-load sections. */
5818 if (!assign_file_positions_for_non_load_sections (abfd, link_info))
5819 return FALSE;
5820
5821 if (bed->elf_backend_modify_program_headers != NULL)
5822 {
5823 if (!(*bed->elf_backend_modify_program_headers) (abfd, link_info))
5824 return FALSE;
5825 }
5826
5827 /* Set e_type in ELF header to ET_EXEC for -pie -Ttext-segment=. */
5828 if (link_info != NULL && bfd_link_pie (link_info))
5829 {
5830 unsigned int num_segments = elf_elfheader (abfd)->e_phnum;
5831 Elf_Internal_Phdr *segment = elf_tdata (abfd)->phdr;
5832 Elf_Internal_Phdr *end_segment = &segment[num_segments];
5833
5834 /* Find the lowest p_vaddr in PT_LOAD segments. */
5835 bfd_vma p_vaddr = (bfd_vma) -1;
5836 for (; segment < end_segment; segment++)
5837 if (segment->p_type == PT_LOAD && p_vaddr > segment->p_vaddr)
5838 p_vaddr = segment->p_vaddr;
5839
5840 /* Set e_type to ET_EXEC if the lowest p_vaddr in PT_LOAD
5841 segments is non-zero. */
5842 if (p_vaddr)
5843 i_ehdrp->e_type = ET_EXEC;
5844 }
5845
5846 /* Write out the program headers. */
5847 alloc = elf_program_header_size (abfd) / bed->s->sizeof_phdr;
5848 if (bfd_seek (abfd, (bfd_signed_vma) bed->s->sizeof_ehdr, SEEK_SET) != 0
5849 || bed->s->write_out_phdrs (abfd, tdata->phdr, alloc) != 0)
5850 return FALSE;
5851 }
5852
5853 return TRUE;
5854 }
5855
5856 static bfd_boolean
5857 prep_headers (bfd *abfd)
5858 {
5859 Elf_Internal_Ehdr *i_ehdrp; /* Elf file header, internal form. */
5860 struct elf_strtab_hash *shstrtab;
5861 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
5862
5863 i_ehdrp = elf_elfheader (abfd);
5864
5865 shstrtab = _bfd_elf_strtab_init ();
5866 if (shstrtab == NULL)
5867 return FALSE;
5868
5869 elf_shstrtab (abfd) = shstrtab;
5870
5871 i_ehdrp->e_ident[EI_MAG0] = ELFMAG0;
5872 i_ehdrp->e_ident[EI_MAG1] = ELFMAG1;
5873 i_ehdrp->e_ident[EI_MAG2] = ELFMAG2;
5874 i_ehdrp->e_ident[EI_MAG3] = ELFMAG3;
5875
5876 i_ehdrp->e_ident[EI_CLASS] = bed->s->elfclass;
5877 i_ehdrp->e_ident[EI_DATA] =
5878 bfd_big_endian (abfd) ? ELFDATA2MSB : ELFDATA2LSB;
5879 i_ehdrp->e_ident[EI_VERSION] = bed->s->ev_current;
5880
5881 if ((abfd->flags & DYNAMIC) != 0)
5882 i_ehdrp->e_type = ET_DYN;
5883 else if ((abfd->flags & EXEC_P) != 0)
5884 i_ehdrp->e_type = ET_EXEC;
5885 else if (bfd_get_format (abfd) == bfd_core)
5886 i_ehdrp->e_type = ET_CORE;
5887 else
5888 i_ehdrp->e_type = ET_REL;
5889
5890 switch (bfd_get_arch (abfd))
5891 {
5892 case bfd_arch_unknown:
5893 i_ehdrp->e_machine = EM_NONE;
5894 break;
5895
5896 /* There used to be a long list of cases here, each one setting
5897 e_machine to the same EM_* macro #defined as ELF_MACHINE_CODE
5898 in the corresponding bfd definition. To avoid duplication,
5899 the switch was removed. Machines that need special handling
5900 can generally do it in elf_backend_final_write_processing(),
5901 unless they need the information earlier than the final write.
5902 Such need can generally be supplied by replacing the tests for
5903 e_machine with the conditions used to determine it. */
5904 default:
5905 i_ehdrp->e_machine = bed->elf_machine_code;
5906 }
5907
5908 i_ehdrp->e_version = bed->s->ev_current;
5909 i_ehdrp->e_ehsize = bed->s->sizeof_ehdr;
5910
5911 /* No program header, for now. */
5912 i_ehdrp->e_phoff = 0;
5913 i_ehdrp->e_phentsize = 0;
5914 i_ehdrp->e_phnum = 0;
5915
5916 /* Each bfd section is section header entry. */
5917 i_ehdrp->e_entry = bfd_get_start_address (abfd);
5918 i_ehdrp->e_shentsize = bed->s->sizeof_shdr;
5919
5920 /* If we're building an executable, we'll need a program header table. */
5921 if (abfd->flags & EXEC_P)
5922 /* It all happens later. */
5923 ;
5924 else
5925 {
5926 i_ehdrp->e_phentsize = 0;
5927 i_ehdrp->e_phoff = 0;
5928 }
5929
5930 elf_tdata (abfd)->symtab_hdr.sh_name =
5931 (unsigned int) _bfd_elf_strtab_add (shstrtab, ".symtab", FALSE);
5932 elf_tdata (abfd)->strtab_hdr.sh_name =
5933 (unsigned int) _bfd_elf_strtab_add (shstrtab, ".strtab", FALSE);
5934 elf_tdata (abfd)->shstrtab_hdr.sh_name =
5935 (unsigned int) _bfd_elf_strtab_add (shstrtab, ".shstrtab", FALSE);
5936 if (elf_tdata (abfd)->symtab_hdr.sh_name == (unsigned int) -1
5937 || elf_tdata (abfd)->strtab_hdr.sh_name == (unsigned int) -1
5938 || elf_tdata (abfd)->shstrtab_hdr.sh_name == (unsigned int) -1)
5939 return FALSE;
5940
5941 return TRUE;
5942 }
5943
5944 /* Assign file positions for all the reloc sections which are not part
5945 of the loadable file image, and the file position of section headers. */
5946
5947 static bfd_boolean
5948 _bfd_elf_assign_file_positions_for_non_load (bfd *abfd)
5949 {
5950 file_ptr off;
5951 Elf_Internal_Shdr **shdrpp, **end_shdrpp;
5952 Elf_Internal_Shdr *shdrp;
5953 Elf_Internal_Ehdr *i_ehdrp;
5954 const struct elf_backend_data *bed;
5955
5956 off = elf_next_file_pos (abfd);
5957
5958 shdrpp = elf_elfsections (abfd);
5959 end_shdrpp = shdrpp + elf_numsections (abfd);
5960 for (shdrpp++; shdrpp < end_shdrpp; shdrpp++)
5961 {
5962 shdrp = *shdrpp;
5963 if (shdrp->sh_offset == -1)
5964 {
5965 asection *sec = shdrp->bfd_section;
5966 bfd_boolean is_rel = (shdrp->sh_type == SHT_REL
5967 || shdrp->sh_type == SHT_RELA);
5968 if (is_rel
5969 || (sec != NULL && (sec->flags & SEC_ELF_COMPRESS)))
5970 {
5971 if (!is_rel)
5972 {
5973 const char *name = sec->name;
5974 struct bfd_elf_section_data *d;
5975
5976 /* Compress DWARF debug sections. */
5977 if (!bfd_compress_section (abfd, sec,
5978 shdrp->contents))
5979 return FALSE;
5980
5981 if (sec->compress_status == COMPRESS_SECTION_DONE
5982 && (abfd->flags & BFD_COMPRESS_GABI) == 0)
5983 {
5984 /* If section is compressed with zlib-gnu, convert
5985 section name from .debug_* to .zdebug_*. */
5986 char *new_name
5987 = convert_debug_to_zdebug (abfd, name);
5988 if (new_name == NULL)
5989 return FALSE;
5990 name = new_name;
5991 }
5992 /* Add setion name to section name section. */
5993 if (shdrp->sh_name != (unsigned int) -1)
5994 abort ();
5995 shdrp->sh_name
5996 = (unsigned int) _bfd_elf_strtab_add (elf_shstrtab (abfd),
5997 name, FALSE);
5998 d = elf_section_data (sec);
5999
6000 /* Add reloc setion name to section name section. */
6001 if (d->rel.hdr
6002 && !_bfd_elf_set_reloc_sh_name (abfd,
6003 d->rel.hdr,
6004 name, FALSE))
6005 return FALSE;
6006 if (d->rela.hdr
6007 && !_bfd_elf_set_reloc_sh_name (abfd,
6008 d->rela.hdr,
6009 name, TRUE))
6010 return FALSE;
6011
6012 /* Update section size and contents. */
6013 shdrp->sh_size = sec->size;
6014 shdrp->contents = sec->contents;
6015 shdrp->bfd_section->contents = NULL;
6016 }
6017 off = _bfd_elf_assign_file_position_for_section (shdrp,
6018 off,
6019 TRUE);
6020 }
6021 }
6022 }
6023
6024 /* Place section name section after DWARF debug sections have been
6025 compressed. */
6026 _bfd_elf_strtab_finalize (elf_shstrtab (abfd));
6027 shdrp = &elf_tdata (abfd)->shstrtab_hdr;
6028 shdrp->sh_size = _bfd_elf_strtab_size (elf_shstrtab (abfd));
6029 off = _bfd_elf_assign_file_position_for_section (shdrp, off, TRUE);
6030
6031 /* Place the section headers. */
6032 i_ehdrp = elf_elfheader (abfd);
6033 bed = get_elf_backend_data (abfd);
6034 off = align_file_position (off, 1 << bed->s->log_file_align);
6035 i_ehdrp->e_shoff = off;
6036 off += i_ehdrp->e_shnum * i_ehdrp->e_shentsize;
6037 elf_next_file_pos (abfd) = off;
6038
6039 return TRUE;
6040 }
6041
6042 bfd_boolean
6043 _bfd_elf_write_object_contents (bfd *abfd)
6044 {
6045 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
6046 Elf_Internal_Shdr **i_shdrp;
6047 bfd_boolean failed;
6048 unsigned int count, num_sec;
6049 struct elf_obj_tdata *t;
6050
6051 if (! abfd->output_has_begun
6052 && ! _bfd_elf_compute_section_file_positions (abfd, NULL))
6053 return FALSE;
6054
6055 i_shdrp = elf_elfsections (abfd);
6056
6057 failed = FALSE;
6058 bfd_map_over_sections (abfd, bed->s->write_relocs, &failed);
6059 if (failed)
6060 return FALSE;
6061
6062 if (!_bfd_elf_assign_file_positions_for_non_load (abfd))
6063 return FALSE;
6064
6065 /* After writing the headers, we need to write the sections too... */
6066 num_sec = elf_numsections (abfd);
6067 for (count = 1; count < num_sec; count++)
6068 {
6069 i_shdrp[count]->sh_name
6070 = _bfd_elf_strtab_offset (elf_shstrtab (abfd),
6071 i_shdrp[count]->sh_name);
6072 if (bed->elf_backend_section_processing)
6073 (*bed->elf_backend_section_processing) (abfd, i_shdrp[count]);
6074 if (i_shdrp[count]->contents)
6075 {
6076 bfd_size_type amt = i_shdrp[count]->sh_size;
6077
6078 if (bfd_seek (abfd, i_shdrp[count]->sh_offset, SEEK_SET) != 0
6079 || bfd_bwrite (i_shdrp[count]->contents, amt, abfd) != amt)
6080 return FALSE;
6081 }
6082 }
6083
6084 /* Write out the section header names. */
6085 t = elf_tdata (abfd);
6086 if (elf_shstrtab (abfd) != NULL
6087 && (bfd_seek (abfd, t->shstrtab_hdr.sh_offset, SEEK_SET) != 0
6088 || !_bfd_elf_strtab_emit (abfd, elf_shstrtab (abfd))))
6089 return FALSE;
6090
6091 if (bed->elf_backend_final_write_processing)
6092 (*bed->elf_backend_final_write_processing) (abfd, elf_linker (abfd));
6093
6094 if (!bed->s->write_shdrs_and_ehdr (abfd))
6095 return FALSE;
6096
6097 /* This is last since write_shdrs_and_ehdr can touch i_shdrp[0]. */
6098 if (t->o->build_id.after_write_object_contents != NULL)
6099 return (*t->o->build_id.after_write_object_contents) (abfd);
6100
6101 return TRUE;
6102 }
6103
6104 bfd_boolean
6105 _bfd_elf_write_corefile_contents (bfd *abfd)
6106 {
6107 /* Hopefully this can be done just like an object file. */
6108 return _bfd_elf_write_object_contents (abfd);
6109 }
6110
6111 /* Given a section, search the header to find them. */
6112
6113 unsigned int
6114 _bfd_elf_section_from_bfd_section (bfd *abfd, struct bfd_section *asect)
6115 {
6116 const struct elf_backend_data *bed;
6117 unsigned int sec_index;
6118
6119 if (elf_section_data (asect) != NULL
6120 && elf_section_data (asect)->this_idx != 0)
6121 return elf_section_data (asect)->this_idx;
6122
6123 if (bfd_is_abs_section (asect))
6124 sec_index = SHN_ABS;
6125 else if (bfd_is_com_section (asect))
6126 sec_index = SHN_COMMON;
6127 else if (bfd_is_und_section (asect))
6128 sec_index = SHN_UNDEF;
6129 else
6130 sec_index = SHN_BAD;
6131
6132 bed = get_elf_backend_data (abfd);
6133 if (bed->elf_backend_section_from_bfd_section)
6134 {
6135 int retval = sec_index;
6136
6137 if ((*bed->elf_backend_section_from_bfd_section) (abfd, asect, &retval))
6138 return retval;
6139 }
6140
6141 if (sec_index == SHN_BAD)
6142 bfd_set_error (bfd_error_nonrepresentable_section);
6143
6144 return sec_index;
6145 }
6146
6147 /* Given a BFD symbol, return the index in the ELF symbol table, or -1
6148 on error. */
6149
6150 int
6151 _bfd_elf_symbol_from_bfd_symbol (bfd *abfd, asymbol **asym_ptr_ptr)
6152 {
6153 asymbol *asym_ptr = *asym_ptr_ptr;
6154 int idx;
6155 flagword flags = asym_ptr->flags;
6156
6157 /* When gas creates relocations against local labels, it creates its
6158 own symbol for the section, but does put the symbol into the
6159 symbol chain, so udata is 0. When the linker is generating
6160 relocatable output, this section symbol may be for one of the
6161 input sections rather than the output section. */
6162 if (asym_ptr->udata.i == 0
6163 && (flags & BSF_SECTION_SYM)
6164 && asym_ptr->section)
6165 {
6166 asection *sec;
6167 int indx;
6168
6169 sec = asym_ptr->section;
6170 if (sec->owner != abfd && sec->output_section != NULL)
6171 sec = sec->output_section;
6172 if (sec->owner == abfd
6173 && (indx = sec->index) < elf_num_section_syms (abfd)
6174 && elf_section_syms (abfd)[indx] != NULL)
6175 asym_ptr->udata.i = elf_section_syms (abfd)[indx]->udata.i;
6176 }
6177
6178 idx = asym_ptr->udata.i;
6179
6180 if (idx == 0)
6181 {
6182 /* This case can occur when using --strip-symbol on a symbol
6183 which is used in a relocation entry. */
6184 (*_bfd_error_handler)
6185 (_("%B: symbol `%s' required but not present"),
6186 abfd, bfd_asymbol_name (asym_ptr));
6187 bfd_set_error (bfd_error_no_symbols);
6188 return -1;
6189 }
6190
6191 #if DEBUG & 4
6192 {
6193 fprintf (stderr,
6194 "elf_symbol_from_bfd_symbol 0x%.8lx, name = %s, sym num = %d, flags = 0x%.8lx\n",
6195 (long) asym_ptr, asym_ptr->name, idx, (long) flags);
6196 fflush (stderr);
6197 }
6198 #endif
6199
6200 return idx;
6201 }
6202
6203 /* Rewrite program header information. */
6204
6205 static bfd_boolean
6206 rewrite_elf_program_header (bfd *ibfd, bfd *obfd)
6207 {
6208 Elf_Internal_Ehdr *iehdr;
6209 struct elf_segment_map *map;
6210 struct elf_segment_map *map_first;
6211 struct elf_segment_map **pointer_to_map;
6212 Elf_Internal_Phdr *segment;
6213 asection *section;
6214 unsigned int i;
6215 unsigned int num_segments;
6216 bfd_boolean phdr_included = FALSE;
6217 bfd_boolean p_paddr_valid;
6218 bfd_vma maxpagesize;
6219 struct elf_segment_map *phdr_adjust_seg = NULL;
6220 unsigned int phdr_adjust_num = 0;
6221 const struct elf_backend_data *bed;
6222
6223 bed = get_elf_backend_data (ibfd);
6224 iehdr = elf_elfheader (ibfd);
6225
6226 map_first = NULL;
6227 pointer_to_map = &map_first;
6228
6229 num_segments = elf_elfheader (ibfd)->e_phnum;
6230 maxpagesize = get_elf_backend_data (obfd)->maxpagesize;
6231
6232 /* Returns the end address of the segment + 1. */
6233 #define SEGMENT_END(segment, start) \
6234 (start + (segment->p_memsz > segment->p_filesz \
6235 ? segment->p_memsz : segment->p_filesz))
6236
6237 #define SECTION_SIZE(section, segment) \
6238 (((section->flags & (SEC_HAS_CONTENTS | SEC_THREAD_LOCAL)) \
6239 != SEC_THREAD_LOCAL || segment->p_type == PT_TLS) \
6240 ? section->size : 0)
6241
6242 /* Returns TRUE if the given section is contained within
6243 the given segment. VMA addresses are compared. */
6244 #define IS_CONTAINED_BY_VMA(section, segment) \
6245 (section->vma >= segment->p_vaddr \
6246 && (section->vma + SECTION_SIZE (section, segment) \
6247 <= (SEGMENT_END (segment, segment->p_vaddr))))
6248
6249 /* Returns TRUE if the given section is contained within
6250 the given segment. LMA addresses are compared. */
6251 #define IS_CONTAINED_BY_LMA(section, segment, base) \
6252 (section->lma >= base \
6253 && (section->lma + SECTION_SIZE (section, segment) \
6254 <= SEGMENT_END (segment, base)))
6255
6256 /* Handle PT_NOTE segment. */
6257 #define IS_NOTE(p, s) \
6258 (p->p_type == PT_NOTE \
6259 && elf_section_type (s) == SHT_NOTE \
6260 && (bfd_vma) s->filepos >= p->p_offset \
6261 && ((bfd_vma) s->filepos + s->size \
6262 <= p->p_offset + p->p_filesz))
6263
6264 /* Special case: corefile "NOTE" section containing regs, prpsinfo
6265 etc. */
6266 #define IS_COREFILE_NOTE(p, s) \
6267 (IS_NOTE (p, s) \
6268 && bfd_get_format (ibfd) == bfd_core \
6269 && s->vma == 0 \
6270 && s->lma == 0)
6271
6272 /* The complicated case when p_vaddr is 0 is to handle the Solaris
6273 linker, which generates a PT_INTERP section with p_vaddr and
6274 p_memsz set to 0. */
6275 #define IS_SOLARIS_PT_INTERP(p, s) \
6276 (p->p_vaddr == 0 \
6277 && p->p_paddr == 0 \
6278 && p->p_memsz == 0 \
6279 && p->p_filesz > 0 \
6280 && (s->flags & SEC_HAS_CONTENTS) != 0 \
6281 && s->size > 0 \
6282 && (bfd_vma) s->filepos >= p->p_offset \
6283 && ((bfd_vma) s->filepos + s->size \
6284 <= p->p_offset + p->p_filesz))
6285
6286 /* Decide if the given section should be included in the given segment.
6287 A section will be included if:
6288 1. It is within the address space of the segment -- we use the LMA
6289 if that is set for the segment and the VMA otherwise,
6290 2. It is an allocated section or a NOTE section in a PT_NOTE
6291 segment.
6292 3. There is an output section associated with it,
6293 4. The section has not already been allocated to a previous segment.
6294 5. PT_GNU_STACK segments do not include any sections.
6295 6. PT_TLS segment includes only SHF_TLS sections.
6296 7. SHF_TLS sections are only in PT_TLS or PT_LOAD segments.
6297 8. PT_DYNAMIC should not contain empty sections at the beginning
6298 (with the possible exception of .dynamic). */
6299 #define IS_SECTION_IN_INPUT_SEGMENT(section, segment, bed) \
6300 ((((segment->p_paddr \
6301 ? IS_CONTAINED_BY_LMA (section, segment, segment->p_paddr) \
6302 : IS_CONTAINED_BY_VMA (section, segment)) \
6303 && (section->flags & SEC_ALLOC) != 0) \
6304 || IS_NOTE (segment, section)) \
6305 && segment->p_type != PT_GNU_STACK \
6306 && (segment->p_type != PT_TLS \
6307 || (section->flags & SEC_THREAD_LOCAL)) \
6308 && (segment->p_type == PT_LOAD \
6309 || segment->p_type == PT_TLS \
6310 || (section->flags & SEC_THREAD_LOCAL) == 0) \
6311 && (segment->p_type != PT_DYNAMIC \
6312 || SECTION_SIZE (section, segment) > 0 \
6313 || (segment->p_paddr \
6314 ? segment->p_paddr != section->lma \
6315 : segment->p_vaddr != section->vma) \
6316 || (strcmp (bfd_get_section_name (ibfd, section), ".dynamic") \
6317 == 0)) \
6318 && !section->segment_mark)
6319
6320 /* If the output section of a section in the input segment is NULL,
6321 it is removed from the corresponding output segment. */
6322 #define INCLUDE_SECTION_IN_SEGMENT(section, segment, bed) \
6323 (IS_SECTION_IN_INPUT_SEGMENT (section, segment, bed) \
6324 && section->output_section != NULL)
6325
6326 /* Returns TRUE iff seg1 starts after the end of seg2. */
6327 #define SEGMENT_AFTER_SEGMENT(seg1, seg2, field) \
6328 (seg1->field >= SEGMENT_END (seg2, seg2->field))
6329
6330 /* Returns TRUE iff seg1 and seg2 overlap. Segments overlap iff both
6331 their VMA address ranges and their LMA address ranges overlap.
6332 It is possible to have overlapping VMA ranges without overlapping LMA
6333 ranges. RedBoot images for example can have both .data and .bss mapped
6334 to the same VMA range, but with the .data section mapped to a different
6335 LMA. */
6336 #define SEGMENT_OVERLAPS(seg1, seg2) \
6337 ( !(SEGMENT_AFTER_SEGMENT (seg1, seg2, p_vaddr) \
6338 || SEGMENT_AFTER_SEGMENT (seg2, seg1, p_vaddr)) \
6339 && !(SEGMENT_AFTER_SEGMENT (seg1, seg2, p_paddr) \
6340 || SEGMENT_AFTER_SEGMENT (seg2, seg1, p_paddr)))
6341
6342 /* Initialise the segment mark field. */
6343 for (section = ibfd->sections; section != NULL; section = section->next)
6344 section->segment_mark = FALSE;
6345
6346 /* The Solaris linker creates program headers in which all the
6347 p_paddr fields are zero. When we try to objcopy or strip such a
6348 file, we get confused. Check for this case, and if we find it
6349 don't set the p_paddr_valid fields. */
6350 p_paddr_valid = FALSE;
6351 for (i = 0, segment = elf_tdata (ibfd)->phdr;
6352 i < num_segments;
6353 i++, segment++)
6354 if (segment->p_paddr != 0)
6355 {
6356 p_paddr_valid = TRUE;
6357 break;
6358 }
6359
6360 /* Scan through the segments specified in the program header
6361 of the input BFD. For this first scan we look for overlaps
6362 in the loadable segments. These can be created by weird
6363 parameters to objcopy. Also, fix some solaris weirdness. */
6364 for (i = 0, segment = elf_tdata (ibfd)->phdr;
6365 i < num_segments;
6366 i++, segment++)
6367 {
6368 unsigned int j;
6369 Elf_Internal_Phdr *segment2;
6370
6371 if (segment->p_type == PT_INTERP)
6372 for (section = ibfd->sections; section; section = section->next)
6373 if (IS_SOLARIS_PT_INTERP (segment, section))
6374 {
6375 /* Mininal change so that the normal section to segment
6376 assignment code will work. */
6377 segment->p_vaddr = section->vma;
6378 break;
6379 }
6380
6381 if (segment->p_type != PT_LOAD)
6382 {
6383 /* Remove PT_GNU_RELRO segment. */
6384 if (segment->p_type == PT_GNU_RELRO)
6385 segment->p_type = PT_NULL;
6386 continue;
6387 }
6388
6389 /* Determine if this segment overlaps any previous segments. */
6390 for (j = 0, segment2 = elf_tdata (ibfd)->phdr; j < i; j++, segment2++)
6391 {
6392 bfd_signed_vma extra_length;
6393
6394 if (segment2->p_type != PT_LOAD
6395 || !SEGMENT_OVERLAPS (segment, segment2))
6396 continue;
6397
6398 /* Merge the two segments together. */
6399 if (segment2->p_vaddr < segment->p_vaddr)
6400 {
6401 /* Extend SEGMENT2 to include SEGMENT and then delete
6402 SEGMENT. */
6403 extra_length = (SEGMENT_END (segment, segment->p_vaddr)
6404 - SEGMENT_END (segment2, segment2->p_vaddr));
6405
6406 if (extra_length > 0)
6407 {
6408 segment2->p_memsz += extra_length;
6409 segment2->p_filesz += extra_length;
6410 }
6411
6412 segment->p_type = PT_NULL;
6413
6414 /* Since we have deleted P we must restart the outer loop. */
6415 i = 0;
6416 segment = elf_tdata (ibfd)->phdr;
6417 break;
6418 }
6419 else
6420 {
6421 /* Extend SEGMENT to include SEGMENT2 and then delete
6422 SEGMENT2. */
6423 extra_length = (SEGMENT_END (segment2, segment2->p_vaddr)
6424 - SEGMENT_END (segment, segment->p_vaddr));
6425
6426 if (extra_length > 0)
6427 {
6428 segment->p_memsz += extra_length;
6429 segment->p_filesz += extra_length;
6430 }
6431
6432 segment2->p_type = PT_NULL;
6433 }
6434 }
6435 }
6436
6437 /* The second scan attempts to assign sections to segments. */
6438 for (i = 0, segment = elf_tdata (ibfd)->phdr;
6439 i < num_segments;
6440 i++, segment++)
6441 {
6442 unsigned int section_count;
6443 asection **sections;
6444 asection *output_section;
6445 unsigned int isec;
6446 bfd_vma matching_lma;
6447 bfd_vma suggested_lma;
6448 unsigned int j;
6449 bfd_size_type amt;
6450 asection *first_section;
6451 bfd_boolean first_matching_lma;
6452 bfd_boolean first_suggested_lma;
6453
6454 if (segment->p_type == PT_NULL)
6455 continue;
6456
6457 first_section = NULL;
6458 /* Compute how many sections might be placed into this segment. */
6459 for (section = ibfd->sections, section_count = 0;
6460 section != NULL;
6461 section = section->next)
6462 {
6463 /* Find the first section in the input segment, which may be
6464 removed from the corresponding output segment. */
6465 if (IS_SECTION_IN_INPUT_SEGMENT (section, segment, bed))
6466 {
6467 if (first_section == NULL)
6468 first_section = section;
6469 if (section->output_section != NULL)
6470 ++section_count;
6471 }
6472 }
6473
6474 /* Allocate a segment map big enough to contain
6475 all of the sections we have selected. */
6476 amt = sizeof (struct elf_segment_map);
6477 amt += ((bfd_size_type) section_count - 1) * sizeof (asection *);
6478 map = (struct elf_segment_map *) bfd_zalloc (obfd, amt);
6479 if (map == NULL)
6480 return FALSE;
6481
6482 /* Initialise the fields of the segment map. Default to
6483 using the physical address of the segment in the input BFD. */
6484 map->next = NULL;
6485 map->p_type = segment->p_type;
6486 map->p_flags = segment->p_flags;
6487 map->p_flags_valid = 1;
6488
6489 /* If the first section in the input segment is removed, there is
6490 no need to preserve segment physical address in the corresponding
6491 output segment. */
6492 if (!first_section || first_section->output_section != NULL)
6493 {
6494 map->p_paddr = segment->p_paddr;
6495 map->p_paddr_valid = p_paddr_valid;
6496 }
6497
6498 /* Determine if this segment contains the ELF file header
6499 and if it contains the program headers themselves. */
6500 map->includes_filehdr = (segment->p_offset == 0
6501 && segment->p_filesz >= iehdr->e_ehsize);
6502 map->includes_phdrs = 0;
6503
6504 if (!phdr_included || segment->p_type != PT_LOAD)
6505 {
6506 map->includes_phdrs =
6507 (segment->p_offset <= (bfd_vma) iehdr->e_phoff
6508 && (segment->p_offset + segment->p_filesz
6509 >= ((bfd_vma) iehdr->e_phoff
6510 + iehdr->e_phnum * iehdr->e_phentsize)));
6511
6512 if (segment->p_type == PT_LOAD && map->includes_phdrs)
6513 phdr_included = TRUE;
6514 }
6515
6516 if (section_count == 0)
6517 {
6518 /* Special segments, such as the PT_PHDR segment, may contain
6519 no sections, but ordinary, loadable segments should contain
6520 something. They are allowed by the ELF spec however, so only
6521 a warning is produced. */
6522 if (segment->p_type == PT_LOAD)
6523 (*_bfd_error_handler) (_("\
6524 %B: warning: Empty loadable segment detected, is this intentional ?"),
6525 ibfd);
6526
6527 map->count = 0;
6528 *pointer_to_map = map;
6529 pointer_to_map = &map->next;
6530
6531 continue;
6532 }
6533
6534 /* Now scan the sections in the input BFD again and attempt
6535 to add their corresponding output sections to the segment map.
6536 The problem here is how to handle an output section which has
6537 been moved (ie had its LMA changed). There are four possibilities:
6538
6539 1. None of the sections have been moved.
6540 In this case we can continue to use the segment LMA from the
6541 input BFD.
6542
6543 2. All of the sections have been moved by the same amount.
6544 In this case we can change the segment's LMA to match the LMA
6545 of the first section.
6546
6547 3. Some of the sections have been moved, others have not.
6548 In this case those sections which have not been moved can be
6549 placed in the current segment which will have to have its size,
6550 and possibly its LMA changed, and a new segment or segments will
6551 have to be created to contain the other sections.
6552
6553 4. The sections have been moved, but not by the same amount.
6554 In this case we can change the segment's LMA to match the LMA
6555 of the first section and we will have to create a new segment
6556 or segments to contain the other sections.
6557
6558 In order to save time, we allocate an array to hold the section
6559 pointers that we are interested in. As these sections get assigned
6560 to a segment, they are removed from this array. */
6561
6562 sections = (asection **) bfd_malloc2 (section_count, sizeof (asection *));
6563 if (sections == NULL)
6564 return FALSE;
6565
6566 /* Step One: Scan for segment vs section LMA conflicts.
6567 Also add the sections to the section array allocated above.
6568 Also add the sections to the current segment. In the common
6569 case, where the sections have not been moved, this means that
6570 we have completely filled the segment, and there is nothing
6571 more to do. */
6572 isec = 0;
6573 matching_lma = 0;
6574 suggested_lma = 0;
6575 first_matching_lma = TRUE;
6576 first_suggested_lma = TRUE;
6577
6578 for (section = first_section, j = 0;
6579 section != NULL;
6580 section = section->next)
6581 {
6582 if (INCLUDE_SECTION_IN_SEGMENT (section, segment, bed))
6583 {
6584 output_section = section->output_section;
6585
6586 sections[j++] = section;
6587
6588 /* The Solaris native linker always sets p_paddr to 0.
6589 We try to catch that case here, and set it to the
6590 correct value. Note - some backends require that
6591 p_paddr be left as zero. */
6592 if (!p_paddr_valid
6593 && segment->p_vaddr != 0
6594 && !bed->want_p_paddr_set_to_zero
6595 && isec == 0
6596 && output_section->lma != 0
6597 && output_section->vma == (segment->p_vaddr
6598 + (map->includes_filehdr
6599 ? iehdr->e_ehsize
6600 : 0)
6601 + (map->includes_phdrs
6602 ? (iehdr->e_phnum
6603 * iehdr->e_phentsize)
6604 : 0)))
6605 map->p_paddr = segment->p_vaddr;
6606
6607 /* Match up the physical address of the segment with the
6608 LMA address of the output section. */
6609 if (IS_CONTAINED_BY_LMA (output_section, segment, map->p_paddr)
6610 || IS_COREFILE_NOTE (segment, section)
6611 || (bed->want_p_paddr_set_to_zero
6612 && IS_CONTAINED_BY_VMA (output_section, segment)))
6613 {
6614 if (first_matching_lma || output_section->lma < matching_lma)
6615 {
6616 matching_lma = output_section->lma;
6617 first_matching_lma = FALSE;
6618 }
6619
6620 /* We assume that if the section fits within the segment
6621 then it does not overlap any other section within that
6622 segment. */
6623 map->sections[isec++] = output_section;
6624 }
6625 else if (first_suggested_lma)
6626 {
6627 suggested_lma = output_section->lma;
6628 first_suggested_lma = FALSE;
6629 }
6630
6631 if (j == section_count)
6632 break;
6633 }
6634 }
6635
6636 BFD_ASSERT (j == section_count);
6637
6638 /* Step Two: Adjust the physical address of the current segment,
6639 if necessary. */
6640 if (isec == section_count)
6641 {
6642 /* All of the sections fitted within the segment as currently
6643 specified. This is the default case. Add the segment to
6644 the list of built segments and carry on to process the next
6645 program header in the input BFD. */
6646 map->count = section_count;
6647 *pointer_to_map = map;
6648 pointer_to_map = &map->next;
6649
6650 if (p_paddr_valid
6651 && !bed->want_p_paddr_set_to_zero
6652 && matching_lma != map->p_paddr
6653 && !map->includes_filehdr
6654 && !map->includes_phdrs)
6655 /* There is some padding before the first section in the
6656 segment. So, we must account for that in the output
6657 segment's vma. */
6658 map->p_vaddr_offset = matching_lma - map->p_paddr;
6659
6660 free (sections);
6661 continue;
6662 }
6663 else
6664 {
6665 if (!first_matching_lma)
6666 {
6667 /* At least one section fits inside the current segment.
6668 Keep it, but modify its physical address to match the
6669 LMA of the first section that fitted. */
6670 map->p_paddr = matching_lma;
6671 }
6672 else
6673 {
6674 /* None of the sections fitted inside the current segment.
6675 Change the current segment's physical address to match
6676 the LMA of the first section. */
6677 map->p_paddr = suggested_lma;
6678 }
6679
6680 /* Offset the segment physical address from the lma
6681 to allow for space taken up by elf headers. */
6682 if (map->includes_filehdr)
6683 {
6684 if (map->p_paddr >= iehdr->e_ehsize)
6685 map->p_paddr -= iehdr->e_ehsize;
6686 else
6687 {
6688 map->includes_filehdr = FALSE;
6689 map->includes_phdrs = FALSE;
6690 }
6691 }
6692
6693 if (map->includes_phdrs)
6694 {
6695 if (map->p_paddr >= iehdr->e_phnum * iehdr->e_phentsize)
6696 {
6697 map->p_paddr -= iehdr->e_phnum * iehdr->e_phentsize;
6698
6699 /* iehdr->e_phnum is just an estimate of the number
6700 of program headers that we will need. Make a note
6701 here of the number we used and the segment we chose
6702 to hold these headers, so that we can adjust the
6703 offset when we know the correct value. */
6704 phdr_adjust_num = iehdr->e_phnum;
6705 phdr_adjust_seg = map;
6706 }
6707 else
6708 map->includes_phdrs = FALSE;
6709 }
6710 }
6711
6712 /* Step Three: Loop over the sections again, this time assigning
6713 those that fit to the current segment and removing them from the
6714 sections array; but making sure not to leave large gaps. Once all
6715 possible sections have been assigned to the current segment it is
6716 added to the list of built segments and if sections still remain
6717 to be assigned, a new segment is constructed before repeating
6718 the loop. */
6719 isec = 0;
6720 do
6721 {
6722 map->count = 0;
6723 suggested_lma = 0;
6724 first_suggested_lma = TRUE;
6725
6726 /* Fill the current segment with sections that fit. */
6727 for (j = 0; j < section_count; j++)
6728 {
6729 section = sections[j];
6730
6731 if (section == NULL)
6732 continue;
6733
6734 output_section = section->output_section;
6735
6736 BFD_ASSERT (output_section != NULL);
6737
6738 if (IS_CONTAINED_BY_LMA (output_section, segment, map->p_paddr)
6739 || IS_COREFILE_NOTE (segment, section))
6740 {
6741 if (map->count == 0)
6742 {
6743 /* If the first section in a segment does not start at
6744 the beginning of the segment, then something is
6745 wrong. */
6746 if (output_section->lma
6747 != (map->p_paddr
6748 + (map->includes_filehdr ? iehdr->e_ehsize : 0)
6749 + (map->includes_phdrs
6750 ? iehdr->e_phnum * iehdr->e_phentsize
6751 : 0)))
6752 abort ();
6753 }
6754 else
6755 {
6756 asection *prev_sec;
6757
6758 prev_sec = map->sections[map->count - 1];
6759
6760 /* If the gap between the end of the previous section
6761 and the start of this section is more than
6762 maxpagesize then we need to start a new segment. */
6763 if ((BFD_ALIGN (prev_sec->lma + prev_sec->size,
6764 maxpagesize)
6765 < BFD_ALIGN (output_section->lma, maxpagesize))
6766 || (prev_sec->lma + prev_sec->size
6767 > output_section->lma))
6768 {
6769 if (first_suggested_lma)
6770 {
6771 suggested_lma = output_section->lma;
6772 first_suggested_lma = FALSE;
6773 }
6774
6775 continue;
6776 }
6777 }
6778
6779 map->sections[map->count++] = output_section;
6780 ++isec;
6781 sections[j] = NULL;
6782 section->segment_mark = TRUE;
6783 }
6784 else if (first_suggested_lma)
6785 {
6786 suggested_lma = output_section->lma;
6787 first_suggested_lma = FALSE;
6788 }
6789 }
6790
6791 BFD_ASSERT (map->count > 0);
6792
6793 /* Add the current segment to the list of built segments. */
6794 *pointer_to_map = map;
6795 pointer_to_map = &map->next;
6796
6797 if (isec < section_count)
6798 {
6799 /* We still have not allocated all of the sections to
6800 segments. Create a new segment here, initialise it
6801 and carry on looping. */
6802 amt = sizeof (struct elf_segment_map);
6803 amt += ((bfd_size_type) section_count - 1) * sizeof (asection *);
6804 map = (struct elf_segment_map *) bfd_zalloc (obfd, amt);
6805 if (map == NULL)
6806 {
6807 free (sections);
6808 return FALSE;
6809 }
6810
6811 /* Initialise the fields of the segment map. Set the physical
6812 physical address to the LMA of the first section that has
6813 not yet been assigned. */
6814 map->next = NULL;
6815 map->p_type = segment->p_type;
6816 map->p_flags = segment->p_flags;
6817 map->p_flags_valid = 1;
6818 map->p_paddr = suggested_lma;
6819 map->p_paddr_valid = p_paddr_valid;
6820 map->includes_filehdr = 0;
6821 map->includes_phdrs = 0;
6822 }
6823 }
6824 while (isec < section_count);
6825
6826 free (sections);
6827 }
6828
6829 elf_seg_map (obfd) = map_first;
6830
6831 /* If we had to estimate the number of program headers that were
6832 going to be needed, then check our estimate now and adjust
6833 the offset if necessary. */
6834 if (phdr_adjust_seg != NULL)
6835 {
6836 unsigned int count;
6837
6838 for (count = 0, map = map_first; map != NULL; map = map->next)
6839 count++;
6840
6841 if (count > phdr_adjust_num)
6842 phdr_adjust_seg->p_paddr
6843 -= (count - phdr_adjust_num) * iehdr->e_phentsize;
6844 }
6845
6846 #undef SEGMENT_END
6847 #undef SECTION_SIZE
6848 #undef IS_CONTAINED_BY_VMA
6849 #undef IS_CONTAINED_BY_LMA
6850 #undef IS_NOTE
6851 #undef IS_COREFILE_NOTE
6852 #undef IS_SOLARIS_PT_INTERP
6853 #undef IS_SECTION_IN_INPUT_SEGMENT
6854 #undef INCLUDE_SECTION_IN_SEGMENT
6855 #undef SEGMENT_AFTER_SEGMENT
6856 #undef SEGMENT_OVERLAPS
6857 return TRUE;
6858 }
6859
6860 /* Copy ELF program header information. */
6861
6862 static bfd_boolean
6863 copy_elf_program_header (bfd *ibfd, bfd *obfd)
6864 {
6865 Elf_Internal_Ehdr *iehdr;
6866 struct elf_segment_map *map;
6867 struct elf_segment_map *map_first;
6868 struct elf_segment_map **pointer_to_map;
6869 Elf_Internal_Phdr *segment;
6870 unsigned int i;
6871 unsigned int num_segments;
6872 bfd_boolean phdr_included = FALSE;
6873 bfd_boolean p_paddr_valid;
6874
6875 iehdr = elf_elfheader (ibfd);
6876
6877 map_first = NULL;
6878 pointer_to_map = &map_first;
6879
6880 /* If all the segment p_paddr fields are zero, don't set
6881 map->p_paddr_valid. */
6882 p_paddr_valid = FALSE;
6883 num_segments = elf_elfheader (ibfd)->e_phnum;
6884 for (i = 0, segment = elf_tdata (ibfd)->phdr;
6885 i < num_segments;
6886 i++, segment++)
6887 if (segment->p_paddr != 0)
6888 {
6889 p_paddr_valid = TRUE;
6890 break;
6891 }
6892
6893 for (i = 0, segment = elf_tdata (ibfd)->phdr;
6894 i < num_segments;
6895 i++, segment++)
6896 {
6897 asection *section;
6898 unsigned int section_count;
6899 bfd_size_type amt;
6900 Elf_Internal_Shdr *this_hdr;
6901 asection *first_section = NULL;
6902 asection *lowest_section;
6903
6904 /* Compute how many sections are in this segment. */
6905 for (section = ibfd->sections, section_count = 0;
6906 section != NULL;
6907 section = section->next)
6908 {
6909 this_hdr = &(elf_section_data(section)->this_hdr);
6910 if (ELF_SECTION_IN_SEGMENT (this_hdr, segment))
6911 {
6912 if (first_section == NULL)
6913 first_section = section;
6914 section_count++;
6915 }
6916 }
6917
6918 /* Allocate a segment map big enough to contain
6919 all of the sections we have selected. */
6920 amt = sizeof (struct elf_segment_map);
6921 if (section_count != 0)
6922 amt += ((bfd_size_type) section_count - 1) * sizeof (asection *);
6923 map = (struct elf_segment_map *) bfd_zalloc (obfd, amt);
6924 if (map == NULL)
6925 return FALSE;
6926
6927 /* Initialize the fields of the output segment map with the
6928 input segment. */
6929 map->next = NULL;
6930 map->p_type = segment->p_type;
6931 map->p_flags = segment->p_flags;
6932 map->p_flags_valid = 1;
6933 map->p_paddr = segment->p_paddr;
6934 map->p_paddr_valid = p_paddr_valid;
6935 map->p_align = segment->p_align;
6936 map->p_align_valid = 1;
6937 map->p_vaddr_offset = 0;
6938
6939 if (map->p_type == PT_GNU_RELRO
6940 || map->p_type == PT_GNU_STACK)
6941 {
6942 /* The PT_GNU_RELRO segment may contain the first a few
6943 bytes in the .got.plt section even if the whole .got.plt
6944 section isn't in the PT_GNU_RELRO segment. We won't
6945 change the size of the PT_GNU_RELRO segment.
6946 Similarly, PT_GNU_STACK size is significant on uclinux
6947 systems. */
6948 map->p_size = segment->p_memsz;
6949 map->p_size_valid = 1;
6950 }
6951
6952 /* Determine if this segment contains the ELF file header
6953 and if it contains the program headers themselves. */
6954 map->includes_filehdr = (segment->p_offset == 0
6955 && segment->p_filesz >= iehdr->e_ehsize);
6956
6957 map->includes_phdrs = 0;
6958 if (! phdr_included || segment->p_type != PT_LOAD)
6959 {
6960 map->includes_phdrs =
6961 (segment->p_offset <= (bfd_vma) iehdr->e_phoff
6962 && (segment->p_offset + segment->p_filesz
6963 >= ((bfd_vma) iehdr->e_phoff
6964 + iehdr->e_phnum * iehdr->e_phentsize)));
6965
6966 if (segment->p_type == PT_LOAD && map->includes_phdrs)
6967 phdr_included = TRUE;
6968 }
6969
6970 lowest_section = NULL;
6971 if (section_count != 0)
6972 {
6973 unsigned int isec = 0;
6974
6975 for (section = first_section;
6976 section != NULL;
6977 section = section->next)
6978 {
6979 this_hdr = &(elf_section_data(section)->this_hdr);
6980 if (ELF_SECTION_IN_SEGMENT (this_hdr, segment))
6981 {
6982 map->sections[isec++] = section->output_section;
6983 if ((section->flags & SEC_ALLOC) != 0)
6984 {
6985 bfd_vma seg_off;
6986
6987 if (lowest_section == NULL
6988 || section->lma < lowest_section->lma)
6989 lowest_section = section;
6990
6991 /* Section lmas are set up from PT_LOAD header
6992 p_paddr in _bfd_elf_make_section_from_shdr.
6993 If this header has a p_paddr that disagrees
6994 with the section lma, flag the p_paddr as
6995 invalid. */
6996 if ((section->flags & SEC_LOAD) != 0)
6997 seg_off = this_hdr->sh_offset - segment->p_offset;
6998 else
6999 seg_off = this_hdr->sh_addr - segment->p_vaddr;
7000 if (section->lma - segment->p_paddr != seg_off)
7001 map->p_paddr_valid = FALSE;
7002 }
7003 if (isec == section_count)
7004 break;
7005 }
7006 }
7007 }
7008
7009 if (map->includes_filehdr && lowest_section != NULL)
7010 /* We need to keep the space used by the headers fixed. */
7011 map->header_size = lowest_section->vma - segment->p_vaddr;
7012
7013 if (!map->includes_phdrs
7014 && !map->includes_filehdr
7015 && map->p_paddr_valid)
7016 /* There is some other padding before the first section. */
7017 map->p_vaddr_offset = ((lowest_section ? lowest_section->lma : 0)
7018 - segment->p_paddr);
7019
7020 map->count = section_count;
7021 *pointer_to_map = map;
7022 pointer_to_map = &map->next;
7023 }
7024
7025 elf_seg_map (obfd) = map_first;
7026 return TRUE;
7027 }
7028
7029 /* Copy private BFD data. This copies or rewrites ELF program header
7030 information. */
7031
7032 static bfd_boolean
7033 copy_private_bfd_data (bfd *ibfd, bfd *obfd)
7034 {
7035 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
7036 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
7037 return TRUE;
7038
7039 if (elf_tdata (ibfd)->phdr == NULL)
7040 return TRUE;
7041
7042 if (ibfd->xvec == obfd->xvec)
7043 {
7044 /* Check to see if any sections in the input BFD
7045 covered by ELF program header have changed. */
7046 Elf_Internal_Phdr *segment;
7047 asection *section, *osec;
7048 unsigned int i, num_segments;
7049 Elf_Internal_Shdr *this_hdr;
7050 const struct elf_backend_data *bed;
7051
7052 bed = get_elf_backend_data (ibfd);
7053
7054 /* Regenerate the segment map if p_paddr is set to 0. */
7055 if (bed->want_p_paddr_set_to_zero)
7056 goto rewrite;
7057
7058 /* Initialize the segment mark field. */
7059 for (section = obfd->sections; section != NULL;
7060 section = section->next)
7061 section->segment_mark = FALSE;
7062
7063 num_segments = elf_elfheader (ibfd)->e_phnum;
7064 for (i = 0, segment = elf_tdata (ibfd)->phdr;
7065 i < num_segments;
7066 i++, segment++)
7067 {
7068 /* PR binutils/3535. The Solaris linker always sets the p_paddr
7069 and p_memsz fields of special segments (DYNAMIC, INTERP) to 0
7070 which severly confuses things, so always regenerate the segment
7071 map in this case. */
7072 if (segment->p_paddr == 0
7073 && segment->p_memsz == 0
7074 && (segment->p_type == PT_INTERP || segment->p_type == PT_DYNAMIC))
7075 goto rewrite;
7076
7077 for (section = ibfd->sections;
7078 section != NULL; section = section->next)
7079 {
7080 /* We mark the output section so that we know it comes
7081 from the input BFD. */
7082 osec = section->output_section;
7083 if (osec)
7084 osec->segment_mark = TRUE;
7085
7086 /* Check if this section is covered by the segment. */
7087 this_hdr = &(elf_section_data(section)->this_hdr);
7088 if (ELF_SECTION_IN_SEGMENT (this_hdr, segment))
7089 {
7090 /* FIXME: Check if its output section is changed or
7091 removed. What else do we need to check? */
7092 if (osec == NULL
7093 || section->flags != osec->flags
7094 || section->lma != osec->lma
7095 || section->vma != osec->vma
7096 || section->size != osec->size
7097 || section->rawsize != osec->rawsize
7098 || section->alignment_power != osec->alignment_power)
7099 goto rewrite;
7100 }
7101 }
7102 }
7103
7104 /* Check to see if any output section do not come from the
7105 input BFD. */
7106 for (section = obfd->sections; section != NULL;
7107 section = section->next)
7108 {
7109 if (section->segment_mark == FALSE)
7110 goto rewrite;
7111 else
7112 section->segment_mark = FALSE;
7113 }
7114
7115 return copy_elf_program_header (ibfd, obfd);
7116 }
7117
7118 rewrite:
7119 if (ibfd->xvec == obfd->xvec)
7120 {
7121 /* When rewriting program header, set the output maxpagesize to
7122 the maximum alignment of input PT_LOAD segments. */
7123 Elf_Internal_Phdr *segment;
7124 unsigned int i;
7125 unsigned int num_segments = elf_elfheader (ibfd)->e_phnum;
7126 bfd_vma maxpagesize = 0;
7127
7128 for (i = 0, segment = elf_tdata (ibfd)->phdr;
7129 i < num_segments;
7130 i++, segment++)
7131 if (segment->p_type == PT_LOAD
7132 && maxpagesize < segment->p_align)
7133 {
7134 /* PR 17512: file: f17299af. */
7135 if (segment->p_align > (bfd_vma) 1 << ((sizeof (bfd_vma) * 8) - 2))
7136 (*_bfd_error_handler) (_("\
7137 %B: warning: segment alignment of 0x%llx is too large"),
7138 ibfd, (long long) segment->p_align);
7139 else
7140 maxpagesize = segment->p_align;
7141 }
7142
7143 if (maxpagesize != get_elf_backend_data (obfd)->maxpagesize)
7144 bfd_emul_set_maxpagesize (bfd_get_target (obfd), maxpagesize);
7145 }
7146
7147 return rewrite_elf_program_header (ibfd, obfd);
7148 }
7149
7150 /* Initialize private output section information from input section. */
7151
7152 bfd_boolean
7153 _bfd_elf_init_private_section_data (bfd *ibfd,
7154 asection *isec,
7155 bfd *obfd,
7156 asection *osec,
7157 struct bfd_link_info *link_info)
7158
7159 {
7160 Elf_Internal_Shdr *ihdr, *ohdr;
7161 bfd_boolean final_link = (link_info != NULL
7162 && !bfd_link_relocatable (link_info));
7163
7164 if (ibfd->xvec->flavour != bfd_target_elf_flavour
7165 || obfd->xvec->flavour != bfd_target_elf_flavour)
7166 return TRUE;
7167
7168 BFD_ASSERT (elf_section_data (osec) != NULL);
7169
7170 /* For objcopy and relocatable link, don't copy the output ELF
7171 section type from input if the output BFD section flags have been
7172 set to something different. For a final link allow some flags
7173 that the linker clears to differ. */
7174 if (elf_section_type (osec) == SHT_NULL
7175 && (osec->flags == isec->flags
7176 || (final_link
7177 && ((osec->flags ^ isec->flags)
7178 & ~(SEC_LINK_ONCE | SEC_LINK_DUPLICATES | SEC_RELOC)) == 0)))
7179 elf_section_type (osec) = elf_section_type (isec);
7180
7181 /* FIXME: Is this correct for all OS/PROC specific flags? */
7182 elf_section_flags (osec) |= (elf_section_flags (isec)
7183 & (SHF_MASKOS | SHF_MASKPROC));
7184
7185 /* Set things up for objcopy and relocatable link. The output
7186 SHT_GROUP section will have its elf_next_in_group pointing back
7187 to the input group members. Ignore linker created group section.
7188 See elfNN_ia64_object_p in elfxx-ia64.c. */
7189 if (!final_link)
7190 {
7191 if (elf_sec_group (isec) == NULL
7192 || (elf_sec_group (isec)->flags & SEC_LINKER_CREATED) == 0)
7193 {
7194 if (elf_section_flags (isec) & SHF_GROUP)
7195 elf_section_flags (osec) |= SHF_GROUP;
7196 elf_next_in_group (osec) = elf_next_in_group (isec);
7197 elf_section_data (osec)->group = elf_section_data (isec)->group;
7198 }
7199
7200 /* If not decompress, preserve SHF_COMPRESSED. */
7201 if ((ibfd->flags & BFD_DECOMPRESS) == 0)
7202 elf_section_flags (osec) |= (elf_section_flags (isec)
7203 & SHF_COMPRESSED);
7204 }
7205
7206 ihdr = &elf_section_data (isec)->this_hdr;
7207
7208 /* We need to handle elf_linked_to_section for SHF_LINK_ORDER. We
7209 don't use the output section of the linked-to section since it
7210 may be NULL at this point. */
7211 if ((ihdr->sh_flags & SHF_LINK_ORDER) != 0)
7212 {
7213 ohdr = &elf_section_data (osec)->this_hdr;
7214 ohdr->sh_flags |= SHF_LINK_ORDER;
7215 elf_linked_to_section (osec) = elf_linked_to_section (isec);
7216 }
7217
7218 osec->use_rela_p = isec->use_rela_p;
7219
7220 return TRUE;
7221 }
7222
7223 /* Copy private section information. This copies over the entsize
7224 field, and sometimes the info field. */
7225
7226 bfd_boolean
7227 _bfd_elf_copy_private_section_data (bfd *ibfd,
7228 asection *isec,
7229 bfd *obfd,
7230 asection *osec)
7231 {
7232 Elf_Internal_Shdr *ihdr, *ohdr;
7233
7234 if (ibfd->xvec->flavour != bfd_target_elf_flavour
7235 || obfd->xvec->flavour != bfd_target_elf_flavour)
7236 return TRUE;
7237
7238 ihdr = &elf_section_data (isec)->this_hdr;
7239 ohdr = &elf_section_data (osec)->this_hdr;
7240
7241 ohdr->sh_entsize = ihdr->sh_entsize;
7242
7243 if (ihdr->sh_type == SHT_SYMTAB
7244 || ihdr->sh_type == SHT_DYNSYM
7245 || ihdr->sh_type == SHT_GNU_verneed
7246 || ihdr->sh_type == SHT_GNU_verdef)
7247 ohdr->sh_info = ihdr->sh_info;
7248
7249 return _bfd_elf_init_private_section_data (ibfd, isec, obfd, osec,
7250 NULL);
7251 }
7252
7253 /* Look at all the SHT_GROUP sections in IBFD, making any adjustments
7254 necessary if we are removing either the SHT_GROUP section or any of
7255 the group member sections. DISCARDED is the value that a section's
7256 output_section has if the section will be discarded, NULL when this
7257 function is called from objcopy, bfd_abs_section_ptr when called
7258 from the linker. */
7259
7260 bfd_boolean
7261 _bfd_elf_fixup_group_sections (bfd *ibfd, asection *discarded)
7262 {
7263 asection *isec;
7264
7265 for (isec = ibfd->sections; isec != NULL; isec = isec->next)
7266 if (elf_section_type (isec) == SHT_GROUP)
7267 {
7268 asection *first = elf_next_in_group (isec);
7269 asection *s = first;
7270 bfd_size_type removed = 0;
7271
7272 while (s != NULL)
7273 {
7274 /* If this member section is being output but the
7275 SHT_GROUP section is not, then clear the group info
7276 set up by _bfd_elf_copy_private_section_data. */
7277 if (s->output_section != discarded
7278 && isec->output_section == discarded)
7279 {
7280 elf_section_flags (s->output_section) &= ~SHF_GROUP;
7281 elf_group_name (s->output_section) = NULL;
7282 }
7283 /* Conversely, if the member section is not being output
7284 but the SHT_GROUP section is, then adjust its size. */
7285 else if (s->output_section == discarded
7286 && isec->output_section != discarded)
7287 removed += 4;
7288 s = elf_next_in_group (s);
7289 if (s == first)
7290 break;
7291 }
7292 if (removed != 0)
7293 {
7294 if (discarded != NULL)
7295 {
7296 /* If we've been called for ld -r, then we need to
7297 adjust the input section size. This function may
7298 be called multiple times, so save the original
7299 size. */
7300 if (isec->rawsize == 0)
7301 isec->rawsize = isec->size;
7302 isec->size = isec->rawsize - removed;
7303 }
7304 else
7305 {
7306 /* Adjust the output section size when called from
7307 objcopy. */
7308 isec->output_section->size -= removed;
7309 }
7310 }
7311 }
7312
7313 return TRUE;
7314 }
7315
7316 /* Copy private header information. */
7317
7318 bfd_boolean
7319 _bfd_elf_copy_private_header_data (bfd *ibfd, bfd *obfd)
7320 {
7321 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
7322 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
7323 return TRUE;
7324
7325 /* Copy over private BFD data if it has not already been copied.
7326 This must be done here, rather than in the copy_private_bfd_data
7327 entry point, because the latter is called after the section
7328 contents have been set, which means that the program headers have
7329 already been worked out. */
7330 if (elf_seg_map (obfd) == NULL && elf_tdata (ibfd)->phdr != NULL)
7331 {
7332 if (! copy_private_bfd_data (ibfd, obfd))
7333 return FALSE;
7334 }
7335
7336 return _bfd_elf_fixup_group_sections (ibfd, NULL);
7337 }
7338
7339 /* Copy private symbol information. If this symbol is in a section
7340 which we did not map into a BFD section, try to map the section
7341 index correctly. We use special macro definitions for the mapped
7342 section indices; these definitions are interpreted by the
7343 swap_out_syms function. */
7344
7345 #define MAP_ONESYMTAB (SHN_HIOS + 1)
7346 #define MAP_DYNSYMTAB (SHN_HIOS + 2)
7347 #define MAP_STRTAB (SHN_HIOS + 3)
7348 #define MAP_SHSTRTAB (SHN_HIOS + 4)
7349 #define MAP_SYM_SHNDX (SHN_HIOS + 5)
7350
7351 bfd_boolean
7352 _bfd_elf_copy_private_symbol_data (bfd *ibfd,
7353 asymbol *isymarg,
7354 bfd *obfd,
7355 asymbol *osymarg)
7356 {
7357 elf_symbol_type *isym, *osym;
7358
7359 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
7360 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
7361 return TRUE;
7362
7363 isym = elf_symbol_from (ibfd, isymarg);
7364 osym = elf_symbol_from (obfd, osymarg);
7365
7366 if (isym != NULL
7367 && isym->internal_elf_sym.st_shndx != 0
7368 && osym != NULL
7369 && bfd_is_abs_section (isym->symbol.section))
7370 {
7371 unsigned int shndx;
7372
7373 shndx = isym->internal_elf_sym.st_shndx;
7374 if (shndx == elf_onesymtab (ibfd))
7375 shndx = MAP_ONESYMTAB;
7376 else if (shndx == elf_dynsymtab (ibfd))
7377 shndx = MAP_DYNSYMTAB;
7378 else if (shndx == elf_strtab_sec (ibfd))
7379 shndx = MAP_STRTAB;
7380 else if (shndx == elf_shstrtab_sec (ibfd))
7381 shndx = MAP_SHSTRTAB;
7382 else if (find_section_in_list (shndx, elf_symtab_shndx_list (ibfd)))
7383 shndx = MAP_SYM_SHNDX;
7384 osym->internal_elf_sym.st_shndx = shndx;
7385 }
7386
7387 return TRUE;
7388 }
7389
7390 /* Swap out the symbols. */
7391
7392 static bfd_boolean
7393 swap_out_syms (bfd *abfd,
7394 struct elf_strtab_hash **sttp,
7395 int relocatable_p)
7396 {
7397 const struct elf_backend_data *bed;
7398 int symcount;
7399 asymbol **syms;
7400 struct elf_strtab_hash *stt;
7401 Elf_Internal_Shdr *symtab_hdr;
7402 Elf_Internal_Shdr *symtab_shndx_hdr;
7403 Elf_Internal_Shdr *symstrtab_hdr;
7404 struct elf_sym_strtab *symstrtab;
7405 bfd_byte *outbound_syms;
7406 bfd_byte *outbound_shndx;
7407 unsigned long outbound_syms_index;
7408 unsigned long outbound_shndx_index;
7409 int idx;
7410 unsigned int num_locals;
7411 bfd_size_type amt;
7412 bfd_boolean name_local_sections;
7413
7414 if (!elf_map_symbols (abfd, &num_locals))
7415 return FALSE;
7416
7417 /* Dump out the symtabs. */
7418 stt = _bfd_elf_strtab_init ();
7419 if (stt == NULL)
7420 return FALSE;
7421
7422 bed = get_elf_backend_data (abfd);
7423 symcount = bfd_get_symcount (abfd);
7424 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
7425 symtab_hdr->sh_type = SHT_SYMTAB;
7426 symtab_hdr->sh_entsize = bed->s->sizeof_sym;
7427 symtab_hdr->sh_size = symtab_hdr->sh_entsize * (symcount + 1);
7428 symtab_hdr->sh_info = num_locals + 1;
7429 symtab_hdr->sh_addralign = (bfd_vma) 1 << bed->s->log_file_align;
7430
7431 symstrtab_hdr = &elf_tdata (abfd)->strtab_hdr;
7432 symstrtab_hdr->sh_type = SHT_STRTAB;
7433
7434 /* Allocate buffer to swap out the .strtab section. */
7435 symstrtab = (struct elf_sym_strtab *) bfd_malloc ((symcount + 1)
7436 * sizeof (*symstrtab));
7437 if (symstrtab == NULL)
7438 {
7439 _bfd_elf_strtab_free (stt);
7440 return FALSE;
7441 }
7442
7443 outbound_syms = (bfd_byte *) bfd_alloc2 (abfd, 1 + symcount,
7444 bed->s->sizeof_sym);
7445 if (outbound_syms == NULL)
7446 {
7447 error_return:
7448 _bfd_elf_strtab_free (stt);
7449 free (symstrtab);
7450 return FALSE;
7451 }
7452 symtab_hdr->contents = outbound_syms;
7453 outbound_syms_index = 0;
7454
7455 outbound_shndx = NULL;
7456 outbound_shndx_index = 0;
7457
7458 if (elf_symtab_shndx_list (abfd))
7459 {
7460 symtab_shndx_hdr = & elf_symtab_shndx_list (abfd)->hdr;
7461 if (symtab_shndx_hdr->sh_name != 0)
7462 {
7463 amt = (bfd_size_type) (1 + symcount) * sizeof (Elf_External_Sym_Shndx);
7464 outbound_shndx = (bfd_byte *)
7465 bfd_zalloc2 (abfd, 1 + symcount, sizeof (Elf_External_Sym_Shndx));
7466 if (outbound_shndx == NULL)
7467 goto error_return;
7468
7469 symtab_shndx_hdr->contents = outbound_shndx;
7470 symtab_shndx_hdr->sh_type = SHT_SYMTAB_SHNDX;
7471 symtab_shndx_hdr->sh_size = amt;
7472 symtab_shndx_hdr->sh_addralign = sizeof (Elf_External_Sym_Shndx);
7473 symtab_shndx_hdr->sh_entsize = sizeof (Elf_External_Sym_Shndx);
7474 }
7475 /* FIXME: What about any other headers in the list ? */
7476 }
7477
7478 /* Now generate the data (for "contents"). */
7479 {
7480 /* Fill in zeroth symbol and swap it out. */
7481 Elf_Internal_Sym sym;
7482 sym.st_name = 0;
7483 sym.st_value = 0;
7484 sym.st_size = 0;
7485 sym.st_info = 0;
7486 sym.st_other = 0;
7487 sym.st_shndx = SHN_UNDEF;
7488 sym.st_target_internal = 0;
7489 symstrtab[0].sym = sym;
7490 symstrtab[0].dest_index = outbound_syms_index;
7491 symstrtab[0].destshndx_index = outbound_shndx_index;
7492 outbound_syms_index++;
7493 if (outbound_shndx != NULL)
7494 outbound_shndx_index++;
7495 }
7496
7497 name_local_sections
7498 = (bed->elf_backend_name_local_section_symbols
7499 && bed->elf_backend_name_local_section_symbols (abfd));
7500
7501 syms = bfd_get_outsymbols (abfd);
7502 for (idx = 0; idx < symcount;)
7503 {
7504 Elf_Internal_Sym sym;
7505 bfd_vma value = syms[idx]->value;
7506 elf_symbol_type *type_ptr;
7507 flagword flags = syms[idx]->flags;
7508 int type;
7509
7510 if (!name_local_sections
7511 && (flags & (BSF_SECTION_SYM | BSF_GLOBAL)) == BSF_SECTION_SYM)
7512 {
7513 /* Local section symbols have no name. */
7514 sym.st_name = (unsigned long) -1;
7515 }
7516 else
7517 {
7518 /* Call _bfd_elf_strtab_offset after _bfd_elf_strtab_finalize
7519 to get the final offset for st_name. */
7520 sym.st_name
7521 = (unsigned long) _bfd_elf_strtab_add (stt, syms[idx]->name,
7522 FALSE);
7523 if (sym.st_name == (unsigned long) -1)
7524 goto error_return;
7525 }
7526
7527 type_ptr = elf_symbol_from (abfd, syms[idx]);
7528
7529 if ((flags & BSF_SECTION_SYM) == 0
7530 && bfd_is_com_section (syms[idx]->section))
7531 {
7532 /* ELF common symbols put the alignment into the `value' field,
7533 and the size into the `size' field. This is backwards from
7534 how BFD handles it, so reverse it here. */
7535 sym.st_size = value;
7536 if (type_ptr == NULL
7537 || type_ptr->internal_elf_sym.st_value == 0)
7538 sym.st_value = value >= 16 ? 16 : (1 << bfd_log2 (value));
7539 else
7540 sym.st_value = type_ptr->internal_elf_sym.st_value;
7541 sym.st_shndx = _bfd_elf_section_from_bfd_section
7542 (abfd, syms[idx]->section);
7543 }
7544 else
7545 {
7546 asection *sec = syms[idx]->section;
7547 unsigned int shndx;
7548
7549 if (sec->output_section)
7550 {
7551 value += sec->output_offset;
7552 sec = sec->output_section;
7553 }
7554
7555 /* Don't add in the section vma for relocatable output. */
7556 if (! relocatable_p)
7557 value += sec->vma;
7558 sym.st_value = value;
7559 sym.st_size = type_ptr ? type_ptr->internal_elf_sym.st_size : 0;
7560
7561 if (bfd_is_abs_section (sec)
7562 && type_ptr != NULL
7563 && type_ptr->internal_elf_sym.st_shndx != 0)
7564 {
7565 /* This symbol is in a real ELF section which we did
7566 not create as a BFD section. Undo the mapping done
7567 by copy_private_symbol_data. */
7568 shndx = type_ptr->internal_elf_sym.st_shndx;
7569 switch (shndx)
7570 {
7571 case MAP_ONESYMTAB:
7572 shndx = elf_onesymtab (abfd);
7573 break;
7574 case MAP_DYNSYMTAB:
7575 shndx = elf_dynsymtab (abfd);
7576 break;
7577 case MAP_STRTAB:
7578 shndx = elf_strtab_sec (abfd);
7579 break;
7580 case MAP_SHSTRTAB:
7581 shndx = elf_shstrtab_sec (abfd);
7582 break;
7583 case MAP_SYM_SHNDX:
7584 if (elf_symtab_shndx_list (abfd))
7585 shndx = elf_symtab_shndx_list (abfd)->ndx;
7586 break;
7587 default:
7588 shndx = SHN_ABS;
7589 break;
7590 }
7591 }
7592 else
7593 {
7594 shndx = _bfd_elf_section_from_bfd_section (abfd, sec);
7595
7596 if (shndx == SHN_BAD)
7597 {
7598 asection *sec2;
7599
7600 /* Writing this would be a hell of a lot easier if
7601 we had some decent documentation on bfd, and
7602 knew what to expect of the library, and what to
7603 demand of applications. For example, it
7604 appears that `objcopy' might not set the
7605 section of a symbol to be a section that is
7606 actually in the output file. */
7607 sec2 = bfd_get_section_by_name (abfd, sec->name);
7608 if (sec2 == NULL)
7609 {
7610 _bfd_error_handler (_("\
7611 Unable to find equivalent output section for symbol '%s' from section '%s'"),
7612 syms[idx]->name ? syms[idx]->name : "<Local sym>",
7613 sec->name);
7614 bfd_set_error (bfd_error_invalid_operation);
7615 goto error_return;
7616 }
7617
7618 shndx = _bfd_elf_section_from_bfd_section (abfd, sec2);
7619 BFD_ASSERT (shndx != SHN_BAD);
7620 }
7621 }
7622
7623 sym.st_shndx = shndx;
7624 }
7625
7626 if ((flags & BSF_THREAD_LOCAL) != 0)
7627 type = STT_TLS;
7628 else if ((flags & BSF_GNU_INDIRECT_FUNCTION) != 0)
7629 type = STT_GNU_IFUNC;
7630 else if ((flags & BSF_FUNCTION) != 0)
7631 type = STT_FUNC;
7632 else if ((flags & BSF_OBJECT) != 0)
7633 type = STT_OBJECT;
7634 else if ((flags & BSF_RELC) != 0)
7635 type = STT_RELC;
7636 else if ((flags & BSF_SRELC) != 0)
7637 type = STT_SRELC;
7638 else
7639 type = STT_NOTYPE;
7640
7641 if (syms[idx]->section->flags & SEC_THREAD_LOCAL)
7642 type = STT_TLS;
7643
7644 /* Processor-specific types. */
7645 if (type_ptr != NULL
7646 && bed->elf_backend_get_symbol_type)
7647 type = ((*bed->elf_backend_get_symbol_type)
7648 (&type_ptr->internal_elf_sym, type));
7649
7650 if (flags & BSF_SECTION_SYM)
7651 {
7652 if (flags & BSF_GLOBAL)
7653 sym.st_info = ELF_ST_INFO (STB_GLOBAL, STT_SECTION);
7654 else
7655 sym.st_info = ELF_ST_INFO (STB_LOCAL, STT_SECTION);
7656 }
7657 else if (bfd_is_com_section (syms[idx]->section))
7658 {
7659 if (type != STT_TLS)
7660 {
7661 if ((abfd->flags & BFD_CONVERT_ELF_COMMON))
7662 type = ((abfd->flags & BFD_USE_ELF_STT_COMMON)
7663 ? STT_COMMON : STT_OBJECT);
7664 else
7665 type = ((flags & BSF_ELF_COMMON) != 0
7666 ? STT_COMMON : STT_OBJECT);
7667 }
7668 sym.st_info = ELF_ST_INFO (STB_GLOBAL, type);
7669 }
7670 else if (bfd_is_und_section (syms[idx]->section))
7671 sym.st_info = ELF_ST_INFO (((flags & BSF_WEAK)
7672 ? STB_WEAK
7673 : STB_GLOBAL),
7674 type);
7675 else if (flags & BSF_FILE)
7676 sym.st_info = ELF_ST_INFO (STB_LOCAL, STT_FILE);
7677 else
7678 {
7679 int bind = STB_LOCAL;
7680
7681 if (flags & BSF_LOCAL)
7682 bind = STB_LOCAL;
7683 else if (flags & BSF_GNU_UNIQUE)
7684 bind = STB_GNU_UNIQUE;
7685 else if (flags & BSF_WEAK)
7686 bind = STB_WEAK;
7687 else if (flags & BSF_GLOBAL)
7688 bind = STB_GLOBAL;
7689
7690 sym.st_info = ELF_ST_INFO (bind, type);
7691 }
7692
7693 if (type_ptr != NULL)
7694 {
7695 sym.st_other = type_ptr->internal_elf_sym.st_other;
7696 sym.st_target_internal
7697 = type_ptr->internal_elf_sym.st_target_internal;
7698 }
7699 else
7700 {
7701 sym.st_other = 0;
7702 sym.st_target_internal = 0;
7703 }
7704
7705 idx++;
7706 symstrtab[idx].sym = sym;
7707 symstrtab[idx].dest_index = outbound_syms_index;
7708 symstrtab[idx].destshndx_index = outbound_shndx_index;
7709
7710 outbound_syms_index++;
7711 if (outbound_shndx != NULL)
7712 outbound_shndx_index++;
7713 }
7714
7715 /* Finalize the .strtab section. */
7716 _bfd_elf_strtab_finalize (stt);
7717
7718 /* Swap out the .strtab section. */
7719 for (idx = 0; idx <= symcount; idx++)
7720 {
7721 struct elf_sym_strtab *elfsym = &symstrtab[idx];
7722 if (elfsym->sym.st_name == (unsigned long) -1)
7723 elfsym->sym.st_name = 0;
7724 else
7725 elfsym->sym.st_name = _bfd_elf_strtab_offset (stt,
7726 elfsym->sym.st_name);
7727 bed->s->swap_symbol_out (abfd, &elfsym->sym,
7728 (outbound_syms
7729 + (elfsym->dest_index
7730 * bed->s->sizeof_sym)),
7731 (outbound_shndx
7732 + (elfsym->destshndx_index
7733 * sizeof (Elf_External_Sym_Shndx))));
7734 }
7735 free (symstrtab);
7736
7737 *sttp = stt;
7738 symstrtab_hdr->sh_size = _bfd_elf_strtab_size (stt);
7739 symstrtab_hdr->sh_type = SHT_STRTAB;
7740 symstrtab_hdr->sh_flags = bed->elf_strtab_flags;
7741 symstrtab_hdr->sh_addr = 0;
7742 symstrtab_hdr->sh_entsize = 0;
7743 symstrtab_hdr->sh_link = 0;
7744 symstrtab_hdr->sh_info = 0;
7745 symstrtab_hdr->sh_addralign = 1;
7746
7747 return TRUE;
7748 }
7749
7750 /* Return the number of bytes required to hold the symtab vector.
7751
7752 Note that we base it on the count plus 1, since we will null terminate
7753 the vector allocated based on this size. However, the ELF symbol table
7754 always has a dummy entry as symbol #0, so it ends up even. */
7755
7756 long
7757 _bfd_elf_get_symtab_upper_bound (bfd *abfd)
7758 {
7759 long symcount;
7760 long symtab_size;
7761 Elf_Internal_Shdr *hdr = &elf_tdata (abfd)->symtab_hdr;
7762
7763 symcount = hdr->sh_size / get_elf_backend_data (abfd)->s->sizeof_sym;
7764 symtab_size = (symcount + 1) * (sizeof (asymbol *));
7765 if (symcount > 0)
7766 symtab_size -= sizeof (asymbol *);
7767
7768 return symtab_size;
7769 }
7770
7771 long
7772 _bfd_elf_get_dynamic_symtab_upper_bound (bfd *abfd)
7773 {
7774 long symcount;
7775 long symtab_size;
7776 Elf_Internal_Shdr *hdr = &elf_tdata (abfd)->dynsymtab_hdr;
7777
7778 if (elf_dynsymtab (abfd) == 0)
7779 {
7780 bfd_set_error (bfd_error_invalid_operation);
7781 return -1;
7782 }
7783
7784 symcount = hdr->sh_size / get_elf_backend_data (abfd)->s->sizeof_sym;
7785 symtab_size = (symcount + 1) * (sizeof (asymbol *));
7786 if (symcount > 0)
7787 symtab_size -= sizeof (asymbol *);
7788
7789 return symtab_size;
7790 }
7791
7792 long
7793 _bfd_elf_get_reloc_upper_bound (bfd *abfd ATTRIBUTE_UNUSED,
7794 sec_ptr asect)
7795 {
7796 return (asect->reloc_count + 1) * sizeof (arelent *);
7797 }
7798
7799 /* Canonicalize the relocs. */
7800
7801 long
7802 _bfd_elf_canonicalize_reloc (bfd *abfd,
7803 sec_ptr section,
7804 arelent **relptr,
7805 asymbol **symbols)
7806 {
7807 arelent *tblptr;
7808 unsigned int i;
7809 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
7810
7811 if (! bed->s->slurp_reloc_table (abfd, section, symbols, FALSE))
7812 return -1;
7813
7814 tblptr = section->relocation;
7815 for (i = 0; i < section->reloc_count; i++)
7816 *relptr++ = tblptr++;
7817
7818 *relptr = NULL;
7819
7820 return section->reloc_count;
7821 }
7822
7823 long
7824 _bfd_elf_canonicalize_symtab (bfd *abfd, asymbol **allocation)
7825 {
7826 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
7827 long symcount = bed->s->slurp_symbol_table (abfd, allocation, FALSE);
7828
7829 if (symcount >= 0)
7830 bfd_get_symcount (abfd) = symcount;
7831 return symcount;
7832 }
7833
7834 long
7835 _bfd_elf_canonicalize_dynamic_symtab (bfd *abfd,
7836 asymbol **allocation)
7837 {
7838 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
7839 long symcount = bed->s->slurp_symbol_table (abfd, allocation, TRUE);
7840
7841 if (symcount >= 0)
7842 bfd_get_dynamic_symcount (abfd) = symcount;
7843 return symcount;
7844 }
7845
7846 /* Return the size required for the dynamic reloc entries. Any loadable
7847 section that was actually installed in the BFD, and has type SHT_REL
7848 or SHT_RELA, and uses the dynamic symbol table, is considered to be a
7849 dynamic reloc section. */
7850
7851 long
7852 _bfd_elf_get_dynamic_reloc_upper_bound (bfd *abfd)
7853 {
7854 long ret;
7855 asection *s;
7856
7857 if (elf_dynsymtab (abfd) == 0)
7858 {
7859 bfd_set_error (bfd_error_invalid_operation);
7860 return -1;
7861 }
7862
7863 ret = sizeof (arelent *);
7864 for (s = abfd->sections; s != NULL; s = s->next)
7865 if (elf_section_data (s)->this_hdr.sh_link == elf_dynsymtab (abfd)
7866 && (elf_section_data (s)->this_hdr.sh_type == SHT_REL
7867 || elf_section_data (s)->this_hdr.sh_type == SHT_RELA))
7868 ret += ((s->size / elf_section_data (s)->this_hdr.sh_entsize)
7869 * sizeof (arelent *));
7870
7871 return ret;
7872 }
7873
7874 /* Canonicalize the dynamic relocation entries. Note that we return the
7875 dynamic relocations as a single block, although they are actually
7876 associated with particular sections; the interface, which was
7877 designed for SunOS style shared libraries, expects that there is only
7878 one set of dynamic relocs. Any loadable section that was actually
7879 installed in the BFD, and has type SHT_REL or SHT_RELA, and uses the
7880 dynamic symbol table, is considered to be a dynamic reloc section. */
7881
7882 long
7883 _bfd_elf_canonicalize_dynamic_reloc (bfd *abfd,
7884 arelent **storage,
7885 asymbol **syms)
7886 {
7887 bfd_boolean (*slurp_relocs) (bfd *, asection *, asymbol **, bfd_boolean);
7888 asection *s;
7889 long ret;
7890
7891 if (elf_dynsymtab (abfd) == 0)
7892 {
7893 bfd_set_error (bfd_error_invalid_operation);
7894 return -1;
7895 }
7896
7897 slurp_relocs = get_elf_backend_data (abfd)->s->slurp_reloc_table;
7898 ret = 0;
7899 for (s = abfd->sections; s != NULL; s = s->next)
7900 {
7901 if (elf_section_data (s)->this_hdr.sh_link == elf_dynsymtab (abfd)
7902 && (elf_section_data (s)->this_hdr.sh_type == SHT_REL
7903 || elf_section_data (s)->this_hdr.sh_type == SHT_RELA))
7904 {
7905 arelent *p;
7906 long count, i;
7907
7908 if (! (*slurp_relocs) (abfd, s, syms, TRUE))
7909 return -1;
7910 count = s->size / elf_section_data (s)->this_hdr.sh_entsize;
7911 p = s->relocation;
7912 for (i = 0; i < count; i++)
7913 *storage++ = p++;
7914 ret += count;
7915 }
7916 }
7917
7918 *storage = NULL;
7919
7920 return ret;
7921 }
7922 \f
7923 /* Read in the version information. */
7924
7925 bfd_boolean
7926 _bfd_elf_slurp_version_tables (bfd *abfd, bfd_boolean default_imported_symver)
7927 {
7928 bfd_byte *contents = NULL;
7929 unsigned int freeidx = 0;
7930
7931 if (elf_dynverref (abfd) != 0)
7932 {
7933 Elf_Internal_Shdr *hdr;
7934 Elf_External_Verneed *everneed;
7935 Elf_Internal_Verneed *iverneed;
7936 unsigned int i;
7937 bfd_byte *contents_end;
7938
7939 hdr = &elf_tdata (abfd)->dynverref_hdr;
7940
7941 if (hdr->sh_info == 0 || hdr->sh_size < sizeof (Elf_External_Verneed))
7942 {
7943 error_return_bad_verref:
7944 (*_bfd_error_handler)
7945 (_("%B: .gnu.version_r invalid entry"), abfd);
7946 bfd_set_error (bfd_error_bad_value);
7947 error_return_verref:
7948 elf_tdata (abfd)->verref = NULL;
7949 elf_tdata (abfd)->cverrefs = 0;
7950 goto error_return;
7951 }
7952
7953 contents = (bfd_byte *) bfd_malloc (hdr->sh_size);
7954 if (contents == NULL)
7955 goto error_return_verref;
7956
7957 if (bfd_seek (abfd, hdr->sh_offset, SEEK_SET) != 0
7958 || bfd_bread (contents, hdr->sh_size, abfd) != hdr->sh_size)
7959 goto error_return_verref;
7960
7961 elf_tdata (abfd)->verref = (Elf_Internal_Verneed *)
7962 bfd_zalloc2 (abfd, hdr->sh_info, sizeof (Elf_Internal_Verneed));
7963
7964 if (elf_tdata (abfd)->verref == NULL)
7965 goto error_return_verref;
7966
7967 BFD_ASSERT (sizeof (Elf_External_Verneed)
7968 == sizeof (Elf_External_Vernaux));
7969 contents_end = contents + hdr->sh_size - sizeof (Elf_External_Verneed);
7970 everneed = (Elf_External_Verneed *) contents;
7971 iverneed = elf_tdata (abfd)->verref;
7972 for (i = 0; i < hdr->sh_info; i++, iverneed++)
7973 {
7974 Elf_External_Vernaux *evernaux;
7975 Elf_Internal_Vernaux *ivernaux;
7976 unsigned int j;
7977
7978 _bfd_elf_swap_verneed_in (abfd, everneed, iverneed);
7979
7980 iverneed->vn_bfd = abfd;
7981
7982 iverneed->vn_filename =
7983 bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
7984 iverneed->vn_file);
7985 if (iverneed->vn_filename == NULL)
7986 goto error_return_bad_verref;
7987
7988 if (iverneed->vn_cnt == 0)
7989 iverneed->vn_auxptr = NULL;
7990 else
7991 {
7992 iverneed->vn_auxptr = (struct elf_internal_vernaux *)
7993 bfd_alloc2 (abfd, iverneed->vn_cnt,
7994 sizeof (Elf_Internal_Vernaux));
7995 if (iverneed->vn_auxptr == NULL)
7996 goto error_return_verref;
7997 }
7998
7999 if (iverneed->vn_aux
8000 > (size_t) (contents_end - (bfd_byte *) everneed))
8001 goto error_return_bad_verref;
8002
8003 evernaux = ((Elf_External_Vernaux *)
8004 ((bfd_byte *) everneed + iverneed->vn_aux));
8005 ivernaux = iverneed->vn_auxptr;
8006 for (j = 0; j < iverneed->vn_cnt; j++, ivernaux++)
8007 {
8008 _bfd_elf_swap_vernaux_in (abfd, evernaux, ivernaux);
8009
8010 ivernaux->vna_nodename =
8011 bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
8012 ivernaux->vna_name);
8013 if (ivernaux->vna_nodename == NULL)
8014 goto error_return_bad_verref;
8015
8016 if (ivernaux->vna_other > freeidx)
8017 freeidx = ivernaux->vna_other;
8018
8019 ivernaux->vna_nextptr = NULL;
8020 if (ivernaux->vna_next == 0)
8021 {
8022 iverneed->vn_cnt = j + 1;
8023 break;
8024 }
8025 if (j + 1 < iverneed->vn_cnt)
8026 ivernaux->vna_nextptr = ivernaux + 1;
8027
8028 if (ivernaux->vna_next
8029 > (size_t) (contents_end - (bfd_byte *) evernaux))
8030 goto error_return_bad_verref;
8031
8032 evernaux = ((Elf_External_Vernaux *)
8033 ((bfd_byte *) evernaux + ivernaux->vna_next));
8034 }
8035
8036 iverneed->vn_nextref = NULL;
8037 if (iverneed->vn_next == 0)
8038 break;
8039 if (i + 1 < hdr->sh_info)
8040 iverneed->vn_nextref = iverneed + 1;
8041
8042 if (iverneed->vn_next
8043 > (size_t) (contents_end - (bfd_byte *) everneed))
8044 goto error_return_bad_verref;
8045
8046 everneed = ((Elf_External_Verneed *)
8047 ((bfd_byte *) everneed + iverneed->vn_next));
8048 }
8049 elf_tdata (abfd)->cverrefs = i;
8050
8051 free (contents);
8052 contents = NULL;
8053 }
8054
8055 if (elf_dynverdef (abfd) != 0)
8056 {
8057 Elf_Internal_Shdr *hdr;
8058 Elf_External_Verdef *everdef;
8059 Elf_Internal_Verdef *iverdef;
8060 Elf_Internal_Verdef *iverdefarr;
8061 Elf_Internal_Verdef iverdefmem;
8062 unsigned int i;
8063 unsigned int maxidx;
8064 bfd_byte *contents_end_def, *contents_end_aux;
8065
8066 hdr = &elf_tdata (abfd)->dynverdef_hdr;
8067
8068 if (hdr->sh_info == 0 || hdr->sh_size < sizeof (Elf_External_Verdef))
8069 {
8070 error_return_bad_verdef:
8071 (*_bfd_error_handler)
8072 (_("%B: .gnu.version_d invalid entry"), abfd);
8073 bfd_set_error (bfd_error_bad_value);
8074 error_return_verdef:
8075 elf_tdata (abfd)->verdef = NULL;
8076 elf_tdata (abfd)->cverdefs = 0;
8077 goto error_return;
8078 }
8079
8080 contents = (bfd_byte *) bfd_malloc (hdr->sh_size);
8081 if (contents == NULL)
8082 goto error_return_verdef;
8083 if (bfd_seek (abfd, hdr->sh_offset, SEEK_SET) != 0
8084 || bfd_bread (contents, hdr->sh_size, abfd) != hdr->sh_size)
8085 goto error_return_verdef;
8086
8087 BFD_ASSERT (sizeof (Elf_External_Verdef)
8088 >= sizeof (Elf_External_Verdaux));
8089 contents_end_def = contents + hdr->sh_size
8090 - sizeof (Elf_External_Verdef);
8091 contents_end_aux = contents + hdr->sh_size
8092 - sizeof (Elf_External_Verdaux);
8093
8094 /* We know the number of entries in the section but not the maximum
8095 index. Therefore we have to run through all entries and find
8096 the maximum. */
8097 everdef = (Elf_External_Verdef *) contents;
8098 maxidx = 0;
8099 for (i = 0; i < hdr->sh_info; ++i)
8100 {
8101 _bfd_elf_swap_verdef_in (abfd, everdef, &iverdefmem);
8102
8103 if ((iverdefmem.vd_ndx & ((unsigned) VERSYM_VERSION)) == 0)
8104 goto error_return_bad_verdef;
8105 if ((iverdefmem.vd_ndx & ((unsigned) VERSYM_VERSION)) > maxidx)
8106 maxidx = iverdefmem.vd_ndx & ((unsigned) VERSYM_VERSION);
8107
8108 if (iverdefmem.vd_next == 0)
8109 break;
8110
8111 if (iverdefmem.vd_next
8112 > (size_t) (contents_end_def - (bfd_byte *) everdef))
8113 goto error_return_bad_verdef;
8114
8115 everdef = ((Elf_External_Verdef *)
8116 ((bfd_byte *) everdef + iverdefmem.vd_next));
8117 }
8118
8119 if (default_imported_symver)
8120 {
8121 if (freeidx > maxidx)
8122 maxidx = ++freeidx;
8123 else
8124 freeidx = ++maxidx;
8125 }
8126
8127 elf_tdata (abfd)->verdef = (Elf_Internal_Verdef *)
8128 bfd_zalloc2 (abfd, maxidx, sizeof (Elf_Internal_Verdef));
8129 if (elf_tdata (abfd)->verdef == NULL)
8130 goto error_return_verdef;
8131
8132 elf_tdata (abfd)->cverdefs = maxidx;
8133
8134 everdef = (Elf_External_Verdef *) contents;
8135 iverdefarr = elf_tdata (abfd)->verdef;
8136 for (i = 0; i < hdr->sh_info; i++)
8137 {
8138 Elf_External_Verdaux *everdaux;
8139 Elf_Internal_Verdaux *iverdaux;
8140 unsigned int j;
8141
8142 _bfd_elf_swap_verdef_in (abfd, everdef, &iverdefmem);
8143
8144 if ((iverdefmem.vd_ndx & VERSYM_VERSION) == 0)
8145 goto error_return_bad_verdef;
8146
8147 iverdef = &iverdefarr[(iverdefmem.vd_ndx & VERSYM_VERSION) - 1];
8148 memcpy (iverdef, &iverdefmem, offsetof (Elf_Internal_Verdef, vd_bfd));
8149
8150 iverdef->vd_bfd = abfd;
8151
8152 if (iverdef->vd_cnt == 0)
8153 iverdef->vd_auxptr = NULL;
8154 else
8155 {
8156 iverdef->vd_auxptr = (struct elf_internal_verdaux *)
8157 bfd_alloc2 (abfd, iverdef->vd_cnt,
8158 sizeof (Elf_Internal_Verdaux));
8159 if (iverdef->vd_auxptr == NULL)
8160 goto error_return_verdef;
8161 }
8162
8163 if (iverdef->vd_aux
8164 > (size_t) (contents_end_aux - (bfd_byte *) everdef))
8165 goto error_return_bad_verdef;
8166
8167 everdaux = ((Elf_External_Verdaux *)
8168 ((bfd_byte *) everdef + iverdef->vd_aux));
8169 iverdaux = iverdef->vd_auxptr;
8170 for (j = 0; j < iverdef->vd_cnt; j++, iverdaux++)
8171 {
8172 _bfd_elf_swap_verdaux_in (abfd, everdaux, iverdaux);
8173
8174 iverdaux->vda_nodename =
8175 bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
8176 iverdaux->vda_name);
8177 if (iverdaux->vda_nodename == NULL)
8178 goto error_return_bad_verdef;
8179
8180 iverdaux->vda_nextptr = NULL;
8181 if (iverdaux->vda_next == 0)
8182 {
8183 iverdef->vd_cnt = j + 1;
8184 break;
8185 }
8186 if (j + 1 < iverdef->vd_cnt)
8187 iverdaux->vda_nextptr = iverdaux + 1;
8188
8189 if (iverdaux->vda_next
8190 > (size_t) (contents_end_aux - (bfd_byte *) everdaux))
8191 goto error_return_bad_verdef;
8192
8193 everdaux = ((Elf_External_Verdaux *)
8194 ((bfd_byte *) everdaux + iverdaux->vda_next));
8195 }
8196
8197 iverdef->vd_nodename = NULL;
8198 if (iverdef->vd_cnt)
8199 iverdef->vd_nodename = iverdef->vd_auxptr->vda_nodename;
8200
8201 iverdef->vd_nextdef = NULL;
8202 if (iverdef->vd_next == 0)
8203 break;
8204 if ((size_t) (iverdef - iverdefarr) + 1 < maxidx)
8205 iverdef->vd_nextdef = iverdef + 1;
8206
8207 everdef = ((Elf_External_Verdef *)
8208 ((bfd_byte *) everdef + iverdef->vd_next));
8209 }
8210
8211 free (contents);
8212 contents = NULL;
8213 }
8214 else if (default_imported_symver)
8215 {
8216 if (freeidx < 3)
8217 freeidx = 3;
8218 else
8219 freeidx++;
8220
8221 elf_tdata (abfd)->verdef = (Elf_Internal_Verdef *)
8222 bfd_zalloc2 (abfd, freeidx, sizeof (Elf_Internal_Verdef));
8223 if (elf_tdata (abfd)->verdef == NULL)
8224 goto error_return;
8225
8226 elf_tdata (abfd)->cverdefs = freeidx;
8227 }
8228
8229 /* Create a default version based on the soname. */
8230 if (default_imported_symver)
8231 {
8232 Elf_Internal_Verdef *iverdef;
8233 Elf_Internal_Verdaux *iverdaux;
8234
8235 iverdef = &elf_tdata (abfd)->verdef[freeidx - 1];
8236
8237 iverdef->vd_version = VER_DEF_CURRENT;
8238 iverdef->vd_flags = 0;
8239 iverdef->vd_ndx = freeidx;
8240 iverdef->vd_cnt = 1;
8241
8242 iverdef->vd_bfd = abfd;
8243
8244 iverdef->vd_nodename = bfd_elf_get_dt_soname (abfd);
8245 if (iverdef->vd_nodename == NULL)
8246 goto error_return_verdef;
8247 iverdef->vd_nextdef = NULL;
8248 iverdef->vd_auxptr = ((struct elf_internal_verdaux *)
8249 bfd_zalloc (abfd, sizeof (Elf_Internal_Verdaux)));
8250 if (iverdef->vd_auxptr == NULL)
8251 goto error_return_verdef;
8252
8253 iverdaux = iverdef->vd_auxptr;
8254 iverdaux->vda_nodename = iverdef->vd_nodename;
8255 }
8256
8257 return TRUE;
8258
8259 error_return:
8260 if (contents != NULL)
8261 free (contents);
8262 return FALSE;
8263 }
8264 \f
8265 asymbol *
8266 _bfd_elf_make_empty_symbol (bfd *abfd)
8267 {
8268 elf_symbol_type *newsym;
8269
8270 newsym = (elf_symbol_type *) bfd_zalloc (abfd, sizeof * newsym);
8271 if (!newsym)
8272 return NULL;
8273 newsym->symbol.the_bfd = abfd;
8274 return &newsym->symbol;
8275 }
8276
8277 void
8278 _bfd_elf_get_symbol_info (bfd *abfd ATTRIBUTE_UNUSED,
8279 asymbol *symbol,
8280 symbol_info *ret)
8281 {
8282 bfd_symbol_info (symbol, ret);
8283 }
8284
8285 /* Return whether a symbol name implies a local symbol. Most targets
8286 use this function for the is_local_label_name entry point, but some
8287 override it. */
8288
8289 bfd_boolean
8290 _bfd_elf_is_local_label_name (bfd *abfd ATTRIBUTE_UNUSED,
8291 const char *name)
8292 {
8293 /* Normal local symbols start with ``.L''. */
8294 if (name[0] == '.' && name[1] == 'L')
8295 return TRUE;
8296
8297 /* At least some SVR4 compilers (e.g., UnixWare 2.1 cc) generate
8298 DWARF debugging symbols starting with ``..''. */
8299 if (name[0] == '.' && name[1] == '.')
8300 return TRUE;
8301
8302 /* gcc will sometimes generate symbols beginning with ``_.L_'' when
8303 emitting DWARF debugging output. I suspect this is actually a
8304 small bug in gcc (it calls ASM_OUTPUT_LABEL when it should call
8305 ASM_GENERATE_INTERNAL_LABEL, and this causes the leading
8306 underscore to be emitted on some ELF targets). For ease of use,
8307 we treat such symbols as local. */
8308 if (name[0] == '_' && name[1] == '.' && name[2] == 'L' && name[3] == '_')
8309 return TRUE;
8310
8311 /* Treat assembler generated fake symbols, dollar local labels and
8312 forward-backward labels (aka local labels) as locals.
8313 These labels have the form:
8314
8315 L0^A.* (fake symbols)
8316
8317 [.]?L[0123456789]+{^A|^B}[0123456789]* (local labels)
8318
8319 Versions which start with .L will have already been matched above,
8320 so we only need to match the rest. */
8321 if (name[0] == 'L' && ISDIGIT (name[1]))
8322 {
8323 bfd_boolean ret = FALSE;
8324 const char * p;
8325 char c;
8326
8327 for (p = name + 2; (c = *p); p++)
8328 {
8329 if (c == 1 || c == 2)
8330 {
8331 if (c == 1 && p == name + 2)
8332 /* A fake symbol. */
8333 return TRUE;
8334
8335 /* FIXME: We are being paranoid here and treating symbols like
8336 L0^Bfoo as if there were non-local, on the grounds that the
8337 assembler will never generate them. But can any symbol
8338 containing an ASCII value in the range 1-31 ever be anything
8339 other than some kind of local ? */
8340 ret = TRUE;
8341 }
8342
8343 if (! ISDIGIT (c))
8344 {
8345 ret = FALSE;
8346 break;
8347 }
8348 }
8349 return ret;
8350 }
8351
8352 return FALSE;
8353 }
8354
8355 alent *
8356 _bfd_elf_get_lineno (bfd *abfd ATTRIBUTE_UNUSED,
8357 asymbol *symbol ATTRIBUTE_UNUSED)
8358 {
8359 abort ();
8360 return NULL;
8361 }
8362
8363 bfd_boolean
8364 _bfd_elf_set_arch_mach (bfd *abfd,
8365 enum bfd_architecture arch,
8366 unsigned long machine)
8367 {
8368 /* If this isn't the right architecture for this backend, and this
8369 isn't the generic backend, fail. */
8370 if (arch != get_elf_backend_data (abfd)->arch
8371 && arch != bfd_arch_unknown
8372 && get_elf_backend_data (abfd)->arch != bfd_arch_unknown)
8373 return FALSE;
8374
8375 return bfd_default_set_arch_mach (abfd, arch, machine);
8376 }
8377
8378 /* Find the nearest line to a particular section and offset,
8379 for error reporting. */
8380
8381 bfd_boolean
8382 _bfd_elf_find_nearest_line (bfd *abfd,
8383 asymbol **symbols,
8384 asection *section,
8385 bfd_vma offset,
8386 const char **filename_ptr,
8387 const char **functionname_ptr,
8388 unsigned int *line_ptr,
8389 unsigned int *discriminator_ptr)
8390 {
8391 bfd_boolean found;
8392
8393 if (_bfd_dwarf2_find_nearest_line (abfd, symbols, NULL, section, offset,
8394 filename_ptr, functionname_ptr,
8395 line_ptr, discriminator_ptr,
8396 dwarf_debug_sections, 0,
8397 &elf_tdata (abfd)->dwarf2_find_line_info)
8398 || _bfd_dwarf1_find_nearest_line (abfd, symbols, section, offset,
8399 filename_ptr, functionname_ptr,
8400 line_ptr))
8401 {
8402 if (!*functionname_ptr)
8403 _bfd_elf_find_function (abfd, symbols, section, offset,
8404 *filename_ptr ? NULL : filename_ptr,
8405 functionname_ptr);
8406 return TRUE;
8407 }
8408
8409 if (! _bfd_stab_section_find_nearest_line (abfd, symbols, section, offset,
8410 &found, filename_ptr,
8411 functionname_ptr, line_ptr,
8412 &elf_tdata (abfd)->line_info))
8413 return FALSE;
8414 if (found && (*functionname_ptr || *line_ptr))
8415 return TRUE;
8416
8417 if (symbols == NULL)
8418 return FALSE;
8419
8420 if (! _bfd_elf_find_function (abfd, symbols, section, offset,
8421 filename_ptr, functionname_ptr))
8422 return FALSE;
8423
8424 *line_ptr = 0;
8425 return TRUE;
8426 }
8427
8428 /* Find the line for a symbol. */
8429
8430 bfd_boolean
8431 _bfd_elf_find_line (bfd *abfd, asymbol **symbols, asymbol *symbol,
8432 const char **filename_ptr, unsigned int *line_ptr)
8433 {
8434 return _bfd_dwarf2_find_nearest_line (abfd, symbols, symbol, NULL, 0,
8435 filename_ptr, NULL, line_ptr, NULL,
8436 dwarf_debug_sections, 0,
8437 &elf_tdata (abfd)->dwarf2_find_line_info);
8438 }
8439
8440 /* After a call to bfd_find_nearest_line, successive calls to
8441 bfd_find_inliner_info can be used to get source information about
8442 each level of function inlining that terminated at the address
8443 passed to bfd_find_nearest_line. Currently this is only supported
8444 for DWARF2 with appropriate DWARF3 extensions. */
8445
8446 bfd_boolean
8447 _bfd_elf_find_inliner_info (bfd *abfd,
8448 const char **filename_ptr,
8449 const char **functionname_ptr,
8450 unsigned int *line_ptr)
8451 {
8452 bfd_boolean found;
8453 found = _bfd_dwarf2_find_inliner_info (abfd, filename_ptr,
8454 functionname_ptr, line_ptr,
8455 & elf_tdata (abfd)->dwarf2_find_line_info);
8456 return found;
8457 }
8458
8459 int
8460 _bfd_elf_sizeof_headers (bfd *abfd, struct bfd_link_info *info)
8461 {
8462 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
8463 int ret = bed->s->sizeof_ehdr;
8464
8465 if (!bfd_link_relocatable (info))
8466 {
8467 bfd_size_type phdr_size = elf_program_header_size (abfd);
8468
8469 if (phdr_size == (bfd_size_type) -1)
8470 {
8471 struct elf_segment_map *m;
8472
8473 phdr_size = 0;
8474 for (m = elf_seg_map (abfd); m != NULL; m = m->next)
8475 phdr_size += bed->s->sizeof_phdr;
8476
8477 if (phdr_size == 0)
8478 phdr_size = get_program_header_size (abfd, info);
8479 }
8480
8481 elf_program_header_size (abfd) = phdr_size;
8482 ret += phdr_size;
8483 }
8484
8485 return ret;
8486 }
8487
8488 bfd_boolean
8489 _bfd_elf_set_section_contents (bfd *abfd,
8490 sec_ptr section,
8491 const void *location,
8492 file_ptr offset,
8493 bfd_size_type count)
8494 {
8495 Elf_Internal_Shdr *hdr;
8496 file_ptr pos;
8497
8498 if (! abfd->output_has_begun
8499 && ! _bfd_elf_compute_section_file_positions (abfd, NULL))
8500 return FALSE;
8501
8502 if (!count)
8503 return TRUE;
8504
8505 hdr = &elf_section_data (section)->this_hdr;
8506 if (hdr->sh_offset == (file_ptr) -1)
8507 {
8508 /* We must compress this section. Write output to the buffer. */
8509 unsigned char *contents = hdr->contents;
8510 if ((offset + count) > hdr->sh_size
8511 || (section->flags & SEC_ELF_COMPRESS) == 0
8512 || contents == NULL)
8513 abort ();
8514 memcpy (contents + offset, location, count);
8515 return TRUE;
8516 }
8517 pos = hdr->sh_offset + offset;
8518 if (bfd_seek (abfd, pos, SEEK_SET) != 0
8519 || bfd_bwrite (location, count, abfd) != count)
8520 return FALSE;
8521
8522 return TRUE;
8523 }
8524
8525 void
8526 _bfd_elf_no_info_to_howto (bfd *abfd ATTRIBUTE_UNUSED,
8527 arelent *cache_ptr ATTRIBUTE_UNUSED,
8528 Elf_Internal_Rela *dst ATTRIBUTE_UNUSED)
8529 {
8530 abort ();
8531 }
8532
8533 /* Try to convert a non-ELF reloc into an ELF one. */
8534
8535 bfd_boolean
8536 _bfd_elf_validate_reloc (bfd *abfd, arelent *areloc)
8537 {
8538 /* Check whether we really have an ELF howto. */
8539
8540 if ((*areloc->sym_ptr_ptr)->the_bfd->xvec != abfd->xvec)
8541 {
8542 bfd_reloc_code_real_type code;
8543 reloc_howto_type *howto;
8544
8545 /* Alien reloc: Try to determine its type to replace it with an
8546 equivalent ELF reloc. */
8547
8548 if (areloc->howto->pc_relative)
8549 {
8550 switch (areloc->howto->bitsize)
8551 {
8552 case 8:
8553 code = BFD_RELOC_8_PCREL;
8554 break;
8555 case 12:
8556 code = BFD_RELOC_12_PCREL;
8557 break;
8558 case 16:
8559 code = BFD_RELOC_16_PCREL;
8560 break;
8561 case 24:
8562 code = BFD_RELOC_24_PCREL;
8563 break;
8564 case 32:
8565 code = BFD_RELOC_32_PCREL;
8566 break;
8567 case 64:
8568 code = BFD_RELOC_64_PCREL;
8569 break;
8570 default:
8571 goto fail;
8572 }
8573
8574 howto = bfd_reloc_type_lookup (abfd, code);
8575
8576 if (areloc->howto->pcrel_offset != howto->pcrel_offset)
8577 {
8578 if (howto->pcrel_offset)
8579 areloc->addend += areloc->address;
8580 else
8581 areloc->addend -= areloc->address; /* addend is unsigned!! */
8582 }
8583 }
8584 else
8585 {
8586 switch (areloc->howto->bitsize)
8587 {
8588 case 8:
8589 code = BFD_RELOC_8;
8590 break;
8591 case 14:
8592 code = BFD_RELOC_14;
8593 break;
8594 case 16:
8595 code = BFD_RELOC_16;
8596 break;
8597 case 26:
8598 code = BFD_RELOC_26;
8599 break;
8600 case 32:
8601 code = BFD_RELOC_32;
8602 break;
8603 case 64:
8604 code = BFD_RELOC_64;
8605 break;
8606 default:
8607 goto fail;
8608 }
8609
8610 howto = bfd_reloc_type_lookup (abfd, code);
8611 }
8612
8613 if (howto)
8614 areloc->howto = howto;
8615 else
8616 goto fail;
8617 }
8618
8619 return TRUE;
8620
8621 fail:
8622 (*_bfd_error_handler)
8623 (_("%B: unsupported relocation type %s"),
8624 abfd, areloc->howto->name);
8625 bfd_set_error (bfd_error_bad_value);
8626 return FALSE;
8627 }
8628
8629 bfd_boolean
8630 _bfd_elf_close_and_cleanup (bfd *abfd)
8631 {
8632 struct elf_obj_tdata *tdata = elf_tdata (abfd);
8633 if (bfd_get_format (abfd) == bfd_object && tdata != NULL)
8634 {
8635 if (elf_tdata (abfd)->o != NULL && elf_shstrtab (abfd) != NULL)
8636 _bfd_elf_strtab_free (elf_shstrtab (abfd));
8637 _bfd_dwarf2_cleanup_debug_info (abfd, &tdata->dwarf2_find_line_info);
8638 }
8639
8640 return _bfd_generic_close_and_cleanup (abfd);
8641 }
8642
8643 /* For Rel targets, we encode meaningful data for BFD_RELOC_VTABLE_ENTRY
8644 in the relocation's offset. Thus we cannot allow any sort of sanity
8645 range-checking to interfere. There is nothing else to do in processing
8646 this reloc. */
8647
8648 bfd_reloc_status_type
8649 _bfd_elf_rel_vtable_reloc_fn
8650 (bfd *abfd ATTRIBUTE_UNUSED, arelent *re ATTRIBUTE_UNUSED,
8651 struct bfd_symbol *symbol ATTRIBUTE_UNUSED,
8652 void *data ATTRIBUTE_UNUSED, asection *is ATTRIBUTE_UNUSED,
8653 bfd *obfd ATTRIBUTE_UNUSED, char **errmsg ATTRIBUTE_UNUSED)
8654 {
8655 return bfd_reloc_ok;
8656 }
8657 \f
8658 /* Elf core file support. Much of this only works on native
8659 toolchains, since we rely on knowing the
8660 machine-dependent procfs structure in order to pick
8661 out details about the corefile. */
8662
8663 #ifdef HAVE_SYS_PROCFS_H
8664 /* Needed for new procfs interface on sparc-solaris. */
8665 # define _STRUCTURED_PROC 1
8666 # include <sys/procfs.h>
8667 #endif
8668
8669 /* Return a PID that identifies a "thread" for threaded cores, or the
8670 PID of the main process for non-threaded cores. */
8671
8672 static int
8673 elfcore_make_pid (bfd *abfd)
8674 {
8675 int pid;
8676
8677 pid = elf_tdata (abfd)->core->lwpid;
8678 if (pid == 0)
8679 pid = elf_tdata (abfd)->core->pid;
8680
8681 return pid;
8682 }
8683
8684 /* If there isn't a section called NAME, make one, using
8685 data from SECT. Note, this function will generate a
8686 reference to NAME, so you shouldn't deallocate or
8687 overwrite it. */
8688
8689 static bfd_boolean
8690 elfcore_maybe_make_sect (bfd *abfd, char *name, asection *sect)
8691 {
8692 asection *sect2;
8693
8694 if (bfd_get_section_by_name (abfd, name) != NULL)
8695 return TRUE;
8696
8697 sect2 = bfd_make_section_with_flags (abfd, name, sect->flags);
8698 if (sect2 == NULL)
8699 return FALSE;
8700
8701 sect2->size = sect->size;
8702 sect2->filepos = sect->filepos;
8703 sect2->alignment_power = sect->alignment_power;
8704 return TRUE;
8705 }
8706
8707 /* Create a pseudosection containing SIZE bytes at FILEPOS. This
8708 actually creates up to two pseudosections:
8709 - For the single-threaded case, a section named NAME, unless
8710 such a section already exists.
8711 - For the multi-threaded case, a section named "NAME/PID", where
8712 PID is elfcore_make_pid (abfd).
8713 Both pseudosections have identical contents. */
8714 bfd_boolean
8715 _bfd_elfcore_make_pseudosection (bfd *abfd,
8716 char *name,
8717 size_t size,
8718 ufile_ptr filepos)
8719 {
8720 char buf[100];
8721 char *threaded_name;
8722 size_t len;
8723 asection *sect;
8724
8725 /* Build the section name. */
8726
8727 sprintf (buf, "%s/%d", name, elfcore_make_pid (abfd));
8728 len = strlen (buf) + 1;
8729 threaded_name = (char *) bfd_alloc (abfd, len);
8730 if (threaded_name == NULL)
8731 return FALSE;
8732 memcpy (threaded_name, buf, len);
8733
8734 sect = bfd_make_section_anyway_with_flags (abfd, threaded_name,
8735 SEC_HAS_CONTENTS);
8736 if (sect == NULL)
8737 return FALSE;
8738 sect->size = size;
8739 sect->filepos = filepos;
8740 sect->alignment_power = 2;
8741
8742 return elfcore_maybe_make_sect (abfd, name, sect);
8743 }
8744
8745 /* prstatus_t exists on:
8746 solaris 2.5+
8747 linux 2.[01] + glibc
8748 unixware 4.2
8749 */
8750
8751 #if defined (HAVE_PRSTATUS_T)
8752
8753 static bfd_boolean
8754 elfcore_grok_prstatus (bfd *abfd, Elf_Internal_Note *note)
8755 {
8756 size_t size;
8757 int offset;
8758
8759 if (note->descsz == sizeof (prstatus_t))
8760 {
8761 prstatus_t prstat;
8762
8763 size = sizeof (prstat.pr_reg);
8764 offset = offsetof (prstatus_t, pr_reg);
8765 memcpy (&prstat, note->descdata, sizeof (prstat));
8766
8767 /* Do not overwrite the core signal if it
8768 has already been set by another thread. */
8769 if (elf_tdata (abfd)->core->signal == 0)
8770 elf_tdata (abfd)->core->signal = prstat.pr_cursig;
8771 if (elf_tdata (abfd)->core->pid == 0)
8772 elf_tdata (abfd)->core->pid = prstat.pr_pid;
8773
8774 /* pr_who exists on:
8775 solaris 2.5+
8776 unixware 4.2
8777 pr_who doesn't exist on:
8778 linux 2.[01]
8779 */
8780 #if defined (HAVE_PRSTATUS_T_PR_WHO)
8781 elf_tdata (abfd)->core->lwpid = prstat.pr_who;
8782 #else
8783 elf_tdata (abfd)->core->lwpid = prstat.pr_pid;
8784 #endif
8785 }
8786 #if defined (HAVE_PRSTATUS32_T)
8787 else if (note->descsz == sizeof (prstatus32_t))
8788 {
8789 /* 64-bit host, 32-bit corefile */
8790 prstatus32_t prstat;
8791
8792 size = sizeof (prstat.pr_reg);
8793 offset = offsetof (prstatus32_t, pr_reg);
8794 memcpy (&prstat, note->descdata, sizeof (prstat));
8795
8796 /* Do not overwrite the core signal if it
8797 has already been set by another thread. */
8798 if (elf_tdata (abfd)->core->signal == 0)
8799 elf_tdata (abfd)->core->signal = prstat.pr_cursig;
8800 if (elf_tdata (abfd)->core->pid == 0)
8801 elf_tdata (abfd)->core->pid = prstat.pr_pid;
8802
8803 /* pr_who exists on:
8804 solaris 2.5+
8805 unixware 4.2
8806 pr_who doesn't exist on:
8807 linux 2.[01]
8808 */
8809 #if defined (HAVE_PRSTATUS32_T_PR_WHO)
8810 elf_tdata (abfd)->core->lwpid = prstat.pr_who;
8811 #else
8812 elf_tdata (abfd)->core->lwpid = prstat.pr_pid;
8813 #endif
8814 }
8815 #endif /* HAVE_PRSTATUS32_T */
8816 else
8817 {
8818 /* Fail - we don't know how to handle any other
8819 note size (ie. data object type). */
8820 return TRUE;
8821 }
8822
8823 /* Make a ".reg/999" section and a ".reg" section. */
8824 return _bfd_elfcore_make_pseudosection (abfd, ".reg",
8825 size, note->descpos + offset);
8826 }
8827 #endif /* defined (HAVE_PRSTATUS_T) */
8828
8829 /* Create a pseudosection containing the exact contents of NOTE. */
8830 static bfd_boolean
8831 elfcore_make_note_pseudosection (bfd *abfd,
8832 char *name,
8833 Elf_Internal_Note *note)
8834 {
8835 return _bfd_elfcore_make_pseudosection (abfd, name,
8836 note->descsz, note->descpos);
8837 }
8838
8839 /* There isn't a consistent prfpregset_t across platforms,
8840 but it doesn't matter, because we don't have to pick this
8841 data structure apart. */
8842
8843 static bfd_boolean
8844 elfcore_grok_prfpreg (bfd *abfd, Elf_Internal_Note *note)
8845 {
8846 return elfcore_make_note_pseudosection (abfd, ".reg2", note);
8847 }
8848
8849 /* Linux dumps the Intel SSE regs in a note named "LINUX" with a note
8850 type of NT_PRXFPREG. Just include the whole note's contents
8851 literally. */
8852
8853 static bfd_boolean
8854 elfcore_grok_prxfpreg (bfd *abfd, Elf_Internal_Note *note)
8855 {
8856 return elfcore_make_note_pseudosection (abfd, ".reg-xfp", note);
8857 }
8858
8859 /* Linux dumps the Intel XSAVE extended state in a note named "LINUX"
8860 with a note type of NT_X86_XSTATE. Just include the whole note's
8861 contents literally. */
8862
8863 static bfd_boolean
8864 elfcore_grok_xstatereg (bfd *abfd, Elf_Internal_Note *note)
8865 {
8866 return elfcore_make_note_pseudosection (abfd, ".reg-xstate", note);
8867 }
8868
8869 static bfd_boolean
8870 elfcore_grok_ppc_vmx (bfd *abfd, Elf_Internal_Note *note)
8871 {
8872 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-vmx", note);
8873 }
8874
8875 static bfd_boolean
8876 elfcore_grok_ppc_vsx (bfd *abfd, Elf_Internal_Note *note)
8877 {
8878 return elfcore_make_note_pseudosection (abfd, ".reg-ppc-vsx", note);
8879 }
8880
8881 static bfd_boolean
8882 elfcore_grok_s390_high_gprs (bfd *abfd, Elf_Internal_Note *note)
8883 {
8884 return elfcore_make_note_pseudosection (abfd, ".reg-s390-high-gprs", note);
8885 }
8886
8887 static bfd_boolean
8888 elfcore_grok_s390_timer (bfd *abfd, Elf_Internal_Note *note)
8889 {
8890 return elfcore_make_note_pseudosection (abfd, ".reg-s390-timer", note);
8891 }
8892
8893 static bfd_boolean
8894 elfcore_grok_s390_todcmp (bfd *abfd, Elf_Internal_Note *note)
8895 {
8896 return elfcore_make_note_pseudosection (abfd, ".reg-s390-todcmp", note);
8897 }
8898
8899 static bfd_boolean
8900 elfcore_grok_s390_todpreg (bfd *abfd, Elf_Internal_Note *note)
8901 {
8902 return elfcore_make_note_pseudosection (abfd, ".reg-s390-todpreg", note);
8903 }
8904
8905 static bfd_boolean
8906 elfcore_grok_s390_ctrs (bfd *abfd, Elf_Internal_Note *note)
8907 {
8908 return elfcore_make_note_pseudosection (abfd, ".reg-s390-ctrs", note);
8909 }
8910
8911 static bfd_boolean
8912 elfcore_grok_s390_prefix (bfd *abfd, Elf_Internal_Note *note)
8913 {
8914 return elfcore_make_note_pseudosection (abfd, ".reg-s390-prefix", note);
8915 }
8916
8917 static bfd_boolean
8918 elfcore_grok_s390_last_break (bfd *abfd, Elf_Internal_Note *note)
8919 {
8920 return elfcore_make_note_pseudosection (abfd, ".reg-s390-last-break", note);
8921 }
8922
8923 static bfd_boolean
8924 elfcore_grok_s390_system_call (bfd *abfd, Elf_Internal_Note *note)
8925 {
8926 return elfcore_make_note_pseudosection (abfd, ".reg-s390-system-call", note);
8927 }
8928
8929 static bfd_boolean
8930 elfcore_grok_s390_tdb (bfd *abfd, Elf_Internal_Note *note)
8931 {
8932 return elfcore_make_note_pseudosection (abfd, ".reg-s390-tdb", note);
8933 }
8934
8935 static bfd_boolean
8936 elfcore_grok_s390_vxrs_low (bfd *abfd, Elf_Internal_Note *note)
8937 {
8938 return elfcore_make_note_pseudosection (abfd, ".reg-s390-vxrs-low", note);
8939 }
8940
8941 static bfd_boolean
8942 elfcore_grok_s390_vxrs_high (bfd *abfd, Elf_Internal_Note *note)
8943 {
8944 return elfcore_make_note_pseudosection (abfd, ".reg-s390-vxrs-high", note);
8945 }
8946
8947 static bfd_boolean
8948 elfcore_grok_arm_vfp (bfd *abfd, Elf_Internal_Note *note)
8949 {
8950 return elfcore_make_note_pseudosection (abfd, ".reg-arm-vfp", note);
8951 }
8952
8953 static bfd_boolean
8954 elfcore_grok_aarch_tls (bfd *abfd, Elf_Internal_Note *note)
8955 {
8956 return elfcore_make_note_pseudosection (abfd, ".reg-aarch-tls", note);
8957 }
8958
8959 static bfd_boolean
8960 elfcore_grok_aarch_hw_break (bfd *abfd, Elf_Internal_Note *note)
8961 {
8962 return elfcore_make_note_pseudosection (abfd, ".reg-aarch-hw-break", note);
8963 }
8964
8965 static bfd_boolean
8966 elfcore_grok_aarch_hw_watch (bfd *abfd, Elf_Internal_Note *note)
8967 {
8968 return elfcore_make_note_pseudosection (abfd, ".reg-aarch-hw-watch", note);
8969 }
8970
8971 #if defined (HAVE_PRPSINFO_T)
8972 typedef prpsinfo_t elfcore_psinfo_t;
8973 #if defined (HAVE_PRPSINFO32_T) /* Sparc64 cross Sparc32 */
8974 typedef prpsinfo32_t elfcore_psinfo32_t;
8975 #endif
8976 #endif
8977
8978 #if defined (HAVE_PSINFO_T)
8979 typedef psinfo_t elfcore_psinfo_t;
8980 #if defined (HAVE_PSINFO32_T) /* Sparc64 cross Sparc32 */
8981 typedef psinfo32_t elfcore_psinfo32_t;
8982 #endif
8983 #endif
8984
8985 /* return a malloc'ed copy of a string at START which is at
8986 most MAX bytes long, possibly without a terminating '\0'.
8987 the copy will always have a terminating '\0'. */
8988
8989 char *
8990 _bfd_elfcore_strndup (bfd *abfd, char *start, size_t max)
8991 {
8992 char *dups;
8993 char *end = (char *) memchr (start, '\0', max);
8994 size_t len;
8995
8996 if (end == NULL)
8997 len = max;
8998 else
8999 len = end - start;
9000
9001 dups = (char *) bfd_alloc (abfd, len + 1);
9002 if (dups == NULL)
9003 return NULL;
9004
9005 memcpy (dups, start, len);
9006 dups[len] = '\0';
9007
9008 return dups;
9009 }
9010
9011 #if defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T)
9012 static bfd_boolean
9013 elfcore_grok_psinfo (bfd *abfd, Elf_Internal_Note *note)
9014 {
9015 if (note->descsz == sizeof (elfcore_psinfo_t))
9016 {
9017 elfcore_psinfo_t psinfo;
9018
9019 memcpy (&psinfo, note->descdata, sizeof (psinfo));
9020
9021 #if defined (HAVE_PSINFO_T_PR_PID) || defined (HAVE_PRPSINFO_T_PR_PID)
9022 elf_tdata (abfd)->core->pid = psinfo.pr_pid;
9023 #endif
9024 elf_tdata (abfd)->core->program
9025 = _bfd_elfcore_strndup (abfd, psinfo.pr_fname,
9026 sizeof (psinfo.pr_fname));
9027
9028 elf_tdata (abfd)->core->command
9029 = _bfd_elfcore_strndup (abfd, psinfo.pr_psargs,
9030 sizeof (psinfo.pr_psargs));
9031 }
9032 #if defined (HAVE_PRPSINFO32_T) || defined (HAVE_PSINFO32_T)
9033 else if (note->descsz == sizeof (elfcore_psinfo32_t))
9034 {
9035 /* 64-bit host, 32-bit corefile */
9036 elfcore_psinfo32_t psinfo;
9037
9038 memcpy (&psinfo, note->descdata, sizeof (psinfo));
9039
9040 #if defined (HAVE_PSINFO32_T_PR_PID) || defined (HAVE_PRPSINFO32_T_PR_PID)
9041 elf_tdata (abfd)->core->pid = psinfo.pr_pid;
9042 #endif
9043 elf_tdata (abfd)->core->program
9044 = _bfd_elfcore_strndup (abfd, psinfo.pr_fname,
9045 sizeof (psinfo.pr_fname));
9046
9047 elf_tdata (abfd)->core->command
9048 = _bfd_elfcore_strndup (abfd, psinfo.pr_psargs,
9049 sizeof (psinfo.pr_psargs));
9050 }
9051 #endif
9052
9053 else
9054 {
9055 /* Fail - we don't know how to handle any other
9056 note size (ie. data object type). */
9057 return TRUE;
9058 }
9059
9060 /* Note that for some reason, a spurious space is tacked
9061 onto the end of the args in some (at least one anyway)
9062 implementations, so strip it off if it exists. */
9063
9064 {
9065 char *command = elf_tdata (abfd)->core->command;
9066 int n = strlen (command);
9067
9068 if (0 < n && command[n - 1] == ' ')
9069 command[n - 1] = '\0';
9070 }
9071
9072 return TRUE;
9073 }
9074 #endif /* defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T) */
9075
9076 #if defined (HAVE_PSTATUS_T)
9077 static bfd_boolean
9078 elfcore_grok_pstatus (bfd *abfd, Elf_Internal_Note *note)
9079 {
9080 if (note->descsz == sizeof (pstatus_t)
9081 #if defined (HAVE_PXSTATUS_T)
9082 || note->descsz == sizeof (pxstatus_t)
9083 #endif
9084 )
9085 {
9086 pstatus_t pstat;
9087
9088 memcpy (&pstat, note->descdata, sizeof (pstat));
9089
9090 elf_tdata (abfd)->core->pid = pstat.pr_pid;
9091 }
9092 #if defined (HAVE_PSTATUS32_T)
9093 else if (note->descsz == sizeof (pstatus32_t))
9094 {
9095 /* 64-bit host, 32-bit corefile */
9096 pstatus32_t pstat;
9097
9098 memcpy (&pstat, note->descdata, sizeof (pstat));
9099
9100 elf_tdata (abfd)->core->pid = pstat.pr_pid;
9101 }
9102 #endif
9103 /* Could grab some more details from the "representative"
9104 lwpstatus_t in pstat.pr_lwp, but we'll catch it all in an
9105 NT_LWPSTATUS note, presumably. */
9106
9107 return TRUE;
9108 }
9109 #endif /* defined (HAVE_PSTATUS_T) */
9110
9111 #if defined (HAVE_LWPSTATUS_T)
9112 static bfd_boolean
9113 elfcore_grok_lwpstatus (bfd *abfd, Elf_Internal_Note *note)
9114 {
9115 lwpstatus_t lwpstat;
9116 char buf[100];
9117 char *name;
9118 size_t len;
9119 asection *sect;
9120
9121 if (note->descsz != sizeof (lwpstat)
9122 #if defined (HAVE_LWPXSTATUS_T)
9123 && note->descsz != sizeof (lwpxstatus_t)
9124 #endif
9125 )
9126 return TRUE;
9127
9128 memcpy (&lwpstat, note->descdata, sizeof (lwpstat));
9129
9130 elf_tdata (abfd)->core->lwpid = lwpstat.pr_lwpid;
9131 /* Do not overwrite the core signal if it has already been set by
9132 another thread. */
9133 if (elf_tdata (abfd)->core->signal == 0)
9134 elf_tdata (abfd)->core->signal = lwpstat.pr_cursig;
9135
9136 /* Make a ".reg/999" section. */
9137
9138 sprintf (buf, ".reg/%d", elfcore_make_pid (abfd));
9139 len = strlen (buf) + 1;
9140 name = bfd_alloc (abfd, len);
9141 if (name == NULL)
9142 return FALSE;
9143 memcpy (name, buf, len);
9144
9145 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
9146 if (sect == NULL)
9147 return FALSE;
9148
9149 #if defined (HAVE_LWPSTATUS_T_PR_CONTEXT)
9150 sect->size = sizeof (lwpstat.pr_context.uc_mcontext.gregs);
9151 sect->filepos = note->descpos
9152 + offsetof (lwpstatus_t, pr_context.uc_mcontext.gregs);
9153 #endif
9154
9155 #if defined (HAVE_LWPSTATUS_T_PR_REG)
9156 sect->size = sizeof (lwpstat.pr_reg);
9157 sect->filepos = note->descpos + offsetof (lwpstatus_t, pr_reg);
9158 #endif
9159
9160 sect->alignment_power = 2;
9161
9162 if (!elfcore_maybe_make_sect (abfd, ".reg", sect))
9163 return FALSE;
9164
9165 /* Make a ".reg2/999" section */
9166
9167 sprintf (buf, ".reg2/%d", elfcore_make_pid (abfd));
9168 len = strlen (buf) + 1;
9169 name = bfd_alloc (abfd, len);
9170 if (name == NULL)
9171 return FALSE;
9172 memcpy (name, buf, len);
9173
9174 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
9175 if (sect == NULL)
9176 return FALSE;
9177
9178 #if defined (HAVE_LWPSTATUS_T_PR_CONTEXT)
9179 sect->size = sizeof (lwpstat.pr_context.uc_mcontext.fpregs);
9180 sect->filepos = note->descpos
9181 + offsetof (lwpstatus_t, pr_context.uc_mcontext.fpregs);
9182 #endif
9183
9184 #if defined (HAVE_LWPSTATUS_T_PR_FPREG)
9185 sect->size = sizeof (lwpstat.pr_fpreg);
9186 sect->filepos = note->descpos + offsetof (lwpstatus_t, pr_fpreg);
9187 #endif
9188
9189 sect->alignment_power = 2;
9190
9191 return elfcore_maybe_make_sect (abfd, ".reg2", sect);
9192 }
9193 #endif /* defined (HAVE_LWPSTATUS_T) */
9194
9195 static bfd_boolean
9196 elfcore_grok_win32pstatus (bfd *abfd, Elf_Internal_Note *note)
9197 {
9198 char buf[30];
9199 char *name;
9200 size_t len;
9201 asection *sect;
9202 int type;
9203 int is_active_thread;
9204 bfd_vma base_addr;
9205
9206 if (note->descsz < 728)
9207 return TRUE;
9208
9209 if (! CONST_STRNEQ (note->namedata, "win32"))
9210 return TRUE;
9211
9212 type = bfd_get_32 (abfd, note->descdata);
9213
9214 switch (type)
9215 {
9216 case 1 /* NOTE_INFO_PROCESS */:
9217 /* FIXME: need to add ->core->command. */
9218 /* process_info.pid */
9219 elf_tdata (abfd)->core->pid = bfd_get_32 (abfd, note->descdata + 8);
9220 /* process_info.signal */
9221 elf_tdata (abfd)->core->signal = bfd_get_32 (abfd, note->descdata + 12);
9222 break;
9223
9224 case 2 /* NOTE_INFO_THREAD */:
9225 /* Make a ".reg/999" section. */
9226 /* thread_info.tid */
9227 sprintf (buf, ".reg/%ld", (long) bfd_get_32 (abfd, note->descdata + 8));
9228
9229 len = strlen (buf) + 1;
9230 name = (char *) bfd_alloc (abfd, len);
9231 if (name == NULL)
9232 return FALSE;
9233
9234 memcpy (name, buf, len);
9235
9236 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
9237 if (sect == NULL)
9238 return FALSE;
9239
9240 /* sizeof (thread_info.thread_context) */
9241 sect->size = 716;
9242 /* offsetof (thread_info.thread_context) */
9243 sect->filepos = note->descpos + 12;
9244 sect->alignment_power = 2;
9245
9246 /* thread_info.is_active_thread */
9247 is_active_thread = bfd_get_32 (abfd, note->descdata + 8);
9248
9249 if (is_active_thread)
9250 if (! elfcore_maybe_make_sect (abfd, ".reg", sect))
9251 return FALSE;
9252 break;
9253
9254 case 3 /* NOTE_INFO_MODULE */:
9255 /* Make a ".module/xxxxxxxx" section. */
9256 /* module_info.base_address */
9257 base_addr = bfd_get_32 (abfd, note->descdata + 4);
9258 sprintf (buf, ".module/%08lx", (unsigned long) base_addr);
9259
9260 len = strlen (buf) + 1;
9261 name = (char *) bfd_alloc (abfd, len);
9262 if (name == NULL)
9263 return FALSE;
9264
9265 memcpy (name, buf, len);
9266
9267 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
9268
9269 if (sect == NULL)
9270 return FALSE;
9271
9272 sect->size = note->descsz;
9273 sect->filepos = note->descpos;
9274 sect->alignment_power = 2;
9275 break;
9276
9277 default:
9278 return TRUE;
9279 }
9280
9281 return TRUE;
9282 }
9283
9284 static bfd_boolean
9285 elfcore_grok_note (bfd *abfd, Elf_Internal_Note *note)
9286 {
9287 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
9288
9289 switch (note->type)
9290 {
9291 default:
9292 return TRUE;
9293
9294 case NT_PRSTATUS:
9295 if (bed->elf_backend_grok_prstatus)
9296 if ((*bed->elf_backend_grok_prstatus) (abfd, note))
9297 return TRUE;
9298 #if defined (HAVE_PRSTATUS_T)
9299 return elfcore_grok_prstatus (abfd, note);
9300 #else
9301 return TRUE;
9302 #endif
9303
9304 #if defined (HAVE_PSTATUS_T)
9305 case NT_PSTATUS:
9306 return elfcore_grok_pstatus (abfd, note);
9307 #endif
9308
9309 #if defined (HAVE_LWPSTATUS_T)
9310 case NT_LWPSTATUS:
9311 return elfcore_grok_lwpstatus (abfd, note);
9312 #endif
9313
9314 case NT_FPREGSET: /* FIXME: rename to NT_PRFPREG */
9315 return elfcore_grok_prfpreg (abfd, note);
9316
9317 case NT_WIN32PSTATUS:
9318 return elfcore_grok_win32pstatus (abfd, note);
9319
9320 case NT_PRXFPREG: /* Linux SSE extension */
9321 if (note->namesz == 6
9322 && strcmp (note->namedata, "LINUX") == 0)
9323 return elfcore_grok_prxfpreg (abfd, note);
9324 else
9325 return TRUE;
9326
9327 case NT_X86_XSTATE: /* Linux XSAVE extension */
9328 if (note->namesz == 6
9329 && strcmp (note->namedata, "LINUX") == 0)
9330 return elfcore_grok_xstatereg (abfd, note);
9331 else if (note->namesz == 8
9332 && strcmp (note->namedata, "FreeBSD") == 0)
9333 return elfcore_grok_xstatereg (abfd, note);
9334 else
9335 return TRUE;
9336
9337 case NT_PPC_VMX:
9338 if (note->namesz == 6
9339 && strcmp (note->namedata, "LINUX") == 0)
9340 return elfcore_grok_ppc_vmx (abfd, note);
9341 else
9342 return TRUE;
9343
9344 case NT_PPC_VSX:
9345 if (note->namesz == 6
9346 && strcmp (note->namedata, "LINUX") == 0)
9347 return elfcore_grok_ppc_vsx (abfd, note);
9348 else
9349 return TRUE;
9350
9351 case NT_S390_HIGH_GPRS:
9352 if (note->namesz == 6
9353 && strcmp (note->namedata, "LINUX") == 0)
9354 return elfcore_grok_s390_high_gprs (abfd, note);
9355 else
9356 return TRUE;
9357
9358 case NT_S390_TIMER:
9359 if (note->namesz == 6
9360 && strcmp (note->namedata, "LINUX") == 0)
9361 return elfcore_grok_s390_timer (abfd, note);
9362 else
9363 return TRUE;
9364
9365 case NT_S390_TODCMP:
9366 if (note->namesz == 6
9367 && strcmp (note->namedata, "LINUX") == 0)
9368 return elfcore_grok_s390_todcmp (abfd, note);
9369 else
9370 return TRUE;
9371
9372 case NT_S390_TODPREG:
9373 if (note->namesz == 6
9374 && strcmp (note->namedata, "LINUX") == 0)
9375 return elfcore_grok_s390_todpreg (abfd, note);
9376 else
9377 return TRUE;
9378
9379 case NT_S390_CTRS:
9380 if (note->namesz == 6
9381 && strcmp (note->namedata, "LINUX") == 0)
9382 return elfcore_grok_s390_ctrs (abfd, note);
9383 else
9384 return TRUE;
9385
9386 case NT_S390_PREFIX:
9387 if (note->namesz == 6
9388 && strcmp (note->namedata, "LINUX") == 0)
9389 return elfcore_grok_s390_prefix (abfd, note);
9390 else
9391 return TRUE;
9392
9393 case NT_S390_LAST_BREAK:
9394 if (note->namesz == 6
9395 && strcmp (note->namedata, "LINUX") == 0)
9396 return elfcore_grok_s390_last_break (abfd, note);
9397 else
9398 return TRUE;
9399
9400 case NT_S390_SYSTEM_CALL:
9401 if (note->namesz == 6
9402 && strcmp (note->namedata, "LINUX") == 0)
9403 return elfcore_grok_s390_system_call (abfd, note);
9404 else
9405 return TRUE;
9406
9407 case NT_S390_TDB:
9408 if (note->namesz == 6
9409 && strcmp (note->namedata, "LINUX") == 0)
9410 return elfcore_grok_s390_tdb (abfd, note);
9411 else
9412 return TRUE;
9413
9414 case NT_S390_VXRS_LOW:
9415 if (note->namesz == 6
9416 && strcmp (note->namedata, "LINUX") == 0)
9417 return elfcore_grok_s390_vxrs_low (abfd, note);
9418 else
9419 return TRUE;
9420
9421 case NT_S390_VXRS_HIGH:
9422 if (note->namesz == 6
9423 && strcmp (note->namedata, "LINUX") == 0)
9424 return elfcore_grok_s390_vxrs_high (abfd, note);
9425 else
9426 return TRUE;
9427
9428 case NT_ARM_VFP:
9429 if (note->namesz == 6
9430 && strcmp (note->namedata, "LINUX") == 0)
9431 return elfcore_grok_arm_vfp (abfd, note);
9432 else
9433 return TRUE;
9434
9435 case NT_ARM_TLS:
9436 if (note->namesz == 6
9437 && strcmp (note->namedata, "LINUX") == 0)
9438 return elfcore_grok_aarch_tls (abfd, note);
9439 else
9440 return TRUE;
9441
9442 case NT_ARM_HW_BREAK:
9443 if (note->namesz == 6
9444 && strcmp (note->namedata, "LINUX") == 0)
9445 return elfcore_grok_aarch_hw_break (abfd, note);
9446 else
9447 return TRUE;
9448
9449 case NT_ARM_HW_WATCH:
9450 if (note->namesz == 6
9451 && strcmp (note->namedata, "LINUX") == 0)
9452 return elfcore_grok_aarch_hw_watch (abfd, note);
9453 else
9454 return TRUE;
9455
9456 case NT_PRPSINFO:
9457 case NT_PSINFO:
9458 if (bed->elf_backend_grok_psinfo)
9459 if ((*bed->elf_backend_grok_psinfo) (abfd, note))
9460 return TRUE;
9461 #if defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T)
9462 return elfcore_grok_psinfo (abfd, note);
9463 #else
9464 return TRUE;
9465 #endif
9466
9467 case NT_AUXV:
9468 {
9469 asection *sect = bfd_make_section_anyway_with_flags (abfd, ".auxv",
9470 SEC_HAS_CONTENTS);
9471
9472 if (sect == NULL)
9473 return FALSE;
9474 sect->size = note->descsz;
9475 sect->filepos = note->descpos;
9476 sect->alignment_power = 1 + bfd_get_arch_size (abfd) / 32;
9477
9478 return TRUE;
9479 }
9480
9481 case NT_FILE:
9482 return elfcore_make_note_pseudosection (abfd, ".note.linuxcore.file",
9483 note);
9484
9485 case NT_SIGINFO:
9486 return elfcore_make_note_pseudosection (abfd, ".note.linuxcore.siginfo",
9487 note);
9488
9489 case NT_FREEBSD_THRMISC:
9490 if (note->namesz == 8
9491 && strcmp (note->namedata, "FreeBSD") == 0)
9492 return elfcore_make_note_pseudosection (abfd, ".thrmisc", note);
9493 else
9494 return TRUE;
9495 }
9496 }
9497
9498 static bfd_boolean
9499 elfobj_grok_gnu_build_id (bfd *abfd, Elf_Internal_Note *note)
9500 {
9501 struct bfd_build_id* build_id;
9502
9503 if (note->descsz == 0)
9504 return FALSE;
9505
9506 build_id = bfd_alloc (abfd, sizeof (struct bfd_build_id) - 1 + note->descsz);
9507 if (build_id == NULL)
9508 return FALSE;
9509
9510 build_id->size = note->descsz;
9511 memcpy (build_id->data, note->descdata, note->descsz);
9512 abfd->build_id = build_id;
9513
9514 return TRUE;
9515 }
9516
9517 static bfd_boolean
9518 elfobj_grok_gnu_note (bfd *abfd, Elf_Internal_Note *note)
9519 {
9520 switch (note->type)
9521 {
9522 default:
9523 return TRUE;
9524
9525 case NT_GNU_BUILD_ID:
9526 return elfobj_grok_gnu_build_id (abfd, note);
9527 }
9528 }
9529
9530 static bfd_boolean
9531 elfobj_grok_stapsdt_note_1 (bfd *abfd, Elf_Internal_Note *note)
9532 {
9533 struct sdt_note *cur =
9534 (struct sdt_note *) bfd_alloc (abfd, sizeof (struct sdt_note)
9535 + note->descsz);
9536
9537 cur->next = (struct sdt_note *) (elf_tdata (abfd))->sdt_note_head;
9538 cur->size = (bfd_size_type) note->descsz;
9539 memcpy (cur->data, note->descdata, note->descsz);
9540
9541 elf_tdata (abfd)->sdt_note_head = cur;
9542
9543 return TRUE;
9544 }
9545
9546 static bfd_boolean
9547 elfobj_grok_stapsdt_note (bfd *abfd, Elf_Internal_Note *note)
9548 {
9549 switch (note->type)
9550 {
9551 case NT_STAPSDT:
9552 return elfobj_grok_stapsdt_note_1 (abfd, note);
9553
9554 default:
9555 return TRUE;
9556 }
9557 }
9558
9559 static bfd_boolean
9560 elfcore_netbsd_get_lwpid (Elf_Internal_Note *note, int *lwpidp)
9561 {
9562 char *cp;
9563
9564 cp = strchr (note->namedata, '@');
9565 if (cp != NULL)
9566 {
9567 *lwpidp = atoi(cp + 1);
9568 return TRUE;
9569 }
9570 return FALSE;
9571 }
9572
9573 static bfd_boolean
9574 elfcore_grok_netbsd_procinfo (bfd *abfd, Elf_Internal_Note *note)
9575 {
9576 /* Signal number at offset 0x08. */
9577 elf_tdata (abfd)->core->signal
9578 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + 0x08);
9579
9580 /* Process ID at offset 0x50. */
9581 elf_tdata (abfd)->core->pid
9582 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + 0x50);
9583
9584 /* Command name at 0x7c (max 32 bytes, including nul). */
9585 elf_tdata (abfd)->core->command
9586 = _bfd_elfcore_strndup (abfd, note->descdata + 0x7c, 31);
9587
9588 return elfcore_make_note_pseudosection (abfd, ".note.netbsdcore.procinfo",
9589 note);
9590 }
9591
9592 static bfd_boolean
9593 elfcore_grok_netbsd_note (bfd *abfd, Elf_Internal_Note *note)
9594 {
9595 int lwp;
9596
9597 if (elfcore_netbsd_get_lwpid (note, &lwp))
9598 elf_tdata (abfd)->core->lwpid = lwp;
9599
9600 if (note->type == NT_NETBSDCORE_PROCINFO)
9601 {
9602 /* NetBSD-specific core "procinfo". Note that we expect to
9603 find this note before any of the others, which is fine,
9604 since the kernel writes this note out first when it
9605 creates a core file. */
9606
9607 return elfcore_grok_netbsd_procinfo (abfd, note);
9608 }
9609
9610 /* As of Jan 2002 there are no other machine-independent notes
9611 defined for NetBSD core files. If the note type is less
9612 than the start of the machine-dependent note types, we don't
9613 understand it. */
9614
9615 if (note->type < NT_NETBSDCORE_FIRSTMACH)
9616 return TRUE;
9617
9618
9619 switch (bfd_get_arch (abfd))
9620 {
9621 /* On the Alpha, SPARC (32-bit and 64-bit), PT_GETREGS == mach+0 and
9622 PT_GETFPREGS == mach+2. */
9623
9624 case bfd_arch_alpha:
9625 case bfd_arch_sparc:
9626 switch (note->type)
9627 {
9628 case NT_NETBSDCORE_FIRSTMACH+0:
9629 return elfcore_make_note_pseudosection (abfd, ".reg", note);
9630
9631 case NT_NETBSDCORE_FIRSTMACH+2:
9632 return elfcore_make_note_pseudosection (abfd, ".reg2", note);
9633
9634 default:
9635 return TRUE;
9636 }
9637
9638 /* On all other arch's, PT_GETREGS == mach+1 and
9639 PT_GETFPREGS == mach+3. */
9640
9641 default:
9642 switch (note->type)
9643 {
9644 case NT_NETBSDCORE_FIRSTMACH+1:
9645 return elfcore_make_note_pseudosection (abfd, ".reg", note);
9646
9647 case NT_NETBSDCORE_FIRSTMACH+3:
9648 return elfcore_make_note_pseudosection (abfd, ".reg2", note);
9649
9650 default:
9651 return TRUE;
9652 }
9653 }
9654 /* NOTREACHED */
9655 }
9656
9657 static bfd_boolean
9658 elfcore_grok_openbsd_procinfo (bfd *abfd, Elf_Internal_Note *note)
9659 {
9660 /* Signal number at offset 0x08. */
9661 elf_tdata (abfd)->core->signal
9662 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + 0x08);
9663
9664 /* Process ID at offset 0x20. */
9665 elf_tdata (abfd)->core->pid
9666 = bfd_h_get_32 (abfd, (bfd_byte *) note->descdata + 0x20);
9667
9668 /* Command name at 0x48 (max 32 bytes, including nul). */
9669 elf_tdata (abfd)->core->command
9670 = _bfd_elfcore_strndup (abfd, note->descdata + 0x48, 31);
9671
9672 return TRUE;
9673 }
9674
9675 static bfd_boolean
9676 elfcore_grok_openbsd_note (bfd *abfd, Elf_Internal_Note *note)
9677 {
9678 if (note->type == NT_OPENBSD_PROCINFO)
9679 return elfcore_grok_openbsd_procinfo (abfd, note);
9680
9681 if (note->type == NT_OPENBSD_REGS)
9682 return elfcore_make_note_pseudosection (abfd, ".reg", note);
9683
9684 if (note->type == NT_OPENBSD_FPREGS)
9685 return elfcore_make_note_pseudosection (abfd, ".reg2", note);
9686
9687 if (note->type == NT_OPENBSD_XFPREGS)
9688 return elfcore_make_note_pseudosection (abfd, ".reg-xfp", note);
9689
9690 if (note->type == NT_OPENBSD_AUXV)
9691 {
9692 asection *sect = bfd_make_section_anyway_with_flags (abfd, ".auxv",
9693 SEC_HAS_CONTENTS);
9694
9695 if (sect == NULL)
9696 return FALSE;
9697 sect->size = note->descsz;
9698 sect->filepos = note->descpos;
9699 sect->alignment_power = 1 + bfd_get_arch_size (abfd) / 32;
9700
9701 return TRUE;
9702 }
9703
9704 if (note->type == NT_OPENBSD_WCOOKIE)
9705 {
9706 asection *sect = bfd_make_section_anyway_with_flags (abfd, ".wcookie",
9707 SEC_HAS_CONTENTS);
9708
9709 if (sect == NULL)
9710 return FALSE;
9711 sect->size = note->descsz;
9712 sect->filepos = note->descpos;
9713 sect->alignment_power = 1 + bfd_get_arch_size (abfd) / 32;
9714
9715 return TRUE;
9716 }
9717
9718 return TRUE;
9719 }
9720
9721 static bfd_boolean
9722 elfcore_grok_nto_status (bfd *abfd, Elf_Internal_Note *note, long *tid)
9723 {
9724 void *ddata = note->descdata;
9725 char buf[100];
9726 char *name;
9727 asection *sect;
9728 short sig;
9729 unsigned flags;
9730
9731 /* nto_procfs_status 'pid' field is at offset 0. */
9732 elf_tdata (abfd)->core->pid = bfd_get_32 (abfd, (bfd_byte *) ddata);
9733
9734 /* nto_procfs_status 'tid' field is at offset 4. Pass it back. */
9735 *tid = bfd_get_32 (abfd, (bfd_byte *) ddata + 4);
9736
9737 /* nto_procfs_status 'flags' field is at offset 8. */
9738 flags = bfd_get_32 (abfd, (bfd_byte *) ddata + 8);
9739
9740 /* nto_procfs_status 'what' field is at offset 14. */
9741 if ((sig = bfd_get_16 (abfd, (bfd_byte *) ddata + 14)) > 0)
9742 {
9743 elf_tdata (abfd)->core->signal = sig;
9744 elf_tdata (abfd)->core->lwpid = *tid;
9745 }
9746
9747 /* _DEBUG_FLAG_CURTID (current thread) is 0x80. Some cores
9748 do not come from signals so we make sure we set the current
9749 thread just in case. */
9750 if (flags & 0x00000080)
9751 elf_tdata (abfd)->core->lwpid = *tid;
9752
9753 /* Make a ".qnx_core_status/%d" section. */
9754 sprintf (buf, ".qnx_core_status/%ld", *tid);
9755
9756 name = (char *) bfd_alloc (abfd, strlen (buf) + 1);
9757 if (name == NULL)
9758 return FALSE;
9759 strcpy (name, buf);
9760
9761 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
9762 if (sect == NULL)
9763 return FALSE;
9764
9765 sect->size = note->descsz;
9766 sect->filepos = note->descpos;
9767 sect->alignment_power = 2;
9768
9769 return (elfcore_maybe_make_sect (abfd, ".qnx_core_status", sect));
9770 }
9771
9772 static bfd_boolean
9773 elfcore_grok_nto_regs (bfd *abfd,
9774 Elf_Internal_Note *note,
9775 long tid,
9776 char *base)
9777 {
9778 char buf[100];
9779 char *name;
9780 asection *sect;
9781
9782 /* Make a "(base)/%d" section. */
9783 sprintf (buf, "%s/%ld", base, tid);
9784
9785 name = (char *) bfd_alloc (abfd, strlen (buf) + 1);
9786 if (name == NULL)
9787 return FALSE;
9788 strcpy (name, buf);
9789
9790 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
9791 if (sect == NULL)
9792 return FALSE;
9793
9794 sect->size = note->descsz;
9795 sect->filepos = note->descpos;
9796 sect->alignment_power = 2;
9797
9798 /* This is the current thread. */
9799 if (elf_tdata (abfd)->core->lwpid == tid)
9800 return elfcore_maybe_make_sect (abfd, base, sect);
9801
9802 return TRUE;
9803 }
9804
9805 #define BFD_QNT_CORE_INFO 7
9806 #define BFD_QNT_CORE_STATUS 8
9807 #define BFD_QNT_CORE_GREG 9
9808 #define BFD_QNT_CORE_FPREG 10
9809
9810 static bfd_boolean
9811 elfcore_grok_nto_note (bfd *abfd, Elf_Internal_Note *note)
9812 {
9813 /* Every GREG section has a STATUS section before it. Store the
9814 tid from the previous call to pass down to the next gregs
9815 function. */
9816 static long tid = 1;
9817
9818 switch (note->type)
9819 {
9820 case BFD_QNT_CORE_INFO:
9821 return elfcore_make_note_pseudosection (abfd, ".qnx_core_info", note);
9822 case BFD_QNT_CORE_STATUS:
9823 return elfcore_grok_nto_status (abfd, note, &tid);
9824 case BFD_QNT_CORE_GREG:
9825 return elfcore_grok_nto_regs (abfd, note, tid, ".reg");
9826 case BFD_QNT_CORE_FPREG:
9827 return elfcore_grok_nto_regs (abfd, note, tid, ".reg2");
9828 default:
9829 return TRUE;
9830 }
9831 }
9832
9833 static bfd_boolean
9834 elfcore_grok_spu_note (bfd *abfd, Elf_Internal_Note *note)
9835 {
9836 char *name;
9837 asection *sect;
9838 size_t len;
9839
9840 /* Use note name as section name. */
9841 len = note->namesz;
9842 name = (char *) bfd_alloc (abfd, len);
9843 if (name == NULL)
9844 return FALSE;
9845 memcpy (name, note->namedata, len);
9846 name[len - 1] = '\0';
9847
9848 sect = bfd_make_section_anyway_with_flags (abfd, name, SEC_HAS_CONTENTS);
9849 if (sect == NULL)
9850 return FALSE;
9851
9852 sect->size = note->descsz;
9853 sect->filepos = note->descpos;
9854 sect->alignment_power = 1;
9855
9856 return TRUE;
9857 }
9858
9859 /* Function: elfcore_write_note
9860
9861 Inputs:
9862 buffer to hold note, and current size of buffer
9863 name of note
9864 type of note
9865 data for note
9866 size of data for note
9867
9868 Writes note to end of buffer. ELF64 notes are written exactly as
9869 for ELF32, despite the current (as of 2006) ELF gabi specifying
9870 that they ought to have 8-byte namesz and descsz field, and have
9871 8-byte alignment. Other writers, eg. Linux kernel, do the same.
9872
9873 Return:
9874 Pointer to realloc'd buffer, *BUFSIZ updated. */
9875
9876 char *
9877 elfcore_write_note (bfd *abfd,
9878 char *buf,
9879 int *bufsiz,
9880 const char *name,
9881 int type,
9882 const void *input,
9883 int size)
9884 {
9885 Elf_External_Note *xnp;
9886 size_t namesz;
9887 size_t newspace;
9888 char *dest;
9889
9890 namesz = 0;
9891 if (name != NULL)
9892 namesz = strlen (name) + 1;
9893
9894 newspace = 12 + ((namesz + 3) & -4) + ((size + 3) & -4);
9895
9896 buf = (char *) realloc (buf, *bufsiz + newspace);
9897 if (buf == NULL)
9898 return buf;
9899 dest = buf + *bufsiz;
9900 *bufsiz += newspace;
9901 xnp = (Elf_External_Note *) dest;
9902 H_PUT_32 (abfd, namesz, xnp->namesz);
9903 H_PUT_32 (abfd, size, xnp->descsz);
9904 H_PUT_32 (abfd, type, xnp->type);
9905 dest = xnp->name;
9906 if (name != NULL)
9907 {
9908 memcpy (dest, name, namesz);
9909 dest += namesz;
9910 while (namesz & 3)
9911 {
9912 *dest++ = '\0';
9913 ++namesz;
9914 }
9915 }
9916 memcpy (dest, input, size);
9917 dest += size;
9918 while (size & 3)
9919 {
9920 *dest++ = '\0';
9921 ++size;
9922 }
9923 return buf;
9924 }
9925
9926 char *
9927 elfcore_write_prpsinfo (bfd *abfd,
9928 char *buf,
9929 int *bufsiz,
9930 const char *fname,
9931 const char *psargs)
9932 {
9933 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
9934
9935 if (bed->elf_backend_write_core_note != NULL)
9936 {
9937 char *ret;
9938 ret = (*bed->elf_backend_write_core_note) (abfd, buf, bufsiz,
9939 NT_PRPSINFO, fname, psargs);
9940 if (ret != NULL)
9941 return ret;
9942 }
9943
9944 #if defined (HAVE_PRPSINFO_T) || defined (HAVE_PSINFO_T)
9945 #if defined (HAVE_PRPSINFO32_T) || defined (HAVE_PSINFO32_T)
9946 if (bed->s->elfclass == ELFCLASS32)
9947 {
9948 #if defined (HAVE_PSINFO32_T)
9949 psinfo32_t data;
9950 int note_type = NT_PSINFO;
9951 #else
9952 prpsinfo32_t data;
9953 int note_type = NT_PRPSINFO;
9954 #endif
9955
9956 memset (&data, 0, sizeof (data));
9957 strncpy (data.pr_fname, fname, sizeof (data.pr_fname));
9958 strncpy (data.pr_psargs, psargs, sizeof (data.pr_psargs));
9959 return elfcore_write_note (abfd, buf, bufsiz,
9960 "CORE", note_type, &data, sizeof (data));
9961 }
9962 else
9963 #endif
9964 {
9965 #if defined (HAVE_PSINFO_T)
9966 psinfo_t data;
9967 int note_type = NT_PSINFO;
9968 #else
9969 prpsinfo_t data;
9970 int note_type = NT_PRPSINFO;
9971 #endif
9972
9973 memset (&data, 0, sizeof (data));
9974 strncpy (data.pr_fname, fname, sizeof (data.pr_fname));
9975 strncpy (data.pr_psargs, psargs, sizeof (data.pr_psargs));
9976 return elfcore_write_note (abfd, buf, bufsiz,
9977 "CORE", note_type, &data, sizeof (data));
9978 }
9979 #endif /* PSINFO_T or PRPSINFO_T */
9980
9981 free (buf);
9982 return NULL;
9983 }
9984
9985 char *
9986 elfcore_write_linux_prpsinfo32
9987 (bfd *abfd, char *buf, int *bufsiz,
9988 const struct elf_internal_linux_prpsinfo *prpsinfo)
9989 {
9990 struct elf_external_linux_prpsinfo32 data;
9991
9992 swap_linux_prpsinfo32_out (abfd, prpsinfo, &data);
9993 return elfcore_write_note (abfd, buf, bufsiz, "CORE", NT_PRPSINFO,
9994 &data, sizeof (data));
9995 }
9996
9997 char *
9998 elfcore_write_linux_prpsinfo64
9999 (bfd *abfd, char *buf, int *bufsiz,
10000 const struct elf_internal_linux_prpsinfo *prpsinfo)
10001 {
10002 struct elf_external_linux_prpsinfo64 data;
10003
10004 swap_linux_prpsinfo64_out (abfd, prpsinfo, &data);
10005 return elfcore_write_note (abfd, buf, bufsiz,
10006 "CORE", NT_PRPSINFO, &data, sizeof (data));
10007 }
10008
10009 char *
10010 elfcore_write_prstatus (bfd *abfd,
10011 char *buf,
10012 int *bufsiz,
10013 long pid,
10014 int cursig,
10015 const void *gregs)
10016 {
10017 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
10018
10019 if (bed->elf_backend_write_core_note != NULL)
10020 {
10021 char *ret;
10022 ret = (*bed->elf_backend_write_core_note) (abfd, buf, bufsiz,
10023 NT_PRSTATUS,
10024 pid, cursig, gregs);
10025 if (ret != NULL)
10026 return ret;
10027 }
10028
10029 #if defined (HAVE_PRSTATUS_T)
10030 #if defined (HAVE_PRSTATUS32_T)
10031 if (bed->s->elfclass == ELFCLASS32)
10032 {
10033 prstatus32_t prstat;
10034
10035 memset (&prstat, 0, sizeof (prstat));
10036 prstat.pr_pid = pid;
10037 prstat.pr_cursig = cursig;
10038 memcpy (&prstat.pr_reg, gregs, sizeof (prstat.pr_reg));
10039 return elfcore_write_note (abfd, buf, bufsiz, "CORE",
10040 NT_PRSTATUS, &prstat, sizeof (prstat));
10041 }
10042 else
10043 #endif
10044 {
10045 prstatus_t prstat;
10046
10047 memset (&prstat, 0, sizeof (prstat));
10048 prstat.pr_pid = pid;
10049 prstat.pr_cursig = cursig;
10050 memcpy (&prstat.pr_reg, gregs, sizeof (prstat.pr_reg));
10051 return elfcore_write_note (abfd, buf, bufsiz, "CORE",
10052 NT_PRSTATUS, &prstat, sizeof (prstat));
10053 }
10054 #endif /* HAVE_PRSTATUS_T */
10055
10056 free (buf);
10057 return NULL;
10058 }
10059
10060 #if defined (HAVE_LWPSTATUS_T)
10061 char *
10062 elfcore_write_lwpstatus (bfd *abfd,
10063 char *buf,
10064 int *bufsiz,
10065 long pid,
10066 int cursig,
10067 const void *gregs)
10068 {
10069 lwpstatus_t lwpstat;
10070 const char *note_name = "CORE";
10071
10072 memset (&lwpstat, 0, sizeof (lwpstat));
10073 lwpstat.pr_lwpid = pid >> 16;
10074 lwpstat.pr_cursig = cursig;
10075 #if defined (HAVE_LWPSTATUS_T_PR_REG)
10076 memcpy (&lwpstat.pr_reg, gregs, sizeof (lwpstat.pr_reg));
10077 #elif defined (HAVE_LWPSTATUS_T_PR_CONTEXT)
10078 #if !defined(gregs)
10079 memcpy (lwpstat.pr_context.uc_mcontext.gregs,
10080 gregs, sizeof (lwpstat.pr_context.uc_mcontext.gregs));
10081 #else
10082 memcpy (lwpstat.pr_context.uc_mcontext.__gregs,
10083 gregs, sizeof (lwpstat.pr_context.uc_mcontext.__gregs));
10084 #endif
10085 #endif
10086 return elfcore_write_note (abfd, buf, bufsiz, note_name,
10087 NT_LWPSTATUS, &lwpstat, sizeof (lwpstat));
10088 }
10089 #endif /* HAVE_LWPSTATUS_T */
10090
10091 #if defined (HAVE_PSTATUS_T)
10092 char *
10093 elfcore_write_pstatus (bfd *abfd,
10094 char *buf,
10095 int *bufsiz,
10096 long pid,
10097 int cursig ATTRIBUTE_UNUSED,
10098 const void *gregs ATTRIBUTE_UNUSED)
10099 {
10100 const char *note_name = "CORE";
10101 #if defined (HAVE_PSTATUS32_T)
10102 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
10103
10104 if (bed->s->elfclass == ELFCLASS32)
10105 {
10106 pstatus32_t pstat;
10107
10108 memset (&pstat, 0, sizeof (pstat));
10109 pstat.pr_pid = pid & 0xffff;
10110 buf = elfcore_write_note (abfd, buf, bufsiz, note_name,
10111 NT_PSTATUS, &pstat, sizeof (pstat));
10112 return buf;
10113 }
10114 else
10115 #endif
10116 {
10117 pstatus_t pstat;
10118
10119 memset (&pstat, 0, sizeof (pstat));
10120 pstat.pr_pid = pid & 0xffff;
10121 buf = elfcore_write_note (abfd, buf, bufsiz, note_name,
10122 NT_PSTATUS, &pstat, sizeof (pstat));
10123 return buf;
10124 }
10125 }
10126 #endif /* HAVE_PSTATUS_T */
10127
10128 char *
10129 elfcore_write_prfpreg (bfd *abfd,
10130 char *buf,
10131 int *bufsiz,
10132 const void *fpregs,
10133 int size)
10134 {
10135 const char *note_name = "CORE";
10136 return elfcore_write_note (abfd, buf, bufsiz,
10137 note_name, NT_FPREGSET, fpregs, size);
10138 }
10139
10140 char *
10141 elfcore_write_prxfpreg (bfd *abfd,
10142 char *buf,
10143 int *bufsiz,
10144 const void *xfpregs,
10145 int size)
10146 {
10147 char *note_name = "LINUX";
10148 return elfcore_write_note (abfd, buf, bufsiz,
10149 note_name, NT_PRXFPREG, xfpregs, size);
10150 }
10151
10152 char *
10153 elfcore_write_xstatereg (bfd *abfd, char *buf, int *bufsiz,
10154 const void *xfpregs, int size)
10155 {
10156 char *note_name;
10157 if (get_elf_backend_data (abfd)->elf_osabi == ELFOSABI_FREEBSD)
10158 note_name = "FreeBSD";
10159 else
10160 note_name = "LINUX";
10161 return elfcore_write_note (abfd, buf, bufsiz,
10162 note_name, NT_X86_XSTATE, xfpregs, size);
10163 }
10164
10165 char *
10166 elfcore_write_ppc_vmx (bfd *abfd,
10167 char *buf,
10168 int *bufsiz,
10169 const void *ppc_vmx,
10170 int size)
10171 {
10172 char *note_name = "LINUX";
10173 return elfcore_write_note (abfd, buf, bufsiz,
10174 note_name, NT_PPC_VMX, ppc_vmx, size);
10175 }
10176
10177 char *
10178 elfcore_write_ppc_vsx (bfd *abfd,
10179 char *buf,
10180 int *bufsiz,
10181 const void *ppc_vsx,
10182 int size)
10183 {
10184 char *note_name = "LINUX";
10185 return elfcore_write_note (abfd, buf, bufsiz,
10186 note_name, NT_PPC_VSX, ppc_vsx, size);
10187 }
10188
10189 static char *
10190 elfcore_write_s390_high_gprs (bfd *abfd,
10191 char *buf,
10192 int *bufsiz,
10193 const void *s390_high_gprs,
10194 int size)
10195 {
10196 char *note_name = "LINUX";
10197 return elfcore_write_note (abfd, buf, bufsiz,
10198 note_name, NT_S390_HIGH_GPRS,
10199 s390_high_gprs, size);
10200 }
10201
10202 char *
10203 elfcore_write_s390_timer (bfd *abfd,
10204 char *buf,
10205 int *bufsiz,
10206 const void *s390_timer,
10207 int size)
10208 {
10209 char *note_name = "LINUX";
10210 return elfcore_write_note (abfd, buf, bufsiz,
10211 note_name, NT_S390_TIMER, s390_timer, size);
10212 }
10213
10214 char *
10215 elfcore_write_s390_todcmp (bfd *abfd,
10216 char *buf,
10217 int *bufsiz,
10218 const void *s390_todcmp,
10219 int size)
10220 {
10221 char *note_name = "LINUX";
10222 return elfcore_write_note (abfd, buf, bufsiz,
10223 note_name, NT_S390_TODCMP, s390_todcmp, size);
10224 }
10225
10226 char *
10227 elfcore_write_s390_todpreg (bfd *abfd,
10228 char *buf,
10229 int *bufsiz,
10230 const void *s390_todpreg,
10231 int size)
10232 {
10233 char *note_name = "LINUX";
10234 return elfcore_write_note (abfd, buf, bufsiz,
10235 note_name, NT_S390_TODPREG, s390_todpreg, size);
10236 }
10237
10238 char *
10239 elfcore_write_s390_ctrs (bfd *abfd,
10240 char *buf,
10241 int *bufsiz,
10242 const void *s390_ctrs,
10243 int size)
10244 {
10245 char *note_name = "LINUX";
10246 return elfcore_write_note (abfd, buf, bufsiz,
10247 note_name, NT_S390_CTRS, s390_ctrs, size);
10248 }
10249
10250 char *
10251 elfcore_write_s390_prefix (bfd *abfd,
10252 char *buf,
10253 int *bufsiz,
10254 const void *s390_prefix,
10255 int size)
10256 {
10257 char *note_name = "LINUX";
10258 return elfcore_write_note (abfd, buf, bufsiz,
10259 note_name, NT_S390_PREFIX, s390_prefix, size);
10260 }
10261
10262 char *
10263 elfcore_write_s390_last_break (bfd *abfd,
10264 char *buf,
10265 int *bufsiz,
10266 const void *s390_last_break,
10267 int size)
10268 {
10269 char *note_name = "LINUX";
10270 return elfcore_write_note (abfd, buf, bufsiz,
10271 note_name, NT_S390_LAST_BREAK,
10272 s390_last_break, size);
10273 }
10274
10275 char *
10276 elfcore_write_s390_system_call (bfd *abfd,
10277 char *buf,
10278 int *bufsiz,
10279 const void *s390_system_call,
10280 int size)
10281 {
10282 char *note_name = "LINUX";
10283 return elfcore_write_note (abfd, buf, bufsiz,
10284 note_name, NT_S390_SYSTEM_CALL,
10285 s390_system_call, size);
10286 }
10287
10288 char *
10289 elfcore_write_s390_tdb (bfd *abfd,
10290 char *buf,
10291 int *bufsiz,
10292 const void *s390_tdb,
10293 int size)
10294 {
10295 char *note_name = "LINUX";
10296 return elfcore_write_note (abfd, buf, bufsiz,
10297 note_name, NT_S390_TDB, s390_tdb, size);
10298 }
10299
10300 char *
10301 elfcore_write_s390_vxrs_low (bfd *abfd,
10302 char *buf,
10303 int *bufsiz,
10304 const void *s390_vxrs_low,
10305 int size)
10306 {
10307 char *note_name = "LINUX";
10308 return elfcore_write_note (abfd, buf, bufsiz,
10309 note_name, NT_S390_VXRS_LOW, s390_vxrs_low, size);
10310 }
10311
10312 char *
10313 elfcore_write_s390_vxrs_high (bfd *abfd,
10314 char *buf,
10315 int *bufsiz,
10316 const void *s390_vxrs_high,
10317 int size)
10318 {
10319 char *note_name = "LINUX";
10320 return elfcore_write_note (abfd, buf, bufsiz,
10321 note_name, NT_S390_VXRS_HIGH,
10322 s390_vxrs_high, size);
10323 }
10324
10325 char *
10326 elfcore_write_arm_vfp (bfd *abfd,
10327 char *buf,
10328 int *bufsiz,
10329 const void *arm_vfp,
10330 int size)
10331 {
10332 char *note_name = "LINUX";
10333 return elfcore_write_note (abfd, buf, bufsiz,
10334 note_name, NT_ARM_VFP, arm_vfp, size);
10335 }
10336
10337 char *
10338 elfcore_write_aarch_tls (bfd *abfd,
10339 char *buf,
10340 int *bufsiz,
10341 const void *aarch_tls,
10342 int size)
10343 {
10344 char *note_name = "LINUX";
10345 return elfcore_write_note (abfd, buf, bufsiz,
10346 note_name, NT_ARM_TLS, aarch_tls, size);
10347 }
10348
10349 char *
10350 elfcore_write_aarch_hw_break (bfd *abfd,
10351 char *buf,
10352 int *bufsiz,
10353 const void *aarch_hw_break,
10354 int size)
10355 {
10356 char *note_name = "LINUX";
10357 return elfcore_write_note (abfd, buf, bufsiz,
10358 note_name, NT_ARM_HW_BREAK, aarch_hw_break, size);
10359 }
10360
10361 char *
10362 elfcore_write_aarch_hw_watch (bfd *abfd,
10363 char *buf,
10364 int *bufsiz,
10365 const void *aarch_hw_watch,
10366 int size)
10367 {
10368 char *note_name = "LINUX";
10369 return elfcore_write_note (abfd, buf, bufsiz,
10370 note_name, NT_ARM_HW_WATCH, aarch_hw_watch, size);
10371 }
10372
10373 char *
10374 elfcore_write_register_note (bfd *abfd,
10375 char *buf,
10376 int *bufsiz,
10377 const char *section,
10378 const void *data,
10379 int size)
10380 {
10381 if (strcmp (section, ".reg2") == 0)
10382 return elfcore_write_prfpreg (abfd, buf, bufsiz, data, size);
10383 if (strcmp (section, ".reg-xfp") == 0)
10384 return elfcore_write_prxfpreg (abfd, buf, bufsiz, data, size);
10385 if (strcmp (section, ".reg-xstate") == 0)
10386 return elfcore_write_xstatereg (abfd, buf, bufsiz, data, size);
10387 if (strcmp (section, ".reg-ppc-vmx") == 0)
10388 return elfcore_write_ppc_vmx (abfd, buf, bufsiz, data, size);
10389 if (strcmp (section, ".reg-ppc-vsx") == 0)
10390 return elfcore_write_ppc_vsx (abfd, buf, bufsiz, data, size);
10391 if (strcmp (section, ".reg-s390-high-gprs") == 0)
10392 return elfcore_write_s390_high_gprs (abfd, buf, bufsiz, data, size);
10393 if (strcmp (section, ".reg-s390-timer") == 0)
10394 return elfcore_write_s390_timer (abfd, buf, bufsiz, data, size);
10395 if (strcmp (section, ".reg-s390-todcmp") == 0)
10396 return elfcore_write_s390_todcmp (abfd, buf, bufsiz, data, size);
10397 if (strcmp (section, ".reg-s390-todpreg") == 0)
10398 return elfcore_write_s390_todpreg (abfd, buf, bufsiz, data, size);
10399 if (strcmp (section, ".reg-s390-ctrs") == 0)
10400 return elfcore_write_s390_ctrs (abfd, buf, bufsiz, data, size);
10401 if (strcmp (section, ".reg-s390-prefix") == 0)
10402 return elfcore_write_s390_prefix (abfd, buf, bufsiz, data, size);
10403 if (strcmp (section, ".reg-s390-last-break") == 0)
10404 return elfcore_write_s390_last_break (abfd, buf, bufsiz, data, size);
10405 if (strcmp (section, ".reg-s390-system-call") == 0)
10406 return elfcore_write_s390_system_call (abfd, buf, bufsiz, data, size);
10407 if (strcmp (section, ".reg-s390-tdb") == 0)
10408 return elfcore_write_s390_tdb (abfd, buf, bufsiz, data, size);
10409 if (strcmp (section, ".reg-s390-vxrs-low") == 0)
10410 return elfcore_write_s390_vxrs_low (abfd, buf, bufsiz, data, size);
10411 if (strcmp (section, ".reg-s390-vxrs-high") == 0)
10412 return elfcore_write_s390_vxrs_high (abfd, buf, bufsiz, data, size);
10413 if (strcmp (section, ".reg-arm-vfp") == 0)
10414 return elfcore_write_arm_vfp (abfd, buf, bufsiz, data, size);
10415 if (strcmp (section, ".reg-aarch-tls") == 0)
10416 return elfcore_write_aarch_tls (abfd, buf, bufsiz, data, size);
10417 if (strcmp (section, ".reg-aarch-hw-break") == 0)
10418 return elfcore_write_aarch_hw_break (abfd, buf, bufsiz, data, size);
10419 if (strcmp (section, ".reg-aarch-hw-watch") == 0)
10420 return elfcore_write_aarch_hw_watch (abfd, buf, bufsiz, data, size);
10421 return NULL;
10422 }
10423
10424 static bfd_boolean
10425 elf_parse_notes (bfd *abfd, char *buf, size_t size, file_ptr offset)
10426 {
10427 char *p;
10428
10429 p = buf;
10430 while (p < buf + size)
10431 {
10432 /* FIXME: bad alignment assumption. */
10433 Elf_External_Note *xnp = (Elf_External_Note *) p;
10434 Elf_Internal_Note in;
10435
10436 if (offsetof (Elf_External_Note, name) > buf - p + size)
10437 return FALSE;
10438
10439 in.type = H_GET_32 (abfd, xnp->type);
10440
10441 in.namesz = H_GET_32 (abfd, xnp->namesz);
10442 in.namedata = xnp->name;
10443 if (in.namesz > buf - in.namedata + size)
10444 return FALSE;
10445
10446 in.descsz = H_GET_32 (abfd, xnp->descsz);
10447 in.descdata = in.namedata + BFD_ALIGN (in.namesz, 4);
10448 in.descpos = offset + (in.descdata - buf);
10449 if (in.descsz != 0
10450 && (in.descdata >= buf + size
10451 || in.descsz > buf - in.descdata + size))
10452 return FALSE;
10453
10454 switch (bfd_get_format (abfd))
10455 {
10456 default:
10457 return TRUE;
10458
10459 case bfd_core:
10460 {
10461 #define GROKER_ELEMENT(S,F) {S, sizeof (S) - 1, F}
10462 struct
10463 {
10464 const char * string;
10465 size_t len;
10466 bfd_boolean (* func)(bfd *, Elf_Internal_Note *);
10467 }
10468 grokers[] =
10469 {
10470 GROKER_ELEMENT ("", elfcore_grok_note),
10471 GROKER_ELEMENT ("NetBSD-CORE", elfcore_grok_netbsd_note),
10472 GROKER_ELEMENT ( "OpenBSD", elfcore_grok_openbsd_note),
10473 GROKER_ELEMENT ("QNX", elfcore_grok_nto_note),
10474 GROKER_ELEMENT ("SPU/", elfcore_grok_spu_note)
10475 };
10476 #undef GROKER_ELEMENT
10477 int i;
10478
10479 for (i = ARRAY_SIZE (grokers); i--;)
10480 {
10481 if (in.namesz >= grokers[i].len
10482 && strncmp (in.namedata, grokers[i].string,
10483 grokers[i].len) == 0)
10484 {
10485 if (! grokers[i].func (abfd, & in))
10486 return FALSE;
10487 break;
10488 }
10489 }
10490 break;
10491 }
10492
10493 case bfd_object:
10494 if (in.namesz == sizeof "GNU" && strcmp (in.namedata, "GNU") == 0)
10495 {
10496 if (! elfobj_grok_gnu_note (abfd, &in))
10497 return FALSE;
10498 }
10499 else if (in.namesz == sizeof "stapsdt"
10500 && strcmp (in.namedata, "stapsdt") == 0)
10501 {
10502 if (! elfobj_grok_stapsdt_note (abfd, &in))
10503 return FALSE;
10504 }
10505 break;
10506 }
10507
10508 p = in.descdata + BFD_ALIGN (in.descsz, 4);
10509 }
10510
10511 return TRUE;
10512 }
10513
10514 static bfd_boolean
10515 elf_read_notes (bfd *abfd, file_ptr offset, bfd_size_type size)
10516 {
10517 char *buf;
10518
10519 if (size <= 0)
10520 return TRUE;
10521
10522 if (bfd_seek (abfd, offset, SEEK_SET) != 0)
10523 return FALSE;
10524
10525 buf = (char *) bfd_malloc (size + 1);
10526 if (buf == NULL)
10527 return FALSE;
10528
10529 /* PR 17512: file: ec08f814
10530 0-termintate the buffer so that string searches will not overflow. */
10531 buf[size] = 0;
10532
10533 if (bfd_bread (buf, size, abfd) != size
10534 || !elf_parse_notes (abfd, buf, size, offset))
10535 {
10536 free (buf);
10537 return FALSE;
10538 }
10539
10540 free (buf);
10541 return TRUE;
10542 }
10543 \f
10544 /* Providing external access to the ELF program header table. */
10545
10546 /* Return an upper bound on the number of bytes required to store a
10547 copy of ABFD's program header table entries. Return -1 if an error
10548 occurs; bfd_get_error will return an appropriate code. */
10549
10550 long
10551 bfd_get_elf_phdr_upper_bound (bfd *abfd)
10552 {
10553 if (abfd->xvec->flavour != bfd_target_elf_flavour)
10554 {
10555 bfd_set_error (bfd_error_wrong_format);
10556 return -1;
10557 }
10558
10559 return elf_elfheader (abfd)->e_phnum * sizeof (Elf_Internal_Phdr);
10560 }
10561
10562 /* Copy ABFD's program header table entries to *PHDRS. The entries
10563 will be stored as an array of Elf_Internal_Phdr structures, as
10564 defined in include/elf/internal.h. To find out how large the
10565 buffer needs to be, call bfd_get_elf_phdr_upper_bound.
10566
10567 Return the number of program header table entries read, or -1 if an
10568 error occurs; bfd_get_error will return an appropriate code. */
10569
10570 int
10571 bfd_get_elf_phdrs (bfd *abfd, void *phdrs)
10572 {
10573 int num_phdrs;
10574
10575 if (abfd->xvec->flavour != bfd_target_elf_flavour)
10576 {
10577 bfd_set_error (bfd_error_wrong_format);
10578 return -1;
10579 }
10580
10581 num_phdrs = elf_elfheader (abfd)->e_phnum;
10582 memcpy (phdrs, elf_tdata (abfd)->phdr,
10583 num_phdrs * sizeof (Elf_Internal_Phdr));
10584
10585 return num_phdrs;
10586 }
10587
10588 enum elf_reloc_type_class
10589 _bfd_elf_reloc_type_class (const struct bfd_link_info *info ATTRIBUTE_UNUSED,
10590 const asection *rel_sec ATTRIBUTE_UNUSED,
10591 const Elf_Internal_Rela *rela ATTRIBUTE_UNUSED)
10592 {
10593 return reloc_class_normal;
10594 }
10595
10596 /* For RELA architectures, return the relocation value for a
10597 relocation against a local symbol. */
10598
10599 bfd_vma
10600 _bfd_elf_rela_local_sym (bfd *abfd,
10601 Elf_Internal_Sym *sym,
10602 asection **psec,
10603 Elf_Internal_Rela *rel)
10604 {
10605 asection *sec = *psec;
10606 bfd_vma relocation;
10607
10608 relocation = (sec->output_section->vma
10609 + sec->output_offset
10610 + sym->st_value);
10611 if ((sec->flags & SEC_MERGE)
10612 && ELF_ST_TYPE (sym->st_info) == STT_SECTION
10613 && sec->sec_info_type == SEC_INFO_TYPE_MERGE)
10614 {
10615 rel->r_addend =
10616 _bfd_merged_section_offset (abfd, psec,
10617 elf_section_data (sec)->sec_info,
10618 sym->st_value + rel->r_addend);
10619 if (sec != *psec)
10620 {
10621 /* If we have changed the section, and our original section is
10622 marked with SEC_EXCLUDE, it means that the original
10623 SEC_MERGE section has been completely subsumed in some
10624 other SEC_MERGE section. In this case, we need to leave
10625 some info around for --emit-relocs. */
10626 if ((sec->flags & SEC_EXCLUDE) != 0)
10627 sec->kept_section = *psec;
10628 sec = *psec;
10629 }
10630 rel->r_addend -= relocation;
10631 rel->r_addend += sec->output_section->vma + sec->output_offset;
10632 }
10633 return relocation;
10634 }
10635
10636 bfd_vma
10637 _bfd_elf_rel_local_sym (bfd *abfd,
10638 Elf_Internal_Sym *sym,
10639 asection **psec,
10640 bfd_vma addend)
10641 {
10642 asection *sec = *psec;
10643
10644 if (sec->sec_info_type != SEC_INFO_TYPE_MERGE)
10645 return sym->st_value + addend;
10646
10647 return _bfd_merged_section_offset (abfd, psec,
10648 elf_section_data (sec)->sec_info,
10649 sym->st_value + addend);
10650 }
10651
10652 /* Adjust an address within a section. Given OFFSET within SEC, return
10653 the new offset within the section, based upon changes made to the
10654 section. Returns -1 if the offset is now invalid.
10655 The offset (in abnd out) is in target sized bytes, however big a
10656 byte may be. */
10657
10658 bfd_vma
10659 _bfd_elf_section_offset (bfd *abfd,
10660 struct bfd_link_info *info,
10661 asection *sec,
10662 bfd_vma offset)
10663 {
10664 switch (sec->sec_info_type)
10665 {
10666 case SEC_INFO_TYPE_STABS:
10667 return _bfd_stab_section_offset (sec, elf_section_data (sec)->sec_info,
10668 offset);
10669 case SEC_INFO_TYPE_EH_FRAME:
10670 return _bfd_elf_eh_frame_section_offset (abfd, info, sec, offset);
10671
10672 default:
10673 if ((sec->flags & SEC_ELF_REVERSE_COPY) != 0)
10674 {
10675 /* Reverse the offset. */
10676 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
10677 bfd_size_type address_size = bed->s->arch_size / 8;
10678
10679 /* address_size and sec->size are in octets. Convert
10680 to bytes before subtracting the original offset. */
10681 offset = (sec->size - address_size) / bfd_octets_per_byte (abfd) - offset;
10682 }
10683 return offset;
10684 }
10685 }
10686 \f
10687 /* Create a new BFD as if by bfd_openr. Rather than opening a file,
10688 reconstruct an ELF file by reading the segments out of remote memory
10689 based on the ELF file header at EHDR_VMA and the ELF program headers it
10690 points to. If not null, *LOADBASEP is filled in with the difference
10691 between the VMAs from which the segments were read, and the VMAs the
10692 file headers (and hence BFD's idea of each section's VMA) put them at.
10693
10694 The function TARGET_READ_MEMORY is called to copy LEN bytes from the
10695 remote memory at target address VMA into the local buffer at MYADDR; it
10696 should return zero on success or an `errno' code on failure. TEMPL must
10697 be a BFD for an ELF target with the word size and byte order found in
10698 the remote memory. */
10699
10700 bfd *
10701 bfd_elf_bfd_from_remote_memory
10702 (bfd *templ,
10703 bfd_vma ehdr_vma,
10704 bfd_size_type size,
10705 bfd_vma *loadbasep,
10706 int (*target_read_memory) (bfd_vma, bfd_byte *, bfd_size_type))
10707 {
10708 return (*get_elf_backend_data (templ)->elf_backend_bfd_from_remote_memory)
10709 (templ, ehdr_vma, size, loadbasep, target_read_memory);
10710 }
10711 \f
10712 long
10713 _bfd_elf_get_synthetic_symtab (bfd *abfd,
10714 long symcount ATTRIBUTE_UNUSED,
10715 asymbol **syms ATTRIBUTE_UNUSED,
10716 long dynsymcount,
10717 asymbol **dynsyms,
10718 asymbol **ret)
10719 {
10720 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
10721 asection *relplt;
10722 asymbol *s;
10723 const char *relplt_name;
10724 bfd_boolean (*slurp_relocs) (bfd *, asection *, asymbol **, bfd_boolean);
10725 arelent *p;
10726 long count, i, n;
10727 size_t size;
10728 Elf_Internal_Shdr *hdr;
10729 char *names;
10730 asection *plt;
10731
10732 *ret = NULL;
10733
10734 if ((abfd->flags & (DYNAMIC | EXEC_P)) == 0)
10735 return 0;
10736
10737 if (dynsymcount <= 0)
10738 return 0;
10739
10740 if (!bed->plt_sym_val)
10741 return 0;
10742
10743 relplt_name = bed->relplt_name;
10744 if (relplt_name == NULL)
10745 relplt_name = bed->rela_plts_and_copies_p ? ".rela.plt" : ".rel.plt";
10746 relplt = bfd_get_section_by_name (abfd, relplt_name);
10747 if (relplt == NULL)
10748 return 0;
10749
10750 hdr = &elf_section_data (relplt)->this_hdr;
10751 if (hdr->sh_link != elf_dynsymtab (abfd)
10752 || (hdr->sh_type != SHT_REL && hdr->sh_type != SHT_RELA))
10753 return 0;
10754
10755 plt = bfd_get_section_by_name (abfd, ".plt");
10756 if (plt == NULL)
10757 return 0;
10758
10759 slurp_relocs = get_elf_backend_data (abfd)->s->slurp_reloc_table;
10760 if (! (*slurp_relocs) (abfd, relplt, dynsyms, TRUE))
10761 return -1;
10762
10763 count = relplt->size / hdr->sh_entsize;
10764 size = count * sizeof (asymbol);
10765 p = relplt->relocation;
10766 for (i = 0; i < count; i++, p += bed->s->int_rels_per_ext_rel)
10767 {
10768 size += strlen ((*p->sym_ptr_ptr)->name) + sizeof ("@plt");
10769 if (p->addend != 0)
10770 {
10771 #ifdef BFD64
10772 size += sizeof ("+0x") - 1 + 8 + 8 * (bed->s->elfclass == ELFCLASS64);
10773 #else
10774 size += sizeof ("+0x") - 1 + 8;
10775 #endif
10776 }
10777 }
10778
10779 s = *ret = (asymbol *) bfd_malloc (size);
10780 if (s == NULL)
10781 return -1;
10782
10783 names = (char *) (s + count);
10784 p = relplt->relocation;
10785 n = 0;
10786 for (i = 0; i < count; i++, p += bed->s->int_rels_per_ext_rel)
10787 {
10788 size_t len;
10789 bfd_vma addr;
10790
10791 addr = bed->plt_sym_val (i, plt, p);
10792 if (addr == (bfd_vma) -1)
10793 continue;
10794
10795 *s = **p->sym_ptr_ptr;
10796 /* Undefined syms won't have BSF_LOCAL or BSF_GLOBAL set. Since
10797 we are defining a symbol, ensure one of them is set. */
10798 if ((s->flags & BSF_LOCAL) == 0)
10799 s->flags |= BSF_GLOBAL;
10800 s->flags |= BSF_SYNTHETIC;
10801 s->section = plt;
10802 s->value = addr - plt->vma;
10803 s->name = names;
10804 s->udata.p = NULL;
10805 len = strlen ((*p->sym_ptr_ptr)->name);
10806 memcpy (names, (*p->sym_ptr_ptr)->name, len);
10807 names += len;
10808 if (p->addend != 0)
10809 {
10810 char buf[30], *a;
10811
10812 memcpy (names, "+0x", sizeof ("+0x") - 1);
10813 names += sizeof ("+0x") - 1;
10814 bfd_sprintf_vma (abfd, buf, p->addend);
10815 for (a = buf; *a == '0'; ++a)
10816 ;
10817 len = strlen (a);
10818 memcpy (names, a, len);
10819 names += len;
10820 }
10821 memcpy (names, "@plt", sizeof ("@plt"));
10822 names += sizeof ("@plt");
10823 ++s, ++n;
10824 }
10825
10826 return n;
10827 }
10828
10829 /* It is only used by x86-64 so far. */
10830 asection _bfd_elf_large_com_section
10831 = BFD_FAKE_SECTION (_bfd_elf_large_com_section,
10832 SEC_IS_COMMON, NULL, "LARGE_COMMON", 0);
10833
10834 void
10835 _bfd_elf_post_process_headers (bfd * abfd,
10836 struct bfd_link_info * link_info ATTRIBUTE_UNUSED)
10837 {
10838 Elf_Internal_Ehdr * i_ehdrp; /* ELF file header, internal form. */
10839
10840 i_ehdrp = elf_elfheader (abfd);
10841
10842 i_ehdrp->e_ident[EI_OSABI] = get_elf_backend_data (abfd)->elf_osabi;
10843
10844 /* To make things simpler for the loader on Linux systems we set the
10845 osabi field to ELFOSABI_GNU if the binary contains symbols of
10846 the STT_GNU_IFUNC type or STB_GNU_UNIQUE binding. */
10847 if (i_ehdrp->e_ident[EI_OSABI] == ELFOSABI_NONE
10848 && elf_tdata (abfd)->has_gnu_symbols)
10849 i_ehdrp->e_ident[EI_OSABI] = ELFOSABI_GNU;
10850 }
10851
10852
10853 /* Return TRUE for ELF symbol types that represent functions.
10854 This is the default version of this function, which is sufficient for
10855 most targets. It returns true if TYPE is STT_FUNC or STT_GNU_IFUNC. */
10856
10857 bfd_boolean
10858 _bfd_elf_is_function_type (unsigned int type)
10859 {
10860 return (type == STT_FUNC
10861 || type == STT_GNU_IFUNC);
10862 }
10863
10864 /* If the ELF symbol SYM might be a function in SEC, return the
10865 function size and set *CODE_OFF to the function's entry point,
10866 otherwise return zero. */
10867
10868 bfd_size_type
10869 _bfd_elf_maybe_function_sym (const asymbol *sym, asection *sec,
10870 bfd_vma *code_off)
10871 {
10872 bfd_size_type size;
10873
10874 if ((sym->flags & (BSF_SECTION_SYM | BSF_FILE | BSF_OBJECT
10875 | BSF_THREAD_LOCAL | BSF_RELC | BSF_SRELC)) != 0
10876 || sym->section != sec)
10877 return 0;
10878
10879 *code_off = sym->value;
10880 size = 0;
10881 if (!(sym->flags & BSF_SYNTHETIC))
10882 size = ((elf_symbol_type *) sym)->internal_elf_sym.st_size;
10883 if (size == 0)
10884 size = 1;
10885 return size;
10886 }
This page took 0.25308 seconds and 4 git commands to generate.