tizen 2.4 release
[external/binutils.git] / bfd / elflink.c
1 /* ELF linking support for BFD.
2    Copyright (C) 1995-2014 Free Software Foundation, Inc.
3
4    This file is part of BFD, the Binary File Descriptor library.
5
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 3 of the License, or
9    (at your option) any later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, write to the Free Software
18    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
19    MA 02110-1301, USA.  */
20
21 #include "sysdep.h"
22 #include "bfd.h"
23 #include "bfdlink.h"
24 #include "libbfd.h"
25 #define ARCH_SIZE 0
26 #include "elf-bfd.h"
27 #include "safe-ctype.h"
28 #include "libiberty.h"
29 #include "objalloc.h"
30
31 /* This struct is used to pass information to routines called via
32    elf_link_hash_traverse which must return failure.  */
33
34 struct elf_info_failed
35 {
36   struct bfd_link_info *info;
37   bfd_boolean failed;
38 };
39
40 /* This structure is used to pass information to
41    _bfd_elf_link_find_version_dependencies.  */
42
43 struct elf_find_verdep_info
44 {
45   /* General link information.  */
46   struct bfd_link_info *info;
47   /* The number of dependencies.  */
48   unsigned int vers;
49   /* Whether we had a failure.  */
50   bfd_boolean failed;
51 };
52
53 static bfd_boolean _bfd_elf_fix_symbol_flags
54   (struct elf_link_hash_entry *, struct elf_info_failed *);
55
56 /* Define a symbol in a dynamic linkage section.  */
57
58 struct elf_link_hash_entry *
59 _bfd_elf_define_linkage_sym (bfd *abfd,
60                              struct bfd_link_info *info,
61                              asection *sec,
62                              const char *name)
63 {
64   struct elf_link_hash_entry *h;
65   struct bfd_link_hash_entry *bh;
66   const struct elf_backend_data *bed;
67
68   h = elf_link_hash_lookup (elf_hash_table (info), name, FALSE, FALSE, FALSE);
69   if (h != NULL)
70     {
71       /* Zap symbol defined in an as-needed lib that wasn't linked.
72          This is a symptom of a larger problem:  Absolute symbols
73          defined in shared libraries can't be overridden, because we
74          lose the link to the bfd which is via the symbol section.  */
75       h->root.type = bfd_link_hash_new;
76     }
77
78   bh = &h->root;
79   if (!_bfd_generic_link_add_one_symbol (info, abfd, name, BSF_GLOBAL,
80                                          sec, 0, NULL, FALSE,
81                                          get_elf_backend_data (abfd)->collect,
82                                          &bh))
83     return NULL;
84   h = (struct elf_link_hash_entry *) bh;
85   h->def_regular = 1;
86   h->non_elf = 0;
87   h->type = STT_OBJECT;
88   if (ELF_ST_VISIBILITY (h->other) != STV_INTERNAL)
89     h->other = (h->other & ~ELF_ST_VISIBILITY (-1)) | STV_HIDDEN;
90
91   bed = get_elf_backend_data (abfd);
92   (*bed->elf_backend_hide_symbol) (info, h, TRUE);
93   return h;
94 }
95
96 bfd_boolean
97 _bfd_elf_create_got_section (bfd *abfd, struct bfd_link_info *info)
98 {
99   flagword flags;
100   asection *s;
101   struct elf_link_hash_entry *h;
102   const struct elf_backend_data *bed = get_elf_backend_data (abfd);
103   struct elf_link_hash_table *htab = elf_hash_table (info);
104
105   /* This function may be called more than once.  */
106   s = bfd_get_linker_section (abfd, ".got");
107   if (s != NULL)
108     return TRUE;
109
110   flags = bed->dynamic_sec_flags;
111
112   s = bfd_make_section_anyway_with_flags (abfd,
113                                           (bed->rela_plts_and_copies_p
114                                            ? ".rela.got" : ".rel.got"),
115                                           (bed->dynamic_sec_flags
116                                            | SEC_READONLY));
117   if (s == NULL
118       || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
119     return FALSE;
120   htab->srelgot = s;
121
122   s = bfd_make_section_anyway_with_flags (abfd, ".got", flags);
123   if (s == NULL
124       || !bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
125     return FALSE;
126   htab->sgot = s;
127
128   if (bed->want_got_plt)
129     {
130       s = bfd_make_section_anyway_with_flags (abfd, ".got.plt", flags);
131       if (s == NULL
132           || !bfd_set_section_alignment (abfd, s,
133                                          bed->s->log_file_align))
134         return FALSE;
135       htab->sgotplt = s;
136     }
137
138   /* The first bit of the global offset table is the header.  */
139   s->size += bed->got_header_size;
140
141   if (bed->want_got_sym)
142     {
143       /* Define the symbol _GLOBAL_OFFSET_TABLE_ at the start of the .got
144          (or .got.plt) section.  We don't do this in the linker script
145          because we don't want to define the symbol if we are not creating
146          a global offset table.  */
147       h = _bfd_elf_define_linkage_sym (abfd, info, s,
148                                        "_GLOBAL_OFFSET_TABLE_");
149       elf_hash_table (info)->hgot = h;
150       if (h == NULL)
151         return FALSE;
152     }
153
154   return TRUE;
155 }
156 \f
157 /* Create a strtab to hold the dynamic symbol names.  */
158 static bfd_boolean
159 _bfd_elf_link_create_dynstrtab (bfd *abfd, struct bfd_link_info *info)
160 {
161   struct elf_link_hash_table *hash_table;
162
163   hash_table = elf_hash_table (info);
164   if (hash_table->dynobj == NULL)
165     hash_table->dynobj = abfd;
166
167   if (hash_table->dynstr == NULL)
168     {
169       hash_table->dynstr = _bfd_elf_strtab_init ();
170       if (hash_table->dynstr == NULL)
171         return FALSE;
172     }
173   return TRUE;
174 }
175
176 /* Create some sections which will be filled in with dynamic linking
177    information.  ABFD is an input file which requires dynamic sections
178    to be created.  The dynamic sections take up virtual memory space
179    when the final executable is run, so we need to create them before
180    addresses are assigned to the output sections.  We work out the
181    actual contents and size of these sections later.  */
182
183 bfd_boolean
184 _bfd_elf_link_create_dynamic_sections (bfd *abfd, struct bfd_link_info *info)
185 {
186   flagword flags;
187   asection *s;
188   const struct elf_backend_data *bed;
189   struct elf_link_hash_entry *h;
190
191   if (! is_elf_hash_table (info->hash))
192     return FALSE;
193
194   if (elf_hash_table (info)->dynamic_sections_created)
195     return TRUE;
196
197   if (!_bfd_elf_link_create_dynstrtab (abfd, info))
198     return FALSE;
199
200   abfd = elf_hash_table (info)->dynobj;
201   bed = get_elf_backend_data (abfd);
202
203   flags = bed->dynamic_sec_flags;
204
205   /* A dynamically linked executable has a .interp section, but a
206      shared library does not.  */
207   if (info->executable)
208     {
209       s = bfd_make_section_anyway_with_flags (abfd, ".interp",
210                                               flags | SEC_READONLY);
211       if (s == NULL)
212         return FALSE;
213     }
214
215   /* Create sections to hold version informations.  These are removed
216      if they are not needed.  */
217   s = bfd_make_section_anyway_with_flags (abfd, ".gnu.version_d",
218                                           flags | SEC_READONLY);
219   if (s == NULL
220       || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
221     return FALSE;
222
223   s = bfd_make_section_anyway_with_flags (abfd, ".gnu.version",
224                                           flags | SEC_READONLY);
225   if (s == NULL
226       || ! bfd_set_section_alignment (abfd, s, 1))
227     return FALSE;
228
229   s = bfd_make_section_anyway_with_flags (abfd, ".gnu.version_r",
230                                           flags | SEC_READONLY);
231   if (s == NULL
232       || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
233     return FALSE;
234
235   s = bfd_make_section_anyway_with_flags (abfd, ".dynsym",
236                                           flags | SEC_READONLY);
237   if (s == NULL
238       || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
239     return FALSE;
240
241   s = bfd_make_section_anyway_with_flags (abfd, ".dynstr",
242                                           flags | SEC_READONLY);
243   if (s == NULL)
244     return FALSE;
245
246   s = bfd_make_section_anyway_with_flags (abfd, ".dynamic", flags);
247   if (s == NULL
248       || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
249     return FALSE;
250
251   /* The special symbol _DYNAMIC is always set to the start of the
252      .dynamic section.  We could set _DYNAMIC in a linker script, but we
253      only want to define it if we are, in fact, creating a .dynamic
254      section.  We don't want to define it if there is no .dynamic
255      section, since on some ELF platforms the start up code examines it
256      to decide how to initialize the process.  */
257   h = _bfd_elf_define_linkage_sym (abfd, info, s, "_DYNAMIC");
258   elf_hash_table (info)->hdynamic = h;
259   if (h == NULL)
260     return FALSE;
261
262   if (info->emit_hash)
263     {
264       s = bfd_make_section_anyway_with_flags (abfd, ".hash",
265                                               flags | SEC_READONLY);
266       if (s == NULL
267           || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
268         return FALSE;
269       elf_section_data (s)->this_hdr.sh_entsize = bed->s->sizeof_hash_entry;
270     }
271
272   if (info->emit_gnu_hash)
273     {
274       s = bfd_make_section_anyway_with_flags (abfd, ".gnu.hash",
275                                               flags | SEC_READONLY);
276       if (s == NULL
277           || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
278         return FALSE;
279       /* For 64-bit ELF, .gnu.hash is a non-uniform entity size section:
280          4 32-bit words followed by variable count of 64-bit words, then
281          variable count of 32-bit words.  */
282       if (bed->s->arch_size == 64)
283         elf_section_data (s)->this_hdr.sh_entsize = 0;
284       else
285         elf_section_data (s)->this_hdr.sh_entsize = 4;
286     }
287
288   /* Let the backend create the rest of the sections.  This lets the
289      backend set the right flags.  The backend will normally create
290      the .got and .plt sections.  */
291   if (bed->elf_backend_create_dynamic_sections == NULL
292       || ! (*bed->elf_backend_create_dynamic_sections) (abfd, info))
293     return FALSE;
294
295   elf_hash_table (info)->dynamic_sections_created = TRUE;
296
297   return TRUE;
298 }
299
300 /* Create dynamic sections when linking against a dynamic object.  */
301
302 bfd_boolean
303 _bfd_elf_create_dynamic_sections (bfd *abfd, struct bfd_link_info *info)
304 {
305   flagword flags, pltflags;
306   struct elf_link_hash_entry *h;
307   asection *s;
308   const struct elf_backend_data *bed = get_elf_backend_data (abfd);
309   struct elf_link_hash_table *htab = elf_hash_table (info);
310
311   /* We need to create .plt, .rel[a].plt, .got, .got.plt, .dynbss, and
312      .rel[a].bss sections.  */
313   flags = bed->dynamic_sec_flags;
314
315   pltflags = flags;
316   if (bed->plt_not_loaded)
317     /* We do not clear SEC_ALLOC here because we still want the OS to
318        allocate space for the section; it's just that there's nothing
319        to read in from the object file.  */
320     pltflags &= ~ (SEC_CODE | SEC_LOAD | SEC_HAS_CONTENTS);
321   else
322     pltflags |= SEC_ALLOC | SEC_CODE | SEC_LOAD;
323   if (bed->plt_readonly)
324     pltflags |= SEC_READONLY;
325
326   s = bfd_make_section_anyway_with_flags (abfd, ".plt", pltflags);
327   if (s == NULL
328       || ! bfd_set_section_alignment (abfd, s, bed->plt_alignment))
329     return FALSE;
330   htab->splt = s;
331
332   /* Define the symbol _PROCEDURE_LINKAGE_TABLE_ at the start of the
333      .plt section.  */
334   if (bed->want_plt_sym)
335     {
336       h = _bfd_elf_define_linkage_sym (abfd, info, s,
337                                        "_PROCEDURE_LINKAGE_TABLE_");
338       elf_hash_table (info)->hplt = h;
339       if (h == NULL)
340         return FALSE;
341     }
342
343   s = bfd_make_section_anyway_with_flags (abfd,
344                                           (bed->rela_plts_and_copies_p
345                                            ? ".rela.plt" : ".rel.plt"),
346                                           flags | SEC_READONLY);
347   if (s == NULL
348       || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
349     return FALSE;
350   htab->srelplt = s;
351
352   if (! _bfd_elf_create_got_section (abfd, info))
353     return FALSE;
354
355   if (bed->want_dynbss)
356     {
357       /* The .dynbss section is a place to put symbols which are defined
358          by dynamic objects, are referenced by regular objects, and are
359          not functions.  We must allocate space for them in the process
360          image and use a R_*_COPY reloc to tell the dynamic linker to
361          initialize them at run time.  The linker script puts the .dynbss
362          section into the .bss section of the final image.  */
363       s = bfd_make_section_anyway_with_flags (abfd, ".dynbss",
364                                               (SEC_ALLOC | SEC_LINKER_CREATED));
365       if (s == NULL)
366         return FALSE;
367
368       /* The .rel[a].bss section holds copy relocs.  This section is not
369          normally needed.  We need to create it here, though, so that the
370          linker will map it to an output section.  We can't just create it
371          only if we need it, because we will not know whether we need it
372          until we have seen all the input files, and the first time the
373          main linker code calls BFD after examining all the input files
374          (size_dynamic_sections) the input sections have already been
375          mapped to the output sections.  If the section turns out not to
376          be needed, we can discard it later.  We will never need this
377          section when generating a shared object, since they do not use
378          copy relocs.  */
379       if (! info->shared)
380         {
381           s = bfd_make_section_anyway_with_flags (abfd,
382                                                   (bed->rela_plts_and_copies_p
383                                                    ? ".rela.bss" : ".rel.bss"),
384                                                   flags | SEC_READONLY);
385           if (s == NULL
386               || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
387             return FALSE;
388         }
389     }
390
391   return TRUE;
392 }
393 \f
394 /* Record a new dynamic symbol.  We record the dynamic symbols as we
395    read the input files, since we need to have a list of all of them
396    before we can determine the final sizes of the output sections.
397    Note that we may actually call this function even though we are not
398    going to output any dynamic symbols; in some cases we know that a
399    symbol should be in the dynamic symbol table, but only if there is
400    one.  */
401
402 bfd_boolean
403 bfd_elf_link_record_dynamic_symbol (struct bfd_link_info *info,
404                                     struct elf_link_hash_entry *h)
405 {
406   if (h->dynindx == -1)
407     {
408       struct elf_strtab_hash *dynstr;
409       char *p;
410       const char *name;
411       bfd_size_type indx;
412
413       /* XXX: The ABI draft says the linker must turn hidden and
414          internal symbols into STB_LOCAL symbols when producing the
415          DSO. However, if ld.so honors st_other in the dynamic table,
416          this would not be necessary.  */
417       switch (ELF_ST_VISIBILITY (h->other))
418         {
419         case STV_INTERNAL:
420         case STV_HIDDEN:
421           if (h->root.type != bfd_link_hash_undefined
422               && h->root.type != bfd_link_hash_undefweak)
423             {
424               h->forced_local = 1;
425               if (!elf_hash_table (info)->is_relocatable_executable)
426                 return TRUE;
427             }
428
429         default:
430           break;
431         }
432
433       h->dynindx = elf_hash_table (info)->dynsymcount;
434       ++elf_hash_table (info)->dynsymcount;
435
436       dynstr = elf_hash_table (info)->dynstr;
437       if (dynstr == NULL)
438         {
439           /* Create a strtab to hold the dynamic symbol names.  */
440           elf_hash_table (info)->dynstr = dynstr = _bfd_elf_strtab_init ();
441           if (dynstr == NULL)
442             return FALSE;
443         }
444
445       /* We don't put any version information in the dynamic string
446          table.  */
447       name = h->root.root.string;
448       p = strchr (name, ELF_VER_CHR);
449       if (p != NULL)
450         /* We know that the p points into writable memory.  In fact,
451            there are only a few symbols that have read-only names, being
452            those like _GLOBAL_OFFSET_TABLE_ that are created specially
453            by the backends.  Most symbols will have names pointing into
454            an ELF string table read from a file, or to objalloc memory.  */
455         *p = 0;
456
457       indx = _bfd_elf_strtab_add (dynstr, name, p != NULL);
458
459       if (p != NULL)
460         *p = ELF_VER_CHR;
461
462       if (indx == (bfd_size_type) -1)
463         return FALSE;
464       h->dynstr_index = indx;
465     }
466
467   return TRUE;
468 }
469 \f
470 /* Mark a symbol dynamic.  */
471
472 static void
473 bfd_elf_link_mark_dynamic_symbol (struct bfd_link_info *info,
474                                   struct elf_link_hash_entry *h,
475                                   Elf_Internal_Sym *sym)
476 {
477   struct bfd_elf_dynamic_list *d = info->dynamic_list;
478
479   /* It may be called more than once on the same H.  */
480   if(h->dynamic || info->relocatable)
481     return;
482
483   if ((info->dynamic_data
484        && (h->type == STT_OBJECT
485            || (sym != NULL
486                && ELF_ST_TYPE (sym->st_info) == STT_OBJECT)))
487       || (d != NULL
488           && h->root.type == bfd_link_hash_new
489           && (*d->match) (&d->head, NULL, h->root.root.string)))
490     h->dynamic = 1;
491 }
492
493 /* Record an assignment to a symbol made by a linker script.  We need
494    this in case some dynamic object refers to this symbol.  */
495
496 bfd_boolean
497 bfd_elf_record_link_assignment (bfd *output_bfd,
498                                 struct bfd_link_info *info,
499                                 const char *name,
500                                 bfd_boolean provide,
501                                 bfd_boolean hidden)
502 {
503   struct elf_link_hash_entry *h, *hv;
504   struct elf_link_hash_table *htab;
505   const struct elf_backend_data *bed;
506
507   if (!is_elf_hash_table (info->hash))
508     return TRUE;
509
510   htab = elf_hash_table (info);
511   h = elf_link_hash_lookup (htab, name, !provide, TRUE, FALSE);
512   if (h == NULL)
513     return provide;
514
515   switch (h->root.type)
516     {
517     case bfd_link_hash_defined:
518     case bfd_link_hash_defweak:
519     case bfd_link_hash_common:
520       break;
521     case bfd_link_hash_undefweak:
522     case bfd_link_hash_undefined:
523       /* Since we're defining the symbol, don't let it seem to have not
524          been defined.  record_dynamic_symbol and size_dynamic_sections
525          may depend on this.  */
526       h->root.type = bfd_link_hash_new;
527       if (h->root.u.undef.next != NULL || htab->root.undefs_tail == &h->root)
528         bfd_link_repair_undef_list (&htab->root);
529       break;
530     case bfd_link_hash_new:
531       bfd_elf_link_mark_dynamic_symbol (info, h, NULL);
532       h->non_elf = 0;
533       break;
534     case bfd_link_hash_indirect:
535       /* We had a versioned symbol in a dynamic library.  We make the
536          the versioned symbol point to this one.  */
537       bed = get_elf_backend_data (output_bfd);
538       hv = h;
539       while (hv->root.type == bfd_link_hash_indirect
540              || hv->root.type == bfd_link_hash_warning)
541         hv = (struct elf_link_hash_entry *) hv->root.u.i.link;
542       /* We don't need to update h->root.u since linker will set them
543          later.  */
544       h->root.type = bfd_link_hash_undefined;
545       hv->root.type = bfd_link_hash_indirect;
546       hv->root.u.i.link = (struct bfd_link_hash_entry *) h;
547       (*bed->elf_backend_copy_indirect_symbol) (info, h, hv);
548       break;
549     case bfd_link_hash_warning:
550       abort ();
551       break;
552     }
553
554   /* If this symbol is being provided by the linker script, and it is
555      currently defined by a dynamic object, but not by a regular
556      object, then mark it as undefined so that the generic linker will
557      force the correct value.  */
558   if (provide
559       && h->def_dynamic
560       && !h->def_regular)
561     h->root.type = bfd_link_hash_undefined;
562
563   /* If this symbol is not being provided by the linker script, and it is
564      currently defined by a dynamic object, but not by a regular object,
565      then clear out any version information because the symbol will not be
566      associated with the dynamic object any more.  */
567   if (!provide
568       && h->def_dynamic
569       && !h->def_regular)
570     h->verinfo.verdef = NULL;
571
572   h->def_regular = 1;
573
574   if (hidden)
575     {
576       bed = get_elf_backend_data (output_bfd);
577       if (ELF_ST_VISIBILITY (h->other) != STV_INTERNAL)
578         h->other = (h->other & ~ELF_ST_VISIBILITY (-1)) | STV_HIDDEN;
579       (*bed->elf_backend_hide_symbol) (info, h, TRUE);
580     }
581
582   /* STV_HIDDEN and STV_INTERNAL symbols must be STB_LOCAL in shared objects
583      and executables.  */
584   if (!info->relocatable
585       && h->dynindx != -1
586       && (ELF_ST_VISIBILITY (h->other) == STV_HIDDEN
587           || ELF_ST_VISIBILITY (h->other) == STV_INTERNAL))
588     h->forced_local = 1;
589
590   if ((h->def_dynamic
591        || h->ref_dynamic
592        || info->shared
593        || (info->executable && elf_hash_table (info)->is_relocatable_executable))
594       && h->dynindx == -1)
595     {
596       if (! bfd_elf_link_record_dynamic_symbol (info, h))
597         return FALSE;
598
599       /* If this is a weak defined symbol, and we know a corresponding
600          real symbol from the same dynamic object, make sure the real
601          symbol is also made into a dynamic symbol.  */
602       if (h->u.weakdef != NULL
603           && h->u.weakdef->dynindx == -1)
604         {
605           if (! bfd_elf_link_record_dynamic_symbol (info, h->u.weakdef))
606             return FALSE;
607         }
608     }
609
610   return TRUE;
611 }
612
613 /* Record a new local dynamic symbol.  Returns 0 on failure, 1 on
614    success, and 2 on a failure caused by attempting to record a symbol
615    in a discarded section, eg. a discarded link-once section symbol.  */
616
617 int
618 bfd_elf_link_record_local_dynamic_symbol (struct bfd_link_info *info,
619                                           bfd *input_bfd,
620                                           long input_indx)
621 {
622   bfd_size_type amt;
623   struct elf_link_local_dynamic_entry *entry;
624   struct elf_link_hash_table *eht;
625   struct elf_strtab_hash *dynstr;
626   unsigned long dynstr_index;
627   char *name;
628   Elf_External_Sym_Shndx eshndx;
629   char esym[sizeof (Elf64_External_Sym)];
630
631   if (! is_elf_hash_table (info->hash))
632     return 0;
633
634   /* See if the entry exists already.  */
635   for (entry = elf_hash_table (info)->dynlocal; entry ; entry = entry->next)
636     if (entry->input_bfd == input_bfd && entry->input_indx == input_indx)
637       return 1;
638
639   amt = sizeof (*entry);
640   entry = (struct elf_link_local_dynamic_entry *) bfd_alloc (input_bfd, amt);
641   if (entry == NULL)
642     return 0;
643
644   /* Go find the symbol, so that we can find it's name.  */
645   if (!bfd_elf_get_elf_syms (input_bfd, &elf_tdata (input_bfd)->symtab_hdr,
646                              1, input_indx, &entry->isym, esym, &eshndx))
647     {
648       bfd_release (input_bfd, entry);
649       return 0;
650     }
651
652   if (entry->isym.st_shndx != SHN_UNDEF
653       && entry->isym.st_shndx < SHN_LORESERVE)
654     {
655       asection *s;
656
657       s = bfd_section_from_elf_index (input_bfd, entry->isym.st_shndx);
658       if (s == NULL || bfd_is_abs_section (s->output_section))
659         {
660           /* We can still bfd_release here as nothing has done another
661              bfd_alloc.  We can't do this later in this function.  */
662           bfd_release (input_bfd, entry);
663           return 2;
664         }
665     }
666
667   name = (bfd_elf_string_from_elf_section
668           (input_bfd, elf_tdata (input_bfd)->symtab_hdr.sh_link,
669            entry->isym.st_name));
670
671   dynstr = elf_hash_table (info)->dynstr;
672   if (dynstr == NULL)
673     {
674       /* Create a strtab to hold the dynamic symbol names.  */
675       elf_hash_table (info)->dynstr = dynstr = _bfd_elf_strtab_init ();
676       if (dynstr == NULL)
677         return 0;
678     }
679
680   dynstr_index = _bfd_elf_strtab_add (dynstr, name, FALSE);
681   if (dynstr_index == (unsigned long) -1)
682     return 0;
683   entry->isym.st_name = dynstr_index;
684
685   eht = elf_hash_table (info);
686
687   entry->next = eht->dynlocal;
688   eht->dynlocal = entry;
689   entry->input_bfd = input_bfd;
690   entry->input_indx = input_indx;
691   eht->dynsymcount++;
692
693   /* Whatever binding the symbol had before, it's now local.  */
694   entry->isym.st_info
695     = ELF_ST_INFO (STB_LOCAL, ELF_ST_TYPE (entry->isym.st_info));
696
697   /* The dynindx will be set at the end of size_dynamic_sections.  */
698
699   return 1;
700 }
701
702 /* Return the dynindex of a local dynamic symbol.  */
703
704 long
705 _bfd_elf_link_lookup_local_dynindx (struct bfd_link_info *info,
706                                     bfd *input_bfd,
707                                     long input_indx)
708 {
709   struct elf_link_local_dynamic_entry *e;
710
711   for (e = elf_hash_table (info)->dynlocal; e ; e = e->next)
712     if (e->input_bfd == input_bfd && e->input_indx == input_indx)
713       return e->dynindx;
714   return -1;
715 }
716
717 /* This function is used to renumber the dynamic symbols, if some of
718    them are removed because they are marked as local.  This is called
719    via elf_link_hash_traverse.  */
720
721 static bfd_boolean
722 elf_link_renumber_hash_table_dynsyms (struct elf_link_hash_entry *h,
723                                       void *data)
724 {
725   size_t *count = (size_t *) data;
726
727   if (h->forced_local)
728     return TRUE;
729
730   if (h->dynindx != -1)
731     h->dynindx = ++(*count);
732
733   return TRUE;
734 }
735
736
737 /* Like elf_link_renumber_hash_table_dynsyms, but just number symbols with
738    STB_LOCAL binding.  */
739
740 static bfd_boolean
741 elf_link_renumber_local_hash_table_dynsyms (struct elf_link_hash_entry *h,
742                                             void *data)
743 {
744   size_t *count = (size_t *) data;
745
746   if (!h->forced_local)
747     return TRUE;
748
749   if (h->dynindx != -1)
750     h->dynindx = ++(*count);
751
752   return TRUE;
753 }
754
755 /* Return true if the dynamic symbol for a given section should be
756    omitted when creating a shared library.  */
757 bfd_boolean
758 _bfd_elf_link_omit_section_dynsym (bfd *output_bfd ATTRIBUTE_UNUSED,
759                                    struct bfd_link_info *info,
760                                    asection *p)
761 {
762   struct elf_link_hash_table *htab;
763
764   switch (elf_section_data (p)->this_hdr.sh_type)
765     {
766     case SHT_PROGBITS:
767     case SHT_NOBITS:
768       /* If sh_type is yet undecided, assume it could be
769          SHT_PROGBITS/SHT_NOBITS.  */
770     case SHT_NULL:
771       htab = elf_hash_table (info);
772       if (p == htab->tls_sec)
773         return FALSE;
774
775       if (htab->text_index_section != NULL)
776         return p != htab->text_index_section && p != htab->data_index_section;
777
778       if (strcmp (p->name, ".got") == 0
779           || strcmp (p->name, ".got.plt") == 0
780           || strcmp (p->name, ".plt") == 0)
781         {
782           asection *ip;
783
784           if (htab->dynobj != NULL
785               && (ip = bfd_get_linker_section (htab->dynobj, p->name)) != NULL
786               && ip->output_section == p)
787             return TRUE;
788         }
789       return FALSE;
790
791       /* There shouldn't be section relative relocations
792          against any other section.  */
793     default:
794       return TRUE;
795     }
796 }
797
798 /* Assign dynsym indices.  In a shared library we generate a section
799    symbol for each output section, which come first.  Next come symbols
800    which have been forced to local binding.  Then all of the back-end
801    allocated local dynamic syms, followed by the rest of the global
802    symbols.  */
803
804 static unsigned long
805 _bfd_elf_link_renumber_dynsyms (bfd *output_bfd,
806                                 struct bfd_link_info *info,
807                                 unsigned long *section_sym_count)
808 {
809   unsigned long dynsymcount = 0;
810
811   if (info->shared || elf_hash_table (info)->is_relocatable_executable)
812     {
813       const struct elf_backend_data *bed = get_elf_backend_data (output_bfd);
814       asection *p;
815       for (p = output_bfd->sections; p ; p = p->next)
816         if ((p->flags & SEC_EXCLUDE) == 0
817             && (p->flags & SEC_ALLOC) != 0
818             && !(*bed->elf_backend_omit_section_dynsym) (output_bfd, info, p))
819           elf_section_data (p)->dynindx = ++dynsymcount;
820         else
821           elf_section_data (p)->dynindx = 0;
822     }
823   *section_sym_count = dynsymcount;
824
825   elf_link_hash_traverse (elf_hash_table (info),
826                           elf_link_renumber_local_hash_table_dynsyms,
827                           &dynsymcount);
828
829   if (elf_hash_table (info)->dynlocal)
830     {
831       struct elf_link_local_dynamic_entry *p;
832       for (p = elf_hash_table (info)->dynlocal; p ; p = p->next)
833         p->dynindx = ++dynsymcount;
834     }
835
836   elf_link_hash_traverse (elf_hash_table (info),
837                           elf_link_renumber_hash_table_dynsyms,
838                           &dynsymcount);
839
840   /* There is an unused NULL entry at the head of the table which
841      we must account for in our count.  Unless there weren't any
842      symbols, which means we'll have no table at all.  */
843   if (dynsymcount != 0)
844     ++dynsymcount;
845
846   elf_hash_table (info)->dynsymcount = dynsymcount;
847   return dynsymcount;
848 }
849
850 /* Merge st_other field.  */
851
852 static void
853 elf_merge_st_other (bfd *abfd, struct elf_link_hash_entry *h,
854                     const Elf_Internal_Sym *isym,
855                     bfd_boolean definition, bfd_boolean dynamic)
856 {
857   const struct elf_backend_data *bed = get_elf_backend_data (abfd);
858
859   /* If st_other has a processor-specific meaning, specific
860      code might be needed here.  */
861   if (bed->elf_backend_merge_symbol_attribute)
862     (*bed->elf_backend_merge_symbol_attribute) (h, isym, definition,
863                                                 dynamic);
864
865   if (!dynamic)
866     {
867       unsigned symvis = ELF_ST_VISIBILITY (isym->st_other);
868       unsigned hvis = ELF_ST_VISIBILITY (h->other);
869
870       /* Keep the most constraining visibility.  Leave the remainder
871          of the st_other field to elf_backend_merge_symbol_attribute.  */
872       if (symvis - 1 < hvis - 1)
873         h->other = symvis | (h->other & ~ELF_ST_VISIBILITY (-1));
874     }
875 }
876
877 /* This function is called when we want to merge a new symbol with an
878    existing symbol.  It handles the various cases which arise when we
879    find a definition in a dynamic object, or when there is already a
880    definition in a dynamic object.  The new symbol is described by
881    NAME, SYM, PSEC, and PVALUE.  We set SYM_HASH to the hash table
882    entry.  We set POLDBFD to the old symbol's BFD.  We set POLD_WEAK
883    if the old symbol was weak.  We set POLD_ALIGNMENT to the alignment
884    of an old common symbol.  We set OVERRIDE if the old symbol is
885    overriding a new definition.  We set TYPE_CHANGE_OK if it is OK for
886    the type to change.  We set SIZE_CHANGE_OK if it is OK for the size
887    to change.  By OK to change, we mean that we shouldn't warn if the
888    type or size does change.  */
889
890 static bfd_boolean
891 _bfd_elf_merge_symbol (bfd *abfd,
892                        struct bfd_link_info *info,
893                        const char *name,
894                        Elf_Internal_Sym *sym,
895                        asection **psec,
896                        bfd_vma *pvalue,
897                        struct elf_link_hash_entry **sym_hash,
898                        bfd **poldbfd,
899                        bfd_boolean *pold_weak,
900                        unsigned int *pold_alignment,
901                        bfd_boolean *skip,
902                        bfd_boolean *override,
903                        bfd_boolean *type_change_ok,
904                        bfd_boolean *size_change_ok)
905 {
906   asection *sec, *oldsec;
907   struct elf_link_hash_entry *h;
908   struct elf_link_hash_entry *hi;
909   struct elf_link_hash_entry *flip;
910   int bind;
911   bfd *oldbfd;
912   bfd_boolean newdyn, olddyn, olddef, newdef, newdyncommon, olddyncommon;
913   bfd_boolean newweak, oldweak, newfunc, oldfunc;
914   const struct elf_backend_data *bed;
915
916   *skip = FALSE;
917   *override = FALSE;
918
919   sec = *psec;
920   bind = ELF_ST_BIND (sym->st_info);
921
922   if (! bfd_is_und_section (sec))
923     h = elf_link_hash_lookup (elf_hash_table (info), name, TRUE, FALSE, FALSE);
924   else
925     h = ((struct elf_link_hash_entry *)
926          bfd_wrapped_link_hash_lookup (abfd, info, name, TRUE, FALSE, FALSE));
927   if (h == NULL)
928     return FALSE;
929   *sym_hash = h;
930
931   bed = get_elf_backend_data (abfd);
932
933   /* For merging, we only care about real symbols.  But we need to make
934      sure that indirect symbol dynamic flags are updated.  */
935   hi = h;
936   while (h->root.type == bfd_link_hash_indirect
937          || h->root.type == bfd_link_hash_warning)
938     h = (struct elf_link_hash_entry *) h->root.u.i.link;
939
940   /* OLDBFD and OLDSEC are a BFD and an ASECTION associated with the
941      existing symbol.  */
942
943   oldbfd = NULL;
944   oldsec = NULL;
945   switch (h->root.type)
946     {
947     default:
948       break;
949
950     case bfd_link_hash_undefined:
951     case bfd_link_hash_undefweak:
952       oldbfd = h->root.u.undef.abfd;
953       break;
954
955     case bfd_link_hash_defined:
956     case bfd_link_hash_defweak:
957       oldbfd = h->root.u.def.section->owner;
958       oldsec = h->root.u.def.section;
959       break;
960
961     case bfd_link_hash_common:
962       oldbfd = h->root.u.c.p->section->owner;
963       oldsec = h->root.u.c.p->section;
964       if (pold_alignment)
965         *pold_alignment = h->root.u.c.p->alignment_power;
966       break;
967     }
968   if (poldbfd && *poldbfd == NULL)
969     *poldbfd = oldbfd;
970
971   /* Differentiate strong and weak symbols.  */
972   newweak = bind == STB_WEAK;
973   oldweak = (h->root.type == bfd_link_hash_defweak
974              || h->root.type == bfd_link_hash_undefweak);
975   if (pold_weak)
976     *pold_weak = oldweak;
977
978   /* This code is for coping with dynamic objects, and is only useful
979      if we are doing an ELF link.  */
980   if (!(*bed->relocs_compatible) (abfd->xvec, info->output_bfd->xvec))
981     return TRUE;
982
983   /* We have to check it for every instance since the first few may be
984      references and not all compilers emit symbol type for undefined
985      symbols.  */
986   bfd_elf_link_mark_dynamic_symbol (info, h, sym);
987
988   /* NEWDYN and OLDDYN indicate whether the new or old symbol,
989      respectively, is from a dynamic object.  */
990
991   newdyn = (abfd->flags & DYNAMIC) != 0;
992
993   /* ref_dynamic_nonweak and dynamic_def flags track actual undefined
994      syms and defined syms in dynamic libraries respectively.
995      ref_dynamic on the other hand can be set for a symbol defined in
996      a dynamic library, and def_dynamic may not be set;  When the
997      definition in a dynamic lib is overridden by a definition in the
998      executable use of the symbol in the dynamic lib becomes a
999      reference to the executable symbol.  */
1000   if (newdyn)
1001     {
1002       if (bfd_is_und_section (sec))
1003         {
1004           if (bind != STB_WEAK)
1005             {
1006               h->ref_dynamic_nonweak = 1;
1007               hi->ref_dynamic_nonweak = 1;
1008             }
1009         }
1010       else
1011         {
1012           h->dynamic_def = 1;
1013           hi->dynamic_def = 1;
1014         }
1015     }
1016
1017   /* If we just created the symbol, mark it as being an ELF symbol.
1018      Other than that, there is nothing to do--there is no merge issue
1019      with a newly defined symbol--so we just return.  */
1020
1021   if (h->root.type == bfd_link_hash_new)
1022     {
1023       h->non_elf = 0;
1024       return TRUE;
1025     }
1026
1027   /* In cases involving weak versioned symbols, we may wind up trying
1028      to merge a symbol with itself.  Catch that here, to avoid the
1029      confusion that results if we try to override a symbol with
1030      itself.  The additional tests catch cases like
1031      _GLOBAL_OFFSET_TABLE_, which are regular symbols defined in a
1032      dynamic object, which we do want to handle here.  */
1033   if (abfd == oldbfd
1034       && (newweak || oldweak)
1035       && ((abfd->flags & DYNAMIC) == 0
1036           || !h->def_regular))
1037     return TRUE;
1038
1039   olddyn = FALSE;
1040   if (oldbfd != NULL)
1041     olddyn = (oldbfd->flags & DYNAMIC) != 0;
1042   else if (oldsec != NULL)
1043     {
1044       /* This handles the special SHN_MIPS_{TEXT,DATA} section
1045          indices used by MIPS ELF.  */
1046       olddyn = (oldsec->symbol->flags & BSF_DYNAMIC) != 0;
1047     }
1048
1049   /* NEWDEF and OLDDEF indicate whether the new or old symbol,
1050      respectively, appear to be a definition rather than reference.  */
1051
1052   newdef = !bfd_is_und_section (sec) && !bfd_is_com_section (sec);
1053
1054   olddef = (h->root.type != bfd_link_hash_undefined
1055             && h->root.type != bfd_link_hash_undefweak
1056             && h->root.type != bfd_link_hash_common);
1057
1058   /* NEWFUNC and OLDFUNC indicate whether the new or old symbol,
1059      respectively, appear to be a function.  */
1060
1061   newfunc = (ELF_ST_TYPE (sym->st_info) != STT_NOTYPE
1062              && bed->is_function_type (ELF_ST_TYPE (sym->st_info)));
1063
1064   oldfunc = (h->type != STT_NOTYPE
1065              && bed->is_function_type (h->type));
1066
1067   /* When we try to create a default indirect symbol from the dynamic
1068      definition with the default version, we skip it if its type and
1069      the type of existing regular definition mismatch.  */
1070   if (pold_alignment == NULL
1071       && newdyn
1072       && newdef
1073       && !olddyn
1074       && (((olddef || h->root.type == bfd_link_hash_common)
1075            && ELF_ST_TYPE (sym->st_info) != h->type
1076            && ELF_ST_TYPE (sym->st_info) != STT_NOTYPE
1077            && h->type != STT_NOTYPE
1078            && !(newfunc && oldfunc))
1079           || (olddef
1080               && ((h->type == STT_GNU_IFUNC)
1081                   != (ELF_ST_TYPE (sym->st_info) == STT_GNU_IFUNC)))))
1082     {
1083       *skip = TRUE;
1084       return TRUE;
1085     }
1086
1087   /* Check TLS symbols.  We don't check undefined symbols introduced
1088      by "ld -u" which have no type (and oldbfd NULL), and we don't
1089      check symbols from plugins because they also have no type.  */
1090   if (oldbfd != NULL
1091       && (oldbfd->flags & BFD_PLUGIN) == 0
1092       && (abfd->flags & BFD_PLUGIN) == 0
1093       && ELF_ST_TYPE (sym->st_info) != h->type
1094       && (ELF_ST_TYPE (sym->st_info) == STT_TLS || h->type == STT_TLS))
1095     {
1096       bfd *ntbfd, *tbfd;
1097       bfd_boolean ntdef, tdef;
1098       asection *ntsec, *tsec;
1099
1100       if (h->type == STT_TLS)
1101         {
1102           ntbfd = abfd;
1103           ntsec = sec;
1104           ntdef = newdef;
1105           tbfd = oldbfd;
1106           tsec = oldsec;
1107           tdef = olddef;
1108         }
1109       else
1110         {
1111           ntbfd = oldbfd;
1112           ntsec = oldsec;
1113           ntdef = olddef;
1114           tbfd = abfd;
1115           tsec = sec;
1116           tdef = newdef;
1117         }
1118
1119       if (tdef && ntdef)
1120         (*_bfd_error_handler)
1121           (_("%s: TLS definition in %B section %A "
1122              "mismatches non-TLS definition in %B section %A"),
1123            tbfd, tsec, ntbfd, ntsec, h->root.root.string);
1124       else if (!tdef && !ntdef)
1125         (*_bfd_error_handler)
1126           (_("%s: TLS reference in %B "
1127              "mismatches non-TLS reference in %B"),
1128            tbfd, ntbfd, h->root.root.string);
1129       else if (tdef)
1130         (*_bfd_error_handler)
1131           (_("%s: TLS definition in %B section %A "
1132              "mismatches non-TLS reference in %B"),
1133            tbfd, tsec, ntbfd, h->root.root.string);
1134       else
1135         (*_bfd_error_handler)
1136           (_("%s: TLS reference in %B "
1137              "mismatches non-TLS definition in %B section %A"),
1138            tbfd, ntbfd, ntsec, h->root.root.string);
1139
1140       bfd_set_error (bfd_error_bad_value);
1141       return FALSE;
1142     }
1143
1144   /* If the old symbol has non-default visibility, we ignore the new
1145      definition from a dynamic object.  */
1146   if (newdyn
1147       && ELF_ST_VISIBILITY (h->other) != STV_DEFAULT
1148       && !bfd_is_und_section (sec))
1149     {
1150       *skip = TRUE;
1151       /* Make sure this symbol is dynamic.  */
1152       h->ref_dynamic = 1;
1153       hi->ref_dynamic = 1;
1154       /* A protected symbol has external availability. Make sure it is
1155          recorded as dynamic.
1156
1157          FIXME: Should we check type and size for protected symbol?  */
1158       if (ELF_ST_VISIBILITY (h->other) == STV_PROTECTED)
1159         return bfd_elf_link_record_dynamic_symbol (info, h);
1160       else
1161         return TRUE;
1162     }
1163   else if (!newdyn
1164            && ELF_ST_VISIBILITY (sym->st_other) != STV_DEFAULT
1165            && h->def_dynamic)
1166     {
1167       /* If the new symbol with non-default visibility comes from a
1168          relocatable file and the old definition comes from a dynamic
1169          object, we remove the old definition.  */
1170       if (hi->root.type == bfd_link_hash_indirect)
1171         {
1172           /* Handle the case where the old dynamic definition is
1173              default versioned.  We need to copy the symbol info from
1174              the symbol with default version to the normal one if it
1175              was referenced before.  */
1176           if (h->ref_regular)
1177             {
1178               hi->root.type = h->root.type;
1179               h->root.type = bfd_link_hash_indirect;
1180               (*bed->elf_backend_copy_indirect_symbol) (info, hi, h);
1181
1182               h->root.u.i.link = (struct bfd_link_hash_entry *) hi;
1183               if (ELF_ST_VISIBILITY (sym->st_other) != STV_PROTECTED)
1184                 {
1185                   /* If the new symbol is hidden or internal, completely undo
1186                      any dynamic link state.  */
1187                   (*bed->elf_backend_hide_symbol) (info, h, TRUE);
1188                   h->forced_local = 0;
1189                   h->ref_dynamic = 0;
1190                 }
1191               else
1192                 h->ref_dynamic = 1;
1193
1194               h->def_dynamic = 0;
1195               /* FIXME: Should we check type and size for protected symbol?  */
1196               h->size = 0;
1197               h->type = 0;
1198
1199               h = hi;
1200             }
1201           else
1202             h = hi;
1203         }
1204
1205       /* If the old symbol was undefined before, then it will still be
1206          on the undefs list.  If the new symbol is undefined or
1207          common, we can't make it bfd_link_hash_new here, because new
1208          undefined or common symbols will be added to the undefs list
1209          by _bfd_generic_link_add_one_symbol.  Symbols may not be
1210          added twice to the undefs list.  Also, if the new symbol is
1211          undefweak then we don't want to lose the strong undef.  */
1212       if (h->root.u.undef.next || info->hash->undefs_tail == &h->root)
1213         {
1214           h->root.type = bfd_link_hash_undefined;
1215           h->root.u.undef.abfd = abfd;
1216         }
1217       else
1218         {
1219           h->root.type = bfd_link_hash_new;
1220           h->root.u.undef.abfd = NULL;
1221         }
1222
1223       if (ELF_ST_VISIBILITY (sym->st_other) != STV_PROTECTED)
1224         {
1225           /* If the new symbol is hidden or internal, completely undo
1226              any dynamic link state.  */
1227           (*bed->elf_backend_hide_symbol) (info, h, TRUE);
1228           h->forced_local = 0;
1229           h->ref_dynamic = 0;
1230         }
1231       else
1232         h->ref_dynamic = 1;
1233       h->def_dynamic = 0;
1234       /* FIXME: Should we check type and size for protected symbol?  */
1235       h->size = 0;
1236       h->type = 0;
1237       return TRUE;
1238     }
1239
1240   /* If a new weak symbol definition comes from a regular file and the
1241      old symbol comes from a dynamic library, we treat the new one as
1242      strong.  Similarly, an old weak symbol definition from a regular
1243      file is treated as strong when the new symbol comes from a dynamic
1244      library.  Further, an old weak symbol from a dynamic library is
1245      treated as strong if the new symbol is from a dynamic library.
1246      This reflects the way glibc's ld.so works.
1247
1248      Do this before setting *type_change_ok or *size_change_ok so that
1249      we warn properly when dynamic library symbols are overridden.  */
1250
1251   if (newdef && !newdyn && olddyn)
1252     newweak = FALSE;
1253   if (olddef && newdyn)
1254     oldweak = FALSE;
1255
1256   /* Allow changes between different types of function symbol.  */
1257   if (newfunc && oldfunc)
1258     *type_change_ok = TRUE;
1259
1260   /* It's OK to change the type if either the existing symbol or the
1261      new symbol is weak.  A type change is also OK if the old symbol
1262      is undefined and the new symbol is defined.  */
1263
1264   if (oldweak
1265       || newweak
1266       || (newdef
1267           && h->root.type == bfd_link_hash_undefined))
1268     *type_change_ok = TRUE;
1269
1270   /* It's OK to change the size if either the existing symbol or the
1271      new symbol is weak, or if the old symbol is undefined.  */
1272
1273   if (*type_change_ok
1274       || h->root.type == bfd_link_hash_undefined)
1275     *size_change_ok = TRUE;
1276
1277   /* NEWDYNCOMMON and OLDDYNCOMMON indicate whether the new or old
1278      symbol, respectively, appears to be a common symbol in a dynamic
1279      object.  If a symbol appears in an uninitialized section, and is
1280      not weak, and is not a function, then it may be a common symbol
1281      which was resolved when the dynamic object was created.  We want
1282      to treat such symbols specially, because they raise special
1283      considerations when setting the symbol size: if the symbol
1284      appears as a common symbol in a regular object, and the size in
1285      the regular object is larger, we must make sure that we use the
1286      larger size.  This problematic case can always be avoided in C,
1287      but it must be handled correctly when using Fortran shared
1288      libraries.
1289
1290      Note that if NEWDYNCOMMON is set, NEWDEF will be set, and
1291      likewise for OLDDYNCOMMON and OLDDEF.
1292
1293      Note that this test is just a heuristic, and that it is quite
1294      possible to have an uninitialized symbol in a shared object which
1295      is really a definition, rather than a common symbol.  This could
1296      lead to some minor confusion when the symbol really is a common
1297      symbol in some regular object.  However, I think it will be
1298      harmless.  */
1299
1300   if (newdyn
1301       && newdef
1302       && !newweak
1303       && (sec->flags & SEC_ALLOC) != 0
1304       && (sec->flags & SEC_LOAD) == 0
1305       && sym->st_size > 0
1306       && !newfunc)
1307     newdyncommon = TRUE;
1308   else
1309     newdyncommon = FALSE;
1310
1311   if (olddyn
1312       && olddef
1313       && h->root.type == bfd_link_hash_defined
1314       && h->def_dynamic
1315       && (h->root.u.def.section->flags & SEC_ALLOC) != 0
1316       && (h->root.u.def.section->flags & SEC_LOAD) == 0
1317       && h->size > 0
1318       && !oldfunc)
1319     olddyncommon = TRUE;
1320   else
1321     olddyncommon = FALSE;
1322
1323   /* We now know everything about the old and new symbols.  We ask the
1324      backend to check if we can merge them.  */
1325   if (bed->merge_symbol != NULL)
1326     {
1327       if (!bed->merge_symbol (h, sym, psec, newdef, olddef, oldbfd, oldsec))
1328         return FALSE;
1329       sec = *psec;
1330     }
1331
1332   /* If both the old and the new symbols look like common symbols in a
1333      dynamic object, set the size of the symbol to the larger of the
1334      two.  */
1335
1336   if (olddyncommon
1337       && newdyncommon
1338       && sym->st_size != h->size)
1339     {
1340       /* Since we think we have two common symbols, issue a multiple
1341          common warning if desired.  Note that we only warn if the
1342          size is different.  If the size is the same, we simply let
1343          the old symbol override the new one as normally happens with
1344          symbols defined in dynamic objects.  */
1345
1346       if (! ((*info->callbacks->multiple_common)
1347              (info, &h->root, abfd, bfd_link_hash_common, sym->st_size)))
1348         return FALSE;
1349
1350       if (sym->st_size > h->size)
1351         h->size = sym->st_size;
1352
1353       *size_change_ok = TRUE;
1354     }
1355
1356   /* If we are looking at a dynamic object, and we have found a
1357      definition, we need to see if the symbol was already defined by
1358      some other object.  If so, we want to use the existing
1359      definition, and we do not want to report a multiple symbol
1360      definition error; we do this by clobbering *PSEC to be
1361      bfd_und_section_ptr.
1362
1363      We treat a common symbol as a definition if the symbol in the
1364      shared library is a function, since common symbols always
1365      represent variables; this can cause confusion in principle, but
1366      any such confusion would seem to indicate an erroneous program or
1367      shared library.  We also permit a common symbol in a regular
1368      object to override a weak symbol in a shared object.  */
1369
1370   if (newdyn
1371       && newdef
1372       && (olddef
1373           || (h->root.type == bfd_link_hash_common
1374               && (newweak || newfunc))))
1375     {
1376       *override = TRUE;
1377       newdef = FALSE;
1378       newdyncommon = FALSE;
1379
1380       *psec = sec = bfd_und_section_ptr;
1381       *size_change_ok = TRUE;
1382
1383       /* If we get here when the old symbol is a common symbol, then
1384          we are explicitly letting it override a weak symbol or
1385          function in a dynamic object, and we don't want to warn about
1386          a type change.  If the old symbol is a defined symbol, a type
1387          change warning may still be appropriate.  */
1388
1389       if (h->root.type == bfd_link_hash_common)
1390         *type_change_ok = TRUE;
1391     }
1392
1393   /* Handle the special case of an old common symbol merging with a
1394      new symbol which looks like a common symbol in a shared object.
1395      We change *PSEC and *PVALUE to make the new symbol look like a
1396      common symbol, and let _bfd_generic_link_add_one_symbol do the
1397      right thing.  */
1398
1399   if (newdyncommon
1400       && h->root.type == bfd_link_hash_common)
1401     {
1402       *override = TRUE;
1403       newdef = FALSE;
1404       newdyncommon = FALSE;
1405       *pvalue = sym->st_size;
1406       *psec = sec = bed->common_section (oldsec);
1407       *size_change_ok = TRUE;
1408     }
1409
1410   /* Skip weak definitions of symbols that are already defined.  */
1411   if (newdef && olddef && newweak)
1412     {
1413       /* Don't skip new non-IR weak syms.  */
1414       if (!(oldbfd != NULL
1415             && (oldbfd->flags & BFD_PLUGIN) != 0
1416             && (abfd->flags & BFD_PLUGIN) == 0))
1417         {
1418           newdef = FALSE;
1419           *skip = TRUE;
1420         }
1421
1422       /* Merge st_other.  If the symbol already has a dynamic index,
1423          but visibility says it should not be visible, turn it into a
1424          local symbol.  */
1425       elf_merge_st_other (abfd, h, sym, newdef, newdyn);
1426       if (h->dynindx != -1)
1427         switch (ELF_ST_VISIBILITY (h->other))
1428           {
1429           case STV_INTERNAL:
1430           case STV_HIDDEN:
1431             (*bed->elf_backend_hide_symbol) (info, h, TRUE);
1432             break;
1433           }
1434     }
1435
1436   /* If the old symbol is from a dynamic object, and the new symbol is
1437      a definition which is not from a dynamic object, then the new
1438      symbol overrides the old symbol.  Symbols from regular files
1439      always take precedence over symbols from dynamic objects, even if
1440      they are defined after the dynamic object in the link.
1441
1442      As above, we again permit a common symbol in a regular object to
1443      override a definition in a shared object if the shared object
1444      symbol is a function or is weak.  */
1445
1446   flip = NULL;
1447   if (!newdyn
1448       && (newdef
1449           || (bfd_is_com_section (sec)
1450               && (oldweak || oldfunc)))
1451       && olddyn
1452       && olddef
1453       && h->def_dynamic)
1454     {
1455       /* Change the hash table entry to undefined, and let
1456          _bfd_generic_link_add_one_symbol do the right thing with the
1457          new definition.  */
1458
1459       h->root.type = bfd_link_hash_undefined;
1460       h->root.u.undef.abfd = h->root.u.def.section->owner;
1461       *size_change_ok = TRUE;
1462
1463       olddef = FALSE;
1464       olddyncommon = FALSE;
1465
1466       /* We again permit a type change when a common symbol may be
1467          overriding a function.  */
1468
1469       if (bfd_is_com_section (sec))
1470         {
1471           if (oldfunc)
1472             {
1473               /* If a common symbol overrides a function, make sure
1474                  that it isn't defined dynamically nor has type
1475                  function.  */
1476               h->def_dynamic = 0;
1477               h->type = STT_NOTYPE;
1478             }
1479           *type_change_ok = TRUE;
1480         }
1481
1482       if (hi->root.type == bfd_link_hash_indirect)
1483         flip = hi;
1484       else
1485         /* This union may have been set to be non-NULL when this symbol
1486            was seen in a dynamic object.  We must force the union to be
1487            NULL, so that it is correct for a regular symbol.  */
1488         h->verinfo.vertree = NULL;
1489     }
1490
1491   /* Handle the special case of a new common symbol merging with an
1492      old symbol that looks like it might be a common symbol defined in
1493      a shared object.  Note that we have already handled the case in
1494      which a new common symbol should simply override the definition
1495      in the shared library.  */
1496
1497   if (! newdyn
1498       && bfd_is_com_section (sec)
1499       && olddyncommon)
1500     {
1501       /* It would be best if we could set the hash table entry to a
1502          common symbol, but we don't know what to use for the section
1503          or the alignment.  */
1504       if (! ((*info->callbacks->multiple_common)
1505              (info, &h->root, abfd, bfd_link_hash_common, sym->st_size)))
1506         return FALSE;
1507
1508       /* If the presumed common symbol in the dynamic object is
1509          larger, pretend that the new symbol has its size.  */
1510
1511       if (h->size > *pvalue)
1512         *pvalue = h->size;
1513
1514       /* We need to remember the alignment required by the symbol
1515          in the dynamic object.  */
1516       BFD_ASSERT (pold_alignment);
1517       *pold_alignment = h->root.u.def.section->alignment_power;
1518
1519       olddef = FALSE;
1520       olddyncommon = FALSE;
1521
1522       h->root.type = bfd_link_hash_undefined;
1523       h->root.u.undef.abfd = h->root.u.def.section->owner;
1524
1525       *size_change_ok = TRUE;
1526       *type_change_ok = TRUE;
1527
1528       if (hi->root.type == bfd_link_hash_indirect)
1529         flip = hi;
1530       else
1531         h->verinfo.vertree = NULL;
1532     }
1533
1534   if (flip != NULL)
1535     {
1536       /* Handle the case where we had a versioned symbol in a dynamic
1537          library and now find a definition in a normal object.  In this
1538          case, we make the versioned symbol point to the normal one.  */
1539       flip->root.type = h->root.type;
1540       flip->root.u.undef.abfd = h->root.u.undef.abfd;
1541       h->root.type = bfd_link_hash_indirect;
1542       h->root.u.i.link = (struct bfd_link_hash_entry *) flip;
1543       (*bed->elf_backend_copy_indirect_symbol) (info, flip, h);
1544       if (h->def_dynamic)
1545         {
1546           h->def_dynamic = 0;
1547           flip->ref_dynamic = 1;
1548         }
1549     }
1550
1551   return TRUE;
1552 }
1553
1554 /* This function is called to create an indirect symbol from the
1555    default for the symbol with the default version if needed. The
1556    symbol is described by H, NAME, SYM, SEC, and VALUE.  We
1557    set DYNSYM if the new indirect symbol is dynamic.  */
1558
1559 static bfd_boolean
1560 _bfd_elf_add_default_symbol (bfd *abfd,
1561                              struct bfd_link_info *info,
1562                              struct elf_link_hash_entry *h,
1563                              const char *name,
1564                              Elf_Internal_Sym *sym,
1565                              asection *sec,
1566                              bfd_vma value,
1567                              bfd **poldbfd,
1568                              bfd_boolean *dynsym)
1569 {
1570   bfd_boolean type_change_ok;
1571   bfd_boolean size_change_ok;
1572   bfd_boolean skip;
1573   char *shortname;
1574   struct elf_link_hash_entry *hi;
1575   struct bfd_link_hash_entry *bh;
1576   const struct elf_backend_data *bed;
1577   bfd_boolean collect;
1578   bfd_boolean dynamic;
1579   bfd_boolean override;
1580   char *p;
1581   size_t len, shortlen;
1582   asection *tmp_sec;
1583
1584   /* If this symbol has a version, and it is the default version, we
1585      create an indirect symbol from the default name to the fully
1586      decorated name.  This will cause external references which do not
1587      specify a version to be bound to this version of the symbol.  */
1588   p = strchr (name, ELF_VER_CHR);
1589   if (p == NULL || p[1] != ELF_VER_CHR)
1590     return TRUE;
1591
1592   bed = get_elf_backend_data (abfd);
1593   collect = bed->collect;
1594   dynamic = (abfd->flags & DYNAMIC) != 0;
1595
1596   shortlen = p - name;
1597   shortname = (char *) bfd_hash_allocate (&info->hash->table, shortlen + 1);
1598   if (shortname == NULL)
1599     return FALSE;
1600   memcpy (shortname, name, shortlen);
1601   shortname[shortlen] = '\0';
1602
1603   /* We are going to create a new symbol.  Merge it with any existing
1604      symbol with this name.  For the purposes of the merge, act as
1605      though we were defining the symbol we just defined, although we
1606      actually going to define an indirect symbol.  */
1607   type_change_ok = FALSE;
1608   size_change_ok = FALSE;
1609   tmp_sec = sec;
1610   if (!_bfd_elf_merge_symbol (abfd, info, shortname, sym, &tmp_sec, &value,
1611                               &hi, poldbfd, NULL, NULL, &skip, &override,
1612                               &type_change_ok, &size_change_ok))
1613     return FALSE;
1614
1615   if (skip)
1616     goto nondefault;
1617
1618   if (! override)
1619     {
1620       bh = &hi->root;
1621       if (! (_bfd_generic_link_add_one_symbol
1622              (info, abfd, shortname, BSF_INDIRECT, bfd_ind_section_ptr,
1623               0, name, FALSE, collect, &bh)))
1624         return FALSE;
1625       hi = (struct elf_link_hash_entry *) bh;
1626     }
1627   else
1628     {
1629       /* In this case the symbol named SHORTNAME is overriding the
1630          indirect symbol we want to add.  We were planning on making
1631          SHORTNAME an indirect symbol referring to NAME.  SHORTNAME
1632          is the name without a version.  NAME is the fully versioned
1633          name, and it is the default version.
1634
1635          Overriding means that we already saw a definition for the
1636          symbol SHORTNAME in a regular object, and it is overriding
1637          the symbol defined in the dynamic object.
1638
1639          When this happens, we actually want to change NAME, the
1640          symbol we just added, to refer to SHORTNAME.  This will cause
1641          references to NAME in the shared object to become references
1642          to SHORTNAME in the regular object.  This is what we expect
1643          when we override a function in a shared object: that the
1644          references in the shared object will be mapped to the
1645          definition in the regular object.  */
1646
1647       while (hi->root.type == bfd_link_hash_indirect
1648              || hi->root.type == bfd_link_hash_warning)
1649         hi = (struct elf_link_hash_entry *) hi->root.u.i.link;
1650
1651       h->root.type = bfd_link_hash_indirect;
1652       h->root.u.i.link = (struct bfd_link_hash_entry *) hi;
1653       if (h->def_dynamic)
1654         {
1655           h->def_dynamic = 0;
1656           hi->ref_dynamic = 1;
1657           if (hi->ref_regular
1658               || hi->def_regular)
1659             {
1660               if (! bfd_elf_link_record_dynamic_symbol (info, hi))
1661                 return FALSE;
1662             }
1663         }
1664
1665       /* Now set HI to H, so that the following code will set the
1666          other fields correctly.  */
1667       hi = h;
1668     }
1669
1670   /* Check if HI is a warning symbol.  */
1671   if (hi->root.type == bfd_link_hash_warning)
1672     hi = (struct elf_link_hash_entry *) hi->root.u.i.link;
1673
1674   /* If there is a duplicate definition somewhere, then HI may not
1675      point to an indirect symbol.  We will have reported an error to
1676      the user in that case.  */
1677
1678   if (hi->root.type == bfd_link_hash_indirect)
1679     {
1680       struct elf_link_hash_entry *ht;
1681
1682       ht = (struct elf_link_hash_entry *) hi->root.u.i.link;
1683       (*bed->elf_backend_copy_indirect_symbol) (info, ht, hi);
1684
1685       /* A reference to the SHORTNAME symbol from a dynamic library
1686          will be satisfied by the versioned symbol at runtime.  In
1687          effect, we have a reference to the versioned symbol.  */
1688       ht->ref_dynamic_nonweak |= hi->ref_dynamic_nonweak;
1689       hi->dynamic_def |= ht->dynamic_def;
1690
1691       /* See if the new flags lead us to realize that the symbol must
1692          be dynamic.  */
1693       if (! *dynsym)
1694         {
1695           if (! dynamic)
1696             {
1697               if (! info->executable
1698                   || hi->def_dynamic
1699                   || hi->ref_dynamic)
1700                 *dynsym = TRUE;
1701             }
1702           else
1703             {
1704               if (hi->ref_regular)
1705                 *dynsym = TRUE;
1706             }
1707         }
1708     }
1709
1710   /* We also need to define an indirection from the nondefault version
1711      of the symbol.  */
1712
1713 nondefault:
1714   len = strlen (name);
1715   shortname = (char *) bfd_hash_allocate (&info->hash->table, len);
1716   if (shortname == NULL)
1717     return FALSE;
1718   memcpy (shortname, name, shortlen);
1719   memcpy (shortname + shortlen, p + 1, len - shortlen);
1720
1721   /* Once again, merge with any existing symbol.  */
1722   type_change_ok = FALSE;
1723   size_change_ok = FALSE;
1724   tmp_sec = sec;
1725   if (!_bfd_elf_merge_symbol (abfd, info, shortname, sym, &tmp_sec, &value,
1726                               &hi, poldbfd, NULL, NULL, &skip, &override,
1727                               &type_change_ok, &size_change_ok))
1728     return FALSE;
1729
1730   if (skip)
1731     return TRUE;
1732
1733   if (override)
1734     {
1735       /* Here SHORTNAME is a versioned name, so we don't expect to see
1736          the type of override we do in the case above unless it is
1737          overridden by a versioned definition.  */
1738       if (hi->root.type != bfd_link_hash_defined
1739           && hi->root.type != bfd_link_hash_defweak)
1740         (*_bfd_error_handler)
1741           (_("%B: unexpected redefinition of indirect versioned symbol `%s'"),
1742            abfd, shortname);
1743     }
1744   else
1745     {
1746       bh = &hi->root;
1747       if (! (_bfd_generic_link_add_one_symbol
1748              (info, abfd, shortname, BSF_INDIRECT,
1749               bfd_ind_section_ptr, 0, name, FALSE, collect, &bh)))
1750         return FALSE;
1751       hi = (struct elf_link_hash_entry *) bh;
1752
1753       /* If there is a duplicate definition somewhere, then HI may not
1754          point to an indirect symbol.  We will have reported an error
1755          to the user in that case.  */
1756
1757       if (hi->root.type == bfd_link_hash_indirect)
1758         {
1759           (*bed->elf_backend_copy_indirect_symbol) (info, h, hi);
1760           h->ref_dynamic_nonweak |= hi->ref_dynamic_nonweak;
1761           hi->dynamic_def |= h->dynamic_def;
1762
1763           /* See if the new flags lead us to realize that the symbol
1764              must be dynamic.  */
1765           if (! *dynsym)
1766             {
1767               if (! dynamic)
1768                 {
1769                   if (! info->executable
1770                       || hi->ref_dynamic)
1771                     *dynsym = TRUE;
1772                 }
1773               else
1774                 {
1775                   if (hi->ref_regular)
1776                     *dynsym = TRUE;
1777                 }
1778             }
1779         }
1780     }
1781
1782   return TRUE;
1783 }
1784 \f
1785 /* This routine is used to export all defined symbols into the dynamic
1786    symbol table.  It is called via elf_link_hash_traverse.  */
1787
1788 static bfd_boolean
1789 _bfd_elf_export_symbol (struct elf_link_hash_entry *h, void *data)
1790 {
1791   struct elf_info_failed *eif = (struct elf_info_failed *) data;
1792
1793   /* Ignore indirect symbols.  These are added by the versioning code.  */
1794   if (h->root.type == bfd_link_hash_indirect)
1795     return TRUE;
1796
1797   /* Ignore this if we won't export it.  */
1798   if (!eif->info->export_dynamic && !h->dynamic)
1799     return TRUE;
1800
1801   if (h->dynindx == -1
1802       && (h->def_regular || h->ref_regular)
1803       && ! bfd_hide_sym_by_version (eif->info->version_info,
1804                                     h->root.root.string))
1805     {
1806       if (! bfd_elf_link_record_dynamic_symbol (eif->info, h))
1807         {
1808           eif->failed = TRUE;
1809           return FALSE;
1810         }
1811     }
1812
1813   return TRUE;
1814 }
1815 \f
1816 /* Look through the symbols which are defined in other shared
1817    libraries and referenced here.  Update the list of version
1818    dependencies.  This will be put into the .gnu.version_r section.
1819    This function is called via elf_link_hash_traverse.  */
1820
1821 static bfd_boolean
1822 _bfd_elf_link_find_version_dependencies (struct elf_link_hash_entry *h,
1823                                          void *data)
1824 {
1825   struct elf_find_verdep_info *rinfo = (struct elf_find_verdep_info *) data;
1826   Elf_Internal_Verneed *t;
1827   Elf_Internal_Vernaux *a;
1828   bfd_size_type amt;
1829
1830   /* We only care about symbols defined in shared objects with version
1831      information.  */
1832   if (!h->def_dynamic
1833       || h->def_regular
1834       || h->dynindx == -1
1835       || h->verinfo.verdef == NULL
1836       || (elf_dyn_lib_class (h->verinfo.verdef->vd_bfd)
1837           & (DYN_AS_NEEDED | DYN_DT_NEEDED | DYN_NO_NEEDED)))
1838     return TRUE;
1839
1840   /* See if we already know about this version.  */
1841   for (t = elf_tdata (rinfo->info->output_bfd)->verref;
1842        t != NULL;
1843        t = t->vn_nextref)
1844     {
1845       if (t->vn_bfd != h->verinfo.verdef->vd_bfd)
1846         continue;
1847
1848       for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
1849         if (a->vna_nodename == h->verinfo.verdef->vd_nodename)
1850           return TRUE;
1851
1852       break;
1853     }
1854
1855   /* This is a new version.  Add it to tree we are building.  */
1856
1857   if (t == NULL)
1858     {
1859       amt = sizeof *t;
1860       t = (Elf_Internal_Verneed *) bfd_zalloc (rinfo->info->output_bfd, amt);
1861       if (t == NULL)
1862         {
1863           rinfo->failed = TRUE;
1864           return FALSE;
1865         }
1866
1867       t->vn_bfd = h->verinfo.verdef->vd_bfd;
1868       t->vn_nextref = elf_tdata (rinfo->info->output_bfd)->verref;
1869       elf_tdata (rinfo->info->output_bfd)->verref = t;
1870     }
1871
1872   amt = sizeof *a;
1873   a = (Elf_Internal_Vernaux *) bfd_zalloc (rinfo->info->output_bfd, amt);
1874   if (a == NULL)
1875     {
1876       rinfo->failed = TRUE;
1877       return FALSE;
1878     }
1879
1880   /* Note that we are copying a string pointer here, and testing it
1881      above.  If bfd_elf_string_from_elf_section is ever changed to
1882      discard the string data when low in memory, this will have to be
1883      fixed.  */
1884   a->vna_nodename = h->verinfo.verdef->vd_nodename;
1885
1886   a->vna_flags = h->verinfo.verdef->vd_flags;
1887   a->vna_nextptr = t->vn_auxptr;
1888
1889   h->verinfo.verdef->vd_exp_refno = rinfo->vers;
1890   ++rinfo->vers;
1891
1892   a->vna_other = h->verinfo.verdef->vd_exp_refno + 1;
1893
1894   t->vn_auxptr = a;
1895
1896   return TRUE;
1897 }
1898
1899 /* Figure out appropriate versions for all the symbols.  We may not
1900    have the version number script until we have read all of the input
1901    files, so until that point we don't know which symbols should be
1902    local.  This function is called via elf_link_hash_traverse.  */
1903
1904 static bfd_boolean
1905 _bfd_elf_link_assign_sym_version (struct elf_link_hash_entry *h, void *data)
1906 {
1907   struct elf_info_failed *sinfo;
1908   struct bfd_link_info *info;
1909   const struct elf_backend_data *bed;
1910   struct elf_info_failed eif;
1911   char *p;
1912   bfd_size_type amt;
1913
1914   sinfo = (struct elf_info_failed *) data;
1915   info = sinfo->info;
1916
1917   /* Fix the symbol flags.  */
1918   eif.failed = FALSE;
1919   eif.info = info;
1920   if (! _bfd_elf_fix_symbol_flags (h, &eif))
1921     {
1922       if (eif.failed)
1923         sinfo->failed = TRUE;
1924       return FALSE;
1925     }
1926
1927   /* We only need version numbers for symbols defined in regular
1928      objects.  */
1929   if (!h->def_regular)
1930     return TRUE;
1931
1932   bed = get_elf_backend_data (info->output_bfd);
1933   p = strchr (h->root.root.string, ELF_VER_CHR);
1934   if (p != NULL && h->verinfo.vertree == NULL)
1935     {
1936       struct bfd_elf_version_tree *t;
1937       bfd_boolean hidden;
1938
1939       hidden = TRUE;
1940
1941       /* There are two consecutive ELF_VER_CHR characters if this is
1942          not a hidden symbol.  */
1943       ++p;
1944       if (*p == ELF_VER_CHR)
1945         {
1946           hidden = FALSE;
1947           ++p;
1948         }
1949
1950       /* If there is no version string, we can just return out.  */
1951       if (*p == '\0')
1952         {
1953           if (hidden)
1954             h->hidden = 1;
1955           return TRUE;
1956         }
1957
1958       /* Look for the version.  If we find it, it is no longer weak.  */
1959       for (t = sinfo->info->version_info; t != NULL; t = t->next)
1960         {
1961           if (strcmp (t->name, p) == 0)
1962             {
1963               size_t len;
1964               char *alc;
1965               struct bfd_elf_version_expr *d;
1966
1967               len = p - h->root.root.string;
1968               alc = (char *) bfd_malloc (len);
1969               if (alc == NULL)
1970                 {
1971                   sinfo->failed = TRUE;
1972                   return FALSE;
1973                 }
1974               memcpy (alc, h->root.root.string, len - 1);
1975               alc[len - 1] = '\0';
1976               if (alc[len - 2] == ELF_VER_CHR)
1977                 alc[len - 2] = '\0';
1978
1979               h->verinfo.vertree = t;
1980               t->used = TRUE;
1981               d = NULL;
1982
1983               if (t->globals.list != NULL)
1984                 d = (*t->match) (&t->globals, NULL, alc);
1985
1986               /* See if there is anything to force this symbol to
1987                  local scope.  */
1988               if (d == NULL && t->locals.list != NULL)
1989                 {
1990                   d = (*t->match) (&t->locals, NULL, alc);
1991                   if (d != NULL
1992                       && h->dynindx != -1
1993                       && ! info->export_dynamic)
1994                     (*bed->elf_backend_hide_symbol) (info, h, TRUE);
1995                 }
1996
1997               free (alc);
1998               break;
1999             }
2000         }
2001
2002       /* If we are building an application, we need to create a
2003          version node for this version.  */
2004       if (t == NULL && info->executable)
2005         {
2006           struct bfd_elf_version_tree **pp;
2007           int version_index;
2008
2009           /* If we aren't going to export this symbol, we don't need
2010              to worry about it.  */
2011           if (h->dynindx == -1)
2012             return TRUE;
2013
2014           amt = sizeof *t;
2015           t = (struct bfd_elf_version_tree *) bfd_zalloc (info->output_bfd, amt);
2016           if (t == NULL)
2017             {
2018               sinfo->failed = TRUE;
2019               return FALSE;
2020             }
2021
2022           t->name = p;
2023           t->name_indx = (unsigned int) -1;
2024           t->used = TRUE;
2025
2026           version_index = 1;
2027           /* Don't count anonymous version tag.  */
2028           if (sinfo->info->version_info != NULL
2029               && sinfo->info->version_info->vernum == 0)
2030             version_index = 0;
2031           for (pp = &sinfo->info->version_info;
2032                *pp != NULL;
2033                pp = &(*pp)->next)
2034             ++version_index;
2035           t->vernum = version_index;
2036
2037           *pp = t;
2038
2039           h->verinfo.vertree = t;
2040         }
2041       else if (t == NULL)
2042         {
2043           /* We could not find the version for a symbol when
2044              generating a shared archive.  Return an error.  */
2045           (*_bfd_error_handler)
2046             (_("%B: version node not found for symbol %s"),
2047              info->output_bfd, h->root.root.string);
2048           bfd_set_error (bfd_error_bad_value);
2049           sinfo->failed = TRUE;
2050           return FALSE;
2051         }
2052
2053       if (hidden)
2054         h->hidden = 1;
2055     }
2056
2057   /* If we don't have a version for this symbol, see if we can find
2058      something.  */
2059   if (h->verinfo.vertree == NULL && sinfo->info->version_info != NULL)
2060     {
2061       bfd_boolean hide;
2062
2063       h->verinfo.vertree
2064         = bfd_find_version_for_sym (sinfo->info->version_info,
2065                                     h->root.root.string, &hide);
2066       if (h->verinfo.vertree != NULL && hide)
2067         (*bed->elf_backend_hide_symbol) (info, h, TRUE);
2068     }
2069
2070   return TRUE;
2071 }
2072 \f
2073 /* Read and swap the relocs from the section indicated by SHDR.  This
2074    may be either a REL or a RELA section.  The relocations are
2075    translated into RELA relocations and stored in INTERNAL_RELOCS,
2076    which should have already been allocated to contain enough space.
2077    The EXTERNAL_RELOCS are a buffer where the external form of the
2078    relocations should be stored.
2079
2080    Returns FALSE if something goes wrong.  */
2081
2082 static bfd_boolean
2083 elf_link_read_relocs_from_section (bfd *abfd,
2084                                    asection *sec,
2085                                    Elf_Internal_Shdr *shdr,
2086                                    void *external_relocs,
2087                                    Elf_Internal_Rela *internal_relocs)
2088 {
2089   const struct elf_backend_data *bed;
2090   void (*swap_in) (bfd *, const bfd_byte *, Elf_Internal_Rela *);
2091   const bfd_byte *erela;
2092   const bfd_byte *erelaend;
2093   Elf_Internal_Rela *irela;
2094   Elf_Internal_Shdr *symtab_hdr;
2095   size_t nsyms;
2096
2097   /* Position ourselves at the start of the section.  */
2098   if (bfd_seek (abfd, shdr->sh_offset, SEEK_SET) != 0)
2099     return FALSE;
2100
2101   /* Read the relocations.  */
2102   if (bfd_bread (external_relocs, shdr->sh_size, abfd) != shdr->sh_size)
2103     return FALSE;
2104
2105   symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
2106   nsyms = NUM_SHDR_ENTRIES (symtab_hdr);
2107
2108   bed = get_elf_backend_data (abfd);
2109
2110   /* Convert the external relocations to the internal format.  */
2111   if (shdr->sh_entsize == bed->s->sizeof_rel)
2112     swap_in = bed->s->swap_reloc_in;
2113   else if (shdr->sh_entsize == bed->s->sizeof_rela)
2114     swap_in = bed->s->swap_reloca_in;
2115   else
2116     {
2117       bfd_set_error (bfd_error_wrong_format);
2118       return FALSE;
2119     }
2120
2121   erela = (const bfd_byte *) external_relocs;
2122   erelaend = erela + shdr->sh_size;
2123   irela = internal_relocs;
2124   while (erela < erelaend)
2125     {
2126       bfd_vma r_symndx;
2127
2128       (*swap_in) (abfd, erela, irela);
2129       r_symndx = ELF32_R_SYM (irela->r_info);
2130       if (bed->s->arch_size == 64)
2131         r_symndx >>= 24;
2132       if (nsyms > 0)
2133         {
2134           if ((size_t) r_symndx >= nsyms)
2135             {
2136               (*_bfd_error_handler)
2137                 (_("%B: bad reloc symbol index (0x%lx >= 0x%lx)"
2138                    " for offset 0x%lx in section `%A'"),
2139                  abfd, sec,
2140                  (unsigned long) r_symndx, (unsigned long) nsyms, irela->r_offset);
2141               bfd_set_error (bfd_error_bad_value);
2142               return FALSE;
2143             }
2144         }
2145       else if (r_symndx != STN_UNDEF)
2146         {
2147           (*_bfd_error_handler)
2148             (_("%B: non-zero symbol index (0x%lx) for offset 0x%lx in section `%A'"
2149                " when the object file has no symbol table"),
2150              abfd, sec,
2151              (unsigned long) r_symndx, (unsigned long) nsyms, irela->r_offset);
2152           bfd_set_error (bfd_error_bad_value);
2153           return FALSE;
2154         }
2155       irela += bed->s->int_rels_per_ext_rel;
2156       erela += shdr->sh_entsize;
2157     }
2158
2159   return TRUE;
2160 }
2161
2162 /* Read and swap the relocs for a section O.  They may have been
2163    cached.  If the EXTERNAL_RELOCS and INTERNAL_RELOCS arguments are
2164    not NULL, they are used as buffers to read into.  They are known to
2165    be large enough.  If the INTERNAL_RELOCS relocs argument is NULL,
2166    the return value is allocated using either malloc or bfd_alloc,
2167    according to the KEEP_MEMORY argument.  If O has two relocation
2168    sections (both REL and RELA relocations), then the REL_HDR
2169    relocations will appear first in INTERNAL_RELOCS, followed by the
2170    RELA_HDR relocations.  */
2171
2172 Elf_Internal_Rela *
2173 _bfd_elf_link_read_relocs (bfd *abfd,
2174                            asection *o,
2175                            void *external_relocs,
2176                            Elf_Internal_Rela *internal_relocs,
2177                            bfd_boolean keep_memory)
2178 {
2179   void *alloc1 = NULL;
2180   Elf_Internal_Rela *alloc2 = NULL;
2181   const struct elf_backend_data *bed = get_elf_backend_data (abfd);
2182   struct bfd_elf_section_data *esdo = elf_section_data (o);
2183   Elf_Internal_Rela *internal_rela_relocs;
2184
2185   if (esdo->relocs != NULL)
2186     return esdo->relocs;
2187
2188   if (o->reloc_count == 0)
2189     return NULL;
2190
2191   if (internal_relocs == NULL)
2192     {
2193       bfd_size_type size;
2194
2195       size = o->reloc_count;
2196       size *= bed->s->int_rels_per_ext_rel * sizeof (Elf_Internal_Rela);
2197       if (keep_memory)
2198         internal_relocs = alloc2 = (Elf_Internal_Rela *) bfd_alloc (abfd, size);
2199       else
2200         internal_relocs = alloc2 = (Elf_Internal_Rela *) bfd_malloc (size);
2201       if (internal_relocs == NULL)
2202         goto error_return;
2203     }
2204
2205   if (external_relocs == NULL)
2206     {
2207       bfd_size_type size = 0;
2208
2209       if (esdo->rel.hdr)
2210         size += esdo->rel.hdr->sh_size;
2211       if (esdo->rela.hdr)
2212         size += esdo->rela.hdr->sh_size;
2213
2214       alloc1 = bfd_malloc (size);
2215       if (alloc1 == NULL)
2216         goto error_return;
2217       external_relocs = alloc1;
2218     }
2219
2220   internal_rela_relocs = internal_relocs;
2221   if (esdo->rel.hdr)
2222     {
2223       if (!elf_link_read_relocs_from_section (abfd, o, esdo->rel.hdr,
2224                                               external_relocs,
2225                                               internal_relocs))
2226         goto error_return;
2227       external_relocs = (((bfd_byte *) external_relocs)
2228                          + esdo->rel.hdr->sh_size);
2229       internal_rela_relocs += (NUM_SHDR_ENTRIES (esdo->rel.hdr)
2230                                * bed->s->int_rels_per_ext_rel);
2231     }
2232
2233   if (esdo->rela.hdr
2234       && (!elf_link_read_relocs_from_section (abfd, o, esdo->rela.hdr,
2235                                               external_relocs,
2236                                               internal_rela_relocs)))
2237     goto error_return;
2238
2239   /* Cache the results for next time, if we can.  */
2240   if (keep_memory)
2241     esdo->relocs = internal_relocs;
2242
2243   if (alloc1 != NULL)
2244     free (alloc1);
2245
2246   /* Don't free alloc2, since if it was allocated we are passing it
2247      back (under the name of internal_relocs).  */
2248
2249   return internal_relocs;
2250
2251  error_return:
2252   if (alloc1 != NULL)
2253     free (alloc1);
2254   if (alloc2 != NULL)
2255     {
2256       if (keep_memory)
2257         bfd_release (abfd, alloc2);
2258       else
2259         free (alloc2);
2260     }
2261   return NULL;
2262 }
2263
2264 /* Compute the size of, and allocate space for, REL_HDR which is the
2265    section header for a section containing relocations for O.  */
2266
2267 static bfd_boolean
2268 _bfd_elf_link_size_reloc_section (bfd *abfd,
2269                                   struct bfd_elf_section_reloc_data *reldata)
2270 {
2271   Elf_Internal_Shdr *rel_hdr = reldata->hdr;
2272
2273   /* That allows us to calculate the size of the section.  */
2274   rel_hdr->sh_size = rel_hdr->sh_entsize * reldata->count;
2275
2276   /* The contents field must last into write_object_contents, so we
2277      allocate it with bfd_alloc rather than malloc.  Also since we
2278      cannot be sure that the contents will actually be filled in,
2279      we zero the allocated space.  */
2280   rel_hdr->contents = (unsigned char *) bfd_zalloc (abfd, rel_hdr->sh_size);
2281   if (rel_hdr->contents == NULL && rel_hdr->sh_size != 0)
2282     return FALSE;
2283
2284   if (reldata->hashes == NULL && reldata->count)
2285     {
2286       struct elf_link_hash_entry **p;
2287
2288       p = (struct elf_link_hash_entry **)
2289           bfd_zmalloc (reldata->count * sizeof (struct elf_link_hash_entry *));
2290       if (p == NULL)
2291         return FALSE;
2292
2293       reldata->hashes = p;
2294     }
2295
2296   return TRUE;
2297 }
2298
2299 /* Copy the relocations indicated by the INTERNAL_RELOCS (which
2300    originated from the section given by INPUT_REL_HDR) to the
2301    OUTPUT_BFD.  */
2302
2303 bfd_boolean
2304 _bfd_elf_link_output_relocs (bfd *output_bfd,
2305                              asection *input_section,
2306                              Elf_Internal_Shdr *input_rel_hdr,
2307                              Elf_Internal_Rela *internal_relocs,
2308                              struct elf_link_hash_entry **rel_hash
2309                                ATTRIBUTE_UNUSED)
2310 {
2311   Elf_Internal_Rela *irela;
2312   Elf_Internal_Rela *irelaend;
2313   bfd_byte *erel;
2314   struct bfd_elf_section_reloc_data *output_reldata;
2315   asection *output_section;
2316   const struct elf_backend_data *bed;
2317   void (*swap_out) (bfd *, const Elf_Internal_Rela *, bfd_byte *);
2318   struct bfd_elf_section_data *esdo;
2319
2320   output_section = input_section->output_section;
2321
2322   bed = get_elf_backend_data (output_bfd);
2323   esdo = elf_section_data (output_section);
2324   if (esdo->rel.hdr && esdo->rel.hdr->sh_entsize == input_rel_hdr->sh_entsize)
2325     {
2326       output_reldata = &esdo->rel;
2327       swap_out = bed->s->swap_reloc_out;
2328     }
2329   else if (esdo->rela.hdr
2330            && esdo->rela.hdr->sh_entsize == input_rel_hdr->sh_entsize)
2331     {
2332       output_reldata = &esdo->rela;
2333       swap_out = bed->s->swap_reloca_out;
2334     }
2335   else
2336     {
2337       (*_bfd_error_handler)
2338         (_("%B: relocation size mismatch in %B section %A"),
2339          output_bfd, input_section->owner, input_section);
2340       bfd_set_error (bfd_error_wrong_format);
2341       return FALSE;
2342     }
2343
2344   erel = output_reldata->hdr->contents;
2345   erel += output_reldata->count * input_rel_hdr->sh_entsize;
2346   irela = internal_relocs;
2347   irelaend = irela + (NUM_SHDR_ENTRIES (input_rel_hdr)
2348                       * bed->s->int_rels_per_ext_rel);
2349   while (irela < irelaend)
2350     {
2351       (*swap_out) (output_bfd, irela, erel);
2352       irela += bed->s->int_rels_per_ext_rel;
2353       erel += input_rel_hdr->sh_entsize;
2354     }
2355
2356   /* Bump the counter, so that we know where to add the next set of
2357      relocations.  */
2358   output_reldata->count += NUM_SHDR_ENTRIES (input_rel_hdr);
2359
2360   return TRUE;
2361 }
2362 \f
2363 /* Make weak undefined symbols in PIE dynamic.  */
2364
2365 bfd_boolean
2366 _bfd_elf_link_hash_fixup_symbol (struct bfd_link_info *info,
2367                                  struct elf_link_hash_entry *h)
2368 {
2369   if (info->pie
2370       && h->dynindx == -1
2371       && h->root.type == bfd_link_hash_undefweak)
2372     return bfd_elf_link_record_dynamic_symbol (info, h);
2373
2374   return TRUE;
2375 }
2376
2377 /* Fix up the flags for a symbol.  This handles various cases which
2378    can only be fixed after all the input files are seen.  This is
2379    currently called by both adjust_dynamic_symbol and
2380    assign_sym_version, which is unnecessary but perhaps more robust in
2381    the face of future changes.  */
2382
2383 static bfd_boolean
2384 _bfd_elf_fix_symbol_flags (struct elf_link_hash_entry *h,
2385                            struct elf_info_failed *eif)
2386 {
2387   const struct elf_backend_data *bed;
2388
2389   /* If this symbol was mentioned in a non-ELF file, try to set
2390      DEF_REGULAR and REF_REGULAR correctly.  This is the only way to
2391      permit a non-ELF file to correctly refer to a symbol defined in
2392      an ELF dynamic object.  */
2393   if (h->non_elf)
2394     {
2395       while (h->root.type == bfd_link_hash_indirect)
2396         h = (struct elf_link_hash_entry *) h->root.u.i.link;
2397
2398       if (h->root.type != bfd_link_hash_defined
2399           && h->root.type != bfd_link_hash_defweak)
2400         {
2401           h->ref_regular = 1;
2402           h->ref_regular_nonweak = 1;
2403         }
2404       else
2405         {
2406           if (h->root.u.def.section->owner != NULL
2407               && (bfd_get_flavour (h->root.u.def.section->owner)
2408                   == bfd_target_elf_flavour))
2409             {
2410               h->ref_regular = 1;
2411               h->ref_regular_nonweak = 1;
2412             }
2413           else
2414             h->def_regular = 1;
2415         }
2416
2417       if (h->dynindx == -1
2418           && (h->def_dynamic
2419               || h->ref_dynamic))
2420         {
2421           if (! bfd_elf_link_record_dynamic_symbol (eif->info, h))
2422             {
2423               eif->failed = TRUE;
2424               return FALSE;
2425             }
2426         }
2427     }
2428   else
2429     {
2430       /* Unfortunately, NON_ELF is only correct if the symbol
2431          was first seen in a non-ELF file.  Fortunately, if the symbol
2432          was first seen in an ELF file, we're probably OK unless the
2433          symbol was defined in a non-ELF file.  Catch that case here.
2434          FIXME: We're still in trouble if the symbol was first seen in
2435          a dynamic object, and then later in a non-ELF regular object.  */
2436       if ((h->root.type == bfd_link_hash_defined
2437            || h->root.type == bfd_link_hash_defweak)
2438           && !h->def_regular
2439           && (h->root.u.def.section->owner != NULL
2440               ? (bfd_get_flavour (h->root.u.def.section->owner)
2441                  != bfd_target_elf_flavour)
2442               : (bfd_is_abs_section (h->root.u.def.section)
2443                  && !h->def_dynamic)))
2444         h->def_regular = 1;
2445     }
2446
2447   /* Backend specific symbol fixup.  */
2448   bed = get_elf_backend_data (elf_hash_table (eif->info)->dynobj);
2449   if (bed->elf_backend_fixup_symbol
2450       && !(*bed->elf_backend_fixup_symbol) (eif->info, h))
2451     return FALSE;
2452
2453   /* If this is a final link, and the symbol was defined as a common
2454      symbol in a regular object file, and there was no definition in
2455      any dynamic object, then the linker will have allocated space for
2456      the symbol in a common section but the DEF_REGULAR
2457      flag will not have been set.  */
2458   if (h->root.type == bfd_link_hash_defined
2459       && !h->def_regular
2460       && h->ref_regular
2461       && !h->def_dynamic
2462       && (h->root.u.def.section->owner->flags & (DYNAMIC | BFD_PLUGIN)) == 0)
2463     h->def_regular = 1;
2464
2465   /* If -Bsymbolic was used (which means to bind references to global
2466      symbols to the definition within the shared object), and this
2467      symbol was defined in a regular object, then it actually doesn't
2468      need a PLT entry.  Likewise, if the symbol has non-default
2469      visibility.  If the symbol has hidden or internal visibility, we
2470      will force it local.  */
2471   if (h->needs_plt
2472       && eif->info->shared
2473       && is_elf_hash_table (eif->info->hash)
2474       && (SYMBOLIC_BIND (eif->info, h)
2475           || ELF_ST_VISIBILITY (h->other) != STV_DEFAULT)
2476       && h->def_regular)
2477     {
2478       bfd_boolean force_local;
2479
2480       force_local = (ELF_ST_VISIBILITY (h->other) == STV_INTERNAL
2481                      || ELF_ST_VISIBILITY (h->other) == STV_HIDDEN);
2482       (*bed->elf_backend_hide_symbol) (eif->info, h, force_local);
2483     }
2484
2485   /* If a weak undefined symbol has non-default visibility, we also
2486      hide it from the dynamic linker.  */
2487   if (ELF_ST_VISIBILITY (h->other) != STV_DEFAULT
2488       && h->root.type == bfd_link_hash_undefweak)
2489     (*bed->elf_backend_hide_symbol) (eif->info, h, TRUE);
2490
2491   /* If this is a weak defined symbol in a dynamic object, and we know
2492      the real definition in the dynamic object, copy interesting flags
2493      over to the real definition.  */
2494   if (h->u.weakdef != NULL)
2495     {
2496       /* If the real definition is defined by a regular object file,
2497          don't do anything special.  See the longer description in
2498          _bfd_elf_adjust_dynamic_symbol, below.  */
2499       if (h->u.weakdef->def_regular)
2500         h->u.weakdef = NULL;
2501       else
2502         {
2503           struct elf_link_hash_entry *weakdef = h->u.weakdef;
2504
2505           while (h->root.type == bfd_link_hash_indirect)
2506             h = (struct elf_link_hash_entry *) h->root.u.i.link;
2507
2508           BFD_ASSERT (h->root.type == bfd_link_hash_defined
2509                       || h->root.type == bfd_link_hash_defweak);
2510           BFD_ASSERT (weakdef->def_dynamic);
2511           BFD_ASSERT (weakdef->root.type == bfd_link_hash_defined
2512                       || weakdef->root.type == bfd_link_hash_defweak);
2513           (*bed->elf_backend_copy_indirect_symbol) (eif->info, weakdef, h);
2514         }
2515     }
2516
2517   return TRUE;
2518 }
2519
2520 /* Make the backend pick a good value for a dynamic symbol.  This is
2521    called via elf_link_hash_traverse, and also calls itself
2522    recursively.  */
2523
2524 static bfd_boolean
2525 _bfd_elf_adjust_dynamic_symbol (struct elf_link_hash_entry *h, void *data)
2526 {
2527   struct elf_info_failed *eif = (struct elf_info_failed *) data;
2528   bfd *dynobj;
2529   const struct elf_backend_data *bed;
2530
2531   if (! is_elf_hash_table (eif->info->hash))
2532     return FALSE;
2533
2534   /* Ignore indirect symbols.  These are added by the versioning code.  */
2535   if (h->root.type == bfd_link_hash_indirect)
2536     return TRUE;
2537
2538   /* Fix the symbol flags.  */
2539   if (! _bfd_elf_fix_symbol_flags (h, eif))
2540     return FALSE;
2541
2542   /* If this symbol does not require a PLT entry, and it is not
2543      defined by a dynamic object, or is not referenced by a regular
2544      object, ignore it.  We do have to handle a weak defined symbol,
2545      even if no regular object refers to it, if we decided to add it
2546      to the dynamic symbol table.  FIXME: Do we normally need to worry
2547      about symbols which are defined by one dynamic object and
2548      referenced by another one?  */
2549   if (!h->needs_plt
2550       && h->type != STT_GNU_IFUNC
2551       && (h->def_regular
2552           || !h->def_dynamic
2553           || (!h->ref_regular
2554               && (h->u.weakdef == NULL || h->u.weakdef->dynindx == -1))))
2555     {
2556       h->plt = elf_hash_table (eif->info)->init_plt_offset;
2557       return TRUE;
2558     }
2559
2560   /* If we've already adjusted this symbol, don't do it again.  This
2561      can happen via a recursive call.  */
2562   if (h->dynamic_adjusted)
2563     return TRUE;
2564
2565   /* Don't look at this symbol again.  Note that we must set this
2566      after checking the above conditions, because we may look at a
2567      symbol once, decide not to do anything, and then get called
2568      recursively later after REF_REGULAR is set below.  */
2569   h->dynamic_adjusted = 1;
2570
2571   /* If this is a weak definition, and we know a real definition, and
2572      the real symbol is not itself defined by a regular object file,
2573      then get a good value for the real definition.  We handle the
2574      real symbol first, for the convenience of the backend routine.
2575
2576      Note that there is a confusing case here.  If the real definition
2577      is defined by a regular object file, we don't get the real symbol
2578      from the dynamic object, but we do get the weak symbol.  If the
2579      processor backend uses a COPY reloc, then if some routine in the
2580      dynamic object changes the real symbol, we will not see that
2581      change in the corresponding weak symbol.  This is the way other
2582      ELF linkers work as well, and seems to be a result of the shared
2583      library model.
2584
2585      I will clarify this issue.  Most SVR4 shared libraries define the
2586      variable _timezone and define timezone as a weak synonym.  The
2587      tzset call changes _timezone.  If you write
2588        extern int timezone;
2589        int _timezone = 5;
2590        int main () { tzset (); printf ("%d %d\n", timezone, _timezone); }
2591      you might expect that, since timezone is a synonym for _timezone,
2592      the same number will print both times.  However, if the processor
2593      backend uses a COPY reloc, then actually timezone will be copied
2594      into your process image, and, since you define _timezone
2595      yourself, _timezone will not.  Thus timezone and _timezone will
2596      wind up at different memory locations.  The tzset call will set
2597      _timezone, leaving timezone unchanged.  */
2598
2599   if (h->u.weakdef != NULL)
2600     {
2601       /* If we get to this point, there is an implicit reference to
2602          H->U.WEAKDEF by a regular object file via the weak symbol H.  */
2603       h->u.weakdef->ref_regular = 1;
2604
2605       /* Ensure that the backend adjust_dynamic_symbol function sees
2606          H->U.WEAKDEF before H by recursively calling ourselves.  */
2607       if (! _bfd_elf_adjust_dynamic_symbol (h->u.weakdef, eif))
2608         return FALSE;
2609     }
2610
2611   /* If a symbol has no type and no size and does not require a PLT
2612      entry, then we are probably about to do the wrong thing here: we
2613      are probably going to create a COPY reloc for an empty object.
2614      This case can arise when a shared object is built with assembly
2615      code, and the assembly code fails to set the symbol type.  */
2616   if (h->size == 0
2617       && h->type == STT_NOTYPE
2618       && !h->needs_plt)
2619     (*_bfd_error_handler)
2620       (_("warning: type and size of dynamic symbol `%s' are not defined"),
2621        h->root.root.string);
2622
2623   dynobj = elf_hash_table (eif->info)->dynobj;
2624   bed = get_elf_backend_data (dynobj);
2625
2626   if (! (*bed->elf_backend_adjust_dynamic_symbol) (eif->info, h))
2627     {
2628       eif->failed = TRUE;
2629       return FALSE;
2630     }
2631
2632   return TRUE;
2633 }
2634
2635 /* Adjust the dynamic symbol, H, for copy in the dynamic bss section,
2636    DYNBSS.  */
2637
2638 bfd_boolean
2639 _bfd_elf_adjust_dynamic_copy (struct elf_link_hash_entry *h,
2640                               asection *dynbss)
2641 {
2642   unsigned int power_of_two;
2643   bfd_vma mask;
2644   asection *sec = h->root.u.def.section;
2645
2646   /* The section aligment of definition is the maximum alignment
2647      requirement of symbols defined in the section.  Since we don't
2648      know the symbol alignment requirement, we start with the
2649      maximum alignment and check low bits of the symbol address
2650      for the minimum alignment.  */
2651   power_of_two = bfd_get_section_alignment (sec->owner, sec);
2652   mask = ((bfd_vma) 1 << power_of_two) - 1;
2653   while ((h->root.u.def.value & mask) != 0)
2654     {
2655        mask >>= 1;
2656        --power_of_two;
2657     }
2658
2659   if (power_of_two > bfd_get_section_alignment (dynbss->owner,
2660                                                 dynbss))
2661     {
2662       /* Adjust the section alignment if needed.  */
2663       if (! bfd_set_section_alignment (dynbss->owner, dynbss,
2664                                        power_of_two))
2665         return FALSE;
2666     }
2667
2668   /* We make sure that the symbol will be aligned properly.  */
2669   dynbss->size = BFD_ALIGN (dynbss->size, mask + 1);
2670
2671   /* Define the symbol as being at this point in DYNBSS.  */
2672   h->root.u.def.section = dynbss;
2673   h->root.u.def.value = dynbss->size;
2674
2675   /* Increment the size of DYNBSS to make room for the symbol.  */
2676   dynbss->size += h->size;
2677
2678   return TRUE;
2679 }
2680
2681 /* Adjust all external symbols pointing into SEC_MERGE sections
2682    to reflect the object merging within the sections.  */
2683
2684 static bfd_boolean
2685 _bfd_elf_link_sec_merge_syms (struct elf_link_hash_entry *h, void *data)
2686 {
2687   asection *sec;
2688
2689   if ((h->root.type == bfd_link_hash_defined
2690        || h->root.type == bfd_link_hash_defweak)
2691       && ((sec = h->root.u.def.section)->flags & SEC_MERGE)
2692       && sec->sec_info_type == SEC_INFO_TYPE_MERGE)
2693     {
2694       bfd *output_bfd = (bfd *) data;
2695
2696       h->root.u.def.value =
2697         _bfd_merged_section_offset (output_bfd,
2698                                     &h->root.u.def.section,
2699                                     elf_section_data (sec)->sec_info,
2700                                     h->root.u.def.value);
2701     }
2702
2703   return TRUE;
2704 }
2705
2706 /* Returns false if the symbol referred to by H should be considered
2707    to resolve local to the current module, and true if it should be
2708    considered to bind dynamically.  */
2709
2710 bfd_boolean
2711 _bfd_elf_dynamic_symbol_p (struct elf_link_hash_entry *h,
2712                            struct bfd_link_info *info,
2713                            bfd_boolean not_local_protected)
2714 {
2715   bfd_boolean binding_stays_local_p;
2716   const struct elf_backend_data *bed;
2717   struct elf_link_hash_table *hash_table;
2718
2719   if (h == NULL)
2720     return FALSE;
2721
2722   while (h->root.type == bfd_link_hash_indirect
2723          || h->root.type == bfd_link_hash_warning)
2724     h = (struct elf_link_hash_entry *) h->root.u.i.link;
2725
2726   /* If it was forced local, then clearly it's not dynamic.  */
2727   if (h->dynindx == -1)
2728     return FALSE;
2729   if (h->forced_local)
2730     return FALSE;
2731
2732   /* Identify the cases where name binding rules say that a
2733      visible symbol resolves locally.  */
2734   binding_stays_local_p = info->executable || SYMBOLIC_BIND (info, h);
2735
2736   switch (ELF_ST_VISIBILITY (h->other))
2737     {
2738     case STV_INTERNAL:
2739     case STV_HIDDEN:
2740       return FALSE;
2741
2742     case STV_PROTECTED:
2743       hash_table = elf_hash_table (info);
2744       if (!is_elf_hash_table (hash_table))
2745         return FALSE;
2746
2747       bed = get_elf_backend_data (hash_table->dynobj);
2748
2749       /* Proper resolution for function pointer equality may require
2750          that these symbols perhaps be resolved dynamically, even though
2751          we should be resolving them to the current module.  */
2752       if (!not_local_protected || !bed->is_function_type (h->type))
2753         binding_stays_local_p = TRUE;
2754       break;
2755
2756     default:
2757       break;
2758     }
2759
2760   /* If it isn't defined locally, then clearly it's dynamic.  */
2761   if (!h->def_regular && !ELF_COMMON_DEF_P (h))
2762     return TRUE;
2763
2764   /* Otherwise, the symbol is dynamic if binding rules don't tell
2765      us that it remains local.  */
2766   return !binding_stays_local_p;
2767 }
2768
2769 /* Return true if the symbol referred to by H should be considered
2770    to resolve local to the current module, and false otherwise.  Differs
2771    from (the inverse of) _bfd_elf_dynamic_symbol_p in the treatment of
2772    undefined symbols.  The two functions are virtually identical except
2773    for the place where forced_local and dynindx == -1 are tested.  If
2774    either of those tests are true, _bfd_elf_dynamic_symbol_p will say
2775    the symbol is local, while _bfd_elf_symbol_refs_local_p will say
2776    the symbol is local only for defined symbols.
2777    It might seem that _bfd_elf_dynamic_symbol_p could be rewritten as
2778    !_bfd_elf_symbol_refs_local_p, except that targets differ in their
2779    treatment of undefined weak symbols.  For those that do not make
2780    undefined weak symbols dynamic, both functions may return false.  */
2781
2782 bfd_boolean
2783 _bfd_elf_symbol_refs_local_p (struct elf_link_hash_entry *h,
2784                               struct bfd_link_info *info,
2785                               bfd_boolean local_protected)
2786 {
2787   const struct elf_backend_data *bed;
2788   struct elf_link_hash_table *hash_table;
2789
2790   /* If it's a local sym, of course we resolve locally.  */
2791   if (h == NULL)
2792     return TRUE;
2793
2794   /* STV_HIDDEN or STV_INTERNAL ones must be local.  */
2795   if (ELF_ST_VISIBILITY (h->other) == STV_HIDDEN
2796       || ELF_ST_VISIBILITY (h->other) == STV_INTERNAL)
2797     return TRUE;
2798
2799   /* Common symbols that become definitions don't get the DEF_REGULAR
2800      flag set, so test it first, and don't bail out.  */
2801   if (ELF_COMMON_DEF_P (h))
2802     /* Do nothing.  */;
2803   /* If we don't have a definition in a regular file, then we can't
2804      resolve locally.  The sym is either undefined or dynamic.  */
2805   else if (!h->def_regular)
2806     return FALSE;
2807
2808   /* Forced local symbols resolve locally.  */
2809   if (h->forced_local)
2810     return TRUE;
2811
2812   /* As do non-dynamic symbols.  */
2813   if (h->dynindx == -1)
2814     return TRUE;
2815
2816   /* At this point, we know the symbol is defined and dynamic.  In an
2817      executable it must resolve locally, likewise when building symbolic
2818      shared libraries.  */
2819   if (info->executable || SYMBOLIC_BIND (info, h))
2820     return TRUE;
2821
2822   /* Now deal with defined dynamic symbols in shared libraries.  Ones
2823      with default visibility might not resolve locally.  */
2824   if (ELF_ST_VISIBILITY (h->other) == STV_DEFAULT)
2825     return FALSE;
2826
2827   hash_table = elf_hash_table (info);
2828   if (!is_elf_hash_table (hash_table))
2829     return TRUE;
2830
2831   bed = get_elf_backend_data (hash_table->dynobj);
2832
2833   /* STV_PROTECTED non-function symbols are local.  */
2834   if (!bed->is_function_type (h->type))
2835     return TRUE;
2836
2837   /* Function pointer equality tests may require that STV_PROTECTED
2838      symbols be treated as dynamic symbols.  If the address of a
2839      function not defined in an executable is set to that function's
2840      plt entry in the executable, then the address of the function in
2841      a shared library must also be the plt entry in the executable.  */
2842   return local_protected;
2843 }
2844
2845 /* Caches some TLS segment info, and ensures that the TLS segment vma is
2846    aligned.  Returns the first TLS output section.  */
2847
2848 struct bfd_section *
2849 _bfd_elf_tls_setup (bfd *obfd, struct bfd_link_info *info)
2850 {
2851   struct bfd_section *sec, *tls;
2852   unsigned int align = 0;
2853
2854   for (sec = obfd->sections; sec != NULL; sec = sec->next)
2855     if ((sec->flags & SEC_THREAD_LOCAL) != 0)
2856       break;
2857   tls = sec;
2858
2859   for (; sec != NULL && (sec->flags & SEC_THREAD_LOCAL) != 0; sec = sec->next)
2860     if (sec->alignment_power > align)
2861       align = sec->alignment_power;
2862
2863   elf_hash_table (info)->tls_sec = tls;
2864
2865   /* Ensure the alignment of the first section is the largest alignment,
2866      so that the tls segment starts aligned.  */
2867   if (tls != NULL)
2868     tls->alignment_power = align;
2869
2870   return tls;
2871 }
2872
2873 /* Return TRUE iff this is a non-common, definition of a non-function symbol.  */
2874 static bfd_boolean
2875 is_global_data_symbol_definition (bfd *abfd ATTRIBUTE_UNUSED,
2876                                   Elf_Internal_Sym *sym)
2877 {
2878   const struct elf_backend_data *bed;
2879
2880   /* Local symbols do not count, but target specific ones might.  */
2881   if (ELF_ST_BIND (sym->st_info) != STB_GLOBAL
2882       && ELF_ST_BIND (sym->st_info) < STB_LOOS)
2883     return FALSE;
2884
2885   bed = get_elf_backend_data (abfd);
2886   /* Function symbols do not count.  */
2887   if (bed->is_function_type (ELF_ST_TYPE (sym->st_info)))
2888     return FALSE;
2889
2890   /* If the section is undefined, then so is the symbol.  */
2891   if (sym->st_shndx == SHN_UNDEF)
2892     return FALSE;
2893
2894   /* If the symbol is defined in the common section, then
2895      it is a common definition and so does not count.  */
2896   if (bed->common_definition (sym))
2897     return FALSE;
2898
2899   /* If the symbol is in a target specific section then we
2900      must rely upon the backend to tell us what it is.  */
2901   if (sym->st_shndx >= SHN_LORESERVE && sym->st_shndx < SHN_ABS)
2902     /* FIXME - this function is not coded yet:
2903
2904        return _bfd_is_global_symbol_definition (abfd, sym);
2905
2906        Instead for now assume that the definition is not global,
2907        Even if this is wrong, at least the linker will behave
2908        in the same way that it used to do.  */
2909     return FALSE;
2910
2911   return TRUE;
2912 }
2913
2914 /* Search the symbol table of the archive element of the archive ABFD
2915    whose archive map contains a mention of SYMDEF, and determine if
2916    the symbol is defined in this element.  */
2917 static bfd_boolean
2918 elf_link_is_defined_archive_symbol (bfd * abfd, carsym * symdef)
2919 {
2920   Elf_Internal_Shdr * hdr;
2921   bfd_size_type symcount;
2922   bfd_size_type extsymcount;
2923   bfd_size_type extsymoff;
2924   Elf_Internal_Sym *isymbuf;
2925   Elf_Internal_Sym *isym;
2926   Elf_Internal_Sym *isymend;
2927   bfd_boolean result;
2928
2929   abfd = _bfd_get_elt_at_filepos (abfd, symdef->file_offset);
2930   if (abfd == NULL)
2931     return FALSE;
2932
2933   if (! bfd_check_format (abfd, bfd_object))
2934     return FALSE;
2935
2936   /* Select the appropriate symbol table.  */
2937   if ((abfd->flags & DYNAMIC) == 0 || elf_dynsymtab (abfd) == 0)
2938     hdr = &elf_tdata (abfd)->symtab_hdr;
2939   else
2940     hdr = &elf_tdata (abfd)->dynsymtab_hdr;
2941
2942   symcount = hdr->sh_size / get_elf_backend_data (abfd)->s->sizeof_sym;
2943
2944   /* The sh_info field of the symtab header tells us where the
2945      external symbols start.  We don't care about the local symbols.  */
2946   if (elf_bad_symtab (abfd))
2947     {
2948       extsymcount = symcount;
2949       extsymoff = 0;
2950     }
2951   else
2952     {
2953       extsymcount = symcount - hdr->sh_info;
2954       extsymoff = hdr->sh_info;
2955     }
2956
2957   if (extsymcount == 0)
2958     return FALSE;
2959
2960   /* Read in the symbol table.  */
2961   isymbuf = bfd_elf_get_elf_syms (abfd, hdr, extsymcount, extsymoff,
2962                                   NULL, NULL, NULL);
2963   if (isymbuf == NULL)
2964     return FALSE;
2965
2966   /* Scan the symbol table looking for SYMDEF.  */
2967   result = FALSE;
2968   for (isym = isymbuf, isymend = isymbuf + extsymcount; isym < isymend; isym++)
2969     {
2970       const char *name;
2971
2972       name = bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
2973                                               isym->st_name);
2974       if (name == NULL)
2975         break;
2976
2977       if (strcmp (name, symdef->name) == 0)
2978         {
2979           result = is_global_data_symbol_definition (abfd, isym);
2980           break;
2981         }
2982     }
2983
2984   free (isymbuf);
2985
2986   return result;
2987 }
2988 \f
2989 /* Add an entry to the .dynamic table.  */
2990
2991 bfd_boolean
2992 _bfd_elf_add_dynamic_entry (struct bfd_link_info *info,
2993                             bfd_vma tag,
2994                             bfd_vma val)
2995 {
2996   struct elf_link_hash_table *hash_table;
2997   const struct elf_backend_data *bed;
2998   asection *s;
2999   bfd_size_type newsize;
3000   bfd_byte *newcontents;
3001   Elf_Internal_Dyn dyn;
3002
3003   hash_table = elf_hash_table (info);
3004   if (! is_elf_hash_table (hash_table))
3005     return FALSE;
3006
3007   bed = get_elf_backend_data (hash_table->dynobj);
3008   s = bfd_get_linker_section (hash_table->dynobj, ".dynamic");
3009   BFD_ASSERT (s != NULL);
3010
3011   newsize = s->size + bed->s->sizeof_dyn;
3012   newcontents = (bfd_byte *) bfd_realloc (s->contents, newsize);
3013   if (newcontents == NULL)
3014     return FALSE;
3015
3016   dyn.d_tag = tag;
3017   dyn.d_un.d_val = val;
3018   bed->s->swap_dyn_out (hash_table->dynobj, &dyn, newcontents + s->size);
3019
3020   s->size = newsize;
3021   s->contents = newcontents;
3022
3023   return TRUE;
3024 }
3025
3026 /* Add a DT_NEEDED entry for this dynamic object if DO_IT is true,
3027    otherwise just check whether one already exists.  Returns -1 on error,
3028    1 if a DT_NEEDED tag already exists, and 0 on success.  */
3029
3030 static int
3031 elf_add_dt_needed_tag (bfd *abfd,
3032                        struct bfd_link_info *info,
3033                        const char *soname,
3034                        bfd_boolean do_it)
3035 {
3036   struct elf_link_hash_table *hash_table;
3037   bfd_size_type strindex;
3038
3039   if (!_bfd_elf_link_create_dynstrtab (abfd, info))
3040     return -1;
3041
3042   hash_table = elf_hash_table (info);
3043   strindex = _bfd_elf_strtab_add (hash_table->dynstr, soname, FALSE);
3044   if (strindex == (bfd_size_type) -1)
3045     return -1;
3046
3047   if (_bfd_elf_strtab_refcount (hash_table->dynstr, strindex) != 1)
3048     {
3049       asection *sdyn;
3050       const struct elf_backend_data *bed;
3051       bfd_byte *extdyn;
3052
3053       bed = get_elf_backend_data (hash_table->dynobj);
3054       sdyn = bfd_get_linker_section (hash_table->dynobj, ".dynamic");
3055       if (sdyn != NULL)
3056         for (extdyn = sdyn->contents;
3057              extdyn < sdyn->contents + sdyn->size;
3058              extdyn += bed->s->sizeof_dyn)
3059           {
3060             Elf_Internal_Dyn dyn;
3061
3062             bed->s->swap_dyn_in (hash_table->dynobj, extdyn, &dyn);
3063             if (dyn.d_tag == DT_NEEDED
3064                 && dyn.d_un.d_val == strindex)
3065               {
3066                 _bfd_elf_strtab_delref (hash_table->dynstr, strindex);
3067                 return 1;
3068               }
3069           }
3070     }
3071
3072   if (do_it)
3073     {
3074       if (!_bfd_elf_link_create_dynamic_sections (hash_table->dynobj, info))
3075         return -1;
3076
3077       if (!_bfd_elf_add_dynamic_entry (info, DT_NEEDED, strindex))
3078         return -1;
3079     }
3080   else
3081     /* We were just checking for existence of the tag.  */
3082     _bfd_elf_strtab_delref (hash_table->dynstr, strindex);
3083
3084   return 0;
3085 }
3086
3087 static bfd_boolean
3088 on_needed_list (const char *soname, struct bfd_link_needed_list *needed)
3089 {
3090   for (; needed != NULL; needed = needed->next)
3091     if ((elf_dyn_lib_class (needed->by) & DYN_AS_NEEDED) == 0
3092         && strcmp (soname, needed->name) == 0)
3093       return TRUE;
3094
3095   return FALSE;
3096 }
3097
3098 /* Sort symbol by value, section, and size.  */
3099 static int
3100 elf_sort_symbol (const void *arg1, const void *arg2)
3101 {
3102   const struct elf_link_hash_entry *h1;
3103   const struct elf_link_hash_entry *h2;
3104   bfd_signed_vma vdiff;
3105
3106   h1 = *(const struct elf_link_hash_entry **) arg1;
3107   h2 = *(const struct elf_link_hash_entry **) arg2;
3108   vdiff = h1->root.u.def.value - h2->root.u.def.value;
3109   if (vdiff != 0)
3110     return vdiff > 0 ? 1 : -1;
3111   else
3112     {
3113       long sdiff = h1->root.u.def.section->id - h2->root.u.def.section->id;
3114       if (sdiff != 0)
3115         return sdiff > 0 ? 1 : -1;
3116     }
3117   vdiff = h1->size - h2->size;
3118   return vdiff == 0 ? 0 : vdiff > 0 ? 1 : -1;
3119 }
3120
3121 /* This function is used to adjust offsets into .dynstr for
3122    dynamic symbols.  This is called via elf_link_hash_traverse.  */
3123
3124 static bfd_boolean
3125 elf_adjust_dynstr_offsets (struct elf_link_hash_entry *h, void *data)
3126 {
3127   struct elf_strtab_hash *dynstr = (struct elf_strtab_hash *) data;
3128
3129   if (h->dynindx != -1)
3130     h->dynstr_index = _bfd_elf_strtab_offset (dynstr, h->dynstr_index);
3131   return TRUE;
3132 }
3133
3134 /* Assign string offsets in .dynstr, update all structures referencing
3135    them.  */
3136
3137 static bfd_boolean
3138 elf_finalize_dynstr (bfd *output_bfd, struct bfd_link_info *info)
3139 {
3140   struct elf_link_hash_table *hash_table = elf_hash_table (info);
3141   struct elf_link_local_dynamic_entry *entry;
3142   struct elf_strtab_hash *dynstr = hash_table->dynstr;
3143   bfd *dynobj = hash_table->dynobj;
3144   asection *sdyn;
3145   bfd_size_type size;
3146   const struct elf_backend_data *bed;
3147   bfd_byte *extdyn;
3148
3149   _bfd_elf_strtab_finalize (dynstr);
3150   size = _bfd_elf_strtab_size (dynstr);
3151
3152   bed = get_elf_backend_data (dynobj);
3153   sdyn = bfd_get_linker_section (dynobj, ".dynamic");
3154   BFD_ASSERT (sdyn != NULL);
3155
3156   /* Update all .dynamic entries referencing .dynstr strings.  */
3157   for (extdyn = sdyn->contents;
3158        extdyn < sdyn->contents + sdyn->size;
3159        extdyn += bed->s->sizeof_dyn)
3160     {
3161       Elf_Internal_Dyn dyn;
3162
3163       bed->s->swap_dyn_in (dynobj, extdyn, &dyn);
3164       switch (dyn.d_tag)
3165         {
3166         case DT_STRSZ:
3167           dyn.d_un.d_val = size;
3168           break;
3169         case DT_NEEDED:
3170         case DT_SONAME:
3171         case DT_RPATH:
3172         case DT_RUNPATH:
3173         case DT_FILTER:
3174         case DT_AUXILIARY:
3175         case DT_AUDIT:
3176         case DT_DEPAUDIT:
3177           dyn.d_un.d_val = _bfd_elf_strtab_offset (dynstr, dyn.d_un.d_val);
3178           break;
3179         default:
3180           continue;
3181         }
3182       bed->s->swap_dyn_out (dynobj, &dyn, extdyn);
3183     }
3184
3185   /* Now update local dynamic symbols.  */
3186   for (entry = hash_table->dynlocal; entry ; entry = entry->next)
3187     entry->isym.st_name = _bfd_elf_strtab_offset (dynstr,
3188                                                   entry->isym.st_name);
3189
3190   /* And the rest of dynamic symbols.  */
3191   elf_link_hash_traverse (hash_table, elf_adjust_dynstr_offsets, dynstr);
3192
3193   /* Adjust version definitions.  */
3194   if (elf_tdata (output_bfd)->cverdefs)
3195     {
3196       asection *s;
3197       bfd_byte *p;
3198       bfd_size_type i;
3199       Elf_Internal_Verdef def;
3200       Elf_Internal_Verdaux defaux;
3201
3202       s = bfd_get_linker_section (dynobj, ".gnu.version_d");
3203       p = s->contents;
3204       do
3205         {
3206           _bfd_elf_swap_verdef_in (output_bfd, (Elf_External_Verdef *) p,
3207                                    &def);
3208           p += sizeof (Elf_External_Verdef);
3209           if (def.vd_aux != sizeof (Elf_External_Verdef))
3210             continue;
3211           for (i = 0; i < def.vd_cnt; ++i)
3212             {
3213               _bfd_elf_swap_verdaux_in (output_bfd,
3214                                         (Elf_External_Verdaux *) p, &defaux);
3215               defaux.vda_name = _bfd_elf_strtab_offset (dynstr,
3216                                                         defaux.vda_name);
3217               _bfd_elf_swap_verdaux_out (output_bfd,
3218                                          &defaux, (Elf_External_Verdaux *) p);
3219               p += sizeof (Elf_External_Verdaux);
3220             }
3221         }
3222       while (def.vd_next);
3223     }
3224
3225   /* Adjust version references.  */
3226   if (elf_tdata (output_bfd)->verref)
3227     {
3228       asection *s;
3229       bfd_byte *p;
3230       bfd_size_type i;
3231       Elf_Internal_Verneed need;
3232       Elf_Internal_Vernaux needaux;
3233
3234       s = bfd_get_linker_section (dynobj, ".gnu.version_r");
3235       p = s->contents;
3236       do
3237         {
3238           _bfd_elf_swap_verneed_in (output_bfd, (Elf_External_Verneed *) p,
3239                                     &need);
3240           need.vn_file = _bfd_elf_strtab_offset (dynstr, need.vn_file);
3241           _bfd_elf_swap_verneed_out (output_bfd, &need,
3242                                      (Elf_External_Verneed *) p);
3243           p += sizeof (Elf_External_Verneed);
3244           for (i = 0; i < need.vn_cnt; ++i)
3245             {
3246               _bfd_elf_swap_vernaux_in (output_bfd,
3247                                         (Elf_External_Vernaux *) p, &needaux);
3248               needaux.vna_name = _bfd_elf_strtab_offset (dynstr,
3249                                                          needaux.vna_name);
3250               _bfd_elf_swap_vernaux_out (output_bfd,
3251                                          &needaux,
3252                                          (Elf_External_Vernaux *) p);
3253               p += sizeof (Elf_External_Vernaux);
3254             }
3255         }
3256       while (need.vn_next);
3257     }
3258
3259   return TRUE;
3260 }
3261 \f
3262 /* Return TRUE iff relocations for INPUT are compatible with OUTPUT.
3263    The default is to only match when the INPUT and OUTPUT are exactly
3264    the same target.  */
3265
3266 bfd_boolean
3267 _bfd_elf_default_relocs_compatible (const bfd_target *input,
3268                                     const bfd_target *output)
3269 {
3270   return input == output;
3271 }
3272
3273 /* Return TRUE iff relocations for INPUT are compatible with OUTPUT.
3274    This version is used when different targets for the same architecture
3275    are virtually identical.  */
3276
3277 bfd_boolean
3278 _bfd_elf_relocs_compatible (const bfd_target *input,
3279                             const bfd_target *output)
3280 {
3281   const struct elf_backend_data *obed, *ibed;
3282
3283   if (input == output)
3284     return TRUE;
3285
3286   ibed = xvec_get_elf_backend_data (input);
3287   obed = xvec_get_elf_backend_data (output);
3288
3289   if (ibed->arch != obed->arch)
3290     return FALSE;
3291
3292   /* If both backends are using this function, deem them compatible.  */
3293   return ibed->relocs_compatible == obed->relocs_compatible;
3294 }
3295
3296 /* Make a special call to the linker "notice" function to tell it that
3297    we are about to handle an as-needed lib, or have finished
3298    processing the lib.  */ 
3299
3300 bfd_boolean
3301 _bfd_elf_notice_as_needed (bfd *ibfd,
3302                            struct bfd_link_info *info,
3303                            enum notice_asneeded_action act)
3304 {
3305   return (*info->callbacks->notice) (info, NULL, NULL, ibfd, NULL, act, 0);
3306 }
3307
3308 /* Add symbols from an ELF object file to the linker hash table.  */
3309
3310 static bfd_boolean
3311 elf_link_add_object_symbols (bfd *abfd, struct bfd_link_info *info)
3312 {
3313   Elf_Internal_Ehdr *ehdr;
3314   Elf_Internal_Shdr *hdr;
3315   bfd_size_type symcount;
3316   bfd_size_type extsymcount;
3317   bfd_size_type extsymoff;
3318   struct elf_link_hash_entry **sym_hash;
3319   bfd_boolean dynamic;
3320   Elf_External_Versym *extversym = NULL;
3321   Elf_External_Versym *ever;
3322   struct elf_link_hash_entry *weaks;
3323   struct elf_link_hash_entry **nondeflt_vers = NULL;
3324   bfd_size_type nondeflt_vers_cnt = 0;
3325   Elf_Internal_Sym *isymbuf = NULL;
3326   Elf_Internal_Sym *isym;
3327   Elf_Internal_Sym *isymend;
3328   const struct elf_backend_data *bed;
3329   bfd_boolean add_needed;
3330   struct elf_link_hash_table *htab;
3331   bfd_size_type amt;
3332   void *alloc_mark = NULL;
3333   struct bfd_hash_entry **old_table = NULL;
3334   unsigned int old_size = 0;
3335   unsigned int old_count = 0;
3336   void *old_tab = NULL;
3337   void *old_ent;
3338   struct bfd_link_hash_entry *old_undefs = NULL;
3339   struct bfd_link_hash_entry *old_undefs_tail = NULL;
3340   long old_dynsymcount = 0;
3341   bfd_size_type old_dynstr_size = 0;
3342   size_t tabsize = 0;
3343   asection *s;
3344   bfd_boolean just_syms;
3345
3346   htab = elf_hash_table (info);
3347   bed = get_elf_backend_data (abfd);
3348
3349   if ((abfd->flags & DYNAMIC) == 0)
3350     dynamic = FALSE;
3351   else
3352     {
3353       dynamic = TRUE;
3354
3355       /* You can't use -r against a dynamic object.  Also, there's no
3356          hope of using a dynamic object which does not exactly match
3357          the format of the output file.  */
3358       if (info->relocatable
3359           || !is_elf_hash_table (htab)
3360           || info->output_bfd->xvec != abfd->xvec)
3361         {
3362           if (info->relocatable)
3363             bfd_set_error (bfd_error_invalid_operation);
3364           else
3365             bfd_set_error (bfd_error_wrong_format);
3366           goto error_return;
3367         }
3368     }
3369
3370   ehdr = elf_elfheader (abfd);
3371   if (info->warn_alternate_em
3372       && bed->elf_machine_code != ehdr->e_machine
3373       && ((bed->elf_machine_alt1 != 0
3374            && ehdr->e_machine == bed->elf_machine_alt1)
3375           || (bed->elf_machine_alt2 != 0
3376               && ehdr->e_machine == bed->elf_machine_alt2)))
3377     info->callbacks->einfo
3378       (_("%P: alternate ELF machine code found (%d) in %B, expecting %d\n"),
3379        ehdr->e_machine, abfd, bed->elf_machine_code);
3380
3381   /* As a GNU extension, any input sections which are named
3382      .gnu.warning.SYMBOL are treated as warning symbols for the given
3383      symbol.  This differs from .gnu.warning sections, which generate
3384      warnings when they are included in an output file.  */
3385   /* PR 12761: Also generate this warning when building shared libraries.  */
3386   for (s = abfd->sections; s != NULL; s = s->next)
3387     {
3388       const char *name;
3389
3390       name = bfd_get_section_name (abfd, s);
3391       if (CONST_STRNEQ (name, ".gnu.warning."))
3392         {
3393           char *msg;
3394           bfd_size_type sz;
3395
3396           name += sizeof ".gnu.warning." - 1;
3397
3398           /* If this is a shared object, then look up the symbol
3399              in the hash table.  If it is there, and it is already
3400              been defined, then we will not be using the entry
3401              from this shared object, so we don't need to warn.
3402              FIXME: If we see the definition in a regular object
3403              later on, we will warn, but we shouldn't.  The only
3404              fix is to keep track of what warnings we are supposed
3405              to emit, and then handle them all at the end of the
3406              link.  */
3407           if (dynamic)
3408             {
3409               struct elf_link_hash_entry *h;
3410
3411               h = elf_link_hash_lookup (htab, name, FALSE, FALSE, TRUE);
3412
3413               /* FIXME: What about bfd_link_hash_common?  */
3414               if (h != NULL
3415                   && (h->root.type == bfd_link_hash_defined
3416                       || h->root.type == bfd_link_hash_defweak))
3417                 continue;
3418             }
3419
3420           sz = s->size;
3421           msg = (char *) bfd_alloc (abfd, sz + 1);
3422           if (msg == NULL)
3423             goto error_return;
3424
3425           if (! bfd_get_section_contents (abfd, s, msg, 0, sz))
3426             goto error_return;
3427
3428           msg[sz] = '\0';
3429
3430           if (! (_bfd_generic_link_add_one_symbol
3431                  (info, abfd, name, BSF_WARNING, s, 0, msg,
3432                   FALSE, bed->collect, NULL)))
3433             goto error_return;
3434
3435           if (!info->relocatable && info->executable)
3436             {
3437               /* Clobber the section size so that the warning does
3438                  not get copied into the output file.  */
3439               s->size = 0;
3440
3441               /* Also set SEC_EXCLUDE, so that symbols defined in
3442                  the warning section don't get copied to the output.  */
3443               s->flags |= SEC_EXCLUDE;
3444             }
3445         }
3446     }
3447
3448   just_syms = ((s = abfd->sections) != NULL
3449                && s->sec_info_type == SEC_INFO_TYPE_JUST_SYMS);
3450
3451   add_needed = TRUE;
3452   if (! dynamic)
3453     {
3454       /* If we are creating a shared library, create all the dynamic
3455          sections immediately.  We need to attach them to something,
3456          so we attach them to this BFD, provided it is the right
3457          format and is not from ld --just-symbols.  FIXME: If there
3458          are no input BFD's of the same format as the output, we can't
3459          make a shared library.  */
3460       if (!just_syms
3461           && info->shared
3462           && is_elf_hash_table (htab)
3463           && info->output_bfd->xvec == abfd->xvec
3464           && !htab->dynamic_sections_created)
3465         {
3466           if (! _bfd_elf_link_create_dynamic_sections (abfd, info))
3467             goto error_return;
3468         }
3469     }
3470   else if (!is_elf_hash_table (htab))
3471     goto error_return;
3472   else
3473     {
3474       const char *soname = NULL;
3475       char *audit = NULL;
3476       struct bfd_link_needed_list *rpath = NULL, *runpath = NULL;
3477       int ret;
3478
3479       /* ld --just-symbols and dynamic objects don't mix very well.
3480          ld shouldn't allow it.  */
3481       if (just_syms)
3482         abort ();
3483
3484       /* If this dynamic lib was specified on the command line with
3485          --as-needed in effect, then we don't want to add a DT_NEEDED
3486          tag unless the lib is actually used.  Similary for libs brought
3487          in by another lib's DT_NEEDED.  When --no-add-needed is used
3488          on a dynamic lib, we don't want to add a DT_NEEDED entry for
3489          any dynamic library in DT_NEEDED tags in the dynamic lib at
3490          all.  */
3491       add_needed = (elf_dyn_lib_class (abfd)
3492                     & (DYN_AS_NEEDED | DYN_DT_NEEDED
3493                        | DYN_NO_NEEDED)) == 0;
3494
3495       s = bfd_get_section_by_name (abfd, ".dynamic");
3496       if (s != NULL)
3497         {
3498           bfd_byte *dynbuf;
3499           bfd_byte *extdyn;
3500           unsigned int elfsec;
3501           unsigned long shlink;
3502
3503           if (!bfd_malloc_and_get_section (abfd, s, &dynbuf))
3504             {
3505 error_free_dyn:
3506               free (dynbuf);
3507               goto error_return;
3508             }
3509
3510           elfsec = _bfd_elf_section_from_bfd_section (abfd, s);
3511           if (elfsec == SHN_BAD)
3512             goto error_free_dyn;
3513           shlink = elf_elfsections (abfd)[elfsec]->sh_link;
3514
3515           for (extdyn = dynbuf;
3516                extdyn < dynbuf + s->size;
3517                extdyn += bed->s->sizeof_dyn)
3518             {
3519               Elf_Internal_Dyn dyn;
3520
3521               bed->s->swap_dyn_in (abfd, extdyn, &dyn);
3522               if (dyn.d_tag == DT_SONAME)
3523                 {
3524                   unsigned int tagv = dyn.d_un.d_val;
3525                   soname = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
3526                   if (soname == NULL)
3527                     goto error_free_dyn;
3528                 }
3529               if (dyn.d_tag == DT_NEEDED)
3530                 {
3531                   struct bfd_link_needed_list *n, **pn;
3532                   char *fnm, *anm;
3533                   unsigned int tagv = dyn.d_un.d_val;
3534
3535                   amt = sizeof (struct bfd_link_needed_list);
3536                   n = (struct bfd_link_needed_list *) bfd_alloc (abfd, amt);
3537                   fnm = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
3538                   if (n == NULL || fnm == NULL)
3539                     goto error_free_dyn;
3540                   amt = strlen (fnm) + 1;
3541                   anm = (char *) bfd_alloc (abfd, amt);
3542                   if (anm == NULL)
3543                     goto error_free_dyn;
3544                   memcpy (anm, fnm, amt);
3545                   n->name = anm;
3546                   n->by = abfd;
3547                   n->next = NULL;
3548                   for (pn = &htab->needed; *pn != NULL; pn = &(*pn)->next)
3549                     ;
3550                   *pn = n;
3551                 }
3552               if (dyn.d_tag == DT_RUNPATH)
3553                 {
3554                   struct bfd_link_needed_list *n, **pn;
3555                   char *fnm, *anm;
3556                   unsigned int tagv = dyn.d_un.d_val;
3557
3558                   amt = sizeof (struct bfd_link_needed_list);
3559                   n = (struct bfd_link_needed_list *) bfd_alloc (abfd, amt);
3560                   fnm = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
3561                   if (n == NULL || fnm == NULL)
3562                     goto error_free_dyn;
3563                   amt = strlen (fnm) + 1;
3564                   anm = (char *) bfd_alloc (abfd, amt);
3565                   if (anm == NULL)
3566                     goto error_free_dyn;
3567                   memcpy (anm, fnm, amt);
3568                   n->name = anm;
3569                   n->by = abfd;
3570                   n->next = NULL;
3571                   for (pn = & runpath;
3572                        *pn != NULL;
3573                        pn = &(*pn)->next)
3574                     ;
3575                   *pn = n;
3576                 }
3577               /* Ignore DT_RPATH if we have seen DT_RUNPATH.  */
3578               if (!runpath && dyn.d_tag == DT_RPATH)
3579                 {
3580                   struct bfd_link_needed_list *n, **pn;
3581                   char *fnm, *anm;
3582                   unsigned int tagv = dyn.d_un.d_val;
3583
3584                   amt = sizeof (struct bfd_link_needed_list);
3585                   n = (struct bfd_link_needed_list *) bfd_alloc (abfd, amt);
3586                   fnm = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
3587                   if (n == NULL || fnm == NULL)
3588                     goto error_free_dyn;
3589                   amt = strlen (fnm) + 1;
3590                   anm = (char *) bfd_alloc (abfd, amt);
3591                   if (anm == NULL)
3592                     goto error_free_dyn;
3593                   memcpy (anm, fnm, amt);
3594                   n->name = anm;
3595                   n->by = abfd;
3596                   n->next = NULL;
3597                   for (pn = & rpath;
3598                        *pn != NULL;
3599                        pn = &(*pn)->next)
3600                     ;
3601                   *pn = n;
3602                 }
3603               if (dyn.d_tag == DT_AUDIT)
3604                 {
3605                   unsigned int tagv = dyn.d_un.d_val;
3606                   audit = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
3607                 }
3608             }
3609
3610           free (dynbuf);
3611         }
3612
3613       /* DT_RUNPATH overrides DT_RPATH.  Do _NOT_ bfd_release, as that
3614          frees all more recently bfd_alloc'd blocks as well.  */
3615       if (runpath)
3616         rpath = runpath;
3617
3618       if (rpath)
3619         {
3620           struct bfd_link_needed_list **pn;
3621           for (pn = &htab->runpath; *pn != NULL; pn = &(*pn)->next)
3622             ;
3623           *pn = rpath;
3624         }
3625
3626       /* We do not want to include any of the sections in a dynamic
3627          object in the output file.  We hack by simply clobbering the
3628          list of sections in the BFD.  This could be handled more
3629          cleanly by, say, a new section flag; the existing
3630          SEC_NEVER_LOAD flag is not the one we want, because that one
3631          still implies that the section takes up space in the output
3632          file.  */
3633       bfd_section_list_clear (abfd);
3634
3635       /* Find the name to use in a DT_NEEDED entry that refers to this
3636          object.  If the object has a DT_SONAME entry, we use it.
3637          Otherwise, if the generic linker stuck something in
3638          elf_dt_name, we use that.  Otherwise, we just use the file
3639          name.  */
3640       if (soname == NULL || *soname == '\0')
3641         {
3642           soname = elf_dt_name (abfd);
3643           if (soname == NULL || *soname == '\0')
3644             soname = bfd_get_filename (abfd);
3645         }
3646
3647       /* Save the SONAME because sometimes the linker emulation code
3648          will need to know it.  */
3649       elf_dt_name (abfd) = soname;
3650
3651       ret = elf_add_dt_needed_tag (abfd, info, soname, add_needed);
3652       if (ret < 0)
3653         goto error_return;
3654
3655       /* If we have already included this dynamic object in the
3656          link, just ignore it.  There is no reason to include a
3657          particular dynamic object more than once.  */
3658       if (ret > 0)
3659         return TRUE;
3660
3661       /* Save the DT_AUDIT entry for the linker emulation code. */
3662       elf_dt_audit (abfd) = audit;
3663     }
3664
3665   /* If this is a dynamic object, we always link against the .dynsym
3666      symbol table, not the .symtab symbol table.  The dynamic linker
3667      will only see the .dynsym symbol table, so there is no reason to
3668      look at .symtab for a dynamic object.  */
3669
3670   if (! dynamic || elf_dynsymtab (abfd) == 0)
3671     hdr = &elf_tdata (abfd)->symtab_hdr;
3672   else
3673     hdr = &elf_tdata (abfd)->dynsymtab_hdr;
3674
3675   symcount = hdr->sh_size / bed->s->sizeof_sym;
3676
3677   /* The sh_info field of the symtab header tells us where the
3678      external symbols start.  We don't care about the local symbols at
3679      this point.  */
3680   if (elf_bad_symtab (abfd))
3681     {
3682       extsymcount = symcount;
3683       extsymoff = 0;
3684     }
3685   else
3686     {
3687       extsymcount = symcount - hdr->sh_info;
3688       extsymoff = hdr->sh_info;
3689     }
3690
3691   sym_hash = elf_sym_hashes (abfd);
3692   if (extsymcount != 0)
3693     {
3694       isymbuf = bfd_elf_get_elf_syms (abfd, hdr, extsymcount, extsymoff,
3695                                       NULL, NULL, NULL);
3696       if (isymbuf == NULL)
3697         goto error_return;
3698
3699       if (sym_hash == NULL)
3700         {
3701           /* We store a pointer to the hash table entry for each
3702              external symbol.  */
3703           amt = extsymcount * sizeof (struct elf_link_hash_entry *);
3704           sym_hash = (struct elf_link_hash_entry **) bfd_zalloc (abfd, amt);
3705           if (sym_hash == NULL)
3706             goto error_free_sym;
3707           elf_sym_hashes (abfd) = sym_hash;
3708         }
3709     }
3710
3711   if (dynamic)
3712     {
3713       /* Read in any version definitions.  */
3714       if (!_bfd_elf_slurp_version_tables (abfd,
3715                                           info->default_imported_symver))
3716         goto error_free_sym;
3717
3718       /* Read in the symbol versions, but don't bother to convert them
3719          to internal format.  */
3720       if (elf_dynversym (abfd) != 0)
3721         {
3722           Elf_Internal_Shdr *versymhdr;
3723
3724           versymhdr = &elf_tdata (abfd)->dynversym_hdr;
3725           extversym = (Elf_External_Versym *) bfd_malloc (versymhdr->sh_size);
3726           if (extversym == NULL)
3727             goto error_free_sym;
3728           amt = versymhdr->sh_size;
3729           if (bfd_seek (abfd, versymhdr->sh_offset, SEEK_SET) != 0
3730               || bfd_bread (extversym, amt, abfd) != amt)
3731             goto error_free_vers;
3732         }
3733     }
3734
3735   /* If we are loading an as-needed shared lib, save the symbol table
3736      state before we start adding symbols.  If the lib turns out
3737      to be unneeded, restore the state.  */
3738   if ((elf_dyn_lib_class (abfd) & DYN_AS_NEEDED) != 0)
3739     {
3740       unsigned int i;
3741       size_t entsize;
3742
3743       for (entsize = 0, i = 0; i < htab->root.table.size; i++)
3744         {
3745           struct bfd_hash_entry *p;
3746           struct elf_link_hash_entry *h;
3747
3748           for (p = htab->root.table.table[i]; p != NULL; p = p->next)
3749             {
3750               h = (struct elf_link_hash_entry *) p;
3751               entsize += htab->root.table.entsize;
3752               if (h->root.type == bfd_link_hash_warning)
3753                 entsize += htab->root.table.entsize;
3754             }
3755         }
3756
3757       tabsize = htab->root.table.size * sizeof (struct bfd_hash_entry *);
3758       old_tab = bfd_malloc (tabsize + entsize);
3759       if (old_tab == NULL)
3760         goto error_free_vers;
3761
3762       /* Remember the current objalloc pointer, so that all mem for
3763          symbols added can later be reclaimed.  */
3764       alloc_mark = bfd_hash_allocate (&htab->root.table, 1);
3765       if (alloc_mark == NULL)
3766         goto error_free_vers;
3767
3768       /* Make a special call to the linker "notice" function to
3769          tell it that we are about to handle an as-needed lib.  */
3770       if (!(*bed->notice_as_needed) (abfd, info, notice_as_needed))
3771         goto error_free_vers;
3772
3773       /* Clone the symbol table.  Remember some pointers into the
3774          symbol table, and dynamic symbol count.  */
3775       old_ent = (char *) old_tab + tabsize;
3776       memcpy (old_tab, htab->root.table.table, tabsize);
3777       old_undefs = htab->root.undefs;
3778       old_undefs_tail = htab->root.undefs_tail;
3779       old_table = htab->root.table.table;
3780       old_size = htab->root.table.size;
3781       old_count = htab->root.table.count;
3782       old_dynsymcount = htab->dynsymcount;
3783       old_dynstr_size = _bfd_elf_strtab_size (htab->dynstr);
3784
3785       for (i = 0; i < htab->root.table.size; i++)
3786         {
3787           struct bfd_hash_entry *p;
3788           struct elf_link_hash_entry *h;
3789
3790           for (p = htab->root.table.table[i]; p != NULL; p = p->next)
3791             {
3792               memcpy (old_ent, p, htab->root.table.entsize);
3793               old_ent = (char *) old_ent + htab->root.table.entsize;
3794               h = (struct elf_link_hash_entry *) p;
3795               if (h->root.type == bfd_link_hash_warning)
3796                 {
3797                   memcpy (old_ent, h->root.u.i.link, htab->root.table.entsize);
3798                   old_ent = (char *) old_ent + htab->root.table.entsize;
3799                 }
3800             }
3801         }
3802     }
3803
3804   weaks = NULL;
3805   ever = extversym != NULL ? extversym + extsymoff : NULL;
3806   for (isym = isymbuf, isymend = isymbuf + extsymcount;
3807        isym < isymend;
3808        isym++, sym_hash++, ever = (ever != NULL ? ever + 1 : NULL))
3809     {
3810       int bind;
3811       bfd_vma value;
3812       asection *sec, *new_sec;
3813       flagword flags;
3814       const char *name;
3815       struct elf_link_hash_entry *h;
3816       struct elf_link_hash_entry *hi;
3817       bfd_boolean definition;
3818       bfd_boolean size_change_ok;
3819       bfd_boolean type_change_ok;
3820       bfd_boolean new_weakdef;
3821       bfd_boolean new_weak;
3822       bfd_boolean old_weak;
3823       bfd_boolean override;
3824       bfd_boolean common;
3825       unsigned int old_alignment;
3826       bfd *old_bfd;
3827
3828       override = FALSE;
3829
3830       flags = BSF_NO_FLAGS;
3831       sec = NULL;
3832       value = isym->st_value;
3833       common = bed->common_definition (isym);
3834
3835       bind = ELF_ST_BIND (isym->st_info);
3836       switch (bind)
3837         {
3838         case STB_LOCAL:
3839           /* This should be impossible, since ELF requires that all
3840              global symbols follow all local symbols, and that sh_info
3841              point to the first global symbol.  Unfortunately, Irix 5
3842              screws this up.  */
3843           continue;
3844
3845         case STB_GLOBAL:
3846           if (isym->st_shndx != SHN_UNDEF && !common)
3847             flags = BSF_GLOBAL;
3848           break;
3849
3850         case STB_WEAK:
3851           flags = BSF_WEAK;
3852           break;
3853
3854         case STB_GNU_UNIQUE:
3855           flags = BSF_GNU_UNIQUE;
3856           break;
3857
3858         default:
3859           /* Leave it up to the processor backend.  */
3860           break;
3861         }
3862
3863       if (isym->st_shndx == SHN_UNDEF)
3864         sec = bfd_und_section_ptr;
3865       else if (isym->st_shndx == SHN_ABS)
3866         sec = bfd_abs_section_ptr;
3867       else if (isym->st_shndx == SHN_COMMON)
3868         {
3869           sec = bfd_com_section_ptr;
3870           /* What ELF calls the size we call the value.  What ELF
3871              calls the value we call the alignment.  */
3872           value = isym->st_size;
3873         }
3874       else
3875         {
3876           sec = bfd_section_from_elf_index (abfd, isym->st_shndx);
3877           if (sec == NULL)
3878             sec = bfd_abs_section_ptr;
3879           else if (discarded_section (sec))
3880             {
3881               /* Symbols from discarded section are undefined.  We keep
3882                  its visibility.  */
3883               sec = bfd_und_section_ptr;
3884               isym->st_shndx = SHN_UNDEF;
3885             }
3886           else if ((abfd->flags & (EXEC_P | DYNAMIC)) != 0)
3887             value -= sec->vma;
3888         }
3889
3890       name = bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
3891                                               isym->st_name);
3892       if (name == NULL)
3893         goto error_free_vers;
3894
3895       if (isym->st_shndx == SHN_COMMON
3896           && (abfd->flags & BFD_PLUGIN) != 0)
3897         {
3898           asection *xc = bfd_get_section_by_name (abfd, "COMMON");
3899
3900           if (xc == NULL)
3901             {
3902               flagword sflags = (SEC_ALLOC | SEC_IS_COMMON | SEC_KEEP
3903                                  | SEC_EXCLUDE);
3904               xc = bfd_make_section_with_flags (abfd, "COMMON", sflags);
3905               if (xc == NULL)
3906                 goto error_free_vers;
3907             }
3908           sec = xc;
3909         }
3910       else if (isym->st_shndx == SHN_COMMON
3911                && ELF_ST_TYPE (isym->st_info) == STT_TLS
3912                && !info->relocatable)
3913         {
3914           asection *tcomm = bfd_get_section_by_name (abfd, ".tcommon");
3915
3916           if (tcomm == NULL)
3917             {
3918               flagword sflags = (SEC_ALLOC | SEC_THREAD_LOCAL | SEC_IS_COMMON
3919                                  | SEC_LINKER_CREATED);
3920               tcomm = bfd_make_section_with_flags (abfd, ".tcommon", sflags);
3921               if (tcomm == NULL)
3922                 goto error_free_vers;
3923             }
3924           sec = tcomm;
3925         }
3926       else if (bed->elf_add_symbol_hook)
3927         {
3928           if (! (*bed->elf_add_symbol_hook) (abfd, info, isym, &name, &flags,
3929                                              &sec, &value))
3930             goto error_free_vers;
3931
3932           /* The hook function sets the name to NULL if this symbol
3933              should be skipped for some reason.  */
3934           if (name == NULL)
3935             continue;
3936         }
3937
3938       /* Sanity check that all possibilities were handled.  */
3939       if (sec == NULL)
3940         {
3941           bfd_set_error (bfd_error_bad_value);
3942           goto error_free_vers;
3943         }
3944
3945       /* Silently discard TLS symbols from --just-syms.  There's
3946          no way to combine a static TLS block with a new TLS block
3947          for this executable.  */
3948       if (ELF_ST_TYPE (isym->st_info) == STT_TLS
3949           && sec->sec_info_type == SEC_INFO_TYPE_JUST_SYMS)
3950         continue;
3951
3952       if (bfd_is_und_section (sec)
3953           || bfd_is_com_section (sec))
3954         definition = FALSE;
3955       else
3956         definition = TRUE;
3957
3958       size_change_ok = FALSE;
3959       type_change_ok = bed->type_change_ok;
3960       old_weak = FALSE;
3961       old_alignment = 0;
3962       old_bfd = NULL;
3963       new_sec = sec;
3964
3965       if (is_elf_hash_table (htab))
3966         {
3967           Elf_Internal_Versym iver;
3968           unsigned int vernum = 0;
3969           bfd_boolean skip;
3970
3971           if (ever == NULL)
3972             {
3973               if (info->default_imported_symver)
3974                 /* Use the default symbol version created earlier.  */
3975                 iver.vs_vers = elf_tdata (abfd)->cverdefs;
3976               else
3977                 iver.vs_vers = 0;
3978             }
3979           else
3980             _bfd_elf_swap_versym_in (abfd, ever, &iver);
3981
3982           vernum = iver.vs_vers & VERSYM_VERSION;
3983
3984           /* If this is a hidden symbol, or if it is not version
3985              1, we append the version name to the symbol name.
3986              However, we do not modify a non-hidden absolute symbol
3987              if it is not a function, because it might be the version
3988              symbol itself.  FIXME: What if it isn't?  */
3989           if ((iver.vs_vers & VERSYM_HIDDEN) != 0
3990               || (vernum > 1
3991                   && (!bfd_is_abs_section (sec)
3992                       || bed->is_function_type (ELF_ST_TYPE (isym->st_info)))))
3993             {
3994               const char *verstr;
3995               size_t namelen, verlen, newlen;
3996               char *newname, *p;
3997
3998               if (isym->st_shndx != SHN_UNDEF)
3999                 {
4000                   if (vernum > elf_tdata (abfd)->cverdefs)
4001                     verstr = NULL;
4002                   else if (vernum > 1)
4003                     verstr =
4004                       elf_tdata (abfd)->verdef[vernum - 1].vd_nodename;
4005                   else
4006                     verstr = "";
4007
4008                   if (verstr == NULL)
4009                     {
4010                       (*_bfd_error_handler)
4011                         (_("%B: %s: invalid version %u (max %d)"),
4012                          abfd, name, vernum,
4013                          elf_tdata (abfd)->cverdefs);
4014                       bfd_set_error (bfd_error_bad_value);
4015                       goto error_free_vers;
4016                     }
4017                 }
4018               else
4019                 {
4020                   /* We cannot simply test for the number of
4021                      entries in the VERNEED section since the
4022                      numbers for the needed versions do not start
4023                      at 0.  */
4024                   Elf_Internal_Verneed *t;
4025
4026                   verstr = NULL;
4027                   for (t = elf_tdata (abfd)->verref;
4028                        t != NULL;
4029                        t = t->vn_nextref)
4030                     {
4031                       Elf_Internal_Vernaux *a;
4032
4033                       for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
4034                         {
4035                           if (a->vna_other == vernum)
4036                             {
4037                               verstr = a->vna_nodename;
4038                               break;
4039                             }
4040                         }
4041                       if (a != NULL)
4042                         break;
4043                     }
4044                   if (verstr == NULL)
4045                     {
4046                       (*_bfd_error_handler)
4047                         (_("%B: %s: invalid needed version %d"),
4048                          abfd, name, vernum);
4049                       bfd_set_error (bfd_error_bad_value);
4050                       goto error_free_vers;
4051                     }
4052                 }
4053
4054               namelen = strlen (name);
4055               verlen = strlen (verstr);
4056               newlen = namelen + verlen + 2;
4057               if ((iver.vs_vers & VERSYM_HIDDEN) == 0
4058                   && isym->st_shndx != SHN_UNDEF)
4059                 ++newlen;
4060
4061               newname = (char *) bfd_hash_allocate (&htab->root.table, newlen);
4062               if (newname == NULL)
4063                 goto error_free_vers;
4064               memcpy (newname, name, namelen);
4065               p = newname + namelen;
4066               *p++ = ELF_VER_CHR;
4067               /* If this is a defined non-hidden version symbol,
4068                  we add another @ to the name.  This indicates the
4069                  default version of the symbol.  */
4070               if ((iver.vs_vers & VERSYM_HIDDEN) == 0
4071                   && isym->st_shndx != SHN_UNDEF)
4072                 *p++ = ELF_VER_CHR;
4073               memcpy (p, verstr, verlen + 1);
4074
4075               name = newname;
4076             }
4077
4078           /* If this symbol has default visibility and the user has
4079              requested we not re-export it, then mark it as hidden.  */
4080           if (definition
4081               && !dynamic
4082               && (abfd->no_export
4083                   || (abfd->my_archive && abfd->my_archive->no_export))
4084               && ELF_ST_VISIBILITY (isym->st_other) != STV_INTERNAL)
4085             isym->st_other = (STV_HIDDEN
4086                               | (isym->st_other & ~ELF_ST_VISIBILITY (-1)));
4087
4088           if (!_bfd_elf_merge_symbol (abfd, info, name, isym, &sec, &value,
4089                                       sym_hash, &old_bfd, &old_weak,
4090                                       &old_alignment, &skip, &override,
4091                                       &type_change_ok, &size_change_ok))
4092             goto error_free_vers;
4093
4094           if (skip)
4095             continue;
4096
4097           if (override)
4098             definition = FALSE;
4099
4100           h = *sym_hash;
4101           while (h->root.type == bfd_link_hash_indirect
4102                  || h->root.type == bfd_link_hash_warning)
4103             h = (struct elf_link_hash_entry *) h->root.u.i.link;
4104
4105           if (elf_tdata (abfd)->verdef != NULL
4106               && vernum > 1
4107               && definition)
4108             h->verinfo.verdef = &elf_tdata (abfd)->verdef[vernum - 1];
4109         }
4110
4111       if (! (_bfd_generic_link_add_one_symbol
4112              (info, abfd, name, flags, sec, value, NULL, FALSE, bed->collect,
4113               (struct bfd_link_hash_entry **) sym_hash)))
4114         goto error_free_vers;
4115
4116       h = *sym_hash;
4117       /* We need to make sure that indirect symbol dynamic flags are
4118          updated.  */
4119       hi = h;
4120       while (h->root.type == bfd_link_hash_indirect
4121              || h->root.type == bfd_link_hash_warning)
4122         h = (struct elf_link_hash_entry *) h->root.u.i.link;
4123
4124       *sym_hash = h;
4125
4126       new_weak = (flags & BSF_WEAK) != 0;
4127       new_weakdef = FALSE;
4128       if (dynamic
4129           && definition
4130           && new_weak
4131           && !bed->is_function_type (ELF_ST_TYPE (isym->st_info))
4132           && is_elf_hash_table (htab)
4133           && h->u.weakdef == NULL)
4134         {
4135           /* Keep a list of all weak defined non function symbols from
4136              a dynamic object, using the weakdef field.  Later in this
4137              function we will set the weakdef field to the correct
4138              value.  We only put non-function symbols from dynamic
4139              objects on this list, because that happens to be the only
4140              time we need to know the normal symbol corresponding to a
4141              weak symbol, and the information is time consuming to
4142              figure out.  If the weakdef field is not already NULL,
4143              then this symbol was already defined by some previous
4144              dynamic object, and we will be using that previous
4145              definition anyhow.  */
4146
4147           h->u.weakdef = weaks;
4148           weaks = h;
4149           new_weakdef = TRUE;
4150         }
4151
4152       /* Set the alignment of a common symbol.  */
4153       if ((common || bfd_is_com_section (sec))
4154           && h->root.type == bfd_link_hash_common)
4155         {
4156           unsigned int align;
4157
4158           if (common)
4159             align = bfd_log2 (isym->st_value);
4160           else
4161             {
4162               /* The new symbol is a common symbol in a shared object.
4163                  We need to get the alignment from the section.  */
4164               align = new_sec->alignment_power;
4165             }
4166           if (align > old_alignment)
4167             h->root.u.c.p->alignment_power = align;
4168           else
4169             h->root.u.c.p->alignment_power = old_alignment;
4170         }
4171
4172       if (is_elf_hash_table (htab))
4173         {
4174           /* Set a flag in the hash table entry indicating the type of
4175              reference or definition we just found.  A dynamic symbol
4176              is one which is referenced or defined by both a regular
4177              object and a shared object.  */
4178           bfd_boolean dynsym = FALSE;
4179
4180           /* Plugin symbols aren't normal.  Don't set def_regular or
4181              ref_regular for them, or make them dynamic.  */
4182           if ((abfd->flags & BFD_PLUGIN) != 0)
4183             ;
4184           else if (! dynamic)
4185             {
4186               if (! definition)
4187                 {
4188                   h->ref_regular = 1;
4189                   if (bind != STB_WEAK)
4190                     h->ref_regular_nonweak = 1;
4191                 }
4192               else
4193                 {
4194                   h->def_regular = 1;
4195                   if (h->def_dynamic)
4196                     {
4197                       h->def_dynamic = 0;
4198                       h->ref_dynamic = 1;
4199                     }
4200                 }
4201
4202               /* If the indirect symbol has been forced local, don't
4203                  make the real symbol dynamic.  */
4204               if ((h == hi || !hi->forced_local)
4205                   && (! info->executable
4206                       || h->def_dynamic
4207                       || h->ref_dynamic))
4208                 dynsym = TRUE;
4209             }
4210           else
4211             {
4212               if (! definition)
4213                 {
4214                   h->ref_dynamic = 1;
4215                   hi->ref_dynamic = 1;
4216                 }
4217               else
4218                 {
4219                   h->def_dynamic = 1;
4220                   hi->def_dynamic = 1;
4221                 }
4222
4223               /* If the indirect symbol has been forced local, don't
4224                  make the real symbol dynamic.  */
4225               if ((h == hi || !hi->forced_local)
4226                   && (h->def_regular
4227                       || h->ref_regular
4228                       || (h->u.weakdef != NULL
4229                           && ! new_weakdef
4230                           && h->u.weakdef->dynindx != -1)))
4231                 dynsym = TRUE;
4232             }
4233
4234           /* Check to see if we need to add an indirect symbol for
4235              the default name.  */
4236           if (definition
4237               || (!override && h->root.type == bfd_link_hash_common))
4238             if (!_bfd_elf_add_default_symbol (abfd, info, h, name, isym,
4239                                               sec, value, &old_bfd, &dynsym))
4240               goto error_free_vers;
4241
4242           /* Check the alignment when a common symbol is involved. This
4243              can change when a common symbol is overridden by a normal
4244              definition or a common symbol is ignored due to the old
4245              normal definition. We need to make sure the maximum
4246              alignment is maintained.  */
4247           if ((old_alignment || common)
4248               && h->root.type != bfd_link_hash_common)
4249             {
4250               unsigned int common_align;
4251               unsigned int normal_align;
4252               unsigned int symbol_align;
4253               bfd *normal_bfd;
4254               bfd *common_bfd;
4255
4256               BFD_ASSERT (h->root.type == bfd_link_hash_defined
4257                           || h->root.type == bfd_link_hash_defweak);
4258
4259               symbol_align = ffs (h->root.u.def.value) - 1;
4260               if (h->root.u.def.section->owner != NULL
4261                   && (h->root.u.def.section->owner->flags & DYNAMIC) == 0)
4262                 {
4263                   normal_align = h->root.u.def.section->alignment_power;
4264                   if (normal_align > symbol_align)
4265                     normal_align = symbol_align;
4266                 }
4267               else
4268                 normal_align = symbol_align;
4269
4270               if (old_alignment)
4271                 {
4272                   common_align = old_alignment;
4273                   common_bfd = old_bfd;
4274                   normal_bfd = abfd;
4275                 }
4276               else
4277                 {
4278                   common_align = bfd_log2 (isym->st_value);
4279                   common_bfd = abfd;
4280                   normal_bfd = old_bfd;
4281                 }
4282
4283               if (normal_align < common_align)
4284                 {
4285                   /* PR binutils/2735 */
4286                   if (normal_bfd == NULL)
4287                     (*_bfd_error_handler)
4288                       (_("Warning: alignment %u of common symbol `%s' in %B is"
4289                          " greater than the alignment (%u) of its section %A"),
4290                        common_bfd, h->root.u.def.section,
4291                        1 << common_align, name, 1 << normal_align);
4292                   else
4293                     (*_bfd_error_handler)
4294                       (_("Warning: alignment %u of symbol `%s' in %B"
4295                          " is smaller than %u in %B"),
4296                        normal_bfd, common_bfd,
4297                        1 << normal_align, name, 1 << common_align);
4298                 }
4299             }
4300
4301           /* Remember the symbol size if it isn't undefined.  */
4302           if (isym->st_size != 0
4303               && isym->st_shndx != SHN_UNDEF
4304               && (definition || h->size == 0))
4305             {
4306               if (h->size != 0
4307                   && h->size != isym->st_size
4308                   && ! size_change_ok)
4309                 (*_bfd_error_handler)
4310                   (_("Warning: size of symbol `%s' changed"
4311                      " from %lu in %B to %lu in %B"),
4312                    old_bfd, abfd,
4313                    name, (unsigned long) h->size,
4314                    (unsigned long) isym->st_size);
4315
4316               h->size = isym->st_size;
4317             }
4318
4319           /* If this is a common symbol, then we always want H->SIZE
4320              to be the size of the common symbol.  The code just above
4321              won't fix the size if a common symbol becomes larger.  We
4322              don't warn about a size change here, because that is
4323              covered by --warn-common.  Allow changes between different
4324              function types.  */
4325           if (h->root.type == bfd_link_hash_common)
4326             h->size = h->root.u.c.size;
4327
4328           if (ELF_ST_TYPE (isym->st_info) != STT_NOTYPE
4329               && ((definition && !new_weak)
4330                   || (old_weak && h->root.type == bfd_link_hash_common)
4331                   || h->type == STT_NOTYPE))
4332             {
4333               unsigned int type = ELF_ST_TYPE (isym->st_info);
4334
4335               /* Turn an IFUNC symbol from a DSO into a normal FUNC
4336                  symbol.  */
4337               if (type == STT_GNU_IFUNC
4338                   && (abfd->flags & DYNAMIC) != 0)
4339                 type = STT_FUNC;
4340
4341               if (h->type != type)
4342                 {
4343                   if (h->type != STT_NOTYPE && ! type_change_ok)
4344                     (*_bfd_error_handler)
4345                       (_("Warning: type of symbol `%s' changed"
4346                          " from %d to %d in %B"),
4347                        abfd, name, h->type, type);
4348
4349                   h->type = type;
4350                 }
4351             }
4352
4353           /* Merge st_other field.  */
4354           elf_merge_st_other (abfd, h, isym, definition, dynamic);
4355
4356           /* We don't want to make debug symbol dynamic.  */
4357           if (definition && (sec->flags & SEC_DEBUGGING) && !info->relocatable)
4358             dynsym = FALSE;
4359
4360           /* Nor should we make plugin symbols dynamic.  */
4361           if ((abfd->flags & BFD_PLUGIN) != 0)
4362             dynsym = FALSE;
4363
4364           if (definition)
4365             {
4366               h->target_internal = isym->st_target_internal;
4367               h->unique_global = (flags & BSF_GNU_UNIQUE) != 0;
4368             }
4369
4370           if (definition && !dynamic)
4371             {
4372               char *p = strchr (name, ELF_VER_CHR);
4373               if (p != NULL && p[1] != ELF_VER_CHR)
4374                 {
4375                   /* Queue non-default versions so that .symver x, x@FOO
4376                      aliases can be checked.  */
4377                   if (!nondeflt_vers)
4378                     {
4379                       amt = ((isymend - isym + 1)
4380                              * sizeof (struct elf_link_hash_entry *));
4381                       nondeflt_vers =
4382                           (struct elf_link_hash_entry **) bfd_malloc (amt);
4383                       if (!nondeflt_vers)
4384                         goto error_free_vers;
4385                     }
4386                   nondeflt_vers[nondeflt_vers_cnt++] = h;
4387                 }
4388             }
4389
4390           if (dynsym && h->dynindx == -1)
4391             {
4392               if (! bfd_elf_link_record_dynamic_symbol (info, h))
4393                 goto error_free_vers;
4394               if (h->u.weakdef != NULL
4395                   && ! new_weakdef
4396                   && h->u.weakdef->dynindx == -1)
4397                 {
4398                   if (!bfd_elf_link_record_dynamic_symbol (info, h->u.weakdef))
4399                     goto error_free_vers;
4400                 }
4401             }
4402           else if (dynsym && h->dynindx != -1)
4403             /* If the symbol already has a dynamic index, but
4404                visibility says it should not be visible, turn it into
4405                a local symbol.  */
4406             switch (ELF_ST_VISIBILITY (h->other))
4407               {
4408               case STV_INTERNAL:
4409               case STV_HIDDEN:
4410                 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
4411                 dynsym = FALSE;
4412                 break;
4413               }
4414
4415           /* Don't add DT_NEEDED for references from the dummy bfd.  */
4416           if (!add_needed
4417               && definition
4418               && ((dynsym
4419                    && h->ref_regular_nonweak
4420                    && (old_bfd == NULL
4421                        || (old_bfd->flags & BFD_PLUGIN) == 0))
4422                   || (h->ref_dynamic_nonweak
4423                       && (elf_dyn_lib_class (abfd) & DYN_AS_NEEDED) != 0
4424                       && !on_needed_list (elf_dt_name (abfd), htab->needed))))
4425             {
4426               int ret;
4427               const char *soname = elf_dt_name (abfd);
4428
4429               info->callbacks->minfo ("%!", soname, old_bfd,
4430                                       h->root.root.string);
4431
4432               /* A symbol from a library loaded via DT_NEEDED of some
4433                  other library is referenced by a regular object.
4434                  Add a DT_NEEDED entry for it.  Issue an error if
4435                  --no-add-needed is used and the reference was not
4436                  a weak one.  */
4437               if (old_bfd != NULL
4438                   && (elf_dyn_lib_class (abfd) & DYN_NO_NEEDED) != 0)
4439                 {
4440                   (*_bfd_error_handler)
4441                     (_("%B: undefined reference to symbol '%s'"),
4442                      old_bfd, name);
4443                   bfd_set_error (bfd_error_missing_dso);
4444                   goto error_free_vers;
4445                 }
4446
4447               elf_dyn_lib_class (abfd) = (enum dynamic_lib_link_class)
4448                   (elf_dyn_lib_class (abfd) & ~DYN_AS_NEEDED);
4449
4450               add_needed = TRUE;
4451               ret = elf_add_dt_needed_tag (abfd, info, soname, add_needed);
4452               if (ret < 0)
4453                 goto error_free_vers;
4454
4455               BFD_ASSERT (ret == 0);
4456             }
4457         }
4458     }
4459
4460   if (extversym != NULL)
4461     {
4462       free (extversym);
4463       extversym = NULL;
4464     }
4465
4466   if (isymbuf != NULL)
4467     {
4468       free (isymbuf);
4469       isymbuf = NULL;
4470     }
4471
4472   if ((elf_dyn_lib_class (abfd) & DYN_AS_NEEDED) != 0)
4473     {
4474       unsigned int i;
4475
4476       /* Restore the symbol table.  */
4477       old_ent = (char *) old_tab + tabsize;
4478       memset (elf_sym_hashes (abfd), 0,
4479               extsymcount * sizeof (struct elf_link_hash_entry *));
4480       htab->root.table.table = old_table;
4481       htab->root.table.size = old_size;
4482       htab->root.table.count = old_count;
4483       memcpy (htab->root.table.table, old_tab, tabsize);
4484       htab->root.undefs = old_undefs;
4485       htab->root.undefs_tail = old_undefs_tail;
4486       _bfd_elf_strtab_restore_size (htab->dynstr, old_dynstr_size);
4487       for (i = 0; i < htab->root.table.size; i++)
4488         {
4489           struct bfd_hash_entry *p;
4490           struct elf_link_hash_entry *h;
4491           bfd_size_type size;
4492           unsigned int alignment_power;
4493
4494           for (p = htab->root.table.table[i]; p != NULL; p = p->next)
4495             {
4496               h = (struct elf_link_hash_entry *) p;
4497               if (h->root.type == bfd_link_hash_warning)
4498                 h = (struct elf_link_hash_entry *) h->root.u.i.link;
4499               if (h->dynindx >= old_dynsymcount
4500                   && h->dynstr_index < old_dynstr_size)
4501                 _bfd_elf_strtab_delref (htab->dynstr, h->dynstr_index);
4502
4503               /* Preserve the maximum alignment and size for common
4504                  symbols even if this dynamic lib isn't on DT_NEEDED
4505                  since it can still be loaded at run time by another
4506                  dynamic lib.  */
4507               if (h->root.type == bfd_link_hash_common)
4508                 {
4509                   size = h->root.u.c.size;
4510                   alignment_power = h->root.u.c.p->alignment_power;
4511                 }
4512               else
4513                 {
4514                   size = 0;
4515                   alignment_power = 0;
4516                 }
4517               memcpy (p, old_ent, htab->root.table.entsize);
4518               old_ent = (char *) old_ent + htab->root.table.entsize;
4519               h = (struct elf_link_hash_entry *) p;
4520               if (h->root.type == bfd_link_hash_warning)
4521                 {
4522                   memcpy (h->root.u.i.link, old_ent, htab->root.table.entsize);
4523                   old_ent = (char *) old_ent + htab->root.table.entsize;
4524                   h = (struct elf_link_hash_entry *) h->root.u.i.link;
4525                 }
4526               if (h->root.type == bfd_link_hash_common)
4527                 {
4528                   if (size > h->root.u.c.size)
4529                     h->root.u.c.size = size;
4530                   if (alignment_power > h->root.u.c.p->alignment_power)
4531                     h->root.u.c.p->alignment_power = alignment_power;
4532                 }
4533             }
4534         }
4535
4536       /* Make a special call to the linker "notice" function to
4537          tell it that symbols added for crefs may need to be removed.  */
4538       if (!(*bed->notice_as_needed) (abfd, info, notice_not_needed))
4539         goto error_free_vers;
4540
4541       free (old_tab);
4542       objalloc_free_block ((struct objalloc *) htab->root.table.memory,
4543                            alloc_mark);
4544       if (nondeflt_vers != NULL)
4545         free (nondeflt_vers);
4546       return TRUE;
4547     }
4548
4549   if (old_tab != NULL)
4550     {
4551       if (!(*bed->notice_as_needed) (abfd, info, notice_needed))
4552         goto error_free_vers;
4553       free (old_tab);
4554       old_tab = NULL;
4555     }
4556
4557   /* Now that all the symbols from this input file are created, handle
4558      .symver foo, foo@BAR such that any relocs against foo become foo@BAR.  */
4559   if (nondeflt_vers != NULL)
4560     {
4561       bfd_size_type cnt, symidx;
4562
4563       for (cnt = 0; cnt < nondeflt_vers_cnt; ++cnt)
4564         {
4565           struct elf_link_hash_entry *h = nondeflt_vers[cnt], *hi;
4566           char *shortname, *p;
4567
4568           p = strchr (h->root.root.string, ELF_VER_CHR);
4569           if (p == NULL
4570               || (h->root.type != bfd_link_hash_defined
4571                   && h->root.type != bfd_link_hash_defweak))
4572             continue;
4573
4574           amt = p - h->root.root.string;
4575           shortname = (char *) bfd_malloc (amt + 1);
4576           if (!shortname)
4577             goto error_free_vers;
4578           memcpy (shortname, h->root.root.string, amt);
4579           shortname[amt] = '\0';
4580
4581           hi = (struct elf_link_hash_entry *)
4582                bfd_link_hash_lookup (&htab->root, shortname,
4583                                      FALSE, FALSE, FALSE);
4584           if (hi != NULL
4585               && hi->root.type == h->root.type
4586               && hi->root.u.def.value == h->root.u.def.value
4587               && hi->root.u.def.section == h->root.u.def.section)
4588             {
4589               (*bed->elf_backend_hide_symbol) (info, hi, TRUE);
4590               hi->root.type = bfd_link_hash_indirect;
4591               hi->root.u.i.link = (struct bfd_link_hash_entry *) h;
4592               (*bed->elf_backend_copy_indirect_symbol) (info, h, hi);
4593               sym_hash = elf_sym_hashes (abfd);
4594               if (sym_hash)
4595                 for (symidx = 0; symidx < extsymcount; ++symidx)
4596                   if (sym_hash[symidx] == hi)
4597                     {
4598                       sym_hash[symidx] = h;
4599                       break;
4600                     }
4601             }
4602           free (shortname);
4603         }
4604       free (nondeflt_vers);
4605       nondeflt_vers = NULL;
4606     }
4607
4608   /* Now set the weakdefs field correctly for all the weak defined
4609      symbols we found.  The only way to do this is to search all the
4610      symbols.  Since we only need the information for non functions in
4611      dynamic objects, that's the only time we actually put anything on
4612      the list WEAKS.  We need this information so that if a regular
4613      object refers to a symbol defined weakly in a dynamic object, the
4614      real symbol in the dynamic object is also put in the dynamic
4615      symbols; we also must arrange for both symbols to point to the
4616      same memory location.  We could handle the general case of symbol
4617      aliasing, but a general symbol alias can only be generated in
4618      assembler code, handling it correctly would be very time
4619      consuming, and other ELF linkers don't handle general aliasing
4620      either.  */
4621   if (weaks != NULL)
4622     {
4623       struct elf_link_hash_entry **hpp;
4624       struct elf_link_hash_entry **hppend;
4625       struct elf_link_hash_entry **sorted_sym_hash;
4626       struct elf_link_hash_entry *h;
4627       size_t sym_count;
4628
4629       /* Since we have to search the whole symbol list for each weak
4630          defined symbol, search time for N weak defined symbols will be
4631          O(N^2). Binary search will cut it down to O(NlogN).  */
4632       amt = extsymcount * sizeof (struct elf_link_hash_entry *);
4633       sorted_sym_hash = (struct elf_link_hash_entry **) bfd_malloc (amt);
4634       if (sorted_sym_hash == NULL)
4635         goto error_return;
4636       sym_hash = sorted_sym_hash;
4637       hpp = elf_sym_hashes (abfd);
4638       hppend = hpp + extsymcount;
4639       sym_count = 0;
4640       for (; hpp < hppend; hpp++)
4641         {
4642           h = *hpp;
4643           if (h != NULL
4644               && h->root.type == bfd_link_hash_defined
4645               && !bed->is_function_type (h->type))
4646             {
4647               *sym_hash = h;
4648               sym_hash++;
4649               sym_count++;
4650             }
4651         }
4652
4653       qsort (sorted_sym_hash, sym_count,
4654              sizeof (struct elf_link_hash_entry *),
4655              elf_sort_symbol);
4656
4657       while (weaks != NULL)
4658         {
4659           struct elf_link_hash_entry *hlook;
4660           asection *slook;
4661           bfd_vma vlook;
4662           size_t i, j, idx = 0;
4663
4664           hlook = weaks;
4665           weaks = hlook->u.weakdef;
4666           hlook->u.weakdef = NULL;
4667
4668           BFD_ASSERT (hlook->root.type == bfd_link_hash_defined
4669                       || hlook->root.type == bfd_link_hash_defweak
4670                       || hlook->root.type == bfd_link_hash_common
4671                       || hlook->root.type == bfd_link_hash_indirect);
4672           slook = hlook->root.u.def.section;
4673           vlook = hlook->root.u.def.value;
4674
4675           i = 0;
4676           j = sym_count;
4677           while (i != j)
4678             {
4679               bfd_signed_vma vdiff;
4680               idx = (i + j) / 2;
4681               h = sorted_sym_hash[idx];
4682               vdiff = vlook - h->root.u.def.value;
4683               if (vdiff < 0)
4684                 j = idx;
4685               else if (vdiff > 0)
4686                 i = idx + 1;
4687               else
4688                 {
4689                   long sdiff = slook->id - h->root.u.def.section->id;
4690                   if (sdiff < 0)
4691                     j = idx;
4692                   else if (sdiff > 0)
4693                     i = idx + 1;
4694                   else
4695                     break;
4696                 }
4697             }
4698
4699           /* We didn't find a value/section match.  */
4700           if (i == j)
4701             continue;
4702
4703           /* With multiple aliases, or when the weak symbol is already
4704              strongly defined, we have multiple matching symbols and
4705              the binary search above may land on any of them.  Step
4706              one past the matching symbol(s).  */
4707           while (++idx != j)
4708             {
4709               h = sorted_sym_hash[idx];
4710               if (h->root.u.def.section != slook
4711                   || h->root.u.def.value != vlook)
4712                 break;
4713             }
4714
4715           /* Now look back over the aliases.  Since we sorted by size
4716              as well as value and section, we'll choose the one with
4717              the largest size.  */
4718           while (idx-- != i)
4719             {
4720               h = sorted_sym_hash[idx];
4721
4722               /* Stop if value or section doesn't match.  */
4723               if (h->root.u.def.section != slook
4724                   || h->root.u.def.value != vlook)
4725                 break;
4726               else if (h != hlook)
4727                 {
4728                   hlook->u.weakdef = h;
4729
4730                   /* If the weak definition is in the list of dynamic
4731                      symbols, make sure the real definition is put
4732                      there as well.  */
4733                   if (hlook->dynindx != -1 && h->dynindx == -1)
4734                     {
4735                       if (! bfd_elf_link_record_dynamic_symbol (info, h))
4736                         {
4737                         err_free_sym_hash:
4738                           free (sorted_sym_hash);
4739                           goto error_return;
4740                         }
4741                     }
4742
4743                   /* If the real definition is in the list of dynamic
4744                      symbols, make sure the weak definition is put
4745                      there as well.  If we don't do this, then the
4746                      dynamic loader might not merge the entries for the
4747                      real definition and the weak definition.  */
4748                   if (h->dynindx != -1 && hlook->dynindx == -1)
4749                     {
4750                       if (! bfd_elf_link_record_dynamic_symbol (info, hlook))
4751                         goto err_free_sym_hash;
4752                     }
4753                   break;
4754                 }
4755             }
4756         }
4757
4758       free (sorted_sym_hash);
4759     }
4760
4761   if (bed->check_directives
4762       && !(*bed->check_directives) (abfd, info))
4763     return FALSE;
4764
4765   /* If this object is the same format as the output object, and it is
4766      not a shared library, then let the backend look through the
4767      relocs.
4768
4769      This is required to build global offset table entries and to
4770      arrange for dynamic relocs.  It is not required for the
4771      particular common case of linking non PIC code, even when linking
4772      against shared libraries, but unfortunately there is no way of
4773      knowing whether an object file has been compiled PIC or not.
4774      Looking through the relocs is not particularly time consuming.
4775      The problem is that we must either (1) keep the relocs in memory,
4776      which causes the linker to require additional runtime memory or
4777      (2) read the relocs twice from the input file, which wastes time.
4778      This would be a good case for using mmap.
4779
4780      I have no idea how to handle linking PIC code into a file of a
4781      different format.  It probably can't be done.  */
4782   if (! dynamic
4783       && is_elf_hash_table (htab)
4784       && bed->check_relocs != NULL
4785       && elf_object_id (abfd) == elf_hash_table_id (htab)
4786       && (*bed->relocs_compatible) (abfd->xvec, info->output_bfd->xvec))
4787     {
4788       asection *o;
4789
4790       for (o = abfd->sections; o != NULL; o = o->next)
4791         {
4792           Elf_Internal_Rela *internal_relocs;
4793           bfd_boolean ok;
4794
4795           if ((o->flags & SEC_RELOC) == 0
4796               || o->reloc_count == 0
4797               || ((info->strip == strip_all || info->strip == strip_debugger)
4798                   && (o->flags & SEC_DEBUGGING) != 0)
4799               || bfd_is_abs_section (o->output_section))
4800             continue;
4801
4802           internal_relocs = _bfd_elf_link_read_relocs (abfd, o, NULL, NULL,
4803                                                        info->keep_memory);
4804           if (internal_relocs == NULL)
4805             goto error_return;
4806
4807           ok = (*bed->check_relocs) (abfd, info, o, internal_relocs);
4808
4809           if (elf_section_data (o)->relocs != internal_relocs)
4810             free (internal_relocs);
4811
4812           if (! ok)
4813             goto error_return;
4814         }
4815     }
4816
4817   /* If this is a non-traditional link, try to optimize the handling
4818      of the .stab/.stabstr sections.  */
4819   if (! dynamic
4820       && ! info->traditional_format
4821       && is_elf_hash_table (htab)
4822       && (info->strip != strip_all && info->strip != strip_debugger))
4823     {
4824       asection *stabstr;
4825
4826       stabstr = bfd_get_section_by_name (abfd, ".stabstr");
4827       if (stabstr != NULL)
4828         {
4829           bfd_size_type string_offset = 0;
4830           asection *stab;
4831
4832           for (stab = abfd->sections; stab; stab = stab->next)
4833             if (CONST_STRNEQ (stab->name, ".stab")
4834                 && (!stab->name[5] ||
4835                     (stab->name[5] == '.' && ISDIGIT (stab->name[6])))
4836                 && (stab->flags & SEC_MERGE) == 0
4837                 && !bfd_is_abs_section (stab->output_section))
4838               {
4839                 struct bfd_elf_section_data *secdata;
4840
4841                 secdata = elf_section_data (stab);
4842                 if (! _bfd_link_section_stabs (abfd, &htab->stab_info, stab,
4843                                                stabstr, &secdata->sec_info,
4844                                                &string_offset))
4845                   goto error_return;
4846                 if (secdata->sec_info)
4847                   stab->sec_info_type = SEC_INFO_TYPE_STABS;
4848             }
4849         }
4850     }
4851
4852   if (is_elf_hash_table (htab) && add_needed)
4853     {
4854       /* Add this bfd to the loaded list.  */
4855       struct elf_link_loaded_list *n;
4856
4857       n = (struct elf_link_loaded_list *)
4858           bfd_alloc (abfd, sizeof (struct elf_link_loaded_list));
4859       if (n == NULL)
4860         goto error_return;
4861       n->abfd = abfd;
4862       n->next = htab->loaded;
4863       htab->loaded = n;
4864     }
4865
4866   return TRUE;
4867
4868  error_free_vers:
4869   if (old_tab != NULL)
4870     free (old_tab);
4871   if (nondeflt_vers != NULL)
4872     free (nondeflt_vers);
4873   if (extversym != NULL)
4874     free (extversym);
4875  error_free_sym:
4876   if (isymbuf != NULL)
4877     free (isymbuf);
4878  error_return:
4879   return FALSE;
4880 }
4881
4882 /* Return the linker hash table entry of a symbol that might be
4883    satisfied by an archive symbol.  Return -1 on error.  */
4884
4885 struct elf_link_hash_entry *
4886 _bfd_elf_archive_symbol_lookup (bfd *abfd,
4887                                 struct bfd_link_info *info,
4888                                 const char *name)
4889 {
4890   struct elf_link_hash_entry *h;
4891   char *p, *copy;
4892   size_t len, first;
4893
4894   h = elf_link_hash_lookup (elf_hash_table (info), name, FALSE, FALSE, TRUE);
4895   if (h != NULL)
4896     return h;
4897
4898   /* If this is a default version (the name contains @@), look up the
4899      symbol again with only one `@' as well as without the version.
4900      The effect is that references to the symbol with and without the
4901      version will be matched by the default symbol in the archive.  */
4902
4903   p = strchr (name, ELF_VER_CHR);
4904   if (p == NULL || p[1] != ELF_VER_CHR)
4905     return h;
4906
4907   /* First check with only one `@'.  */
4908   len = strlen (name);
4909   copy = (char *) bfd_alloc (abfd, len);
4910   if (copy == NULL)
4911     return (struct elf_link_hash_entry *) 0 - 1;
4912
4913   first = p - name + 1;
4914   memcpy (copy, name, first);
4915   memcpy (copy + first, name + first + 1, len - first);
4916
4917   h = elf_link_hash_lookup (elf_hash_table (info), copy, FALSE, FALSE, TRUE);
4918   if (h == NULL)
4919     {
4920       /* We also need to check references to the symbol without the
4921          version.  */
4922       copy[first - 1] = '\0';
4923       h = elf_link_hash_lookup (elf_hash_table (info), copy,
4924                                 FALSE, FALSE, TRUE);
4925     }
4926
4927   bfd_release (abfd, copy);
4928   return h;
4929 }
4930
4931 /* Add symbols from an ELF archive file to the linker hash table.  We
4932    don't use _bfd_generic_link_add_archive_symbols because we need to
4933    handle versioned symbols.
4934
4935    Fortunately, ELF archive handling is simpler than that done by
4936    _bfd_generic_link_add_archive_symbols, which has to allow for a.out
4937    oddities.  In ELF, if we find a symbol in the archive map, and the
4938    symbol is currently undefined, we know that we must pull in that
4939    object file.
4940
4941    Unfortunately, we do have to make multiple passes over the symbol
4942    table until nothing further is resolved.  */
4943
4944 static bfd_boolean
4945 elf_link_add_archive_symbols (bfd *abfd, struct bfd_link_info *info)
4946 {
4947   symindex c;
4948   unsigned char *included = NULL;
4949   carsym *symdefs;
4950   bfd_boolean loop;
4951   bfd_size_type amt;
4952   const struct elf_backend_data *bed;
4953   struct elf_link_hash_entry * (*archive_symbol_lookup)
4954     (bfd *, struct bfd_link_info *, const char *);
4955
4956   if (! bfd_has_map (abfd))
4957     {
4958       /* An empty archive is a special case.  */
4959       if (bfd_openr_next_archived_file (abfd, NULL) == NULL)
4960         return TRUE;
4961       bfd_set_error (bfd_error_no_armap);
4962       return FALSE;
4963     }
4964
4965   /* Keep track of all symbols we know to be already defined, and all
4966      files we know to be already included.  This is to speed up the
4967      second and subsequent passes.  */
4968   c = bfd_ardata (abfd)->symdef_count;
4969   if (c == 0)
4970     return TRUE;
4971   amt = c;
4972   amt *= sizeof (*included);
4973   included = (unsigned char *) bfd_zmalloc (amt);
4974   if (included == NULL)
4975     return FALSE;
4976
4977   symdefs = bfd_ardata (abfd)->symdefs;
4978   bed = get_elf_backend_data (abfd);
4979   archive_symbol_lookup = bed->elf_backend_archive_symbol_lookup;
4980
4981   do
4982     {
4983       file_ptr last;
4984       symindex i;
4985       carsym *symdef;
4986       carsym *symdefend;
4987
4988       loop = FALSE;
4989       last = -1;
4990
4991       symdef = symdefs;
4992       symdefend = symdef + c;
4993       for (i = 0; symdef < symdefend; symdef++, i++)
4994         {
4995           struct elf_link_hash_entry *h;
4996           bfd *element;
4997           struct bfd_link_hash_entry *undefs_tail;
4998           symindex mark;
4999
5000           if (included[i])
5001             continue;
5002           if (symdef->file_offset == last)
5003             {
5004               included[i] = TRUE;
5005               continue;
5006             }
5007
5008           h = archive_symbol_lookup (abfd, info, symdef->name);
5009           if (h == (struct elf_link_hash_entry *) 0 - 1)
5010             goto error_return;
5011
5012           if (h == NULL)
5013             continue;
5014
5015           if (h->root.type == bfd_link_hash_common)
5016             {
5017               /* We currently have a common symbol.  The archive map contains
5018                  a reference to this symbol, so we may want to include it.  We
5019                  only want to include it however, if this archive element
5020                  contains a definition of the symbol, not just another common
5021                  declaration of it.
5022
5023                  Unfortunately some archivers (including GNU ar) will put
5024                  declarations of common symbols into their archive maps, as
5025                  well as real definitions, so we cannot just go by the archive
5026                  map alone.  Instead we must read in the element's symbol
5027                  table and check that to see what kind of symbol definition
5028                  this is.  */
5029               if (! elf_link_is_defined_archive_symbol (abfd, symdef))
5030                 continue;
5031             }
5032           else if (h->root.type != bfd_link_hash_undefined)
5033             {
5034               if (h->root.type != bfd_link_hash_undefweak)
5035                 /* Symbol must be defined.  Don't check it again.  */
5036                 included[i] = TRUE;
5037               continue;
5038             }
5039
5040           /* We need to include this archive member.  */
5041           element = _bfd_get_elt_at_filepos (abfd, symdef->file_offset);
5042           if (element == NULL)
5043             goto error_return;
5044
5045           if (! bfd_check_format (element, bfd_object))
5046             goto error_return;
5047
5048           undefs_tail = info->hash->undefs_tail;
5049
5050           if (!(*info->callbacks
5051                 ->add_archive_element) (info, element, symdef->name, &element))
5052             goto error_return;
5053           if (!bfd_link_add_symbols (element, info))
5054             goto error_return;
5055
5056           /* If there are any new undefined symbols, we need to make
5057              another pass through the archive in order to see whether
5058              they can be defined.  FIXME: This isn't perfect, because
5059              common symbols wind up on undefs_tail and because an
5060              undefined symbol which is defined later on in this pass
5061              does not require another pass.  This isn't a bug, but it
5062              does make the code less efficient than it could be.  */
5063           if (undefs_tail != info->hash->undefs_tail)
5064             loop = TRUE;
5065
5066           /* Look backward to mark all symbols from this object file
5067              which we have already seen in this pass.  */
5068           mark = i;
5069           do
5070             {
5071               included[mark] = TRUE;
5072               if (mark == 0)
5073                 break;
5074               --mark;
5075             }
5076           while (symdefs[mark].file_offset == symdef->file_offset);
5077
5078           /* We mark subsequent symbols from this object file as we go
5079              on through the loop.  */
5080           last = symdef->file_offset;
5081         }
5082     }
5083   while (loop);
5084
5085   free (included);
5086
5087   return TRUE;
5088
5089  error_return:
5090   if (included != NULL)
5091     free (included);
5092   return FALSE;
5093 }
5094
5095 /* Given an ELF BFD, add symbols to the global hash table as
5096    appropriate.  */
5097
5098 bfd_boolean
5099 bfd_elf_link_add_symbols (bfd *abfd, struct bfd_link_info *info)
5100 {
5101   switch (bfd_get_format (abfd))
5102     {
5103     case bfd_object:
5104       return elf_link_add_object_symbols (abfd, info);
5105     case bfd_archive:
5106       return elf_link_add_archive_symbols (abfd, info);
5107     default:
5108       bfd_set_error (bfd_error_wrong_format);
5109       return FALSE;
5110     }
5111 }
5112 \f
5113 struct hash_codes_info
5114 {
5115   unsigned long *hashcodes;
5116   bfd_boolean error;
5117 };
5118
5119 /* This function will be called though elf_link_hash_traverse to store
5120    all hash value of the exported symbols in an array.  */
5121
5122 static bfd_boolean
5123 elf_collect_hash_codes (struct elf_link_hash_entry *h, void *data)
5124 {
5125   struct hash_codes_info *inf = (struct hash_codes_info *) data;
5126   const char *name;
5127   char *p;
5128   unsigned long ha;
5129   char *alc = NULL;
5130
5131   /* Ignore indirect symbols.  These are added by the versioning code.  */
5132   if (h->dynindx == -1)
5133     return TRUE;
5134
5135   name = h->root.root.string;
5136   p = strchr (name, ELF_VER_CHR);
5137   if (p != NULL)
5138     {
5139       alc = (char *) bfd_malloc (p - name + 1);
5140       if (alc == NULL)
5141         {
5142           inf->error = TRUE;
5143           return FALSE;
5144         }
5145       memcpy (alc, name, p - name);
5146       alc[p - name] = '\0';
5147       name = alc;
5148     }
5149
5150   /* Compute the hash value.  */
5151   ha = bfd_elf_hash (name);
5152
5153   /* Store the found hash value in the array given as the argument.  */
5154   *(inf->hashcodes)++ = ha;
5155
5156   /* And store it in the struct so that we can put it in the hash table
5157      later.  */
5158   h->u.elf_hash_value = ha;
5159
5160   if (alc != NULL)
5161     free (alc);
5162
5163   return TRUE;
5164 }
5165
5166 struct collect_gnu_hash_codes
5167 {
5168   bfd *output_bfd;
5169   const struct elf_backend_data *bed;
5170   unsigned long int nsyms;
5171   unsigned long int maskbits;
5172   unsigned long int *hashcodes;
5173   unsigned long int *hashval;
5174   unsigned long int *indx;
5175   unsigned long int *counts;
5176   bfd_vma *bitmask;
5177   bfd_byte *contents;
5178   long int min_dynindx;
5179   unsigned long int bucketcount;
5180   unsigned long int symindx;
5181   long int local_indx;
5182   long int shift1, shift2;
5183   unsigned long int mask;
5184   bfd_boolean error;
5185 };
5186
5187 /* This function will be called though elf_link_hash_traverse to store
5188    all hash value of the exported symbols in an array.  */
5189
5190 static bfd_boolean
5191 elf_collect_gnu_hash_codes (struct elf_link_hash_entry *h, void *data)
5192 {
5193   struct collect_gnu_hash_codes *s = (struct collect_gnu_hash_codes *) data;
5194   const char *name;
5195   char *p;
5196   unsigned long ha;
5197   char *alc = NULL;
5198
5199   /* Ignore indirect symbols.  These are added by the versioning code.  */
5200   if (h->dynindx == -1)
5201     return TRUE;
5202
5203   /* Ignore also local symbols and undefined symbols.  */
5204   if (! (*s->bed->elf_hash_symbol) (h))
5205     return TRUE;
5206
5207   name = h->root.root.string;
5208   p = strchr (name, ELF_VER_CHR);
5209   if (p != NULL)
5210     {
5211       alc = (char *) bfd_malloc (p - name + 1);
5212       if (alc == NULL)
5213         {
5214           s->error = TRUE;
5215           return FALSE;
5216         }
5217       memcpy (alc, name, p - name);
5218       alc[p - name] = '\0';
5219       name = alc;
5220     }
5221
5222   /* Compute the hash value.  */
5223   ha = bfd_elf_gnu_hash (name);
5224
5225   /* Store the found hash value in the array for compute_bucket_count,
5226      and also for .dynsym reordering purposes.  */
5227   s->hashcodes[s->nsyms] = ha;
5228   s->hashval[h->dynindx] = ha;
5229   ++s->nsyms;
5230   if (s->min_dynindx < 0 || s->min_dynindx > h->dynindx)
5231     s->min_dynindx = h->dynindx;
5232
5233   if (alc != NULL)
5234     free (alc);
5235
5236   return TRUE;
5237 }
5238
5239 /* This function will be called though elf_link_hash_traverse to do
5240    final dynaminc symbol renumbering.  */
5241
5242 static bfd_boolean
5243 elf_renumber_gnu_hash_syms (struct elf_link_hash_entry *h, void *data)
5244 {
5245   struct collect_gnu_hash_codes *s = (struct collect_gnu_hash_codes *) data;
5246   unsigned long int bucket;
5247   unsigned long int val;
5248
5249   /* Ignore indirect symbols.  */
5250   if (h->dynindx == -1)
5251     return TRUE;
5252
5253   /* Ignore also local symbols and undefined symbols.  */
5254   if (! (*s->bed->elf_hash_symbol) (h))
5255     {
5256       if (h->dynindx >= s->min_dynindx)
5257         h->dynindx = s->local_indx++;
5258       return TRUE;
5259     }
5260
5261   bucket = s->hashval[h->dynindx] % s->bucketcount;
5262   val = (s->hashval[h->dynindx] >> s->shift1)
5263         & ((s->maskbits >> s->shift1) - 1);
5264   s->bitmask[val] |= ((bfd_vma) 1) << (s->hashval[h->dynindx] & s->mask);
5265   s->bitmask[val]
5266     |= ((bfd_vma) 1) << ((s->hashval[h->dynindx] >> s->shift2) & s->mask);
5267   val = s->hashval[h->dynindx] & ~(unsigned long int) 1;
5268   if (s->counts[bucket] == 1)
5269     /* Last element terminates the chain.  */
5270     val |= 1;
5271   bfd_put_32 (s->output_bfd, val,
5272               s->contents + (s->indx[bucket] - s->symindx) * 4);
5273   --s->counts[bucket];
5274   h->dynindx = s->indx[bucket]++;
5275   return TRUE;
5276 }
5277
5278 /* Return TRUE if symbol should be hashed in the `.gnu.hash' section.  */
5279
5280 bfd_boolean
5281 _bfd_elf_hash_symbol (struct elf_link_hash_entry *h)
5282 {
5283   return !(h->forced_local
5284            || h->root.type == bfd_link_hash_undefined
5285            || h->root.type == bfd_link_hash_undefweak
5286            || ((h->root.type == bfd_link_hash_defined
5287                 || h->root.type == bfd_link_hash_defweak)
5288                && h->root.u.def.section->output_section == NULL));
5289 }
5290
5291 /* Array used to determine the number of hash table buckets to use
5292    based on the number of symbols there are.  If there are fewer than
5293    3 symbols we use 1 bucket, fewer than 17 symbols we use 3 buckets,
5294    fewer than 37 we use 17 buckets, and so forth.  We never use more
5295    than 32771 buckets.  */
5296
5297 static const size_t elf_buckets[] =
5298 {
5299   1, 3, 17, 37, 67, 97, 131, 197, 263, 521, 1031, 2053, 4099, 8209,
5300   16411, 32771, 0
5301 };
5302
5303 /* Compute bucket count for hashing table.  We do not use a static set
5304    of possible tables sizes anymore.  Instead we determine for all
5305    possible reasonable sizes of the table the outcome (i.e., the
5306    number of collisions etc) and choose the best solution.  The
5307    weighting functions are not too simple to allow the table to grow
5308    without bounds.  Instead one of the weighting factors is the size.
5309    Therefore the result is always a good payoff between few collisions
5310    (= short chain lengths) and table size.  */
5311 static size_t
5312 compute_bucket_count (struct bfd_link_info *info ATTRIBUTE_UNUSED,
5313                       unsigned long int *hashcodes ATTRIBUTE_UNUSED,
5314                       unsigned long int nsyms,
5315                       int gnu_hash)
5316 {
5317   size_t best_size = 0;
5318   unsigned long int i;
5319
5320   /* We have a problem here.  The following code to optimize the table
5321      size requires an integer type with more the 32 bits.  If
5322      BFD_HOST_U_64_BIT is set we know about such a type.  */
5323 #ifdef BFD_HOST_U_64_BIT
5324   if (info->optimize)
5325     {
5326       size_t minsize;
5327       size_t maxsize;
5328       BFD_HOST_U_64_BIT best_chlen = ~((BFD_HOST_U_64_BIT) 0);
5329       bfd *dynobj = elf_hash_table (info)->dynobj;
5330       size_t dynsymcount = elf_hash_table (info)->dynsymcount;
5331       const struct elf_backend_data *bed = get_elf_backend_data (dynobj);
5332       unsigned long int *counts;
5333       bfd_size_type amt;
5334       unsigned int no_improvement_count = 0;
5335
5336       /* Possible optimization parameters: if we have NSYMS symbols we say
5337          that the hashing table must at least have NSYMS/4 and at most
5338          2*NSYMS buckets.  */
5339       minsize = nsyms / 4;
5340       if (minsize == 0)
5341         minsize = 1;
5342       best_size = maxsize = nsyms * 2;
5343       if (gnu_hash)
5344         {
5345           if (minsize < 2)
5346             minsize = 2;
5347           if ((best_size & 31) == 0)
5348             ++best_size;
5349         }
5350
5351       /* Create array where we count the collisions in.  We must use bfd_malloc
5352          since the size could be large.  */
5353       amt = maxsize;
5354       amt *= sizeof (unsigned long int);
5355       counts = (unsigned long int *) bfd_malloc (amt);
5356       if (counts == NULL)
5357         return 0;
5358
5359       /* Compute the "optimal" size for the hash table.  The criteria is a
5360          minimal chain length.  The minor criteria is (of course) the size
5361          of the table.  */
5362       for (i = minsize; i < maxsize; ++i)
5363         {
5364           /* Walk through the array of hashcodes and count the collisions.  */
5365           BFD_HOST_U_64_BIT max;
5366           unsigned long int j;
5367           unsigned long int fact;
5368
5369           if (gnu_hash && (i & 31) == 0)
5370             continue;
5371
5372           memset (counts, '\0', i * sizeof (unsigned long int));
5373
5374           /* Determine how often each hash bucket is used.  */
5375           for (j = 0; j < nsyms; ++j)
5376             ++counts[hashcodes[j] % i];
5377
5378           /* For the weight function we need some information about the
5379              pagesize on the target.  This is information need not be 100%
5380              accurate.  Since this information is not available (so far) we
5381              define it here to a reasonable default value.  If it is crucial
5382              to have a better value some day simply define this value.  */
5383 # ifndef BFD_TARGET_PAGESIZE
5384 #  define BFD_TARGET_PAGESIZE   (4096)
5385 # endif
5386
5387           /* We in any case need 2 + DYNSYMCOUNT entries for the size values
5388              and the chains.  */
5389           max = (2 + dynsymcount) * bed->s->sizeof_hash_entry;
5390
5391 # if 1
5392           /* Variant 1: optimize for short chains.  We add the squares
5393              of all the chain lengths (which favors many small chain
5394              over a few long chains).  */
5395           for (j = 0; j < i; ++j)
5396             max += counts[j] * counts[j];
5397
5398           /* This adds penalties for the overall size of the table.  */
5399           fact = i / (BFD_TARGET_PAGESIZE / bed->s->sizeof_hash_entry) + 1;
5400           max *= fact * fact;
5401 # else
5402           /* Variant 2: Optimize a lot more for small table.  Here we
5403              also add squares of the size but we also add penalties for
5404              empty slots (the +1 term).  */
5405           for (j = 0; j < i; ++j)
5406             max += (1 + counts[j]) * (1 + counts[j]);
5407
5408           /* The overall size of the table is considered, but not as
5409              strong as in variant 1, where it is squared.  */
5410           fact = i / (BFD_TARGET_PAGESIZE / bed->s->sizeof_hash_entry) + 1;
5411           max *= fact;
5412 # endif
5413
5414           /* Compare with current best results.  */
5415           if (max < best_chlen)
5416             {
5417               best_chlen = max;
5418               best_size = i;
5419               no_improvement_count = 0;
5420             }
5421           /* PR 11843: Avoid futile long searches for the best bucket size
5422              when there are a large number of symbols.  */
5423           else if (++no_improvement_count == 100)
5424             break;
5425         }
5426
5427       free (counts);
5428     }
5429   else
5430 #endif /* defined (BFD_HOST_U_64_BIT) */
5431     {
5432       /* This is the fallback solution if no 64bit type is available or if we
5433          are not supposed to spend much time on optimizations.  We select the
5434          bucket count using a fixed set of numbers.  */
5435       for (i = 0; elf_buckets[i] != 0; i++)
5436         {
5437           best_size = elf_buckets[i];
5438           if (nsyms < elf_buckets[i + 1])
5439             break;
5440         }
5441       if (gnu_hash && best_size < 2)
5442         best_size = 2;
5443     }
5444
5445   return best_size;
5446 }
5447
5448 /* Size any SHT_GROUP section for ld -r.  */
5449
5450 bfd_boolean
5451 _bfd_elf_size_group_sections (struct bfd_link_info *info)
5452 {
5453   bfd *ibfd;
5454
5455   for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
5456     if (bfd_get_flavour (ibfd) == bfd_target_elf_flavour
5457         && !_bfd_elf_fixup_group_sections (ibfd, bfd_abs_section_ptr))
5458       return FALSE;
5459   return TRUE;
5460 }
5461
5462 /* Set a default stack segment size.  The value in INFO wins.  If it
5463    is unset, LEGACY_SYMBOL's value is used, and if that symbol is
5464    undefined it is initialized.  */
5465
5466 bfd_boolean
5467 bfd_elf_stack_segment_size (bfd *output_bfd,
5468                             struct bfd_link_info *info,
5469                             const char *legacy_symbol,
5470                             bfd_vma default_size)
5471 {
5472   struct elf_link_hash_entry *h = NULL;
5473
5474   /* Look for legacy symbol.  */
5475   if (legacy_symbol)
5476     h = elf_link_hash_lookup (elf_hash_table (info), legacy_symbol,
5477                               FALSE, FALSE, FALSE);
5478   if (h && (h->root.type == bfd_link_hash_defined
5479             || h->root.type == bfd_link_hash_defweak)
5480       && h->def_regular
5481       && (h->type == STT_NOTYPE || h->type == STT_OBJECT))
5482     {
5483       /* The symbol has no type if specified on the command line.  */
5484       h->type = STT_OBJECT;
5485       if (info->stacksize)
5486         (*_bfd_error_handler) (_("%B: stack size specified and %s set"),
5487                                output_bfd, legacy_symbol);
5488       else if (h->root.u.def.section != bfd_abs_section_ptr)
5489         (*_bfd_error_handler) (_("%B: %s not absolute"),
5490                                output_bfd, legacy_symbol);
5491       else
5492         info->stacksize = h->root.u.def.value;
5493     }
5494
5495   if (!info->stacksize)
5496     /* If the user didn't set a size, or explicitly inhibit the
5497        size, set it now.  */
5498     info->stacksize = default_size;
5499
5500   /* Provide the legacy symbol, if it is referenced.  */
5501   if (h && (h->root.type == bfd_link_hash_undefined
5502             || h->root.type == bfd_link_hash_undefweak))
5503     {
5504       struct bfd_link_hash_entry *bh = NULL;
5505
5506       if (!(_bfd_generic_link_add_one_symbol
5507             (info, output_bfd, legacy_symbol,
5508              BSF_GLOBAL, bfd_abs_section_ptr,
5509              info->stacksize >= 0 ? info->stacksize : 0,
5510              NULL, FALSE, get_elf_backend_data (output_bfd)->collect, &bh)))
5511         return FALSE;
5512
5513       h = (struct elf_link_hash_entry *) bh;
5514       h->def_regular = 1;
5515       h->type = STT_OBJECT;
5516     }
5517
5518   return TRUE;
5519 }
5520
5521 /* Set up the sizes and contents of the ELF dynamic sections.  This is
5522    called by the ELF linker emulation before_allocation routine.  We
5523    must set the sizes of the sections before the linker sets the
5524    addresses of the various sections.  */
5525
5526 bfd_boolean
5527 bfd_elf_size_dynamic_sections (bfd *output_bfd,
5528                                const char *soname,
5529                                const char *rpath,
5530                                const char *filter_shlib,
5531                                const char *audit,
5532                                const char *depaudit,
5533                                const char * const *auxiliary_filters,
5534                                struct bfd_link_info *info,
5535                                asection **sinterpptr)
5536 {
5537   bfd_size_type soname_indx;
5538   bfd *dynobj;
5539   const struct elf_backend_data *bed;
5540   struct elf_info_failed asvinfo;
5541
5542   *sinterpptr = NULL;
5543
5544   soname_indx = (bfd_size_type) -1;
5545
5546   if (!is_elf_hash_table (info->hash))
5547     return TRUE;
5548
5549   bed = get_elf_backend_data (output_bfd);
5550
5551   /* Any syms created from now on start with -1 in
5552      got.refcount/offset and plt.refcount/offset.  */
5553   elf_hash_table (info)->init_got_refcount
5554     = elf_hash_table (info)->init_got_offset;
5555   elf_hash_table (info)->init_plt_refcount
5556     = elf_hash_table (info)->init_plt_offset;
5557
5558   if (info->relocatable
5559       && !_bfd_elf_size_group_sections (info))
5560     return FALSE;
5561
5562   /* The backend may have to create some sections regardless of whether
5563      we're dynamic or not.  */
5564   if (bed->elf_backend_always_size_sections
5565       && ! (*bed->elf_backend_always_size_sections) (output_bfd, info))
5566     return FALSE;
5567
5568   /* Determine any GNU_STACK segment requirements, after the backend
5569      has had a chance to set a default segment size.  */
5570   if (info->execstack)
5571     elf_stack_flags (output_bfd) = PF_R | PF_W | PF_X;
5572   else if (info->noexecstack)
5573     elf_stack_flags (output_bfd) = PF_R | PF_W;
5574   else
5575     {
5576       bfd *inputobj;
5577       asection *notesec = NULL;
5578       int exec = 0;
5579
5580       for (inputobj = info->input_bfds;
5581            inputobj;
5582            inputobj = inputobj->link.next)
5583         {
5584           asection *s;
5585
5586           if (inputobj->flags
5587               & (DYNAMIC | EXEC_P | BFD_PLUGIN | BFD_LINKER_CREATED))
5588             continue;
5589           s = bfd_get_section_by_name (inputobj, ".note.GNU-stack");
5590           if (s)
5591             {
5592               if (s->flags & SEC_CODE)
5593                 exec = PF_X;
5594               notesec = s;
5595             }
5596           else if (bed->default_execstack)
5597             exec = PF_X;
5598         }
5599       if (notesec || info->stacksize > 0)
5600         elf_stack_flags (output_bfd) = PF_R | PF_W | exec;
5601       if (notesec && exec && info->relocatable
5602           && notesec->output_section != bfd_abs_section_ptr)
5603         notesec->output_section->flags |= SEC_CODE;
5604     }
5605
5606   dynobj = elf_hash_table (info)->dynobj;
5607
5608   if (dynobj != NULL && elf_hash_table (info)->dynamic_sections_created)
5609     {
5610       struct elf_info_failed eif;
5611       struct elf_link_hash_entry *h;
5612       asection *dynstr;
5613       struct bfd_elf_version_tree *t;
5614       struct bfd_elf_version_expr *d;
5615       asection *s;
5616       bfd_boolean all_defined;
5617
5618       *sinterpptr = bfd_get_linker_section (dynobj, ".interp");
5619       BFD_ASSERT (*sinterpptr != NULL || !info->executable);
5620
5621       if (soname != NULL)
5622         {
5623           soname_indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
5624                                              soname, TRUE);
5625           if (soname_indx == (bfd_size_type) -1
5626               || !_bfd_elf_add_dynamic_entry (info, DT_SONAME, soname_indx))
5627             return FALSE;
5628         }
5629
5630       if (info->symbolic)
5631         {
5632           if (!_bfd_elf_add_dynamic_entry (info, DT_SYMBOLIC, 0))
5633             return FALSE;
5634           info->flags |= DF_SYMBOLIC;
5635         }
5636
5637       if (rpath != NULL)
5638         {
5639           bfd_size_type indx;
5640           bfd_vma tag;
5641
5642           indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr, rpath,
5643                                       TRUE);
5644           if (indx == (bfd_size_type) -1)
5645             return FALSE;
5646
5647           tag = info->new_dtags ? DT_RUNPATH : DT_RPATH;
5648           if (!_bfd_elf_add_dynamic_entry (info, tag, indx))
5649             return FALSE;
5650         }
5651
5652       if (filter_shlib != NULL)
5653         {
5654           bfd_size_type indx;
5655
5656           indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
5657                                       filter_shlib, TRUE);
5658           if (indx == (bfd_size_type) -1
5659               || !_bfd_elf_add_dynamic_entry (info, DT_FILTER, indx))
5660             return FALSE;
5661         }
5662
5663       if (auxiliary_filters != NULL)
5664         {
5665           const char * const *p;
5666
5667           for (p = auxiliary_filters; *p != NULL; p++)
5668             {
5669               bfd_size_type indx;
5670
5671               indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
5672                                           *p, TRUE);
5673               if (indx == (bfd_size_type) -1
5674                   || !_bfd_elf_add_dynamic_entry (info, DT_AUXILIARY, indx))
5675                 return FALSE;
5676             }
5677         }
5678
5679       if (audit != NULL)
5680         {
5681           bfd_size_type indx;
5682
5683           indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr, audit,
5684                                       TRUE);
5685           if (indx == (bfd_size_type) -1
5686               || !_bfd_elf_add_dynamic_entry (info, DT_AUDIT, indx))
5687             return FALSE;
5688         }
5689
5690       if (depaudit != NULL)
5691         {
5692           bfd_size_type indx;
5693
5694           indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr, depaudit,
5695                                       TRUE);
5696           if (indx == (bfd_size_type) -1
5697               || !_bfd_elf_add_dynamic_entry (info, DT_DEPAUDIT, indx))
5698             return FALSE;
5699         }
5700
5701       eif.info = info;
5702       eif.failed = FALSE;
5703
5704       /* If we are supposed to export all symbols into the dynamic symbol
5705          table (this is not the normal case), then do so.  */
5706       if (info->export_dynamic
5707           || (info->executable && info->dynamic))
5708         {
5709           elf_link_hash_traverse (elf_hash_table (info),
5710                                   _bfd_elf_export_symbol,
5711                                   &eif);
5712           if (eif.failed)
5713             return FALSE;
5714         }
5715
5716       /* Make all global versions with definition.  */
5717       for (t = info->version_info; t != NULL; t = t->next)
5718         for (d = t->globals.list; d != NULL; d = d->next)
5719           if (!d->symver && d->literal)
5720             {
5721               const char *verstr, *name;
5722               size_t namelen, verlen, newlen;
5723               char *newname, *p, leading_char;
5724               struct elf_link_hash_entry *newh;
5725
5726               leading_char = bfd_get_symbol_leading_char (output_bfd);
5727               name = d->pattern;
5728               namelen = strlen (name) + (leading_char != '\0');
5729               verstr = t->name;
5730               verlen = strlen (verstr);
5731               newlen = namelen + verlen + 3;
5732
5733               newname = (char *) bfd_malloc (newlen);
5734               if (newname == NULL)
5735                 return FALSE;
5736               newname[0] = leading_char;
5737               memcpy (newname + (leading_char != '\0'), name, namelen);
5738
5739               /* Check the hidden versioned definition.  */
5740               p = newname + namelen;
5741               *p++ = ELF_VER_CHR;
5742               memcpy (p, verstr, verlen + 1);
5743               newh = elf_link_hash_lookup (elf_hash_table (info),
5744                                            newname, FALSE, FALSE,
5745                                            FALSE);
5746               if (newh == NULL
5747                   || (newh->root.type != bfd_link_hash_defined
5748                       && newh->root.type != bfd_link_hash_defweak))
5749                 {
5750                   /* Check the default versioned definition.  */
5751                   *p++ = ELF_VER_CHR;
5752                   memcpy (p, verstr, verlen + 1);
5753                   newh = elf_link_hash_lookup (elf_hash_table (info),
5754                                                newname, FALSE, FALSE,
5755                                                FALSE);
5756                 }
5757               free (newname);
5758
5759               /* Mark this version if there is a definition and it is
5760                  not defined in a shared object.  */
5761               if (newh != NULL
5762                   && !newh->def_dynamic
5763                   && (newh->root.type == bfd_link_hash_defined
5764                       || newh->root.type == bfd_link_hash_defweak))
5765                 d->symver = 1;
5766             }
5767
5768       /* Attach all the symbols to their version information.  */
5769       asvinfo.info = info;
5770       asvinfo.failed = FALSE;
5771
5772       elf_link_hash_traverse (elf_hash_table (info),
5773                               _bfd_elf_link_assign_sym_version,
5774                               &asvinfo);
5775       if (asvinfo.failed)
5776         return FALSE;
5777
5778       if (!info->allow_undefined_version)
5779         {
5780           /* Check if all global versions have a definition.  */
5781           all_defined = TRUE;
5782           for (t = info->version_info; t != NULL; t = t->next)
5783             for (d = t->globals.list; d != NULL; d = d->next)
5784               if (d->literal && !d->symver && !d->script)
5785                 {
5786                   (*_bfd_error_handler)
5787                     (_("%s: undefined version: %s"),
5788                      d->pattern, t->name);
5789                   all_defined = FALSE;
5790                 }
5791
5792           if (!all_defined)
5793             {
5794               bfd_set_error (bfd_error_bad_value);
5795               return FALSE;
5796             }
5797         }
5798
5799       /* Find all symbols which were defined in a dynamic object and make
5800          the backend pick a reasonable value for them.  */
5801       elf_link_hash_traverse (elf_hash_table (info),
5802                               _bfd_elf_adjust_dynamic_symbol,
5803                               &eif);
5804       if (eif.failed)
5805         return FALSE;
5806
5807       /* Add some entries to the .dynamic section.  We fill in some of the
5808          values later, in bfd_elf_final_link, but we must add the entries
5809          now so that we know the final size of the .dynamic section.  */
5810
5811       /* If there are initialization and/or finalization functions to
5812          call then add the corresponding DT_INIT/DT_FINI entries.  */
5813       h = (info->init_function
5814            ? elf_link_hash_lookup (elf_hash_table (info),
5815                                    info->init_function, FALSE,
5816                                    FALSE, FALSE)
5817            : NULL);
5818       if (h != NULL
5819           && (h->ref_regular
5820               || h->def_regular))
5821         {
5822           if (!_bfd_elf_add_dynamic_entry (info, DT_INIT, 0))
5823             return FALSE;
5824         }
5825       h = (info->fini_function
5826            ? elf_link_hash_lookup (elf_hash_table (info),
5827                                    info->fini_function, FALSE,
5828                                    FALSE, FALSE)
5829            : NULL);
5830       if (h != NULL
5831           && (h->ref_regular
5832               || h->def_regular))
5833         {
5834           if (!_bfd_elf_add_dynamic_entry (info, DT_FINI, 0))
5835             return FALSE;
5836         }
5837
5838       s = bfd_get_section_by_name (output_bfd, ".preinit_array");
5839       if (s != NULL && s->linker_has_input)
5840         {
5841           /* DT_PREINIT_ARRAY is not allowed in shared library.  */
5842           if (! info->executable)
5843             {
5844               bfd *sub;
5845               asection *o;
5846
5847               for (sub = info->input_bfds; sub != NULL;
5848                    sub = sub->link.next)
5849                 if (bfd_get_flavour (sub) == bfd_target_elf_flavour)
5850                   for (o = sub->sections; o != NULL; o = o->next)
5851                     if (elf_section_data (o)->this_hdr.sh_type
5852                         == SHT_PREINIT_ARRAY)
5853                       {
5854                         (*_bfd_error_handler)
5855                           (_("%B: .preinit_array section is not allowed in DSO"),
5856                            sub);
5857                         break;
5858                       }
5859
5860               bfd_set_error (bfd_error_nonrepresentable_section);
5861               return FALSE;
5862             }
5863
5864           if (!_bfd_elf_add_dynamic_entry (info, DT_PREINIT_ARRAY, 0)
5865               || !_bfd_elf_add_dynamic_entry (info, DT_PREINIT_ARRAYSZ, 0))
5866             return FALSE;
5867         }
5868       s = bfd_get_section_by_name (output_bfd, ".init_array");
5869       if (s != NULL && s->linker_has_input)
5870         {
5871           if (!_bfd_elf_add_dynamic_entry (info, DT_INIT_ARRAY, 0)
5872               || !_bfd_elf_add_dynamic_entry (info, DT_INIT_ARRAYSZ, 0))
5873             return FALSE;
5874         }
5875       s = bfd_get_section_by_name (output_bfd, ".fini_array");
5876       if (s != NULL && s->linker_has_input)
5877         {
5878           if (!_bfd_elf_add_dynamic_entry (info, DT_FINI_ARRAY, 0)
5879               || !_bfd_elf_add_dynamic_entry (info, DT_FINI_ARRAYSZ, 0))
5880             return FALSE;
5881         }
5882
5883       dynstr = bfd_get_linker_section (dynobj, ".dynstr");
5884       /* If .dynstr is excluded from the link, we don't want any of
5885          these tags.  Strictly, we should be checking each section
5886          individually;  This quick check covers for the case where
5887          someone does a /DISCARD/ : { *(*) }.  */
5888       if (dynstr != NULL && dynstr->output_section != bfd_abs_section_ptr)
5889         {
5890           bfd_size_type strsize;
5891
5892           strsize = _bfd_elf_strtab_size (elf_hash_table (info)->dynstr);
5893           if ((info->emit_hash
5894                && !_bfd_elf_add_dynamic_entry (info, DT_HASH, 0))
5895               || (info->emit_gnu_hash
5896                   && !_bfd_elf_add_dynamic_entry (info, DT_GNU_HASH, 0))
5897               || !_bfd_elf_add_dynamic_entry (info, DT_STRTAB, 0)
5898               || !_bfd_elf_add_dynamic_entry (info, DT_SYMTAB, 0)
5899               || !_bfd_elf_add_dynamic_entry (info, DT_STRSZ, strsize)
5900               || !_bfd_elf_add_dynamic_entry (info, DT_SYMENT,
5901                                               bed->s->sizeof_sym))
5902             return FALSE;
5903         }
5904     }
5905
5906   /* The backend must work out the sizes of all the other dynamic
5907      sections.  */
5908   if (dynobj != NULL
5909       && bed->elf_backend_size_dynamic_sections != NULL
5910       && ! (*bed->elf_backend_size_dynamic_sections) (output_bfd, info))
5911     return FALSE;
5912
5913   if (! _bfd_elf_maybe_strip_eh_frame_hdr (info))
5914     return FALSE;
5915
5916   if (dynobj != NULL && elf_hash_table (info)->dynamic_sections_created)
5917     {
5918       unsigned long section_sym_count;
5919       struct bfd_elf_version_tree *verdefs;
5920       asection *s;
5921
5922       /* Set up the version definition section.  */
5923       s = bfd_get_linker_section (dynobj, ".gnu.version_d");
5924       BFD_ASSERT (s != NULL);
5925
5926       /* We may have created additional version definitions if we are
5927          just linking a regular application.  */
5928       verdefs = info->version_info;
5929
5930       /* Skip anonymous version tag.  */
5931       if (verdefs != NULL && verdefs->vernum == 0)
5932         verdefs = verdefs->next;
5933
5934       if (verdefs == NULL && !info->create_default_symver)
5935         s->flags |= SEC_EXCLUDE;
5936       else
5937         {
5938           unsigned int cdefs;
5939           bfd_size_type size;
5940           struct bfd_elf_version_tree *t;
5941           bfd_byte *p;
5942           Elf_Internal_Verdef def;
5943           Elf_Internal_Verdaux defaux;
5944           struct bfd_link_hash_entry *bh;
5945           struct elf_link_hash_entry *h;
5946           const char *name;
5947
5948           cdefs = 0;
5949           size = 0;
5950
5951           /* Make space for the base version.  */
5952           size += sizeof (Elf_External_Verdef);
5953           size += sizeof (Elf_External_Verdaux);
5954           ++cdefs;
5955
5956           /* Make space for the default version.  */
5957           if (info->create_default_symver)
5958             {
5959               size += sizeof (Elf_External_Verdef);
5960               ++cdefs;
5961             }
5962
5963           for (t = verdefs; t != NULL; t = t->next)
5964             {
5965               struct bfd_elf_version_deps *n;
5966
5967               /* Don't emit base version twice.  */
5968               if (t->vernum == 0)
5969                 continue;
5970
5971               size += sizeof (Elf_External_Verdef);
5972               size += sizeof (Elf_External_Verdaux);
5973               ++cdefs;
5974
5975               for (n = t->deps; n != NULL; n = n->next)
5976                 size += sizeof (Elf_External_Verdaux);
5977             }
5978
5979           s->size = size;
5980           s->contents = (unsigned char *) bfd_alloc (output_bfd, s->size);
5981           if (s->contents == NULL && s->size != 0)
5982             return FALSE;
5983
5984           /* Fill in the version definition section.  */
5985
5986           p = s->contents;
5987
5988           def.vd_version = VER_DEF_CURRENT;
5989           def.vd_flags = VER_FLG_BASE;
5990           def.vd_ndx = 1;
5991           def.vd_cnt = 1;
5992           if (info->create_default_symver)
5993             {
5994               def.vd_aux = 2 * sizeof (Elf_External_Verdef);
5995               def.vd_next = sizeof (Elf_External_Verdef);
5996             }
5997           else
5998             {
5999               def.vd_aux = sizeof (Elf_External_Verdef);
6000               def.vd_next = (sizeof (Elf_External_Verdef)
6001                              + sizeof (Elf_External_Verdaux));
6002             }
6003
6004           if (soname_indx != (bfd_size_type) -1)
6005             {
6006               _bfd_elf_strtab_addref (elf_hash_table (info)->dynstr,
6007                                       soname_indx);
6008               def.vd_hash = bfd_elf_hash (soname);
6009               defaux.vda_name = soname_indx;
6010               name = soname;
6011             }
6012           else
6013             {
6014               bfd_size_type indx;
6015
6016               name = lbasename (output_bfd->filename);
6017               def.vd_hash = bfd_elf_hash (name);
6018               indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
6019                                           name, FALSE);
6020               if (indx == (bfd_size_type) -1)
6021                 return FALSE;
6022               defaux.vda_name = indx;
6023             }
6024           defaux.vda_next = 0;
6025
6026           _bfd_elf_swap_verdef_out (output_bfd, &def,
6027                                     (Elf_External_Verdef *) p);
6028           p += sizeof (Elf_External_Verdef);
6029           if (info->create_default_symver)
6030             {
6031               /* Add a symbol representing this version.  */
6032               bh = NULL;
6033               if (! (_bfd_generic_link_add_one_symbol
6034                      (info, dynobj, name, BSF_GLOBAL, bfd_abs_section_ptr,
6035                       0, NULL, FALSE,
6036                       get_elf_backend_data (dynobj)->collect, &bh)))
6037                 return FALSE;
6038               h = (struct elf_link_hash_entry *) bh;
6039               h->non_elf = 0;
6040               h->def_regular = 1;
6041               h->type = STT_OBJECT;
6042               h->verinfo.vertree = NULL;
6043
6044               if (! bfd_elf_link_record_dynamic_symbol (info, h))
6045                 return FALSE;
6046
6047               /* Create a duplicate of the base version with the same
6048                  aux block, but different flags.  */
6049               def.vd_flags = 0;
6050               def.vd_ndx = 2;
6051               def.vd_aux = sizeof (Elf_External_Verdef);
6052               if (verdefs)
6053                 def.vd_next = (sizeof (Elf_External_Verdef)
6054                                + sizeof (Elf_External_Verdaux));
6055               else
6056                 def.vd_next = 0;
6057               _bfd_elf_swap_verdef_out (output_bfd, &def,
6058                                         (Elf_External_Verdef *) p);
6059               p += sizeof (Elf_External_Verdef);
6060             }
6061           _bfd_elf_swap_verdaux_out (output_bfd, &defaux,
6062                                      (Elf_External_Verdaux *) p);
6063           p += sizeof (Elf_External_Verdaux);
6064
6065           for (t = verdefs; t != NULL; t = t->next)
6066             {
6067               unsigned int cdeps;
6068               struct bfd_elf_version_deps *n;
6069
6070               /* Don't emit the base version twice.  */
6071               if (t->vernum == 0)
6072                 continue;
6073
6074               cdeps = 0;
6075               for (n = t->deps; n != NULL; n = n->next)
6076                 ++cdeps;
6077
6078               /* Add a symbol representing this version.  */
6079               bh = NULL;
6080               if (! (_bfd_generic_link_add_one_symbol
6081                      (info, dynobj, t->name, BSF_GLOBAL, bfd_abs_section_ptr,
6082                       0, NULL, FALSE,
6083                       get_elf_backend_data (dynobj)->collect, &bh)))
6084                 return FALSE;
6085               h = (struct elf_link_hash_entry *) bh;
6086               h->non_elf = 0;
6087               h->def_regular = 1;
6088               h->type = STT_OBJECT;
6089               h->verinfo.vertree = t;
6090
6091               if (! bfd_elf_link_record_dynamic_symbol (info, h))
6092                 return FALSE;
6093
6094               def.vd_version = VER_DEF_CURRENT;
6095               def.vd_flags = 0;
6096               if (t->globals.list == NULL
6097                   && t->locals.list == NULL
6098                   && ! t->used)
6099                 def.vd_flags |= VER_FLG_WEAK;
6100               def.vd_ndx = t->vernum + (info->create_default_symver ? 2 : 1);
6101               def.vd_cnt = cdeps + 1;
6102               def.vd_hash = bfd_elf_hash (t->name);
6103               def.vd_aux = sizeof (Elf_External_Verdef);
6104               def.vd_next = 0;
6105
6106               /* If a basever node is next, it *must* be the last node in
6107                  the chain, otherwise Verdef construction breaks.  */
6108               if (t->next != NULL && t->next->vernum == 0)
6109                 BFD_ASSERT (t->next->next == NULL);
6110
6111               if (t->next != NULL && t->next->vernum != 0)
6112                 def.vd_next = (sizeof (Elf_External_Verdef)
6113                                + (cdeps + 1) * sizeof (Elf_External_Verdaux));
6114
6115               _bfd_elf_swap_verdef_out (output_bfd, &def,
6116                                         (Elf_External_Verdef *) p);
6117               p += sizeof (Elf_External_Verdef);
6118
6119               defaux.vda_name = h->dynstr_index;
6120               _bfd_elf_strtab_addref (elf_hash_table (info)->dynstr,
6121                                       h->dynstr_index);
6122               defaux.vda_next = 0;
6123               if (t->deps != NULL)
6124                 defaux.vda_next = sizeof (Elf_External_Verdaux);
6125               t->name_indx = defaux.vda_name;
6126
6127               _bfd_elf_swap_verdaux_out (output_bfd, &defaux,
6128                                          (Elf_External_Verdaux *) p);
6129               p += sizeof (Elf_External_Verdaux);
6130
6131               for (n = t->deps; n != NULL; n = n->next)
6132                 {
6133                   if (n->version_needed == NULL)
6134                     {
6135                       /* This can happen if there was an error in the
6136                          version script.  */
6137                       defaux.vda_name = 0;
6138                     }
6139                   else
6140                     {
6141                       defaux.vda_name = n->version_needed->name_indx;
6142                       _bfd_elf_strtab_addref (elf_hash_table (info)->dynstr,
6143                                               defaux.vda_name);
6144                     }
6145                   if (n->next == NULL)
6146                     defaux.vda_next = 0;
6147                   else
6148                     defaux.vda_next = sizeof (Elf_External_Verdaux);
6149
6150                   _bfd_elf_swap_verdaux_out (output_bfd, &defaux,
6151                                              (Elf_External_Verdaux *) p);
6152                   p += sizeof (Elf_External_Verdaux);
6153                 }
6154             }
6155
6156           if (!_bfd_elf_add_dynamic_entry (info, DT_VERDEF, 0)
6157               || !_bfd_elf_add_dynamic_entry (info, DT_VERDEFNUM, cdefs))
6158             return FALSE;
6159
6160           elf_tdata (output_bfd)->cverdefs = cdefs;
6161         }
6162
6163       if ((info->new_dtags && info->flags) || (info->flags & DF_STATIC_TLS))
6164         {
6165           if (!_bfd_elf_add_dynamic_entry (info, DT_FLAGS, info->flags))
6166             return FALSE;
6167         }
6168       else if (info->flags & DF_BIND_NOW)
6169         {
6170           if (!_bfd_elf_add_dynamic_entry (info, DT_BIND_NOW, 0))
6171             return FALSE;
6172         }
6173
6174       if (info->flags_1)
6175         {
6176           if (info->executable)
6177             info->flags_1 &= ~ (DF_1_INITFIRST
6178                                 | DF_1_NODELETE
6179                                 | DF_1_NOOPEN);
6180           if (!_bfd_elf_add_dynamic_entry (info, DT_FLAGS_1, info->flags_1))
6181             return FALSE;
6182         }
6183
6184       /* Work out the size of the version reference section.  */
6185
6186       s = bfd_get_linker_section (dynobj, ".gnu.version_r");
6187       BFD_ASSERT (s != NULL);
6188       {
6189         struct elf_find_verdep_info sinfo;
6190
6191         sinfo.info = info;
6192         sinfo.vers = elf_tdata (output_bfd)->cverdefs;
6193         if (sinfo.vers == 0)
6194           sinfo.vers = 1;
6195         sinfo.failed = FALSE;
6196
6197         elf_link_hash_traverse (elf_hash_table (info),
6198                                 _bfd_elf_link_find_version_dependencies,
6199                                 &sinfo);
6200         if (sinfo.failed)
6201           return FALSE;
6202
6203         if (elf_tdata (output_bfd)->verref == NULL)
6204           s->flags |= SEC_EXCLUDE;
6205         else
6206           {
6207             Elf_Internal_Verneed *t;
6208             unsigned int size;
6209             unsigned int crefs;
6210             bfd_byte *p;
6211
6212             /* Build the version dependency section.  */
6213             size = 0;
6214             crefs = 0;
6215             for (t = elf_tdata (output_bfd)->verref;
6216                  t != NULL;
6217                  t = t->vn_nextref)
6218               {
6219                 Elf_Internal_Vernaux *a;
6220
6221                 size += sizeof (Elf_External_Verneed);
6222                 ++crefs;
6223                 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
6224                   size += sizeof (Elf_External_Vernaux);
6225               }
6226
6227             s->size = size;
6228             s->contents = (unsigned char *) bfd_alloc (output_bfd, s->size);
6229             if (s->contents == NULL)
6230               return FALSE;
6231
6232             p = s->contents;
6233             for (t = elf_tdata (output_bfd)->verref;
6234                  t != NULL;
6235                  t = t->vn_nextref)
6236               {
6237                 unsigned int caux;
6238                 Elf_Internal_Vernaux *a;
6239                 bfd_size_type indx;
6240
6241                 caux = 0;
6242                 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
6243                   ++caux;
6244
6245                 t->vn_version = VER_NEED_CURRENT;
6246                 t->vn_cnt = caux;
6247                 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
6248                                             elf_dt_name (t->vn_bfd) != NULL
6249                                             ? elf_dt_name (t->vn_bfd)
6250                                             : lbasename (t->vn_bfd->filename),
6251                                             FALSE);
6252                 if (indx == (bfd_size_type) -1)
6253                   return FALSE;
6254                 t->vn_file = indx;
6255                 t->vn_aux = sizeof (Elf_External_Verneed);
6256                 if (t->vn_nextref == NULL)
6257                   t->vn_next = 0;
6258                 else
6259                   t->vn_next = (sizeof (Elf_External_Verneed)
6260                                 + caux * sizeof (Elf_External_Vernaux));
6261
6262                 _bfd_elf_swap_verneed_out (output_bfd, t,
6263                                            (Elf_External_Verneed *) p);
6264                 p += sizeof (Elf_External_Verneed);
6265
6266                 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
6267                   {
6268                     a->vna_hash = bfd_elf_hash (a->vna_nodename);
6269                     indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
6270                                                 a->vna_nodename, FALSE);
6271                     if (indx == (bfd_size_type) -1)
6272                       return FALSE;
6273                     a->vna_name = indx;
6274                     if (a->vna_nextptr == NULL)
6275                       a->vna_next = 0;
6276                     else
6277                       a->vna_next = sizeof (Elf_External_Vernaux);
6278
6279                     _bfd_elf_swap_vernaux_out (output_bfd, a,
6280                                                (Elf_External_Vernaux *) p);
6281                     p += sizeof (Elf_External_Vernaux);
6282                   }
6283               }
6284
6285             if (!_bfd_elf_add_dynamic_entry (info, DT_VERNEED, 0)
6286                 || !_bfd_elf_add_dynamic_entry (info, DT_VERNEEDNUM, crefs))
6287               return FALSE;
6288
6289             elf_tdata (output_bfd)->cverrefs = crefs;
6290           }
6291       }
6292
6293       if ((elf_tdata (output_bfd)->cverrefs == 0
6294            && elf_tdata (output_bfd)->cverdefs == 0)
6295           || _bfd_elf_link_renumber_dynsyms (output_bfd, info,
6296                                              &section_sym_count) == 0)
6297         {
6298           s = bfd_get_linker_section (dynobj, ".gnu.version");
6299           s->flags |= SEC_EXCLUDE;
6300         }
6301     }
6302   return TRUE;
6303 }
6304
6305 /* Find the first non-excluded output section.  We'll use its
6306    section symbol for some emitted relocs.  */
6307 void
6308 _bfd_elf_init_1_index_section (bfd *output_bfd, struct bfd_link_info *info)
6309 {
6310   asection *s;
6311
6312   for (s = output_bfd->sections; s != NULL; s = s->next)
6313     if ((s->flags & (SEC_EXCLUDE | SEC_ALLOC)) == SEC_ALLOC
6314         && !_bfd_elf_link_omit_section_dynsym (output_bfd, info, s))
6315       {
6316         elf_hash_table (info)->text_index_section = s;
6317         break;
6318       }
6319 }
6320
6321 /* Find two non-excluded output sections, one for code, one for data.
6322    We'll use their section symbols for some emitted relocs.  */
6323 void
6324 _bfd_elf_init_2_index_sections (bfd *output_bfd, struct bfd_link_info *info)
6325 {
6326   asection *s;
6327
6328   /* Data first, since setting text_index_section changes
6329      _bfd_elf_link_omit_section_dynsym.  */
6330   for (s = output_bfd->sections; s != NULL; s = s->next)
6331     if (((s->flags & (SEC_EXCLUDE | SEC_ALLOC | SEC_READONLY)) == SEC_ALLOC)
6332         && !_bfd_elf_link_omit_section_dynsym (output_bfd, info, s))
6333       {
6334         elf_hash_table (info)->data_index_section = s;
6335         break;
6336       }
6337
6338   for (s = output_bfd->sections; s != NULL; s = s->next)
6339     if (((s->flags & (SEC_EXCLUDE | SEC_ALLOC | SEC_READONLY))
6340          == (SEC_ALLOC | SEC_READONLY))
6341         && !_bfd_elf_link_omit_section_dynsym (output_bfd, info, s))
6342       {
6343         elf_hash_table (info)->text_index_section = s;
6344         break;
6345       }
6346
6347   if (elf_hash_table (info)->text_index_section == NULL)
6348     elf_hash_table (info)->text_index_section
6349       = elf_hash_table (info)->data_index_section;
6350 }
6351
6352 bfd_boolean
6353 bfd_elf_size_dynsym_hash_dynstr (bfd *output_bfd, struct bfd_link_info *info)
6354 {
6355   const struct elf_backend_data *bed;
6356
6357   if (!is_elf_hash_table (info->hash))
6358     return TRUE;
6359
6360   bed = get_elf_backend_data (output_bfd);
6361   (*bed->elf_backend_init_index_section) (output_bfd, info);
6362
6363   if (elf_hash_table (info)->dynamic_sections_created)
6364     {
6365       bfd *dynobj;
6366       asection *s;
6367       bfd_size_type dynsymcount;
6368       unsigned long section_sym_count;
6369       unsigned int dtagcount;
6370
6371       dynobj = elf_hash_table (info)->dynobj;
6372
6373       /* Assign dynsym indicies.  In a shared library we generate a
6374          section symbol for each output section, which come first.
6375          Next come all of the back-end allocated local dynamic syms,
6376          followed by the rest of the global symbols.  */
6377
6378       dynsymcount = _bfd_elf_link_renumber_dynsyms (output_bfd, info,
6379                                                     &section_sym_count);
6380
6381       /* Work out the size of the symbol version section.  */
6382       s = bfd_get_linker_section (dynobj, ".gnu.version");
6383       BFD_ASSERT (s != NULL);
6384       if (dynsymcount != 0
6385           && (s->flags & SEC_EXCLUDE) == 0)
6386         {
6387           s->size = dynsymcount * sizeof (Elf_External_Versym);
6388           s->contents = (unsigned char *) bfd_zalloc (output_bfd, s->size);
6389           if (s->contents == NULL)
6390             return FALSE;
6391
6392           if (!_bfd_elf_add_dynamic_entry (info, DT_VERSYM, 0))
6393             return FALSE;
6394         }
6395
6396       /* Set the size of the .dynsym and .hash sections.  We counted
6397          the number of dynamic symbols in elf_link_add_object_symbols.
6398          We will build the contents of .dynsym and .hash when we build
6399          the final symbol table, because until then we do not know the
6400          correct value to give the symbols.  We built the .dynstr
6401          section as we went along in elf_link_add_object_symbols.  */
6402       s = bfd_get_linker_section (dynobj, ".dynsym");
6403       BFD_ASSERT (s != NULL);
6404       s->size = dynsymcount * bed->s->sizeof_sym;
6405
6406       if (dynsymcount != 0)
6407         {
6408           s->contents = (unsigned char *) bfd_alloc (output_bfd, s->size);
6409           if (s->contents == NULL)
6410             return FALSE;
6411
6412           /* The first entry in .dynsym is a dummy symbol.
6413              Clear all the section syms, in case we don't output them all.  */
6414           ++section_sym_count;
6415           memset (s->contents, 0, section_sym_count * bed->s->sizeof_sym);
6416         }
6417
6418       elf_hash_table (info)->bucketcount = 0;
6419
6420       /* Compute the size of the hashing table.  As a side effect this
6421          computes the hash values for all the names we export.  */
6422       if (info->emit_hash)
6423         {
6424           unsigned long int *hashcodes;
6425           struct hash_codes_info hashinf;
6426           bfd_size_type amt;
6427           unsigned long int nsyms;
6428           size_t bucketcount;
6429           size_t hash_entry_size;
6430
6431           /* Compute the hash values for all exported symbols.  At the same
6432              time store the values in an array so that we could use them for
6433              optimizations.  */
6434           amt = dynsymcount * sizeof (unsigned long int);
6435           hashcodes = (unsigned long int *) bfd_malloc (amt);
6436           if (hashcodes == NULL)
6437             return FALSE;
6438           hashinf.hashcodes = hashcodes;
6439           hashinf.error = FALSE;
6440
6441           /* Put all hash values in HASHCODES.  */
6442           elf_link_hash_traverse (elf_hash_table (info),
6443                                   elf_collect_hash_codes, &hashinf);
6444           if (hashinf.error)
6445             {
6446               free (hashcodes);
6447               return FALSE;
6448             }
6449
6450           nsyms = hashinf.hashcodes - hashcodes;
6451           bucketcount
6452             = compute_bucket_count (info, hashcodes, nsyms, 0);
6453           free (hashcodes);
6454
6455           if (bucketcount == 0)
6456             return FALSE;
6457
6458           elf_hash_table (info)->bucketcount = bucketcount;
6459
6460           s = bfd_get_linker_section (dynobj, ".hash");
6461           BFD_ASSERT (s != NULL);
6462           hash_entry_size = elf_section_data (s)->this_hdr.sh_entsize;
6463           s->size = ((2 + bucketcount + dynsymcount) * hash_entry_size);
6464           s->contents = (unsigned char *) bfd_zalloc (output_bfd, s->size);
6465           if (s->contents == NULL)
6466             return FALSE;
6467
6468           bfd_put (8 * hash_entry_size, output_bfd, bucketcount, s->contents);
6469           bfd_put (8 * hash_entry_size, output_bfd, dynsymcount,
6470                    s->contents + hash_entry_size);
6471         }
6472
6473       if (info->emit_gnu_hash)
6474         {
6475           size_t i, cnt;
6476           unsigned char *contents;
6477           struct collect_gnu_hash_codes cinfo;
6478           bfd_size_type amt;
6479           size_t bucketcount;
6480
6481           memset (&cinfo, 0, sizeof (cinfo));
6482
6483           /* Compute the hash values for all exported symbols.  At the same
6484              time store the values in an array so that we could use them for
6485              optimizations.  */
6486           amt = dynsymcount * 2 * sizeof (unsigned long int);
6487           cinfo.hashcodes = (long unsigned int *) bfd_malloc (amt);
6488           if (cinfo.hashcodes == NULL)
6489             return FALSE;
6490
6491           cinfo.hashval = cinfo.hashcodes + dynsymcount;
6492           cinfo.min_dynindx = -1;
6493           cinfo.output_bfd = output_bfd;
6494           cinfo.bed = bed;
6495
6496           /* Put all hash values in HASHCODES.  */
6497           elf_link_hash_traverse (elf_hash_table (info),
6498                                   elf_collect_gnu_hash_codes, &cinfo);
6499           if (cinfo.error)
6500             {
6501               free (cinfo.hashcodes);
6502               return FALSE;
6503             }
6504
6505           bucketcount
6506             = compute_bucket_count (info, cinfo.hashcodes, cinfo.nsyms, 1);
6507
6508           if (bucketcount == 0)
6509             {
6510               free (cinfo.hashcodes);
6511               return FALSE;
6512             }
6513
6514           s = bfd_get_linker_section (dynobj, ".gnu.hash");
6515           BFD_ASSERT (s != NULL);
6516
6517           if (cinfo.nsyms == 0)
6518             {
6519               /* Empty .gnu.hash section is special.  */
6520               BFD_ASSERT (cinfo.min_dynindx == -1);
6521               free (cinfo.hashcodes);
6522               s->size = 5 * 4 + bed->s->arch_size / 8;
6523               contents = (unsigned char *) bfd_zalloc (output_bfd, s->size);
6524               if (contents == NULL)
6525                 return FALSE;
6526               s->contents = contents;
6527               /* 1 empty bucket.  */
6528               bfd_put_32 (output_bfd, 1, contents);
6529               /* SYMIDX above the special symbol 0.  */
6530               bfd_put_32 (output_bfd, 1, contents + 4);
6531               /* Just one word for bitmask.  */
6532               bfd_put_32 (output_bfd, 1, contents + 8);
6533               /* Only hash fn bloom filter.  */
6534               bfd_put_32 (output_bfd, 0, contents + 12);
6535               /* No hashes are valid - empty bitmask.  */
6536               bfd_put (bed->s->arch_size, output_bfd, 0, contents + 16);
6537               /* No hashes in the only bucket.  */
6538               bfd_put_32 (output_bfd, 0,
6539                           contents + 16 + bed->s->arch_size / 8);
6540             }
6541           else
6542             {
6543               unsigned long int maskwords, maskbitslog2, x;
6544               BFD_ASSERT (cinfo.min_dynindx != -1);
6545
6546               x = cinfo.nsyms;
6547               maskbitslog2 = 1;
6548               while ((x >>= 1) != 0)
6549                 ++maskbitslog2;
6550               if (maskbitslog2 < 3)
6551                 maskbitslog2 = 5;
6552               else if ((1 << (maskbitslog2 - 2)) & cinfo.nsyms)
6553                 maskbitslog2 = maskbitslog2 + 3;
6554               else
6555                 maskbitslog2 = maskbitslog2 + 2;
6556               if (bed->s->arch_size == 64)
6557                 {
6558                   if (maskbitslog2 == 5)
6559                     maskbitslog2 = 6;
6560                   cinfo.shift1 = 6;
6561                 }
6562               else
6563                 cinfo.shift1 = 5;
6564               cinfo.mask = (1 << cinfo.shift1) - 1;
6565               cinfo.shift2 = maskbitslog2;
6566               cinfo.maskbits = 1 << maskbitslog2;
6567               maskwords = 1 << (maskbitslog2 - cinfo.shift1);
6568               amt = bucketcount * sizeof (unsigned long int) * 2;
6569               amt += maskwords * sizeof (bfd_vma);
6570               cinfo.bitmask = (bfd_vma *) bfd_malloc (amt);
6571               if (cinfo.bitmask == NULL)
6572                 {
6573                   free (cinfo.hashcodes);
6574                   return FALSE;
6575                 }
6576
6577               cinfo.counts = (long unsigned int *) (cinfo.bitmask + maskwords);
6578               cinfo.indx = cinfo.counts + bucketcount;
6579               cinfo.symindx = dynsymcount - cinfo.nsyms;
6580               memset (cinfo.bitmask, 0, maskwords * sizeof (bfd_vma));
6581
6582               /* Determine how often each hash bucket is used.  */
6583               memset (cinfo.counts, 0, bucketcount * sizeof (cinfo.counts[0]));
6584               for (i = 0; i < cinfo.nsyms; ++i)
6585                 ++cinfo.counts[cinfo.hashcodes[i] % bucketcount];
6586
6587               for (i = 0, cnt = cinfo.symindx; i < bucketcount; ++i)
6588                 if (cinfo.counts[i] != 0)
6589                   {
6590                     cinfo.indx[i] = cnt;
6591                     cnt += cinfo.counts[i];
6592                   }
6593               BFD_ASSERT (cnt == dynsymcount);
6594               cinfo.bucketcount = bucketcount;
6595               cinfo.local_indx = cinfo.min_dynindx;
6596
6597               s->size = (4 + bucketcount + cinfo.nsyms) * 4;
6598               s->size += cinfo.maskbits / 8;
6599               contents = (unsigned char *) bfd_zalloc (output_bfd, s->size);
6600               if (contents == NULL)
6601                 {
6602                   free (cinfo.bitmask);
6603                   free (cinfo.hashcodes);
6604                   return FALSE;
6605                 }
6606
6607               s->contents = contents;
6608               bfd_put_32 (output_bfd, bucketcount, contents);
6609               bfd_put_32 (output_bfd, cinfo.symindx, contents + 4);
6610               bfd_put_32 (output_bfd, maskwords, contents + 8);
6611               bfd_put_32 (output_bfd, cinfo.shift2, contents + 12);
6612               contents += 16 + cinfo.maskbits / 8;
6613
6614               for (i = 0; i < bucketcount; ++i)
6615                 {
6616                   if (cinfo.counts[i] == 0)
6617                     bfd_put_32 (output_bfd, 0, contents);
6618                   else
6619                     bfd_put_32 (output_bfd, cinfo.indx[i], contents);
6620                   contents += 4;
6621                 }
6622
6623               cinfo.contents = contents;
6624
6625               /* Renumber dynamic symbols, populate .gnu.hash section.  */
6626               elf_link_hash_traverse (elf_hash_table (info),
6627                                       elf_renumber_gnu_hash_syms, &cinfo);
6628
6629               contents = s->contents + 16;
6630               for (i = 0; i < maskwords; ++i)
6631                 {
6632                   bfd_put (bed->s->arch_size, output_bfd, cinfo.bitmask[i],
6633                            contents);
6634                   contents += bed->s->arch_size / 8;
6635                 }
6636
6637               free (cinfo.bitmask);
6638               free (cinfo.hashcodes);
6639             }
6640         }
6641
6642       s = bfd_get_linker_section (dynobj, ".dynstr");
6643       BFD_ASSERT (s != NULL);
6644
6645       elf_finalize_dynstr (output_bfd, info);
6646
6647       s->size = _bfd_elf_strtab_size (elf_hash_table (info)->dynstr);
6648
6649       for (dtagcount = 0; dtagcount <= info->spare_dynamic_tags; ++dtagcount)
6650         if (!_bfd_elf_add_dynamic_entry (info, DT_NULL, 0))
6651           return FALSE;
6652     }
6653
6654   return TRUE;
6655 }
6656 \f
6657 /* Make sure sec_info_type is cleared if sec_info is cleared too.  */
6658
6659 static void
6660 merge_sections_remove_hook (bfd *abfd ATTRIBUTE_UNUSED,
6661                             asection *sec)
6662 {
6663   BFD_ASSERT (sec->sec_info_type == SEC_INFO_TYPE_MERGE);
6664   sec->sec_info_type = SEC_INFO_TYPE_NONE;
6665 }
6666
6667 /* Finish SHF_MERGE section merging.  */
6668
6669 bfd_boolean
6670 _bfd_elf_merge_sections (bfd *abfd, struct bfd_link_info *info)
6671 {
6672   bfd *ibfd;
6673   asection *sec;
6674
6675   if (!is_elf_hash_table (info->hash))
6676     return FALSE;
6677
6678   for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
6679     if ((ibfd->flags & DYNAMIC) == 0)
6680       for (sec = ibfd->sections; sec != NULL; sec = sec->next)
6681         if ((sec->flags & SEC_MERGE) != 0
6682             && !bfd_is_abs_section (sec->output_section))
6683           {
6684             struct bfd_elf_section_data *secdata;
6685
6686             secdata = elf_section_data (sec);
6687             if (! _bfd_add_merge_section (abfd,
6688                                           &elf_hash_table (info)->merge_info,
6689                                           sec, &secdata->sec_info))
6690               return FALSE;
6691             else if (secdata->sec_info)
6692               sec->sec_info_type = SEC_INFO_TYPE_MERGE;
6693           }
6694
6695   if (elf_hash_table (info)->merge_info != NULL)
6696     _bfd_merge_sections (abfd, info, elf_hash_table (info)->merge_info,
6697                          merge_sections_remove_hook);
6698   return TRUE;
6699 }
6700
6701 /* Create an entry in an ELF linker hash table.  */
6702
6703 struct bfd_hash_entry *
6704 _bfd_elf_link_hash_newfunc (struct bfd_hash_entry *entry,
6705                             struct bfd_hash_table *table,
6706                             const char *string)
6707 {
6708   /* Allocate the structure if it has not already been allocated by a
6709      subclass.  */
6710   if (entry == NULL)
6711     {
6712       entry = (struct bfd_hash_entry *)
6713           bfd_hash_allocate (table, sizeof (struct elf_link_hash_entry));
6714       if (entry == NULL)
6715         return entry;
6716     }
6717
6718   /* Call the allocation method of the superclass.  */
6719   entry = _bfd_link_hash_newfunc (entry, table, string);
6720   if (entry != NULL)
6721     {
6722       struct elf_link_hash_entry *ret = (struct elf_link_hash_entry *) entry;
6723       struct elf_link_hash_table *htab = (struct elf_link_hash_table *) table;
6724
6725       /* Set local fields.  */
6726       ret->indx = -1;
6727       ret->dynindx = -1;
6728       ret->got = htab->init_got_refcount;
6729       ret->plt = htab->init_plt_refcount;
6730       memset (&ret->size, 0, (sizeof (struct elf_link_hash_entry)
6731                               - offsetof (struct elf_link_hash_entry, size)));
6732       /* Assume that we have been called by a non-ELF symbol reader.
6733          This flag is then reset by the code which reads an ELF input
6734          file.  This ensures that a symbol created by a non-ELF symbol
6735          reader will have the flag set correctly.  */
6736       ret->non_elf = 1;
6737     }
6738
6739   return entry;
6740 }
6741
6742 /* Copy data from an indirect symbol to its direct symbol, hiding the
6743    old indirect symbol.  Also used for copying flags to a weakdef.  */
6744
6745 void
6746 _bfd_elf_link_hash_copy_indirect (struct bfd_link_info *info,
6747                                   struct elf_link_hash_entry *dir,
6748                                   struct elf_link_hash_entry *ind)
6749 {
6750   struct elf_link_hash_table *htab;
6751
6752   /* Copy down any references that we may have already seen to the
6753      symbol which just became indirect.  */
6754
6755   dir->ref_dynamic |= ind->ref_dynamic;
6756   dir->ref_regular |= ind->ref_regular;
6757   dir->ref_regular_nonweak |= ind->ref_regular_nonweak;
6758   dir->non_got_ref |= ind->non_got_ref;
6759   dir->needs_plt |= ind->needs_plt;
6760   dir->pointer_equality_needed |= ind->pointer_equality_needed;
6761
6762   if (ind->root.type != bfd_link_hash_indirect)
6763     return;
6764
6765   /* Copy over the global and procedure linkage table refcount entries.
6766      These may have been already set up by a check_relocs routine.  */
6767   htab = elf_hash_table (info);
6768   if (ind->got.refcount > htab->init_got_refcount.refcount)
6769     {
6770       if (dir->got.refcount < 0)
6771         dir->got.refcount = 0;
6772       dir->got.refcount += ind->got.refcount;
6773       ind->got.refcount = htab->init_got_refcount.refcount;
6774     }
6775
6776   if (ind->plt.refcount > htab->init_plt_refcount.refcount)
6777     {
6778       if (dir->plt.refcount < 0)
6779         dir->plt.refcount = 0;
6780       dir->plt.refcount += ind->plt.refcount;
6781       ind->plt.refcount = htab->init_plt_refcount.refcount;
6782     }
6783
6784   if (ind->dynindx != -1)
6785     {
6786       if (dir->dynindx != -1)
6787         _bfd_elf_strtab_delref (htab->dynstr, dir->dynstr_index);
6788       dir->dynindx = ind->dynindx;
6789       dir->dynstr_index = ind->dynstr_index;
6790       ind->dynindx = -1;
6791       ind->dynstr_index = 0;
6792     }
6793 }
6794
6795 void
6796 _bfd_elf_link_hash_hide_symbol (struct bfd_link_info *info,
6797                                 struct elf_link_hash_entry *h,
6798                                 bfd_boolean force_local)
6799 {
6800   /* STT_GNU_IFUNC symbol must go through PLT.  */
6801   if (h->type != STT_GNU_IFUNC)
6802     {
6803       h->plt = elf_hash_table (info)->init_plt_offset;
6804       h->needs_plt = 0;
6805     }
6806   if (force_local)
6807     {
6808       h->forced_local = 1;
6809       if (h->dynindx != -1)
6810         {
6811           h->dynindx = -1;
6812           _bfd_elf_strtab_delref (elf_hash_table (info)->dynstr,
6813                                   h->dynstr_index);
6814         }
6815     }
6816 }
6817
6818 /* Initialize an ELF linker hash table.  *TABLE has been zeroed by our
6819    caller.  */
6820
6821 bfd_boolean
6822 _bfd_elf_link_hash_table_init
6823   (struct elf_link_hash_table *table,
6824    bfd *abfd,
6825    struct bfd_hash_entry *(*newfunc) (struct bfd_hash_entry *,
6826                                       struct bfd_hash_table *,
6827                                       const char *),
6828    unsigned int entsize,
6829    enum elf_target_id target_id)
6830 {
6831   bfd_boolean ret;
6832   int can_refcount = get_elf_backend_data (abfd)->can_refcount;
6833
6834   table->init_got_refcount.refcount = can_refcount - 1;
6835   table->init_plt_refcount.refcount = can_refcount - 1;
6836   table->init_got_offset.offset = -(bfd_vma) 1;
6837   table->init_plt_offset.offset = -(bfd_vma) 1;
6838   /* The first dynamic symbol is a dummy.  */
6839   table->dynsymcount = 1;
6840
6841   ret = _bfd_link_hash_table_init (&table->root, abfd, newfunc, entsize);
6842
6843   table->root.type = bfd_link_elf_hash_table;
6844   table->hash_table_id = target_id;
6845
6846   return ret;
6847 }
6848
6849 /* Create an ELF linker hash table.  */
6850
6851 struct bfd_link_hash_table *
6852 _bfd_elf_link_hash_table_create (bfd *abfd)
6853 {
6854   struct elf_link_hash_table *ret;
6855   bfd_size_type amt = sizeof (struct elf_link_hash_table);
6856
6857   ret = (struct elf_link_hash_table *) bfd_zmalloc (amt);
6858   if (ret == NULL)
6859     return NULL;
6860
6861   if (! _bfd_elf_link_hash_table_init (ret, abfd, _bfd_elf_link_hash_newfunc,
6862                                        sizeof (struct elf_link_hash_entry),
6863                                        GENERIC_ELF_DATA))
6864     {
6865       free (ret);
6866       return NULL;
6867     }
6868   ret->root.hash_table_free = _bfd_elf_link_hash_table_free;
6869
6870   return &ret->root;
6871 }
6872
6873 /* Destroy an ELF linker hash table.  */
6874
6875 void
6876 _bfd_elf_link_hash_table_free (bfd *obfd)
6877 {
6878   struct elf_link_hash_table *htab;
6879
6880   htab = (struct elf_link_hash_table *) obfd->link.hash;
6881   if (htab->dynstr != NULL)
6882     _bfd_elf_strtab_free (htab->dynstr);
6883   _bfd_merge_sections_free (htab->merge_info);
6884   _bfd_generic_link_hash_table_free (obfd);
6885 }
6886
6887 /* This is a hook for the ELF emulation code in the generic linker to
6888    tell the backend linker what file name to use for the DT_NEEDED
6889    entry for a dynamic object.  */
6890
6891 void
6892 bfd_elf_set_dt_needed_name (bfd *abfd, const char *name)
6893 {
6894   if (bfd_get_flavour (abfd) == bfd_target_elf_flavour
6895       && bfd_get_format (abfd) == bfd_object)
6896     elf_dt_name (abfd) = name;
6897 }
6898
6899 int
6900 bfd_elf_get_dyn_lib_class (bfd *abfd)
6901 {
6902   int lib_class;
6903   if (bfd_get_flavour (abfd) == bfd_target_elf_flavour
6904       && bfd_get_format (abfd) == bfd_object)
6905     lib_class = elf_dyn_lib_class (abfd);
6906   else
6907     lib_class = 0;
6908   return lib_class;
6909 }
6910
6911 void
6912 bfd_elf_set_dyn_lib_class (bfd *abfd, enum dynamic_lib_link_class lib_class)
6913 {
6914   if (bfd_get_flavour (abfd) == bfd_target_elf_flavour
6915       && bfd_get_format (abfd) == bfd_object)
6916     elf_dyn_lib_class (abfd) = lib_class;
6917 }
6918
6919 /* Get the list of DT_NEEDED entries for a link.  This is a hook for
6920    the linker ELF emulation code.  */
6921
6922 struct bfd_link_needed_list *
6923 bfd_elf_get_needed_list (bfd *abfd ATTRIBUTE_UNUSED,
6924                          struct bfd_link_info *info)
6925 {
6926   if (! is_elf_hash_table (info->hash))
6927     return NULL;
6928   return elf_hash_table (info)->needed;
6929 }
6930
6931 /* Get the list of DT_RPATH/DT_RUNPATH entries for a link.  This is a
6932    hook for the linker ELF emulation code.  */
6933
6934 struct bfd_link_needed_list *
6935 bfd_elf_get_runpath_list (bfd *abfd ATTRIBUTE_UNUSED,
6936                           struct bfd_link_info *info)
6937 {
6938   if (! is_elf_hash_table (info->hash))
6939     return NULL;
6940   return elf_hash_table (info)->runpath;
6941 }
6942
6943 /* Get the name actually used for a dynamic object for a link.  This
6944    is the SONAME entry if there is one.  Otherwise, it is the string
6945    passed to bfd_elf_set_dt_needed_name, or it is the filename.  */
6946
6947 const char *
6948 bfd_elf_get_dt_soname (bfd *abfd)
6949 {
6950   if (bfd_get_flavour (abfd) == bfd_target_elf_flavour
6951       && bfd_get_format (abfd) == bfd_object)
6952     return elf_dt_name (abfd);
6953   return NULL;
6954 }
6955
6956 /* Get the list of DT_NEEDED entries from a BFD.  This is a hook for
6957    the ELF linker emulation code.  */
6958
6959 bfd_boolean
6960 bfd_elf_get_bfd_needed_list (bfd *abfd,
6961                              struct bfd_link_needed_list **pneeded)
6962 {
6963   asection *s;
6964   bfd_byte *dynbuf = NULL;
6965   unsigned int elfsec;
6966   unsigned long shlink;
6967   bfd_byte *extdyn, *extdynend;
6968   size_t extdynsize;
6969   void (*swap_dyn_in) (bfd *, const void *, Elf_Internal_Dyn *);
6970
6971   *pneeded = NULL;
6972
6973   if (bfd_get_flavour (abfd) != bfd_target_elf_flavour
6974       || bfd_get_format (abfd) != bfd_object)
6975     return TRUE;
6976
6977   s = bfd_get_section_by_name (abfd, ".dynamic");
6978   if (s == NULL || s->size == 0)
6979     return TRUE;
6980
6981   if (!bfd_malloc_and_get_section (abfd, s, &dynbuf))
6982     goto error_return;
6983
6984   elfsec = _bfd_elf_section_from_bfd_section (abfd, s);
6985   if (elfsec == SHN_BAD)
6986     goto error_return;
6987
6988   shlink = elf_elfsections (abfd)[elfsec]->sh_link;
6989
6990   extdynsize = get_elf_backend_data (abfd)->s->sizeof_dyn;
6991   swap_dyn_in = get_elf_backend_data (abfd)->s->swap_dyn_in;
6992
6993   extdyn = dynbuf;
6994   extdynend = extdyn + s->size;
6995   for (; extdyn < extdynend; extdyn += extdynsize)
6996     {
6997       Elf_Internal_Dyn dyn;
6998
6999       (*swap_dyn_in) (abfd, extdyn, &dyn);
7000
7001       if (dyn.d_tag == DT_NULL)
7002         break;
7003
7004       if (dyn.d_tag == DT_NEEDED)
7005         {
7006           const char *string;
7007           struct bfd_link_needed_list *l;
7008           unsigned int tagv = dyn.d_un.d_val;
7009           bfd_size_type amt;
7010
7011           string = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
7012           if (string == NULL)
7013             goto error_return;
7014
7015           amt = sizeof *l;
7016           l = (struct bfd_link_needed_list *) bfd_alloc (abfd, amt);
7017           if (l == NULL)
7018             goto error_return;
7019
7020           l->by = abfd;
7021           l->name = string;
7022           l->next = *pneeded;
7023           *pneeded = l;
7024         }
7025     }
7026
7027   free (dynbuf);
7028
7029   return TRUE;
7030
7031  error_return:
7032   if (dynbuf != NULL)
7033     free (dynbuf);
7034   return FALSE;
7035 }
7036
7037 struct elf_symbuf_symbol
7038 {
7039   unsigned long st_name;        /* Symbol name, index in string tbl */
7040   unsigned char st_info;        /* Type and binding attributes */
7041   unsigned char st_other;       /* Visibilty, and target specific */
7042 };
7043
7044 struct elf_symbuf_head
7045 {
7046   struct elf_symbuf_symbol *ssym;
7047   bfd_size_type count;
7048   unsigned int st_shndx;
7049 };
7050
7051 struct elf_symbol
7052 {
7053   union
7054     {
7055       Elf_Internal_Sym *isym;
7056       struct elf_symbuf_symbol *ssym;
7057     } u;
7058   const char *name;
7059 };
7060
7061 /* Sort references to symbols by ascending section number.  */
7062
7063 static int
7064 elf_sort_elf_symbol (const void *arg1, const void *arg2)
7065 {
7066   const Elf_Internal_Sym *s1 = *(const Elf_Internal_Sym **) arg1;
7067   const Elf_Internal_Sym *s2 = *(const Elf_Internal_Sym **) arg2;
7068
7069   return s1->st_shndx - s2->st_shndx;
7070 }
7071
7072 static int
7073 elf_sym_name_compare (const void *arg1, const void *arg2)
7074 {
7075   const struct elf_symbol *s1 = (const struct elf_symbol *) arg1;
7076   const struct elf_symbol *s2 = (const struct elf_symbol *) arg2;
7077   return strcmp (s1->name, s2->name);
7078 }
7079
7080 static struct elf_symbuf_head *
7081 elf_create_symbuf (bfd_size_type symcount, Elf_Internal_Sym *isymbuf)
7082 {
7083   Elf_Internal_Sym **ind, **indbufend, **indbuf;
7084   struct elf_symbuf_symbol *ssym;
7085   struct elf_symbuf_head *ssymbuf, *ssymhead;
7086   bfd_size_type i, shndx_count, total_size;
7087
7088   indbuf = (Elf_Internal_Sym **) bfd_malloc2 (symcount, sizeof (*indbuf));
7089   if (indbuf == NULL)
7090     return NULL;
7091
7092   for (ind = indbuf, i = 0; i < symcount; i++)
7093     if (isymbuf[i].st_shndx != SHN_UNDEF)
7094       *ind++ = &isymbuf[i];
7095   indbufend = ind;
7096
7097   qsort (indbuf, indbufend - indbuf, sizeof (Elf_Internal_Sym *),
7098          elf_sort_elf_symbol);
7099
7100   shndx_count = 0;
7101   if (indbufend > indbuf)
7102     for (ind = indbuf, shndx_count++; ind < indbufend - 1; ind++)
7103       if (ind[0]->st_shndx != ind[1]->st_shndx)
7104         shndx_count++;
7105
7106   total_size = ((shndx_count + 1) * sizeof (*ssymbuf)
7107                 + (indbufend - indbuf) * sizeof (*ssym));
7108   ssymbuf = (struct elf_symbuf_head *) bfd_malloc (total_size);
7109   if (ssymbuf == NULL)
7110     {
7111       free (indbuf);
7112       return NULL;
7113     }
7114
7115   ssym = (struct elf_symbuf_symbol *) (ssymbuf + shndx_count + 1);
7116   ssymbuf->ssym = NULL;
7117   ssymbuf->count = shndx_count;
7118   ssymbuf->st_shndx = 0;
7119   for (ssymhead = ssymbuf, ind = indbuf; ind < indbufend; ssym++, ind++)
7120     {
7121       if (ind == indbuf || ssymhead->st_shndx != (*ind)->st_shndx)
7122         {
7123           ssymhead++;
7124           ssymhead->ssym = ssym;
7125           ssymhead->count = 0;
7126           ssymhead->st_shndx = (*ind)->st_shndx;
7127         }
7128       ssym->st_name = (*ind)->st_name;
7129       ssym->st_info = (*ind)->st_info;
7130       ssym->st_other = (*ind)->st_other;
7131       ssymhead->count++;
7132     }
7133   BFD_ASSERT ((bfd_size_type) (ssymhead - ssymbuf) == shndx_count
7134               && (((bfd_hostptr_t) ssym - (bfd_hostptr_t) ssymbuf)
7135                   == total_size));
7136
7137   free (indbuf);
7138   return ssymbuf;
7139 }
7140
7141 /* Check if 2 sections define the same set of local and global
7142    symbols.  */
7143
7144 static bfd_boolean
7145 bfd_elf_match_symbols_in_sections (asection *sec1, asection *sec2,
7146                                    struct bfd_link_info *info)
7147 {
7148   bfd *bfd1, *bfd2;
7149   const struct elf_backend_data *bed1, *bed2;
7150   Elf_Internal_Shdr *hdr1, *hdr2;
7151   bfd_size_type symcount1, symcount2;
7152   Elf_Internal_Sym *isymbuf1, *isymbuf2;
7153   struct elf_symbuf_head *ssymbuf1, *ssymbuf2;
7154   Elf_Internal_Sym *isym, *isymend;
7155   struct elf_symbol *symtable1 = NULL, *symtable2 = NULL;
7156   bfd_size_type count1, count2, i;
7157   unsigned int shndx1, shndx2;
7158   bfd_boolean result;
7159
7160   bfd1 = sec1->owner;
7161   bfd2 = sec2->owner;
7162
7163   /* Both sections have to be in ELF.  */
7164   if (bfd_get_flavour (bfd1) != bfd_target_elf_flavour
7165       || bfd_get_flavour (bfd2) != bfd_target_elf_flavour)
7166     return FALSE;
7167
7168   if (elf_section_type (sec1) != elf_section_type (sec2))
7169     return FALSE;
7170
7171   shndx1 = _bfd_elf_section_from_bfd_section (bfd1, sec1);
7172   shndx2 = _bfd_elf_section_from_bfd_section (bfd2, sec2);
7173   if (shndx1 == SHN_BAD || shndx2 == SHN_BAD)
7174     return FALSE;
7175
7176   bed1 = get_elf_backend_data (bfd1);
7177   bed2 = get_elf_backend_data (bfd2);
7178   hdr1 = &elf_tdata (bfd1)->symtab_hdr;
7179   symcount1 = hdr1->sh_size / bed1->s->sizeof_sym;
7180   hdr2 = &elf_tdata (bfd2)->symtab_hdr;
7181   symcount2 = hdr2->sh_size / bed2->s->sizeof_sym;
7182
7183   if (symcount1 == 0 || symcount2 == 0)
7184     return FALSE;
7185
7186   result = FALSE;
7187   isymbuf1 = NULL;
7188   isymbuf2 = NULL;
7189   ssymbuf1 = (struct elf_symbuf_head *) elf_tdata (bfd1)->symbuf;
7190   ssymbuf2 = (struct elf_symbuf_head *) elf_tdata (bfd2)->symbuf;
7191
7192   if (ssymbuf1 == NULL)
7193     {
7194       isymbuf1 = bfd_elf_get_elf_syms (bfd1, hdr1, symcount1, 0,
7195                                        NULL, NULL, NULL);
7196       if (isymbuf1 == NULL)
7197         goto done;
7198
7199       if (!info->reduce_memory_overheads)
7200         elf_tdata (bfd1)->symbuf = ssymbuf1
7201           = elf_create_symbuf (symcount1, isymbuf1);
7202     }
7203
7204   if (ssymbuf1 == NULL || ssymbuf2 == NULL)
7205     {
7206       isymbuf2 = bfd_elf_get_elf_syms (bfd2, hdr2, symcount2, 0,
7207                                        NULL, NULL, NULL);
7208       if (isymbuf2 == NULL)
7209         goto done;
7210
7211       if (ssymbuf1 != NULL && !info->reduce_memory_overheads)
7212         elf_tdata (bfd2)->symbuf = ssymbuf2
7213           = elf_create_symbuf (symcount2, isymbuf2);
7214     }
7215
7216   if (ssymbuf1 != NULL && ssymbuf2 != NULL)
7217     {
7218       /* Optimized faster version.  */
7219       bfd_size_type lo, hi, mid;
7220       struct elf_symbol *symp;
7221       struct elf_symbuf_symbol *ssym, *ssymend;
7222
7223       lo = 0;
7224       hi = ssymbuf1->count;
7225       ssymbuf1++;
7226       count1 = 0;
7227       while (lo < hi)
7228         {
7229           mid = (lo + hi) / 2;
7230           if (shndx1 < ssymbuf1[mid].st_shndx)
7231             hi = mid;
7232           else if (shndx1 > ssymbuf1[mid].st_shndx)
7233             lo = mid + 1;
7234           else
7235             {
7236               count1 = ssymbuf1[mid].count;
7237               ssymbuf1 += mid;
7238               break;
7239             }
7240         }
7241
7242       lo = 0;
7243       hi = ssymbuf2->count;
7244       ssymbuf2++;
7245       count2 = 0;
7246       while (lo < hi)
7247         {
7248           mid = (lo + hi) / 2;
7249           if (shndx2 < ssymbuf2[mid].st_shndx)
7250             hi = mid;
7251           else if (shndx2 > ssymbuf2[mid].st_shndx)
7252             lo = mid + 1;
7253           else
7254             {
7255               count2 = ssymbuf2[mid].count;
7256               ssymbuf2 += mid;
7257               break;
7258             }
7259         }
7260
7261       if (count1 == 0 || count2 == 0 || count1 != count2)
7262         goto done;
7263
7264       symtable1 = (struct elf_symbol *)
7265           bfd_malloc (count1 * sizeof (struct elf_symbol));
7266       symtable2 = (struct elf_symbol *)
7267           bfd_malloc (count2 * sizeof (struct elf_symbol));
7268       if (symtable1 == NULL || symtable2 == NULL)
7269         goto done;
7270
7271       symp = symtable1;
7272       for (ssym = ssymbuf1->ssym, ssymend = ssym + count1;
7273            ssym < ssymend; ssym++, symp++)
7274         {
7275           symp->u.ssym = ssym;
7276           symp->name = bfd_elf_string_from_elf_section (bfd1,
7277                                                         hdr1->sh_link,
7278                                                         ssym->st_name);
7279         }
7280
7281       symp = symtable2;
7282       for (ssym = ssymbuf2->ssym, ssymend = ssym + count2;
7283            ssym < ssymend; ssym++, symp++)
7284         {
7285           symp->u.ssym = ssym;
7286           symp->name = bfd_elf_string_from_elf_section (bfd2,
7287                                                         hdr2->sh_link,
7288                                                         ssym->st_name);
7289         }
7290
7291       /* Sort symbol by name.  */
7292       qsort (symtable1, count1, sizeof (struct elf_symbol),
7293              elf_sym_name_compare);
7294       qsort (symtable2, count1, sizeof (struct elf_symbol),
7295              elf_sym_name_compare);
7296
7297       for (i = 0; i < count1; i++)
7298         /* Two symbols must have the same binding, type and name.  */
7299         if (symtable1 [i].u.ssym->st_info != symtable2 [i].u.ssym->st_info
7300             || symtable1 [i].u.ssym->st_other != symtable2 [i].u.ssym->st_other
7301             || strcmp (symtable1 [i].name, symtable2 [i].name) != 0)
7302           goto done;
7303
7304       result = TRUE;
7305       goto done;
7306     }
7307
7308   symtable1 = (struct elf_symbol *)
7309       bfd_malloc (symcount1 * sizeof (struct elf_symbol));
7310   symtable2 = (struct elf_symbol *)
7311       bfd_malloc (symcount2 * sizeof (struct elf_symbol));
7312   if (symtable1 == NULL || symtable2 == NULL)
7313     goto done;
7314
7315   /* Count definitions in the section.  */
7316   count1 = 0;
7317   for (isym = isymbuf1, isymend = isym + symcount1; isym < isymend; isym++)
7318     if (isym->st_shndx == shndx1)
7319       symtable1[count1++].u.isym = isym;
7320
7321   count2 = 0;
7322   for (isym = isymbuf2, isymend = isym + symcount2; isym < isymend; isym++)
7323     if (isym->st_shndx == shndx2)
7324       symtable2[count2++].u.isym = isym;
7325
7326   if (count1 == 0 || count2 == 0 || count1 != count2)
7327     goto done;
7328
7329   for (i = 0; i < count1; i++)
7330     symtable1[i].name
7331       = bfd_elf_string_from_elf_section (bfd1, hdr1->sh_link,
7332                                          symtable1[i].u.isym->st_name);
7333
7334   for (i = 0; i < count2; i++)
7335     symtable2[i].name
7336       = bfd_elf_string_from_elf_section (bfd2, hdr2->sh_link,
7337                                          symtable2[i].u.isym->st_name);
7338
7339   /* Sort symbol by name.  */
7340   qsort (symtable1, count1, sizeof (struct elf_symbol),
7341          elf_sym_name_compare);
7342   qsort (symtable2, count1, sizeof (struct elf_symbol),
7343          elf_sym_name_compare);
7344
7345   for (i = 0; i < count1; i++)
7346     /* Two symbols must have the same binding, type and name.  */
7347     if (symtable1 [i].u.isym->st_info != symtable2 [i].u.isym->st_info
7348         || symtable1 [i].u.isym->st_other != symtable2 [i].u.isym->st_other
7349         || strcmp (symtable1 [i].name, symtable2 [i].name) != 0)
7350       goto done;
7351
7352   result = TRUE;
7353
7354 done:
7355   if (symtable1)
7356     free (symtable1);
7357   if (symtable2)
7358     free (symtable2);
7359   if (isymbuf1)
7360     free (isymbuf1);
7361   if (isymbuf2)
7362     free (isymbuf2);
7363
7364   return result;
7365 }
7366
7367 /* Return TRUE if 2 section types are compatible.  */
7368
7369 bfd_boolean
7370 _bfd_elf_match_sections_by_type (bfd *abfd, const asection *asec,
7371                                  bfd *bbfd, const asection *bsec)
7372 {
7373   if (asec == NULL
7374       || bsec == NULL
7375       || abfd->xvec->flavour != bfd_target_elf_flavour
7376       || bbfd->xvec->flavour != bfd_target_elf_flavour)
7377     return TRUE;
7378
7379   return elf_section_type (asec) == elf_section_type (bsec);
7380 }
7381 \f
7382 /* Final phase of ELF linker.  */
7383
7384 /* A structure we use to avoid passing large numbers of arguments.  */
7385
7386 struct elf_final_link_info
7387 {
7388   /* General link information.  */
7389   struct bfd_link_info *info;
7390   /* Output BFD.  */
7391   bfd *output_bfd;
7392   /* Symbol string table.  */
7393   struct bfd_strtab_hash *symstrtab;
7394   /* .dynsym section.  */
7395   asection *dynsym_sec;
7396   /* .hash section.  */
7397   asection *hash_sec;
7398   /* symbol version section (.gnu.version).  */
7399   asection *symver_sec;
7400   /* Buffer large enough to hold contents of any section.  */
7401   bfd_byte *contents;
7402   /* Buffer large enough to hold external relocs of any section.  */
7403   void *external_relocs;
7404   /* Buffer large enough to hold internal relocs of any section.  */
7405   Elf_Internal_Rela *internal_relocs;
7406   /* Buffer large enough to hold external local symbols of any input
7407      BFD.  */
7408   bfd_byte *external_syms;
7409   /* And a buffer for symbol section indices.  */
7410   Elf_External_Sym_Shndx *locsym_shndx;
7411   /* Buffer large enough to hold internal local symbols of any input
7412      BFD.  */
7413   Elf_Internal_Sym *internal_syms;
7414   /* Array large enough to hold a symbol index for each local symbol
7415      of any input BFD.  */
7416   long *indices;
7417   /* Array large enough to hold a section pointer for each local
7418      symbol of any input BFD.  */
7419   asection **sections;
7420   /* Buffer to hold swapped out symbols.  */
7421   bfd_byte *symbuf;
7422   /* And one for symbol section indices.  */
7423   Elf_External_Sym_Shndx *symshndxbuf;
7424   /* Number of swapped out symbols in buffer.  */
7425   size_t symbuf_count;
7426   /* Number of symbols which fit in symbuf.  */
7427   size_t symbuf_size;
7428   /* And same for symshndxbuf.  */
7429   size_t shndxbuf_size;
7430   /* Number of STT_FILE syms seen.  */
7431   size_t filesym_count;
7432 };
7433
7434 /* This struct is used to pass information to elf_link_output_extsym.  */
7435
7436 struct elf_outext_info
7437 {
7438   bfd_boolean failed;
7439   bfd_boolean localsyms;
7440   bfd_boolean need_second_pass;
7441   bfd_boolean second_pass;
7442   bfd_boolean file_sym_done;
7443   struct elf_final_link_info *flinfo;
7444 };
7445
7446
7447 /* Support for evaluating a complex relocation.
7448
7449    Complex relocations are generalized, self-describing relocations.  The
7450    implementation of them consists of two parts: complex symbols, and the
7451    relocations themselves.
7452
7453    The relocations are use a reserved elf-wide relocation type code (R_RELC
7454    external / BFD_RELOC_RELC internal) and an encoding of relocation field
7455    information (start bit, end bit, word width, etc) into the addend.  This
7456    information is extracted from CGEN-generated operand tables within gas.
7457
7458    Complex symbols are mangled symbols (BSF_RELC external / STT_RELC
7459    internal) representing prefix-notation expressions, including but not
7460    limited to those sorts of expressions normally encoded as addends in the
7461    addend field.  The symbol mangling format is:
7462
7463    <node> := <literal>
7464           |  <unary-operator> ':' <node>
7465           |  <binary-operator> ':' <node> ':' <node>
7466           ;
7467
7468    <literal> := 's' <digits=N> ':' <N character symbol name>
7469              |  'S' <digits=N> ':' <N character section name>
7470              |  '#' <hexdigits>
7471              ;
7472
7473    <binary-operator> := as in C
7474    <unary-operator> := as in C, plus "0-" for unambiguous negation.  */
7475
7476 static void
7477 set_symbol_value (bfd *bfd_with_globals,
7478                   Elf_Internal_Sym *isymbuf,
7479                   size_t locsymcount,
7480                   size_t symidx,
7481                   bfd_vma val)
7482 {
7483   struct elf_link_hash_entry **sym_hashes;
7484   struct elf_link_hash_entry *h;
7485   size_t extsymoff = locsymcount;
7486
7487   if (symidx < locsymcount)
7488     {
7489       Elf_Internal_Sym *sym;
7490
7491       sym = isymbuf + symidx;
7492       if (ELF_ST_BIND (sym->st_info) == STB_LOCAL)
7493         {
7494           /* It is a local symbol: move it to the
7495              "absolute" section and give it a value.  */
7496           sym->st_shndx = SHN_ABS;
7497           sym->st_value = val;
7498           return;
7499         }
7500       BFD_ASSERT (elf_bad_symtab (bfd_with_globals));
7501       extsymoff = 0;
7502     }
7503
7504   /* It is a global symbol: set its link type
7505      to "defined" and give it a value.  */
7506
7507   sym_hashes = elf_sym_hashes (bfd_with_globals);
7508   h = sym_hashes [symidx - extsymoff];
7509   while (h->root.type == bfd_link_hash_indirect
7510          || h->root.type == bfd_link_hash_warning)
7511     h = (struct elf_link_hash_entry *) h->root.u.i.link;
7512   h->root.type = bfd_link_hash_defined;
7513   h->root.u.def.value = val;
7514   h->root.u.def.section = bfd_abs_section_ptr;
7515 }
7516
7517 static bfd_boolean
7518 resolve_symbol (const char *name,
7519                 bfd *input_bfd,
7520                 struct elf_final_link_info *flinfo,
7521                 bfd_vma *result,
7522                 Elf_Internal_Sym *isymbuf,
7523                 size_t locsymcount)
7524 {
7525   Elf_Internal_Sym *sym;
7526   struct bfd_link_hash_entry *global_entry;
7527   const char *candidate = NULL;
7528   Elf_Internal_Shdr *symtab_hdr;
7529   size_t i;
7530
7531   symtab_hdr = & elf_tdata (input_bfd)->symtab_hdr;
7532
7533   for (i = 0; i < locsymcount; ++ i)
7534     {
7535       sym = isymbuf + i;
7536
7537       if (ELF_ST_BIND (sym->st_info) != STB_LOCAL)
7538         continue;
7539
7540       candidate = bfd_elf_string_from_elf_section (input_bfd,
7541                                                    symtab_hdr->sh_link,
7542                                                    sym->st_name);
7543 #ifdef DEBUG
7544       printf ("Comparing string: '%s' vs. '%s' = 0x%lx\n",
7545               name, candidate, (unsigned long) sym->st_value);
7546 #endif
7547       if (candidate && strcmp (candidate, name) == 0)
7548         {
7549           asection *sec = flinfo->sections [i];
7550
7551           *result = _bfd_elf_rel_local_sym (input_bfd, sym, &sec, 0);
7552           *result += sec->output_offset + sec->output_section->vma;
7553 #ifdef DEBUG
7554           printf ("Found symbol with value %8.8lx\n",
7555                   (unsigned long) *result);
7556 #endif
7557           return TRUE;
7558         }
7559     }
7560
7561   /* Hmm, haven't found it yet. perhaps it is a global.  */
7562   global_entry = bfd_link_hash_lookup (flinfo->info->hash, name,
7563                                        FALSE, FALSE, TRUE);
7564   if (!global_entry)
7565     return FALSE;
7566
7567   if (global_entry->type == bfd_link_hash_defined
7568       || global_entry->type == bfd_link_hash_defweak)
7569     {
7570       *result = (global_entry->u.def.value
7571                  + global_entry->u.def.section->output_section->vma
7572                  + global_entry->u.def.section->output_offset);
7573 #ifdef DEBUG
7574       printf ("Found GLOBAL symbol '%s' with value %8.8lx\n",
7575               global_entry->root.string, (unsigned long) *result);
7576 #endif
7577       return TRUE;
7578     }
7579
7580   return FALSE;
7581 }
7582
7583 static bfd_boolean
7584 resolve_section (const char *name,
7585                  asection *sections,
7586                  bfd_vma *result)
7587 {
7588   asection *curr;
7589   unsigned int len;
7590
7591   for (curr = sections; curr; curr = curr->next)
7592     if (strcmp (curr->name, name) == 0)
7593       {
7594         *result = curr->vma;
7595         return TRUE;
7596       }
7597
7598   /* Hmm. still haven't found it. try pseudo-section names.  */
7599   for (curr = sections; curr; curr = curr->next)
7600     {
7601       len = strlen (curr->name);
7602       if (len > strlen (name))
7603         continue;
7604
7605       if (strncmp (curr->name, name, len) == 0)
7606         {
7607           if (strncmp (".end", name + len, 4) == 0)
7608             {
7609               *result = curr->vma + curr->size;
7610               return TRUE;
7611             }
7612
7613           /* Insert more pseudo-section names here, if you like.  */
7614         }
7615     }
7616
7617   return FALSE;
7618 }
7619
7620 static void
7621 undefined_reference (const char *reftype, const char *name)
7622 {
7623   _bfd_error_handler (_("undefined %s reference in complex symbol: %s"),
7624                       reftype, name);
7625 }
7626
7627 static bfd_boolean
7628 eval_symbol (bfd_vma *result,
7629              const char **symp,
7630              bfd *input_bfd,
7631              struct elf_final_link_info *flinfo,
7632              bfd_vma dot,
7633              Elf_Internal_Sym *isymbuf,
7634              size_t locsymcount,
7635              int signed_p)
7636 {
7637   size_t len;
7638   size_t symlen;
7639   bfd_vma a;
7640   bfd_vma b;
7641   char symbuf[4096];
7642   const char *sym = *symp;
7643   const char *symend;
7644   bfd_boolean symbol_is_section = FALSE;
7645
7646   len = strlen (sym);
7647   symend = sym + len;
7648
7649   if (len < 1 || len > sizeof (symbuf))
7650     {
7651       bfd_set_error (bfd_error_invalid_operation);
7652       return FALSE;
7653     }
7654
7655   switch (* sym)
7656     {
7657     case '.':
7658       *result = dot;
7659       *symp = sym + 1;
7660       return TRUE;
7661
7662     case '#':
7663       ++sym;
7664       *result = strtoul (sym, (char **) symp, 16);
7665       return TRUE;
7666
7667     case 'S':
7668       symbol_is_section = TRUE;
7669     case 's':
7670       ++sym;
7671       symlen = strtol (sym, (char **) symp, 10);
7672       sym = *symp + 1; /* Skip the trailing ':'.  */
7673
7674       if (symend < sym || symlen + 1 > sizeof (symbuf))
7675         {
7676           bfd_set_error (bfd_error_invalid_operation);
7677           return FALSE;
7678         }
7679
7680       memcpy (symbuf, sym, symlen);
7681       symbuf[symlen] = '\0';
7682       *symp = sym + symlen;
7683
7684       /* Is it always possible, with complex symbols, that gas "mis-guessed"
7685          the symbol as a section, or vice-versa. so we're pretty liberal in our
7686          interpretation here; section means "try section first", not "must be a
7687          section", and likewise with symbol.  */
7688
7689       if (symbol_is_section)
7690         {
7691           if (!resolve_section (symbuf, flinfo->output_bfd->sections, result)
7692               && !resolve_symbol (symbuf, input_bfd, flinfo, result,
7693                                   isymbuf, locsymcount))
7694             {
7695               undefined_reference ("section", symbuf);
7696               return FALSE;
7697             }
7698         }
7699       else
7700         {
7701           if (!resolve_symbol (symbuf, input_bfd, flinfo, result,
7702                                isymbuf, locsymcount)
7703               && !resolve_section (symbuf, flinfo->output_bfd->sections,
7704                                    result))
7705             {
7706               undefined_reference ("symbol", symbuf);
7707               return FALSE;
7708             }
7709         }
7710
7711       return TRUE;
7712
7713       /* All that remains are operators.  */
7714
7715 #define UNARY_OP(op)                                            \
7716   if (strncmp (sym, #op, strlen (#op)) == 0)                    \
7717     {                                                           \
7718       sym += strlen (#op);                                      \
7719       if (*sym == ':')                                          \
7720         ++sym;                                                  \
7721       *symp = sym;                                              \
7722       if (!eval_symbol (&a, symp, input_bfd, flinfo, dot,       \
7723                         isymbuf, locsymcount, signed_p))        \
7724         return FALSE;                                           \
7725       if (signed_p)                                             \
7726         *result = op ((bfd_signed_vma) a);                      \
7727       else                                                      \
7728         *result = op a;                                         \
7729       return TRUE;                                              \
7730     }
7731
7732 #define BINARY_OP(op)                                           \
7733   if (strncmp (sym, #op, strlen (#op)) == 0)                    \
7734     {                                                           \
7735       sym += strlen (#op);                                      \
7736       if (*sym == ':')                                          \
7737         ++sym;                                                  \
7738       *symp = sym;                                              \
7739       if (!eval_symbol (&a, symp, input_bfd, flinfo, dot,       \
7740                         isymbuf, locsymcount, signed_p))        \
7741         return FALSE;                                           \
7742       ++*symp;                                                  \
7743       if (!eval_symbol (&b, symp, input_bfd, flinfo, dot,       \
7744                         isymbuf, locsymcount, signed_p))        \
7745         return FALSE;                                           \
7746       if (signed_p)                                             \
7747         *result = ((bfd_signed_vma) a) op ((bfd_signed_vma) b); \
7748       else                                                      \
7749         *result = a op b;                                       \
7750       return TRUE;                                              \
7751     }
7752
7753     default:
7754       UNARY_OP  (0-);
7755       BINARY_OP (<<);
7756       BINARY_OP (>>);
7757       BINARY_OP (==);
7758       BINARY_OP (!=);
7759       BINARY_OP (<=);
7760       BINARY_OP (>=);
7761       BINARY_OP (&&);
7762       BINARY_OP (||);
7763       UNARY_OP  (~);
7764       UNARY_OP  (!);
7765       BINARY_OP (*);
7766       BINARY_OP (/);
7767       BINARY_OP (%);
7768       BINARY_OP (^);
7769       BINARY_OP (|);
7770       BINARY_OP (&);
7771       BINARY_OP (+);
7772       BINARY_OP (-);
7773       BINARY_OP (<);
7774       BINARY_OP (>);
7775 #undef UNARY_OP
7776 #undef BINARY_OP
7777       _bfd_error_handler (_("unknown operator '%c' in complex symbol"), * sym);
7778       bfd_set_error (bfd_error_invalid_operation);
7779       return FALSE;
7780     }
7781 }
7782
7783 static void
7784 put_value (bfd_vma size,
7785            unsigned long chunksz,
7786            bfd *input_bfd,
7787            bfd_vma x,
7788            bfd_byte *location)
7789 {
7790   location += (size - chunksz);
7791
7792   for (; size; size -= chunksz, location -= chunksz, x >>= (chunksz * 8))
7793     {
7794       switch (chunksz)
7795         {
7796         default:
7797         case 0:
7798           abort ();
7799         case 1:
7800           bfd_put_8 (input_bfd, x, location);
7801           break;
7802         case 2:
7803           bfd_put_16 (input_bfd, x, location);
7804           break;
7805         case 4:
7806           bfd_put_32 (input_bfd, x, location);
7807           break;
7808         case 8:
7809 #ifdef BFD64
7810           bfd_put_64 (input_bfd, x, location);
7811 #else
7812           abort ();
7813 #endif
7814           break;
7815         }
7816     }
7817 }
7818
7819 static bfd_vma
7820 get_value (bfd_vma size,
7821            unsigned long chunksz,
7822            bfd *input_bfd,
7823            bfd_byte *location)
7824 {
7825   int shift;
7826   bfd_vma x = 0;
7827
7828   /* Sanity checks.  */
7829   BFD_ASSERT (chunksz <= sizeof (x)
7830               && size >= chunksz
7831               && chunksz != 0
7832               && (size % chunksz) == 0
7833               && input_bfd != NULL
7834               && location != NULL);
7835
7836   if (chunksz == sizeof (x))
7837     {
7838       BFD_ASSERT (size == chunksz);
7839
7840       /* Make sure that we do not perform an undefined shift operation.
7841          We know that size == chunksz so there will only be one iteration
7842          of the loop below.  */
7843       shift = 0;
7844     }
7845   else
7846     shift = 8 * chunksz;
7847
7848   for (; size; size -= chunksz, location += chunksz)
7849     {
7850       switch (chunksz)
7851         {
7852         case 1:
7853           x = (x << shift) | bfd_get_8 (input_bfd, location);
7854           break;
7855         case 2:
7856           x = (x << shift) | bfd_get_16 (input_bfd, location);
7857           break;
7858         case 4:
7859           x = (x << shift) | bfd_get_32 (input_bfd, location);
7860           break;
7861 #ifdef BFD64
7862         case 8:
7863           x = (x << shift) | bfd_get_64 (input_bfd, location);
7864           break;
7865 #endif
7866         default:
7867           abort ();
7868         }
7869     }
7870   return x;
7871 }
7872
7873 static void
7874 decode_complex_addend (unsigned long *start,   /* in bits */
7875                        unsigned long *oplen,   /* in bits */
7876                        unsigned long *len,     /* in bits */
7877                        unsigned long *wordsz,  /* in bytes */
7878                        unsigned long *chunksz, /* in bytes */
7879                        unsigned long *lsb0_p,
7880                        unsigned long *signed_p,
7881                        unsigned long *trunc_p,
7882                        unsigned long encoded)
7883 {
7884   * start     =  encoded        & 0x3F;
7885   * len       = (encoded >>  6) & 0x3F;
7886   * oplen     = (encoded >> 12) & 0x3F;
7887   * wordsz    = (encoded >> 18) & 0xF;
7888   * chunksz   = (encoded >> 22) & 0xF;
7889   * lsb0_p    = (encoded >> 27) & 1;
7890   * signed_p  = (encoded >> 28) & 1;
7891   * trunc_p   = (encoded >> 29) & 1;
7892 }
7893
7894 bfd_reloc_status_type
7895 bfd_elf_perform_complex_relocation (bfd *input_bfd,
7896                                     asection *input_section ATTRIBUTE_UNUSED,
7897                                     bfd_byte *contents,
7898                                     Elf_Internal_Rela *rel,
7899                                     bfd_vma relocation)
7900 {
7901   bfd_vma shift, x, mask;
7902   unsigned long start, oplen, len, wordsz, chunksz, lsb0_p, signed_p, trunc_p;
7903   bfd_reloc_status_type r;
7904
7905   /*  Perform this reloc, since it is complex.
7906       (this is not to say that it necessarily refers to a complex
7907       symbol; merely that it is a self-describing CGEN based reloc.
7908       i.e. the addend has the complete reloc information (bit start, end,
7909       word size, etc) encoded within it.).  */
7910
7911   decode_complex_addend (&start, &oplen, &len, &wordsz,
7912                          &chunksz, &lsb0_p, &signed_p,
7913                          &trunc_p, rel->r_addend);
7914
7915   mask = (((1L << (len - 1)) - 1) << 1) | 1;
7916
7917   if (lsb0_p)
7918     shift = (start + 1) - len;
7919   else
7920     shift = (8 * wordsz) - (start + len);
7921
7922   /* FIXME: octets_per_byte.  */
7923   x = get_value (wordsz, chunksz, input_bfd, contents + rel->r_offset);
7924
7925 #ifdef DEBUG
7926   printf ("Doing complex reloc: "
7927           "lsb0? %ld, signed? %ld, trunc? %ld, wordsz %ld, "
7928           "chunksz %ld, start %ld, len %ld, oplen %ld\n"
7929           "    dest: %8.8lx, mask: %8.8lx, reloc: %8.8lx\n",
7930           lsb0_p, signed_p, trunc_p, wordsz, chunksz, start, len,
7931           oplen, (unsigned long) x, (unsigned long) mask,
7932           (unsigned long) relocation);
7933 #endif
7934
7935   r = bfd_reloc_ok;
7936   if (! trunc_p)
7937     /* Now do an overflow check.  */
7938     r = bfd_check_overflow ((signed_p
7939                              ? complain_overflow_signed
7940                              : complain_overflow_unsigned),
7941                             len, 0, (8 * wordsz),
7942                             relocation);
7943
7944   /* Do the deed.  */
7945   x = (x & ~(mask << shift)) | ((relocation & mask) << shift);
7946
7947 #ifdef DEBUG
7948   printf ("           relocation: %8.8lx\n"
7949           "         shifted mask: %8.8lx\n"
7950           " shifted/masked reloc: %8.8lx\n"
7951           "               result: %8.8lx\n",
7952           (unsigned long) relocation, (unsigned long) (mask << shift),
7953           (unsigned long) ((relocation & mask) << shift), (unsigned long) x);
7954 #endif
7955   /* FIXME: octets_per_byte.  */
7956   put_value (wordsz, chunksz, input_bfd, x, contents + rel->r_offset);
7957   return r;
7958 }
7959
7960 /* When performing a relocatable link, the input relocations are
7961    preserved.  But, if they reference global symbols, the indices
7962    referenced must be updated.  Update all the relocations found in
7963    RELDATA.  */
7964
7965 static void
7966 elf_link_adjust_relocs (bfd *abfd,
7967                         struct bfd_elf_section_reloc_data *reldata)
7968 {
7969   unsigned int i;
7970   const struct elf_backend_data *bed = get_elf_backend_data (abfd);
7971   bfd_byte *erela;
7972   void (*swap_in) (bfd *, const bfd_byte *, Elf_Internal_Rela *);
7973   void (*swap_out) (bfd *, const Elf_Internal_Rela *, bfd_byte *);
7974   bfd_vma r_type_mask;
7975   int r_sym_shift;
7976   unsigned int count = reldata->count;
7977   struct elf_link_hash_entry **rel_hash = reldata->hashes;
7978
7979   if (reldata->hdr->sh_entsize == bed->s->sizeof_rel)
7980     {
7981       swap_in = bed->s->swap_reloc_in;
7982       swap_out = bed->s->swap_reloc_out;
7983     }
7984   else if (reldata->hdr->sh_entsize == bed->s->sizeof_rela)
7985     {
7986       swap_in = bed->s->swap_reloca_in;
7987       swap_out = bed->s->swap_reloca_out;
7988     }
7989   else
7990     abort ();
7991
7992   if (bed->s->int_rels_per_ext_rel > MAX_INT_RELS_PER_EXT_REL)
7993     abort ();
7994
7995   if (bed->s->arch_size == 32)
7996     {
7997       r_type_mask = 0xff;
7998       r_sym_shift = 8;
7999     }
8000   else
8001     {
8002       r_type_mask = 0xffffffff;
8003       r_sym_shift = 32;
8004     }
8005
8006   erela = reldata->hdr->contents;
8007   for (i = 0; i < count; i++, rel_hash++, erela += reldata->hdr->sh_entsize)
8008     {
8009       Elf_Internal_Rela irela[MAX_INT_RELS_PER_EXT_REL];
8010       unsigned int j;
8011
8012       if (*rel_hash == NULL)
8013         continue;
8014
8015       BFD_ASSERT ((*rel_hash)->indx >= 0);
8016
8017       (*swap_in) (abfd, erela, irela);
8018       for (j = 0; j < bed->s->int_rels_per_ext_rel; j++)
8019         irela[j].r_info = ((bfd_vma) (*rel_hash)->indx << r_sym_shift
8020                            | (irela[j].r_info & r_type_mask));
8021       (*swap_out) (abfd, irela, erela);
8022     }
8023 }
8024
8025 struct elf_link_sort_rela
8026 {
8027   union {
8028     bfd_vma offset;
8029     bfd_vma sym_mask;
8030   } u;
8031   enum elf_reloc_type_class type;
8032   /* We use this as an array of size int_rels_per_ext_rel.  */
8033   Elf_Internal_Rela rela[1];
8034 };
8035
8036 static int
8037 elf_link_sort_cmp1 (const void *A, const void *B)
8038 {
8039   const struct elf_link_sort_rela *a = (const struct elf_link_sort_rela *) A;
8040   const struct elf_link_sort_rela *b = (const struct elf_link_sort_rela *) B;
8041   int relativea, relativeb;
8042
8043   relativea = a->type == reloc_class_relative;
8044   relativeb = b->type == reloc_class_relative;
8045
8046   if (relativea < relativeb)
8047     return 1;
8048   if (relativea > relativeb)
8049     return -1;
8050   if ((a->rela->r_info & a->u.sym_mask) < (b->rela->r_info & b->u.sym_mask))
8051     return -1;
8052   if ((a->rela->r_info & a->u.sym_mask) > (b->rela->r_info & b->u.sym_mask))
8053     return 1;
8054   if (a->rela->r_offset < b->rela->r_offset)
8055     return -1;
8056   if (a->rela->r_offset > b->rela->r_offset)
8057     return 1;
8058   return 0;
8059 }
8060
8061 static int
8062 elf_link_sort_cmp2 (const void *A, const void *B)
8063 {
8064   const struct elf_link_sort_rela *a = (const struct elf_link_sort_rela *) A;
8065   const struct elf_link_sort_rela *b = (const struct elf_link_sort_rela *) B;
8066
8067   if (a->type < b->type)
8068     return -1;
8069   if (a->type > b->type)
8070     return 1;
8071   if (a->u.offset < b->u.offset)
8072     return -1;
8073   if (a->u.offset > b->u.offset)
8074     return 1;
8075   if (a->rela->r_offset < b->rela->r_offset)
8076     return -1;
8077   if (a->rela->r_offset > b->rela->r_offset)
8078     return 1;
8079   return 0;
8080 }
8081
8082 static size_t
8083 elf_link_sort_relocs (bfd *abfd, struct bfd_link_info *info, asection **psec)
8084 {
8085   asection *dynamic_relocs;
8086   asection *rela_dyn;
8087   asection *rel_dyn;
8088   bfd_size_type count, size;
8089   size_t i, ret, sort_elt, ext_size;
8090   bfd_byte *sort, *s_non_relative, *p;
8091   struct elf_link_sort_rela *sq;
8092   const struct elf_backend_data *bed = get_elf_backend_data (abfd);
8093   int i2e = bed->s->int_rels_per_ext_rel;
8094   void (*swap_in) (bfd *, const bfd_byte *, Elf_Internal_Rela *);
8095   void (*swap_out) (bfd *, const Elf_Internal_Rela *, bfd_byte *);
8096   struct bfd_link_order *lo;
8097   bfd_vma r_sym_mask;
8098   bfd_boolean use_rela;
8099
8100   /* Find a dynamic reloc section.  */
8101   rela_dyn = bfd_get_section_by_name (abfd, ".rela.dyn");
8102   rel_dyn  = bfd_get_section_by_name (abfd, ".rel.dyn");
8103   if (rela_dyn != NULL && rela_dyn->size > 0
8104       && rel_dyn != NULL && rel_dyn->size > 0)
8105     {
8106       bfd_boolean use_rela_initialised = FALSE;
8107
8108       /* This is just here to stop gcc from complaining.
8109          It's initialization checking code is not perfect.  */
8110       use_rela = TRUE;
8111
8112       /* Both sections are present.  Examine the sizes
8113          of the indirect sections to help us choose.  */
8114       for (lo = rela_dyn->map_head.link_order; lo != NULL; lo = lo->next)
8115         if (lo->type == bfd_indirect_link_order)
8116           {
8117             asection *o = lo->u.indirect.section;
8118
8119             if ((o->size % bed->s->sizeof_rela) == 0)
8120               {
8121                 if ((o->size % bed->s->sizeof_rel) == 0)
8122                   /* Section size is divisible by both rel and rela sizes.
8123                      It is of no help to us.  */
8124                   ;
8125                 else
8126                   {
8127                     /* Section size is only divisible by rela.  */
8128                     if (use_rela_initialised && (use_rela == FALSE))
8129                       {
8130                         _bfd_error_handler
8131                           (_("%B: Unable to sort relocs - they are in more than one size"), abfd);
8132                         bfd_set_error (bfd_error_invalid_operation);
8133                         return 0;
8134                       }
8135                     else
8136                       {
8137                         use_rela = TRUE;
8138                         use_rela_initialised = TRUE;
8139                       }
8140                   }
8141               }
8142             else if ((o->size % bed->s->sizeof_rel) == 0)
8143               {
8144                 /* Section size is only divisible by rel.  */
8145                 if (use_rela_initialised && (use_rela == TRUE))
8146                   {
8147                     _bfd_error_handler
8148                       (_("%B: Unable to sort relocs - they are in more than one size"), abfd);
8149                     bfd_set_error (bfd_error_invalid_operation);
8150                     return 0;
8151                   }
8152                 else
8153                   {
8154                     use_rela = FALSE;
8155                     use_rela_initialised = TRUE;
8156                   }
8157               }
8158             else
8159               {
8160                 /* The section size is not divisible by either - something is wrong.  */
8161                 _bfd_error_handler
8162                   (_("%B: Unable to sort relocs - they are of an unknown size"), abfd);
8163                 bfd_set_error (bfd_error_invalid_operation);
8164                 return 0;
8165               }
8166           }
8167
8168       for (lo = rel_dyn->map_head.link_order; lo != NULL; lo = lo->next)
8169         if (lo->type == bfd_indirect_link_order)
8170           {
8171             asection *o = lo->u.indirect.section;
8172
8173             if ((o->size % bed->s->sizeof_rela) == 0)
8174               {
8175                 if ((o->size % bed->s->sizeof_rel) == 0)
8176                   /* Section size is divisible by both rel and rela sizes.
8177                      It is of no help to us.  */
8178                   ;
8179                 else
8180                   {
8181                     /* Section size is only divisible by rela.  */
8182                     if (use_rela_initialised && (use_rela == FALSE))
8183                       {
8184                         _bfd_error_handler
8185                           (_("%B: Unable to sort relocs - they are in more than one size"), abfd);
8186                         bfd_set_error (bfd_error_invalid_operation);
8187                         return 0;
8188                       }
8189                     else
8190                       {
8191                         use_rela = TRUE;
8192                         use_rela_initialised = TRUE;
8193                       }
8194                   }
8195               }
8196             else if ((o->size % bed->s->sizeof_rel) == 0)
8197               {
8198                 /* Section size is only divisible by rel.  */
8199                 if (use_rela_initialised && (use_rela == TRUE))
8200                   {
8201                     _bfd_error_handler
8202                       (_("%B: Unable to sort relocs - they are in more than one size"), abfd);
8203                     bfd_set_error (bfd_error_invalid_operation);
8204                     return 0;
8205                   }
8206                 else
8207                   {
8208                     use_rela = FALSE;
8209                     use_rela_initialised = TRUE;
8210                   }
8211               }
8212             else
8213               {
8214                 /* The section size is not divisible by either - something is wrong.  */
8215                 _bfd_error_handler
8216                   (_("%B: Unable to sort relocs - they are of an unknown size"), abfd);
8217                 bfd_set_error (bfd_error_invalid_operation);
8218                 return 0;
8219               }
8220           }
8221
8222       if (! use_rela_initialised)
8223         /* Make a guess.  */
8224         use_rela = TRUE;
8225     }
8226   else if (rela_dyn != NULL && rela_dyn->size > 0)
8227     use_rela = TRUE;
8228   else if (rel_dyn != NULL && rel_dyn->size > 0)
8229     use_rela = FALSE;
8230   else
8231     return 0;
8232
8233   if (use_rela)
8234     {
8235       dynamic_relocs = rela_dyn;
8236       ext_size = bed->s->sizeof_rela;
8237       swap_in = bed->s->swap_reloca_in;
8238       swap_out = bed->s->swap_reloca_out;
8239     }
8240   else
8241     {
8242       dynamic_relocs = rel_dyn;
8243       ext_size = bed->s->sizeof_rel;
8244       swap_in = bed->s->swap_reloc_in;
8245       swap_out = bed->s->swap_reloc_out;
8246     }
8247
8248   size = 0;
8249   for (lo = dynamic_relocs->map_head.link_order; lo != NULL; lo = lo->next)
8250     if (lo->type == bfd_indirect_link_order)
8251       size += lo->u.indirect.section->size;
8252
8253   if (size != dynamic_relocs->size)
8254     return 0;
8255
8256   sort_elt = (sizeof (struct elf_link_sort_rela)
8257               + (i2e - 1) * sizeof (Elf_Internal_Rela));
8258
8259   count = dynamic_relocs->size / ext_size;
8260   if (count == 0)
8261     return 0;
8262   sort = (bfd_byte *) bfd_zmalloc (sort_elt * count);
8263
8264   if (sort == NULL)
8265     {
8266       (*info->callbacks->warning)
8267         (info, _("Not enough memory to sort relocations"), 0, abfd, 0, 0);
8268       return 0;
8269     }
8270
8271   if (bed->s->arch_size == 32)
8272     r_sym_mask = ~(bfd_vma) 0xff;
8273   else
8274     r_sym_mask = ~(bfd_vma) 0xffffffff;
8275
8276   for (lo = dynamic_relocs->map_head.link_order; lo != NULL; lo = lo->next)
8277     if (lo->type == bfd_indirect_link_order)
8278       {
8279         bfd_byte *erel, *erelend;
8280         asection *o = lo->u.indirect.section;
8281
8282         if (o->contents == NULL && o->size != 0)
8283           {
8284             /* This is a reloc section that is being handled as a normal
8285                section.  See bfd_section_from_shdr.  We can't combine
8286                relocs in this case.  */
8287             free (sort);
8288             return 0;
8289           }
8290         erel = o->contents;
8291         erelend = o->contents + o->size;
8292         /* FIXME: octets_per_byte.  */
8293         p = sort + o->output_offset / ext_size * sort_elt;
8294
8295         while (erel < erelend)
8296           {
8297             struct elf_link_sort_rela *s = (struct elf_link_sort_rela *) p;
8298
8299             (*swap_in) (abfd, erel, s->rela);
8300             s->type = (*bed->elf_backend_reloc_type_class) (info, o, s->rela);
8301             s->u.sym_mask = r_sym_mask;
8302             p += sort_elt;
8303             erel += ext_size;
8304           }
8305       }
8306
8307   qsort (sort, count, sort_elt, elf_link_sort_cmp1);
8308
8309   for (i = 0, p = sort; i < count; i++, p += sort_elt)
8310     {
8311       struct elf_link_sort_rela *s = (struct elf_link_sort_rela *) p;
8312       if (s->type != reloc_class_relative)
8313         break;
8314     }
8315   ret = i;
8316   s_non_relative = p;
8317
8318   sq = (struct elf_link_sort_rela *) s_non_relative;
8319   for (; i < count; i++, p += sort_elt)
8320     {
8321       struct elf_link_sort_rela *sp = (struct elf_link_sort_rela *) p;
8322       if (((sp->rela->r_info ^ sq->rela->r_info) & r_sym_mask) != 0)
8323         sq = sp;
8324       sp->u.offset = sq->rela->r_offset;
8325     }
8326
8327   qsort (s_non_relative, count - ret, sort_elt, elf_link_sort_cmp2);
8328
8329   for (lo = dynamic_relocs->map_head.link_order; lo != NULL; lo = lo->next)
8330     if (lo->type == bfd_indirect_link_order)
8331       {
8332         bfd_byte *erel, *erelend;
8333         asection *o = lo->u.indirect.section;
8334
8335         erel = o->contents;
8336         erelend = o->contents + o->size;
8337         /* FIXME: octets_per_byte.  */
8338         p = sort + o->output_offset / ext_size * sort_elt;
8339         while (erel < erelend)
8340           {
8341             struct elf_link_sort_rela *s = (struct elf_link_sort_rela *) p;
8342             (*swap_out) (abfd, s->rela, erel);
8343             p += sort_elt;
8344             erel += ext_size;
8345           }
8346       }
8347
8348   free (sort);
8349   *psec = dynamic_relocs;
8350   return ret;
8351 }
8352
8353 /* Flush the output symbols to the file.  */
8354
8355 static bfd_boolean
8356 elf_link_flush_output_syms (struct elf_final_link_info *flinfo,
8357                             const struct elf_backend_data *bed)
8358 {
8359   if (flinfo->symbuf_count > 0)
8360     {
8361       Elf_Internal_Shdr *hdr;
8362       file_ptr pos;
8363       bfd_size_type amt;
8364
8365       hdr = &elf_tdata (flinfo->output_bfd)->symtab_hdr;
8366       pos = hdr->sh_offset + hdr->sh_size;
8367       amt = flinfo->symbuf_count * bed->s->sizeof_sym;
8368       if (bfd_seek (flinfo->output_bfd, pos, SEEK_SET) != 0
8369           || bfd_bwrite (flinfo->symbuf, amt, flinfo->output_bfd) != amt)
8370         return FALSE;
8371
8372       hdr->sh_size += amt;
8373       flinfo->symbuf_count = 0;
8374     }
8375
8376   return TRUE;
8377 }
8378
8379 /* Add a symbol to the output symbol table.  */
8380
8381 static int
8382 elf_link_output_sym (struct elf_final_link_info *flinfo,
8383                      const char *name,
8384                      Elf_Internal_Sym *elfsym,
8385                      asection *input_sec,
8386                      struct elf_link_hash_entry *h)
8387 {
8388   bfd_byte *dest;
8389   Elf_External_Sym_Shndx *destshndx;
8390   int (*output_symbol_hook)
8391     (struct bfd_link_info *, const char *, Elf_Internal_Sym *, asection *,
8392      struct elf_link_hash_entry *);
8393   const struct elf_backend_data *bed;
8394
8395   BFD_ASSERT (elf_onesymtab (flinfo->output_bfd));
8396
8397   bed = get_elf_backend_data (flinfo->output_bfd);
8398   output_symbol_hook = bed->elf_backend_link_output_symbol_hook;
8399   if (output_symbol_hook != NULL)
8400     {
8401       int ret = (*output_symbol_hook) (flinfo->info, name, elfsym, input_sec, h);
8402       if (ret != 1)
8403         return ret;
8404     }
8405
8406   if (name == NULL || *name == '\0')
8407     elfsym->st_name = 0;
8408   else if (input_sec->flags & SEC_EXCLUDE)
8409     elfsym->st_name = 0;
8410   else
8411     {
8412       elfsym->st_name = (unsigned long) _bfd_stringtab_add (flinfo->symstrtab,
8413                                                             name, TRUE, FALSE);
8414       if (elfsym->st_name == (unsigned long) -1)
8415         return 0;
8416     }
8417
8418   if (flinfo->symbuf_count >= flinfo->symbuf_size)
8419     {
8420       if (! elf_link_flush_output_syms (flinfo, bed))
8421         return 0;
8422     }
8423
8424   dest = flinfo->symbuf + flinfo->symbuf_count * bed->s->sizeof_sym;
8425   destshndx = flinfo->symshndxbuf;
8426   if (destshndx != NULL)
8427     {
8428       if (bfd_get_symcount (flinfo->output_bfd) >= flinfo->shndxbuf_size)
8429         {
8430           bfd_size_type amt;
8431
8432           amt = flinfo->shndxbuf_size * sizeof (Elf_External_Sym_Shndx);
8433           destshndx = (Elf_External_Sym_Shndx *) bfd_realloc (destshndx,
8434                                                               amt * 2);
8435           if (destshndx == NULL)
8436             return 0;
8437           flinfo->symshndxbuf = destshndx;
8438           memset ((char *) destshndx + amt, 0, amt);
8439           flinfo->shndxbuf_size *= 2;
8440         }
8441       destshndx += bfd_get_symcount (flinfo->output_bfd);
8442     }
8443
8444   bed->s->swap_symbol_out (flinfo->output_bfd, elfsym, dest, destshndx);
8445   flinfo->symbuf_count += 1;
8446   bfd_get_symcount (flinfo->output_bfd) += 1;
8447
8448   return 1;
8449 }
8450
8451 /* Return TRUE if the dynamic symbol SYM in ABFD is supported.  */
8452
8453 static bfd_boolean
8454 check_dynsym (bfd *abfd, Elf_Internal_Sym *sym)
8455 {
8456   if (sym->st_shndx >= (SHN_LORESERVE & 0xffff)
8457       && sym->st_shndx < SHN_LORESERVE)
8458     {
8459       /* The gABI doesn't support dynamic symbols in output sections
8460          beyond 64k.  */
8461       (*_bfd_error_handler)
8462         (_("%B: Too many sections: %d (>= %d)"),
8463          abfd, bfd_count_sections (abfd), SHN_LORESERVE & 0xffff);
8464       bfd_set_error (bfd_error_nonrepresentable_section);
8465       return FALSE;
8466     }
8467   return TRUE;
8468 }
8469
8470 /* For DSOs loaded in via a DT_NEEDED entry, emulate ld.so in
8471    allowing an unsatisfied unversioned symbol in the DSO to match a
8472    versioned symbol that would normally require an explicit version.
8473    We also handle the case that a DSO references a hidden symbol
8474    which may be satisfied by a versioned symbol in another DSO.  */
8475
8476 static bfd_boolean
8477 elf_link_check_versioned_symbol (struct bfd_link_info *info,
8478                                  const struct elf_backend_data *bed,
8479                                  struct elf_link_hash_entry *h)
8480 {
8481   bfd *abfd;
8482   struct elf_link_loaded_list *loaded;
8483
8484   if (!is_elf_hash_table (info->hash))
8485     return FALSE;
8486
8487   /* Check indirect symbol.  */
8488   while (h->root.type == bfd_link_hash_indirect)
8489     h = (struct elf_link_hash_entry *) h->root.u.i.link;
8490
8491   switch (h->root.type)
8492     {
8493     default:
8494       abfd = NULL;
8495       break;
8496
8497     case bfd_link_hash_undefined:
8498     case bfd_link_hash_undefweak:
8499       abfd = h->root.u.undef.abfd;
8500       if ((abfd->flags & DYNAMIC) == 0
8501           || (elf_dyn_lib_class (abfd) & DYN_DT_NEEDED) == 0)
8502         return FALSE;
8503       break;
8504
8505     case bfd_link_hash_defined:
8506     case bfd_link_hash_defweak:
8507       abfd = h->root.u.def.section->owner;
8508       break;
8509
8510     case bfd_link_hash_common:
8511       abfd = h->root.u.c.p->section->owner;
8512       break;
8513     }
8514   BFD_ASSERT (abfd != NULL);
8515
8516   for (loaded = elf_hash_table (info)->loaded;
8517        loaded != NULL;
8518        loaded = loaded->next)
8519     {
8520       bfd *input;
8521       Elf_Internal_Shdr *hdr;
8522       bfd_size_type symcount;
8523       bfd_size_type extsymcount;
8524       bfd_size_type extsymoff;
8525       Elf_Internal_Shdr *versymhdr;
8526       Elf_Internal_Sym *isym;
8527       Elf_Internal_Sym *isymend;
8528       Elf_Internal_Sym *isymbuf;
8529       Elf_External_Versym *ever;
8530       Elf_External_Versym *extversym;
8531
8532       input = loaded->abfd;
8533
8534       /* We check each DSO for a possible hidden versioned definition.  */
8535       if (input == abfd
8536           || (input->flags & DYNAMIC) == 0
8537           || elf_dynversym (input) == 0)
8538         continue;
8539
8540       hdr = &elf_tdata (input)->dynsymtab_hdr;
8541
8542       symcount = hdr->sh_size / bed->s->sizeof_sym;
8543       if (elf_bad_symtab (input))
8544         {
8545           extsymcount = symcount;
8546           extsymoff = 0;
8547         }
8548       else
8549         {
8550           extsymcount = symcount - hdr->sh_info;
8551           extsymoff = hdr->sh_info;
8552         }
8553
8554       if (extsymcount == 0)
8555         continue;
8556
8557       isymbuf = bfd_elf_get_elf_syms (input, hdr, extsymcount, extsymoff,
8558                                       NULL, NULL, NULL);
8559       if (isymbuf == NULL)
8560         return FALSE;
8561
8562       /* Read in any version definitions.  */
8563       versymhdr = &elf_tdata (input)->dynversym_hdr;
8564       extversym = (Elf_External_Versym *) bfd_malloc (versymhdr->sh_size);
8565       if (extversym == NULL)
8566         goto error_ret;
8567
8568       if (bfd_seek (input, versymhdr->sh_offset, SEEK_SET) != 0
8569           || (bfd_bread (extversym, versymhdr->sh_size, input)
8570               != versymhdr->sh_size))
8571         {
8572           free (extversym);
8573         error_ret:
8574           free (isymbuf);
8575           return FALSE;
8576         }
8577
8578       ever = extversym + extsymoff;
8579       isymend = isymbuf + extsymcount;
8580       for (isym = isymbuf; isym < isymend; isym++, ever++)
8581         {
8582           const char *name;
8583           Elf_Internal_Versym iver;
8584           unsigned short version_index;
8585
8586           if (ELF_ST_BIND (isym->st_info) == STB_LOCAL
8587               || isym->st_shndx == SHN_UNDEF)
8588             continue;
8589
8590           name = bfd_elf_string_from_elf_section (input,
8591                                                   hdr->sh_link,
8592                                                   isym->st_name);
8593           if (strcmp (name, h->root.root.string) != 0)
8594             continue;
8595
8596           _bfd_elf_swap_versym_in (input, ever, &iver);
8597
8598           if ((iver.vs_vers & VERSYM_HIDDEN) == 0
8599               && !(h->def_regular
8600                    && h->forced_local))
8601             {
8602               /* If we have a non-hidden versioned sym, then it should
8603                  have provided a definition for the undefined sym unless
8604                  it is defined in a non-shared object and forced local.
8605                */
8606               abort ();
8607             }
8608
8609           version_index = iver.vs_vers & VERSYM_VERSION;
8610           if (version_index == 1 || version_index == 2)
8611             {
8612               /* This is the base or first version.  We can use it.  */
8613               free (extversym);
8614               free (isymbuf);
8615               return TRUE;
8616             }
8617         }
8618
8619       free (extversym);
8620       free (isymbuf);
8621     }
8622
8623   return FALSE;
8624 }
8625
8626 /* Add an external symbol to the symbol table.  This is called from
8627    the hash table traversal routine.  When generating a shared object,
8628    we go through the symbol table twice.  The first time we output
8629    anything that might have been forced to local scope in a version
8630    script.  The second time we output the symbols that are still
8631    global symbols.  */
8632
8633 static bfd_boolean
8634 elf_link_output_extsym (struct bfd_hash_entry *bh, void *data)
8635 {
8636   struct elf_link_hash_entry *h = (struct elf_link_hash_entry *) bh;
8637   struct elf_outext_info *eoinfo = (struct elf_outext_info *) data;
8638   struct elf_final_link_info *flinfo = eoinfo->flinfo;
8639   bfd_boolean strip;
8640   Elf_Internal_Sym sym;
8641   asection *input_sec;
8642   const struct elf_backend_data *bed;
8643   long indx;
8644   int ret;
8645
8646   if (h->root.type == bfd_link_hash_warning)
8647     {
8648       h = (struct elf_link_hash_entry *) h->root.u.i.link;
8649       if (h->root.type == bfd_link_hash_new)
8650         return TRUE;
8651     }
8652
8653   /* Decide whether to output this symbol in this pass.  */
8654   if (eoinfo->localsyms)
8655     {
8656       if (!h->forced_local)
8657         return TRUE;
8658       if (eoinfo->second_pass
8659           && !((h->root.type == bfd_link_hash_defined
8660                 || h->root.type == bfd_link_hash_defweak)
8661                && h->root.u.def.section->output_section != NULL))
8662         return TRUE;
8663
8664       if (!eoinfo->file_sym_done
8665           && (eoinfo->second_pass ? eoinfo->flinfo->filesym_count == 1
8666                                   : eoinfo->flinfo->filesym_count > 1))
8667         {
8668           /* Output a FILE symbol so that following locals are not associated
8669              with the wrong input file.  */
8670           memset (&sym, 0, sizeof (sym));
8671           sym.st_info = ELF_ST_INFO (STB_LOCAL, STT_FILE);
8672           sym.st_shndx = SHN_ABS;
8673           if (!elf_link_output_sym (eoinfo->flinfo, NULL, &sym,
8674                                     bfd_und_section_ptr, NULL))
8675             return FALSE;
8676
8677           eoinfo->file_sym_done = TRUE;
8678         }
8679     }
8680   else
8681     {
8682       if (h->forced_local)
8683         return TRUE;
8684     }
8685
8686   bed = get_elf_backend_data (flinfo->output_bfd);
8687
8688   if (h->root.type == bfd_link_hash_undefined)
8689     {
8690       /* If we have an undefined symbol reference here then it must have
8691          come from a shared library that is being linked in.  (Undefined
8692          references in regular files have already been handled unless
8693          they are in unreferenced sections which are removed by garbage
8694          collection).  */
8695       bfd_boolean ignore_undef = FALSE;
8696
8697       /* Some symbols may be special in that the fact that they're
8698          undefined can be safely ignored - let backend determine that.  */
8699       if (bed->elf_backend_ignore_undef_symbol)
8700         ignore_undef = bed->elf_backend_ignore_undef_symbol (h);
8701
8702       /* If we are reporting errors for this situation then do so now.  */
8703       if (!ignore_undef
8704           && h->ref_dynamic
8705           && (!h->ref_regular || flinfo->info->gc_sections)
8706           && !elf_link_check_versioned_symbol (flinfo->info, bed, h)
8707           && flinfo->info->unresolved_syms_in_shared_libs != RM_IGNORE)
8708         {
8709           if (!(flinfo->info->callbacks->undefined_symbol
8710                 (flinfo->info, h->root.root.string,
8711                  h->ref_regular ? NULL : h->root.u.undef.abfd,
8712                  NULL, 0,
8713                  (flinfo->info->unresolved_syms_in_shared_libs
8714                   == RM_GENERATE_ERROR))))
8715             {
8716               bfd_set_error (bfd_error_bad_value);
8717               eoinfo->failed = TRUE;
8718               return FALSE;
8719             }
8720         }
8721     }
8722
8723   /* We should also warn if a forced local symbol is referenced from
8724      shared libraries.  */
8725   if (!flinfo->info->relocatable
8726       && flinfo->info->executable
8727       && h->forced_local
8728       && h->ref_dynamic
8729       && h->def_regular
8730       && !h->dynamic_def
8731       && h->ref_dynamic_nonweak
8732       && !elf_link_check_versioned_symbol (flinfo->info, bed, h))
8733     {
8734       bfd *def_bfd;
8735       const char *msg;
8736       struct elf_link_hash_entry *hi = h;
8737
8738       /* Check indirect symbol.  */
8739       while (hi->root.type == bfd_link_hash_indirect)
8740         hi = (struct elf_link_hash_entry *) hi->root.u.i.link;
8741
8742       if (ELF_ST_VISIBILITY (h->other) == STV_INTERNAL)
8743         msg = _("%B: internal symbol `%s' in %B is referenced by DSO");
8744       else if (ELF_ST_VISIBILITY (h->other) == STV_HIDDEN)
8745         msg = _("%B: hidden symbol `%s' in %B is referenced by DSO");
8746       else
8747         msg = _("%B: local symbol `%s' in %B is referenced by DSO");
8748       def_bfd = flinfo->output_bfd;
8749       if (hi->root.u.def.section != bfd_abs_section_ptr)
8750         def_bfd = hi->root.u.def.section->owner;
8751       (*_bfd_error_handler) (msg, flinfo->output_bfd, def_bfd,
8752                              h->root.root.string);
8753       bfd_set_error (bfd_error_bad_value);
8754       eoinfo->failed = TRUE;
8755       return FALSE;
8756     }
8757
8758   /* We don't want to output symbols that have never been mentioned by
8759      a regular file, or that we have been told to strip.  However, if
8760      h->indx is set to -2, the symbol is used by a reloc and we must
8761      output it.  */
8762   if (h->indx == -2)
8763     strip = FALSE;
8764   else if ((h->def_dynamic
8765             || h->ref_dynamic
8766             || h->root.type == bfd_link_hash_new)
8767            && !h->def_regular
8768            && !h->ref_regular)
8769     strip = TRUE;
8770   else if (flinfo->info->strip == strip_all)
8771     strip = TRUE;
8772   else if (flinfo->info->strip == strip_some
8773            && bfd_hash_lookup (flinfo->info->keep_hash,
8774                                h->root.root.string, FALSE, FALSE) == NULL)
8775     strip = TRUE;
8776   else if ((h->root.type == bfd_link_hash_defined
8777             || h->root.type == bfd_link_hash_defweak)
8778            && ((flinfo->info->strip_discarded
8779                 && discarded_section (h->root.u.def.section))
8780                || (h->root.u.def.section->owner != NULL
8781                    && (h->root.u.def.section->owner->flags & BFD_PLUGIN) != 0)))
8782     strip = TRUE;
8783   else if ((h->root.type == bfd_link_hash_undefined
8784             || h->root.type == bfd_link_hash_undefweak)
8785            && h->root.u.undef.abfd != NULL
8786            && (h->root.u.undef.abfd->flags & BFD_PLUGIN) != 0)
8787     strip = TRUE;
8788   else
8789     strip = FALSE;
8790
8791   /* If we're stripping it, and it's not a dynamic symbol, there's
8792      nothing else to do unless it is a forced local symbol or a
8793      STT_GNU_IFUNC symbol.  */
8794   if (strip
8795       && h->dynindx == -1
8796       && h->type != STT_GNU_IFUNC
8797       && !h->forced_local)
8798     return TRUE;
8799
8800   sym.st_value = 0;
8801   sym.st_size = h->size;
8802   sym.st_other = h->other;
8803   if (h->forced_local)
8804     {
8805       sym.st_info = ELF_ST_INFO (STB_LOCAL, h->type);
8806       /* Turn off visibility on local symbol.  */
8807       sym.st_other &= ~ELF_ST_VISIBILITY (-1);
8808     }
8809   /* Set STB_GNU_UNIQUE only if symbol is defined in regular object.  */
8810   else if (h->unique_global && h->def_regular)
8811     sym.st_info = ELF_ST_INFO (STB_GNU_UNIQUE, h->type);
8812   else if (h->root.type == bfd_link_hash_undefweak
8813            || h->root.type == bfd_link_hash_defweak)
8814     sym.st_info = ELF_ST_INFO (STB_WEAK, h->type);
8815   else
8816     sym.st_info = ELF_ST_INFO (STB_GLOBAL, h->type);
8817   sym.st_target_internal = h->target_internal;
8818
8819   switch (h->root.type)
8820     {
8821     default:
8822     case bfd_link_hash_new:
8823     case bfd_link_hash_warning:
8824       abort ();
8825       return FALSE;
8826
8827     case bfd_link_hash_undefined:
8828     case bfd_link_hash_undefweak:
8829       input_sec = bfd_und_section_ptr;
8830       sym.st_shndx = SHN_UNDEF;
8831       break;
8832
8833     case bfd_link_hash_defined:
8834     case bfd_link_hash_defweak:
8835       {
8836         input_sec = h->root.u.def.section;
8837         if (input_sec->output_section != NULL)
8838           {
8839             if (eoinfo->localsyms && flinfo->filesym_count == 1)
8840               {
8841                 bfd_boolean second_pass_sym
8842                   = (input_sec->owner == flinfo->output_bfd
8843                      || input_sec->owner == NULL
8844                      || (input_sec->flags & SEC_LINKER_CREATED) != 0
8845                      || (input_sec->owner->flags & BFD_LINKER_CREATED) != 0);
8846
8847                 eoinfo->need_second_pass |= second_pass_sym;
8848                 if (eoinfo->second_pass != second_pass_sym)
8849                   return TRUE;
8850               }
8851
8852             sym.st_shndx =
8853               _bfd_elf_section_from_bfd_section (flinfo->output_bfd,
8854                                                  input_sec->output_section);
8855             if (sym.st_shndx == SHN_BAD)
8856               {
8857                 (*_bfd_error_handler)
8858                   (_("%B: could not find output section %A for input section %A"),
8859                    flinfo->output_bfd, input_sec->output_section, input_sec);
8860                 bfd_set_error (bfd_error_nonrepresentable_section);
8861                 eoinfo->failed = TRUE;
8862                 return FALSE;
8863               }
8864
8865             /* ELF symbols in relocatable files are section relative,
8866                but in nonrelocatable files they are virtual
8867                addresses.  */
8868             sym.st_value = h->root.u.def.value + input_sec->output_offset;
8869             if (!flinfo->info->relocatable)
8870               {
8871                 sym.st_value += input_sec->output_section->vma;
8872                 if (h->type == STT_TLS)
8873                   {
8874                     asection *tls_sec = elf_hash_table (flinfo->info)->tls_sec;
8875                     if (tls_sec != NULL)
8876                       sym.st_value -= tls_sec->vma;
8877                     else
8878                       {
8879                         /* The TLS section may have been garbage collected.  */
8880                         BFD_ASSERT (flinfo->info->gc_sections
8881                                     && !input_sec->gc_mark);
8882                       }
8883                   }
8884               }
8885           }
8886         else
8887           {
8888             BFD_ASSERT (input_sec->owner == NULL
8889                         || (input_sec->owner->flags & DYNAMIC) != 0);
8890             sym.st_shndx = SHN_UNDEF;
8891             input_sec = bfd_und_section_ptr;
8892           }
8893       }
8894       break;
8895
8896     case bfd_link_hash_common:
8897       input_sec = h->root.u.c.p->section;
8898       sym.st_shndx = bed->common_section_index (input_sec);
8899       sym.st_value = 1 << h->root.u.c.p->alignment_power;
8900       break;
8901
8902     case bfd_link_hash_indirect:
8903       /* These symbols are created by symbol versioning.  They point
8904          to the decorated version of the name.  For example, if the
8905          symbol foo@@GNU_1.2 is the default, which should be used when
8906          foo is used with no version, then we add an indirect symbol
8907          foo which points to foo@@GNU_1.2.  We ignore these symbols,
8908          since the indirected symbol is already in the hash table.  */
8909       return TRUE;
8910     }
8911
8912   /* Give the processor backend a chance to tweak the symbol value,
8913      and also to finish up anything that needs to be done for this
8914      symbol.  FIXME: Not calling elf_backend_finish_dynamic_symbol for
8915      forced local syms when non-shared is due to a historical quirk.
8916      STT_GNU_IFUNC symbol must go through PLT.  */
8917   if ((h->type == STT_GNU_IFUNC
8918        && h->def_regular
8919        && !flinfo->info->relocatable)
8920       || ((h->dynindx != -1
8921            || h->forced_local)
8922           && ((flinfo->info->shared
8923                && (ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
8924                    || h->root.type != bfd_link_hash_undefweak))
8925               || !h->forced_local)
8926           && elf_hash_table (flinfo->info)->dynamic_sections_created))
8927     {
8928       if (! ((*bed->elf_backend_finish_dynamic_symbol)
8929              (flinfo->output_bfd, flinfo->info, h, &sym)))
8930         {
8931           eoinfo->failed = TRUE;
8932           return FALSE;
8933         }
8934     }
8935
8936   /* If we are marking the symbol as undefined, and there are no
8937      non-weak references to this symbol from a regular object, then
8938      mark the symbol as weak undefined; if there are non-weak
8939      references, mark the symbol as strong.  We can't do this earlier,
8940      because it might not be marked as undefined until the
8941      finish_dynamic_symbol routine gets through with it.  */
8942   if (sym.st_shndx == SHN_UNDEF
8943       && h->ref_regular
8944       && (ELF_ST_BIND (sym.st_info) == STB_GLOBAL
8945           || ELF_ST_BIND (sym.st_info) == STB_WEAK))
8946     {
8947       int bindtype;
8948       unsigned int type = ELF_ST_TYPE (sym.st_info);
8949
8950       /* Turn an undefined IFUNC symbol into a normal FUNC symbol. */
8951       if (type == STT_GNU_IFUNC)
8952         type = STT_FUNC;
8953
8954       if (h->ref_regular_nonweak)
8955         bindtype = STB_GLOBAL;
8956       else
8957         bindtype = STB_WEAK;
8958       sym.st_info = ELF_ST_INFO (bindtype, type);
8959     }
8960
8961   /* If this is a symbol defined in a dynamic library, don't use the
8962      symbol size from the dynamic library.  Relinking an executable
8963      against a new library may introduce gratuitous changes in the
8964      executable's symbols if we keep the size.  */
8965   if (sym.st_shndx == SHN_UNDEF
8966       && !h->def_regular
8967       && h->def_dynamic)
8968     sym.st_size = 0;
8969
8970   /* If a non-weak symbol with non-default visibility is not defined
8971      locally, it is a fatal error.  */
8972   if (!flinfo->info->relocatable
8973       && ELF_ST_VISIBILITY (sym.st_other) != STV_DEFAULT
8974       && ELF_ST_BIND (sym.st_info) != STB_WEAK
8975       && h->root.type == bfd_link_hash_undefined
8976       && !h->def_regular)
8977     {
8978       const char *msg;
8979
8980       if (ELF_ST_VISIBILITY (sym.st_other) == STV_PROTECTED)
8981         msg = _("%B: protected symbol `%s' isn't defined");
8982       else if (ELF_ST_VISIBILITY (sym.st_other) == STV_INTERNAL)
8983         msg = _("%B: internal symbol `%s' isn't defined");
8984       else
8985         msg = _("%B: hidden symbol `%s' isn't defined");
8986       (*_bfd_error_handler) (msg, flinfo->output_bfd, h->root.root.string);
8987       bfd_set_error (bfd_error_bad_value);
8988       eoinfo->failed = TRUE;
8989       return FALSE;
8990     }
8991
8992   /* If this symbol should be put in the .dynsym section, then put it
8993      there now.  We already know the symbol index.  We also fill in
8994      the entry in the .hash section.  */
8995   if (flinfo->dynsym_sec != NULL
8996       && h->dynindx != -1
8997       && elf_hash_table (flinfo->info)->dynamic_sections_created)
8998     {
8999       bfd_byte *esym;
9000
9001       /* Since there is no version information in the dynamic string,
9002          if there is no version info in symbol version section, we will
9003          have a run-time problem.  */
9004       if (h->verinfo.verdef == NULL)
9005         {
9006           char *p = strrchr (h->root.root.string, ELF_VER_CHR);
9007
9008           if (p && p [1] != '\0')
9009             {
9010               (*_bfd_error_handler)
9011                 (_("%B: No symbol version section for versioned symbol `%s'"),
9012                  flinfo->output_bfd, h->root.root.string);
9013               eoinfo->failed = TRUE;
9014               return FALSE;
9015             }
9016         }
9017
9018       sym.st_name = h->dynstr_index;
9019       esym = flinfo->dynsym_sec->contents + h->dynindx * bed->s->sizeof_sym;
9020       if (!check_dynsym (flinfo->output_bfd, &sym))
9021         {
9022           eoinfo->failed = TRUE;
9023           return FALSE;
9024         }
9025       bed->s->swap_symbol_out (flinfo->output_bfd, &sym, esym, 0);
9026
9027       if (flinfo->hash_sec != NULL)
9028         {
9029           size_t hash_entry_size;
9030           bfd_byte *bucketpos;
9031           bfd_vma chain;
9032           size_t bucketcount;
9033           size_t bucket;
9034
9035           bucketcount = elf_hash_table (flinfo->info)->bucketcount;
9036           bucket = h->u.elf_hash_value % bucketcount;
9037
9038           hash_entry_size
9039             = elf_section_data (flinfo->hash_sec)->this_hdr.sh_entsize;
9040           bucketpos = ((bfd_byte *) flinfo->hash_sec->contents
9041                        + (bucket + 2) * hash_entry_size);
9042           chain = bfd_get (8 * hash_entry_size, flinfo->output_bfd, bucketpos);
9043           bfd_put (8 * hash_entry_size, flinfo->output_bfd, h->dynindx,
9044                    bucketpos);
9045           bfd_put (8 * hash_entry_size, flinfo->output_bfd, chain,
9046                    ((bfd_byte *) flinfo->hash_sec->contents
9047                     + (bucketcount + 2 + h->dynindx) * hash_entry_size));
9048         }
9049
9050       if (flinfo->symver_sec != NULL && flinfo->symver_sec->contents != NULL)
9051         {
9052           Elf_Internal_Versym iversym;
9053           Elf_External_Versym *eversym;
9054
9055           if (!h->def_regular)
9056             {
9057               if (h->verinfo.verdef == NULL
9058                   || (elf_dyn_lib_class (h->verinfo.verdef->vd_bfd)
9059                       & (DYN_AS_NEEDED | DYN_DT_NEEDED | DYN_NO_NEEDED)))
9060                 iversym.vs_vers = 0;
9061               else
9062                 iversym.vs_vers = h->verinfo.verdef->vd_exp_refno + 1;
9063             }
9064           else
9065             {
9066               if (h->verinfo.vertree == NULL)
9067                 iversym.vs_vers = 1;
9068               else
9069                 iversym.vs_vers = h->verinfo.vertree->vernum + 1;
9070               if (flinfo->info->create_default_symver)
9071                 iversym.vs_vers++;
9072             }
9073
9074           if (h->hidden)
9075             iversym.vs_vers |= VERSYM_HIDDEN;
9076
9077           eversym = (Elf_External_Versym *) flinfo->symver_sec->contents;
9078           eversym += h->dynindx;
9079           _bfd_elf_swap_versym_out (flinfo->output_bfd, &iversym, eversym);
9080         }
9081     }
9082
9083   /* If we're stripping it, then it was just a dynamic symbol, and
9084      there's nothing else to do.  */
9085   if (strip || (input_sec->flags & SEC_EXCLUDE) != 0)
9086     return TRUE;
9087
9088   indx = bfd_get_symcount (flinfo->output_bfd);
9089   ret = elf_link_output_sym (flinfo, h->root.root.string, &sym, input_sec, h);
9090   if (ret == 0)
9091     {
9092       eoinfo->failed = TRUE;
9093       return FALSE;
9094     }
9095   else if (ret == 1)
9096     h->indx = indx;
9097   else if (h->indx == -2)
9098     abort();
9099
9100   return TRUE;
9101 }
9102
9103 /* Return TRUE if special handling is done for relocs in SEC against
9104    symbols defined in discarded sections.  */
9105
9106 static bfd_boolean
9107 elf_section_ignore_discarded_relocs (asection *sec)
9108 {
9109   const struct elf_backend_data *bed;
9110
9111   switch (sec->sec_info_type)
9112     {
9113     case SEC_INFO_TYPE_STABS:
9114     case SEC_INFO_TYPE_EH_FRAME:
9115       return TRUE;
9116     default:
9117       break;
9118     }
9119
9120   bed = get_elf_backend_data (sec->owner);
9121   if (bed->elf_backend_ignore_discarded_relocs != NULL
9122       && (*bed->elf_backend_ignore_discarded_relocs) (sec))
9123     return TRUE;
9124
9125   return FALSE;
9126 }
9127
9128 /* Return a mask saying how ld should treat relocations in SEC against
9129    symbols defined in discarded sections.  If this function returns
9130    COMPLAIN set, ld will issue a warning message.  If this function
9131    returns PRETEND set, and the discarded section was link-once and the
9132    same size as the kept link-once section, ld will pretend that the
9133    symbol was actually defined in the kept section.  Otherwise ld will
9134    zero the reloc (at least that is the intent, but some cooperation by
9135    the target dependent code is needed, particularly for REL targets).  */
9136
9137 unsigned int
9138 _bfd_elf_default_action_discarded (asection *sec)
9139 {
9140   if (sec->flags & SEC_DEBUGGING)
9141     return PRETEND;
9142
9143   if (strcmp (".eh_frame", sec->name) == 0)
9144     return 0;
9145
9146   if (strcmp (".gcc_except_table", sec->name) == 0)
9147     return 0;
9148
9149   return COMPLAIN | PRETEND;
9150 }
9151
9152 /* Find a match between a section and a member of a section group.  */
9153
9154 static asection *
9155 match_group_member (asection *sec, asection *group,
9156                     struct bfd_link_info *info)
9157 {
9158   asection *first = elf_next_in_group (group);
9159   asection *s = first;
9160
9161   while (s != NULL)
9162     {
9163       if (bfd_elf_match_symbols_in_sections (s, sec, info))
9164         return s;
9165
9166       s = elf_next_in_group (s);
9167       if (s == first)
9168         break;
9169     }
9170
9171   return NULL;
9172 }
9173
9174 /* Check if the kept section of a discarded section SEC can be used
9175    to replace it.  Return the replacement if it is OK.  Otherwise return
9176    NULL.  */
9177
9178 asection *
9179 _bfd_elf_check_kept_section (asection *sec, struct bfd_link_info *info)
9180 {
9181   asection *kept;
9182
9183   kept = sec->kept_section;
9184   if (kept != NULL)
9185     {
9186       if ((kept->flags & SEC_GROUP) != 0)
9187         kept = match_group_member (sec, kept, info);
9188       if (kept != NULL
9189           && ((sec->rawsize != 0 ? sec->rawsize : sec->size)
9190               != (kept->rawsize != 0 ? kept->rawsize : kept->size)))
9191         kept = NULL;
9192       sec->kept_section = kept;
9193     }
9194   return kept;
9195 }
9196
9197 /* Link an input file into the linker output file.  This function
9198    handles all the sections and relocations of the input file at once.
9199    This is so that we only have to read the local symbols once, and
9200    don't have to keep them in memory.  */
9201
9202 static bfd_boolean
9203 elf_link_input_bfd (struct elf_final_link_info *flinfo, bfd *input_bfd)
9204 {
9205   int (*relocate_section)
9206     (bfd *, struct bfd_link_info *, bfd *, asection *, bfd_byte *,
9207      Elf_Internal_Rela *, Elf_Internal_Sym *, asection **);
9208   bfd *output_bfd;
9209   Elf_Internal_Shdr *symtab_hdr;
9210   size_t locsymcount;
9211   size_t extsymoff;
9212   Elf_Internal_Sym *isymbuf;
9213   Elf_Internal_Sym *isym;
9214   Elf_Internal_Sym *isymend;
9215   long *pindex;
9216   asection **ppsection;
9217   asection *o;
9218   const struct elf_backend_data *bed;
9219   struct elf_link_hash_entry **sym_hashes;
9220   bfd_size_type address_size;
9221   bfd_vma r_type_mask;
9222   int r_sym_shift;
9223   bfd_boolean have_file_sym = FALSE;
9224
9225   output_bfd = flinfo->output_bfd;
9226   bed = get_elf_backend_data (output_bfd);
9227   relocate_section = bed->elf_backend_relocate_section;
9228
9229   /* If this is a dynamic object, we don't want to do anything here:
9230      we don't want the local symbols, and we don't want the section
9231      contents.  */
9232   if ((input_bfd->flags & DYNAMIC) != 0)
9233     return TRUE;
9234
9235   symtab_hdr = &elf_tdata (input_bfd)->symtab_hdr;
9236   if (elf_bad_symtab (input_bfd))
9237     {
9238       locsymcount = symtab_hdr->sh_size / bed->s->sizeof_sym;
9239       extsymoff = 0;
9240     }
9241   else
9242     {
9243       locsymcount = symtab_hdr->sh_info;
9244       extsymoff = symtab_hdr->sh_info;
9245     }
9246
9247   /* Read the local symbols.  */
9248   isymbuf = (Elf_Internal_Sym *) symtab_hdr->contents;
9249   if (isymbuf == NULL && locsymcount != 0)
9250     {
9251       isymbuf = bfd_elf_get_elf_syms (input_bfd, symtab_hdr, locsymcount, 0,
9252                                       flinfo->internal_syms,
9253                                       flinfo->external_syms,
9254                                       flinfo->locsym_shndx);
9255       if (isymbuf == NULL)
9256         return FALSE;
9257     }
9258
9259   /* Find local symbol sections and adjust values of symbols in
9260      SEC_MERGE sections.  Write out those local symbols we know are
9261      going into the output file.  */
9262   isymend = isymbuf + locsymcount;
9263   for (isym = isymbuf, pindex = flinfo->indices, ppsection = flinfo->sections;
9264        isym < isymend;
9265        isym++, pindex++, ppsection++)
9266     {
9267       asection *isec;
9268       const char *name;
9269       Elf_Internal_Sym osym;
9270       long indx;
9271       int ret;
9272
9273       *pindex = -1;
9274
9275       if (elf_bad_symtab (input_bfd))
9276         {
9277           if (ELF_ST_BIND (isym->st_info) != STB_LOCAL)
9278             {
9279               *ppsection = NULL;
9280               continue;
9281             }
9282         }
9283
9284       if (isym->st_shndx == SHN_UNDEF)
9285         isec = bfd_und_section_ptr;
9286       else if (isym->st_shndx == SHN_ABS)
9287         isec = bfd_abs_section_ptr;
9288       else if (isym->st_shndx == SHN_COMMON)
9289         isec = bfd_com_section_ptr;
9290       else
9291         {
9292           isec = bfd_section_from_elf_index (input_bfd, isym->st_shndx);
9293           if (isec == NULL)
9294             {
9295               /* Don't attempt to output symbols with st_shnx in the
9296                  reserved range other than SHN_ABS and SHN_COMMON.  */
9297               *ppsection = NULL;
9298               continue;
9299             }
9300           else if (isec->sec_info_type == SEC_INFO_TYPE_MERGE
9301                    && ELF_ST_TYPE (isym->st_info) != STT_SECTION)
9302             isym->st_value =
9303               _bfd_merged_section_offset (output_bfd, &isec,
9304                                           elf_section_data (isec)->sec_info,
9305                                           isym->st_value);
9306         }
9307
9308       *ppsection = isec;
9309
9310       /* Don't output the first, undefined, symbol.  */
9311       if (ppsection == flinfo->sections)
9312         continue;
9313
9314       if (ELF_ST_TYPE (isym->st_info) == STT_SECTION)
9315         {
9316           /* We never output section symbols.  Instead, we use the
9317              section symbol of the corresponding section in the output
9318              file.  */
9319           continue;
9320         }
9321
9322       /* If we are stripping all symbols, we don't want to output this
9323          one.  */
9324       if (flinfo->info->strip == strip_all)
9325         continue;
9326
9327       /* If we are discarding all local symbols, we don't want to
9328          output this one.  If we are generating a relocatable output
9329          file, then some of the local symbols may be required by
9330          relocs; we output them below as we discover that they are
9331          needed.  */
9332       if (flinfo->info->discard == discard_all)
9333         continue;
9334
9335       /* If this symbol is defined in a section which we are
9336          discarding, we don't need to keep it.  */
9337       if (isym->st_shndx != SHN_UNDEF
9338           && isym->st_shndx < SHN_LORESERVE
9339           && bfd_section_removed_from_list (output_bfd,
9340                                             isec->output_section))
9341         continue;
9342
9343       /* Get the name of the symbol.  */
9344       name = bfd_elf_string_from_elf_section (input_bfd, symtab_hdr->sh_link,
9345                                               isym->st_name);
9346       if (name == NULL)
9347         return FALSE;
9348
9349       /* See if we are discarding symbols with this name.  */
9350       if ((flinfo->info->strip == strip_some
9351            && (bfd_hash_lookup (flinfo->info->keep_hash, name, FALSE, FALSE)
9352                == NULL))
9353           || (((flinfo->info->discard == discard_sec_merge
9354                 && (isec->flags & SEC_MERGE) && !flinfo->info->relocatable)
9355                || flinfo->info->discard == discard_l)
9356               && bfd_is_local_label_name (input_bfd, name)))
9357         continue;
9358
9359       if (ELF_ST_TYPE (isym->st_info) == STT_FILE)
9360         {
9361           have_file_sym = TRUE;
9362           flinfo->filesym_count += 1;
9363         }
9364       if (!have_file_sym)
9365         {
9366           /* In the absence of debug info, bfd_find_nearest_line uses
9367              FILE symbols to determine the source file for local
9368              function symbols.  Provide a FILE symbol here if input
9369              files lack such, so that their symbols won't be
9370              associated with a previous input file.  It's not the
9371              source file, but the best we can do.  */
9372           have_file_sym = TRUE;
9373           flinfo->filesym_count += 1;
9374           memset (&osym, 0, sizeof (osym));
9375           osym.st_info = ELF_ST_INFO (STB_LOCAL, STT_FILE);
9376           osym.st_shndx = SHN_ABS;
9377           if (!elf_link_output_sym (flinfo, input_bfd->filename, &osym,
9378                                     bfd_abs_section_ptr, NULL))
9379             return FALSE;
9380         }
9381
9382       osym = *isym;
9383
9384       /* Adjust the section index for the output file.  */
9385       osym.st_shndx = _bfd_elf_section_from_bfd_section (output_bfd,
9386                                                          isec->output_section);
9387       if (osym.st_shndx == SHN_BAD)
9388         return FALSE;
9389
9390       /* ELF symbols in relocatable files are section relative, but
9391          in executable files they are virtual addresses.  Note that
9392          this code assumes that all ELF sections have an associated
9393          BFD section with a reasonable value for output_offset; below
9394          we assume that they also have a reasonable value for
9395          output_section.  Any special sections must be set up to meet
9396          these requirements.  */
9397       osym.st_value += isec->output_offset;
9398       if (!flinfo->info->relocatable)
9399         {
9400           osym.st_value += isec->output_section->vma;
9401           if (ELF_ST_TYPE (osym.st_info) == STT_TLS)
9402             {
9403               /* STT_TLS symbols are relative to PT_TLS segment base.  */
9404               BFD_ASSERT (elf_hash_table (flinfo->info)->tls_sec != NULL);
9405               osym.st_value -= elf_hash_table (flinfo->info)->tls_sec->vma;
9406             }
9407         }
9408
9409       indx = bfd_get_symcount (output_bfd);
9410       ret = elf_link_output_sym (flinfo, name, &osym, isec, NULL);
9411       if (ret == 0)
9412         return FALSE;
9413       else if (ret == 1)
9414         *pindex = indx;
9415     }
9416
9417   if (bed->s->arch_size == 32)
9418     {
9419       r_type_mask = 0xff;
9420       r_sym_shift = 8;
9421       address_size = 4;
9422     }
9423   else
9424     {
9425       r_type_mask = 0xffffffff;
9426       r_sym_shift = 32;
9427       address_size = 8;
9428     }
9429
9430   /* Relocate the contents of each section.  */
9431   sym_hashes = elf_sym_hashes (input_bfd);
9432   for (o = input_bfd->sections; o != NULL; o = o->next)
9433     {
9434       bfd_byte *contents;
9435
9436       if (! o->linker_mark)
9437         {
9438           /* This section was omitted from the link.  */
9439           continue;
9440         }
9441
9442       if (flinfo->info->relocatable
9443           && (o->flags & (SEC_LINKER_CREATED | SEC_GROUP)) == SEC_GROUP)
9444         {
9445           /* Deal with the group signature symbol.  */
9446           struct bfd_elf_section_data *sec_data = elf_section_data (o);
9447           unsigned long symndx = sec_data->this_hdr.sh_info;
9448           asection *osec = o->output_section;
9449
9450           if (symndx >= locsymcount
9451               || (elf_bad_symtab (input_bfd)
9452                   && flinfo->sections[symndx] == NULL))
9453             {
9454               struct elf_link_hash_entry *h = sym_hashes[symndx - extsymoff];
9455               while (h->root.type == bfd_link_hash_indirect
9456                      || h->root.type == bfd_link_hash_warning)
9457                 h = (struct elf_link_hash_entry *) h->root.u.i.link;
9458               /* Arrange for symbol to be output.  */
9459               h->indx = -2;
9460               elf_section_data (osec)->this_hdr.sh_info = -2;
9461             }
9462           else if (ELF_ST_TYPE (isymbuf[symndx].st_info) == STT_SECTION)
9463             {
9464               /* We'll use the output section target_index.  */
9465               asection *sec = flinfo->sections[symndx]->output_section;
9466               elf_section_data (osec)->this_hdr.sh_info = sec->target_index;
9467             }
9468           else
9469             {
9470               if (flinfo->indices[symndx] == -1)
9471                 {
9472                   /* Otherwise output the local symbol now.  */
9473                   Elf_Internal_Sym sym = isymbuf[symndx];
9474                   asection *sec = flinfo->sections[symndx]->output_section;
9475                   const char *name;
9476                   long indx;
9477                   int ret;
9478
9479                   name = bfd_elf_string_from_elf_section (input_bfd,
9480                                                           symtab_hdr->sh_link,
9481                                                           sym.st_name);
9482                   if (name == NULL)
9483                     return FALSE;
9484
9485                   sym.st_shndx = _bfd_elf_section_from_bfd_section (output_bfd,
9486                                                                     sec);
9487                   if (sym.st_shndx == SHN_BAD)
9488                     return FALSE;
9489
9490                   sym.st_value += o->output_offset;
9491
9492                   indx = bfd_get_symcount (output_bfd);
9493                   ret = elf_link_output_sym (flinfo, name, &sym, o, NULL);
9494                   if (ret == 0)
9495                     return FALSE;
9496                   else if (ret == 1)
9497                     flinfo->indices[symndx] = indx;
9498                   else
9499                     abort ();
9500                 }
9501               elf_section_data (osec)->this_hdr.sh_info
9502                 = flinfo->indices[symndx];
9503             }
9504         }
9505
9506       if ((o->flags & SEC_HAS_CONTENTS) == 0
9507           || (o->size == 0 && (o->flags & SEC_RELOC) == 0))
9508         continue;
9509
9510       if ((o->flags & SEC_LINKER_CREATED) != 0)
9511         {
9512           /* Section was created by _bfd_elf_link_create_dynamic_sections
9513              or somesuch.  */
9514           continue;
9515         }
9516
9517       /* Get the contents of the section.  They have been cached by a
9518          relaxation routine.  Note that o is a section in an input
9519          file, so the contents field will not have been set by any of
9520          the routines which work on output files.  */
9521       if (elf_section_data (o)->this_hdr.contents != NULL)
9522         {
9523           contents = elf_section_data (o)->this_hdr.contents;
9524           if (bed->caches_rawsize
9525               && o->rawsize != 0
9526               && o->rawsize < o->size)
9527             {
9528               memcpy (flinfo->contents, contents, o->rawsize);
9529               contents = flinfo->contents;
9530             }
9531         }
9532       else
9533         {
9534           contents = flinfo->contents;
9535           if (! bfd_get_full_section_contents (input_bfd, o, &contents))
9536             return FALSE;
9537         }
9538
9539       if ((o->flags & SEC_RELOC) != 0)
9540         {
9541           Elf_Internal_Rela *internal_relocs;
9542           Elf_Internal_Rela *rel, *relend;
9543           int action_discarded;
9544           int ret;
9545
9546           /* Get the swapped relocs.  */
9547           internal_relocs
9548             = _bfd_elf_link_read_relocs (input_bfd, o, flinfo->external_relocs,
9549                                          flinfo->internal_relocs, FALSE);
9550           if (internal_relocs == NULL
9551               && o->reloc_count > 0)
9552             return FALSE;
9553
9554           /* We need to reverse-copy input .ctors/.dtors sections if
9555              they are placed in .init_array/.finit_array for output.  */
9556           if (o->size > address_size
9557               && ((strncmp (o->name, ".ctors", 6) == 0
9558                    && strcmp (o->output_section->name,
9559                               ".init_array") == 0)
9560                   || (strncmp (o->name, ".dtors", 6) == 0
9561                       && strcmp (o->output_section->name,
9562                                  ".fini_array") == 0))
9563               && (o->name[6] == 0 || o->name[6] == '.'))
9564             {
9565               if (o->size != o->reloc_count * address_size)
9566                 {
9567                   (*_bfd_error_handler)
9568                     (_("error: %B: size of section %A is not "
9569                        "multiple of address size"),
9570                      input_bfd, o);
9571                   bfd_set_error (bfd_error_on_input);
9572                   return FALSE;
9573                 }
9574               o->flags |= SEC_ELF_REVERSE_COPY;
9575             }
9576
9577           action_discarded = -1;
9578           if (!elf_section_ignore_discarded_relocs (o))
9579             action_discarded = (*bed->action_discarded) (o);
9580
9581           /* Run through the relocs evaluating complex reloc symbols and
9582              looking for relocs against symbols from discarded sections
9583              or section symbols from removed link-once sections.
9584              Complain about relocs against discarded sections.  Zero
9585              relocs against removed link-once sections.  */
9586
9587           rel = internal_relocs;
9588           relend = rel + o->reloc_count * bed->s->int_rels_per_ext_rel;
9589           for ( ; rel < relend; rel++)
9590             {
9591               unsigned long r_symndx = rel->r_info >> r_sym_shift;
9592               unsigned int s_type;
9593               asection **ps, *sec;
9594               struct elf_link_hash_entry *h = NULL;
9595               const char *sym_name;
9596
9597               if (r_symndx == STN_UNDEF)
9598                 continue;
9599
9600               if (r_symndx >= locsymcount
9601                   || (elf_bad_symtab (input_bfd)
9602                       && flinfo->sections[r_symndx] == NULL))
9603                 {
9604                   h = sym_hashes[r_symndx - extsymoff];
9605
9606                   /* Badly formatted input files can contain relocs that
9607                      reference non-existant symbols.  Check here so that
9608                      we do not seg fault.  */
9609                   if (h == NULL)
9610                     {
9611                       char buffer [32];
9612
9613                       sprintf_vma (buffer, rel->r_info);
9614                       (*_bfd_error_handler)
9615                         (_("error: %B contains a reloc (0x%s) for section %A "
9616                            "that references a non-existent global symbol"),
9617                          input_bfd, o, buffer);
9618                       bfd_set_error (bfd_error_bad_value);
9619                       return FALSE;
9620                     }
9621
9622                   while (h->root.type == bfd_link_hash_indirect
9623                          || h->root.type == bfd_link_hash_warning)
9624                     h = (struct elf_link_hash_entry *) h->root.u.i.link;
9625
9626                   s_type = h->type;
9627
9628                   ps = NULL;
9629                   if (h->root.type == bfd_link_hash_defined
9630                       || h->root.type == bfd_link_hash_defweak)
9631                     ps = &h->root.u.def.section;
9632
9633                   sym_name = h->root.root.string;
9634                 }
9635               else
9636                 {
9637                   Elf_Internal_Sym *sym = isymbuf + r_symndx;
9638
9639                   s_type = ELF_ST_TYPE (sym->st_info);
9640                   ps = &flinfo->sections[r_symndx];
9641                   sym_name = bfd_elf_sym_name (input_bfd, symtab_hdr,
9642                                                sym, *ps);
9643                 }
9644
9645               if ((s_type == STT_RELC || s_type == STT_SRELC)
9646                   && !flinfo->info->relocatable)
9647                 {
9648                   bfd_vma val;
9649                   bfd_vma dot = (rel->r_offset
9650                                  + o->output_offset + o->output_section->vma);
9651 #ifdef DEBUG
9652                   printf ("Encountered a complex symbol!");
9653                   printf (" (input_bfd %s, section %s, reloc %ld\n",
9654                           input_bfd->filename, o->name,
9655                           (long) (rel - internal_relocs));
9656                   printf (" symbol: idx  %8.8lx, name %s\n",
9657                           r_symndx, sym_name);
9658                   printf (" reloc : info %8.8lx, addr %8.8lx\n",
9659                           (unsigned long) rel->r_info,
9660                           (unsigned long) rel->r_offset);
9661 #endif
9662                   if (!eval_symbol (&val, &sym_name, input_bfd, flinfo, dot,
9663                                     isymbuf, locsymcount, s_type == STT_SRELC))
9664                     return FALSE;
9665
9666                   /* Symbol evaluated OK.  Update to absolute value.  */
9667                   set_symbol_value (input_bfd, isymbuf, locsymcount,
9668                                     r_symndx, val);
9669                   continue;
9670                 }
9671
9672               if (action_discarded != -1 && ps != NULL)
9673                 {
9674                   /* Complain if the definition comes from a
9675                      discarded section.  */
9676                   if ((sec = *ps) != NULL && discarded_section (sec))
9677                     {
9678                       BFD_ASSERT (r_symndx != STN_UNDEF);
9679                       if (action_discarded & COMPLAIN)
9680                         (*flinfo->info->callbacks->einfo)
9681                           (_("%X`%s' referenced in section `%A' of %B: "
9682                              "defined in discarded section `%A' of %B\n"),
9683                            sym_name, o, input_bfd, sec, sec->owner);
9684
9685                       /* Try to do the best we can to support buggy old
9686                          versions of gcc.  Pretend that the symbol is
9687                          really defined in the kept linkonce section.
9688                          FIXME: This is quite broken.  Modifying the
9689                          symbol here means we will be changing all later
9690                          uses of the symbol, not just in this section.  */
9691                       if (action_discarded & PRETEND)
9692                         {
9693                           asection *kept;
9694
9695                           kept = _bfd_elf_check_kept_section (sec,
9696                                                               flinfo->info);
9697                           if (kept != NULL)
9698                             {
9699                               *ps = kept;
9700                               continue;
9701                             }
9702                         }
9703                     }
9704                 }
9705             }
9706
9707           /* Relocate the section by invoking a back end routine.
9708
9709              The back end routine is responsible for adjusting the
9710              section contents as necessary, and (if using Rela relocs
9711              and generating a relocatable output file) adjusting the
9712              reloc addend as necessary.
9713
9714              The back end routine does not have to worry about setting
9715              the reloc address or the reloc symbol index.
9716
9717              The back end routine is given a pointer to the swapped in
9718              internal symbols, and can access the hash table entries
9719              for the external symbols via elf_sym_hashes (input_bfd).
9720
9721              When generating relocatable output, the back end routine
9722              must handle STB_LOCAL/STT_SECTION symbols specially.  The
9723              output symbol is going to be a section symbol
9724              corresponding to the output section, which will require
9725              the addend to be adjusted.  */
9726
9727           ret = (*relocate_section) (output_bfd, flinfo->info,
9728                                      input_bfd, o, contents,
9729                                      internal_relocs,
9730                                      isymbuf,
9731                                      flinfo->sections);
9732           if (!ret)
9733             return FALSE;
9734
9735           if (ret == 2
9736               || flinfo->info->relocatable
9737               || flinfo->info->emitrelocations)
9738             {
9739               Elf_Internal_Rela *irela;
9740               Elf_Internal_Rela *irelaend, *irelamid;
9741               bfd_vma last_offset;
9742               struct elf_link_hash_entry **rel_hash;
9743               struct elf_link_hash_entry **rel_hash_list, **rela_hash_list;
9744               Elf_Internal_Shdr *input_rel_hdr, *input_rela_hdr;
9745               unsigned int next_erel;
9746               bfd_boolean rela_normal;
9747               struct bfd_elf_section_data *esdi, *esdo;
9748
9749               esdi = elf_section_data (o);
9750               esdo = elf_section_data (o->output_section);
9751               rela_normal = FALSE;
9752
9753               /* Adjust the reloc addresses and symbol indices.  */
9754
9755               irela = internal_relocs;
9756               irelaend = irela + o->reloc_count * bed->s->int_rels_per_ext_rel;
9757               rel_hash = esdo->rel.hashes + esdo->rel.count;
9758               /* We start processing the REL relocs, if any.  When we reach
9759                  IRELAMID in the loop, we switch to the RELA relocs.  */
9760               irelamid = irela;
9761               if (esdi->rel.hdr != NULL)
9762                 irelamid += (NUM_SHDR_ENTRIES (esdi->rel.hdr)
9763                              * bed->s->int_rels_per_ext_rel);
9764               rel_hash_list = rel_hash;
9765               rela_hash_list = NULL;
9766               last_offset = o->output_offset;
9767               if (!flinfo->info->relocatable)
9768                 last_offset += o->output_section->vma;
9769               for (next_erel = 0; irela < irelaend; irela++, next_erel++)
9770                 {
9771                   unsigned long r_symndx;
9772                   asection *sec;
9773                   Elf_Internal_Sym sym;
9774
9775                   if (next_erel == bed->s->int_rels_per_ext_rel)
9776                     {
9777                       rel_hash++;
9778                       next_erel = 0;
9779                     }
9780
9781                   if (irela == irelamid)
9782                     {
9783                       rel_hash = esdo->rela.hashes + esdo->rela.count;
9784                       rela_hash_list = rel_hash;
9785                       rela_normal = bed->rela_normal;
9786                     }
9787
9788                   irela->r_offset = _bfd_elf_section_offset (output_bfd,
9789                                                              flinfo->info, o,
9790                                                              irela->r_offset);
9791                   if (irela->r_offset >= (bfd_vma) -2)
9792                     {
9793                       /* This is a reloc for a deleted entry or somesuch.
9794                          Turn it into an R_*_NONE reloc, at the same
9795                          offset as the last reloc.  elf_eh_frame.c and
9796                          bfd_elf_discard_info rely on reloc offsets
9797                          being ordered.  */
9798                       irela->r_offset = last_offset;
9799                       irela->r_info = 0;
9800                       irela->r_addend = 0;
9801                       continue;
9802                     }
9803
9804                   irela->r_offset += o->output_offset;
9805
9806                   /* Relocs in an executable have to be virtual addresses.  */
9807                   if (!flinfo->info->relocatable)
9808                     irela->r_offset += o->output_section->vma;
9809
9810                   last_offset = irela->r_offset;
9811
9812                   r_symndx = irela->r_info >> r_sym_shift;
9813                   if (r_symndx == STN_UNDEF)
9814                     continue;
9815
9816                   if (r_symndx >= locsymcount
9817                       || (elf_bad_symtab (input_bfd)
9818                           && flinfo->sections[r_symndx] == NULL))
9819                     {
9820                       struct elf_link_hash_entry *rh;
9821                       unsigned long indx;
9822
9823                       /* This is a reloc against a global symbol.  We
9824                          have not yet output all the local symbols, so
9825                          we do not know the symbol index of any global
9826                          symbol.  We set the rel_hash entry for this
9827                          reloc to point to the global hash table entry
9828                          for this symbol.  The symbol index is then
9829                          set at the end of bfd_elf_final_link.  */
9830                       indx = r_symndx - extsymoff;
9831                       rh = elf_sym_hashes (input_bfd)[indx];
9832                       while (rh->root.type == bfd_link_hash_indirect
9833                              || rh->root.type == bfd_link_hash_warning)
9834                         rh = (struct elf_link_hash_entry *) rh->root.u.i.link;
9835
9836                       /* Setting the index to -2 tells
9837                          elf_link_output_extsym that this symbol is
9838                          used by a reloc.  */
9839                       BFD_ASSERT (rh->indx < 0);
9840                       rh->indx = -2;
9841
9842                       *rel_hash = rh;
9843
9844                       continue;
9845                     }
9846
9847                   /* This is a reloc against a local symbol.  */
9848
9849                   *rel_hash = NULL;
9850                   sym = isymbuf[r_symndx];
9851                   sec = flinfo->sections[r_symndx];
9852                   if (ELF_ST_TYPE (sym.st_info) == STT_SECTION)
9853                     {
9854                       /* I suppose the backend ought to fill in the
9855                          section of any STT_SECTION symbol against a
9856                          processor specific section.  */
9857                       r_symndx = STN_UNDEF;
9858                       if (bfd_is_abs_section (sec))
9859                         ;
9860                       else if (sec == NULL || sec->owner == NULL)
9861                         {
9862                           bfd_set_error (bfd_error_bad_value);
9863                           return FALSE;
9864                         }
9865                       else
9866                         {
9867                           asection *osec = sec->output_section;
9868
9869                           /* If we have discarded a section, the output
9870                              section will be the absolute section.  In
9871                              case of discarded SEC_MERGE sections, use
9872                              the kept section.  relocate_section should
9873                              have already handled discarded linkonce
9874                              sections.  */
9875                           if (bfd_is_abs_section (osec)
9876                               && sec->kept_section != NULL
9877                               && sec->kept_section->output_section != NULL)
9878                             {
9879                               osec = sec->kept_section->output_section;
9880                               irela->r_addend -= osec->vma;
9881                             }
9882
9883                           if (!bfd_is_abs_section (osec))
9884                             {
9885                               r_symndx = osec->target_index;
9886                               if (r_symndx == STN_UNDEF)
9887                                 {
9888                                   irela->r_addend += osec->vma;
9889                                   osec = _bfd_nearby_section (output_bfd, osec,
9890                                                               osec->vma);
9891                                   irela->r_addend -= osec->vma;
9892                                   r_symndx = osec->target_index;
9893                                 }
9894                             }
9895                         }
9896
9897                       /* Adjust the addend according to where the
9898                          section winds up in the output section.  */
9899                       if (rela_normal)
9900                         irela->r_addend += sec->output_offset;
9901                     }
9902                   else
9903                     {
9904                       if (flinfo->indices[r_symndx] == -1)
9905                         {
9906                           unsigned long shlink;
9907                           const char *name;
9908                           asection *osec;
9909                           long indx;
9910
9911                           if (flinfo->info->strip == strip_all)
9912                             {
9913                               /* You can't do ld -r -s.  */
9914                               bfd_set_error (bfd_error_invalid_operation);
9915                               return FALSE;
9916                             }
9917
9918                           /* This symbol was skipped earlier, but
9919                              since it is needed by a reloc, we
9920                              must output it now.  */
9921                           shlink = symtab_hdr->sh_link;
9922                           name = (bfd_elf_string_from_elf_section
9923                                   (input_bfd, shlink, sym.st_name));
9924                           if (name == NULL)
9925                             return FALSE;
9926
9927                           osec = sec->output_section;
9928                           sym.st_shndx =
9929                             _bfd_elf_section_from_bfd_section (output_bfd,
9930                                                                osec);
9931                           if (sym.st_shndx == SHN_BAD)
9932                             return FALSE;
9933
9934                           sym.st_value += sec->output_offset;
9935                           if (!flinfo->info->relocatable)
9936                             {
9937                               sym.st_value += osec->vma;
9938                               if (ELF_ST_TYPE (sym.st_info) == STT_TLS)
9939                                 {
9940                                   /* STT_TLS symbols are relative to PT_TLS
9941                                      segment base.  */
9942                                   BFD_ASSERT (elf_hash_table (flinfo->info)
9943                                               ->tls_sec != NULL);
9944                                   sym.st_value -= (elf_hash_table (flinfo->info)
9945                                                    ->tls_sec->vma);
9946                                 }
9947                             }
9948
9949                           indx = bfd_get_symcount (output_bfd);
9950                           ret = elf_link_output_sym (flinfo, name, &sym, sec,
9951                                                      NULL);
9952                           if (ret == 0)
9953                             return FALSE;
9954                           else if (ret == 1)
9955                             flinfo->indices[r_symndx] = indx;
9956                           else
9957                             abort ();
9958                         }
9959
9960                       r_symndx = flinfo->indices[r_symndx];
9961                     }
9962
9963                   irela->r_info = ((bfd_vma) r_symndx << r_sym_shift
9964                                    | (irela->r_info & r_type_mask));
9965                 }
9966
9967               /* Swap out the relocs.  */
9968               input_rel_hdr = esdi->rel.hdr;
9969               if (input_rel_hdr && input_rel_hdr->sh_size != 0)
9970                 {
9971                   if (!bed->elf_backend_emit_relocs (output_bfd, o,
9972                                                      input_rel_hdr,
9973                                                      internal_relocs,
9974                                                      rel_hash_list))
9975                     return FALSE;
9976                   internal_relocs += (NUM_SHDR_ENTRIES (input_rel_hdr)
9977                                       * bed->s->int_rels_per_ext_rel);
9978                   rel_hash_list += NUM_SHDR_ENTRIES (input_rel_hdr);
9979                 }
9980
9981               input_rela_hdr = esdi->rela.hdr;
9982               if (input_rela_hdr && input_rela_hdr->sh_size != 0)
9983                 {
9984                   if (!bed->elf_backend_emit_relocs (output_bfd, o,
9985                                                      input_rela_hdr,
9986                                                      internal_relocs,
9987                                                      rela_hash_list))
9988                     return FALSE;
9989                 }
9990             }
9991         }
9992
9993       /* Write out the modified section contents.  */
9994       if (bed->elf_backend_write_section
9995           && (*bed->elf_backend_write_section) (output_bfd, flinfo->info, o,
9996                                                 contents))
9997         {
9998           /* Section written out.  */
9999         }
10000       else switch (o->sec_info_type)
10001         {
10002         case SEC_INFO_TYPE_STABS:
10003           if (! (_bfd_write_section_stabs
10004                  (output_bfd,
10005                   &elf_hash_table (flinfo->info)->stab_info,
10006                   o, &elf_section_data (o)->sec_info, contents)))
10007             return FALSE;
10008           break;
10009         case SEC_INFO_TYPE_MERGE:
10010           if (! _bfd_write_merged_section (output_bfd, o,
10011                                            elf_section_data (o)->sec_info))
10012             return FALSE;
10013           break;
10014         case SEC_INFO_TYPE_EH_FRAME:
10015           {
10016             if (! _bfd_elf_write_section_eh_frame (output_bfd, flinfo->info,
10017                                                    o, contents))
10018               return FALSE;
10019           }
10020           break;
10021         default:
10022           {
10023             /* FIXME: octets_per_byte.  */
10024             if (! (o->flags & SEC_EXCLUDE))
10025               {
10026                 file_ptr offset = (file_ptr) o->output_offset;
10027                 bfd_size_type todo = o->size;
10028                 if ((o->flags & SEC_ELF_REVERSE_COPY))
10029                   {
10030                     /* Reverse-copy input section to output.  */
10031                     do
10032                       {
10033                         todo -= address_size;
10034                         if (! bfd_set_section_contents (output_bfd,
10035                                                         o->output_section,
10036                                                         contents + todo,
10037                                                         offset,
10038                                                         address_size))
10039                           return FALSE;
10040                         if (todo == 0)
10041                           break;
10042                         offset += address_size;
10043                       }
10044                     while (1);
10045                   }
10046                 else if (! bfd_set_section_contents (output_bfd,
10047                                                      o->output_section,
10048                                                      contents,
10049                                                      offset, todo))
10050                   return FALSE;
10051               }
10052           }
10053           break;
10054         }
10055     }
10056
10057   return TRUE;
10058 }
10059
10060 /* Generate a reloc when linking an ELF file.  This is a reloc
10061    requested by the linker, and does not come from any input file.  This
10062    is used to build constructor and destructor tables when linking
10063    with -Ur.  */
10064
10065 static bfd_boolean
10066 elf_reloc_link_order (bfd *output_bfd,
10067                       struct bfd_link_info *info,
10068                       asection *output_section,
10069                       struct bfd_link_order *link_order)
10070 {
10071   reloc_howto_type *howto;
10072   long indx;
10073   bfd_vma offset;
10074   bfd_vma addend;
10075   struct bfd_elf_section_reloc_data *reldata;
10076   struct elf_link_hash_entry **rel_hash_ptr;
10077   Elf_Internal_Shdr *rel_hdr;
10078   const struct elf_backend_data *bed = get_elf_backend_data (output_bfd);
10079   Elf_Internal_Rela irel[MAX_INT_RELS_PER_EXT_REL];
10080   bfd_byte *erel;
10081   unsigned int i;
10082   struct bfd_elf_section_data *esdo = elf_section_data (output_section);
10083
10084   howto = bfd_reloc_type_lookup (output_bfd, link_order->u.reloc.p->reloc);
10085   if (howto == NULL)
10086     {
10087       bfd_set_error (bfd_error_bad_value);
10088       return FALSE;
10089     }
10090
10091   addend = link_order->u.reloc.p->addend;
10092
10093   if (esdo->rel.hdr)
10094     reldata = &esdo->rel;
10095   else if (esdo->rela.hdr)
10096     reldata = &esdo->rela;
10097   else
10098     {
10099       reldata = NULL;
10100       BFD_ASSERT (0);
10101     }
10102
10103   /* Figure out the symbol index.  */
10104   rel_hash_ptr = reldata->hashes + reldata->count;
10105   if (link_order->type == bfd_section_reloc_link_order)
10106     {
10107       indx = link_order->u.reloc.p->u.section->target_index;
10108       BFD_ASSERT (indx != 0);
10109       *rel_hash_ptr = NULL;
10110     }
10111   else
10112     {
10113       struct elf_link_hash_entry *h;
10114
10115       /* Treat a reloc against a defined symbol as though it were
10116          actually against the section.  */
10117       h = ((struct elf_link_hash_entry *)
10118            bfd_wrapped_link_hash_lookup (output_bfd, info,
10119                                          link_order->u.reloc.p->u.name,
10120                                          FALSE, FALSE, TRUE));
10121       if (h != NULL
10122           && (h->root.type == bfd_link_hash_defined
10123               || h->root.type == bfd_link_hash_defweak))
10124         {
10125           asection *section;
10126
10127           section = h->root.u.def.section;
10128           indx = section->output_section->target_index;
10129           *rel_hash_ptr = NULL;
10130           /* It seems that we ought to add the symbol value to the
10131              addend here, but in practice it has already been added
10132              because it was passed to constructor_callback.  */
10133           addend += section->output_section->vma + section->output_offset;
10134         }
10135       else if (h != NULL)
10136         {
10137           /* Setting the index to -2 tells elf_link_output_extsym that
10138              this symbol is used by a reloc.  */
10139           h->indx = -2;
10140           *rel_hash_ptr = h;
10141           indx = 0;
10142         }
10143       else
10144         {
10145           if (! ((*info->callbacks->unattached_reloc)
10146                  (info, link_order->u.reloc.p->u.name, NULL, NULL, 0)))
10147             return FALSE;
10148           indx = 0;
10149         }
10150     }
10151
10152   /* If this is an inplace reloc, we must write the addend into the
10153      object file.  */
10154   if (howto->partial_inplace && addend != 0)
10155     {
10156       bfd_size_type size;
10157       bfd_reloc_status_type rstat;
10158       bfd_byte *buf;
10159       bfd_boolean ok;
10160       const char *sym_name;
10161
10162       size = (bfd_size_type) bfd_get_reloc_size (howto);
10163       buf = (bfd_byte *) bfd_zmalloc (size);
10164       if (buf == NULL)
10165         return FALSE;
10166       rstat = _bfd_relocate_contents (howto, output_bfd, addend, buf);
10167       switch (rstat)
10168         {
10169         case bfd_reloc_ok:
10170           break;
10171
10172         default:
10173         case bfd_reloc_outofrange:
10174           abort ();
10175
10176         case bfd_reloc_overflow:
10177           if (link_order->type == bfd_section_reloc_link_order)
10178             sym_name = bfd_section_name (output_bfd,
10179                                          link_order->u.reloc.p->u.section);
10180           else
10181             sym_name = link_order->u.reloc.p->u.name;
10182           if (! ((*info->callbacks->reloc_overflow)
10183                  (info, NULL, sym_name, howto->name, addend, NULL,
10184                   NULL, (bfd_vma) 0)))
10185             {
10186               free (buf);
10187               return FALSE;
10188             }
10189           break;
10190         }
10191       ok = bfd_set_section_contents (output_bfd, output_section, buf,
10192                                      link_order->offset, size);
10193       free (buf);
10194       if (! ok)
10195         return FALSE;
10196     }
10197
10198   /* The address of a reloc is relative to the section in a
10199      relocatable file, and is a virtual address in an executable
10200      file.  */
10201   offset = link_order->offset;
10202   if (! info->relocatable)
10203     offset += output_section->vma;
10204
10205   for (i = 0; i < bed->s->int_rels_per_ext_rel; i++)
10206     {
10207       irel[i].r_offset = offset;
10208       irel[i].r_info = 0;
10209       irel[i].r_addend = 0;
10210     }
10211   if (bed->s->arch_size == 32)
10212     irel[0].r_info = ELF32_R_INFO (indx, howto->type);
10213   else
10214     irel[0].r_info = ELF64_R_INFO (indx, howto->type);
10215
10216   rel_hdr = reldata->hdr;
10217   erel = rel_hdr->contents;
10218   if (rel_hdr->sh_type == SHT_REL)
10219     {
10220       erel += reldata->count * bed->s->sizeof_rel;
10221       (*bed->s->swap_reloc_out) (output_bfd, irel, erel);
10222     }
10223   else
10224     {
10225       irel[0].r_addend = addend;
10226       erel += reldata->count * bed->s->sizeof_rela;
10227       (*bed->s->swap_reloca_out) (output_bfd, irel, erel);
10228     }
10229
10230   ++reldata->count;
10231
10232   return TRUE;
10233 }
10234
10235
10236 /* Get the output vma of the section pointed to by the sh_link field.  */
10237
10238 static bfd_vma
10239 elf_get_linked_section_vma (struct bfd_link_order *p)
10240 {
10241   Elf_Internal_Shdr **elf_shdrp;
10242   asection *s;
10243   int elfsec;
10244
10245   s = p->u.indirect.section;
10246   elf_shdrp = elf_elfsections (s->owner);
10247   elfsec = _bfd_elf_section_from_bfd_section (s->owner, s);
10248   elfsec = elf_shdrp[elfsec]->sh_link;
10249   /* PR 290:
10250      The Intel C compiler generates SHT_IA_64_UNWIND with
10251      SHF_LINK_ORDER.  But it doesn't set the sh_link or
10252      sh_info fields.  Hence we could get the situation
10253      where elfsec is 0.  */
10254   if (elfsec == 0)
10255     {
10256       const struct elf_backend_data *bed
10257         = get_elf_backend_data (s->owner);
10258       if (bed->link_order_error_handler)
10259         bed->link_order_error_handler
10260           (_("%B: warning: sh_link not set for section `%A'"), s->owner, s);
10261       return 0;
10262     }
10263   else
10264     {
10265       s = elf_shdrp[elfsec]->bfd_section;
10266       return s->output_section->vma + s->output_offset;
10267     }
10268 }
10269
10270
10271 /* Compare two sections based on the locations of the sections they are
10272    linked to.  Used by elf_fixup_link_order.  */
10273
10274 static int
10275 compare_link_order (const void * a, const void * b)
10276 {
10277   bfd_vma apos;
10278   bfd_vma bpos;
10279
10280   apos = elf_get_linked_section_vma (*(struct bfd_link_order **)a);
10281   bpos = elf_get_linked_section_vma (*(struct bfd_link_order **)b);
10282   if (apos < bpos)
10283     return -1;
10284   return apos > bpos;
10285 }
10286
10287
10288 /* Looks for sections with SHF_LINK_ORDER set.  Rearranges them into the same
10289    order as their linked sections.  Returns false if this could not be done
10290    because an output section includes both ordered and unordered
10291    sections.  Ideally we'd do this in the linker proper.  */
10292
10293 static bfd_boolean
10294 elf_fixup_link_order (bfd *abfd, asection *o)
10295 {
10296   int seen_linkorder;
10297   int seen_other;
10298   int n;
10299   struct bfd_link_order *p;
10300   bfd *sub;
10301   const struct elf_backend_data *bed = get_elf_backend_data (abfd);
10302   unsigned elfsec;
10303   struct bfd_link_order **sections;
10304   asection *s, *other_sec, *linkorder_sec;
10305   bfd_vma offset;
10306
10307   other_sec = NULL;
10308   linkorder_sec = NULL;
10309   seen_other = 0;
10310   seen_linkorder = 0;
10311   for (p = o->map_head.link_order; p != NULL; p = p->next)
10312     {
10313       if (p->type == bfd_indirect_link_order)
10314         {
10315           s = p->u.indirect.section;
10316           sub = s->owner;
10317           if (bfd_get_flavour (sub) == bfd_target_elf_flavour
10318               && elf_elfheader (sub)->e_ident[EI_CLASS] == bed->s->elfclass
10319               && (elfsec = _bfd_elf_section_from_bfd_section (sub, s))
10320               && elfsec < elf_numsections (sub)
10321               && elf_elfsections (sub)[elfsec]->sh_flags & SHF_LINK_ORDER
10322               && elf_elfsections (sub)[elfsec]->sh_link < elf_numsections (sub))
10323             {
10324               seen_linkorder++;
10325               linkorder_sec = s;
10326             }
10327           else
10328             {
10329               seen_other++;
10330               other_sec = s;
10331             }
10332         }
10333       else
10334         seen_other++;
10335
10336       if (seen_other && seen_linkorder)
10337         {
10338           if (other_sec && linkorder_sec)
10339             (*_bfd_error_handler) (_("%A has both ordered [`%A' in %B] and unordered [`%A' in %B] sections"),
10340                                    o, linkorder_sec,
10341                                    linkorder_sec->owner, other_sec,
10342                                    other_sec->owner);
10343           else
10344             (*_bfd_error_handler) (_("%A has both ordered and unordered sections"),
10345                                    o);
10346           bfd_set_error (bfd_error_bad_value);
10347           return FALSE;
10348         }
10349     }
10350
10351   if (!seen_linkorder)
10352     return TRUE;
10353
10354   sections = (struct bfd_link_order **)
10355     bfd_malloc (seen_linkorder * sizeof (struct bfd_link_order *));
10356   if (sections == NULL)
10357     return FALSE;
10358   seen_linkorder = 0;
10359
10360   for (p = o->map_head.link_order; p != NULL; p = p->next)
10361     {
10362       sections[seen_linkorder++] = p;
10363     }
10364   /* Sort the input sections in the order of their linked section.  */
10365   qsort (sections, seen_linkorder, sizeof (struct bfd_link_order *),
10366          compare_link_order);
10367
10368   /* Change the offsets of the sections.  */
10369   offset = 0;
10370   for (n = 0; n < seen_linkorder; n++)
10371     {
10372       s = sections[n]->u.indirect.section;
10373       offset &= ~(bfd_vma) 0 << s->alignment_power;
10374       s->output_offset = offset;
10375       sections[n]->offset = offset;
10376       /* FIXME: octets_per_byte.  */
10377       offset += sections[n]->size;
10378     }
10379
10380   free (sections);
10381   return TRUE;
10382 }
10383
10384 static void
10385 elf_final_link_free (bfd *obfd, struct elf_final_link_info *flinfo)
10386 {
10387   asection *o;
10388
10389   if (flinfo->symstrtab != NULL)
10390     _bfd_stringtab_free (flinfo->symstrtab);
10391   if (flinfo->contents != NULL)
10392     free (flinfo->contents);
10393   if (flinfo->external_relocs != NULL)
10394     free (flinfo->external_relocs);
10395   if (flinfo->internal_relocs != NULL)
10396     free (flinfo->internal_relocs);
10397   if (flinfo->external_syms != NULL)
10398     free (flinfo->external_syms);
10399   if (flinfo->locsym_shndx != NULL)
10400     free (flinfo->locsym_shndx);
10401   if (flinfo->internal_syms != NULL)
10402     free (flinfo->internal_syms);
10403   if (flinfo->indices != NULL)
10404     free (flinfo->indices);
10405   if (flinfo->sections != NULL)
10406     free (flinfo->sections);
10407   if (flinfo->symbuf != NULL)
10408     free (flinfo->symbuf);
10409   if (flinfo->symshndxbuf != NULL)
10410     free (flinfo->symshndxbuf);
10411   for (o = obfd->sections; o != NULL; o = o->next)
10412     {
10413       struct bfd_elf_section_data *esdo = elf_section_data (o);
10414       if ((o->flags & SEC_RELOC) != 0 && esdo->rel.hashes != NULL)
10415         free (esdo->rel.hashes);
10416       if ((o->flags & SEC_RELOC) != 0 && esdo->rela.hashes != NULL)
10417         free (esdo->rela.hashes);
10418     }
10419 }
10420
10421 /* Do the final step of an ELF link.  */
10422
10423 bfd_boolean
10424 bfd_elf_final_link (bfd *abfd, struct bfd_link_info *info)
10425 {
10426   bfd_boolean dynamic;
10427   bfd_boolean emit_relocs;
10428   bfd *dynobj;
10429   struct elf_final_link_info flinfo;
10430   asection *o;
10431   struct bfd_link_order *p;
10432   bfd *sub;
10433   bfd_size_type max_contents_size;
10434   bfd_size_type max_external_reloc_size;
10435   bfd_size_type max_internal_reloc_count;
10436   bfd_size_type max_sym_count;
10437   bfd_size_type max_sym_shndx_count;
10438   Elf_Internal_Sym elfsym;
10439   unsigned int i;
10440   Elf_Internal_Shdr *symtab_hdr;
10441   Elf_Internal_Shdr *symtab_shndx_hdr;
10442   const struct elf_backend_data *bed = get_elf_backend_data (abfd);
10443   struct elf_outext_info eoinfo;
10444   bfd_boolean merged;
10445   size_t relativecount = 0;
10446   asection *reldyn = 0;
10447   bfd_size_type amt;
10448   asection *attr_section = NULL;
10449   bfd_vma attr_size = 0;
10450   const char *std_attrs_section;
10451
10452   if (! is_elf_hash_table (info->hash))
10453     return FALSE;
10454
10455   if (info->shared)
10456     abfd->flags |= DYNAMIC;
10457
10458   dynamic = elf_hash_table (info)->dynamic_sections_created;
10459   dynobj = elf_hash_table (info)->dynobj;
10460
10461   emit_relocs = (info->relocatable
10462                  || info->emitrelocations);
10463
10464   flinfo.info = info;
10465   flinfo.output_bfd = abfd;
10466   flinfo.symstrtab = _bfd_elf_stringtab_init ();
10467   if (flinfo.symstrtab == NULL)
10468     return FALSE;
10469
10470   if (! dynamic)
10471     {
10472       flinfo.dynsym_sec = NULL;
10473       flinfo.hash_sec = NULL;
10474       flinfo.symver_sec = NULL;
10475     }
10476   else
10477     {
10478       flinfo.dynsym_sec = bfd_get_linker_section (dynobj, ".dynsym");
10479       flinfo.hash_sec = bfd_get_linker_section (dynobj, ".hash");
10480       /* Note that dynsym_sec can be NULL (on VMS).  */
10481       flinfo.symver_sec = bfd_get_linker_section (dynobj, ".gnu.version");
10482       /* Note that it is OK if symver_sec is NULL.  */
10483     }
10484
10485   flinfo.contents = NULL;
10486   flinfo.external_relocs = NULL;
10487   flinfo.internal_relocs = NULL;
10488   flinfo.external_syms = NULL;
10489   flinfo.locsym_shndx = NULL;
10490   flinfo.internal_syms = NULL;
10491   flinfo.indices = NULL;
10492   flinfo.sections = NULL;
10493   flinfo.symbuf = NULL;
10494   flinfo.symshndxbuf = NULL;
10495   flinfo.symbuf_count = 0;
10496   flinfo.shndxbuf_size = 0;
10497   flinfo.filesym_count = 0;
10498
10499   /* The object attributes have been merged.  Remove the input
10500      sections from the link, and set the contents of the output
10501      secton.  */
10502   std_attrs_section = get_elf_backend_data (abfd)->obj_attrs_section;
10503   for (o = abfd->sections; o != NULL; o = o->next)
10504     {
10505       if ((std_attrs_section && strcmp (o->name, std_attrs_section) == 0)
10506           || strcmp (o->name, ".gnu.attributes") == 0)
10507         {
10508           for (p = o->map_head.link_order; p != NULL; p = p->next)
10509             {
10510               asection *input_section;
10511
10512               if (p->type != bfd_indirect_link_order)
10513                 continue;
10514               input_section = p->u.indirect.section;
10515               /* Hack: reset the SEC_HAS_CONTENTS flag so that
10516                  elf_link_input_bfd ignores this section.  */
10517               input_section->flags &= ~SEC_HAS_CONTENTS;
10518             }
10519
10520           attr_size = bfd_elf_obj_attr_size (abfd);
10521           if (attr_size)
10522             {
10523               bfd_set_section_size (abfd, o, attr_size);
10524               attr_section = o;
10525               /* Skip this section later on.  */
10526               o->map_head.link_order = NULL;
10527             }
10528           else
10529             o->flags |= SEC_EXCLUDE;
10530         }
10531     }
10532
10533   /* Count up the number of relocations we will output for each output
10534      section, so that we know the sizes of the reloc sections.  We
10535      also figure out some maximum sizes.  */
10536   max_contents_size = 0;
10537   max_external_reloc_size = 0;
10538   max_internal_reloc_count = 0;
10539   max_sym_count = 0;
10540   max_sym_shndx_count = 0;
10541   merged = FALSE;
10542   for (o = abfd->sections; o != NULL; o = o->next)
10543     {
10544       struct bfd_elf_section_data *esdo = elf_section_data (o);
10545       o->reloc_count = 0;
10546
10547       for (p = o->map_head.link_order; p != NULL; p = p->next)
10548         {
10549           unsigned int reloc_count = 0;
10550           struct bfd_elf_section_data *esdi = NULL;
10551
10552           if (p->type == bfd_section_reloc_link_order
10553               || p->type == bfd_symbol_reloc_link_order)
10554             reloc_count = 1;
10555           else if (p->type == bfd_indirect_link_order)
10556             {
10557               asection *sec;
10558
10559               sec = p->u.indirect.section;
10560               esdi = elf_section_data (sec);
10561
10562               /* Mark all sections which are to be included in the
10563                  link.  This will normally be every section.  We need
10564                  to do this so that we can identify any sections which
10565                  the linker has decided to not include.  */
10566               sec->linker_mark = TRUE;
10567
10568               if (sec->flags & SEC_MERGE)
10569                 merged = TRUE;
10570
10571               if (esdo->this_hdr.sh_type == SHT_REL
10572                   || esdo->this_hdr.sh_type == SHT_RELA)
10573                 /* Some backends use reloc_count in relocation sections
10574                    to count particular types of relocs.  Of course,
10575                    reloc sections themselves can't have relocations.  */
10576                 reloc_count = 0;
10577               else if (info->relocatable || info->emitrelocations)
10578                 reloc_count = sec->reloc_count;
10579               else if (bed->elf_backend_count_relocs)
10580                 reloc_count = (*bed->elf_backend_count_relocs) (info, sec);
10581
10582               if (sec->rawsize > max_contents_size)
10583                 max_contents_size = sec->rawsize;
10584               if (sec->size > max_contents_size)
10585                 max_contents_size = sec->size;
10586
10587               /* We are interested in just local symbols, not all
10588                  symbols.  */
10589               if (bfd_get_flavour (sec->owner) == bfd_target_elf_flavour
10590                   && (sec->owner->flags & DYNAMIC) == 0)
10591                 {
10592                   size_t sym_count;
10593
10594                   if (elf_bad_symtab (sec->owner))
10595                     sym_count = (elf_tdata (sec->owner)->symtab_hdr.sh_size
10596                                  / bed->s->sizeof_sym);
10597                   else
10598                     sym_count = elf_tdata (sec->owner)->symtab_hdr.sh_info;
10599
10600                   if (sym_count > max_sym_count)
10601                     max_sym_count = sym_count;
10602
10603                   if (sym_count > max_sym_shndx_count
10604                       && elf_symtab_shndx (sec->owner) != 0)
10605                     max_sym_shndx_count = sym_count;
10606
10607                   if ((sec->flags & SEC_RELOC) != 0)
10608                     {
10609                       size_t ext_size = 0;
10610
10611                       if (esdi->rel.hdr != NULL)
10612                         ext_size = esdi->rel.hdr->sh_size;
10613                       if (esdi->rela.hdr != NULL)
10614                         ext_size += esdi->rela.hdr->sh_size;
10615
10616                       if (ext_size > max_external_reloc_size)
10617                         max_external_reloc_size = ext_size;
10618                       if (sec->reloc_count > max_internal_reloc_count)
10619                         max_internal_reloc_count = sec->reloc_count;
10620                     }
10621                 }
10622             }
10623
10624           if (reloc_count == 0)
10625             continue;
10626
10627           o->reloc_count += reloc_count;
10628
10629           if (p->type == bfd_indirect_link_order
10630               && (info->relocatable || info->emitrelocations))
10631             {
10632               if (esdi->rel.hdr)
10633                 esdo->rel.count += NUM_SHDR_ENTRIES (esdi->rel.hdr);
10634               if (esdi->rela.hdr)
10635                 esdo->rela.count += NUM_SHDR_ENTRIES (esdi->rela.hdr);
10636             }
10637           else
10638             {
10639               if (o->use_rela_p)
10640                 esdo->rela.count += reloc_count;
10641               else
10642                 esdo->rel.count += reloc_count;
10643             }
10644         }
10645
10646       if (o->reloc_count > 0)
10647         o->flags |= SEC_RELOC;
10648       else
10649         {
10650           /* Explicitly clear the SEC_RELOC flag.  The linker tends to
10651              set it (this is probably a bug) and if it is set
10652              assign_section_numbers will create a reloc section.  */
10653           o->flags &=~ SEC_RELOC;
10654         }
10655
10656       /* If the SEC_ALLOC flag is not set, force the section VMA to
10657          zero.  This is done in elf_fake_sections as well, but forcing
10658          the VMA to 0 here will ensure that relocs against these
10659          sections are handled correctly.  */
10660       if ((o->flags & SEC_ALLOC) == 0
10661           && ! o->user_set_vma)
10662         o->vma = 0;
10663     }
10664
10665   if (! info->relocatable && merged)
10666     elf_link_hash_traverse (elf_hash_table (info),
10667                             _bfd_elf_link_sec_merge_syms, abfd);
10668
10669   /* Figure out the file positions for everything but the symbol table
10670      and the relocs.  We set symcount to force assign_section_numbers
10671      to create a symbol table.  */
10672   bfd_get_symcount (abfd) = info->strip != strip_all || emit_relocs;
10673   BFD_ASSERT (! abfd->output_has_begun);
10674   if (! _bfd_elf_compute_section_file_positions (abfd, info))
10675     goto error_return;
10676
10677   /* Set sizes, and assign file positions for reloc sections.  */
10678   for (o = abfd->sections; o != NULL; o = o->next)
10679     {
10680       struct bfd_elf_section_data *esdo = elf_section_data (o);
10681       if ((o->flags & SEC_RELOC) != 0)
10682         {
10683           if (esdo->rel.hdr
10684               && !(_bfd_elf_link_size_reloc_section (abfd, &esdo->rel)))
10685             goto error_return;
10686
10687           if (esdo->rela.hdr
10688               && !(_bfd_elf_link_size_reloc_section (abfd, &esdo->rela)))
10689             goto error_return;
10690         }
10691
10692       /* Now, reset REL_COUNT and REL_COUNT2 so that we can use them
10693          to count upwards while actually outputting the relocations.  */
10694       esdo->rel.count = 0;
10695       esdo->rela.count = 0;
10696     }
10697
10698   /* We have now assigned file positions for all the sections except
10699      .symtab, .strtab, and non-loaded reloc sections.  We start the
10700      .symtab section at the current file position, and write directly
10701      to it.  We build the .strtab section in memory.  */
10702   bfd_get_symcount (abfd) = 0;
10703   symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
10704   /* sh_name is set in prep_headers.  */
10705   symtab_hdr->sh_type = SHT_SYMTAB;
10706   /* sh_flags, sh_addr and sh_size all start off zero.  */
10707   symtab_hdr->sh_entsize = bed->s->sizeof_sym;
10708   /* sh_link is set in assign_section_numbers.  */
10709   /* sh_info is set below.  */
10710   /* sh_offset is set just below.  */
10711   symtab_hdr->sh_addralign = (bfd_vma) 1 << bed->s->log_file_align;
10712
10713   /* Allocate a buffer to hold swapped out symbols.  This is to avoid
10714      continuously seeking to the right position in the file.  */
10715   if (! info->keep_memory || max_sym_count < 20)
10716     flinfo.symbuf_size = 20;
10717   else
10718     flinfo.symbuf_size = max_sym_count;
10719   amt = flinfo.symbuf_size;
10720   amt *= bed->s->sizeof_sym;
10721   flinfo.symbuf = (bfd_byte *) bfd_malloc (amt);
10722   if (flinfo.symbuf == NULL)
10723     goto error_return;
10724   if (elf_numsections (abfd) > (SHN_LORESERVE & 0xFFFF))
10725     {
10726       /* Wild guess at number of output symbols.  realloc'd as needed.  */
10727       amt = 2 * max_sym_count + elf_numsections (abfd) + 1000;
10728       flinfo.shndxbuf_size = amt;
10729       amt *= sizeof (Elf_External_Sym_Shndx);
10730       flinfo.symshndxbuf = (Elf_External_Sym_Shndx *) bfd_zmalloc (amt);
10731       if (flinfo.symshndxbuf == NULL)
10732         goto error_return;
10733     }
10734
10735   if (info->strip != strip_all || emit_relocs)
10736     {
10737       file_ptr off = elf_next_file_pos (abfd);
10738
10739       _bfd_elf_assign_file_position_for_section (symtab_hdr, off, TRUE);
10740
10741       /* Note that at this point elf_next_file_pos (abfd) is
10742          incorrect.  We do not yet know the size of the .symtab section.
10743          We correct next_file_pos below, after we do know the size.  */
10744
10745       /* Start writing out the symbol table.  The first symbol is always a
10746          dummy symbol.  */
10747       elfsym.st_value = 0;
10748       elfsym.st_size = 0;
10749       elfsym.st_info = 0;
10750       elfsym.st_other = 0;
10751       elfsym.st_shndx = SHN_UNDEF;
10752       elfsym.st_target_internal = 0;
10753       if (elf_link_output_sym (&flinfo, NULL, &elfsym, bfd_und_section_ptr,
10754                                NULL) != 1)
10755         goto error_return;
10756
10757       /* Output a symbol for each section.  We output these even if we are
10758          discarding local symbols, since they are used for relocs.  These
10759          symbols have no names.  We store the index of each one in the
10760          index field of the section, so that we can find it again when
10761          outputting relocs.  */
10762
10763       elfsym.st_size = 0;
10764       elfsym.st_info = ELF_ST_INFO (STB_LOCAL, STT_SECTION);
10765       elfsym.st_other = 0;
10766       elfsym.st_value = 0;
10767       elfsym.st_target_internal = 0;
10768       for (i = 1; i < elf_numsections (abfd); i++)
10769         {
10770           o = bfd_section_from_elf_index (abfd, i);
10771           if (o != NULL)
10772             {
10773               o->target_index = bfd_get_symcount (abfd);
10774               elfsym.st_shndx = i;
10775               if (!info->relocatable)
10776                 elfsym.st_value = o->vma;
10777               if (elf_link_output_sym (&flinfo, NULL, &elfsym, o, NULL) != 1)
10778                 goto error_return;
10779             }
10780         }
10781     }
10782
10783   /* Allocate some memory to hold information read in from the input
10784      files.  */
10785   if (max_contents_size != 0)
10786     {
10787       flinfo.contents = (bfd_byte *) bfd_malloc (max_contents_size);
10788       if (flinfo.contents == NULL)
10789         goto error_return;
10790     }
10791
10792   if (max_external_reloc_size != 0)
10793     {
10794       flinfo.external_relocs = bfd_malloc (max_external_reloc_size);
10795       if (flinfo.external_relocs == NULL)
10796         goto error_return;
10797     }
10798
10799   if (max_internal_reloc_count != 0)
10800     {
10801       amt = max_internal_reloc_count * bed->s->int_rels_per_ext_rel;
10802       amt *= sizeof (Elf_Internal_Rela);
10803       flinfo.internal_relocs = (Elf_Internal_Rela *) bfd_malloc (amt);
10804       if (flinfo.internal_relocs == NULL)
10805         goto error_return;
10806     }
10807
10808   if (max_sym_count != 0)
10809     {
10810       amt = max_sym_count * bed->s->sizeof_sym;
10811       flinfo.external_syms = (bfd_byte *) bfd_malloc (amt);
10812       if (flinfo.external_syms == NULL)
10813         goto error_return;
10814
10815       amt = max_sym_count * sizeof (Elf_Internal_Sym);
10816       flinfo.internal_syms = (Elf_Internal_Sym *) bfd_malloc (amt);
10817       if (flinfo.internal_syms == NULL)
10818         goto error_return;
10819
10820       amt = max_sym_count * sizeof (long);
10821       flinfo.indices = (long int *) bfd_malloc (amt);
10822       if (flinfo.indices == NULL)
10823         goto error_return;
10824
10825       amt = max_sym_count * sizeof (asection *);
10826       flinfo.sections = (asection **) bfd_malloc (amt);
10827       if (flinfo.sections == NULL)
10828         goto error_return;
10829     }
10830
10831   if (max_sym_shndx_count != 0)
10832     {
10833       amt = max_sym_shndx_count * sizeof (Elf_External_Sym_Shndx);
10834       flinfo.locsym_shndx = (Elf_External_Sym_Shndx *) bfd_malloc (amt);
10835       if (flinfo.locsym_shndx == NULL)
10836         goto error_return;
10837     }
10838
10839   if (elf_hash_table (info)->tls_sec)
10840     {
10841       bfd_vma base, end = 0;
10842       asection *sec;
10843
10844       for (sec = elf_hash_table (info)->tls_sec;
10845            sec && (sec->flags & SEC_THREAD_LOCAL);
10846            sec = sec->next)
10847         {
10848           bfd_size_type size = sec->size;
10849
10850           if (size == 0
10851               && (sec->flags & SEC_HAS_CONTENTS) == 0)
10852             {
10853               struct bfd_link_order *ord = sec->map_tail.link_order;
10854
10855               if (ord != NULL)
10856                 size = ord->offset + ord->size;
10857             }
10858           end = sec->vma + size;
10859         }
10860       base = elf_hash_table (info)->tls_sec->vma;
10861       /* Only align end of TLS section if static TLS doesn't have special
10862          alignment requirements.  */
10863       if (bed->static_tls_alignment == 1)
10864         end = align_power (end,
10865                            elf_hash_table (info)->tls_sec->alignment_power);
10866       elf_hash_table (info)->tls_size = end - base;
10867     }
10868
10869   /* Reorder SHF_LINK_ORDER sections.  */
10870   for (o = abfd->sections; o != NULL; o = o->next)
10871     {
10872       if (!elf_fixup_link_order (abfd, o))
10873         return FALSE;
10874     }
10875
10876   /* Since ELF permits relocations to be against local symbols, we
10877      must have the local symbols available when we do the relocations.
10878      Since we would rather only read the local symbols once, and we
10879      would rather not keep them in memory, we handle all the
10880      relocations for a single input file at the same time.
10881
10882      Unfortunately, there is no way to know the total number of local
10883      symbols until we have seen all of them, and the local symbol
10884      indices precede the global symbol indices.  This means that when
10885      we are generating relocatable output, and we see a reloc against
10886      a global symbol, we can not know the symbol index until we have
10887      finished examining all the local symbols to see which ones we are
10888      going to output.  To deal with this, we keep the relocations in
10889      memory, and don't output them until the end of the link.  This is
10890      an unfortunate waste of memory, but I don't see a good way around
10891      it.  Fortunately, it only happens when performing a relocatable
10892      link, which is not the common case.  FIXME: If keep_memory is set
10893      we could write the relocs out and then read them again; I don't
10894      know how bad the memory loss will be.  */
10895
10896   for (sub = info->input_bfds; sub != NULL; sub = sub->link.next)
10897     sub->output_has_begun = FALSE;
10898   for (o = abfd->sections; o != NULL; o = o->next)
10899     {
10900       for (p = o->map_head.link_order; p != NULL; p = p->next)
10901         {
10902           if (p->type == bfd_indirect_link_order
10903               && (bfd_get_flavour ((sub = p->u.indirect.section->owner))
10904                   == bfd_target_elf_flavour)
10905               && elf_elfheader (sub)->e_ident[EI_CLASS] == bed->s->elfclass)
10906             {
10907               if (! sub->output_has_begun)
10908                 {
10909                   if (! elf_link_input_bfd (&flinfo, sub))
10910                     goto error_return;
10911                   sub->output_has_begun = TRUE;
10912                 }
10913             }
10914           else if (p->type == bfd_section_reloc_link_order
10915                    || p->type == bfd_symbol_reloc_link_order)
10916             {
10917               if (! elf_reloc_link_order (abfd, info, o, p))
10918                 goto error_return;
10919             }
10920           else
10921             {
10922               if (! _bfd_default_link_order (abfd, info, o, p))
10923                 {
10924                   if (p->type == bfd_indirect_link_order
10925                       && (bfd_get_flavour (sub)
10926                           == bfd_target_elf_flavour)
10927                       && (elf_elfheader (sub)->e_ident[EI_CLASS]
10928                           != bed->s->elfclass))
10929                     {
10930                       const char *iclass, *oclass;
10931
10932                       if (bed->s->elfclass == ELFCLASS64)
10933                         {
10934                           iclass = "ELFCLASS32";
10935                           oclass = "ELFCLASS64";
10936                         }
10937                       else
10938                         {
10939                           iclass = "ELFCLASS64";
10940                           oclass = "ELFCLASS32";
10941                         }
10942
10943                       bfd_set_error (bfd_error_wrong_format);
10944                       (*_bfd_error_handler)
10945                         (_("%B: file class %s incompatible with %s"),
10946                          sub, iclass, oclass);
10947                     }
10948
10949                   goto error_return;
10950                 }
10951             }
10952         }
10953     }
10954
10955   /* Free symbol buffer if needed.  */
10956   if (!info->reduce_memory_overheads)
10957     {
10958       for (sub = info->input_bfds; sub != NULL; sub = sub->link.next)
10959         if (bfd_get_flavour (sub) == bfd_target_elf_flavour
10960             && elf_tdata (sub)->symbuf)
10961           {
10962             free (elf_tdata (sub)->symbuf);
10963             elf_tdata (sub)->symbuf = NULL;
10964           }
10965     }
10966
10967   /* Output any global symbols that got converted to local in a
10968      version script or due to symbol visibility.  We do this in a
10969      separate step since ELF requires all local symbols to appear
10970      prior to any global symbols.  FIXME: We should only do this if
10971      some global symbols were, in fact, converted to become local.
10972      FIXME: Will this work correctly with the Irix 5 linker?  */
10973   eoinfo.failed = FALSE;
10974   eoinfo.flinfo = &flinfo;
10975   eoinfo.localsyms = TRUE;
10976   eoinfo.need_second_pass = FALSE;
10977   eoinfo.second_pass = FALSE;
10978   eoinfo.file_sym_done = FALSE;
10979   bfd_hash_traverse (&info->hash->table, elf_link_output_extsym, &eoinfo);
10980   if (eoinfo.failed)
10981     return FALSE;
10982
10983   if (eoinfo.need_second_pass)
10984     {
10985       eoinfo.second_pass = TRUE;
10986       bfd_hash_traverse (&info->hash->table, elf_link_output_extsym, &eoinfo);
10987       if (eoinfo.failed)
10988         return FALSE;
10989     }
10990
10991   /* If backend needs to output some local symbols not present in the hash
10992      table, do it now.  */
10993   if (bed->elf_backend_output_arch_local_syms
10994       && (info->strip != strip_all || emit_relocs))
10995     {
10996       typedef int (*out_sym_func)
10997         (void *, const char *, Elf_Internal_Sym *, asection *,
10998          struct elf_link_hash_entry *);
10999
11000       if (! ((*bed->elf_backend_output_arch_local_syms)
11001              (abfd, info, &flinfo, (out_sym_func) elf_link_output_sym)))
11002         return FALSE;
11003     }
11004
11005   /* That wrote out all the local symbols.  Finish up the symbol table
11006      with the global symbols. Even if we want to strip everything we
11007      can, we still need to deal with those global symbols that got
11008      converted to local in a version script.  */
11009
11010   /* The sh_info field records the index of the first non local symbol.  */
11011   symtab_hdr->sh_info = bfd_get_symcount (abfd);
11012
11013   if (dynamic
11014       && flinfo.dynsym_sec != NULL
11015       && flinfo.dynsym_sec->output_section != bfd_abs_section_ptr)
11016     {
11017       Elf_Internal_Sym sym;
11018       bfd_byte *dynsym = flinfo.dynsym_sec->contents;
11019       long last_local = 0;
11020
11021       /* Write out the section symbols for the output sections.  */
11022       if (info->shared || elf_hash_table (info)->is_relocatable_executable)
11023         {
11024           asection *s;
11025
11026           sym.st_size = 0;
11027           sym.st_name = 0;
11028           sym.st_info = ELF_ST_INFO (STB_LOCAL, STT_SECTION);
11029           sym.st_other = 0;
11030           sym.st_target_internal = 0;
11031
11032           for (s = abfd->sections; s != NULL; s = s->next)
11033             {
11034               int indx;
11035               bfd_byte *dest;
11036               long dynindx;
11037
11038               dynindx = elf_section_data (s)->dynindx;
11039               if (dynindx <= 0)
11040                 continue;
11041               indx = elf_section_data (s)->this_idx;
11042               BFD_ASSERT (indx > 0);
11043               sym.st_shndx = indx;
11044               if (! check_dynsym (abfd, &sym))
11045                 return FALSE;
11046               sym.st_value = s->vma;
11047               dest = dynsym + dynindx * bed->s->sizeof_sym;
11048               if (last_local < dynindx)
11049                 last_local = dynindx;
11050               bed->s->swap_symbol_out (abfd, &sym, dest, 0);
11051             }
11052         }
11053
11054       /* Write out the local dynsyms.  */
11055       if (elf_hash_table (info)->dynlocal)
11056         {
11057           struct elf_link_local_dynamic_entry *e;
11058           for (e = elf_hash_table (info)->dynlocal; e ; e = e->next)
11059             {
11060               asection *s;
11061               bfd_byte *dest;
11062
11063               /* Copy the internal symbol and turn off visibility.
11064                  Note that we saved a word of storage and overwrote
11065                  the original st_name with the dynstr_index.  */
11066               sym = e->isym;
11067               sym.st_other &= ~ELF_ST_VISIBILITY (-1);
11068
11069               s = bfd_section_from_elf_index (e->input_bfd,
11070                                               e->isym.st_shndx);
11071               if (s != NULL)
11072                 {
11073                   sym.st_shndx =
11074                     elf_section_data (s->output_section)->this_idx;
11075                   if (! check_dynsym (abfd, &sym))
11076                     return FALSE;
11077                   sym.st_value = (s->output_section->vma
11078                                   + s->output_offset
11079                                   + e->isym.st_value);
11080                 }
11081
11082               if (last_local < e->dynindx)
11083                 last_local = e->dynindx;
11084
11085               dest = dynsym + e->dynindx * bed->s->sizeof_sym;
11086               bed->s->swap_symbol_out (abfd, &sym, dest, 0);
11087             }
11088         }
11089
11090       elf_section_data (flinfo.dynsym_sec->output_section)->this_hdr.sh_info =
11091         last_local + 1;
11092     }
11093
11094   /* We get the global symbols from the hash table.  */
11095   eoinfo.failed = FALSE;
11096   eoinfo.localsyms = FALSE;
11097   eoinfo.flinfo = &flinfo;
11098   bfd_hash_traverse (&info->hash->table, elf_link_output_extsym, &eoinfo);
11099   if (eoinfo.failed)
11100     return FALSE;
11101
11102   /* If backend needs to output some symbols not present in the hash
11103      table, do it now.  */
11104   if (bed->elf_backend_output_arch_syms
11105       && (info->strip != strip_all || emit_relocs))
11106     {
11107       typedef int (*out_sym_func)
11108         (void *, const char *, Elf_Internal_Sym *, asection *,
11109          struct elf_link_hash_entry *);
11110
11111       if (! ((*bed->elf_backend_output_arch_syms)
11112              (abfd, info, &flinfo, (out_sym_func) elf_link_output_sym)))
11113         return FALSE;
11114     }
11115
11116   /* Flush all symbols to the file.  */
11117   if (! elf_link_flush_output_syms (&flinfo, bed))
11118     return FALSE;
11119
11120   /* Now we know the size of the symtab section.  */
11121   if (bfd_get_symcount (abfd) > 0)
11122     {
11123       /* Finish up and write out the symbol string table (.strtab)
11124          section.  */
11125       Elf_Internal_Shdr *symstrtab_hdr;
11126       file_ptr off = symtab_hdr->sh_offset + symtab_hdr->sh_size;
11127
11128       symtab_shndx_hdr = &elf_tdata (abfd)->symtab_shndx_hdr;
11129       if (symtab_shndx_hdr->sh_name != 0)
11130         {
11131           symtab_shndx_hdr->sh_type = SHT_SYMTAB_SHNDX;
11132           symtab_shndx_hdr->sh_entsize = sizeof (Elf_External_Sym_Shndx);
11133           symtab_shndx_hdr->sh_addralign = sizeof (Elf_External_Sym_Shndx);
11134           amt = bfd_get_symcount (abfd) * sizeof (Elf_External_Sym_Shndx);
11135           symtab_shndx_hdr->sh_size = amt;
11136
11137           off = _bfd_elf_assign_file_position_for_section (symtab_shndx_hdr,
11138                                                            off, TRUE);
11139
11140           if (bfd_seek (abfd, symtab_shndx_hdr->sh_offset, SEEK_SET) != 0
11141               || (bfd_bwrite (flinfo.symshndxbuf, amt, abfd) != amt))
11142             return FALSE;
11143         }
11144
11145       symstrtab_hdr = &elf_tdata (abfd)->strtab_hdr;
11146       /* sh_name was set in prep_headers.  */
11147       symstrtab_hdr->sh_type = SHT_STRTAB;
11148       symstrtab_hdr->sh_flags = 0;
11149       symstrtab_hdr->sh_addr = 0;
11150       symstrtab_hdr->sh_size = _bfd_stringtab_size (flinfo.symstrtab);
11151       symstrtab_hdr->sh_entsize = 0;
11152       symstrtab_hdr->sh_link = 0;
11153       symstrtab_hdr->sh_info = 0;
11154       /* sh_offset is set just below.  */
11155       symstrtab_hdr->sh_addralign = 1;
11156
11157       off = _bfd_elf_assign_file_position_for_section (symstrtab_hdr,
11158                                                        off, TRUE);
11159       elf_next_file_pos (abfd) = off;
11160
11161       if (bfd_seek (abfd, symstrtab_hdr->sh_offset, SEEK_SET) != 0
11162           || ! _bfd_stringtab_emit (abfd, flinfo.symstrtab))
11163         return FALSE;
11164     }
11165
11166   /* Adjust the relocs to have the correct symbol indices.  */
11167   for (o = abfd->sections; o != NULL; o = o->next)
11168     {
11169       struct bfd_elf_section_data *esdo = elf_section_data (o);
11170       if ((o->flags & SEC_RELOC) == 0)
11171         continue;
11172
11173       if (esdo->rel.hdr != NULL)
11174         elf_link_adjust_relocs (abfd, &esdo->rel);
11175       if (esdo->rela.hdr != NULL)
11176         elf_link_adjust_relocs (abfd, &esdo->rela);
11177
11178       /* Set the reloc_count field to 0 to prevent write_relocs from
11179          trying to swap the relocs out itself.  */
11180       o->reloc_count = 0;
11181     }
11182
11183   if (dynamic && info->combreloc && dynobj != NULL)
11184     relativecount = elf_link_sort_relocs (abfd, info, &reldyn);
11185
11186   /* If we are linking against a dynamic object, or generating a
11187      shared library, finish up the dynamic linking information.  */
11188   if (dynamic)
11189     {
11190       bfd_byte *dyncon, *dynconend;
11191
11192       /* Fix up .dynamic entries.  */
11193       o = bfd_get_linker_section (dynobj, ".dynamic");
11194       BFD_ASSERT (o != NULL);
11195
11196       dyncon = o->contents;
11197       dynconend = o->contents + o->size;
11198       for (; dyncon < dynconend; dyncon += bed->s->sizeof_dyn)
11199         {
11200           Elf_Internal_Dyn dyn;
11201           const char *name;
11202           unsigned int type;
11203
11204           bed->s->swap_dyn_in (dynobj, dyncon, &dyn);
11205
11206           switch (dyn.d_tag)
11207             {
11208             default:
11209               continue;
11210             case DT_NULL:
11211               if (relativecount > 0 && dyncon + bed->s->sizeof_dyn < dynconend)
11212                 {
11213                   switch (elf_section_data (reldyn)->this_hdr.sh_type)
11214                     {
11215                     case SHT_REL: dyn.d_tag = DT_RELCOUNT; break;
11216                     case SHT_RELA: dyn.d_tag = DT_RELACOUNT; break;
11217                     default: continue;
11218                     }
11219                   dyn.d_un.d_val = relativecount;
11220                   relativecount = 0;
11221                   break;
11222                 }
11223               continue;
11224
11225             case DT_INIT:
11226               name = info->init_function;
11227               goto get_sym;
11228             case DT_FINI:
11229               name = info->fini_function;
11230             get_sym:
11231               {
11232                 struct elf_link_hash_entry *h;
11233
11234                 h = elf_link_hash_lookup (elf_hash_table (info), name,
11235                                           FALSE, FALSE, TRUE);
11236                 if (h != NULL
11237                     && (h->root.type == bfd_link_hash_defined
11238                         || h->root.type == bfd_link_hash_defweak))
11239                   {
11240                     dyn.d_un.d_ptr = h->root.u.def.value;
11241                     o = h->root.u.def.section;
11242                     if (o->output_section != NULL)
11243                       dyn.d_un.d_ptr += (o->output_section->vma
11244                                          + o->output_offset);
11245                     else
11246                       {
11247                         /* The symbol is imported from another shared
11248                            library and does not apply to this one.  */
11249                         dyn.d_un.d_ptr = 0;
11250                       }
11251                     break;
11252                   }
11253               }
11254               continue;
11255
11256             case DT_PREINIT_ARRAYSZ:
11257               name = ".preinit_array";
11258               goto get_size;
11259             case DT_INIT_ARRAYSZ:
11260               name = ".init_array";
11261               goto get_size;
11262             case DT_FINI_ARRAYSZ:
11263               name = ".fini_array";
11264             get_size:
11265               o = bfd_get_section_by_name (abfd, name);
11266               if (o == NULL)
11267                 {
11268                   (*_bfd_error_handler)
11269                     (_("%B: could not find output section %s"), abfd, name);
11270                   goto error_return;
11271                 }
11272               if (o->size == 0)
11273                 (*_bfd_error_handler)
11274                   (_("warning: %s section has zero size"), name);
11275               dyn.d_un.d_val = o->size;
11276               break;
11277
11278             case DT_PREINIT_ARRAY:
11279               name = ".preinit_array";
11280               goto get_vma;
11281             case DT_INIT_ARRAY:
11282               name = ".init_array";
11283               goto get_vma;
11284             case DT_FINI_ARRAY:
11285               name = ".fini_array";
11286               goto get_vma;
11287
11288             case DT_HASH:
11289               name = ".hash";
11290               goto get_vma;
11291             case DT_GNU_HASH:
11292               name = ".gnu.hash";
11293               goto get_vma;
11294             case DT_STRTAB:
11295               name = ".dynstr";
11296               goto get_vma;
11297             case DT_SYMTAB:
11298               name = ".dynsym";
11299               goto get_vma;
11300             case DT_VERDEF:
11301               name = ".gnu.version_d";
11302               goto get_vma;
11303             case DT_VERNEED:
11304               name = ".gnu.version_r";
11305               goto get_vma;
11306             case DT_VERSYM:
11307               name = ".gnu.version";
11308             get_vma:
11309               o = bfd_get_section_by_name (abfd, name);
11310               if (o == NULL)
11311                 {
11312                   (*_bfd_error_handler)
11313                     (_("%B: could not find output section %s"), abfd, name);
11314                   goto error_return;
11315                 }
11316               if (elf_section_data (o->output_section)->this_hdr.sh_type == SHT_NOTE)
11317                 {
11318                   (*_bfd_error_handler)
11319                     (_("warning: section '%s' is being made into a note"), name);
11320                   bfd_set_error (bfd_error_nonrepresentable_section);
11321                   goto error_return;
11322                 }
11323               dyn.d_un.d_ptr = o->vma;
11324               break;
11325
11326             case DT_REL:
11327             case DT_RELA:
11328             case DT_RELSZ:
11329             case DT_RELASZ:
11330               if (dyn.d_tag == DT_REL || dyn.d_tag == DT_RELSZ)
11331                 type = SHT_REL;
11332               else
11333                 type = SHT_RELA;
11334               dyn.d_un.d_val = 0;
11335               dyn.d_un.d_ptr = 0;
11336               for (i = 1; i < elf_numsections (abfd); i++)
11337                 {
11338                   Elf_Internal_Shdr *hdr;
11339
11340                   hdr = elf_elfsections (abfd)[i];
11341                   if (hdr->sh_type == type
11342                       && (hdr->sh_flags & SHF_ALLOC) != 0)
11343                     {
11344                       if (dyn.d_tag == DT_RELSZ || dyn.d_tag == DT_RELASZ)
11345                         dyn.d_un.d_val += hdr->sh_size;
11346                       else
11347                         {
11348                           if (dyn.d_un.d_ptr == 0
11349                               || hdr->sh_addr < dyn.d_un.d_ptr)
11350                             dyn.d_un.d_ptr = hdr->sh_addr;
11351                         }
11352                     }
11353                 }
11354               break;
11355             }
11356           bed->s->swap_dyn_out (dynobj, &dyn, dyncon);
11357         }
11358     }
11359
11360   /* If we have created any dynamic sections, then output them.  */
11361   if (dynobj != NULL)
11362     {
11363       if (! (*bed->elf_backend_finish_dynamic_sections) (abfd, info))
11364         goto error_return;
11365
11366       /* Check for DT_TEXTREL (late, in case the backend removes it).  */
11367       if (((info->warn_shared_textrel && info->shared)
11368            || info->error_textrel)
11369           && (o = bfd_get_linker_section (dynobj, ".dynamic")) != NULL)
11370         {
11371           bfd_byte *dyncon, *dynconend;
11372
11373           dyncon = o->contents;
11374           dynconend = o->contents + o->size;
11375           for (; dyncon < dynconend; dyncon += bed->s->sizeof_dyn)
11376             {
11377               Elf_Internal_Dyn dyn;
11378
11379               bed->s->swap_dyn_in (dynobj, dyncon, &dyn);
11380
11381               if (dyn.d_tag == DT_TEXTREL)
11382                 {
11383                   if (info->error_textrel)
11384                     info->callbacks->einfo
11385                       (_("%P%X: read-only segment has dynamic relocations.\n"));
11386                   else
11387                     info->callbacks->einfo
11388                       (_("%P: warning: creating a DT_TEXTREL in a shared object.\n"));
11389                   break;
11390                 }
11391             }
11392         }
11393
11394       for (o = dynobj->sections; o != NULL; o = o->next)
11395         {
11396           if ((o->flags & SEC_HAS_CONTENTS) == 0
11397               || o->size == 0
11398               || o->output_section == bfd_abs_section_ptr)
11399             continue;
11400           if ((o->flags & SEC_LINKER_CREATED) == 0)
11401             {
11402               /* At this point, we are only interested in sections
11403                  created by _bfd_elf_link_create_dynamic_sections.  */
11404               continue;
11405             }
11406           if (elf_hash_table (info)->stab_info.stabstr == o)
11407             continue;
11408           if (elf_hash_table (info)->eh_info.hdr_sec == o)
11409             continue;
11410           if (strcmp (o->name, ".dynstr") != 0)
11411             {
11412               /* FIXME: octets_per_byte.  */
11413               if (! bfd_set_section_contents (abfd, o->output_section,
11414                                               o->contents,
11415                                               (file_ptr) o->output_offset,
11416                                               o->size))
11417                 goto error_return;
11418             }
11419           else
11420             {
11421               /* The contents of the .dynstr section are actually in a
11422                  stringtab.  */
11423               file_ptr off;
11424
11425               off = elf_section_data (o->output_section)->this_hdr.sh_offset;
11426               if (bfd_seek (abfd, off, SEEK_SET) != 0
11427                   || ! _bfd_elf_strtab_emit (abfd,
11428                                              elf_hash_table (info)->dynstr))
11429                 goto error_return;
11430             }
11431         }
11432     }
11433
11434   if (info->relocatable)
11435     {
11436       bfd_boolean failed = FALSE;
11437
11438       bfd_map_over_sections (abfd, bfd_elf_set_group_contents, &failed);
11439       if (failed)
11440         goto error_return;
11441     }
11442
11443   /* If we have optimized stabs strings, output them.  */
11444   if (elf_hash_table (info)->stab_info.stabstr != NULL)
11445     {
11446       if (! _bfd_write_stab_strings (abfd, &elf_hash_table (info)->stab_info))
11447         goto error_return;
11448     }
11449
11450   if (! _bfd_elf_write_section_eh_frame_hdr (abfd, info))
11451     goto error_return;
11452
11453   elf_final_link_free (abfd, &flinfo);
11454
11455   elf_linker (abfd) = TRUE;
11456
11457   if (attr_section)
11458     {
11459       bfd_byte *contents = (bfd_byte *) bfd_malloc (attr_size);
11460       if (contents == NULL)
11461         return FALSE;   /* Bail out and fail.  */
11462       bfd_elf_set_obj_attr_contents (abfd, contents, attr_size);
11463       bfd_set_section_contents (abfd, attr_section, contents, 0, attr_size);
11464       free (contents);
11465     }
11466
11467   return TRUE;
11468
11469  error_return:
11470   elf_final_link_free (abfd, &flinfo);
11471   return FALSE;
11472 }
11473 \f
11474 /* Initialize COOKIE for input bfd ABFD.  */
11475
11476 static bfd_boolean
11477 init_reloc_cookie (struct elf_reloc_cookie *cookie,
11478                    struct bfd_link_info *info, bfd *abfd)
11479 {
11480   Elf_Internal_Shdr *symtab_hdr;
11481   const struct elf_backend_data *bed;
11482
11483   bed = get_elf_backend_data (abfd);
11484   symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
11485
11486   cookie->abfd = abfd;
11487   cookie->sym_hashes = elf_sym_hashes (abfd);
11488   cookie->bad_symtab = elf_bad_symtab (abfd);
11489   if (cookie->bad_symtab)
11490     {
11491       cookie->locsymcount = symtab_hdr->sh_size / bed->s->sizeof_sym;
11492       cookie->extsymoff = 0;
11493     }
11494   else
11495     {
11496       cookie->locsymcount = symtab_hdr->sh_info;
11497       cookie->extsymoff = symtab_hdr->sh_info;
11498     }
11499
11500   if (bed->s->arch_size == 32)
11501     cookie->r_sym_shift = 8;
11502   else
11503     cookie->r_sym_shift = 32;
11504
11505   cookie->locsyms = (Elf_Internal_Sym *) symtab_hdr->contents;
11506   if (cookie->locsyms == NULL && cookie->locsymcount != 0)
11507     {
11508       cookie->locsyms = bfd_elf_get_elf_syms (abfd, symtab_hdr,
11509                                               cookie->locsymcount, 0,
11510                                               NULL, NULL, NULL);
11511       if (cookie->locsyms == NULL)
11512         {
11513           info->callbacks->einfo (_("%P%X: can not read symbols: %E\n"));
11514           return FALSE;
11515         }
11516       if (info->keep_memory)
11517         symtab_hdr->contents = (bfd_byte *) cookie->locsyms;
11518     }
11519   return TRUE;
11520 }
11521
11522 /* Free the memory allocated by init_reloc_cookie, if appropriate.  */
11523
11524 static void
11525 fini_reloc_cookie (struct elf_reloc_cookie *cookie, bfd *abfd)
11526 {
11527   Elf_Internal_Shdr *symtab_hdr;
11528
11529   symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
11530   if (cookie->locsyms != NULL
11531       && symtab_hdr->contents != (unsigned char *) cookie->locsyms)
11532     free (cookie->locsyms);
11533 }
11534
11535 /* Initialize the relocation information in COOKIE for input section SEC
11536    of input bfd ABFD.  */
11537
11538 static bfd_boolean
11539 init_reloc_cookie_rels (struct elf_reloc_cookie *cookie,
11540                         struct bfd_link_info *info, bfd *abfd,
11541                         asection *sec)
11542 {
11543   const struct elf_backend_data *bed;
11544
11545   if (sec->reloc_count == 0)
11546     {
11547       cookie->rels = NULL;
11548       cookie->relend = NULL;
11549     }
11550   else
11551     {
11552       bed = get_elf_backend_data (abfd);
11553
11554       cookie->rels = _bfd_elf_link_read_relocs (abfd, sec, NULL, NULL,
11555                                                 info->keep_memory);
11556       if (cookie->rels == NULL)
11557         return FALSE;
11558       cookie->rel = cookie->rels;
11559       cookie->relend = (cookie->rels
11560                         + sec->reloc_count * bed->s->int_rels_per_ext_rel);
11561     }
11562   cookie->rel = cookie->rels;
11563   return TRUE;
11564 }
11565
11566 /* Free the memory allocated by init_reloc_cookie_rels,
11567    if appropriate.  */
11568
11569 static void
11570 fini_reloc_cookie_rels (struct elf_reloc_cookie *cookie,
11571                         asection *sec)
11572 {
11573   if (cookie->rels && elf_section_data (sec)->relocs != cookie->rels)
11574     free (cookie->rels);
11575 }
11576
11577 /* Initialize the whole of COOKIE for input section SEC.  */
11578
11579 static bfd_boolean
11580 init_reloc_cookie_for_section (struct elf_reloc_cookie *cookie,
11581                                struct bfd_link_info *info,
11582                                asection *sec)
11583 {
11584   if (!init_reloc_cookie (cookie, info, sec->owner))
11585     goto error1;
11586   if (!init_reloc_cookie_rels (cookie, info, sec->owner, sec))
11587     goto error2;
11588   return TRUE;
11589
11590  error2:
11591   fini_reloc_cookie (cookie, sec->owner);
11592  error1:
11593   return FALSE;
11594 }
11595
11596 /* Free the memory allocated by init_reloc_cookie_for_section,
11597    if appropriate.  */
11598
11599 static void
11600 fini_reloc_cookie_for_section (struct elf_reloc_cookie *cookie,
11601                                asection *sec)
11602 {
11603   fini_reloc_cookie_rels (cookie, sec);
11604   fini_reloc_cookie (cookie, sec->owner);
11605 }
11606 \f
11607 /* Garbage collect unused sections.  */
11608
11609 /* Default gc_mark_hook.  */
11610
11611 asection *
11612 _bfd_elf_gc_mark_hook (asection *sec,
11613                        struct bfd_link_info *info ATTRIBUTE_UNUSED,
11614                        Elf_Internal_Rela *rel ATTRIBUTE_UNUSED,
11615                        struct elf_link_hash_entry *h,
11616                        Elf_Internal_Sym *sym)
11617 {
11618   const char *sec_name;
11619
11620   if (h != NULL)
11621     {
11622       switch (h->root.type)
11623         {
11624         case bfd_link_hash_defined:
11625         case bfd_link_hash_defweak:
11626           return h->root.u.def.section;
11627
11628         case bfd_link_hash_common:
11629           return h->root.u.c.p->section;
11630
11631         case bfd_link_hash_undefined:
11632         case bfd_link_hash_undefweak:
11633           /* To work around a glibc bug, keep all XXX input sections
11634              when there is an as yet undefined reference to __start_XXX
11635              or __stop_XXX symbols.  The linker will later define such
11636              symbols for orphan input sections that have a name
11637              representable as a C identifier.  */
11638           if (strncmp (h->root.root.string, "__start_", 8) == 0)
11639             sec_name = h->root.root.string + 8;
11640           else if (strncmp (h->root.root.string, "__stop_", 7) == 0)
11641             sec_name = h->root.root.string + 7;
11642           else
11643             sec_name = NULL;
11644
11645           if (sec_name && *sec_name != '\0')
11646             {
11647               bfd *i;
11648
11649               for (i = info->input_bfds; i; i = i->link.next)
11650                 {
11651                   sec = bfd_get_section_by_name (i, sec_name);
11652                   if (sec)
11653                     sec->flags |= SEC_KEEP;
11654                 }
11655             }
11656           break;
11657
11658         default:
11659           break;
11660         }
11661     }
11662   else
11663     return bfd_section_from_elf_index (sec->owner, sym->st_shndx);
11664
11665   return NULL;
11666 }
11667
11668 /* COOKIE->rel describes a relocation against section SEC, which is
11669    a section we've decided to keep.  Return the section that contains
11670    the relocation symbol, or NULL if no section contains it.  */
11671
11672 asection *
11673 _bfd_elf_gc_mark_rsec (struct bfd_link_info *info, asection *sec,
11674                        elf_gc_mark_hook_fn gc_mark_hook,
11675                        struct elf_reloc_cookie *cookie)
11676 {
11677   unsigned long r_symndx;
11678   struct elf_link_hash_entry *h;
11679
11680   r_symndx = cookie->rel->r_info >> cookie->r_sym_shift;
11681   if (r_symndx == STN_UNDEF)
11682     return NULL;
11683
11684   if (r_symndx >= cookie->locsymcount
11685       || ELF_ST_BIND (cookie->locsyms[r_symndx].st_info) != STB_LOCAL)
11686     {
11687       h = cookie->sym_hashes[r_symndx - cookie->extsymoff];
11688       if (h == NULL)
11689         {
11690           info->callbacks->einfo (_("%F%P: corrupt input: %B\n"),
11691                                   sec->owner);
11692           return NULL;
11693         }
11694       while (h->root.type == bfd_link_hash_indirect
11695              || h->root.type == bfd_link_hash_warning)
11696         h = (struct elf_link_hash_entry *) h->root.u.i.link;
11697       h->mark = 1;
11698       /* If this symbol is weak and there is a non-weak definition, we
11699          keep the non-weak definition because many backends put
11700          dynamic reloc info on the non-weak definition for code
11701          handling copy relocs.  */
11702       if (h->u.weakdef != NULL)
11703         h->u.weakdef->mark = 1;
11704       return (*gc_mark_hook) (sec, info, cookie->rel, h, NULL);
11705     }
11706
11707   return (*gc_mark_hook) (sec, info, cookie->rel, NULL,
11708                           &cookie->locsyms[r_symndx]);
11709 }
11710
11711 /* COOKIE->rel describes a relocation against section SEC, which is
11712    a section we've decided to keep.  Mark the section that contains
11713    the relocation symbol.  */
11714
11715 bfd_boolean
11716 _bfd_elf_gc_mark_reloc (struct bfd_link_info *info,
11717                         asection *sec,
11718                         elf_gc_mark_hook_fn gc_mark_hook,
11719                         struct elf_reloc_cookie *cookie)
11720 {
11721   asection *rsec;
11722
11723   rsec = _bfd_elf_gc_mark_rsec (info, sec, gc_mark_hook, cookie);
11724   if (rsec && !rsec->gc_mark)
11725     {
11726       if (bfd_get_flavour (rsec->owner) != bfd_target_elf_flavour
11727           || (rsec->owner->flags & DYNAMIC) != 0)
11728         rsec->gc_mark = 1;
11729       else if (!_bfd_elf_gc_mark (info, rsec, gc_mark_hook))
11730         return FALSE;
11731     }
11732   return TRUE;
11733 }
11734
11735 /* The mark phase of garbage collection.  For a given section, mark
11736    it and any sections in this section's group, and all the sections
11737    which define symbols to which it refers.  */
11738
11739 bfd_boolean
11740 _bfd_elf_gc_mark (struct bfd_link_info *info,
11741                   asection *sec,
11742                   elf_gc_mark_hook_fn gc_mark_hook)
11743 {
11744   bfd_boolean ret;
11745   asection *group_sec, *eh_frame;
11746
11747   sec->gc_mark = 1;
11748
11749   /* Mark all the sections in the group.  */
11750   group_sec = elf_section_data (sec)->next_in_group;
11751   if (group_sec && !group_sec->gc_mark)
11752     if (!_bfd_elf_gc_mark (info, group_sec, gc_mark_hook))
11753       return FALSE;
11754
11755   /* Look through the section relocs.  */
11756   ret = TRUE;
11757   eh_frame = elf_eh_frame_section (sec->owner);
11758   if ((sec->flags & SEC_RELOC) != 0
11759       && sec->reloc_count > 0
11760       && sec != eh_frame)
11761     {
11762       struct elf_reloc_cookie cookie;
11763
11764       if (!init_reloc_cookie_for_section (&cookie, info, sec))
11765         ret = FALSE;
11766       else
11767         {
11768           for (; cookie.rel < cookie.relend; cookie.rel++)
11769             if (!_bfd_elf_gc_mark_reloc (info, sec, gc_mark_hook, &cookie))
11770               {
11771                 ret = FALSE;
11772                 break;
11773               }
11774           fini_reloc_cookie_for_section (&cookie, sec);
11775         }
11776     }
11777
11778   if (ret && eh_frame && elf_fde_list (sec))
11779     {
11780       struct elf_reloc_cookie cookie;
11781
11782       if (!init_reloc_cookie_for_section (&cookie, info, eh_frame))
11783         ret = FALSE;
11784       else
11785         {
11786           if (!_bfd_elf_gc_mark_fdes (info, sec, eh_frame,
11787                                       gc_mark_hook, &cookie))
11788             ret = FALSE;
11789           fini_reloc_cookie_for_section (&cookie, eh_frame);
11790         }
11791     }
11792
11793   return ret;
11794 }
11795
11796 /* Keep debug and special sections.  */
11797
11798 bfd_boolean
11799 _bfd_elf_gc_mark_extra_sections (struct bfd_link_info *info,
11800                                  elf_gc_mark_hook_fn mark_hook ATTRIBUTE_UNUSED)
11801 {
11802   bfd *ibfd;
11803
11804   for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
11805     {
11806       asection *isec;
11807       bfd_boolean some_kept;
11808       bfd_boolean debug_frag_seen;
11809
11810       if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour)
11811         continue;
11812
11813       /* Ensure all linker created sections are kept,
11814          see if any other section is already marked,
11815          and note if we have any fragmented debug sections.  */
11816       debug_frag_seen = some_kept = FALSE;
11817       for (isec = ibfd->sections; isec != NULL; isec = isec->next)
11818         {
11819           if ((isec->flags & SEC_LINKER_CREATED) != 0)
11820             isec->gc_mark = 1;
11821           else if (isec->gc_mark)
11822             some_kept = TRUE;
11823
11824           if (debug_frag_seen == FALSE
11825               && (isec->flags & SEC_DEBUGGING)
11826               && CONST_STRNEQ (isec->name, ".debug_line."))
11827             debug_frag_seen = TRUE;
11828         }
11829
11830       /* If no section in this file will be kept, then we can
11831          toss out the debug and special sections.  */
11832       if (!some_kept)
11833         continue;
11834
11835       /* Keep debug and special sections like .comment when they are
11836          not part of a group, or when we have single-member groups.  */
11837       for (isec = ibfd->sections; isec != NULL; isec = isec->next)
11838         if ((elf_next_in_group (isec) == NULL
11839              || elf_next_in_group (isec) == isec)
11840             && ((isec->flags & SEC_DEBUGGING) != 0
11841                 || (isec->flags & (SEC_ALLOC | SEC_LOAD | SEC_RELOC)) == 0))
11842           isec->gc_mark = 1;
11843
11844       if (! debug_frag_seen)
11845         continue;
11846
11847       /* Look for CODE sections which are going to be discarded,
11848          and find and discard any fragmented debug sections which
11849          are associated with that code section.  */
11850       for (isec = ibfd->sections; isec != NULL; isec = isec->next)
11851         if ((isec->flags & SEC_CODE) != 0
11852             && isec->gc_mark == 0)
11853           {
11854             unsigned int ilen;
11855             asection *dsec;
11856
11857             ilen = strlen (isec->name);
11858
11859             /* Association is determined by the name of the debug section
11860                containing the name of the code section as a suffix.  For
11861                example .debug_line.text.foo is a debug section associated
11862                with .text.foo.  */
11863             for (dsec = ibfd->sections; dsec != NULL; dsec = dsec->next)
11864               {
11865                 unsigned int dlen;
11866
11867                 if (dsec->gc_mark == 0
11868                     || (dsec->flags & SEC_DEBUGGING) == 0)
11869                   continue;
11870
11871                 dlen = strlen (dsec->name);
11872
11873                 if (dlen > ilen
11874                     && strncmp (dsec->name + (dlen - ilen),
11875                                 isec->name, ilen) == 0)
11876                   {
11877                     dsec->gc_mark = 0;
11878                     break;
11879                   }
11880               }
11881           }
11882     }
11883   return TRUE;
11884 }
11885
11886 /* Sweep symbols in swept sections.  Called via elf_link_hash_traverse.  */
11887
11888 struct elf_gc_sweep_symbol_info
11889 {
11890   struct bfd_link_info *info;
11891   void (*hide_symbol) (struct bfd_link_info *, struct elf_link_hash_entry *,
11892                        bfd_boolean);
11893 };
11894
11895 static bfd_boolean
11896 elf_gc_sweep_symbol (struct elf_link_hash_entry *h, void *data)
11897 {
11898   if (!h->mark
11899       && (((h->root.type == bfd_link_hash_defined
11900             || h->root.type == bfd_link_hash_defweak)
11901            && !(h->def_regular
11902                 && h->root.u.def.section->gc_mark))
11903           || h->root.type == bfd_link_hash_undefined
11904           || h->root.type == bfd_link_hash_undefweak))
11905     {
11906       struct elf_gc_sweep_symbol_info *inf;
11907
11908       inf = (struct elf_gc_sweep_symbol_info *) data;
11909       (*inf->hide_symbol) (inf->info, h, TRUE);
11910       h->def_regular = 0;
11911       h->ref_regular = 0;
11912       h->ref_regular_nonweak = 0;
11913     }
11914
11915   return TRUE;
11916 }
11917
11918 /* The sweep phase of garbage collection.  Remove all garbage sections.  */
11919
11920 typedef bfd_boolean (*gc_sweep_hook_fn)
11921   (bfd *, struct bfd_link_info *, asection *, const Elf_Internal_Rela *);
11922
11923 static bfd_boolean
11924 elf_gc_sweep (bfd *abfd, struct bfd_link_info *info)
11925 {
11926   bfd *sub;
11927   const struct elf_backend_data *bed = get_elf_backend_data (abfd);
11928   gc_sweep_hook_fn gc_sweep_hook = bed->gc_sweep_hook;
11929   unsigned long section_sym_count;
11930   struct elf_gc_sweep_symbol_info sweep_info;
11931
11932   for (sub = info->input_bfds; sub != NULL; sub = sub->link.next)
11933     {
11934       asection *o;
11935
11936       if (bfd_get_flavour (sub) != bfd_target_elf_flavour)
11937         continue;
11938
11939       for (o = sub->sections; o != NULL; o = o->next)
11940         {
11941           /* When any section in a section group is kept, we keep all
11942              sections in the section group.  If the first member of
11943              the section group is excluded, we will also exclude the
11944              group section.  */
11945           if (o->flags & SEC_GROUP)
11946             {
11947               asection *first = elf_next_in_group (o);
11948               o->gc_mark = first->gc_mark;
11949             }
11950
11951           if (o->gc_mark)
11952             continue;
11953
11954           /* Skip sweeping sections already excluded.  */
11955           if (o->flags & SEC_EXCLUDE)
11956             continue;
11957
11958           /* Since this is early in the link process, it is simple
11959              to remove a section from the output.  */
11960           o->flags |= SEC_EXCLUDE;
11961
11962           if (info->print_gc_sections && o->size != 0)
11963             _bfd_error_handler (_("Removing unused section '%s' in file '%B'"), sub, o->name);
11964
11965           /* But we also have to update some of the relocation
11966              info we collected before.  */
11967           if (gc_sweep_hook
11968               && (o->flags & SEC_RELOC) != 0
11969               && o->reloc_count != 0
11970               && !((info->strip == strip_all || info->strip == strip_debugger)
11971                    && (o->flags & SEC_DEBUGGING) != 0)
11972               && !bfd_is_abs_section (o->output_section))
11973             {
11974               Elf_Internal_Rela *internal_relocs;
11975               bfd_boolean r;
11976
11977               internal_relocs
11978                 = _bfd_elf_link_read_relocs (o->owner, o, NULL, NULL,
11979                                              info->keep_memory);
11980               if (internal_relocs == NULL)
11981                 return FALSE;
11982
11983               r = (*gc_sweep_hook) (o->owner, info, o, internal_relocs);
11984
11985               if (elf_section_data (o)->relocs != internal_relocs)
11986                 free (internal_relocs);
11987
11988               if (!r)
11989                 return FALSE;
11990             }
11991         }
11992     }
11993
11994   /* Remove the symbols that were in the swept sections from the dynamic
11995      symbol table.  GCFIXME: Anyone know how to get them out of the
11996      static symbol table as well?  */
11997   sweep_info.info = info;
11998   sweep_info.hide_symbol = bed->elf_backend_hide_symbol;
11999   elf_link_hash_traverse (elf_hash_table (info), elf_gc_sweep_symbol,
12000                           &sweep_info);
12001
12002   _bfd_elf_link_renumber_dynsyms (abfd, info, &section_sym_count);
12003   return TRUE;
12004 }
12005
12006 /* Propagate collected vtable information.  This is called through
12007    elf_link_hash_traverse.  */
12008
12009 static bfd_boolean
12010 elf_gc_propagate_vtable_entries_used (struct elf_link_hash_entry *h, void *okp)
12011 {
12012   /* Those that are not vtables.  */
12013   if (h->vtable == NULL || h->vtable->parent == NULL)
12014     return TRUE;
12015
12016   /* Those vtables that do not have parents, we cannot merge.  */
12017   if (h->vtable->parent == (struct elf_link_hash_entry *) -1)
12018     return TRUE;
12019
12020   /* If we've already been done, exit.  */
12021   if (h->vtable->used && h->vtable->used[-1])
12022     return TRUE;
12023
12024   /* Make sure the parent's table is up to date.  */
12025   elf_gc_propagate_vtable_entries_used (h->vtable->parent, okp);
12026
12027   if (h->vtable->used == NULL)
12028     {
12029       /* None of this table's entries were referenced.  Re-use the
12030          parent's table.  */
12031       h->vtable->used = h->vtable->parent->vtable->used;
12032       h->vtable->size = h->vtable->parent->vtable->size;
12033     }
12034   else
12035     {
12036       size_t n;
12037       bfd_boolean *cu, *pu;
12038
12039       /* Or the parent's entries into ours.  */
12040       cu = h->vtable->used;
12041       cu[-1] = TRUE;
12042       pu = h->vtable->parent->vtable->used;
12043       if (pu != NULL)
12044         {
12045           const struct elf_backend_data *bed;
12046           unsigned int log_file_align;
12047
12048           bed = get_elf_backend_data (h->root.u.def.section->owner);
12049           log_file_align = bed->s->log_file_align;
12050           n = h->vtable->parent->vtable->size >> log_file_align;
12051           while (n--)
12052             {
12053               if (*pu)
12054                 *cu = TRUE;
12055               pu++;
12056               cu++;
12057             }
12058         }
12059     }
12060
12061   return TRUE;
12062 }
12063
12064 static bfd_boolean
12065 elf_gc_smash_unused_vtentry_relocs (struct elf_link_hash_entry *h, void *okp)
12066 {
12067   asection *sec;
12068   bfd_vma hstart, hend;
12069   Elf_Internal_Rela *relstart, *relend, *rel;
12070   const struct elf_backend_data *bed;
12071   unsigned int log_file_align;
12072
12073   /* Take care of both those symbols that do not describe vtables as
12074      well as those that are not loaded.  */
12075   if (h->vtable == NULL || h->vtable->parent == NULL)
12076     return TRUE;
12077
12078   BFD_ASSERT (h->root.type == bfd_link_hash_defined
12079               || h->root.type == bfd_link_hash_defweak);
12080
12081   sec = h->root.u.def.section;
12082   hstart = h->root.u.def.value;
12083   hend = hstart + h->size;
12084
12085   relstart = _bfd_elf_link_read_relocs (sec->owner, sec, NULL, NULL, TRUE);
12086   if (!relstart)
12087     return *(bfd_boolean *) okp = FALSE;
12088   bed = get_elf_backend_data (sec->owner);
12089   log_file_align = bed->s->log_file_align;
12090
12091   relend = relstart + sec->reloc_count * bed->s->int_rels_per_ext_rel;
12092
12093   for (rel = relstart; rel < relend; ++rel)
12094     if (rel->r_offset >= hstart && rel->r_offset < hend)
12095       {
12096         /* If the entry is in use, do nothing.  */
12097         if (h->vtable->used
12098             && (rel->r_offset - hstart) < h->vtable->size)
12099           {
12100             bfd_vma entry = (rel->r_offset - hstart) >> log_file_align;
12101             if (h->vtable->used[entry])
12102               continue;
12103           }
12104         /* Otherwise, kill it.  */
12105         rel->r_offset = rel->r_info = rel->r_addend = 0;
12106       }
12107
12108   return TRUE;
12109 }
12110
12111 /* Mark sections containing dynamically referenced symbols.  When
12112    building shared libraries, we must assume that any visible symbol is
12113    referenced.  */
12114
12115 bfd_boolean
12116 bfd_elf_gc_mark_dynamic_ref_symbol (struct elf_link_hash_entry *h, void *inf)
12117 {
12118   struct bfd_link_info *info = (struct bfd_link_info *) inf;
12119   struct bfd_elf_dynamic_list *d = info->dynamic_list;
12120
12121   if ((h->root.type == bfd_link_hash_defined
12122        || h->root.type == bfd_link_hash_defweak)
12123       && (h->ref_dynamic
12124           || (h->def_regular
12125               && ELF_ST_VISIBILITY (h->other) != STV_INTERNAL
12126               && ELF_ST_VISIBILITY (h->other) != STV_HIDDEN
12127               && (!info->executable
12128                   || info->export_dynamic
12129                   || (h->dynamic
12130                       && d != NULL
12131                       && (*d->match) (&d->head, NULL, h->root.root.string)))
12132               && (strchr (h->root.root.string, ELF_VER_CHR) != NULL
12133                   || !bfd_hide_sym_by_version (info->version_info,
12134                                                h->root.root.string)))))
12135     h->root.u.def.section->flags |= SEC_KEEP;
12136
12137   return TRUE;
12138 }
12139
12140 /* Keep all sections containing symbols undefined on the command-line,
12141    and the section containing the entry symbol.  */
12142
12143 void
12144 _bfd_elf_gc_keep (struct bfd_link_info *info)
12145 {
12146   struct bfd_sym_chain *sym;
12147
12148   for (sym = info->gc_sym_list; sym != NULL; sym = sym->next)
12149     {
12150       struct elf_link_hash_entry *h;
12151
12152       h = elf_link_hash_lookup (elf_hash_table (info), sym->name,
12153                                 FALSE, FALSE, FALSE);
12154
12155       if (h != NULL
12156           && (h->root.type == bfd_link_hash_defined
12157               || h->root.type == bfd_link_hash_defweak)
12158           && !bfd_is_abs_section (h->root.u.def.section))
12159         h->root.u.def.section->flags |= SEC_KEEP;
12160     }
12161 }
12162
12163 /* Do mark and sweep of unused sections.  */
12164
12165 bfd_boolean
12166 bfd_elf_gc_sections (bfd *abfd, struct bfd_link_info *info)
12167 {
12168   bfd_boolean ok = TRUE;
12169   bfd *sub;
12170   elf_gc_mark_hook_fn gc_mark_hook;
12171   const struct elf_backend_data *bed = get_elf_backend_data (abfd);
12172   struct elf_link_hash_table *htab;
12173
12174   if (!bed->can_gc_sections
12175       || !is_elf_hash_table (info->hash))
12176     {
12177       (*_bfd_error_handler)(_("Warning: gc-sections option ignored"));
12178       return TRUE;
12179     }
12180
12181   bed->gc_keep (info);
12182   htab = elf_hash_table (info);
12183
12184   /* Try to parse each bfd's .eh_frame section.  Point elf_eh_frame_section
12185      at the .eh_frame section if we can mark the FDEs individually.  */
12186   for (sub = info->input_bfds; sub != NULL; sub = sub->link.next)
12187     {
12188       asection *sec;
12189       struct elf_reloc_cookie cookie;
12190
12191       sec = bfd_get_section_by_name (sub, ".eh_frame");
12192       while (sec && init_reloc_cookie_for_section (&cookie, info, sec))
12193         {
12194           _bfd_elf_parse_eh_frame (sub, info, sec, &cookie);
12195           if (elf_section_data (sec)->sec_info
12196               && (sec->flags & SEC_LINKER_CREATED) == 0)
12197             elf_eh_frame_section (sub) = sec;
12198           fini_reloc_cookie_for_section (&cookie, sec);
12199           sec = bfd_get_next_section_by_name (sec);
12200         }
12201     }
12202
12203   /* Apply transitive closure to the vtable entry usage info.  */
12204   elf_link_hash_traverse (htab, elf_gc_propagate_vtable_entries_used, &ok);
12205   if (!ok)
12206     return FALSE;
12207
12208   /* Kill the vtable relocations that were not used.  */
12209   elf_link_hash_traverse (htab, elf_gc_smash_unused_vtentry_relocs, &ok);
12210   if (!ok)
12211     return FALSE;
12212
12213   /* Mark dynamically referenced symbols.  */
12214   if (htab->dynamic_sections_created)
12215     elf_link_hash_traverse (htab, bed->gc_mark_dynamic_ref, info);
12216
12217   /* Grovel through relocs to find out who stays ...  */
12218   gc_mark_hook = bed->gc_mark_hook;
12219   for (sub = info->input_bfds; sub != NULL; sub = sub->link.next)
12220     {
12221       asection *o;
12222
12223       if (bfd_get_flavour (sub) != bfd_target_elf_flavour)
12224         continue;
12225
12226       /* Start at sections marked with SEC_KEEP (ref _bfd_elf_gc_keep).
12227          Also treat note sections as a root, if the section is not part
12228          of a group.  */
12229       for (o = sub->sections; o != NULL; o = o->next)
12230         if (!o->gc_mark
12231             && (o->flags & SEC_EXCLUDE) == 0
12232             && ((o->flags & SEC_KEEP) != 0
12233                 || (elf_section_data (o)->this_hdr.sh_type == SHT_NOTE
12234                     && elf_next_in_group (o) == NULL )))
12235           {
12236             if (!_bfd_elf_gc_mark (info, o, gc_mark_hook))
12237               return FALSE;
12238           }
12239     }
12240
12241   /* Allow the backend to mark additional target specific sections.  */
12242   bed->gc_mark_extra_sections (info, gc_mark_hook);
12243
12244   /* ... and mark SEC_EXCLUDE for those that go.  */
12245   return elf_gc_sweep (abfd, info);
12246 }
12247 \f
12248 /* Called from check_relocs to record the existence of a VTINHERIT reloc.  */
12249
12250 bfd_boolean
12251 bfd_elf_gc_record_vtinherit (bfd *abfd,
12252                              asection *sec,
12253                              struct elf_link_hash_entry *h,
12254                              bfd_vma offset)
12255 {
12256   struct elf_link_hash_entry **sym_hashes, **sym_hashes_end;
12257   struct elf_link_hash_entry **search, *child;
12258   bfd_size_type extsymcount;
12259   const struct elf_backend_data *bed = get_elf_backend_data (abfd);
12260
12261   /* The sh_info field of the symtab header tells us where the
12262      external symbols start.  We don't care about the local symbols at
12263      this point.  */
12264   extsymcount = elf_tdata (abfd)->symtab_hdr.sh_size / bed->s->sizeof_sym;
12265   if (!elf_bad_symtab (abfd))
12266     extsymcount -= elf_tdata (abfd)->symtab_hdr.sh_info;
12267
12268   sym_hashes = elf_sym_hashes (abfd);
12269   sym_hashes_end = sym_hashes + extsymcount;
12270
12271   /* Hunt down the child symbol, which is in this section at the same
12272      offset as the relocation.  */
12273   for (search = sym_hashes; search != sym_hashes_end; ++search)
12274     {
12275       if ((child = *search) != NULL
12276           && (child->root.type == bfd_link_hash_defined
12277               || child->root.type == bfd_link_hash_defweak)
12278           && child->root.u.def.section == sec
12279           && child->root.u.def.value == offset)
12280         goto win;
12281     }
12282
12283   (*_bfd_error_handler) ("%B: %A+%lu: No symbol found for INHERIT",
12284                          abfd, sec, (unsigned long) offset);
12285   bfd_set_error (bfd_error_invalid_operation);
12286   return FALSE;
12287
12288  win:
12289   if (!child->vtable)
12290     {
12291       child->vtable = (struct elf_link_virtual_table_entry *)
12292           bfd_zalloc (abfd, sizeof (*child->vtable));
12293       if (!child->vtable)
12294         return FALSE;
12295     }
12296   if (!h)
12297     {
12298       /* This *should* only be the absolute section.  It could potentially
12299          be that someone has defined a non-global vtable though, which
12300          would be bad.  It isn't worth paging in the local symbols to be
12301          sure though; that case should simply be handled by the assembler.  */
12302
12303       child->vtable->parent = (struct elf_link_hash_entry *) -1;
12304     }
12305   else
12306     child->vtable->parent = h;
12307
12308   return TRUE;
12309 }
12310
12311 /* Called from check_relocs to record the existence of a VTENTRY reloc.  */
12312
12313 bfd_boolean
12314 bfd_elf_gc_record_vtentry (bfd *abfd ATTRIBUTE_UNUSED,
12315                            asection *sec ATTRIBUTE_UNUSED,
12316                            struct elf_link_hash_entry *h,
12317                            bfd_vma addend)
12318 {
12319   const struct elf_backend_data *bed = get_elf_backend_data (abfd);
12320   unsigned int log_file_align = bed->s->log_file_align;
12321
12322   if (!h->vtable)
12323     {
12324       h->vtable = (struct elf_link_virtual_table_entry *)
12325           bfd_zalloc (abfd, sizeof (*h->vtable));
12326       if (!h->vtable)
12327         return FALSE;
12328     }
12329
12330   if (addend >= h->vtable->size)
12331     {
12332       size_t size, bytes, file_align;
12333       bfd_boolean *ptr = h->vtable->used;
12334
12335       /* While the symbol is undefined, we have to be prepared to handle
12336          a zero size.  */
12337       file_align = 1 << log_file_align;
12338       if (h->root.type == bfd_link_hash_undefined)
12339         size = addend + file_align;
12340       else
12341         {
12342           size = h->size;
12343           if (addend >= size)
12344             {
12345               /* Oops!  We've got a reference past the defined end of
12346                  the table.  This is probably a bug -- shall we warn?  */
12347               size = addend + file_align;
12348             }
12349         }
12350       size = (size + file_align - 1) & -file_align;
12351
12352       /* Allocate one extra entry for use as a "done" flag for the
12353          consolidation pass.  */
12354       bytes = ((size >> log_file_align) + 1) * sizeof (bfd_boolean);
12355
12356       if (ptr)
12357         {
12358           ptr = (bfd_boolean *) bfd_realloc (ptr - 1, bytes);
12359
12360           if (ptr != NULL)
12361             {
12362               size_t oldbytes;
12363
12364               oldbytes = (((h->vtable->size >> log_file_align) + 1)
12365                           * sizeof (bfd_boolean));
12366               memset (((char *) ptr) + oldbytes, 0, bytes - oldbytes);
12367             }
12368         }
12369       else
12370         ptr = (bfd_boolean *) bfd_zmalloc (bytes);
12371
12372       if (ptr == NULL)
12373         return FALSE;
12374
12375       /* And arrange for that done flag to be at index -1.  */
12376       h->vtable->used = ptr + 1;
12377       h->vtable->size = size;
12378     }
12379
12380   h->vtable->used[addend >> log_file_align] = TRUE;
12381
12382   return TRUE;
12383 }
12384
12385 /* Map an ELF section header flag to its corresponding string.  */
12386 typedef struct
12387 {
12388   char *flag_name;
12389   flagword flag_value;
12390 } elf_flags_to_name_table;
12391
12392 static elf_flags_to_name_table elf_flags_to_names [] =
12393 {
12394   { "SHF_WRITE", SHF_WRITE },
12395   { "SHF_ALLOC", SHF_ALLOC },
12396   { "SHF_EXECINSTR", SHF_EXECINSTR },
12397   { "SHF_MERGE", SHF_MERGE },
12398   { "SHF_STRINGS", SHF_STRINGS },
12399   { "SHF_INFO_LINK", SHF_INFO_LINK},
12400   { "SHF_LINK_ORDER", SHF_LINK_ORDER},
12401   { "SHF_OS_NONCONFORMING", SHF_OS_NONCONFORMING},
12402   { "SHF_GROUP", SHF_GROUP },
12403   { "SHF_TLS", SHF_TLS },
12404   { "SHF_MASKOS", SHF_MASKOS },
12405   { "SHF_EXCLUDE", SHF_EXCLUDE },
12406 };
12407
12408 /* Returns TRUE if the section is to be included, otherwise FALSE.  */
12409 bfd_boolean
12410 bfd_elf_lookup_section_flags (struct bfd_link_info *info,
12411                               struct flag_info *flaginfo,
12412                               asection *section)
12413 {
12414   const bfd_vma sh_flags = elf_section_flags (section);
12415
12416   if (!flaginfo->flags_initialized)
12417     {
12418       bfd *obfd = info->output_bfd;
12419       const struct elf_backend_data *bed = get_elf_backend_data (obfd);
12420       struct flag_info_list *tf = flaginfo->flag_list;
12421       int with_hex = 0;
12422       int without_hex = 0;
12423
12424       for (tf = flaginfo->flag_list; tf != NULL; tf = tf->next)
12425         {
12426           unsigned i;
12427           flagword (*lookup) (char *);
12428
12429           lookup = bed->elf_backend_lookup_section_flags_hook;
12430           if (lookup != NULL)
12431             {
12432               flagword hexval = (*lookup) ((char *) tf->name);
12433
12434               if (hexval != 0)
12435                 {
12436                   if (tf->with == with_flags)
12437                     with_hex |= hexval;
12438                   else if (tf->with == without_flags)
12439                     without_hex |= hexval;
12440                   tf->valid = TRUE;
12441                   continue;
12442                 }
12443             }
12444           for (i = 0; i < ARRAY_SIZE (elf_flags_to_names); ++i)
12445             {
12446               if (strcmp (tf->name, elf_flags_to_names[i].flag_name) == 0)
12447                 {
12448                   if (tf->with == with_flags)
12449                     with_hex |= elf_flags_to_names[i].flag_value;
12450                   else if (tf->with == without_flags)
12451                     without_hex |= elf_flags_to_names[i].flag_value;
12452                   tf->valid = TRUE;
12453                   break;
12454                 }
12455             }
12456           if (!tf->valid)
12457             {
12458               info->callbacks->einfo
12459                 (_("Unrecognized INPUT_SECTION_FLAG %s\n"), tf->name);
12460               return FALSE;
12461             }
12462         }
12463       flaginfo->flags_initialized = TRUE;
12464       flaginfo->only_with_flags |= with_hex;
12465       flaginfo->not_with_flags |= without_hex;
12466     }
12467
12468   if ((flaginfo->only_with_flags & sh_flags) != flaginfo->only_with_flags)
12469     return FALSE;
12470
12471   if ((flaginfo->not_with_flags & sh_flags) != 0)
12472     return FALSE;
12473
12474   return TRUE;
12475 }
12476
12477 struct alloc_got_off_arg {
12478   bfd_vma gotoff;
12479   struct bfd_link_info *info;
12480 };
12481
12482 /* We need a special top-level link routine to convert got reference counts
12483    to real got offsets.  */
12484
12485 static bfd_boolean
12486 elf_gc_allocate_got_offsets (struct elf_link_hash_entry *h, void *arg)
12487 {
12488   struct alloc_got_off_arg *gofarg = (struct alloc_got_off_arg *) arg;
12489   bfd *obfd = gofarg->info->output_bfd;
12490   const struct elf_backend_data *bed = get_elf_backend_data (obfd);
12491
12492   if (h->got.refcount > 0)
12493     {
12494       h->got.offset = gofarg->gotoff;
12495       gofarg->gotoff += bed->got_elt_size (obfd, gofarg->info, h, NULL, 0);
12496     }
12497   else
12498     h->got.offset = (bfd_vma) -1;
12499
12500   return TRUE;
12501 }
12502
12503 /* And an accompanying bit to work out final got entry offsets once
12504    we're done.  Should be called from final_link.  */
12505
12506 bfd_boolean
12507 bfd_elf_gc_common_finalize_got_offsets (bfd *abfd,
12508                                         struct bfd_link_info *info)
12509 {
12510   bfd *i;
12511   const struct elf_backend_data *bed = get_elf_backend_data (abfd);
12512   bfd_vma gotoff;
12513   struct alloc_got_off_arg gofarg;
12514
12515   BFD_ASSERT (abfd == info->output_bfd);
12516
12517   if (! is_elf_hash_table (info->hash))
12518     return FALSE;
12519
12520   /* The GOT offset is relative to the .got section, but the GOT header is
12521      put into the .got.plt section, if the backend uses it.  */
12522   if (bed->want_got_plt)
12523     gotoff = 0;
12524   else
12525     gotoff = bed->got_header_size;
12526
12527   /* Do the local .got entries first.  */
12528   for (i = info->input_bfds; i; i = i->link.next)
12529     {
12530       bfd_signed_vma *local_got;
12531       bfd_size_type j, locsymcount;
12532       Elf_Internal_Shdr *symtab_hdr;
12533
12534       if (bfd_get_flavour (i) != bfd_target_elf_flavour)
12535         continue;
12536
12537       local_got = elf_local_got_refcounts (i);
12538       if (!local_got)
12539         continue;
12540
12541       symtab_hdr = &elf_tdata (i)->symtab_hdr;
12542       if (elf_bad_symtab (i))
12543         locsymcount = symtab_hdr->sh_size / bed->s->sizeof_sym;
12544       else
12545         locsymcount = symtab_hdr->sh_info;
12546
12547       for (j = 0; j < locsymcount; ++j)
12548         {
12549           if (local_got[j] > 0)
12550             {
12551               local_got[j] = gotoff;
12552               gotoff += bed->got_elt_size (abfd, info, NULL, i, j);
12553             }
12554           else
12555             local_got[j] = (bfd_vma) -1;
12556         }
12557     }
12558
12559   /* Then the global .got entries.  .plt refcounts are handled by
12560      adjust_dynamic_symbol  */
12561   gofarg.gotoff = gotoff;
12562   gofarg.info = info;
12563   elf_link_hash_traverse (elf_hash_table (info),
12564                           elf_gc_allocate_got_offsets,
12565                           &gofarg);
12566   return TRUE;
12567 }
12568
12569 /* Many folk need no more in the way of final link than this, once
12570    got entry reference counting is enabled.  */
12571
12572 bfd_boolean
12573 bfd_elf_gc_common_final_link (bfd *abfd, struct bfd_link_info *info)
12574 {
12575   if (!bfd_elf_gc_common_finalize_got_offsets (abfd, info))
12576     return FALSE;
12577
12578   /* Invoke the regular ELF backend linker to do all the work.  */
12579   return bfd_elf_final_link (abfd, info);
12580 }
12581
12582 bfd_boolean
12583 bfd_elf_reloc_symbol_deleted_p (bfd_vma offset, void *cookie)
12584 {
12585   struct elf_reloc_cookie *rcookie = (struct elf_reloc_cookie *) cookie;
12586
12587   if (rcookie->bad_symtab)
12588     rcookie->rel = rcookie->rels;
12589
12590   for (; rcookie->rel < rcookie->relend; rcookie->rel++)
12591     {
12592       unsigned long r_symndx;
12593
12594       if (! rcookie->bad_symtab)
12595         if (rcookie->rel->r_offset > offset)
12596           return FALSE;
12597       if (rcookie->rel->r_offset != offset)
12598         continue;
12599
12600       r_symndx = rcookie->rel->r_info >> rcookie->r_sym_shift;
12601       if (r_symndx == STN_UNDEF)
12602         return TRUE;
12603
12604       if (r_symndx >= rcookie->locsymcount
12605           || ELF_ST_BIND (rcookie->locsyms[r_symndx].st_info) != STB_LOCAL)
12606         {
12607           struct elf_link_hash_entry *h;
12608
12609           h = rcookie->sym_hashes[r_symndx - rcookie->extsymoff];
12610
12611           while (h->root.type == bfd_link_hash_indirect
12612                  || h->root.type == bfd_link_hash_warning)
12613             h = (struct elf_link_hash_entry *) h->root.u.i.link;
12614
12615           if ((h->root.type == bfd_link_hash_defined
12616                || h->root.type == bfd_link_hash_defweak)
12617               && (h->root.u.def.section->owner != rcookie->abfd
12618                   || h->root.u.def.section->kept_section != NULL
12619                   || discarded_section (h->root.u.def.section)))
12620             return TRUE;
12621         }
12622       else
12623         {
12624           /* It's not a relocation against a global symbol,
12625              but it could be a relocation against a local
12626              symbol for a discarded section.  */
12627           asection *isec;
12628           Elf_Internal_Sym *isym;
12629
12630           /* Need to: get the symbol; get the section.  */
12631           isym = &rcookie->locsyms[r_symndx];
12632           isec = bfd_section_from_elf_index (rcookie->abfd, isym->st_shndx);
12633           if (isec != NULL
12634               && (isec->kept_section != NULL
12635                   || discarded_section (isec)))
12636             return TRUE;
12637         }
12638       return FALSE;
12639     }
12640   return FALSE;
12641 }
12642
12643 /* Discard unneeded references to discarded sections.
12644    Returns -1 on error, 1 if any section's size was changed, 0 if
12645    nothing changed.  This function assumes that the relocations are in
12646    sorted order, which is true for all known assemblers.  */
12647
12648 int
12649 bfd_elf_discard_info (bfd *output_bfd, struct bfd_link_info *info)
12650 {
12651   struct elf_reloc_cookie cookie;
12652   asection *o;
12653   bfd *abfd;
12654   int changed = 0;
12655
12656   if (info->traditional_format
12657       || !is_elf_hash_table (info->hash))
12658     return 0;
12659
12660   o = bfd_get_section_by_name (output_bfd, ".stab");
12661   if (o != NULL)
12662     {
12663       asection *i;
12664
12665       for (i = o->map_head.s; i != NULL; i = i->map_head.s)
12666         {
12667           if (i->size == 0
12668               || i->reloc_count == 0
12669               || i->sec_info_type != SEC_INFO_TYPE_STABS)
12670             continue;
12671
12672           abfd = i->owner;
12673           if (bfd_get_flavour (abfd) != bfd_target_elf_flavour)
12674             continue;
12675
12676           if (!init_reloc_cookie_for_section (&cookie, info, i))
12677             return -1;
12678
12679           if (_bfd_discard_section_stabs (abfd, i,
12680                                           elf_section_data (i)->sec_info,
12681                                           bfd_elf_reloc_symbol_deleted_p,
12682                                           &cookie))
12683             changed = 1;
12684
12685           fini_reloc_cookie_for_section (&cookie, i);
12686         }
12687     }
12688
12689   o = bfd_get_section_by_name (output_bfd, ".eh_frame");
12690   if (o != NULL)
12691     {
12692       asection *i;
12693
12694       for (i = o->map_head.s; i != NULL; i = i->map_head.s)
12695         {
12696           if (i->size == 0)
12697             continue;
12698
12699           abfd = i->owner;
12700           if (bfd_get_flavour (abfd) != bfd_target_elf_flavour)
12701             continue;
12702
12703           if (!init_reloc_cookie_for_section (&cookie, info, i))
12704             return -1;
12705
12706           _bfd_elf_parse_eh_frame (abfd, info, i, &cookie);
12707           if (_bfd_elf_discard_section_eh_frame (abfd, info, i,
12708                                                  bfd_elf_reloc_symbol_deleted_p,
12709                                                  &cookie))
12710             changed = 1;
12711
12712           fini_reloc_cookie_for_section (&cookie, i);
12713         }
12714     }
12715
12716   for (abfd = info->input_bfds; abfd != NULL; abfd = abfd->link.next)
12717     {
12718       const struct elf_backend_data *bed;
12719
12720       if (bfd_get_flavour (abfd) != bfd_target_elf_flavour)
12721         continue;
12722
12723       bed = get_elf_backend_data (abfd);
12724
12725       if (bed->elf_backend_discard_info != NULL)
12726         {
12727           if (!init_reloc_cookie (&cookie, info, abfd))
12728             return -1;
12729
12730           if ((*bed->elf_backend_discard_info) (abfd, &cookie, info))
12731             changed = 1;
12732
12733           fini_reloc_cookie (&cookie, abfd);
12734         }
12735     }
12736
12737   if (info->eh_frame_hdr
12738       && !info->relocatable
12739       && _bfd_elf_discard_section_eh_frame_hdr (output_bfd, info))
12740     changed = 1;
12741
12742   return changed;
12743 }
12744
12745 bfd_boolean
12746 _bfd_elf_section_already_linked (bfd *abfd,
12747                                  asection *sec,
12748                                  struct bfd_link_info *info)
12749 {
12750   flagword flags;
12751   const char *name, *key;
12752   struct bfd_section_already_linked *l;
12753   struct bfd_section_already_linked_hash_entry *already_linked_list;
12754
12755   if (sec->output_section == bfd_abs_section_ptr)
12756     return FALSE;
12757
12758   flags = sec->flags;
12759
12760   /* Return if it isn't a linkonce section.  A comdat group section
12761      also has SEC_LINK_ONCE set.  */
12762   if ((flags & SEC_LINK_ONCE) == 0)
12763     return FALSE;
12764
12765   /* Don't put group member sections on our list of already linked
12766      sections.  They are handled as a group via their group section.  */
12767   if (elf_sec_group (sec) != NULL)
12768     return FALSE;
12769
12770   /* For a SHT_GROUP section, use the group signature as the key.  */
12771   name = sec->name;
12772   if ((flags & SEC_GROUP) != 0
12773       && elf_next_in_group (sec) != NULL
12774       && elf_group_name (elf_next_in_group (sec)) != NULL)
12775     key = elf_group_name (elf_next_in_group (sec));
12776   else
12777     {
12778       /* Otherwise we should have a .gnu.linkonce.<type>.<key> section.  */
12779       if (CONST_STRNEQ (name, ".gnu.linkonce.")
12780           && (key = strchr (name + sizeof (".gnu.linkonce.") - 1, '.')) != NULL)
12781         key++;
12782       else
12783         /* Must be a user linkonce section that doesn't follow gcc's
12784            naming convention.  In this case we won't be matching
12785            single member groups.  */
12786         key = name;
12787     }
12788
12789   already_linked_list = bfd_section_already_linked_table_lookup (key);
12790
12791   for (l = already_linked_list->entry; l != NULL; l = l->next)
12792     {
12793       /* We may have 2 different types of sections on the list: group
12794          sections with a signature of <key> (<key> is some string),
12795          and linkonce sections named .gnu.linkonce.<type>.<key>.
12796          Match like sections.  LTO plugin sections are an exception.
12797          They are always named .gnu.linkonce.t.<key> and match either
12798          type of section.  */
12799       if (((flags & SEC_GROUP) == (l->sec->flags & SEC_GROUP)
12800            && ((flags & SEC_GROUP) != 0
12801                || strcmp (name, l->sec->name) == 0))
12802           || (l->sec->owner->flags & BFD_PLUGIN) != 0)
12803         {
12804           /* The section has already been linked.  See if we should
12805              issue a warning.  */
12806           if (!_bfd_handle_already_linked (sec, l, info))
12807             return FALSE;
12808
12809           if (flags & SEC_GROUP)
12810             {
12811               asection *first = elf_next_in_group (sec);
12812               asection *s = first;
12813
12814               while (s != NULL)
12815                 {
12816                   s->output_section = bfd_abs_section_ptr;
12817                   /* Record which group discards it.  */
12818                   s->kept_section = l->sec;
12819                   s = elf_next_in_group (s);
12820                   /* These lists are circular.  */
12821                   if (s == first)
12822                     break;
12823                 }
12824             }
12825
12826           return TRUE;
12827         }
12828     }
12829
12830   /* A single member comdat group section may be discarded by a
12831      linkonce section and vice versa.  */
12832   if ((flags & SEC_GROUP) != 0)
12833     {
12834       asection *first = elf_next_in_group (sec);
12835
12836       if (first != NULL && elf_next_in_group (first) == first)
12837         /* Check this single member group against linkonce sections.  */
12838         for (l = already_linked_list->entry; l != NULL; l = l->next)
12839           if ((l->sec->flags & SEC_GROUP) == 0
12840               && bfd_elf_match_symbols_in_sections (l->sec, first, info))
12841             {
12842               first->output_section = bfd_abs_section_ptr;
12843               first->kept_section = l->sec;
12844               sec->output_section = bfd_abs_section_ptr;
12845               break;
12846             }
12847     }
12848   else
12849     /* Check this linkonce section against single member groups.  */
12850     for (l = already_linked_list->entry; l != NULL; l = l->next)
12851       if (l->sec->flags & SEC_GROUP)
12852         {
12853           asection *first = elf_next_in_group (l->sec);
12854
12855           if (first != NULL
12856               && elf_next_in_group (first) == first
12857               && bfd_elf_match_symbols_in_sections (first, sec, info))
12858             {
12859               sec->output_section = bfd_abs_section_ptr;
12860               sec->kept_section = first;
12861               break;
12862             }
12863         }
12864
12865   /* Do not complain on unresolved relocations in `.gnu.linkonce.r.F'
12866      referencing its discarded `.gnu.linkonce.t.F' counterpart - g++-3.4
12867      specific as g++-4.x is using COMDAT groups (without the `.gnu.linkonce'
12868      prefix) instead.  `.gnu.linkonce.r.*' were the `.rodata' part of its
12869      matching `.gnu.linkonce.t.*'.  If `.gnu.linkonce.r.F' is not discarded
12870      but its `.gnu.linkonce.t.F' is discarded means we chose one-only
12871      `.gnu.linkonce.t.F' section from a different bfd not requiring any
12872      `.gnu.linkonce.r.F'.  Thus `.gnu.linkonce.r.F' should be discarded.
12873      The reverse order cannot happen as there is never a bfd with only the
12874      `.gnu.linkonce.r.F' section.  The order of sections in a bfd does not
12875      matter as here were are looking only for cross-bfd sections.  */
12876
12877   if ((flags & SEC_GROUP) == 0 && CONST_STRNEQ (name, ".gnu.linkonce.r."))
12878     for (l = already_linked_list->entry; l != NULL; l = l->next)
12879       if ((l->sec->flags & SEC_GROUP) == 0
12880           && CONST_STRNEQ (l->sec->name, ".gnu.linkonce.t."))
12881         {
12882           if (abfd != l->sec->owner)
12883             sec->output_section = bfd_abs_section_ptr;
12884           break;
12885         }
12886
12887   /* This is the first section with this name.  Record it.  */
12888   if (!bfd_section_already_linked_table_insert (already_linked_list, sec))
12889     info->callbacks->einfo (_("%F%P: already_linked_table: %E\n"));
12890   return sec->output_section == bfd_abs_section_ptr;
12891 }
12892
12893 bfd_boolean
12894 _bfd_elf_common_definition (Elf_Internal_Sym *sym)
12895 {
12896   return sym->st_shndx == SHN_COMMON;
12897 }
12898
12899 unsigned int
12900 _bfd_elf_common_section_index (asection *sec ATTRIBUTE_UNUSED)
12901 {
12902   return SHN_COMMON;
12903 }
12904
12905 asection *
12906 _bfd_elf_common_section (asection *sec ATTRIBUTE_UNUSED)
12907 {
12908   return bfd_com_section_ptr;
12909 }
12910
12911 bfd_vma
12912 _bfd_elf_default_got_elt_size (bfd *abfd,
12913                                struct bfd_link_info *info ATTRIBUTE_UNUSED,
12914                                struct elf_link_hash_entry *h ATTRIBUTE_UNUSED,
12915                                bfd *ibfd ATTRIBUTE_UNUSED,
12916                                unsigned long symndx ATTRIBUTE_UNUSED)
12917 {
12918   const struct elf_backend_data *bed = get_elf_backend_data (abfd);
12919   return bed->s->arch_size / 8;
12920 }
12921
12922 /* Routines to support the creation of dynamic relocs.  */
12923
12924 /* Returns the name of the dynamic reloc section associated with SEC.  */
12925
12926 static const char *
12927 get_dynamic_reloc_section_name (bfd *       abfd,
12928                                 asection *  sec,
12929                                 bfd_boolean is_rela)
12930 {
12931   char *name;
12932   const char *old_name = bfd_get_section_name (NULL, sec);
12933   const char *prefix = is_rela ? ".rela" : ".rel";
12934
12935   if (old_name == NULL)
12936     return NULL;
12937
12938   name = bfd_alloc (abfd, strlen (prefix) + strlen (old_name) + 1);
12939   sprintf (name, "%s%s", prefix, old_name);
12940
12941   return name;
12942 }
12943
12944 /* Returns the dynamic reloc section associated with SEC.
12945    If necessary compute the name of the dynamic reloc section based
12946    on SEC's name (looked up in ABFD's string table) and the setting
12947    of IS_RELA.  */
12948
12949 asection *
12950 _bfd_elf_get_dynamic_reloc_section (bfd *       abfd,
12951                                     asection *  sec,
12952                                     bfd_boolean is_rela)
12953 {
12954   asection * reloc_sec = elf_section_data (sec)->sreloc;
12955
12956   if (reloc_sec == NULL)
12957     {
12958       const char * name = get_dynamic_reloc_section_name (abfd, sec, is_rela);
12959
12960       if (name != NULL)
12961         {
12962           reloc_sec = bfd_get_linker_section (abfd, name);
12963
12964           if (reloc_sec != NULL)
12965             elf_section_data (sec)->sreloc = reloc_sec;
12966         }
12967     }
12968
12969   return reloc_sec;
12970 }
12971
12972 /* Returns the dynamic reloc section associated with SEC.  If the
12973    section does not exist it is created and attached to the DYNOBJ
12974    bfd and stored in the SRELOC field of SEC's elf_section_data
12975    structure.
12976
12977    ALIGNMENT is the alignment for the newly created section and
12978    IS_RELA defines whether the name should be .rela.<SEC's name>
12979    or .rel.<SEC's name>.  The section name is looked up in the
12980    string table associated with ABFD.  */
12981
12982 asection *
12983 _bfd_elf_make_dynamic_reloc_section (asection *         sec,
12984                                      bfd *              dynobj,
12985                                      unsigned int       alignment,
12986                                      bfd *              abfd,
12987                                      bfd_boolean        is_rela)
12988 {
12989   asection * reloc_sec = elf_section_data (sec)->sreloc;
12990
12991   if (reloc_sec == NULL)
12992     {
12993       const char * name = get_dynamic_reloc_section_name (abfd, sec, is_rela);
12994
12995       if (name == NULL)
12996         return NULL;
12997
12998       reloc_sec = bfd_get_linker_section (dynobj, name);
12999
13000       if (reloc_sec == NULL)
13001         {
13002           flagword flags = (SEC_HAS_CONTENTS | SEC_READONLY
13003                             | SEC_IN_MEMORY | SEC_LINKER_CREATED);
13004           if ((sec->flags & SEC_ALLOC) != 0)
13005             flags |= SEC_ALLOC | SEC_LOAD;
13006
13007           reloc_sec = bfd_make_section_anyway_with_flags (dynobj, name, flags);
13008           if (reloc_sec != NULL)
13009             {
13010               /* _bfd_elf_get_sec_type_attr chooses a section type by
13011                  name.  Override as it may be wrong, eg. for a user
13012                  section named "auto" we'll get ".relauto" which is
13013                  seen to be a .rela section.  */
13014               elf_section_type (reloc_sec) = is_rela ? SHT_RELA : SHT_REL;
13015               if (! bfd_set_section_alignment (dynobj, reloc_sec, alignment))
13016                 reloc_sec = NULL;
13017             }
13018         }
13019
13020       elf_section_data (sec)->sreloc = reloc_sec;
13021     }
13022
13023   return reloc_sec;
13024 }
13025
13026 /* Copy the ELF symbol type and other attributes for a linker script
13027    assignment from HSRC to HDEST.  Generally this should be treated as
13028    if we found a strong non-dynamic definition for HDEST (except that
13029    ld ignores multiple definition errors).  */
13030 void
13031 _bfd_elf_copy_link_hash_symbol_type (bfd *abfd,
13032                                      struct bfd_link_hash_entry *hdest,
13033                                      struct bfd_link_hash_entry *hsrc)
13034 {
13035   struct elf_link_hash_entry *ehdest = (struct elf_link_hash_entry *) hdest;
13036   struct elf_link_hash_entry *ehsrc = (struct elf_link_hash_entry *) hsrc;
13037   Elf_Internal_Sym isym;
13038
13039   ehdest->type = ehsrc->type;
13040   ehdest->target_internal = ehsrc->target_internal;
13041
13042   isym.st_other = ehsrc->other;
13043   elf_merge_st_other (abfd, ehdest, &isym, TRUE, FALSE);
13044 }
13045
13046 /* Append a RELA relocation REL to section S in BFD.  */
13047
13048 void
13049 elf_append_rela (bfd *abfd, asection *s, Elf_Internal_Rela *rel)
13050 {
13051   const struct elf_backend_data *bed = get_elf_backend_data (abfd);
13052   bfd_byte *loc = s->contents + (s->reloc_count++ * bed->s->sizeof_rela);
13053   BFD_ASSERT (loc + bed->s->sizeof_rela <= s->contents + s->size);
13054   bed->s->swap_reloca_out (abfd, rel, loc);
13055 }
13056
13057 /* Append a REL relocation REL to section S in BFD.  */
13058
13059 void
13060 elf_append_rel (bfd *abfd, asection *s, Elf_Internal_Rela *rel)
13061 {
13062   const struct elf_backend_data *bed = get_elf_backend_data (abfd);
13063   bfd_byte *loc = s->contents + (s->reloc_count++ * bed->s->sizeof_rel);
13064   BFD_ASSERT (loc + bed->s->sizeof_rel <= s->contents + s->size);
13065   bed->s->swap_reloc_out (abfd, rel, loc);
13066 }