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