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