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