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