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