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