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