bfd/
[binutils-gdb.git] / bfd / elflink.h
1 /* ELF linker support.
2 Copyright 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
3 Free Software Foundation, Inc.
4
5 This file is part of BFD, the Binary File Descriptor library.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
20
21 /* ELF linker code. */
22
23 static bfd_boolean is_global_data_symbol_definition
24 PARAMS ((bfd *, Elf_Internal_Sym *));
25 static bfd_boolean elf_link_is_defined_archive_symbol
26 PARAMS ((bfd *, carsym *));
27 static bfd_boolean elf_link_add_object_symbols
28 PARAMS ((bfd *, struct bfd_link_info *));
29 static bfd_boolean elf_link_add_archive_symbols
30 PARAMS ((bfd *, struct bfd_link_info *));
31 static bfd_boolean elf_finalize_dynstr
32 PARAMS ((bfd *, struct bfd_link_info *));
33 static bfd_boolean elf_collect_hash_codes
34 PARAMS ((struct elf_link_hash_entry *, PTR));
35 static size_t compute_bucket_count
36 PARAMS ((struct bfd_link_info *));
37 static void elf_link_adjust_relocs
38 PARAMS ((bfd *, Elf_Internal_Shdr *, unsigned int,
39 struct elf_link_hash_entry **));
40 static int elf_link_sort_cmp1
41 PARAMS ((const void *, const void *));
42 static int elf_link_sort_cmp2
43 PARAMS ((const void *, const void *));
44 static size_t elf_link_sort_relocs
45 PARAMS ((bfd *, struct bfd_link_info *, asection **));
46 static bfd_boolean elf_section_ignore_discarded_relocs
47 PARAMS ((asection *));
48
49 /* Given an ELF BFD, add symbols to the global hash table as
50 appropriate. */
51
52 bfd_boolean
53 elf_bfd_link_add_symbols (abfd, info)
54 bfd *abfd;
55 struct bfd_link_info *info;
56 {
57 switch (bfd_get_format (abfd))
58 {
59 case bfd_object:
60 return elf_link_add_object_symbols (abfd, info);
61 case bfd_archive:
62 return elf_link_add_archive_symbols (abfd, info);
63 default:
64 bfd_set_error (bfd_error_wrong_format);
65 return FALSE;
66 }
67 }
68 \f
69 /* Return TRUE iff this is a non-common, definition of a non-function symbol. */
70 static bfd_boolean
71 is_global_data_symbol_definition (abfd, sym)
72 bfd * abfd ATTRIBUTE_UNUSED;
73 Elf_Internal_Sym * sym;
74 {
75 /* Local symbols do not count, but target specific ones might. */
76 if (ELF_ST_BIND (sym->st_info) != STB_GLOBAL
77 && ELF_ST_BIND (sym->st_info) < STB_LOOS)
78 return FALSE;
79
80 /* Function symbols do not count. */
81 if (ELF_ST_TYPE (sym->st_info) == STT_FUNC)
82 return FALSE;
83
84 /* If the section is undefined, then so is the symbol. */
85 if (sym->st_shndx == SHN_UNDEF)
86 return FALSE;
87
88 /* If the symbol is defined in the common section, then
89 it is a common definition and so does not count. */
90 if (sym->st_shndx == SHN_COMMON)
91 return FALSE;
92
93 /* If the symbol is in a target specific section then we
94 must rely upon the backend to tell us what it is. */
95 if (sym->st_shndx >= SHN_LORESERVE && sym->st_shndx < SHN_ABS)
96 /* FIXME - this function is not coded yet:
97
98 return _bfd_is_global_symbol_definition (abfd, sym);
99
100 Instead for now assume that the definition is not global,
101 Even if this is wrong, at least the linker will behave
102 in the same way that it used to do. */
103 return FALSE;
104
105 return TRUE;
106 }
107
108 /* Search the symbol table of the archive element of the archive ABFD
109 whose archive map contains a mention of SYMDEF, and determine if
110 the symbol is defined in this element. */
111 static bfd_boolean
112 elf_link_is_defined_archive_symbol (abfd, symdef)
113 bfd * abfd;
114 carsym * symdef;
115 {
116 Elf_Internal_Shdr * hdr;
117 bfd_size_type symcount;
118 bfd_size_type extsymcount;
119 bfd_size_type extsymoff;
120 Elf_Internal_Sym *isymbuf;
121 Elf_Internal_Sym *isym;
122 Elf_Internal_Sym *isymend;
123 bfd_boolean result;
124
125 abfd = _bfd_get_elt_at_filepos (abfd, symdef->file_offset);
126 if (abfd == (bfd *) NULL)
127 return FALSE;
128
129 if (! bfd_check_format (abfd, bfd_object))
130 return FALSE;
131
132 /* If we have already included the element containing this symbol in the
133 link then we do not need to include it again. Just claim that any symbol
134 it contains is not a definition, so that our caller will not decide to
135 (re)include this element. */
136 if (abfd->archive_pass)
137 return FALSE;
138
139 /* Select the appropriate symbol table. */
140 if ((abfd->flags & DYNAMIC) == 0 || elf_dynsymtab (abfd) == 0)
141 hdr = &elf_tdata (abfd)->symtab_hdr;
142 else
143 hdr = &elf_tdata (abfd)->dynsymtab_hdr;
144
145 symcount = hdr->sh_size / sizeof (Elf_External_Sym);
146
147 /* The sh_info field of the symtab header tells us where the
148 external symbols start. We don't care about the local symbols. */
149 if (elf_bad_symtab (abfd))
150 {
151 extsymcount = symcount;
152 extsymoff = 0;
153 }
154 else
155 {
156 extsymcount = symcount - hdr->sh_info;
157 extsymoff = hdr->sh_info;
158 }
159
160 if (extsymcount == 0)
161 return FALSE;
162
163 /* Read in the symbol table. */
164 isymbuf = bfd_elf_get_elf_syms (abfd, hdr, extsymcount, extsymoff,
165 NULL, NULL, NULL);
166 if (isymbuf == NULL)
167 return FALSE;
168
169 /* Scan the symbol table looking for SYMDEF. */
170 result = FALSE;
171 for (isym = isymbuf, isymend = isymbuf + extsymcount; isym < isymend; isym++)
172 {
173 const char *name;
174
175 name = bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
176 isym->st_name);
177 if (name == (const char *) NULL)
178 break;
179
180 if (strcmp (name, symdef->name) == 0)
181 {
182 result = is_global_data_symbol_definition (abfd, isym);
183 break;
184 }
185 }
186
187 free (isymbuf);
188
189 return result;
190 }
191 \f
192 /* Add symbols from an ELF archive file to the linker hash table. We
193 don't use _bfd_generic_link_add_archive_symbols because of a
194 problem which arises on UnixWare. The UnixWare libc.so is an
195 archive which includes an entry libc.so.1 which defines a bunch of
196 symbols. The libc.so archive also includes a number of other
197 object files, which also define symbols, some of which are the same
198 as those defined in libc.so.1. Correct linking requires that we
199 consider each object file in turn, and include it if it defines any
200 symbols we need. _bfd_generic_link_add_archive_symbols does not do
201 this; it looks through the list of undefined symbols, and includes
202 any object file which defines them. When this algorithm is used on
203 UnixWare, it winds up pulling in libc.so.1 early and defining a
204 bunch of symbols. This means that some of the other objects in the
205 archive are not included in the link, which is incorrect since they
206 precede libc.so.1 in the archive.
207
208 Fortunately, ELF archive handling is simpler than that done by
209 _bfd_generic_link_add_archive_symbols, which has to allow for a.out
210 oddities. In ELF, if we find a symbol in the archive map, and the
211 symbol is currently undefined, we know that we must pull in that
212 object file.
213
214 Unfortunately, we do have to make multiple passes over the symbol
215 table until nothing further is resolved. */
216
217 static bfd_boolean
218 elf_link_add_archive_symbols (abfd, info)
219 bfd *abfd;
220 struct bfd_link_info *info;
221 {
222 symindex c;
223 bfd_boolean *defined = NULL;
224 bfd_boolean *included = NULL;
225 carsym *symdefs;
226 bfd_boolean loop;
227 bfd_size_type amt;
228
229 if (! bfd_has_map (abfd))
230 {
231 /* An empty archive is a special case. */
232 if (bfd_openr_next_archived_file (abfd, (bfd *) NULL) == NULL)
233 return TRUE;
234 bfd_set_error (bfd_error_no_armap);
235 return FALSE;
236 }
237
238 /* Keep track of all symbols we know to be already defined, and all
239 files we know to be already included. This is to speed up the
240 second and subsequent passes. */
241 c = bfd_ardata (abfd)->symdef_count;
242 if (c == 0)
243 return TRUE;
244 amt = c;
245 amt *= sizeof (bfd_boolean);
246 defined = (bfd_boolean *) bfd_zmalloc (amt);
247 included = (bfd_boolean *) bfd_zmalloc (amt);
248 if (defined == (bfd_boolean *) NULL || included == (bfd_boolean *) NULL)
249 goto error_return;
250
251 symdefs = bfd_ardata (abfd)->symdefs;
252
253 do
254 {
255 file_ptr last;
256 symindex i;
257 carsym *symdef;
258 carsym *symdefend;
259
260 loop = FALSE;
261 last = -1;
262
263 symdef = symdefs;
264 symdefend = symdef + c;
265 for (i = 0; symdef < symdefend; symdef++, i++)
266 {
267 struct elf_link_hash_entry *h;
268 bfd *element;
269 struct bfd_link_hash_entry *undefs_tail;
270 symindex mark;
271
272 if (defined[i] || included[i])
273 continue;
274 if (symdef->file_offset == last)
275 {
276 included[i] = TRUE;
277 continue;
278 }
279
280 h = elf_link_hash_lookup (elf_hash_table (info), symdef->name,
281 FALSE, FALSE, FALSE);
282
283 if (h == NULL)
284 {
285 char *p, *copy;
286 size_t len, first;
287
288 /* If this is a default version (the name contains @@),
289 look up the symbol again with only one `@' as well
290 as without the version. The effect is that references
291 to the symbol with and without the version will be
292 matched by the default symbol in the archive. */
293
294 p = strchr (symdef->name, ELF_VER_CHR);
295 if (p == NULL || p[1] != ELF_VER_CHR)
296 continue;
297
298 /* First check with only one `@'. */
299 len = strlen (symdef->name);
300 copy = bfd_alloc (abfd, (bfd_size_type) len);
301 if (copy == NULL)
302 goto error_return;
303 first = p - symdef->name + 1;
304 memcpy (copy, symdef->name, first);
305 memcpy (copy + first, symdef->name + first + 1, len - first);
306
307 h = elf_link_hash_lookup (elf_hash_table (info), copy,
308 FALSE, FALSE, FALSE);
309
310 if (h == NULL)
311 {
312 /* We also need to check references to the symbol
313 without the version. */
314
315 copy[first - 1] = '\0';
316 h = elf_link_hash_lookup (elf_hash_table (info),
317 copy, FALSE, FALSE, FALSE);
318 }
319
320 bfd_release (abfd, copy);
321 }
322
323 if (h == NULL)
324 continue;
325
326 if (h->root.type == bfd_link_hash_common)
327 {
328 /* We currently have a common symbol. The archive map contains
329 a reference to this symbol, so we may want to include it. We
330 only want to include it however, if this archive element
331 contains a definition of the symbol, not just another common
332 declaration of it.
333
334 Unfortunately some archivers (including GNU ar) will put
335 declarations of common symbols into their archive maps, as
336 well as real definitions, so we cannot just go by the archive
337 map alone. Instead we must read in the element's symbol
338 table and check that to see what kind of symbol definition
339 this is. */
340 if (! elf_link_is_defined_archive_symbol (abfd, symdef))
341 continue;
342 }
343 else if (h->root.type != bfd_link_hash_undefined)
344 {
345 if (h->root.type != bfd_link_hash_undefweak)
346 defined[i] = TRUE;
347 continue;
348 }
349
350 /* We need to include this archive member. */
351 element = _bfd_get_elt_at_filepos (abfd, symdef->file_offset);
352 if (element == (bfd *) NULL)
353 goto error_return;
354
355 if (! bfd_check_format (element, bfd_object))
356 goto error_return;
357
358 /* Doublecheck that we have not included this object
359 already--it should be impossible, but there may be
360 something wrong with the archive. */
361 if (element->archive_pass != 0)
362 {
363 bfd_set_error (bfd_error_bad_value);
364 goto error_return;
365 }
366 element->archive_pass = 1;
367
368 undefs_tail = info->hash->undefs_tail;
369
370 if (! (*info->callbacks->add_archive_element) (info, element,
371 symdef->name))
372 goto error_return;
373 if (! elf_link_add_object_symbols (element, info))
374 goto error_return;
375
376 /* If there are any new undefined symbols, we need to make
377 another pass through the archive in order to see whether
378 they can be defined. FIXME: This isn't perfect, because
379 common symbols wind up on undefs_tail and because an
380 undefined symbol which is defined later on in this pass
381 does not require another pass. This isn't a bug, but it
382 does make the code less efficient than it could be. */
383 if (undefs_tail != info->hash->undefs_tail)
384 loop = TRUE;
385
386 /* Look backward to mark all symbols from this object file
387 which we have already seen in this pass. */
388 mark = i;
389 do
390 {
391 included[mark] = TRUE;
392 if (mark == 0)
393 break;
394 --mark;
395 }
396 while (symdefs[mark].file_offset == symdef->file_offset);
397
398 /* We mark subsequent symbols from this object file as we go
399 on through the loop. */
400 last = symdef->file_offset;
401 }
402 }
403 while (loop);
404
405 free (defined);
406 free (included);
407
408 return TRUE;
409
410 error_return:
411 if (defined != (bfd_boolean *) NULL)
412 free (defined);
413 if (included != (bfd_boolean *) NULL)
414 free (included);
415 return FALSE;
416 }
417
418 /* Add symbols from an ELF object file to the linker hash table. */
419
420 static bfd_boolean
421 elf_link_add_object_symbols (abfd, info)
422 bfd *abfd;
423 struct bfd_link_info *info;
424 {
425 bfd_boolean (*add_symbol_hook)
426 PARAMS ((bfd *, struct bfd_link_info *, const Elf_Internal_Sym *,
427 const char **, flagword *, asection **, bfd_vma *));
428 bfd_boolean (*check_relocs)
429 PARAMS ((bfd *, struct bfd_link_info *, asection *,
430 const Elf_Internal_Rela *));
431 bfd_boolean collect;
432 Elf_Internal_Shdr *hdr;
433 bfd_size_type symcount;
434 bfd_size_type extsymcount;
435 bfd_size_type extsymoff;
436 struct elf_link_hash_entry **sym_hash;
437 bfd_boolean dynamic;
438 Elf_External_Versym *extversym = NULL;
439 Elf_External_Versym *ever;
440 struct elf_link_hash_entry *weaks;
441 struct elf_link_hash_entry **nondeflt_vers = NULL;
442 bfd_size_type nondeflt_vers_cnt = 0;
443 Elf_Internal_Sym *isymbuf = NULL;
444 Elf_Internal_Sym *isym;
445 Elf_Internal_Sym *isymend;
446 struct elf_backend_data *bed;
447 bfd_boolean dt_needed;
448 struct elf_link_hash_table * hash_table;
449 bfd_size_type amt;
450
451 hash_table = elf_hash_table (info);
452
453 bed = get_elf_backend_data (abfd);
454 add_symbol_hook = bed->elf_add_symbol_hook;
455 collect = bed->collect;
456
457 if ((abfd->flags & DYNAMIC) == 0)
458 dynamic = FALSE;
459 else
460 {
461 dynamic = TRUE;
462
463 /* You can't use -r against a dynamic object. Also, there's no
464 hope of using a dynamic object which does not exactly match
465 the format of the output file. */
466 if (info->relocateable || info->hash->creator != abfd->xvec)
467 {
468 bfd_set_error (bfd_error_invalid_operation);
469 goto error_return;
470 }
471 }
472
473 /* As a GNU extension, any input sections which are named
474 .gnu.warning.SYMBOL are treated as warning symbols for the given
475 symbol. This differs from .gnu.warning sections, which generate
476 warnings when they are included in an output file. */
477 if (info->executable)
478 {
479 asection *s;
480
481 for (s = abfd->sections; s != NULL; s = s->next)
482 {
483 const char *name;
484
485 name = bfd_get_section_name (abfd, s);
486 if (strncmp (name, ".gnu.warning.", sizeof ".gnu.warning." - 1) == 0)
487 {
488 char *msg;
489 bfd_size_type sz;
490
491 name += sizeof ".gnu.warning." - 1;
492
493 /* If this is a shared object, then look up the symbol
494 in the hash table. If it is there, and it is already
495 been defined, then we will not be using the entry
496 from this shared object, so we don't need to warn.
497 FIXME: If we see the definition in a regular object
498 later on, we will warn, but we shouldn't. The only
499 fix is to keep track of what warnings we are supposed
500 to emit, and then handle them all at the end of the
501 link. */
502 if (dynamic && abfd->xvec == info->hash->creator)
503 {
504 struct elf_link_hash_entry *h;
505
506 h = elf_link_hash_lookup (hash_table, name,
507 FALSE, FALSE, TRUE);
508
509 /* FIXME: What about bfd_link_hash_common? */
510 if (h != NULL
511 && (h->root.type == bfd_link_hash_defined
512 || h->root.type == bfd_link_hash_defweak))
513 {
514 /* We don't want to issue this warning. Clobber
515 the section size so that the warning does not
516 get copied into the output file. */
517 s->_raw_size = 0;
518 continue;
519 }
520 }
521
522 sz = bfd_section_size (abfd, s);
523 msg = (char *) bfd_alloc (abfd, sz + 1);
524 if (msg == NULL)
525 goto error_return;
526
527 if (! bfd_get_section_contents (abfd, s, msg, (file_ptr) 0, sz))
528 goto error_return;
529
530 msg[sz] = '\0';
531
532 if (! (_bfd_generic_link_add_one_symbol
533 (info, abfd, name, BSF_WARNING, s, (bfd_vma) 0, msg,
534 FALSE, collect, (struct bfd_link_hash_entry **) NULL)))
535 goto error_return;
536
537 if (! info->relocateable)
538 {
539 /* Clobber the section size so that the warning does
540 not get copied into the output file. */
541 s->_raw_size = 0;
542 }
543 }
544 }
545 }
546
547 dt_needed = FALSE;
548 if (! dynamic)
549 {
550 /* If we are creating a shared library, create all the dynamic
551 sections immediately. We need to attach them to something,
552 so we attach them to this BFD, provided it is the right
553 format. FIXME: If there are no input BFD's of the same
554 format as the output, we can't make a shared library. */
555 if (info->shared
556 && is_elf_hash_table (info)
557 && ! hash_table->dynamic_sections_created
558 && abfd->xvec == info->hash->creator)
559 {
560 if (! _bfd_elf_link_create_dynamic_sections (abfd, info))
561 goto error_return;
562 }
563 }
564 else if (! is_elf_hash_table (info))
565 goto error_return;
566 else
567 {
568 asection *s;
569 bfd_boolean add_needed;
570 const char *name;
571 bfd_size_type oldsize;
572 bfd_size_type strindex;
573 struct bfd_link_needed_list *rpath = NULL, *runpath = NULL;
574
575 /* ld --just-symbols and dynamic objects don't mix very well.
576 Test for --just-symbols by looking at info set up by
577 _bfd_elf_link_just_syms. */
578 if ((s = abfd->sections) != NULL
579 && s->sec_info_type == ELF_INFO_TYPE_JUST_SYMS)
580 goto error_return;
581
582 /* Find the name to use in a DT_NEEDED entry that refers to this
583 object. If the object has a DT_SONAME entry, we use it.
584 Otherwise, if the generic linker stuck something in
585 elf_dt_name, we use that. Otherwise, we just use the file
586 name. If the generic linker put a null string into
587 elf_dt_name, we don't make a DT_NEEDED entry at all, even if
588 there is a DT_SONAME entry. */
589 add_needed = TRUE;
590 name = bfd_get_filename (abfd);
591 if (elf_dt_name (abfd) != NULL)
592 {
593 name = elf_dt_name (abfd);
594 if (*name == '\0')
595 {
596 if (elf_dt_soname (abfd) != NULL)
597 dt_needed = TRUE;
598
599 add_needed = FALSE;
600 }
601 }
602 s = bfd_get_section_by_name (abfd, ".dynamic");
603 if (s != NULL)
604 {
605 Elf_External_Dyn *dynbuf = NULL;
606 Elf_External_Dyn *extdyn;
607 Elf_External_Dyn *extdynend;
608 int elfsec;
609 unsigned long shlink;
610
611 dynbuf = (Elf_External_Dyn *) bfd_malloc (s->_raw_size);
612 if (dynbuf == NULL)
613 goto error_return;
614
615 if (! bfd_get_section_contents (abfd, s, (PTR) dynbuf,
616 (file_ptr) 0, s->_raw_size))
617 goto error_free_dyn;
618
619 elfsec = _bfd_elf_section_from_bfd_section (abfd, s);
620 if (elfsec == -1)
621 goto error_free_dyn;
622 shlink = elf_elfsections (abfd)[elfsec]->sh_link;
623
624 extdyn = dynbuf;
625 extdynend = extdyn + s->_raw_size / sizeof (Elf_External_Dyn);
626 for (; extdyn < extdynend; extdyn++)
627 {
628 Elf_Internal_Dyn dyn;
629
630 elf_swap_dyn_in (abfd, extdyn, &dyn);
631 if (dyn.d_tag == DT_SONAME)
632 {
633 unsigned int tagv = dyn.d_un.d_val;
634 name = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
635 if (name == NULL)
636 goto error_free_dyn;
637 }
638 if (dyn.d_tag == DT_NEEDED)
639 {
640 struct bfd_link_needed_list *n, **pn;
641 char *fnm, *anm;
642 unsigned int tagv = dyn.d_un.d_val;
643
644 amt = sizeof (struct bfd_link_needed_list);
645 n = (struct bfd_link_needed_list *) bfd_alloc (abfd, amt);
646 fnm = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
647 if (n == NULL || fnm == NULL)
648 goto error_free_dyn;
649 amt = strlen (fnm) + 1;
650 anm = bfd_alloc (abfd, amt);
651 if (anm == NULL)
652 goto error_free_dyn;
653 memcpy (anm, fnm, (size_t) amt);
654 n->name = anm;
655 n->by = abfd;
656 n->next = NULL;
657 for (pn = & hash_table->needed;
658 *pn != NULL;
659 pn = &(*pn)->next)
660 ;
661 *pn = n;
662 }
663 if (dyn.d_tag == DT_RUNPATH)
664 {
665 struct bfd_link_needed_list *n, **pn;
666 char *fnm, *anm;
667 unsigned int tagv = dyn.d_un.d_val;
668
669 amt = sizeof (struct bfd_link_needed_list);
670 n = (struct bfd_link_needed_list *) bfd_alloc (abfd, amt);
671 fnm = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
672 if (n == NULL || fnm == NULL)
673 goto error_free_dyn;
674 amt = strlen (fnm) + 1;
675 anm = bfd_alloc (abfd, amt);
676 if (anm == NULL)
677 goto error_free_dyn;
678 memcpy (anm, fnm, (size_t) amt);
679 n->name = anm;
680 n->by = abfd;
681 n->next = NULL;
682 for (pn = & runpath;
683 *pn != NULL;
684 pn = &(*pn)->next)
685 ;
686 *pn = n;
687 }
688 /* Ignore DT_RPATH if we have seen DT_RUNPATH. */
689 if (!runpath && dyn.d_tag == DT_RPATH)
690 {
691 struct bfd_link_needed_list *n, **pn;
692 char *fnm, *anm;
693 unsigned int tagv = dyn.d_un.d_val;
694
695 amt = sizeof (struct bfd_link_needed_list);
696 n = (struct bfd_link_needed_list *) bfd_alloc (abfd, amt);
697 fnm = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
698 if (n == NULL || fnm == NULL)
699 goto error_free_dyn;
700 amt = strlen (fnm) + 1;
701 anm = bfd_alloc (abfd, amt);
702 if (anm == NULL)
703 {
704 error_free_dyn:
705 free (dynbuf);
706 goto error_return;
707 }
708 memcpy (anm, fnm, (size_t) amt);
709 n->name = anm;
710 n->by = abfd;
711 n->next = NULL;
712 for (pn = & rpath;
713 *pn != NULL;
714 pn = &(*pn)->next)
715 ;
716 *pn = n;
717 }
718 }
719
720 free (dynbuf);
721 }
722
723 /* DT_RUNPATH overrides DT_RPATH. Do _NOT_ bfd_release, as that
724 frees all more recently bfd_alloc'd blocks as well. */
725 if (runpath)
726 rpath = runpath;
727
728 if (rpath)
729 {
730 struct bfd_link_needed_list **pn;
731 for (pn = & hash_table->runpath;
732 *pn != NULL;
733 pn = &(*pn)->next)
734 ;
735 *pn = rpath;
736 }
737
738 /* We do not want to include any of the sections in a dynamic
739 object in the output file. We hack by simply clobbering the
740 list of sections in the BFD. This could be handled more
741 cleanly by, say, a new section flag; the existing
742 SEC_NEVER_LOAD flag is not the one we want, because that one
743 still implies that the section takes up space in the output
744 file. */
745 bfd_section_list_clear (abfd);
746
747 /* If this is the first dynamic object found in the link, create
748 the special sections required for dynamic linking. */
749 if (! hash_table->dynamic_sections_created)
750 if (! _bfd_elf_link_create_dynamic_sections (abfd, info))
751 goto error_return;
752
753 if (add_needed)
754 {
755 /* Add a DT_NEEDED entry for this dynamic object. */
756 oldsize = _bfd_elf_strtab_size (hash_table->dynstr);
757 strindex = _bfd_elf_strtab_add (hash_table->dynstr, name, FALSE);
758 if (strindex == (bfd_size_type) -1)
759 goto error_return;
760
761 if (oldsize == _bfd_elf_strtab_size (hash_table->dynstr))
762 {
763 asection *sdyn;
764 Elf_External_Dyn *dyncon, *dynconend;
765
766 /* The hash table size did not change, which means that
767 the dynamic object name was already entered. If we
768 have already included this dynamic object in the
769 link, just ignore it. There is no reason to include
770 a particular dynamic object more than once. */
771 sdyn = bfd_get_section_by_name (hash_table->dynobj, ".dynamic");
772 BFD_ASSERT (sdyn != NULL);
773
774 dyncon = (Elf_External_Dyn *) sdyn->contents;
775 dynconend = (Elf_External_Dyn *) (sdyn->contents +
776 sdyn->_raw_size);
777 for (; dyncon < dynconend; dyncon++)
778 {
779 Elf_Internal_Dyn dyn;
780
781 elf_swap_dyn_in (hash_table->dynobj, dyncon, & dyn);
782 if (dyn.d_tag == DT_NEEDED
783 && dyn.d_un.d_val == strindex)
784 {
785 _bfd_elf_strtab_delref (hash_table->dynstr, strindex);
786 return TRUE;
787 }
788 }
789 }
790
791 if (! elf_add_dynamic_entry (info, (bfd_vma) DT_NEEDED, strindex))
792 goto error_return;
793 }
794
795 /* Save the SONAME, if there is one, because sometimes the
796 linker emulation code will need to know it. */
797 if (*name == '\0')
798 name = basename (bfd_get_filename (abfd));
799 elf_dt_name (abfd) = name;
800 }
801
802 /* If this is a dynamic object, we always link against the .dynsym
803 symbol table, not the .symtab symbol table. The dynamic linker
804 will only see the .dynsym symbol table, so there is no reason to
805 look at .symtab for a dynamic object. */
806
807 if (! dynamic || elf_dynsymtab (abfd) == 0)
808 hdr = &elf_tdata (abfd)->symtab_hdr;
809 else
810 hdr = &elf_tdata (abfd)->dynsymtab_hdr;
811
812 symcount = hdr->sh_size / sizeof (Elf_External_Sym);
813
814 /* The sh_info field of the symtab header tells us where the
815 external symbols start. We don't care about the local symbols at
816 this point. */
817 if (elf_bad_symtab (abfd))
818 {
819 extsymcount = symcount;
820 extsymoff = 0;
821 }
822 else
823 {
824 extsymcount = symcount - hdr->sh_info;
825 extsymoff = hdr->sh_info;
826 }
827
828 sym_hash = NULL;
829 if (extsymcount != 0)
830 {
831 isymbuf = bfd_elf_get_elf_syms (abfd, hdr, extsymcount, extsymoff,
832 NULL, NULL, NULL);
833 if (isymbuf == NULL)
834 goto error_return;
835
836 /* We store a pointer to the hash table entry for each external
837 symbol. */
838 amt = extsymcount * sizeof (struct elf_link_hash_entry *);
839 sym_hash = (struct elf_link_hash_entry **) bfd_alloc (abfd, amt);
840 if (sym_hash == NULL)
841 goto error_free_sym;
842 elf_sym_hashes (abfd) = sym_hash;
843 }
844
845 if (dynamic)
846 {
847 /* Read in any version definitions. */
848 if (! _bfd_elf_slurp_version_tables (abfd))
849 goto error_free_sym;
850
851 /* Read in the symbol versions, but don't bother to convert them
852 to internal format. */
853 if (elf_dynversym (abfd) != 0)
854 {
855 Elf_Internal_Shdr *versymhdr;
856
857 versymhdr = &elf_tdata (abfd)->dynversym_hdr;
858 extversym = (Elf_External_Versym *) bfd_malloc (versymhdr->sh_size);
859 if (extversym == NULL)
860 goto error_free_sym;
861 amt = versymhdr->sh_size;
862 if (bfd_seek (abfd, versymhdr->sh_offset, SEEK_SET) != 0
863 || bfd_bread ((PTR) extversym, amt, abfd) != amt)
864 goto error_free_vers;
865 }
866 }
867
868 weaks = NULL;
869
870 ever = extversym != NULL ? extversym + extsymoff : NULL;
871 for (isym = isymbuf, isymend = isymbuf + extsymcount;
872 isym < isymend;
873 isym++, sym_hash++, ever = (ever != NULL ? ever + 1 : NULL))
874 {
875 int bind;
876 bfd_vma value;
877 asection *sec;
878 flagword flags;
879 const char *name;
880 struct elf_link_hash_entry *h;
881 bfd_boolean definition;
882 bfd_boolean size_change_ok;
883 bfd_boolean type_change_ok;
884 bfd_boolean new_weakdef;
885 bfd_boolean override;
886 unsigned int old_alignment;
887 bfd *old_bfd;
888
889 override = FALSE;
890
891 flags = BSF_NO_FLAGS;
892 sec = NULL;
893 value = isym->st_value;
894 *sym_hash = NULL;
895
896 bind = ELF_ST_BIND (isym->st_info);
897 if (bind == STB_LOCAL)
898 {
899 /* This should be impossible, since ELF requires that all
900 global symbols follow all local symbols, and that sh_info
901 point to the first global symbol. Unfortunatealy, Irix 5
902 screws this up. */
903 continue;
904 }
905 else if (bind == STB_GLOBAL)
906 {
907 if (isym->st_shndx != SHN_UNDEF
908 && isym->st_shndx != SHN_COMMON)
909 flags = BSF_GLOBAL;
910 }
911 else if (bind == STB_WEAK)
912 flags = BSF_WEAK;
913 else
914 {
915 /* Leave it up to the processor backend. */
916 }
917
918 if (isym->st_shndx == SHN_UNDEF)
919 sec = bfd_und_section_ptr;
920 else if (isym->st_shndx < SHN_LORESERVE || isym->st_shndx > SHN_HIRESERVE)
921 {
922 sec = section_from_elf_index (abfd, isym->st_shndx);
923 if (sec == NULL)
924 sec = bfd_abs_section_ptr;
925 else if ((abfd->flags & (EXEC_P | DYNAMIC)) != 0)
926 value -= sec->vma;
927 }
928 else if (isym->st_shndx == SHN_ABS)
929 sec = bfd_abs_section_ptr;
930 else if (isym->st_shndx == SHN_COMMON)
931 {
932 sec = bfd_com_section_ptr;
933 /* What ELF calls the size we call the value. What ELF
934 calls the value we call the alignment. */
935 value = isym->st_size;
936 }
937 else
938 {
939 /* Leave it up to the processor backend. */
940 }
941
942 name = bfd_elf_string_from_elf_section (abfd, hdr->sh_link,
943 isym->st_name);
944 if (name == (const char *) NULL)
945 goto error_free_vers;
946
947 if (isym->st_shndx == SHN_COMMON
948 && ELF_ST_TYPE (isym->st_info) == STT_TLS)
949 {
950 asection *tcomm = bfd_get_section_by_name (abfd, ".tcommon");
951
952 if (tcomm == NULL)
953 {
954 tcomm = bfd_make_section (abfd, ".tcommon");
955 if (tcomm == NULL
956 || !bfd_set_section_flags (abfd, tcomm, (SEC_ALLOC
957 | SEC_IS_COMMON
958 | SEC_LINKER_CREATED
959 | SEC_THREAD_LOCAL)))
960 goto error_free_vers;
961 }
962 sec = tcomm;
963 }
964 else if (add_symbol_hook)
965 {
966 if (! (*add_symbol_hook) (abfd, info, isym, &name, &flags, &sec,
967 &value))
968 goto error_free_vers;
969
970 /* The hook function sets the name to NULL if this symbol
971 should be skipped for some reason. */
972 if (name == (const char *) NULL)
973 continue;
974 }
975
976 /* Sanity check that all possibilities were handled. */
977 if (sec == (asection *) NULL)
978 {
979 bfd_set_error (bfd_error_bad_value);
980 goto error_free_vers;
981 }
982
983 if (bfd_is_und_section (sec)
984 || bfd_is_com_section (sec))
985 definition = FALSE;
986 else
987 definition = TRUE;
988
989 size_change_ok = FALSE;
990 type_change_ok = get_elf_backend_data (abfd)->type_change_ok;
991 old_alignment = 0;
992 old_bfd = NULL;
993
994 if (info->hash->creator->flavour == bfd_target_elf_flavour)
995 {
996 Elf_Internal_Versym iver;
997 unsigned int vernum = 0;
998 bfd_boolean skip;
999
1000 if (ever != NULL)
1001 {
1002 _bfd_elf_swap_versym_in (abfd, ever, &iver);
1003 vernum = iver.vs_vers & VERSYM_VERSION;
1004
1005 /* If this is a hidden symbol, or if it is not version
1006 1, we append the version name to the symbol name.
1007 However, we do not modify a non-hidden absolute
1008 symbol, because it might be the version symbol
1009 itself. FIXME: What if it isn't? */
1010 if ((iver.vs_vers & VERSYM_HIDDEN) != 0
1011 || (vernum > 1 && ! bfd_is_abs_section (sec)))
1012 {
1013 const char *verstr;
1014 size_t namelen, verlen, newlen;
1015 char *newname, *p;
1016
1017 if (isym->st_shndx != SHN_UNDEF)
1018 {
1019 if (vernum > elf_tdata (abfd)->dynverdef_hdr.sh_info)
1020 {
1021 (*_bfd_error_handler)
1022 (_("%s: %s: invalid version %u (max %d)"),
1023 bfd_archive_filename (abfd), name, vernum,
1024 elf_tdata (abfd)->dynverdef_hdr.sh_info);
1025 bfd_set_error (bfd_error_bad_value);
1026 goto error_free_vers;
1027 }
1028 else if (vernum > 1)
1029 verstr =
1030 elf_tdata (abfd)->verdef[vernum - 1].vd_nodename;
1031 else
1032 verstr = "";
1033 }
1034 else
1035 {
1036 /* We cannot simply test for the number of
1037 entries in the VERNEED section since the
1038 numbers for the needed versions do not start
1039 at 0. */
1040 Elf_Internal_Verneed *t;
1041
1042 verstr = NULL;
1043 for (t = elf_tdata (abfd)->verref;
1044 t != NULL;
1045 t = t->vn_nextref)
1046 {
1047 Elf_Internal_Vernaux *a;
1048
1049 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
1050 {
1051 if (a->vna_other == vernum)
1052 {
1053 verstr = a->vna_nodename;
1054 break;
1055 }
1056 }
1057 if (a != NULL)
1058 break;
1059 }
1060 if (verstr == NULL)
1061 {
1062 (*_bfd_error_handler)
1063 (_("%s: %s: invalid needed version %d"),
1064 bfd_archive_filename (abfd), name, vernum);
1065 bfd_set_error (bfd_error_bad_value);
1066 goto error_free_vers;
1067 }
1068 }
1069
1070 namelen = strlen (name);
1071 verlen = strlen (verstr);
1072 newlen = namelen + verlen + 2;
1073 if ((iver.vs_vers & VERSYM_HIDDEN) == 0
1074 && isym->st_shndx != SHN_UNDEF)
1075 ++newlen;
1076
1077 newname = (char *) bfd_alloc (abfd, (bfd_size_type) newlen);
1078 if (newname == NULL)
1079 goto error_free_vers;
1080 memcpy (newname, name, namelen);
1081 p = newname + namelen;
1082 *p++ = ELF_VER_CHR;
1083 /* If this is a defined non-hidden version symbol,
1084 we add another @ to the name. This indicates the
1085 default version of the symbol. */
1086 if ((iver.vs_vers & VERSYM_HIDDEN) == 0
1087 && isym->st_shndx != SHN_UNDEF)
1088 *p++ = ELF_VER_CHR;
1089 memcpy (p, verstr, verlen + 1);
1090
1091 name = newname;
1092 }
1093 }
1094
1095 if (!_bfd_elf_merge_symbol (abfd, info, name, isym, &sec, &value,
1096 sym_hash, &skip, &override,
1097 &type_change_ok, &size_change_ok,
1098 dt_needed))
1099 goto error_free_vers;
1100
1101 if (skip)
1102 continue;
1103
1104 if (override)
1105 definition = FALSE;
1106
1107 h = *sym_hash;
1108 while (h->root.type == bfd_link_hash_indirect
1109 || h->root.type == bfd_link_hash_warning)
1110 h = (struct elf_link_hash_entry *) h->root.u.i.link;
1111
1112 /* Remember the old alignment if this is a common symbol, so
1113 that we don't reduce the alignment later on. We can't
1114 check later, because _bfd_generic_link_add_one_symbol
1115 will set a default for the alignment which we want to
1116 override. We also remember the old bfd where the existing
1117 definition comes from. */
1118 switch (h->root.type)
1119 {
1120 default:
1121 break;
1122
1123 case bfd_link_hash_defined:
1124 case bfd_link_hash_defweak:
1125 old_bfd = h->root.u.def.section->owner;
1126 break;
1127
1128 case bfd_link_hash_common:
1129 old_bfd = h->root.u.c.p->section->owner;
1130 old_alignment = h->root.u.c.p->alignment_power;
1131 break;
1132 }
1133
1134 if (elf_tdata (abfd)->verdef != NULL
1135 && ! override
1136 && vernum > 1
1137 && definition)
1138 h->verinfo.verdef = &elf_tdata (abfd)->verdef[vernum - 1];
1139 }
1140
1141 if (! (_bfd_generic_link_add_one_symbol
1142 (info, abfd, name, flags, sec, value, (const char *) NULL,
1143 FALSE, collect, (struct bfd_link_hash_entry **) sym_hash)))
1144 goto error_free_vers;
1145
1146 h = *sym_hash;
1147 while (h->root.type == bfd_link_hash_indirect
1148 || h->root.type == bfd_link_hash_warning)
1149 h = (struct elf_link_hash_entry *) h->root.u.i.link;
1150 *sym_hash = h;
1151
1152 new_weakdef = FALSE;
1153 if (dynamic
1154 && definition
1155 && (flags & BSF_WEAK) != 0
1156 && ELF_ST_TYPE (isym->st_info) != STT_FUNC
1157 && info->hash->creator->flavour == bfd_target_elf_flavour
1158 && h->weakdef == NULL)
1159 {
1160 /* Keep a list of all weak defined non function symbols from
1161 a dynamic object, using the weakdef field. Later in this
1162 function we will set the weakdef field to the correct
1163 value. We only put non-function symbols from dynamic
1164 objects on this list, because that happens to be the only
1165 time we need to know the normal symbol corresponding to a
1166 weak symbol, and the information is time consuming to
1167 figure out. If the weakdef field is not already NULL,
1168 then this symbol was already defined by some previous
1169 dynamic object, and we will be using that previous
1170 definition anyhow. */
1171
1172 h->weakdef = weaks;
1173 weaks = h;
1174 new_weakdef = TRUE;
1175 }
1176
1177 /* Set the alignment of a common symbol. */
1178 if (isym->st_shndx == SHN_COMMON
1179 && h->root.type == bfd_link_hash_common)
1180 {
1181 unsigned int align;
1182
1183 align = bfd_log2 (isym->st_value);
1184 if (align > old_alignment
1185 /* Permit an alignment power of zero if an alignment of one
1186 is specified and no other alignments have been specified. */
1187 || (isym->st_value == 1 && old_alignment == 0))
1188 h->root.u.c.p->alignment_power = align;
1189 else
1190 h->root.u.c.p->alignment_power = old_alignment;
1191 }
1192
1193 if (info->hash->creator->flavour == bfd_target_elf_flavour)
1194 {
1195 int old_flags;
1196 bfd_boolean dynsym;
1197 int new_flag;
1198
1199 /* Check the alignment when a common symbol is involved. This
1200 can change when a common symbol is overriden by a normal
1201 definition or a common symbol is ignored due to the old
1202 normal definition. We need to make sure the maximum
1203 alignment is maintained. */
1204 if ((old_alignment || isym->st_shndx == SHN_COMMON)
1205 && h->root.type != bfd_link_hash_common)
1206 {
1207 unsigned int common_align;
1208 unsigned int normal_align;
1209 unsigned int symbol_align;
1210 bfd *normal_bfd;
1211 bfd *common_bfd;
1212
1213 symbol_align = ffs (h->root.u.def.value) - 1;
1214 if ((h->root.u.def.section->owner->flags & DYNAMIC) == 0)
1215 {
1216 normal_align = h->root.u.def.section->alignment_power;
1217 if (normal_align > symbol_align)
1218 normal_align = symbol_align;
1219 }
1220 else
1221 normal_align = symbol_align;
1222
1223 if (old_alignment)
1224 {
1225 common_align = old_alignment;
1226 common_bfd = old_bfd;
1227 normal_bfd = abfd;
1228 }
1229 else
1230 {
1231 common_align = bfd_log2 (isym->st_value);
1232 common_bfd = abfd;
1233 normal_bfd = old_bfd;
1234 }
1235
1236 if (normal_align < common_align)
1237 (*_bfd_error_handler)
1238 (_("Warning: alignment %u of symbol `%s' in %s is smaller than %u in %s"),
1239 1 << normal_align,
1240 name,
1241 bfd_archive_filename (normal_bfd),
1242 1 << common_align,
1243 bfd_archive_filename (common_bfd));
1244 }
1245
1246 /* Remember the symbol size and type. */
1247 if (isym->st_size != 0
1248 && (definition || h->size == 0))
1249 {
1250 if (h->size != 0 && h->size != isym->st_size && ! size_change_ok)
1251 (*_bfd_error_handler)
1252 (_("Warning: size of symbol `%s' changed from %lu in %s to %lu in %s"),
1253 name, (unsigned long) h->size,
1254 bfd_archive_filename (old_bfd),
1255 (unsigned long) isym->st_size,
1256 bfd_archive_filename (abfd));
1257
1258 h->size = isym->st_size;
1259 }
1260
1261 /* If this is a common symbol, then we always want H->SIZE
1262 to be the size of the common symbol. The code just above
1263 won't fix the size if a common symbol becomes larger. We
1264 don't warn about a size change here, because that is
1265 covered by --warn-common. */
1266 if (h->root.type == bfd_link_hash_common)
1267 h->size = h->root.u.c.size;
1268
1269 if (ELF_ST_TYPE (isym->st_info) != STT_NOTYPE
1270 && (definition || h->type == STT_NOTYPE))
1271 {
1272 if (h->type != STT_NOTYPE
1273 && h->type != ELF_ST_TYPE (isym->st_info)
1274 && ! type_change_ok)
1275 (*_bfd_error_handler)
1276 (_("Warning: type of symbol `%s' changed from %d to %d in %s"),
1277 name, h->type, ELF_ST_TYPE (isym->st_info),
1278 bfd_archive_filename (abfd));
1279
1280 h->type = ELF_ST_TYPE (isym->st_info);
1281 }
1282
1283 /* If st_other has a processor-specific meaning, specific
1284 code might be needed here. We never merge the visibility
1285 attribute with the one from a dynamic object. */
1286 if (isym->st_other != 0 && !dynamic)
1287 {
1288 unsigned char hvis, symvis, other, nvis;
1289
1290 /* Take the balance of OTHER from the definition. */
1291 other = (definition ? isym->st_other : h->other);
1292 other &= ~ ELF_ST_VISIBILITY (-1);
1293
1294 /* Combine visibilities, using the most constraining one. */
1295 hvis = ELF_ST_VISIBILITY (h->other);
1296 symvis = ELF_ST_VISIBILITY (isym->st_other);
1297 if (! hvis)
1298 nvis = symvis;
1299 else if (! symvis)
1300 nvis = hvis;
1301 else
1302 nvis = hvis < symvis ? hvis : symvis;
1303
1304 h->other = other | nvis;
1305 }
1306
1307 /* Set a flag in the hash table entry indicating the type of
1308 reference or definition we just found. Keep a count of
1309 the number of dynamic symbols we find. A dynamic symbol
1310 is one which is referenced or defined by both a regular
1311 object and a shared object. */
1312 old_flags = h->elf_link_hash_flags;
1313 dynsym = FALSE;
1314 if (! dynamic)
1315 {
1316 if (! definition)
1317 {
1318 new_flag = ELF_LINK_HASH_REF_REGULAR;
1319 if (bind != STB_WEAK)
1320 new_flag |= ELF_LINK_HASH_REF_REGULAR_NONWEAK;
1321 }
1322 else
1323 new_flag = ELF_LINK_HASH_DEF_REGULAR;
1324 if (! info->executable
1325 || (old_flags & (ELF_LINK_HASH_DEF_DYNAMIC
1326 | ELF_LINK_HASH_REF_DYNAMIC)) != 0)
1327 dynsym = TRUE;
1328 }
1329 else
1330 {
1331 if (! definition)
1332 new_flag = ELF_LINK_HASH_REF_DYNAMIC;
1333 else
1334 new_flag = ELF_LINK_HASH_DEF_DYNAMIC;
1335 if ((old_flags & (ELF_LINK_HASH_DEF_REGULAR
1336 | ELF_LINK_HASH_REF_REGULAR)) != 0
1337 || (h->weakdef != NULL
1338 && ! new_weakdef
1339 && h->weakdef->dynindx != -1))
1340 dynsym = TRUE;
1341 }
1342
1343 h->elf_link_hash_flags |= new_flag;
1344
1345 /* Check to see if we need to add an indirect symbol for
1346 the default name. */
1347 if (definition || h->root.type == bfd_link_hash_common)
1348 if (!_bfd_elf_add_default_symbol (abfd, info, h, name, isym,
1349 &sec, &value, &dynsym,
1350 override, dt_needed))
1351 goto error_free_vers;
1352
1353 if (definition && !dynamic)
1354 {
1355 char *p = strchr (name, ELF_VER_CHR);
1356 if (p != NULL && p[1] != ELF_VER_CHR)
1357 {
1358 /* Queue non-default versions so that .symver x, x@FOO
1359 aliases can be checked. */
1360 if (! nondeflt_vers)
1361 {
1362 amt = (isymend - isym + 1)
1363 * sizeof (struct elf_link_hash_entry *);
1364 nondeflt_vers = bfd_malloc (amt);
1365 }
1366 nondeflt_vers [nondeflt_vers_cnt++] = h;
1367 }
1368 }
1369
1370 if (dynsym && h->dynindx == -1)
1371 {
1372 if (! _bfd_elf_link_record_dynamic_symbol (info, h))
1373 goto error_free_vers;
1374 if (h->weakdef != NULL
1375 && ! new_weakdef
1376 && h->weakdef->dynindx == -1)
1377 {
1378 if (! _bfd_elf_link_record_dynamic_symbol (info, h->weakdef))
1379 goto error_free_vers;
1380 }
1381 }
1382 else if (dynsym && h->dynindx != -1)
1383 /* If the symbol already has a dynamic index, but
1384 visibility says it should not be visible, turn it into
1385 a local symbol. */
1386 switch (ELF_ST_VISIBILITY (h->other))
1387 {
1388 case STV_INTERNAL:
1389 case STV_HIDDEN:
1390 (*bed->elf_backend_hide_symbol) (info, h, TRUE);
1391 break;
1392 }
1393
1394 if (dt_needed && definition
1395 && (h->elf_link_hash_flags
1396 & ELF_LINK_HASH_REF_REGULAR) != 0)
1397 {
1398 bfd_size_type oldsize;
1399 bfd_size_type strindex;
1400
1401 if (! is_elf_hash_table (info))
1402 goto error_free_vers;
1403
1404 /* The symbol from a DT_NEEDED object is referenced from
1405 the regular object to create a dynamic executable. We
1406 have to make sure there is a DT_NEEDED entry for it. */
1407
1408 dt_needed = FALSE;
1409 oldsize = _bfd_elf_strtab_size (hash_table->dynstr);
1410 strindex = _bfd_elf_strtab_add (hash_table->dynstr,
1411 elf_dt_soname (abfd), FALSE);
1412 if (strindex == (bfd_size_type) -1)
1413 goto error_free_vers;
1414
1415 if (oldsize == _bfd_elf_strtab_size (hash_table->dynstr))
1416 {
1417 asection *sdyn;
1418 Elf_External_Dyn *dyncon, *dynconend;
1419
1420 sdyn = bfd_get_section_by_name (hash_table->dynobj,
1421 ".dynamic");
1422 BFD_ASSERT (sdyn != NULL);
1423
1424 dyncon = (Elf_External_Dyn *) sdyn->contents;
1425 dynconend = (Elf_External_Dyn *) (sdyn->contents +
1426 sdyn->_raw_size);
1427 for (; dyncon < dynconend; dyncon++)
1428 {
1429 Elf_Internal_Dyn dyn;
1430
1431 elf_swap_dyn_in (hash_table->dynobj,
1432 dyncon, &dyn);
1433 BFD_ASSERT (dyn.d_tag != DT_NEEDED ||
1434 dyn.d_un.d_val != strindex);
1435 }
1436 }
1437
1438 if (! elf_add_dynamic_entry (info, (bfd_vma) DT_NEEDED, strindex))
1439 goto error_free_vers;
1440 }
1441 }
1442 }
1443
1444 /* Now that all the symbols from this input file are created, handle
1445 .symver foo, foo@BAR such that any relocs against foo become foo@BAR. */
1446 if (nondeflt_vers != NULL)
1447 {
1448 bfd_size_type cnt, symidx;
1449
1450 for (cnt = 0; cnt < nondeflt_vers_cnt; ++cnt)
1451 {
1452 struct elf_link_hash_entry *h = nondeflt_vers[cnt], *hi;
1453 char *shortname, *p;
1454
1455 p = strchr (h->root.root.string, ELF_VER_CHR);
1456 if (p == NULL
1457 || (h->root.type != bfd_link_hash_defined
1458 && h->root.type != bfd_link_hash_defweak))
1459 continue;
1460
1461 amt = p - h->root.root.string;
1462 shortname = bfd_malloc (amt + 1);
1463 memcpy (shortname, h->root.root.string, amt);
1464 shortname[amt] = '\0';
1465
1466 hi = (struct elf_link_hash_entry *)
1467 bfd_link_hash_lookup (info->hash, shortname,
1468 FALSE, FALSE, FALSE);
1469 if (hi != NULL
1470 && hi->root.type == h->root.type
1471 && hi->root.u.def.value == h->root.u.def.value
1472 && hi->root.u.def.section == h->root.u.def.section)
1473 {
1474 (*bed->elf_backend_hide_symbol) (info, hi, TRUE);
1475 hi->root.type = bfd_link_hash_indirect;
1476 hi->root.u.i.link = (struct bfd_link_hash_entry *) h;
1477 (*bed->elf_backend_copy_indirect_symbol) (bed, h, hi);
1478 sym_hash = elf_sym_hashes (abfd);
1479 if (sym_hash)
1480 for (symidx = 0; symidx < extsymcount; ++symidx)
1481 if (sym_hash[symidx] == hi)
1482 {
1483 sym_hash[symidx] = h;
1484 break;
1485 }
1486 }
1487 free (shortname);
1488 }
1489 free (nondeflt_vers);
1490 nondeflt_vers = NULL;
1491 }
1492
1493 if (extversym != NULL)
1494 {
1495 free (extversym);
1496 extversym = NULL;
1497 }
1498
1499 if (isymbuf != NULL)
1500 free (isymbuf);
1501 isymbuf = NULL;
1502
1503 /* Now set the weakdefs field correctly for all the weak defined
1504 symbols we found. The only way to do this is to search all the
1505 symbols. Since we only need the information for non functions in
1506 dynamic objects, that's the only time we actually put anything on
1507 the list WEAKS. We need this information so that if a regular
1508 object refers to a symbol defined weakly in a dynamic object, the
1509 real symbol in the dynamic object is also put in the dynamic
1510 symbols; we also must arrange for both symbols to point to the
1511 same memory location. We could handle the general case of symbol
1512 aliasing, but a general symbol alias can only be generated in
1513 assembler code, handling it correctly would be very time
1514 consuming, and other ELF linkers don't handle general aliasing
1515 either. */
1516 while (weaks != NULL)
1517 {
1518 struct elf_link_hash_entry *hlook;
1519 asection *slook;
1520 bfd_vma vlook;
1521 struct elf_link_hash_entry **hpp;
1522 struct elf_link_hash_entry **hppend;
1523
1524 hlook = weaks;
1525 weaks = hlook->weakdef;
1526 hlook->weakdef = NULL;
1527
1528 BFD_ASSERT (hlook->root.type == bfd_link_hash_defined
1529 || hlook->root.type == bfd_link_hash_defweak
1530 || hlook->root.type == bfd_link_hash_common
1531 || hlook->root.type == bfd_link_hash_indirect);
1532 slook = hlook->root.u.def.section;
1533 vlook = hlook->root.u.def.value;
1534
1535 hpp = elf_sym_hashes (abfd);
1536 hppend = hpp + extsymcount;
1537 for (; hpp < hppend; hpp++)
1538 {
1539 struct elf_link_hash_entry *h;
1540
1541 h = *hpp;
1542 if (h != NULL && h != hlook
1543 && h->root.type == bfd_link_hash_defined
1544 && h->root.u.def.section == slook
1545 && h->root.u.def.value == vlook)
1546 {
1547 hlook->weakdef = h;
1548
1549 /* If the weak definition is in the list of dynamic
1550 symbols, make sure the real definition is put there
1551 as well. */
1552 if (hlook->dynindx != -1
1553 && h->dynindx == -1)
1554 {
1555 if (! _bfd_elf_link_record_dynamic_symbol (info, h))
1556 goto error_return;
1557 }
1558
1559 /* If the real definition is in the list of dynamic
1560 symbols, make sure the weak definition is put there
1561 as well. If we don't do this, then the dynamic
1562 loader might not merge the entries for the real
1563 definition and the weak definition. */
1564 if (h->dynindx != -1
1565 && hlook->dynindx == -1)
1566 {
1567 if (! _bfd_elf_link_record_dynamic_symbol (info, hlook))
1568 goto error_return;
1569 }
1570 break;
1571 }
1572 }
1573 }
1574
1575 /* If this object is the same format as the output object, and it is
1576 not a shared library, then let the backend look through the
1577 relocs.
1578
1579 This is required to build global offset table entries and to
1580 arrange for dynamic relocs. It is not required for the
1581 particular common case of linking non PIC code, even when linking
1582 against shared libraries, but unfortunately there is no way of
1583 knowing whether an object file has been compiled PIC or not.
1584 Looking through the relocs is not particularly time consuming.
1585 The problem is that we must either (1) keep the relocs in memory,
1586 which causes the linker to require additional runtime memory or
1587 (2) read the relocs twice from the input file, which wastes time.
1588 This would be a good case for using mmap.
1589
1590 I have no idea how to handle linking PIC code into a file of a
1591 different format. It probably can't be done. */
1592 check_relocs = get_elf_backend_data (abfd)->check_relocs;
1593 if (! dynamic
1594 && abfd->xvec == info->hash->creator
1595 && check_relocs != NULL)
1596 {
1597 asection *o;
1598
1599 for (o = abfd->sections; o != NULL; o = o->next)
1600 {
1601 Elf_Internal_Rela *internal_relocs;
1602 bfd_boolean ok;
1603
1604 if ((o->flags & SEC_RELOC) == 0
1605 || o->reloc_count == 0
1606 || ((info->strip == strip_all || info->strip == strip_debugger)
1607 && (o->flags & SEC_DEBUGGING) != 0)
1608 || bfd_is_abs_section (o->output_section))
1609 continue;
1610
1611 internal_relocs
1612 = _bfd_elf_link_read_relocs (abfd, o, (PTR) NULL,
1613 (Elf_Internal_Rela *) NULL,
1614 info->keep_memory);
1615 if (internal_relocs == NULL)
1616 goto error_return;
1617
1618 ok = (*check_relocs) (abfd, info, o, internal_relocs);
1619
1620 if (elf_section_data (o)->relocs != internal_relocs)
1621 free (internal_relocs);
1622
1623 if (! ok)
1624 goto error_return;
1625 }
1626 }
1627
1628 /* If this is a non-traditional link, try to optimize the handling
1629 of the .stab/.stabstr sections. */
1630 if (! dynamic
1631 && ! info->traditional_format
1632 && info->hash->creator->flavour == bfd_target_elf_flavour
1633 && is_elf_hash_table (info)
1634 && (info->strip != strip_all && info->strip != strip_debugger))
1635 {
1636 asection *stab, *stabstr;
1637
1638 stab = bfd_get_section_by_name (abfd, ".stab");
1639 if (stab != NULL
1640 && (stab->flags & SEC_MERGE) == 0
1641 && !bfd_is_abs_section (stab->output_section))
1642 {
1643 stabstr = bfd_get_section_by_name (abfd, ".stabstr");
1644
1645 if (stabstr != NULL)
1646 {
1647 struct bfd_elf_section_data *secdata;
1648
1649 secdata = elf_section_data (stab);
1650 if (! _bfd_link_section_stabs (abfd,
1651 & hash_table->stab_info,
1652 stab, stabstr,
1653 &secdata->sec_info))
1654 goto error_return;
1655 if (secdata->sec_info)
1656 stab->sec_info_type = ELF_INFO_TYPE_STABS;
1657 }
1658 }
1659 }
1660
1661 if (! info->relocateable && ! dynamic
1662 && is_elf_hash_table (info))
1663 {
1664 asection *s;
1665
1666 for (s = abfd->sections; s != NULL; s = s->next)
1667 if ((s->flags & SEC_MERGE) != 0
1668 && !bfd_is_abs_section (s->output_section))
1669 {
1670 struct bfd_elf_section_data *secdata;
1671
1672 secdata = elf_section_data (s);
1673 if (! _bfd_merge_section (abfd,
1674 & hash_table->merge_info,
1675 s, &secdata->sec_info))
1676 goto error_return;
1677 else if (secdata->sec_info)
1678 s->sec_info_type = ELF_INFO_TYPE_MERGE;
1679 }
1680 }
1681
1682 if (is_elf_hash_table (info))
1683 {
1684 /* Add this bfd to the loaded list. */
1685 struct elf_link_loaded_list *n;
1686
1687 n = ((struct elf_link_loaded_list *)
1688 bfd_alloc (abfd, sizeof (struct elf_link_loaded_list)));
1689 if (n == NULL)
1690 goto error_return;
1691 n->abfd = abfd;
1692 n->next = hash_table->loaded;
1693 hash_table->loaded = n;
1694 }
1695
1696 return TRUE;
1697
1698 error_free_vers:
1699 if (nondeflt_vers != NULL)
1700 free (nondeflt_vers);
1701 if (extversym != NULL)
1702 free (extversym);
1703 error_free_sym:
1704 if (isymbuf != NULL)
1705 free (isymbuf);
1706 error_return:
1707 return FALSE;
1708 }
1709
1710 /* Add an entry to the .dynamic table. */
1711
1712 bfd_boolean
1713 elf_add_dynamic_entry (info, tag, val)
1714 struct bfd_link_info *info;
1715 bfd_vma tag;
1716 bfd_vma val;
1717 {
1718 Elf_Internal_Dyn dyn;
1719 bfd *dynobj;
1720 asection *s;
1721 bfd_size_type newsize;
1722 bfd_byte *newcontents;
1723
1724 if (! is_elf_hash_table (info))
1725 return FALSE;
1726
1727 dynobj = elf_hash_table (info)->dynobj;
1728
1729 s = bfd_get_section_by_name (dynobj, ".dynamic");
1730 BFD_ASSERT (s != NULL);
1731
1732 newsize = s->_raw_size + sizeof (Elf_External_Dyn);
1733 newcontents = (bfd_byte *) bfd_realloc (s->contents, newsize);
1734 if (newcontents == NULL)
1735 return FALSE;
1736
1737 dyn.d_tag = tag;
1738 dyn.d_un.d_val = val;
1739 elf_swap_dyn_out (dynobj, &dyn,
1740 (Elf_External_Dyn *) (newcontents + s->_raw_size));
1741
1742 s->_raw_size = newsize;
1743 s->contents = newcontents;
1744
1745 return TRUE;
1746 }
1747 \f
1748 /* Array used to determine the number of hash table buckets to use
1749 based on the number of symbols there are. If there are fewer than
1750 3 symbols we use 1 bucket, fewer than 17 symbols we use 3 buckets,
1751 fewer than 37 we use 17 buckets, and so forth. We never use more
1752 than 32771 buckets. */
1753
1754 static const size_t elf_buckets[] =
1755 {
1756 1, 3, 17, 37, 67, 97, 131, 197, 263, 521, 1031, 2053, 4099, 8209,
1757 16411, 32771, 0
1758 };
1759
1760 /* Compute bucket count for hashing table. We do not use a static set
1761 of possible tables sizes anymore. Instead we determine for all
1762 possible reasonable sizes of the table the outcome (i.e., the
1763 number of collisions etc) and choose the best solution. The
1764 weighting functions are not too simple to allow the table to grow
1765 without bounds. Instead one of the weighting factors is the size.
1766 Therefore the result is always a good payoff between few collisions
1767 (= short chain lengths) and table size. */
1768 static size_t
1769 compute_bucket_count (info)
1770 struct bfd_link_info *info;
1771 {
1772 size_t dynsymcount = elf_hash_table (info)->dynsymcount;
1773 size_t best_size = 0;
1774 unsigned long int *hashcodes;
1775 unsigned long int *hashcodesp;
1776 unsigned long int i;
1777 bfd_size_type amt;
1778
1779 /* Compute the hash values for all exported symbols. At the same
1780 time store the values in an array so that we could use them for
1781 optimizations. */
1782 amt = dynsymcount;
1783 amt *= sizeof (unsigned long int);
1784 hashcodes = (unsigned long int *) bfd_malloc (amt);
1785 if (hashcodes == NULL)
1786 return 0;
1787 hashcodesp = hashcodes;
1788
1789 /* Put all hash values in HASHCODES. */
1790 elf_link_hash_traverse (elf_hash_table (info),
1791 elf_collect_hash_codes, &hashcodesp);
1792
1793 /* We have a problem here. The following code to optimize the table
1794 size requires an integer type with more the 32 bits. If
1795 BFD_HOST_U_64_BIT is set we know about such a type. */
1796 #ifdef BFD_HOST_U_64_BIT
1797 if (info->optimize)
1798 {
1799 unsigned long int nsyms = hashcodesp - hashcodes;
1800 size_t minsize;
1801 size_t maxsize;
1802 BFD_HOST_U_64_BIT best_chlen = ~((BFD_HOST_U_64_BIT) 0);
1803 unsigned long int *counts ;
1804
1805 /* Possible optimization parameters: if we have NSYMS symbols we say
1806 that the hashing table must at least have NSYMS/4 and at most
1807 2*NSYMS buckets. */
1808 minsize = nsyms / 4;
1809 if (minsize == 0)
1810 minsize = 1;
1811 best_size = maxsize = nsyms * 2;
1812
1813 /* Create array where we count the collisions in. We must use bfd_malloc
1814 since the size could be large. */
1815 amt = maxsize;
1816 amt *= sizeof (unsigned long int);
1817 counts = (unsigned long int *) bfd_malloc (amt);
1818 if (counts == NULL)
1819 {
1820 free (hashcodes);
1821 return 0;
1822 }
1823
1824 /* Compute the "optimal" size for the hash table. The criteria is a
1825 minimal chain length. The minor criteria is (of course) the size
1826 of the table. */
1827 for (i = minsize; i < maxsize; ++i)
1828 {
1829 /* Walk through the array of hashcodes and count the collisions. */
1830 BFD_HOST_U_64_BIT max;
1831 unsigned long int j;
1832 unsigned long int fact;
1833
1834 memset (counts, '\0', i * sizeof (unsigned long int));
1835
1836 /* Determine how often each hash bucket is used. */
1837 for (j = 0; j < nsyms; ++j)
1838 ++counts[hashcodes[j] % i];
1839
1840 /* For the weight function we need some information about the
1841 pagesize on the target. This is information need not be 100%
1842 accurate. Since this information is not available (so far) we
1843 define it here to a reasonable default value. If it is crucial
1844 to have a better value some day simply define this value. */
1845 # ifndef BFD_TARGET_PAGESIZE
1846 # define BFD_TARGET_PAGESIZE (4096)
1847 # endif
1848
1849 /* We in any case need 2 + NSYMS entries for the size values and
1850 the chains. */
1851 max = (2 + nsyms) * (ARCH_SIZE / 8);
1852
1853 # if 1
1854 /* Variant 1: optimize for short chains. We add the squares
1855 of all the chain lengths (which favous many small chain
1856 over a few long chains). */
1857 for (j = 0; j < i; ++j)
1858 max += counts[j] * counts[j];
1859
1860 /* This adds penalties for the overall size of the table. */
1861 fact = i / (BFD_TARGET_PAGESIZE / (ARCH_SIZE / 8)) + 1;
1862 max *= fact * fact;
1863 # else
1864 /* Variant 2: Optimize a lot more for small table. Here we
1865 also add squares of the size but we also add penalties for
1866 empty slots (the +1 term). */
1867 for (j = 0; j < i; ++j)
1868 max += (1 + counts[j]) * (1 + counts[j]);
1869
1870 /* The overall size of the table is considered, but not as
1871 strong as in variant 1, where it is squared. */
1872 fact = i / (BFD_TARGET_PAGESIZE / (ARCH_SIZE / 8)) + 1;
1873 max *= fact;
1874 # endif
1875
1876 /* Compare with current best results. */
1877 if (max < best_chlen)
1878 {
1879 best_chlen = max;
1880 best_size = i;
1881 }
1882 }
1883
1884 free (counts);
1885 }
1886 else
1887 #endif /* defined (BFD_HOST_U_64_BIT) */
1888 {
1889 /* This is the fallback solution if no 64bit type is available or if we
1890 are not supposed to spend much time on optimizations. We select the
1891 bucket count using a fixed set of numbers. */
1892 for (i = 0; elf_buckets[i] != 0; i++)
1893 {
1894 best_size = elf_buckets[i];
1895 if (dynsymcount < elf_buckets[i + 1])
1896 break;
1897 }
1898 }
1899
1900 /* Free the arrays we needed. */
1901 free (hashcodes);
1902
1903 return best_size;
1904 }
1905
1906 /* Set up the sizes and contents of the ELF dynamic sections. This is
1907 called by the ELF linker emulation before_allocation routine. We
1908 must set the sizes of the sections before the linker sets the
1909 addresses of the various sections. */
1910
1911 bfd_boolean
1912 NAME(bfd_elf,size_dynamic_sections) (output_bfd, soname, rpath,
1913 filter_shlib,
1914 auxiliary_filters, info, sinterpptr,
1915 verdefs)
1916 bfd *output_bfd;
1917 const char *soname;
1918 const char *rpath;
1919 const char *filter_shlib;
1920 const char * const *auxiliary_filters;
1921 struct bfd_link_info *info;
1922 asection **sinterpptr;
1923 struct bfd_elf_version_tree *verdefs;
1924 {
1925 bfd_size_type soname_indx;
1926 bfd *dynobj;
1927 struct elf_backend_data *bed;
1928 struct elf_assign_sym_version_info asvinfo;
1929
1930 *sinterpptr = NULL;
1931
1932 soname_indx = (bfd_size_type) -1;
1933
1934 if (info->hash->creator->flavour != bfd_target_elf_flavour)
1935 return TRUE;
1936
1937 if (! is_elf_hash_table (info))
1938 return TRUE;
1939
1940 /* Any syms created from now on start with -1 in
1941 got.refcount/offset and plt.refcount/offset. */
1942 elf_hash_table (info)->init_refcount = elf_hash_table (info)->init_offset;
1943
1944 /* The backend may have to create some sections regardless of whether
1945 we're dynamic or not. */
1946 bed = get_elf_backend_data (output_bfd);
1947 if (bed->elf_backend_always_size_sections
1948 && ! (*bed->elf_backend_always_size_sections) (output_bfd, info))
1949 return FALSE;
1950
1951 dynobj = elf_hash_table (info)->dynobj;
1952
1953 /* If there were no dynamic objects in the link, there is nothing to
1954 do here. */
1955 if (dynobj == NULL)
1956 return TRUE;
1957
1958 if (! _bfd_elf_maybe_strip_eh_frame_hdr (info))
1959 return FALSE;
1960
1961 if (elf_hash_table (info)->dynamic_sections_created)
1962 {
1963 struct elf_info_failed eif;
1964 struct elf_link_hash_entry *h;
1965 asection *dynstr;
1966 struct bfd_elf_version_tree *t;
1967 struct bfd_elf_version_expr *d;
1968 bfd_boolean all_defined;
1969
1970 *sinterpptr = bfd_get_section_by_name (dynobj, ".interp");
1971 BFD_ASSERT (*sinterpptr != NULL || info->shared);
1972
1973 if (soname != NULL)
1974 {
1975 soname_indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
1976 soname, TRUE);
1977 if (soname_indx == (bfd_size_type) -1
1978 || ! elf_add_dynamic_entry (info, (bfd_vma) DT_SONAME,
1979 soname_indx))
1980 return FALSE;
1981 }
1982
1983 if (info->symbolic)
1984 {
1985 if (! elf_add_dynamic_entry (info, (bfd_vma) DT_SYMBOLIC,
1986 (bfd_vma) 0))
1987 return FALSE;
1988 info->flags |= DF_SYMBOLIC;
1989 }
1990
1991 if (rpath != NULL)
1992 {
1993 bfd_size_type indx;
1994
1995 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr, rpath,
1996 TRUE);
1997 if (info->new_dtags)
1998 _bfd_elf_strtab_addref (elf_hash_table (info)->dynstr, indx);
1999 if (indx == (bfd_size_type) -1
2000 || ! elf_add_dynamic_entry (info, (bfd_vma) DT_RPATH, indx)
2001 || (info->new_dtags
2002 && ! elf_add_dynamic_entry (info, (bfd_vma) DT_RUNPATH,
2003 indx)))
2004 return FALSE;
2005 }
2006
2007 if (filter_shlib != NULL)
2008 {
2009 bfd_size_type indx;
2010
2011 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
2012 filter_shlib, TRUE);
2013 if (indx == (bfd_size_type) -1
2014 || ! elf_add_dynamic_entry (info, (bfd_vma) DT_FILTER, indx))
2015 return FALSE;
2016 }
2017
2018 if (auxiliary_filters != NULL)
2019 {
2020 const char * const *p;
2021
2022 for (p = auxiliary_filters; *p != NULL; p++)
2023 {
2024 bfd_size_type indx;
2025
2026 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
2027 *p, TRUE);
2028 if (indx == (bfd_size_type) -1
2029 || ! elf_add_dynamic_entry (info, (bfd_vma) DT_AUXILIARY,
2030 indx))
2031 return FALSE;
2032 }
2033 }
2034
2035 eif.info = info;
2036 eif.verdefs = verdefs;
2037 eif.failed = FALSE;
2038
2039 /* If we are supposed to export all symbols into the dynamic symbol
2040 table (this is not the normal case), then do so. */
2041 if (info->export_dynamic)
2042 {
2043 elf_link_hash_traverse (elf_hash_table (info),
2044 _bfd_elf_export_symbol,
2045 (PTR) &eif);
2046 if (eif.failed)
2047 return FALSE;
2048 }
2049
2050 /* Make all global versions with definiton. */
2051 for (t = verdefs; t != NULL; t = t->next)
2052 for (d = t->globals; d != NULL; d = d->next)
2053 if (!d->symver && strchr (d->pattern, '*') == NULL)
2054 {
2055 const char *verstr, *name;
2056 size_t namelen, verlen, newlen;
2057 char *newname, *p;
2058 struct elf_link_hash_entry *newh;
2059
2060 name = d->pattern;
2061 namelen = strlen (name);
2062 verstr = t->name;
2063 verlen = strlen (verstr);
2064 newlen = namelen + verlen + 3;
2065
2066 newname = (char *) bfd_malloc ((bfd_size_type) newlen);
2067 if (newname == NULL)
2068 return FALSE;
2069 memcpy (newname, name, namelen);
2070
2071 /* Check the hidden versioned definition. */
2072 p = newname + namelen;
2073 *p++ = ELF_VER_CHR;
2074 memcpy (p, verstr, verlen + 1);
2075 newh = elf_link_hash_lookup (elf_hash_table (info),
2076 newname, FALSE, FALSE,
2077 FALSE);
2078 if (newh == NULL
2079 || (newh->root.type != bfd_link_hash_defined
2080 && newh->root.type != bfd_link_hash_defweak))
2081 {
2082 /* Check the default versioned definition. */
2083 *p++ = ELF_VER_CHR;
2084 memcpy (p, verstr, verlen + 1);
2085 newh = elf_link_hash_lookup (elf_hash_table (info),
2086 newname, FALSE, FALSE,
2087 FALSE);
2088 }
2089 free (newname);
2090
2091 /* Mark this version if there is a definition and it is
2092 not defined in a shared object. */
2093 if (newh != NULL
2094 && ((newh->elf_link_hash_flags
2095 & ELF_LINK_HASH_DEF_DYNAMIC) == 0)
2096 && (newh->root.type == bfd_link_hash_defined
2097 || newh->root.type == bfd_link_hash_defweak))
2098 d->symver = 1;
2099 }
2100
2101 /* Attach all the symbols to their version information. */
2102 asvinfo.output_bfd = output_bfd;
2103 asvinfo.info = info;
2104 asvinfo.verdefs = verdefs;
2105 asvinfo.failed = FALSE;
2106
2107 elf_link_hash_traverse (elf_hash_table (info),
2108 _bfd_elf_link_assign_sym_version,
2109 (PTR) &asvinfo);
2110 if (asvinfo.failed)
2111 return FALSE;
2112
2113 if (!info->allow_undefined_version)
2114 {
2115 /* Check if all global versions have a definiton. */
2116 all_defined = TRUE;
2117 for (t = verdefs; t != NULL; t = t->next)
2118 for (d = t->globals; d != NULL; d = d->next)
2119 if (!d->symver && !d->script
2120 && strchr (d->pattern, '*') == NULL)
2121 {
2122 (*_bfd_error_handler)
2123 (_("%s: undefined version: %s"),
2124 d->pattern, t->name);
2125 all_defined = FALSE;
2126 }
2127
2128 if (!all_defined)
2129 {
2130 bfd_set_error (bfd_error_bad_value);
2131 return FALSE;
2132 }
2133 }
2134
2135 /* Find all symbols which were defined in a dynamic object and make
2136 the backend pick a reasonable value for them. */
2137 elf_link_hash_traverse (elf_hash_table (info),
2138 _bfd_elf_adjust_dynamic_symbol,
2139 (PTR) &eif);
2140 if (eif.failed)
2141 return FALSE;
2142
2143 /* Add some entries to the .dynamic section. We fill in some of the
2144 values later, in elf_bfd_final_link, but we must add the entries
2145 now so that we know the final size of the .dynamic section. */
2146
2147 /* If there are initialization and/or finalization functions to
2148 call then add the corresponding DT_INIT/DT_FINI entries. */
2149 h = (info->init_function
2150 ? elf_link_hash_lookup (elf_hash_table (info),
2151 info->init_function, FALSE,
2152 FALSE, FALSE)
2153 : NULL);
2154 if (h != NULL
2155 && (h->elf_link_hash_flags & (ELF_LINK_HASH_REF_REGULAR
2156 | ELF_LINK_HASH_DEF_REGULAR)) != 0)
2157 {
2158 if (! elf_add_dynamic_entry (info, (bfd_vma) DT_INIT, (bfd_vma) 0))
2159 return FALSE;
2160 }
2161 h = (info->fini_function
2162 ? elf_link_hash_lookup (elf_hash_table (info),
2163 info->fini_function, FALSE,
2164 FALSE, FALSE)
2165 : NULL);
2166 if (h != NULL
2167 && (h->elf_link_hash_flags & (ELF_LINK_HASH_REF_REGULAR
2168 | ELF_LINK_HASH_DEF_REGULAR)) != 0)
2169 {
2170 if (! elf_add_dynamic_entry (info, (bfd_vma) DT_FINI, (bfd_vma) 0))
2171 return FALSE;
2172 }
2173
2174 if (bfd_get_section_by_name (output_bfd, ".preinit_array") != NULL)
2175 {
2176 /* DT_PREINIT_ARRAY is not allowed in shared library. */
2177 if (! info->executable)
2178 {
2179 bfd *sub;
2180 asection *o;
2181
2182 for (sub = info->input_bfds; sub != NULL;
2183 sub = sub->link_next)
2184 for (o = sub->sections; o != NULL; o = o->next)
2185 if (elf_section_data (o)->this_hdr.sh_type
2186 == SHT_PREINIT_ARRAY)
2187 {
2188 (*_bfd_error_handler)
2189 (_("%s: .preinit_array section is not allowed in DSO"),
2190 bfd_archive_filename (sub));
2191 break;
2192 }
2193
2194 bfd_set_error (bfd_error_nonrepresentable_section);
2195 return FALSE;
2196 }
2197
2198 if (!elf_add_dynamic_entry (info, (bfd_vma) DT_PREINIT_ARRAY,
2199 (bfd_vma) 0)
2200 || !elf_add_dynamic_entry (info, (bfd_vma) DT_PREINIT_ARRAYSZ,
2201 (bfd_vma) 0))
2202 return FALSE;
2203 }
2204 if (bfd_get_section_by_name (output_bfd, ".init_array") != NULL)
2205 {
2206 if (!elf_add_dynamic_entry (info, (bfd_vma) DT_INIT_ARRAY,
2207 (bfd_vma) 0)
2208 || !elf_add_dynamic_entry (info, (bfd_vma) DT_INIT_ARRAYSZ,
2209 (bfd_vma) 0))
2210 return FALSE;
2211 }
2212 if (bfd_get_section_by_name (output_bfd, ".fini_array") != NULL)
2213 {
2214 if (!elf_add_dynamic_entry (info, (bfd_vma) DT_FINI_ARRAY,
2215 (bfd_vma) 0)
2216 || !elf_add_dynamic_entry (info, (bfd_vma) DT_FINI_ARRAYSZ,
2217 (bfd_vma) 0))
2218 return FALSE;
2219 }
2220
2221 dynstr = bfd_get_section_by_name (dynobj, ".dynstr");
2222 /* If .dynstr is excluded from the link, we don't want any of
2223 these tags. Strictly, we should be checking each section
2224 individually; This quick check covers for the case where
2225 someone does a /DISCARD/ : { *(*) }. */
2226 if (dynstr != NULL && dynstr->output_section != bfd_abs_section_ptr)
2227 {
2228 bfd_size_type strsize;
2229
2230 strsize = _bfd_elf_strtab_size (elf_hash_table (info)->dynstr);
2231 if (! elf_add_dynamic_entry (info, (bfd_vma) DT_HASH, (bfd_vma) 0)
2232 || ! elf_add_dynamic_entry (info, (bfd_vma) DT_STRTAB, (bfd_vma) 0)
2233 || ! elf_add_dynamic_entry (info, (bfd_vma) DT_SYMTAB, (bfd_vma) 0)
2234 || ! elf_add_dynamic_entry (info, (bfd_vma) DT_STRSZ, strsize)
2235 || ! elf_add_dynamic_entry (info, (bfd_vma) DT_SYMENT,
2236 (bfd_vma) sizeof (Elf_External_Sym)))
2237 return FALSE;
2238 }
2239 }
2240
2241 /* The backend must work out the sizes of all the other dynamic
2242 sections. */
2243 if (bed->elf_backend_size_dynamic_sections
2244 && ! (*bed->elf_backend_size_dynamic_sections) (output_bfd, info))
2245 return FALSE;
2246
2247 if (elf_hash_table (info)->dynamic_sections_created)
2248 {
2249 bfd_size_type dynsymcount;
2250 asection *s;
2251 size_t bucketcount = 0;
2252 size_t hash_entry_size;
2253 unsigned int dtagcount;
2254
2255 /* Set up the version definition section. */
2256 s = bfd_get_section_by_name (dynobj, ".gnu.version_d");
2257 BFD_ASSERT (s != NULL);
2258
2259 /* We may have created additional version definitions if we are
2260 just linking a regular application. */
2261 verdefs = asvinfo.verdefs;
2262
2263 /* Skip anonymous version tag. */
2264 if (verdefs != NULL && verdefs->vernum == 0)
2265 verdefs = verdefs->next;
2266
2267 if (verdefs == NULL)
2268 _bfd_strip_section_from_output (info, s);
2269 else
2270 {
2271 unsigned int cdefs;
2272 bfd_size_type size;
2273 struct bfd_elf_version_tree *t;
2274 bfd_byte *p;
2275 Elf_Internal_Verdef def;
2276 Elf_Internal_Verdaux defaux;
2277
2278 cdefs = 0;
2279 size = 0;
2280
2281 /* Make space for the base version. */
2282 size += sizeof (Elf_External_Verdef);
2283 size += sizeof (Elf_External_Verdaux);
2284 ++cdefs;
2285
2286 for (t = verdefs; t != NULL; t = t->next)
2287 {
2288 struct bfd_elf_version_deps *n;
2289
2290 size += sizeof (Elf_External_Verdef);
2291 size += sizeof (Elf_External_Verdaux);
2292 ++cdefs;
2293
2294 for (n = t->deps; n != NULL; n = n->next)
2295 size += sizeof (Elf_External_Verdaux);
2296 }
2297
2298 s->_raw_size = size;
2299 s->contents = (bfd_byte *) bfd_alloc (output_bfd, s->_raw_size);
2300 if (s->contents == NULL && s->_raw_size != 0)
2301 return FALSE;
2302
2303 /* Fill in the version definition section. */
2304
2305 p = s->contents;
2306
2307 def.vd_version = VER_DEF_CURRENT;
2308 def.vd_flags = VER_FLG_BASE;
2309 def.vd_ndx = 1;
2310 def.vd_cnt = 1;
2311 def.vd_aux = sizeof (Elf_External_Verdef);
2312 def.vd_next = (sizeof (Elf_External_Verdef)
2313 + sizeof (Elf_External_Verdaux));
2314
2315 if (soname_indx != (bfd_size_type) -1)
2316 {
2317 _bfd_elf_strtab_addref (elf_hash_table (info)->dynstr,
2318 soname_indx);
2319 def.vd_hash = bfd_elf_hash (soname);
2320 defaux.vda_name = soname_indx;
2321 }
2322 else
2323 {
2324 const char *name;
2325 bfd_size_type indx;
2326
2327 name = basename (output_bfd->filename);
2328 def.vd_hash = bfd_elf_hash (name);
2329 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
2330 name, FALSE);
2331 if (indx == (bfd_size_type) -1)
2332 return FALSE;
2333 defaux.vda_name = indx;
2334 }
2335 defaux.vda_next = 0;
2336
2337 _bfd_elf_swap_verdef_out (output_bfd, &def,
2338 (Elf_External_Verdef *) p);
2339 p += sizeof (Elf_External_Verdef);
2340 _bfd_elf_swap_verdaux_out (output_bfd, &defaux,
2341 (Elf_External_Verdaux *) p);
2342 p += sizeof (Elf_External_Verdaux);
2343
2344 for (t = verdefs; t != NULL; t = t->next)
2345 {
2346 unsigned int cdeps;
2347 struct bfd_elf_version_deps *n;
2348 struct elf_link_hash_entry *h;
2349 struct bfd_link_hash_entry *bh;
2350
2351 cdeps = 0;
2352 for (n = t->deps; n != NULL; n = n->next)
2353 ++cdeps;
2354
2355 /* Add a symbol representing this version. */
2356 bh = NULL;
2357 if (! (_bfd_generic_link_add_one_symbol
2358 (info, dynobj, t->name, BSF_GLOBAL, bfd_abs_section_ptr,
2359 (bfd_vma) 0, (const char *) NULL, FALSE,
2360 get_elf_backend_data (dynobj)->collect, &bh)))
2361 return FALSE;
2362 h = (struct elf_link_hash_entry *) bh;
2363 h->elf_link_hash_flags &= ~ ELF_LINK_NON_ELF;
2364 h->elf_link_hash_flags |= ELF_LINK_HASH_DEF_REGULAR;
2365 h->type = STT_OBJECT;
2366 h->verinfo.vertree = t;
2367
2368 if (! _bfd_elf_link_record_dynamic_symbol (info, h))
2369 return FALSE;
2370
2371 def.vd_version = VER_DEF_CURRENT;
2372 def.vd_flags = 0;
2373 if (t->globals == NULL && t->locals == NULL && ! t->used)
2374 def.vd_flags |= VER_FLG_WEAK;
2375 def.vd_ndx = t->vernum + 1;
2376 def.vd_cnt = cdeps + 1;
2377 def.vd_hash = bfd_elf_hash (t->name);
2378 def.vd_aux = sizeof (Elf_External_Verdef);
2379 if (t->next != NULL)
2380 def.vd_next = (sizeof (Elf_External_Verdef)
2381 + (cdeps + 1) * sizeof (Elf_External_Verdaux));
2382 else
2383 def.vd_next = 0;
2384
2385 _bfd_elf_swap_verdef_out (output_bfd, &def,
2386 (Elf_External_Verdef *) p);
2387 p += sizeof (Elf_External_Verdef);
2388
2389 defaux.vda_name = h->dynstr_index;
2390 _bfd_elf_strtab_addref (elf_hash_table (info)->dynstr,
2391 h->dynstr_index);
2392 if (t->deps == NULL)
2393 defaux.vda_next = 0;
2394 else
2395 defaux.vda_next = sizeof (Elf_External_Verdaux);
2396 t->name_indx = defaux.vda_name;
2397
2398 _bfd_elf_swap_verdaux_out (output_bfd, &defaux,
2399 (Elf_External_Verdaux *) p);
2400 p += sizeof (Elf_External_Verdaux);
2401
2402 for (n = t->deps; n != NULL; n = n->next)
2403 {
2404 if (n->version_needed == NULL)
2405 {
2406 /* This can happen if there was an error in the
2407 version script. */
2408 defaux.vda_name = 0;
2409 }
2410 else
2411 {
2412 defaux.vda_name = n->version_needed->name_indx;
2413 _bfd_elf_strtab_addref (elf_hash_table (info)->dynstr,
2414 defaux.vda_name);
2415 }
2416 if (n->next == NULL)
2417 defaux.vda_next = 0;
2418 else
2419 defaux.vda_next = sizeof (Elf_External_Verdaux);
2420
2421 _bfd_elf_swap_verdaux_out (output_bfd, &defaux,
2422 (Elf_External_Verdaux *) p);
2423 p += sizeof (Elf_External_Verdaux);
2424 }
2425 }
2426
2427 if (! elf_add_dynamic_entry (info, (bfd_vma) DT_VERDEF, (bfd_vma) 0)
2428 || ! elf_add_dynamic_entry (info, (bfd_vma) DT_VERDEFNUM,
2429 (bfd_vma) cdefs))
2430 return FALSE;
2431
2432 elf_tdata (output_bfd)->cverdefs = cdefs;
2433 }
2434
2435 if ((info->new_dtags && info->flags) || (info->flags & DF_STATIC_TLS))
2436 {
2437 if (! elf_add_dynamic_entry (info, (bfd_vma) DT_FLAGS, info->flags))
2438 return FALSE;
2439 }
2440
2441 if (info->flags_1)
2442 {
2443 if (info->executable)
2444 info->flags_1 &= ~ (DF_1_INITFIRST
2445 | DF_1_NODELETE
2446 | DF_1_NOOPEN);
2447 if (! elf_add_dynamic_entry (info, (bfd_vma) DT_FLAGS_1,
2448 info->flags_1))
2449 return FALSE;
2450 }
2451
2452 /* Work out the size of the version reference section. */
2453
2454 s = bfd_get_section_by_name (dynobj, ".gnu.version_r");
2455 BFD_ASSERT (s != NULL);
2456 {
2457 struct elf_find_verdep_info sinfo;
2458
2459 sinfo.output_bfd = output_bfd;
2460 sinfo.info = info;
2461 sinfo.vers = elf_tdata (output_bfd)->cverdefs;
2462 if (sinfo.vers == 0)
2463 sinfo.vers = 1;
2464 sinfo.failed = FALSE;
2465
2466 elf_link_hash_traverse (elf_hash_table (info),
2467 _bfd_elf_link_find_version_dependencies,
2468 (PTR) &sinfo);
2469
2470 if (elf_tdata (output_bfd)->verref == NULL)
2471 _bfd_strip_section_from_output (info, s);
2472 else
2473 {
2474 Elf_Internal_Verneed *t;
2475 unsigned int size;
2476 unsigned int crefs;
2477 bfd_byte *p;
2478
2479 /* Build the version definition section. */
2480 size = 0;
2481 crefs = 0;
2482 for (t = elf_tdata (output_bfd)->verref;
2483 t != NULL;
2484 t = t->vn_nextref)
2485 {
2486 Elf_Internal_Vernaux *a;
2487
2488 size += sizeof (Elf_External_Verneed);
2489 ++crefs;
2490 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
2491 size += sizeof (Elf_External_Vernaux);
2492 }
2493
2494 s->_raw_size = size;
2495 s->contents = (bfd_byte *) bfd_alloc (output_bfd, s->_raw_size);
2496 if (s->contents == NULL)
2497 return FALSE;
2498
2499 p = s->contents;
2500 for (t = elf_tdata (output_bfd)->verref;
2501 t != NULL;
2502 t = t->vn_nextref)
2503 {
2504 unsigned int caux;
2505 Elf_Internal_Vernaux *a;
2506 bfd_size_type indx;
2507
2508 caux = 0;
2509 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
2510 ++caux;
2511
2512 t->vn_version = VER_NEED_CURRENT;
2513 t->vn_cnt = caux;
2514 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
2515 elf_dt_name (t->vn_bfd) != NULL
2516 ? elf_dt_name (t->vn_bfd)
2517 : basename (t->vn_bfd->filename),
2518 FALSE);
2519 if (indx == (bfd_size_type) -1)
2520 return FALSE;
2521 t->vn_file = indx;
2522 t->vn_aux = sizeof (Elf_External_Verneed);
2523 if (t->vn_nextref == NULL)
2524 t->vn_next = 0;
2525 else
2526 t->vn_next = (sizeof (Elf_External_Verneed)
2527 + caux * sizeof (Elf_External_Vernaux));
2528
2529 _bfd_elf_swap_verneed_out (output_bfd, t,
2530 (Elf_External_Verneed *) p);
2531 p += sizeof (Elf_External_Verneed);
2532
2533 for (a = t->vn_auxptr; a != NULL; a = a->vna_nextptr)
2534 {
2535 a->vna_hash = bfd_elf_hash (a->vna_nodename);
2536 indx = _bfd_elf_strtab_add (elf_hash_table (info)->dynstr,
2537 a->vna_nodename, FALSE);
2538 if (indx == (bfd_size_type) -1)
2539 return FALSE;
2540 a->vna_name = indx;
2541 if (a->vna_nextptr == NULL)
2542 a->vna_next = 0;
2543 else
2544 a->vna_next = sizeof (Elf_External_Vernaux);
2545
2546 _bfd_elf_swap_vernaux_out (output_bfd, a,
2547 (Elf_External_Vernaux *) p);
2548 p += sizeof (Elf_External_Vernaux);
2549 }
2550 }
2551
2552 if (! elf_add_dynamic_entry (info, (bfd_vma) DT_VERNEED,
2553 (bfd_vma) 0)
2554 || ! elf_add_dynamic_entry (info, (bfd_vma) DT_VERNEEDNUM,
2555 (bfd_vma) crefs))
2556 return FALSE;
2557
2558 elf_tdata (output_bfd)->cverrefs = crefs;
2559 }
2560 }
2561
2562 /* Assign dynsym indicies. In a shared library we generate a
2563 section symbol for each output section, which come first.
2564 Next come all of the back-end allocated local dynamic syms,
2565 followed by the rest of the global symbols. */
2566
2567 dynsymcount = _bfd_elf_link_renumber_dynsyms (output_bfd, info);
2568
2569 /* Work out the size of the symbol version section. */
2570 s = bfd_get_section_by_name (dynobj, ".gnu.version");
2571 BFD_ASSERT (s != NULL);
2572 if (dynsymcount == 0
2573 || (verdefs == NULL && elf_tdata (output_bfd)->verref == NULL))
2574 {
2575 _bfd_strip_section_from_output (info, s);
2576 /* The DYNSYMCOUNT might have changed if we were going to
2577 output a dynamic symbol table entry for S. */
2578 dynsymcount = _bfd_elf_link_renumber_dynsyms (output_bfd, info);
2579 }
2580 else
2581 {
2582 s->_raw_size = dynsymcount * sizeof (Elf_External_Versym);
2583 s->contents = (bfd_byte *) bfd_zalloc (output_bfd, s->_raw_size);
2584 if (s->contents == NULL)
2585 return FALSE;
2586
2587 if (! elf_add_dynamic_entry (info, (bfd_vma) DT_VERSYM, (bfd_vma) 0))
2588 return FALSE;
2589 }
2590
2591 /* Set the size of the .dynsym and .hash sections. We counted
2592 the number of dynamic symbols in elf_link_add_object_symbols.
2593 We will build the contents of .dynsym and .hash when we build
2594 the final symbol table, because until then we do not know the
2595 correct value to give the symbols. We built the .dynstr
2596 section as we went along in elf_link_add_object_symbols. */
2597 s = bfd_get_section_by_name (dynobj, ".dynsym");
2598 BFD_ASSERT (s != NULL);
2599 s->_raw_size = dynsymcount * sizeof (Elf_External_Sym);
2600 s->contents = (bfd_byte *) bfd_alloc (output_bfd, s->_raw_size);
2601 if (s->contents == NULL && s->_raw_size != 0)
2602 return FALSE;
2603
2604 if (dynsymcount != 0)
2605 {
2606 Elf_Internal_Sym isym;
2607
2608 /* The first entry in .dynsym is a dummy symbol. */
2609 isym.st_value = 0;
2610 isym.st_size = 0;
2611 isym.st_name = 0;
2612 isym.st_info = 0;
2613 isym.st_other = 0;
2614 isym.st_shndx = 0;
2615 elf_swap_symbol_out (output_bfd, &isym, (PTR) s->contents, (PTR) 0);
2616 }
2617
2618 /* Compute the size of the hashing table. As a side effect this
2619 computes the hash values for all the names we export. */
2620 bucketcount = compute_bucket_count (info);
2621
2622 s = bfd_get_section_by_name (dynobj, ".hash");
2623 BFD_ASSERT (s != NULL);
2624 hash_entry_size = elf_section_data (s)->this_hdr.sh_entsize;
2625 s->_raw_size = ((2 + bucketcount + dynsymcount) * hash_entry_size);
2626 s->contents = (bfd_byte *) bfd_zalloc (output_bfd, s->_raw_size);
2627 if (s->contents == NULL)
2628 return FALSE;
2629
2630 bfd_put (8 * hash_entry_size, output_bfd, (bfd_vma) bucketcount,
2631 s->contents);
2632 bfd_put (8 * hash_entry_size, output_bfd, (bfd_vma) dynsymcount,
2633 s->contents + hash_entry_size);
2634
2635 elf_hash_table (info)->bucketcount = bucketcount;
2636
2637 s = bfd_get_section_by_name (dynobj, ".dynstr");
2638 BFD_ASSERT (s != NULL);
2639
2640 elf_finalize_dynstr (output_bfd, info);
2641
2642 s->_raw_size = _bfd_elf_strtab_size (elf_hash_table (info)->dynstr);
2643
2644 for (dtagcount = 0; dtagcount <= info->spare_dynamic_tags; ++dtagcount)
2645 if (! elf_add_dynamic_entry (info, (bfd_vma) DT_NULL, (bfd_vma) 0))
2646 return FALSE;
2647 }
2648
2649 return TRUE;
2650 }
2651 \f
2652 /* This function is used to adjust offsets into .dynstr for
2653 dynamic symbols. This is called via elf_link_hash_traverse. */
2654
2655 static bfd_boolean elf_adjust_dynstr_offsets
2656 PARAMS ((struct elf_link_hash_entry *, PTR));
2657
2658 static bfd_boolean
2659 elf_adjust_dynstr_offsets (h, data)
2660 struct elf_link_hash_entry *h;
2661 PTR data;
2662 {
2663 struct elf_strtab_hash *dynstr = (struct elf_strtab_hash *) data;
2664
2665 if (h->root.type == bfd_link_hash_warning)
2666 h = (struct elf_link_hash_entry *) h->root.u.i.link;
2667
2668 if (h->dynindx != -1)
2669 h->dynstr_index = _bfd_elf_strtab_offset (dynstr, h->dynstr_index);
2670 return TRUE;
2671 }
2672
2673 /* Assign string offsets in .dynstr, update all structures referencing
2674 them. */
2675
2676 static bfd_boolean
2677 elf_finalize_dynstr (output_bfd, info)
2678 bfd *output_bfd;
2679 struct bfd_link_info *info;
2680 {
2681 struct elf_link_local_dynamic_entry *entry;
2682 struct elf_strtab_hash *dynstr = elf_hash_table (info)->dynstr;
2683 bfd *dynobj = elf_hash_table (info)->dynobj;
2684 asection *sdyn;
2685 bfd_size_type size;
2686 Elf_External_Dyn *dyncon, *dynconend;
2687
2688 _bfd_elf_strtab_finalize (dynstr);
2689 size = _bfd_elf_strtab_size (dynstr);
2690
2691 /* Update all .dynamic entries referencing .dynstr strings. */
2692 sdyn = bfd_get_section_by_name (dynobj, ".dynamic");
2693 BFD_ASSERT (sdyn != NULL);
2694
2695 dyncon = (Elf_External_Dyn *) sdyn->contents;
2696 dynconend = (Elf_External_Dyn *) (sdyn->contents +
2697 sdyn->_raw_size);
2698 for (; dyncon < dynconend; dyncon++)
2699 {
2700 Elf_Internal_Dyn dyn;
2701
2702 elf_swap_dyn_in (dynobj, dyncon, & dyn);
2703 switch (dyn.d_tag)
2704 {
2705 case DT_STRSZ:
2706 dyn.d_un.d_val = size;
2707 elf_swap_dyn_out (dynobj, & dyn, dyncon);
2708 break;
2709 case DT_NEEDED:
2710 case DT_SONAME:
2711 case DT_RPATH:
2712 case DT_RUNPATH:
2713 case DT_FILTER:
2714 case DT_AUXILIARY:
2715 dyn.d_un.d_val = _bfd_elf_strtab_offset (dynstr, dyn.d_un.d_val);
2716 elf_swap_dyn_out (dynobj, & dyn, dyncon);
2717 break;
2718 default:
2719 break;
2720 }
2721 }
2722
2723 /* Now update local dynamic symbols. */
2724 for (entry = elf_hash_table (info)->dynlocal; entry ; entry = entry->next)
2725 entry->isym.st_name = _bfd_elf_strtab_offset (dynstr,
2726 entry->isym.st_name);
2727
2728 /* And the rest of dynamic symbols. */
2729 elf_link_hash_traverse (elf_hash_table (info),
2730 elf_adjust_dynstr_offsets, dynstr);
2731
2732 /* Adjust version definitions. */
2733 if (elf_tdata (output_bfd)->cverdefs)
2734 {
2735 asection *s;
2736 bfd_byte *p;
2737 bfd_size_type i;
2738 Elf_Internal_Verdef def;
2739 Elf_Internal_Verdaux defaux;
2740
2741 s = bfd_get_section_by_name (dynobj, ".gnu.version_d");
2742 p = (bfd_byte *) s->contents;
2743 do
2744 {
2745 _bfd_elf_swap_verdef_in (output_bfd, (Elf_External_Verdef *) p,
2746 &def);
2747 p += sizeof (Elf_External_Verdef);
2748 for (i = 0; i < def.vd_cnt; ++i)
2749 {
2750 _bfd_elf_swap_verdaux_in (output_bfd,
2751 (Elf_External_Verdaux *) p, &defaux);
2752 defaux.vda_name = _bfd_elf_strtab_offset (dynstr,
2753 defaux.vda_name);
2754 _bfd_elf_swap_verdaux_out (output_bfd,
2755 &defaux, (Elf_External_Verdaux *) p);
2756 p += sizeof (Elf_External_Verdaux);
2757 }
2758 }
2759 while (def.vd_next);
2760 }
2761
2762 /* Adjust version references. */
2763 if (elf_tdata (output_bfd)->verref)
2764 {
2765 asection *s;
2766 bfd_byte *p;
2767 bfd_size_type i;
2768 Elf_Internal_Verneed need;
2769 Elf_Internal_Vernaux needaux;
2770
2771 s = bfd_get_section_by_name (dynobj, ".gnu.version_r");
2772 p = (bfd_byte *) s->contents;
2773 do
2774 {
2775 _bfd_elf_swap_verneed_in (output_bfd, (Elf_External_Verneed *) p,
2776 &need);
2777 need.vn_file = _bfd_elf_strtab_offset (dynstr, need.vn_file);
2778 _bfd_elf_swap_verneed_out (output_bfd, &need,
2779 (Elf_External_Verneed *) p);
2780 p += sizeof (Elf_External_Verneed);
2781 for (i = 0; i < need.vn_cnt; ++i)
2782 {
2783 _bfd_elf_swap_vernaux_in (output_bfd,
2784 (Elf_External_Vernaux *) p, &needaux);
2785 needaux.vna_name = _bfd_elf_strtab_offset (dynstr,
2786 needaux.vna_name);
2787 _bfd_elf_swap_vernaux_out (output_bfd,
2788 &needaux,
2789 (Elf_External_Vernaux *) p);
2790 p += sizeof (Elf_External_Vernaux);
2791 }
2792 }
2793 while (need.vn_next);
2794 }
2795
2796 return TRUE;
2797 }
2798 \f
2799 /* Final phase of ELF linker. */
2800
2801 /* A structure we use to avoid passing large numbers of arguments. */
2802
2803 struct elf_final_link_info
2804 {
2805 /* General link information. */
2806 struct bfd_link_info *info;
2807 /* Output BFD. */
2808 bfd *output_bfd;
2809 /* Symbol string table. */
2810 struct bfd_strtab_hash *symstrtab;
2811 /* .dynsym section. */
2812 asection *dynsym_sec;
2813 /* .hash section. */
2814 asection *hash_sec;
2815 /* symbol version section (.gnu.version). */
2816 asection *symver_sec;
2817 /* first SHF_TLS section (if any). */
2818 asection *first_tls_sec;
2819 /* Buffer large enough to hold contents of any section. */
2820 bfd_byte *contents;
2821 /* Buffer large enough to hold external relocs of any section. */
2822 PTR external_relocs;
2823 /* Buffer large enough to hold internal relocs of any section. */
2824 Elf_Internal_Rela *internal_relocs;
2825 /* Buffer large enough to hold external local symbols of any input
2826 BFD. */
2827 Elf_External_Sym *external_syms;
2828 /* And a buffer for symbol section indices. */
2829 Elf_External_Sym_Shndx *locsym_shndx;
2830 /* Buffer large enough to hold internal local symbols of any input
2831 BFD. */
2832 Elf_Internal_Sym *internal_syms;
2833 /* Array large enough to hold a symbol index for each local symbol
2834 of any input BFD. */
2835 long *indices;
2836 /* Array large enough to hold a section pointer for each local
2837 symbol of any input BFD. */
2838 asection **sections;
2839 /* Buffer to hold swapped out symbols. */
2840 Elf_External_Sym *symbuf;
2841 /* And one for symbol section indices. */
2842 Elf_External_Sym_Shndx *symshndxbuf;
2843 /* Number of swapped out symbols in buffer. */
2844 size_t symbuf_count;
2845 /* Number of symbols which fit in symbuf. */
2846 size_t symbuf_size;
2847 /* And same for symshndxbuf. */
2848 size_t shndxbuf_size;
2849 };
2850
2851 static bfd_boolean elf_link_output_sym
2852 PARAMS ((struct elf_final_link_info *, const char *,
2853 Elf_Internal_Sym *, asection *));
2854 static bfd_boolean elf_link_flush_output_syms
2855 PARAMS ((struct elf_final_link_info *));
2856 static bfd_boolean elf_link_output_extsym
2857 PARAMS ((struct elf_link_hash_entry *, PTR));
2858 static bfd_boolean elf_link_check_versioned_symbol
2859 PARAMS ((struct bfd_link_info *, struct elf_link_hash_entry *));
2860 static bfd_boolean elf_link_input_bfd
2861 PARAMS ((struct elf_final_link_info *, bfd *));
2862 static bfd_boolean elf_reloc_link_order
2863 PARAMS ((bfd *, struct bfd_link_info *, asection *,
2864 struct bfd_link_order *));
2865
2866 /* This struct is used to pass information to elf_link_output_extsym. */
2867
2868 struct elf_outext_info
2869 {
2870 bfd_boolean failed;
2871 bfd_boolean localsyms;
2872 struct elf_final_link_info *finfo;
2873 };
2874
2875 /* When performing a relocateable link, the input relocations are
2876 preserved. But, if they reference global symbols, the indices
2877 referenced must be updated. Update all the relocations in
2878 REL_HDR (there are COUNT of them), using the data in REL_HASH. */
2879
2880 static void
2881 elf_link_adjust_relocs (abfd, rel_hdr, count, rel_hash)
2882 bfd *abfd;
2883 Elf_Internal_Shdr *rel_hdr;
2884 unsigned int count;
2885 struct elf_link_hash_entry **rel_hash;
2886 {
2887 unsigned int i;
2888 struct elf_backend_data *bed = get_elf_backend_data (abfd);
2889 bfd_byte *erela;
2890 void (*swap_in) PARAMS ((bfd *, const bfd_byte *, Elf_Internal_Rela *));
2891 void (*swap_out) PARAMS ((bfd *, const Elf_Internal_Rela *, bfd_byte *));
2892
2893 if (rel_hdr->sh_entsize == sizeof (Elf_External_Rel))
2894 {
2895 swap_in = bed->s->swap_reloc_in;
2896 swap_out = bed->s->swap_reloc_out;
2897 }
2898 else if (rel_hdr->sh_entsize == sizeof (Elf_External_Rela))
2899 {
2900 swap_in = bed->s->swap_reloca_in;
2901 swap_out = bed->s->swap_reloca_out;
2902 }
2903 else
2904 abort ();
2905
2906 if (bed->s->int_rels_per_ext_rel > MAX_INT_RELS_PER_EXT_REL)
2907 abort ();
2908
2909 erela = rel_hdr->contents;
2910 for (i = 0; i < count; i++, rel_hash++, erela += rel_hdr->sh_entsize)
2911 {
2912 Elf_Internal_Rela irela[MAX_INT_RELS_PER_EXT_REL];
2913 unsigned int j;
2914
2915 if (*rel_hash == NULL)
2916 continue;
2917
2918 BFD_ASSERT ((*rel_hash)->indx >= 0);
2919
2920 (*swap_in) (abfd, erela, irela);
2921 for (j = 0; j < bed->s->int_rels_per_ext_rel; j++)
2922 irela[j].r_info = ELF_R_INFO ((*rel_hash)->indx,
2923 ELF_R_TYPE (irela[j].r_info));
2924 (*swap_out) (abfd, irela, erela);
2925 }
2926 }
2927
2928 struct elf_link_sort_rela
2929 {
2930 bfd_vma offset;
2931 enum elf_reloc_type_class type;
2932 /* We use this as an array of size int_rels_per_ext_rel. */
2933 Elf_Internal_Rela rela[1];
2934 };
2935
2936 static int
2937 elf_link_sort_cmp1 (A, B)
2938 const PTR A;
2939 const PTR B;
2940 {
2941 struct elf_link_sort_rela *a = (struct elf_link_sort_rela *) A;
2942 struct elf_link_sort_rela *b = (struct elf_link_sort_rela *) B;
2943 int relativea, relativeb;
2944
2945 relativea = a->type == reloc_class_relative;
2946 relativeb = b->type == reloc_class_relative;
2947
2948 if (relativea < relativeb)
2949 return 1;
2950 if (relativea > relativeb)
2951 return -1;
2952 if (ELF_R_SYM (a->rela->r_info) < ELF_R_SYM (b->rela->r_info))
2953 return -1;
2954 if (ELF_R_SYM (a->rela->r_info) > ELF_R_SYM (b->rela->r_info))
2955 return 1;
2956 if (a->rela->r_offset < b->rela->r_offset)
2957 return -1;
2958 if (a->rela->r_offset > b->rela->r_offset)
2959 return 1;
2960 return 0;
2961 }
2962
2963 static int
2964 elf_link_sort_cmp2 (A, B)
2965 const PTR A;
2966 const PTR B;
2967 {
2968 struct elf_link_sort_rela *a = (struct elf_link_sort_rela *) A;
2969 struct elf_link_sort_rela *b = (struct elf_link_sort_rela *) B;
2970 int copya, copyb;
2971
2972 if (a->offset < b->offset)
2973 return -1;
2974 if (a->offset > b->offset)
2975 return 1;
2976 copya = (a->type == reloc_class_copy) * 2 + (a->type == reloc_class_plt);
2977 copyb = (b->type == reloc_class_copy) * 2 + (b->type == reloc_class_plt);
2978 if (copya < copyb)
2979 return -1;
2980 if (copya > copyb)
2981 return 1;
2982 if (a->rela->r_offset < b->rela->r_offset)
2983 return -1;
2984 if (a->rela->r_offset > b->rela->r_offset)
2985 return 1;
2986 return 0;
2987 }
2988
2989 static size_t
2990 elf_link_sort_relocs (abfd, info, psec)
2991 bfd *abfd;
2992 struct bfd_link_info *info;
2993 asection **psec;
2994 {
2995 bfd *dynobj = elf_hash_table (info)->dynobj;
2996 asection *reldyn, *o;
2997 bfd_size_type count, size;
2998 size_t i, ret, sort_elt, ext_size;
2999 bfd_byte *sort, *s_non_relative, *p;
3000 struct elf_link_sort_rela *sq;
3001 struct elf_backend_data *bed = get_elf_backend_data (abfd);
3002 int i2e = bed->s->int_rels_per_ext_rel;
3003 void (*swap_in) PARAMS ((bfd *, const bfd_byte *, Elf_Internal_Rela *));
3004 void (*swap_out) PARAMS ((bfd *, const Elf_Internal_Rela *, bfd_byte *));
3005
3006 reldyn = bfd_get_section_by_name (abfd, ".rela.dyn");
3007 if (reldyn == NULL || reldyn->_raw_size == 0)
3008 {
3009 reldyn = bfd_get_section_by_name (abfd, ".rel.dyn");
3010 if (reldyn == NULL || reldyn->_raw_size == 0)
3011 return 0;
3012 ext_size = sizeof (Elf_External_Rel);
3013 swap_in = bed->s->swap_reloc_in;
3014 swap_out = bed->s->swap_reloc_out;
3015 }
3016 else
3017 {
3018 ext_size = sizeof (Elf_External_Rela);
3019 swap_in = bed->s->swap_reloca_in;
3020 swap_out = bed->s->swap_reloca_out;
3021 }
3022 count = reldyn->_raw_size / ext_size;
3023
3024 size = 0;
3025 for (o = dynobj->sections; o != NULL; o = o->next)
3026 if ((o->flags & (SEC_HAS_CONTENTS|SEC_LINKER_CREATED))
3027 == (SEC_HAS_CONTENTS|SEC_LINKER_CREATED)
3028 && o->output_section == reldyn)
3029 size += o->_raw_size;
3030
3031 if (size != reldyn->_raw_size)
3032 return 0;
3033
3034 sort_elt = (sizeof (struct elf_link_sort_rela)
3035 + (i2e - 1) * sizeof (Elf_Internal_Rela));
3036 sort = bfd_zmalloc (sort_elt * count);
3037 if (sort == NULL)
3038 {
3039 (*info->callbacks->warning)
3040 (info, _("Not enough memory to sort relocations"), 0, abfd, 0,
3041 (bfd_vma) 0);
3042 return 0;
3043 }
3044
3045 for (o = dynobj->sections; o != NULL; o = o->next)
3046 if ((o->flags & (SEC_HAS_CONTENTS|SEC_LINKER_CREATED))
3047 == (SEC_HAS_CONTENTS|SEC_LINKER_CREATED)
3048 && o->output_section == reldyn)
3049 {
3050 bfd_byte *erel, *erelend;
3051
3052 erel = o->contents;
3053 erelend = o->contents + o->_raw_size;
3054 p = sort + o->output_offset / ext_size * sort_elt;
3055 while (erel < erelend)
3056 {
3057 struct elf_link_sort_rela *s = (struct elf_link_sort_rela *) p;
3058 (*swap_in) (abfd, erel, s->rela);
3059 s->type = (*bed->elf_backend_reloc_type_class) (s->rela);
3060 p += sort_elt;
3061 erel += ext_size;
3062 }
3063 }
3064
3065 qsort (sort, (size_t) count, sort_elt, elf_link_sort_cmp1);
3066
3067 for (i = 0, p = sort; i < count; i++, p += sort_elt)
3068 {
3069 struct elf_link_sort_rela *s = (struct elf_link_sort_rela *) p;
3070 if (s->type != reloc_class_relative)
3071 break;
3072 }
3073 ret = i;
3074 s_non_relative = p;
3075
3076 sq = (struct elf_link_sort_rela *) s_non_relative;
3077 for (; i < count; i++, p += sort_elt)
3078 {
3079 struct elf_link_sort_rela *sp = (struct elf_link_sort_rela *) p;
3080 if (ELF_R_SYM (sp->rela->r_info) != ELF_R_SYM (sq->rela->r_info))
3081 sq = sp;
3082 sp->offset = sq->rela->r_offset;
3083 }
3084
3085 qsort (s_non_relative, (size_t) count - ret, sort_elt, elf_link_sort_cmp2);
3086
3087 for (o = dynobj->sections; o != NULL; o = o->next)
3088 if ((o->flags & (SEC_HAS_CONTENTS|SEC_LINKER_CREATED))
3089 == (SEC_HAS_CONTENTS|SEC_LINKER_CREATED)
3090 && o->output_section == reldyn)
3091 {
3092 bfd_byte *erel, *erelend;
3093
3094 erel = o->contents;
3095 erelend = o->contents + o->_raw_size;
3096 p = sort + o->output_offset / ext_size * sort_elt;
3097 while (erel < erelend)
3098 {
3099 struct elf_link_sort_rela *s = (struct elf_link_sort_rela *) p;
3100 (*swap_out) (abfd, s->rela, erel);
3101 p += sort_elt;
3102 erel += ext_size;
3103 }
3104 }
3105
3106 free (sort);
3107 *psec = reldyn;
3108 return ret;
3109 }
3110
3111 /* Do the final step of an ELF link. */
3112
3113 bfd_boolean
3114 elf_bfd_final_link (abfd, info)
3115 bfd *abfd;
3116 struct bfd_link_info *info;
3117 {
3118 bfd_boolean dynamic;
3119 bfd_boolean emit_relocs;
3120 bfd *dynobj;
3121 struct elf_final_link_info finfo;
3122 register asection *o;
3123 register struct bfd_link_order *p;
3124 register bfd *sub;
3125 bfd_size_type max_contents_size;
3126 bfd_size_type max_external_reloc_size;
3127 bfd_size_type max_internal_reloc_count;
3128 bfd_size_type max_sym_count;
3129 bfd_size_type max_sym_shndx_count;
3130 file_ptr off;
3131 Elf_Internal_Sym elfsym;
3132 unsigned int i;
3133 Elf_Internal_Shdr *symtab_hdr;
3134 Elf_Internal_Shdr *symtab_shndx_hdr;
3135 Elf_Internal_Shdr *symstrtab_hdr;
3136 struct elf_backend_data *bed = get_elf_backend_data (abfd);
3137 struct elf_outext_info eoinfo;
3138 bfd_boolean merged;
3139 size_t relativecount = 0;
3140 asection *reldyn = 0;
3141 bfd_size_type amt;
3142
3143 if (! is_elf_hash_table (info))
3144 return FALSE;
3145
3146 if (info->shared)
3147 abfd->flags |= DYNAMIC;
3148
3149 dynamic = elf_hash_table (info)->dynamic_sections_created;
3150 dynobj = elf_hash_table (info)->dynobj;
3151
3152 emit_relocs = (info->relocateable
3153 || info->emitrelocations
3154 || bed->elf_backend_emit_relocs);
3155
3156 finfo.info = info;
3157 finfo.output_bfd = abfd;
3158 finfo.symstrtab = elf_stringtab_init ();
3159 if (finfo.symstrtab == NULL)
3160 return FALSE;
3161
3162 if (! dynamic)
3163 {
3164 finfo.dynsym_sec = NULL;
3165 finfo.hash_sec = NULL;
3166 finfo.symver_sec = NULL;
3167 }
3168 else
3169 {
3170 finfo.dynsym_sec = bfd_get_section_by_name (dynobj, ".dynsym");
3171 finfo.hash_sec = bfd_get_section_by_name (dynobj, ".hash");
3172 BFD_ASSERT (finfo.dynsym_sec != NULL && finfo.hash_sec != NULL);
3173 finfo.symver_sec = bfd_get_section_by_name (dynobj, ".gnu.version");
3174 /* Note that it is OK if symver_sec is NULL. */
3175 }
3176
3177 finfo.contents = NULL;
3178 finfo.external_relocs = NULL;
3179 finfo.internal_relocs = NULL;
3180 finfo.external_syms = NULL;
3181 finfo.locsym_shndx = NULL;
3182 finfo.internal_syms = NULL;
3183 finfo.indices = NULL;
3184 finfo.sections = NULL;
3185 finfo.symbuf = NULL;
3186 finfo.symshndxbuf = NULL;
3187 finfo.symbuf_count = 0;
3188 finfo.shndxbuf_size = 0;
3189 finfo.first_tls_sec = NULL;
3190 for (o = abfd->sections; o != (asection *) NULL; o = o->next)
3191 if ((o->flags & SEC_THREAD_LOCAL) != 0
3192 && (o->flags & SEC_LOAD) != 0)
3193 {
3194 finfo.first_tls_sec = o;
3195 break;
3196 }
3197
3198 /* Count up the number of relocations we will output for each output
3199 section, so that we know the sizes of the reloc sections. We
3200 also figure out some maximum sizes. */
3201 max_contents_size = 0;
3202 max_external_reloc_size = 0;
3203 max_internal_reloc_count = 0;
3204 max_sym_count = 0;
3205 max_sym_shndx_count = 0;
3206 merged = FALSE;
3207 for (o = abfd->sections; o != (asection *) NULL; o = o->next)
3208 {
3209 struct bfd_elf_section_data *esdo = elf_section_data (o);
3210 o->reloc_count = 0;
3211
3212 for (p = o->link_order_head; p != NULL; p = p->next)
3213 {
3214 unsigned int reloc_count = 0;
3215 struct bfd_elf_section_data *esdi = NULL;
3216 unsigned int *rel_count1;
3217
3218 if (p->type == bfd_section_reloc_link_order
3219 || p->type == bfd_symbol_reloc_link_order)
3220 reloc_count = 1;
3221 else if (p->type == bfd_indirect_link_order)
3222 {
3223 asection *sec;
3224
3225 sec = p->u.indirect.section;
3226 esdi = elf_section_data (sec);
3227
3228 /* Mark all sections which are to be included in the
3229 link. This will normally be every section. We need
3230 to do this so that we can identify any sections which
3231 the linker has decided to not include. */
3232 sec->linker_mark = TRUE;
3233
3234 if (sec->flags & SEC_MERGE)
3235 merged = TRUE;
3236
3237 if (info->relocateable || info->emitrelocations)
3238 reloc_count = sec->reloc_count;
3239 else if (bed->elf_backend_count_relocs)
3240 {
3241 Elf_Internal_Rela * relocs;
3242
3243 relocs
3244 = _bfd_elf_link_read_relocs (abfd, sec, (PTR) NULL,
3245 (Elf_Internal_Rela *) NULL,
3246 info->keep_memory);
3247
3248 reloc_count = (*bed->elf_backend_count_relocs) (sec, relocs);
3249
3250 if (elf_section_data (o)->relocs != relocs)
3251 free (relocs);
3252 }
3253
3254 if (sec->_raw_size > max_contents_size)
3255 max_contents_size = sec->_raw_size;
3256 if (sec->_cooked_size > max_contents_size)
3257 max_contents_size = sec->_cooked_size;
3258
3259 /* We are interested in just local symbols, not all
3260 symbols. */
3261 if (bfd_get_flavour (sec->owner) == bfd_target_elf_flavour
3262 && (sec->owner->flags & DYNAMIC) == 0)
3263 {
3264 size_t sym_count;
3265
3266 if (elf_bad_symtab (sec->owner))
3267 sym_count = (elf_tdata (sec->owner)->symtab_hdr.sh_size
3268 / sizeof (Elf_External_Sym));
3269 else
3270 sym_count = elf_tdata (sec->owner)->symtab_hdr.sh_info;
3271
3272 if (sym_count > max_sym_count)
3273 max_sym_count = sym_count;
3274
3275 if (sym_count > max_sym_shndx_count
3276 && elf_symtab_shndx (sec->owner) != 0)
3277 max_sym_shndx_count = sym_count;
3278
3279 if ((sec->flags & SEC_RELOC) != 0)
3280 {
3281 size_t ext_size;
3282
3283 ext_size = elf_section_data (sec)->rel_hdr.sh_size;
3284 if (ext_size > max_external_reloc_size)
3285 max_external_reloc_size = ext_size;
3286 if (sec->reloc_count > max_internal_reloc_count)
3287 max_internal_reloc_count = sec->reloc_count;
3288 }
3289 }
3290 }
3291
3292 if (reloc_count == 0)
3293 continue;
3294
3295 o->reloc_count += reloc_count;
3296
3297 /* MIPS may have a mix of REL and RELA relocs on sections.
3298 To support this curious ABI we keep reloc counts in
3299 elf_section_data too. We must be careful to add the
3300 relocations from the input section to the right output
3301 count. FIXME: Get rid of one count. We have
3302 o->reloc_count == esdo->rel_count + esdo->rel_count2. */
3303 rel_count1 = &esdo->rel_count;
3304 if (esdi != NULL)
3305 {
3306 bfd_boolean same_size;
3307 bfd_size_type entsize1;
3308
3309 entsize1 = esdi->rel_hdr.sh_entsize;
3310 BFD_ASSERT (entsize1 == sizeof (Elf_External_Rel)
3311 || entsize1 == sizeof (Elf_External_Rela));
3312 same_size = (!o->use_rela_p
3313 == (entsize1 == sizeof (Elf_External_Rel)));
3314
3315 if (!same_size)
3316 rel_count1 = &esdo->rel_count2;
3317
3318 if (esdi->rel_hdr2 != NULL)
3319 {
3320 bfd_size_type entsize2 = esdi->rel_hdr2->sh_entsize;
3321 unsigned int alt_count;
3322 unsigned int *rel_count2;
3323
3324 BFD_ASSERT (entsize2 != entsize1
3325 && (entsize2 == sizeof (Elf_External_Rel)
3326 || entsize2 == sizeof (Elf_External_Rela)));
3327
3328 rel_count2 = &esdo->rel_count2;
3329 if (!same_size)
3330 rel_count2 = &esdo->rel_count;
3331
3332 /* The following is probably too simplistic if the
3333 backend counts output relocs unusually. */
3334 BFD_ASSERT (bed->elf_backend_count_relocs == NULL);
3335 alt_count = NUM_SHDR_ENTRIES (esdi->rel_hdr2);
3336 *rel_count2 += alt_count;
3337 reloc_count -= alt_count;
3338 }
3339 }
3340 *rel_count1 += reloc_count;
3341 }
3342
3343 if (o->reloc_count > 0)
3344 o->flags |= SEC_RELOC;
3345 else
3346 {
3347 /* Explicitly clear the SEC_RELOC flag. The linker tends to
3348 set it (this is probably a bug) and if it is set
3349 assign_section_numbers will create a reloc section. */
3350 o->flags &=~ SEC_RELOC;
3351 }
3352
3353 /* If the SEC_ALLOC flag is not set, force the section VMA to
3354 zero. This is done in elf_fake_sections as well, but forcing
3355 the VMA to 0 here will ensure that relocs against these
3356 sections are handled correctly. */
3357 if ((o->flags & SEC_ALLOC) == 0
3358 && ! o->user_set_vma)
3359 o->vma = 0;
3360 }
3361
3362 if (! info->relocateable && merged)
3363 elf_link_hash_traverse (elf_hash_table (info),
3364 _bfd_elf_link_sec_merge_syms, (PTR) abfd);
3365
3366 /* Figure out the file positions for everything but the symbol table
3367 and the relocs. We set symcount to force assign_section_numbers
3368 to create a symbol table. */
3369 bfd_get_symcount (abfd) = info->strip == strip_all ? 0 : 1;
3370 BFD_ASSERT (! abfd->output_has_begun);
3371 if (! _bfd_elf_compute_section_file_positions (abfd, info))
3372 goto error_return;
3373
3374 /* That created the reloc sections. Set their sizes, and assign
3375 them file positions, and allocate some buffers. */
3376 for (o = abfd->sections; o != NULL; o = o->next)
3377 {
3378 if ((o->flags & SEC_RELOC) != 0)
3379 {
3380 if (!(_bfd_elf_link_size_reloc_section
3381 (abfd, &elf_section_data (o)->rel_hdr, o)))
3382 goto error_return;
3383
3384 if (elf_section_data (o)->rel_hdr2
3385 && !(_bfd_elf_link_size_reloc_section
3386 (abfd, elf_section_data (o)->rel_hdr2, o)))
3387 goto error_return;
3388 }
3389
3390 /* Now, reset REL_COUNT and REL_COUNT2 so that we can use them
3391 to count upwards while actually outputting the relocations. */
3392 elf_section_data (o)->rel_count = 0;
3393 elf_section_data (o)->rel_count2 = 0;
3394 }
3395
3396 _bfd_elf_assign_file_positions_for_relocs (abfd);
3397
3398 /* We have now assigned file positions for all the sections except
3399 .symtab and .strtab. We start the .symtab section at the current
3400 file position, and write directly to it. We build the .strtab
3401 section in memory. */
3402 bfd_get_symcount (abfd) = 0;
3403 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
3404 /* sh_name is set in prep_headers. */
3405 symtab_hdr->sh_type = SHT_SYMTAB;
3406 /* sh_flags, sh_addr and sh_size all start off zero. */
3407 symtab_hdr->sh_entsize = sizeof (Elf_External_Sym);
3408 /* sh_link is set in assign_section_numbers. */
3409 /* sh_info is set below. */
3410 /* sh_offset is set just below. */
3411 symtab_hdr->sh_addralign = 1 << bed->s->log_file_align;
3412
3413 off = elf_tdata (abfd)->next_file_pos;
3414 off = _bfd_elf_assign_file_position_for_section (symtab_hdr, off, TRUE);
3415
3416 /* Note that at this point elf_tdata (abfd)->next_file_pos is
3417 incorrect. We do not yet know the size of the .symtab section.
3418 We correct next_file_pos below, after we do know the size. */
3419
3420 /* Allocate a buffer to hold swapped out symbols. This is to avoid
3421 continuously seeking to the right position in the file. */
3422 if (! info->keep_memory || max_sym_count < 20)
3423 finfo.symbuf_size = 20;
3424 else
3425 finfo.symbuf_size = max_sym_count;
3426 amt = finfo.symbuf_size;
3427 amt *= sizeof (Elf_External_Sym);
3428 finfo.symbuf = (Elf_External_Sym *) bfd_malloc (amt);
3429 if (finfo.symbuf == NULL)
3430 goto error_return;
3431 if (elf_numsections (abfd) > SHN_LORESERVE)
3432 {
3433 /* Wild guess at number of output symbols. realloc'd as needed. */
3434 amt = 2 * max_sym_count + elf_numsections (abfd) + 1000;
3435 finfo.shndxbuf_size = amt;
3436 amt *= sizeof (Elf_External_Sym_Shndx);
3437 finfo.symshndxbuf = (Elf_External_Sym_Shndx *) bfd_zmalloc (amt);
3438 if (finfo.symshndxbuf == NULL)
3439 goto error_return;
3440 }
3441
3442 /* Start writing out the symbol table. The first symbol is always a
3443 dummy symbol. */
3444 if (info->strip != strip_all
3445 || emit_relocs)
3446 {
3447 elfsym.st_value = 0;
3448 elfsym.st_size = 0;
3449 elfsym.st_info = 0;
3450 elfsym.st_other = 0;
3451 elfsym.st_shndx = SHN_UNDEF;
3452 if (! elf_link_output_sym (&finfo, (const char *) NULL,
3453 &elfsym, bfd_und_section_ptr))
3454 goto error_return;
3455 }
3456
3457 #if 0
3458 /* Some standard ELF linkers do this, but we don't because it causes
3459 bootstrap comparison failures. */
3460 /* Output a file symbol for the output file as the second symbol.
3461 We output this even if we are discarding local symbols, although
3462 I'm not sure if this is correct. */
3463 elfsym.st_value = 0;
3464 elfsym.st_size = 0;
3465 elfsym.st_info = ELF_ST_INFO (STB_LOCAL, STT_FILE);
3466 elfsym.st_other = 0;
3467 elfsym.st_shndx = SHN_ABS;
3468 if (! elf_link_output_sym (&finfo, bfd_get_filename (abfd),
3469 &elfsym, bfd_abs_section_ptr))
3470 goto error_return;
3471 #endif
3472
3473 /* Output a symbol for each section. We output these even if we are
3474 discarding local symbols, since they are used for relocs. These
3475 symbols have no names. We store the index of each one in the
3476 index field of the section, so that we can find it again when
3477 outputting relocs. */
3478 if (info->strip != strip_all
3479 || emit_relocs)
3480 {
3481 elfsym.st_size = 0;
3482 elfsym.st_info = ELF_ST_INFO (STB_LOCAL, STT_SECTION);
3483 elfsym.st_other = 0;
3484 for (i = 1; i < elf_numsections (abfd); i++)
3485 {
3486 o = section_from_elf_index (abfd, i);
3487 if (o != NULL)
3488 o->target_index = bfd_get_symcount (abfd);
3489 elfsym.st_shndx = i;
3490 if (info->relocateable || o == NULL)
3491 elfsym.st_value = 0;
3492 else
3493 elfsym.st_value = o->vma;
3494 if (! elf_link_output_sym (&finfo, (const char *) NULL,
3495 &elfsym, o))
3496 goto error_return;
3497 if (i == SHN_LORESERVE - 1)
3498 i += SHN_HIRESERVE + 1 - SHN_LORESERVE;
3499 }
3500 }
3501
3502 /* Allocate some memory to hold information read in from the input
3503 files. */
3504 if (max_contents_size != 0)
3505 {
3506 finfo.contents = (bfd_byte *) bfd_malloc (max_contents_size);
3507 if (finfo.contents == NULL)
3508 goto error_return;
3509 }
3510
3511 if (max_external_reloc_size != 0)
3512 {
3513 finfo.external_relocs = (PTR) bfd_malloc (max_external_reloc_size);
3514 if (finfo.external_relocs == NULL)
3515 goto error_return;
3516 }
3517
3518 if (max_internal_reloc_count != 0)
3519 {
3520 amt = max_internal_reloc_count * bed->s->int_rels_per_ext_rel;
3521 amt *= sizeof (Elf_Internal_Rela);
3522 finfo.internal_relocs = (Elf_Internal_Rela *) bfd_malloc (amt);
3523 if (finfo.internal_relocs == NULL)
3524 goto error_return;
3525 }
3526
3527 if (max_sym_count != 0)
3528 {
3529 amt = max_sym_count * sizeof (Elf_External_Sym);
3530 finfo.external_syms = (Elf_External_Sym *) bfd_malloc (amt);
3531 if (finfo.external_syms == NULL)
3532 goto error_return;
3533
3534 amt = max_sym_count * sizeof (Elf_Internal_Sym);
3535 finfo.internal_syms = (Elf_Internal_Sym *) bfd_malloc (amt);
3536 if (finfo.internal_syms == NULL)
3537 goto error_return;
3538
3539 amt = max_sym_count * sizeof (long);
3540 finfo.indices = (long *) bfd_malloc (amt);
3541 if (finfo.indices == NULL)
3542 goto error_return;
3543
3544 amt = max_sym_count * sizeof (asection *);
3545 finfo.sections = (asection **) bfd_malloc (amt);
3546 if (finfo.sections == NULL)
3547 goto error_return;
3548 }
3549
3550 if (max_sym_shndx_count != 0)
3551 {
3552 amt = max_sym_shndx_count * sizeof (Elf_External_Sym_Shndx);
3553 finfo.locsym_shndx = (Elf_External_Sym_Shndx *) bfd_malloc (amt);
3554 if (finfo.locsym_shndx == NULL)
3555 goto error_return;
3556 }
3557
3558 if (finfo.first_tls_sec)
3559 {
3560 unsigned int align = 0;
3561 bfd_vma base = finfo.first_tls_sec->vma, end = 0;
3562 asection *sec;
3563
3564 for (sec = finfo.first_tls_sec;
3565 sec && (sec->flags & SEC_THREAD_LOCAL);
3566 sec = sec->next)
3567 {
3568 bfd_vma size = sec->_raw_size;
3569
3570 if (bfd_get_section_alignment (abfd, sec) > align)
3571 align = bfd_get_section_alignment (abfd, sec);
3572 if (sec->_raw_size == 0 && (sec->flags & SEC_HAS_CONTENTS) == 0)
3573 {
3574 struct bfd_link_order *o;
3575
3576 size = 0;
3577 for (o = sec->link_order_head; o != NULL; o = o->next)
3578 if (size < o->offset + o->size)
3579 size = o->offset + o->size;
3580 }
3581 end = sec->vma + size;
3582 }
3583 elf_hash_table (info)->tls_segment
3584 = bfd_zalloc (abfd, sizeof (struct elf_link_tls_segment));
3585 if (elf_hash_table (info)->tls_segment == NULL)
3586 goto error_return;
3587 elf_hash_table (info)->tls_segment->start = base;
3588 elf_hash_table (info)->tls_segment->size = end - base;
3589 elf_hash_table (info)->tls_segment->align = align;
3590 }
3591
3592 /* Since ELF permits relocations to be against local symbols, we
3593 must have the local symbols available when we do the relocations.
3594 Since we would rather only read the local symbols once, and we
3595 would rather not keep them in memory, we handle all the
3596 relocations for a single input file at the same time.
3597
3598 Unfortunately, there is no way to know the total number of local
3599 symbols until we have seen all of them, and the local symbol
3600 indices precede the global symbol indices. This means that when
3601 we are generating relocateable output, and we see a reloc against
3602 a global symbol, we can not know the symbol index until we have
3603 finished examining all the local symbols to see which ones we are
3604 going to output. To deal with this, we keep the relocations in
3605 memory, and don't output them until the end of the link. This is
3606 an unfortunate waste of memory, but I don't see a good way around
3607 it. Fortunately, it only happens when performing a relocateable
3608 link, which is not the common case. FIXME: If keep_memory is set
3609 we could write the relocs out and then read them again; I don't
3610 know how bad the memory loss will be. */
3611
3612 for (sub = info->input_bfds; sub != NULL; sub = sub->link_next)
3613 sub->output_has_begun = FALSE;
3614 for (o = abfd->sections; o != NULL; o = o->next)
3615 {
3616 for (p = o->link_order_head; p != NULL; p = p->next)
3617 {
3618 if (p->type == bfd_indirect_link_order
3619 && (bfd_get_flavour ((sub = p->u.indirect.section->owner))
3620 == bfd_target_elf_flavour)
3621 && elf_elfheader (sub)->e_ident[EI_CLASS] == bed->s->elfclass)
3622 {
3623 if (! sub->output_has_begun)
3624 {
3625 if (! elf_link_input_bfd (&finfo, sub))
3626 goto error_return;
3627 sub->output_has_begun = TRUE;
3628 }
3629 }
3630 else if (p->type == bfd_section_reloc_link_order
3631 || p->type == bfd_symbol_reloc_link_order)
3632 {
3633 if (! elf_reloc_link_order (abfd, info, o, p))
3634 goto error_return;
3635 }
3636 else
3637 {
3638 if (! _bfd_default_link_order (abfd, info, o, p))
3639 goto error_return;
3640 }
3641 }
3642 }
3643
3644 /* Output any global symbols that got converted to local in a
3645 version script or due to symbol visibility. We do this in a
3646 separate step since ELF requires all local symbols to appear
3647 prior to any global symbols. FIXME: We should only do this if
3648 some global symbols were, in fact, converted to become local.
3649 FIXME: Will this work correctly with the Irix 5 linker? */
3650 eoinfo.failed = FALSE;
3651 eoinfo.finfo = &finfo;
3652 eoinfo.localsyms = TRUE;
3653 elf_link_hash_traverse (elf_hash_table (info), elf_link_output_extsym,
3654 (PTR) &eoinfo);
3655 if (eoinfo.failed)
3656 return FALSE;
3657
3658 /* That wrote out all the local symbols. Finish up the symbol table
3659 with the global symbols. Even if we want to strip everything we
3660 can, we still need to deal with those global symbols that got
3661 converted to local in a version script. */
3662
3663 /* The sh_info field records the index of the first non local symbol. */
3664 symtab_hdr->sh_info = bfd_get_symcount (abfd);
3665
3666 if (dynamic
3667 && finfo.dynsym_sec->output_section != bfd_abs_section_ptr)
3668 {
3669 Elf_Internal_Sym sym;
3670 Elf_External_Sym *dynsym =
3671 (Elf_External_Sym *) finfo.dynsym_sec->contents;
3672 long last_local = 0;
3673
3674 /* Write out the section symbols for the output sections. */
3675 if (info->shared)
3676 {
3677 asection *s;
3678
3679 sym.st_size = 0;
3680 sym.st_name = 0;
3681 sym.st_info = ELF_ST_INFO (STB_LOCAL, STT_SECTION);
3682 sym.st_other = 0;
3683
3684 for (s = abfd->sections; s != NULL; s = s->next)
3685 {
3686 int indx;
3687 Elf_External_Sym *dest;
3688
3689 indx = elf_section_data (s)->this_idx;
3690 BFD_ASSERT (indx > 0);
3691 sym.st_shndx = indx;
3692 sym.st_value = s->vma;
3693 dest = dynsym + elf_section_data (s)->dynindx;
3694 elf_swap_symbol_out (abfd, &sym, (PTR) dest, (PTR) 0);
3695 }
3696
3697 last_local = bfd_count_sections (abfd);
3698 }
3699
3700 /* Write out the local dynsyms. */
3701 if (elf_hash_table (info)->dynlocal)
3702 {
3703 struct elf_link_local_dynamic_entry *e;
3704 for (e = elf_hash_table (info)->dynlocal; e ; e = e->next)
3705 {
3706 asection *s;
3707 Elf_External_Sym *dest;
3708
3709 sym.st_size = e->isym.st_size;
3710 sym.st_other = e->isym.st_other;
3711
3712 /* Copy the internal symbol as is.
3713 Note that we saved a word of storage and overwrote
3714 the original st_name with the dynstr_index. */
3715 sym = e->isym;
3716
3717 if (e->isym.st_shndx != SHN_UNDEF
3718 && (e->isym.st_shndx < SHN_LORESERVE
3719 || e->isym.st_shndx > SHN_HIRESERVE))
3720 {
3721 s = bfd_section_from_elf_index (e->input_bfd,
3722 e->isym.st_shndx);
3723
3724 sym.st_shndx =
3725 elf_section_data (s->output_section)->this_idx;
3726 sym.st_value = (s->output_section->vma
3727 + s->output_offset
3728 + e->isym.st_value);
3729 }
3730
3731 if (last_local < e->dynindx)
3732 last_local = e->dynindx;
3733
3734 dest = dynsym + e->dynindx;
3735 elf_swap_symbol_out (abfd, &sym, (PTR) dest, (PTR) 0);
3736 }
3737 }
3738
3739 elf_section_data (finfo.dynsym_sec->output_section)->this_hdr.sh_info =
3740 last_local + 1;
3741 }
3742
3743 /* We get the global symbols from the hash table. */
3744 eoinfo.failed = FALSE;
3745 eoinfo.localsyms = FALSE;
3746 eoinfo.finfo = &finfo;
3747 elf_link_hash_traverse (elf_hash_table (info), elf_link_output_extsym,
3748 (PTR) &eoinfo);
3749 if (eoinfo.failed)
3750 return FALSE;
3751
3752 /* If backend needs to output some symbols not present in the hash
3753 table, do it now. */
3754 if (bed->elf_backend_output_arch_syms)
3755 {
3756 typedef bfd_boolean (*out_sym_func)
3757 PARAMS ((PTR, const char *, Elf_Internal_Sym *, asection *));
3758
3759 if (! ((*bed->elf_backend_output_arch_syms)
3760 (abfd, info, (PTR) &finfo, (out_sym_func) elf_link_output_sym)))
3761 return FALSE;
3762 }
3763
3764 /* Flush all symbols to the file. */
3765 if (! elf_link_flush_output_syms (&finfo))
3766 return FALSE;
3767
3768 /* Now we know the size of the symtab section. */
3769 off += symtab_hdr->sh_size;
3770
3771 symtab_shndx_hdr = &elf_tdata (abfd)->symtab_shndx_hdr;
3772 if (symtab_shndx_hdr->sh_name != 0)
3773 {
3774 symtab_shndx_hdr->sh_type = SHT_SYMTAB_SHNDX;
3775 symtab_shndx_hdr->sh_entsize = sizeof (Elf_External_Sym_Shndx);
3776 symtab_shndx_hdr->sh_addralign = sizeof (Elf_External_Sym_Shndx);
3777 amt = bfd_get_symcount (abfd) * sizeof (Elf_External_Sym_Shndx);
3778 symtab_shndx_hdr->sh_size = amt;
3779
3780 off = _bfd_elf_assign_file_position_for_section (symtab_shndx_hdr,
3781 off, TRUE);
3782
3783 if (bfd_seek (abfd, symtab_shndx_hdr->sh_offset, SEEK_SET) != 0
3784 || (bfd_bwrite ((PTR) finfo.symshndxbuf, amt, abfd) != amt))
3785 return FALSE;
3786 }
3787
3788
3789 /* Finish up and write out the symbol string table (.strtab)
3790 section. */
3791 symstrtab_hdr = &elf_tdata (abfd)->strtab_hdr;
3792 /* sh_name was set in prep_headers. */
3793 symstrtab_hdr->sh_type = SHT_STRTAB;
3794 symstrtab_hdr->sh_flags = 0;
3795 symstrtab_hdr->sh_addr = 0;
3796 symstrtab_hdr->sh_size = _bfd_stringtab_size (finfo.symstrtab);
3797 symstrtab_hdr->sh_entsize = 0;
3798 symstrtab_hdr->sh_link = 0;
3799 symstrtab_hdr->sh_info = 0;
3800 /* sh_offset is set just below. */
3801 symstrtab_hdr->sh_addralign = 1;
3802
3803 off = _bfd_elf_assign_file_position_for_section (symstrtab_hdr, off, TRUE);
3804 elf_tdata (abfd)->next_file_pos = off;
3805
3806 if (bfd_get_symcount (abfd) > 0)
3807 {
3808 if (bfd_seek (abfd, symstrtab_hdr->sh_offset, SEEK_SET) != 0
3809 || ! _bfd_stringtab_emit (abfd, finfo.symstrtab))
3810 return FALSE;
3811 }
3812
3813 /* Adjust the relocs to have the correct symbol indices. */
3814 for (o = abfd->sections; o != NULL; o = o->next)
3815 {
3816 if ((o->flags & SEC_RELOC) == 0)
3817 continue;
3818
3819 elf_link_adjust_relocs (abfd, &elf_section_data (o)->rel_hdr,
3820 elf_section_data (o)->rel_count,
3821 elf_section_data (o)->rel_hashes);
3822 if (elf_section_data (o)->rel_hdr2 != NULL)
3823 elf_link_adjust_relocs (abfd, elf_section_data (o)->rel_hdr2,
3824 elf_section_data (o)->rel_count2,
3825 (elf_section_data (o)->rel_hashes
3826 + elf_section_data (o)->rel_count));
3827
3828 /* Set the reloc_count field to 0 to prevent write_relocs from
3829 trying to swap the relocs out itself. */
3830 o->reloc_count = 0;
3831 }
3832
3833 if (dynamic && info->combreloc && dynobj != NULL)
3834 relativecount = elf_link_sort_relocs (abfd, info, &reldyn);
3835
3836 /* If we are linking against a dynamic object, or generating a
3837 shared library, finish up the dynamic linking information. */
3838 if (dynamic)
3839 {
3840 Elf_External_Dyn *dyncon, *dynconend;
3841
3842 /* Fix up .dynamic entries. */
3843 o = bfd_get_section_by_name (dynobj, ".dynamic");
3844 BFD_ASSERT (o != NULL);
3845
3846 dyncon = (Elf_External_Dyn *) o->contents;
3847 dynconend = (Elf_External_Dyn *) (o->contents + o->_raw_size);
3848 for (; dyncon < dynconend; dyncon++)
3849 {
3850 Elf_Internal_Dyn dyn;
3851 const char *name;
3852 unsigned int type;
3853
3854 elf_swap_dyn_in (dynobj, dyncon, &dyn);
3855
3856 switch (dyn.d_tag)
3857 {
3858 default:
3859 break;
3860 case DT_NULL:
3861 if (relativecount > 0 && dyncon + 1 < dynconend)
3862 {
3863 switch (elf_section_data (reldyn)->this_hdr.sh_type)
3864 {
3865 case SHT_REL: dyn.d_tag = DT_RELCOUNT; break;
3866 case SHT_RELA: dyn.d_tag = DT_RELACOUNT; break;
3867 default: break;
3868 }
3869 if (dyn.d_tag != DT_NULL)
3870 {
3871 dyn.d_un.d_val = relativecount;
3872 elf_swap_dyn_out (dynobj, &dyn, dyncon);
3873 relativecount = 0;
3874 }
3875 }
3876 break;
3877 case DT_INIT:
3878 name = info->init_function;
3879 goto get_sym;
3880 case DT_FINI:
3881 name = info->fini_function;
3882 get_sym:
3883 {
3884 struct elf_link_hash_entry *h;
3885
3886 h = elf_link_hash_lookup (elf_hash_table (info), name,
3887 FALSE, FALSE, TRUE);
3888 if (h != NULL
3889 && (h->root.type == bfd_link_hash_defined
3890 || h->root.type == bfd_link_hash_defweak))
3891 {
3892 dyn.d_un.d_val = h->root.u.def.value;
3893 o = h->root.u.def.section;
3894 if (o->output_section != NULL)
3895 dyn.d_un.d_val += (o->output_section->vma
3896 + o->output_offset);
3897 else
3898 {
3899 /* The symbol is imported from another shared
3900 library and does not apply to this one. */
3901 dyn.d_un.d_val = 0;
3902 }
3903
3904 elf_swap_dyn_out (dynobj, &dyn, dyncon);
3905 }
3906 }
3907 break;
3908
3909 case DT_PREINIT_ARRAYSZ:
3910 name = ".preinit_array";
3911 goto get_size;
3912 case DT_INIT_ARRAYSZ:
3913 name = ".init_array";
3914 goto get_size;
3915 case DT_FINI_ARRAYSZ:
3916 name = ".fini_array";
3917 get_size:
3918 o = bfd_get_section_by_name (abfd, name);
3919 if (o == NULL)
3920 {
3921 (*_bfd_error_handler)
3922 (_("%s: could not find output section %s"),
3923 bfd_get_filename (abfd), name);
3924 goto error_return;
3925 }
3926 if (o->_raw_size == 0)
3927 (*_bfd_error_handler)
3928 (_("warning: %s section has zero size"), name);
3929 dyn.d_un.d_val = o->_raw_size;
3930 elf_swap_dyn_out (dynobj, &dyn, dyncon);
3931 break;
3932
3933 case DT_PREINIT_ARRAY:
3934 name = ".preinit_array";
3935 goto get_vma;
3936 case DT_INIT_ARRAY:
3937 name = ".init_array";
3938 goto get_vma;
3939 case DT_FINI_ARRAY:
3940 name = ".fini_array";
3941 goto get_vma;
3942
3943 case DT_HASH:
3944 name = ".hash";
3945 goto get_vma;
3946 case DT_STRTAB:
3947 name = ".dynstr";
3948 goto get_vma;
3949 case DT_SYMTAB:
3950 name = ".dynsym";
3951 goto get_vma;
3952 case DT_VERDEF:
3953 name = ".gnu.version_d";
3954 goto get_vma;
3955 case DT_VERNEED:
3956 name = ".gnu.version_r";
3957 goto get_vma;
3958 case DT_VERSYM:
3959 name = ".gnu.version";
3960 get_vma:
3961 o = bfd_get_section_by_name (abfd, name);
3962 if (o == NULL)
3963 {
3964 (*_bfd_error_handler)
3965 (_("%s: could not find output section %s"),
3966 bfd_get_filename (abfd), name);
3967 goto error_return;
3968 }
3969 dyn.d_un.d_ptr = o->vma;
3970 elf_swap_dyn_out (dynobj, &dyn, dyncon);
3971 break;
3972
3973 case DT_REL:
3974 case DT_RELA:
3975 case DT_RELSZ:
3976 case DT_RELASZ:
3977 if (dyn.d_tag == DT_REL || dyn.d_tag == DT_RELSZ)
3978 type = SHT_REL;
3979 else
3980 type = SHT_RELA;
3981 dyn.d_un.d_val = 0;
3982 for (i = 1; i < elf_numsections (abfd); i++)
3983 {
3984 Elf_Internal_Shdr *hdr;
3985
3986 hdr = elf_elfsections (abfd)[i];
3987 if (hdr->sh_type == type
3988 && (hdr->sh_flags & SHF_ALLOC) != 0)
3989 {
3990 if (dyn.d_tag == DT_RELSZ || dyn.d_tag == DT_RELASZ)
3991 dyn.d_un.d_val += hdr->sh_size;
3992 else
3993 {
3994 if (dyn.d_un.d_val == 0
3995 || hdr->sh_addr < dyn.d_un.d_val)
3996 dyn.d_un.d_val = hdr->sh_addr;
3997 }
3998 }
3999 }
4000 elf_swap_dyn_out (dynobj, &dyn, dyncon);
4001 break;
4002 }
4003 }
4004 }
4005
4006 /* If we have created any dynamic sections, then output them. */
4007 if (dynobj != NULL)
4008 {
4009 if (! (*bed->elf_backend_finish_dynamic_sections) (abfd, info))
4010 goto error_return;
4011
4012 for (o = dynobj->sections; o != NULL; o = o->next)
4013 {
4014 if ((o->flags & SEC_HAS_CONTENTS) == 0
4015 || o->_raw_size == 0
4016 || o->output_section == bfd_abs_section_ptr)
4017 continue;
4018 if ((o->flags & SEC_LINKER_CREATED) == 0)
4019 {
4020 /* At this point, we are only interested in sections
4021 created by _bfd_elf_link_create_dynamic_sections. */
4022 continue;
4023 }
4024 if ((elf_section_data (o->output_section)->this_hdr.sh_type
4025 != SHT_STRTAB)
4026 || strcmp (bfd_get_section_name (abfd, o), ".dynstr") != 0)
4027 {
4028 if (! bfd_set_section_contents (abfd, o->output_section,
4029 o->contents,
4030 (file_ptr) o->output_offset,
4031 o->_raw_size))
4032 goto error_return;
4033 }
4034 else
4035 {
4036 /* The contents of the .dynstr section are actually in a
4037 stringtab. */
4038 off = elf_section_data (o->output_section)->this_hdr.sh_offset;
4039 if (bfd_seek (abfd, off, SEEK_SET) != 0
4040 || ! _bfd_elf_strtab_emit (abfd,
4041 elf_hash_table (info)->dynstr))
4042 goto error_return;
4043 }
4044 }
4045 }
4046
4047 if (info->relocateable)
4048 {
4049 bfd_boolean failed = FALSE;
4050
4051 bfd_map_over_sections (abfd, bfd_elf_set_group_contents, &failed);
4052 if (failed)
4053 goto error_return;
4054 }
4055
4056 /* If we have optimized stabs strings, output them. */
4057 if (elf_hash_table (info)->stab_info != NULL)
4058 {
4059 if (! _bfd_write_stab_strings (abfd, &elf_hash_table (info)->stab_info))
4060 goto error_return;
4061 }
4062
4063 if (info->eh_frame_hdr)
4064 {
4065 if (! _bfd_elf_write_section_eh_frame_hdr (abfd, info))
4066 goto error_return;
4067 }
4068
4069 if (finfo.symstrtab != NULL)
4070 _bfd_stringtab_free (finfo.symstrtab);
4071 if (finfo.contents != NULL)
4072 free (finfo.contents);
4073 if (finfo.external_relocs != NULL)
4074 free (finfo.external_relocs);
4075 if (finfo.internal_relocs != NULL)
4076 free (finfo.internal_relocs);
4077 if (finfo.external_syms != NULL)
4078 free (finfo.external_syms);
4079 if (finfo.locsym_shndx != NULL)
4080 free (finfo.locsym_shndx);
4081 if (finfo.internal_syms != NULL)
4082 free (finfo.internal_syms);
4083 if (finfo.indices != NULL)
4084 free (finfo.indices);
4085 if (finfo.sections != NULL)
4086 free (finfo.sections);
4087 if (finfo.symbuf != NULL)
4088 free (finfo.symbuf);
4089 if (finfo.symshndxbuf != NULL)
4090 free (finfo.symshndxbuf);
4091 for (o = abfd->sections; o != NULL; o = o->next)
4092 {
4093 if ((o->flags & SEC_RELOC) != 0
4094 && elf_section_data (o)->rel_hashes != NULL)
4095 free (elf_section_data (o)->rel_hashes);
4096 }
4097
4098 elf_tdata (abfd)->linker = TRUE;
4099
4100 return TRUE;
4101
4102 error_return:
4103 if (finfo.symstrtab != NULL)
4104 _bfd_stringtab_free (finfo.symstrtab);
4105 if (finfo.contents != NULL)
4106 free (finfo.contents);
4107 if (finfo.external_relocs != NULL)
4108 free (finfo.external_relocs);
4109 if (finfo.internal_relocs != NULL)
4110 free (finfo.internal_relocs);
4111 if (finfo.external_syms != NULL)
4112 free (finfo.external_syms);
4113 if (finfo.locsym_shndx != NULL)
4114 free (finfo.locsym_shndx);
4115 if (finfo.internal_syms != NULL)
4116 free (finfo.internal_syms);
4117 if (finfo.indices != NULL)
4118 free (finfo.indices);
4119 if (finfo.sections != NULL)
4120 free (finfo.sections);
4121 if (finfo.symbuf != NULL)
4122 free (finfo.symbuf);
4123 if (finfo.symshndxbuf != NULL)
4124 free (finfo.symshndxbuf);
4125 for (o = abfd->sections; o != NULL; o = o->next)
4126 {
4127 if ((o->flags & SEC_RELOC) != 0
4128 && elf_section_data (o)->rel_hashes != NULL)
4129 free (elf_section_data (o)->rel_hashes);
4130 }
4131
4132 return FALSE;
4133 }
4134
4135 /* Add a symbol to the output symbol table. */
4136
4137 static bfd_boolean
4138 elf_link_output_sym (finfo, name, elfsym, input_sec)
4139 struct elf_final_link_info *finfo;
4140 const char *name;
4141 Elf_Internal_Sym *elfsym;
4142 asection *input_sec;
4143 {
4144 Elf_External_Sym *dest;
4145 Elf_External_Sym_Shndx *destshndx;
4146 bfd_boolean (*output_symbol_hook)
4147 PARAMS ((bfd *, struct bfd_link_info *info, const char *,
4148 Elf_Internal_Sym *, asection *));
4149
4150 output_symbol_hook = get_elf_backend_data (finfo->output_bfd)->
4151 elf_backend_link_output_symbol_hook;
4152 if (output_symbol_hook != NULL)
4153 {
4154 if (! ((*output_symbol_hook)
4155 (finfo->output_bfd, finfo->info, name, elfsym, input_sec)))
4156 return FALSE;
4157 }
4158
4159 if (name == (const char *) NULL || *name == '\0')
4160 elfsym->st_name = 0;
4161 else if (input_sec->flags & SEC_EXCLUDE)
4162 elfsym->st_name = 0;
4163 else
4164 {
4165 elfsym->st_name = (unsigned long) _bfd_stringtab_add (finfo->symstrtab,
4166 name, TRUE, FALSE);
4167 if (elfsym->st_name == (unsigned long) -1)
4168 return FALSE;
4169 }
4170
4171 if (finfo->symbuf_count >= finfo->symbuf_size)
4172 {
4173 if (! elf_link_flush_output_syms (finfo))
4174 return FALSE;
4175 }
4176
4177 dest = finfo->symbuf + finfo->symbuf_count;
4178 destshndx = finfo->symshndxbuf;
4179 if (destshndx != NULL)
4180 {
4181 if (bfd_get_symcount (finfo->output_bfd) >= finfo->shndxbuf_size)
4182 {
4183 bfd_size_type amt;
4184
4185 amt = finfo->shndxbuf_size * sizeof (Elf_External_Sym_Shndx);
4186 finfo->symshndxbuf = destshndx = bfd_realloc (destshndx, amt * 2);
4187 if (destshndx == NULL)
4188 return FALSE;
4189 memset ((char *) destshndx + amt, 0, amt);
4190 finfo->shndxbuf_size *= 2;
4191 }
4192 destshndx += bfd_get_symcount (finfo->output_bfd);
4193 }
4194
4195 elf_swap_symbol_out (finfo->output_bfd, elfsym, (PTR) dest, (PTR) destshndx);
4196 finfo->symbuf_count += 1;
4197 bfd_get_symcount (finfo->output_bfd) += 1;
4198
4199 return TRUE;
4200 }
4201
4202 /* Flush the output symbols to the file. */
4203
4204 static bfd_boolean
4205 elf_link_flush_output_syms (finfo)
4206 struct elf_final_link_info *finfo;
4207 {
4208 if (finfo->symbuf_count > 0)
4209 {
4210 Elf_Internal_Shdr *hdr;
4211 file_ptr pos;
4212 bfd_size_type amt;
4213
4214 hdr = &elf_tdata (finfo->output_bfd)->symtab_hdr;
4215 pos = hdr->sh_offset + hdr->sh_size;
4216 amt = finfo->symbuf_count * sizeof (Elf_External_Sym);
4217 if (bfd_seek (finfo->output_bfd, pos, SEEK_SET) != 0
4218 || bfd_bwrite ((PTR) finfo->symbuf, amt, finfo->output_bfd) != amt)
4219 return FALSE;
4220
4221 hdr->sh_size += amt;
4222 finfo->symbuf_count = 0;
4223 }
4224
4225 return TRUE;
4226 }
4227
4228 /* For DSOs loaded in via a DT_NEEDED entry, emulate ld.so in
4229 allowing an unsatisfied unversioned symbol in the DSO to match a
4230 versioned symbol that would normally require an explicit version.
4231 We also handle the case that a DSO references a hidden symbol
4232 which may be satisfied by a versioned symbol in another DSO. */
4233
4234 static bfd_boolean
4235 elf_link_check_versioned_symbol (info, h)
4236 struct bfd_link_info *info;
4237 struct elf_link_hash_entry *h;
4238 {
4239 bfd *abfd;
4240 struct elf_link_loaded_list *loaded;
4241
4242 if (info->hash->creator->flavour != bfd_target_elf_flavour)
4243 return FALSE;
4244
4245 switch (h->root.type)
4246 {
4247 default:
4248 abfd = NULL;
4249 break;
4250
4251 case bfd_link_hash_undefined:
4252 case bfd_link_hash_undefweak:
4253 abfd = h->root.u.undef.abfd;
4254 if ((abfd->flags & DYNAMIC) == 0 || elf_dt_soname (abfd) == NULL)
4255 return FALSE;
4256 break;
4257
4258 case bfd_link_hash_defined:
4259 case bfd_link_hash_defweak:
4260 abfd = h->root.u.def.section->owner;
4261 break;
4262
4263 case bfd_link_hash_common:
4264 abfd = h->root.u.c.p->section->owner;
4265 break;
4266 }
4267 BFD_ASSERT (abfd != NULL);
4268
4269 for (loaded = elf_hash_table (info)->loaded;
4270 loaded != NULL;
4271 loaded = loaded->next)
4272 {
4273 bfd *input;
4274 Elf_Internal_Shdr *hdr;
4275 bfd_size_type symcount;
4276 bfd_size_type extsymcount;
4277 bfd_size_type extsymoff;
4278 Elf_Internal_Shdr *versymhdr;
4279 Elf_Internal_Sym *isym;
4280 Elf_Internal_Sym *isymend;
4281 Elf_Internal_Sym *isymbuf;
4282 Elf_External_Versym *ever;
4283 Elf_External_Versym *extversym;
4284
4285 input = loaded->abfd;
4286
4287 /* We check each DSO for a possible hidden versioned definition. */
4288 if (input == abfd
4289 || (input->flags & DYNAMIC) == 0
4290 || elf_dynversym (input) == 0)
4291 continue;
4292
4293 hdr = &elf_tdata (input)->dynsymtab_hdr;
4294
4295 symcount = hdr->sh_size / sizeof (Elf_External_Sym);
4296 if (elf_bad_symtab (input))
4297 {
4298 extsymcount = symcount;
4299 extsymoff = 0;
4300 }
4301 else
4302 {
4303 extsymcount = symcount - hdr->sh_info;
4304 extsymoff = hdr->sh_info;
4305 }
4306
4307 if (extsymcount == 0)
4308 continue;
4309
4310 isymbuf = bfd_elf_get_elf_syms (input, hdr, extsymcount, extsymoff,
4311 NULL, NULL, NULL);
4312 if (isymbuf == NULL)
4313 return FALSE;
4314
4315 /* Read in any version definitions. */
4316 versymhdr = &elf_tdata (input)->dynversym_hdr;
4317 extversym = (Elf_External_Versym *) bfd_malloc (versymhdr->sh_size);
4318 if (extversym == NULL)
4319 goto error_ret;
4320
4321 if (bfd_seek (input, versymhdr->sh_offset, SEEK_SET) != 0
4322 || (bfd_bread ((PTR) extversym, versymhdr->sh_size, input)
4323 != versymhdr->sh_size))
4324 {
4325 free (extversym);
4326 error_ret:
4327 free (isymbuf);
4328 return FALSE;
4329 }
4330
4331 ever = extversym + extsymoff;
4332 isymend = isymbuf + extsymcount;
4333 for (isym = isymbuf; isym < isymend; isym++, ever++)
4334 {
4335 const char *name;
4336 Elf_Internal_Versym iver;
4337 unsigned short version_index;
4338
4339 if (ELF_ST_BIND (isym->st_info) == STB_LOCAL
4340 || isym->st_shndx == SHN_UNDEF)
4341 continue;
4342
4343 name = bfd_elf_string_from_elf_section (input,
4344 hdr->sh_link,
4345 isym->st_name);
4346 if (strcmp (name, h->root.root.string) != 0)
4347 continue;
4348
4349 _bfd_elf_swap_versym_in (input, ever, &iver);
4350
4351 if ((iver.vs_vers & VERSYM_HIDDEN) == 0)
4352 {
4353 /* If we have a non-hidden versioned sym, then it should
4354 have provided a definition for the undefined sym. */
4355 abort ();
4356 }
4357
4358 version_index = iver.vs_vers & VERSYM_VERSION;
4359 if (version_index == 1 || version_index == 2)
4360 {
4361 /* This is the base or first version. We can use it. */
4362 free (extversym);
4363 free (isymbuf);
4364 return TRUE;
4365 }
4366 }
4367
4368 free (extversym);
4369 free (isymbuf);
4370 }
4371
4372 return FALSE;
4373 }
4374
4375 /* Add an external symbol to the symbol table. This is called from
4376 the hash table traversal routine. When generating a shared object,
4377 we go through the symbol table twice. The first time we output
4378 anything that might have been forced to local scope in a version
4379 script. The second time we output the symbols that are still
4380 global symbols. */
4381
4382 static bfd_boolean
4383 elf_link_output_extsym (h, data)
4384 struct elf_link_hash_entry *h;
4385 PTR data;
4386 {
4387 struct elf_outext_info *eoinfo = (struct elf_outext_info *) data;
4388 struct elf_final_link_info *finfo = eoinfo->finfo;
4389 bfd_boolean strip;
4390 Elf_Internal_Sym sym;
4391 asection *input_sec;
4392
4393 if (h->root.type == bfd_link_hash_warning)
4394 {
4395 h = (struct elf_link_hash_entry *) h->root.u.i.link;
4396 if (h->root.type == bfd_link_hash_new)
4397 return TRUE;
4398 }
4399
4400 /* Decide whether to output this symbol in this pass. */
4401 if (eoinfo->localsyms)
4402 {
4403 if ((h->elf_link_hash_flags & ELF_LINK_FORCED_LOCAL) == 0)
4404 return TRUE;
4405 }
4406 else
4407 {
4408 if ((h->elf_link_hash_flags & ELF_LINK_FORCED_LOCAL) != 0)
4409 return TRUE;
4410 }
4411
4412 /* If we are not creating a shared library, and this symbol is
4413 referenced by a shared library but is not defined anywhere, then
4414 warn that it is undefined. If we do not do this, the runtime
4415 linker will complain that the symbol is undefined when the
4416 program is run. We don't have to worry about symbols that are
4417 referenced by regular files, because we will already have issued
4418 warnings for them. */
4419 if (! finfo->info->relocateable
4420 && (finfo->info->executable
4421 || ! finfo->info->allow_shlib_undefined)
4422 && h->root.type == bfd_link_hash_undefined
4423 && (h->elf_link_hash_flags & ELF_LINK_HASH_REF_DYNAMIC) != 0
4424 && (h->elf_link_hash_flags & ELF_LINK_HASH_REF_REGULAR) == 0
4425 && ! elf_link_check_versioned_symbol (finfo->info, h))
4426 {
4427 if (! ((*finfo->info->callbacks->undefined_symbol)
4428 (finfo->info, h->root.root.string, h->root.u.undef.abfd,
4429 (asection *) NULL, (bfd_vma) 0, TRUE)))
4430 {
4431 eoinfo->failed = TRUE;
4432 return FALSE;
4433 }
4434 }
4435
4436 /* We should also warn if a forced local symbol is referenced from
4437 shared libraries. */
4438 if (! finfo->info->relocateable
4439 && (! finfo->info->shared || ! finfo->info->allow_shlib_undefined)
4440 && (h->elf_link_hash_flags
4441 & (ELF_LINK_FORCED_LOCAL | ELF_LINK_HASH_REF_DYNAMIC
4442 | ELF_LINK_DYNAMIC_DEF | ELF_LINK_DYNAMIC_WEAK))
4443 == (ELF_LINK_FORCED_LOCAL | ELF_LINK_HASH_REF_DYNAMIC)
4444 && ! elf_link_check_versioned_symbol (finfo->info, h))
4445 {
4446 (*_bfd_error_handler)
4447 (_("%s: %s symbol `%s' in %s is referenced by DSO"),
4448 bfd_get_filename (finfo->output_bfd),
4449 ELF_ST_VISIBILITY (h->other) == STV_INTERNAL
4450 ? "internal"
4451 : ELF_ST_VISIBILITY (h->other) == STV_HIDDEN
4452 ? "hidden" : "local",
4453 h->root.root.string,
4454 bfd_archive_filename (h->root.u.def.section->owner));
4455 eoinfo->failed = TRUE;
4456 return FALSE;
4457 }
4458
4459 /* We don't want to output symbols that have never been mentioned by
4460 a regular file, or that we have been told to strip. However, if
4461 h->indx is set to -2, the symbol is used by a reloc and we must
4462 output it. */
4463 if (h->indx == -2)
4464 strip = FALSE;
4465 else if (((h->elf_link_hash_flags & ELF_LINK_HASH_DEF_DYNAMIC) != 0
4466 || (h->elf_link_hash_flags & ELF_LINK_HASH_REF_DYNAMIC) != 0)
4467 && (h->elf_link_hash_flags & ELF_LINK_HASH_DEF_REGULAR) == 0
4468 && (h->elf_link_hash_flags & ELF_LINK_HASH_REF_REGULAR) == 0)
4469 strip = TRUE;
4470 else if (finfo->info->strip == strip_all)
4471 strip = TRUE;
4472 else if (finfo->info->strip == strip_some
4473 && bfd_hash_lookup (finfo->info->keep_hash,
4474 h->root.root.string, FALSE, FALSE) == NULL)
4475 strip = TRUE;
4476 else if (finfo->info->strip_discarded
4477 && (h->root.type == bfd_link_hash_defined
4478 || h->root.type == bfd_link_hash_defweak)
4479 && elf_discarded_section (h->root.u.def.section))
4480 strip = TRUE;
4481 else
4482 strip = FALSE;
4483
4484 /* If we're stripping it, and it's not a dynamic symbol, there's
4485 nothing else to do unless it is a forced local symbol. */
4486 if (strip
4487 && h->dynindx == -1
4488 && (h->elf_link_hash_flags & ELF_LINK_FORCED_LOCAL) == 0)
4489 return TRUE;
4490
4491 sym.st_value = 0;
4492 sym.st_size = h->size;
4493 sym.st_other = h->other;
4494 if ((h->elf_link_hash_flags & ELF_LINK_FORCED_LOCAL) != 0)
4495 sym.st_info = ELF_ST_INFO (STB_LOCAL, h->type);
4496 else if (h->root.type == bfd_link_hash_undefweak
4497 || h->root.type == bfd_link_hash_defweak)
4498 sym.st_info = ELF_ST_INFO (STB_WEAK, h->type);
4499 else
4500 sym.st_info = ELF_ST_INFO (STB_GLOBAL, h->type);
4501
4502 switch (h->root.type)
4503 {
4504 default:
4505 case bfd_link_hash_new:
4506 case bfd_link_hash_warning:
4507 abort ();
4508 return FALSE;
4509
4510 case bfd_link_hash_undefined:
4511 case bfd_link_hash_undefweak:
4512 input_sec = bfd_und_section_ptr;
4513 sym.st_shndx = SHN_UNDEF;
4514 break;
4515
4516 case bfd_link_hash_defined:
4517 case bfd_link_hash_defweak:
4518 {
4519 input_sec = h->root.u.def.section;
4520 if (input_sec->output_section != NULL)
4521 {
4522 sym.st_shndx =
4523 _bfd_elf_section_from_bfd_section (finfo->output_bfd,
4524 input_sec->output_section);
4525 if (sym.st_shndx == SHN_BAD)
4526 {
4527 (*_bfd_error_handler)
4528 (_("%s: could not find output section %s for input section %s"),
4529 bfd_get_filename (finfo->output_bfd),
4530 input_sec->output_section->name,
4531 input_sec->name);
4532 eoinfo->failed = TRUE;
4533 return FALSE;
4534 }
4535
4536 /* ELF symbols in relocateable files are section relative,
4537 but in nonrelocateable files they are virtual
4538 addresses. */
4539 sym.st_value = h->root.u.def.value + input_sec->output_offset;
4540 if (! finfo->info->relocateable)
4541 {
4542 sym.st_value += input_sec->output_section->vma;
4543 if (h->type == STT_TLS)
4544 {
4545 /* STT_TLS symbols are relative to PT_TLS segment
4546 base. */
4547 BFD_ASSERT (finfo->first_tls_sec != NULL);
4548 sym.st_value -= finfo->first_tls_sec->vma;
4549 }
4550 }
4551 }
4552 else
4553 {
4554 BFD_ASSERT (input_sec->owner == NULL
4555 || (input_sec->owner->flags & DYNAMIC) != 0);
4556 sym.st_shndx = SHN_UNDEF;
4557 input_sec = bfd_und_section_ptr;
4558 }
4559 }
4560 break;
4561
4562 case bfd_link_hash_common:
4563 input_sec = h->root.u.c.p->section;
4564 sym.st_shndx = SHN_COMMON;
4565 sym.st_value = 1 << h->root.u.c.p->alignment_power;
4566 break;
4567
4568 case bfd_link_hash_indirect:
4569 /* These symbols are created by symbol versioning. They point
4570 to the decorated version of the name. For example, if the
4571 symbol foo@@GNU_1.2 is the default, which should be used when
4572 foo is used with no version, then we add an indirect symbol
4573 foo which points to foo@@GNU_1.2. We ignore these symbols,
4574 since the indirected symbol is already in the hash table. */
4575 return TRUE;
4576 }
4577
4578 /* Give the processor backend a chance to tweak the symbol value,
4579 and also to finish up anything that needs to be done for this
4580 symbol. FIXME: Not calling elf_backend_finish_dynamic_symbol for
4581 forced local syms when non-shared is due to a historical quirk. */
4582 if ((h->dynindx != -1
4583 || (h->elf_link_hash_flags & ELF_LINK_FORCED_LOCAL) != 0)
4584 && ((finfo->info->shared
4585 && (ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
4586 || h->root.type != bfd_link_hash_undefweak))
4587 || (h->elf_link_hash_flags & ELF_LINK_FORCED_LOCAL) == 0)
4588 && elf_hash_table (finfo->info)->dynamic_sections_created)
4589 {
4590 struct elf_backend_data *bed;
4591
4592 bed = get_elf_backend_data (finfo->output_bfd);
4593 if (! ((*bed->elf_backend_finish_dynamic_symbol)
4594 (finfo->output_bfd, finfo->info, h, &sym)))
4595 {
4596 eoinfo->failed = TRUE;
4597 return FALSE;
4598 }
4599 }
4600
4601 /* If we are marking the symbol as undefined, and there are no
4602 non-weak references to this symbol from a regular object, then
4603 mark the symbol as weak undefined; if there are non-weak
4604 references, mark the symbol as strong. We can't do this earlier,
4605 because it might not be marked as undefined until the
4606 finish_dynamic_symbol routine gets through with it. */
4607 if (sym.st_shndx == SHN_UNDEF
4608 && (h->elf_link_hash_flags & ELF_LINK_HASH_REF_REGULAR) != 0
4609 && (ELF_ST_BIND (sym.st_info) == STB_GLOBAL
4610 || ELF_ST_BIND (sym.st_info) == STB_WEAK))
4611 {
4612 int bindtype;
4613
4614 if ((h->elf_link_hash_flags & ELF_LINK_HASH_REF_REGULAR_NONWEAK) != 0)
4615 bindtype = STB_GLOBAL;
4616 else
4617 bindtype = STB_WEAK;
4618 sym.st_info = ELF_ST_INFO (bindtype, ELF_ST_TYPE (sym.st_info));
4619 }
4620
4621 /* If a non-weak symbol with non-default visibility is not defined
4622 locally, it is a fatal error. */
4623 if (! finfo->info->relocateable
4624 && ELF_ST_VISIBILITY (sym.st_other) != STV_DEFAULT
4625 && ELF_ST_BIND (sym.st_info) != STB_WEAK
4626 && h->root.type == bfd_link_hash_undefined
4627 && (h->elf_link_hash_flags & ELF_LINK_HASH_DEF_REGULAR) == 0)
4628 {
4629 (*_bfd_error_handler)
4630 (_("%s: %s symbol `%s' isn't defined"),
4631 bfd_get_filename (finfo->output_bfd),
4632 ELF_ST_VISIBILITY (sym.st_other) == STV_PROTECTED
4633 ? "protected"
4634 : ELF_ST_VISIBILITY (sym.st_other) == STV_INTERNAL
4635 ? "internal" : "hidden",
4636 h->root.root.string);
4637 eoinfo->failed = TRUE;
4638 return FALSE;
4639 }
4640
4641 /* If this symbol should be put in the .dynsym section, then put it
4642 there now. We already know the symbol index. We also fill in
4643 the entry in the .hash section. */
4644 if (h->dynindx != -1
4645 && elf_hash_table (finfo->info)->dynamic_sections_created)
4646 {
4647 size_t bucketcount;
4648 size_t bucket;
4649 size_t hash_entry_size;
4650 bfd_byte *bucketpos;
4651 bfd_vma chain;
4652 Elf_External_Sym *esym;
4653
4654 sym.st_name = h->dynstr_index;
4655 esym = (Elf_External_Sym *) finfo->dynsym_sec->contents + h->dynindx;
4656 elf_swap_symbol_out (finfo->output_bfd, &sym, (PTR) esym, (PTR) 0);
4657
4658 bucketcount = elf_hash_table (finfo->info)->bucketcount;
4659 bucket = h->elf_hash_value % bucketcount;
4660 hash_entry_size
4661 = elf_section_data (finfo->hash_sec)->this_hdr.sh_entsize;
4662 bucketpos = ((bfd_byte *) finfo->hash_sec->contents
4663 + (bucket + 2) * hash_entry_size);
4664 chain = bfd_get (8 * hash_entry_size, finfo->output_bfd, bucketpos);
4665 bfd_put (8 * hash_entry_size, finfo->output_bfd, (bfd_vma) h->dynindx,
4666 bucketpos);
4667 bfd_put (8 * hash_entry_size, finfo->output_bfd, chain,
4668 ((bfd_byte *) finfo->hash_sec->contents
4669 + (bucketcount + 2 + h->dynindx) * hash_entry_size));
4670
4671 if (finfo->symver_sec != NULL && finfo->symver_sec->contents != NULL)
4672 {
4673 Elf_Internal_Versym iversym;
4674 Elf_External_Versym *eversym;
4675
4676 if ((h->elf_link_hash_flags & ELF_LINK_HASH_DEF_REGULAR) == 0)
4677 {
4678 if (h->verinfo.verdef == NULL)
4679 iversym.vs_vers = 0;
4680 else
4681 iversym.vs_vers = h->verinfo.verdef->vd_exp_refno + 1;
4682 }
4683 else
4684 {
4685 if (h->verinfo.vertree == NULL)
4686 iversym.vs_vers = 1;
4687 else
4688 iversym.vs_vers = h->verinfo.vertree->vernum + 1;
4689 }
4690
4691 if ((h->elf_link_hash_flags & ELF_LINK_HIDDEN) != 0)
4692 iversym.vs_vers |= VERSYM_HIDDEN;
4693
4694 eversym = (Elf_External_Versym *) finfo->symver_sec->contents;
4695 eversym += h->dynindx;
4696 _bfd_elf_swap_versym_out (finfo->output_bfd, &iversym, eversym);
4697 }
4698 }
4699
4700 /* If we're stripping it, then it was just a dynamic symbol, and
4701 there's nothing else to do. */
4702 if (strip || (input_sec->flags & SEC_EXCLUDE) != 0)
4703 return TRUE;
4704
4705 h->indx = bfd_get_symcount (finfo->output_bfd);
4706
4707 if (! elf_link_output_sym (finfo, h->root.root.string, &sym, input_sec))
4708 {
4709 eoinfo->failed = TRUE;
4710 return FALSE;
4711 }
4712
4713 return TRUE;
4714 }
4715
4716 /* Link an input file into the linker output file. This function
4717 handles all the sections and relocations of the input file at once.
4718 This is so that we only have to read the local symbols once, and
4719 don't have to keep them in memory. */
4720
4721 static bfd_boolean
4722 elf_link_input_bfd (finfo, input_bfd)
4723 struct elf_final_link_info *finfo;
4724 bfd *input_bfd;
4725 {
4726 bfd_boolean (*relocate_section)
4727 PARAMS ((bfd *, struct bfd_link_info *, bfd *, asection *, bfd_byte *,
4728 Elf_Internal_Rela *, Elf_Internal_Sym *, asection **));
4729 bfd *output_bfd;
4730 Elf_Internal_Shdr *symtab_hdr;
4731 size_t locsymcount;
4732 size_t extsymoff;
4733 Elf_Internal_Sym *isymbuf;
4734 Elf_Internal_Sym *isym;
4735 Elf_Internal_Sym *isymend;
4736 long *pindex;
4737 asection **ppsection;
4738 asection *o;
4739 struct elf_backend_data *bed;
4740 bfd_boolean emit_relocs;
4741 struct elf_link_hash_entry **sym_hashes;
4742
4743 output_bfd = finfo->output_bfd;
4744 bed = get_elf_backend_data (output_bfd);
4745 relocate_section = bed->elf_backend_relocate_section;
4746
4747 /* If this is a dynamic object, we don't want to do anything here:
4748 we don't want the local symbols, and we don't want the section
4749 contents. */
4750 if ((input_bfd->flags & DYNAMIC) != 0)
4751 return TRUE;
4752
4753 emit_relocs = (finfo->info->relocateable
4754 || finfo->info->emitrelocations
4755 || bed->elf_backend_emit_relocs);
4756
4757 symtab_hdr = &elf_tdata (input_bfd)->symtab_hdr;
4758 if (elf_bad_symtab (input_bfd))
4759 {
4760 locsymcount = symtab_hdr->sh_size / sizeof (Elf_External_Sym);
4761 extsymoff = 0;
4762 }
4763 else
4764 {
4765 locsymcount = symtab_hdr->sh_info;
4766 extsymoff = symtab_hdr->sh_info;
4767 }
4768
4769 /* Read the local symbols. */
4770 isymbuf = (Elf_Internal_Sym *) symtab_hdr->contents;
4771 if (isymbuf == NULL && locsymcount != 0)
4772 {
4773 isymbuf = bfd_elf_get_elf_syms (input_bfd, symtab_hdr, locsymcount, 0,
4774 finfo->internal_syms,
4775 finfo->external_syms,
4776 finfo->locsym_shndx);
4777 if (isymbuf == NULL)
4778 return FALSE;
4779 }
4780
4781 /* Find local symbol sections and adjust values of symbols in
4782 SEC_MERGE sections. Write out those local symbols we know are
4783 going into the output file. */
4784 isymend = isymbuf + locsymcount;
4785 for (isym = isymbuf, pindex = finfo->indices, ppsection = finfo->sections;
4786 isym < isymend;
4787 isym++, pindex++, ppsection++)
4788 {
4789 asection *isec;
4790 const char *name;
4791 Elf_Internal_Sym osym;
4792
4793 *pindex = -1;
4794
4795 if (elf_bad_symtab (input_bfd))
4796 {
4797 if (ELF_ST_BIND (isym->st_info) != STB_LOCAL)
4798 {
4799 *ppsection = NULL;
4800 continue;
4801 }
4802 }
4803
4804 if (isym->st_shndx == SHN_UNDEF)
4805 isec = bfd_und_section_ptr;
4806 else if (isym->st_shndx < SHN_LORESERVE
4807 || isym->st_shndx > SHN_HIRESERVE)
4808 {
4809 isec = section_from_elf_index (input_bfd, isym->st_shndx);
4810 if (isec
4811 && isec->sec_info_type == ELF_INFO_TYPE_MERGE
4812 && ELF_ST_TYPE (isym->st_info) != STT_SECTION)
4813 isym->st_value =
4814 _bfd_merged_section_offset (output_bfd, &isec,
4815 elf_section_data (isec)->sec_info,
4816 isym->st_value, (bfd_vma) 0);
4817 }
4818 else if (isym->st_shndx == SHN_ABS)
4819 isec = bfd_abs_section_ptr;
4820 else if (isym->st_shndx == SHN_COMMON)
4821 isec = bfd_com_section_ptr;
4822 else
4823 {
4824 /* Who knows? */
4825 isec = NULL;
4826 }
4827
4828 *ppsection = isec;
4829
4830 /* Don't output the first, undefined, symbol. */
4831 if (ppsection == finfo->sections)
4832 continue;
4833
4834 if (ELF_ST_TYPE (isym->st_info) == STT_SECTION)
4835 {
4836 /* We never output section symbols. Instead, we use the
4837 section symbol of the corresponding section in the output
4838 file. */
4839 continue;
4840 }
4841
4842 /* If we are stripping all symbols, we don't want to output this
4843 one. */
4844 if (finfo->info->strip == strip_all)
4845 continue;
4846
4847 /* If we are discarding all local symbols, we don't want to
4848 output this one. If we are generating a relocateable output
4849 file, then some of the local symbols may be required by
4850 relocs; we output them below as we discover that they are
4851 needed. */
4852 if (finfo->info->discard == discard_all)
4853 continue;
4854
4855 /* If this symbol is defined in a section which we are
4856 discarding, we don't need to keep it, but note that
4857 linker_mark is only reliable for sections that have contents.
4858 For the benefit of the MIPS ELF linker, we check SEC_EXCLUDE
4859 as well as linker_mark. */
4860 if ((isym->st_shndx < SHN_LORESERVE || isym->st_shndx > SHN_HIRESERVE)
4861 && isec != NULL
4862 && ((! isec->linker_mark && (isec->flags & SEC_HAS_CONTENTS) != 0)
4863 || (! finfo->info->relocateable
4864 && (isec->flags & SEC_EXCLUDE) != 0)))
4865 continue;
4866
4867 /* Get the name of the symbol. */
4868 name = bfd_elf_string_from_elf_section (input_bfd, symtab_hdr->sh_link,
4869 isym->st_name);
4870 if (name == NULL)
4871 return FALSE;
4872
4873 /* See if we are discarding symbols with this name. */
4874 if ((finfo->info->strip == strip_some
4875 && (bfd_hash_lookup (finfo->info->keep_hash, name, FALSE, FALSE)
4876 == NULL))
4877 || (((finfo->info->discard == discard_sec_merge
4878 && (isec->flags & SEC_MERGE) && ! finfo->info->relocateable)
4879 || finfo->info->discard == discard_l)
4880 && bfd_is_local_label_name (input_bfd, name)))
4881 continue;
4882
4883 /* If we get here, we are going to output this symbol. */
4884
4885 osym = *isym;
4886
4887 /* Adjust the section index for the output file. */
4888 osym.st_shndx = _bfd_elf_section_from_bfd_section (output_bfd,
4889 isec->output_section);
4890 if (osym.st_shndx == SHN_BAD)
4891 return FALSE;
4892
4893 *pindex = bfd_get_symcount (output_bfd);
4894
4895 /* ELF symbols in relocateable files are section relative, but
4896 in executable files they are virtual addresses. Note that
4897 this code assumes that all ELF sections have an associated
4898 BFD section with a reasonable value for output_offset; below
4899 we assume that they also have a reasonable value for
4900 output_section. Any special sections must be set up to meet
4901 these requirements. */
4902 osym.st_value += isec->output_offset;
4903 if (! finfo->info->relocateable)
4904 {
4905 osym.st_value += isec->output_section->vma;
4906 if (ELF_ST_TYPE (osym.st_info) == STT_TLS)
4907 {
4908 /* STT_TLS symbols are relative to PT_TLS segment base. */
4909 BFD_ASSERT (finfo->first_tls_sec != NULL);
4910 osym.st_value -= finfo->first_tls_sec->vma;
4911 }
4912 }
4913
4914 if (! elf_link_output_sym (finfo, name, &osym, isec))
4915 return FALSE;
4916 }
4917
4918 /* Relocate the contents of each section. */
4919 sym_hashes = elf_sym_hashes (input_bfd);
4920 for (o = input_bfd->sections; o != NULL; o = o->next)
4921 {
4922 bfd_byte *contents;
4923
4924 if (! o->linker_mark)
4925 {
4926 /* This section was omitted from the link. */
4927 continue;
4928 }
4929
4930 if ((o->flags & SEC_HAS_CONTENTS) == 0
4931 || (o->_raw_size == 0 && (o->flags & SEC_RELOC) == 0))
4932 continue;
4933
4934 if ((o->flags & SEC_LINKER_CREATED) != 0)
4935 {
4936 /* Section was created by _bfd_elf_link_create_dynamic_sections
4937 or somesuch. */
4938 continue;
4939 }
4940
4941 /* Get the contents of the section. They have been cached by a
4942 relaxation routine. Note that o is a section in an input
4943 file, so the contents field will not have been set by any of
4944 the routines which work on output files. */
4945 if (elf_section_data (o)->this_hdr.contents != NULL)
4946 contents = elf_section_data (o)->this_hdr.contents;
4947 else
4948 {
4949 contents = finfo->contents;
4950 if (! bfd_get_section_contents (input_bfd, o, contents,
4951 (file_ptr) 0, o->_raw_size))
4952 return FALSE;
4953 }
4954
4955 if ((o->flags & SEC_RELOC) != 0)
4956 {
4957 Elf_Internal_Rela *internal_relocs;
4958
4959 /* Get the swapped relocs. */
4960 internal_relocs
4961 = _bfd_elf_link_read_relocs (input_bfd, o, finfo->external_relocs,
4962 finfo->internal_relocs, FALSE);
4963 if (internal_relocs == NULL
4964 && o->reloc_count > 0)
4965 return FALSE;
4966
4967 /* Run through the relocs looking for any against symbols
4968 from discarded sections and section symbols from
4969 removed link-once sections. Complain about relocs
4970 against discarded sections. Zero relocs against removed
4971 link-once sections. */
4972 if (!finfo->info->relocateable
4973 && !elf_section_ignore_discarded_relocs (o))
4974 {
4975 Elf_Internal_Rela *rel, *relend;
4976
4977 rel = internal_relocs;
4978 relend = rel + o->reloc_count * bed->s->int_rels_per_ext_rel;
4979 for ( ; rel < relend; rel++)
4980 {
4981 unsigned long r_symndx = ELF_R_SYM (rel->r_info);
4982
4983 if (r_symndx >= locsymcount
4984 || (elf_bad_symtab (input_bfd)
4985 && finfo->sections[r_symndx] == NULL))
4986 {
4987 struct elf_link_hash_entry *h;
4988
4989 h = sym_hashes[r_symndx - extsymoff];
4990 while (h->root.type == bfd_link_hash_indirect
4991 || h->root.type == bfd_link_hash_warning)
4992 h = (struct elf_link_hash_entry *) h->root.u.i.link;
4993
4994 /* Complain if the definition comes from a
4995 discarded section. */
4996 if ((h->root.type == bfd_link_hash_defined
4997 || h->root.type == bfd_link_hash_defweak)
4998 && elf_discarded_section (h->root.u.def.section))
4999 {
5000 if ((o->flags & SEC_DEBUGGING) != 0)
5001 {
5002 BFD_ASSERT (r_symndx != 0);
5003 memset (rel, 0, sizeof (*rel));
5004 }
5005 else
5006 finfo->info->callbacks->error_handler
5007 (LD_DEFINITION_IN_DISCARDED_SECTION,
5008 _("%T: discarded in section `%s' from %s\n"),
5009 h->root.root.string,
5010 h->root.root.string,
5011 h->root.u.def.section->name,
5012 bfd_archive_filename (h->root.u.def.section->owner));
5013 }
5014 }
5015 else
5016 {
5017 asection *sec = finfo->sections[r_symndx];
5018
5019 if (sec != NULL && elf_discarded_section (sec))
5020 {
5021 if ((o->flags & SEC_DEBUGGING) != 0
5022 || (sec->flags & SEC_LINK_ONCE) != 0)
5023 {
5024 BFD_ASSERT (r_symndx != 0);
5025 rel->r_info
5026 = ELF_R_INFO (0, ELF_R_TYPE (rel->r_info));
5027 rel->r_addend = 0;
5028 }
5029 else
5030 {
5031 static int count;
5032 int ok;
5033 char *buf;
5034
5035 ok = asprintf (&buf, "local symbol %d",
5036 count++);
5037 if (ok <= 0)
5038 buf = (char *) "local symbol";
5039 finfo->info->callbacks->error_handler
5040 (LD_DEFINITION_IN_DISCARDED_SECTION,
5041 _("%T: discarded in section `%s' from %s\n"),
5042 buf, buf, sec->name,
5043 bfd_archive_filename (input_bfd));
5044 if (ok != -1)
5045 free (buf);
5046 }
5047 }
5048 }
5049 }
5050 }
5051
5052 /* Relocate the section by invoking a back end routine.
5053
5054 The back end routine is responsible for adjusting the
5055 section contents as necessary, and (if using Rela relocs
5056 and generating a relocateable output file) adjusting the
5057 reloc addend as necessary.
5058
5059 The back end routine does not have to worry about setting
5060 the reloc address or the reloc symbol index.
5061
5062 The back end routine is given a pointer to the swapped in
5063 internal symbols, and can access the hash table entries
5064 for the external symbols via elf_sym_hashes (input_bfd).
5065
5066 When generating relocateable output, the back end routine
5067 must handle STB_LOCAL/STT_SECTION symbols specially. The
5068 output symbol is going to be a section symbol
5069 corresponding to the output section, which will require
5070 the addend to be adjusted. */
5071
5072 if (! (*relocate_section) (output_bfd, finfo->info,
5073 input_bfd, o, contents,
5074 internal_relocs,
5075 isymbuf,
5076 finfo->sections))
5077 return FALSE;
5078
5079 if (emit_relocs)
5080 {
5081 Elf_Internal_Rela *irela;
5082 Elf_Internal_Rela *irelaend;
5083 bfd_vma last_offset;
5084 struct elf_link_hash_entry **rel_hash;
5085 Elf_Internal_Shdr *input_rel_hdr, *input_rel_hdr2;
5086 unsigned int next_erel;
5087 bfd_boolean (*reloc_emitter)
5088 PARAMS ((bfd *, asection *, Elf_Internal_Shdr *,
5089 Elf_Internal_Rela *));
5090 bfd_boolean rela_normal;
5091
5092 input_rel_hdr = &elf_section_data (o)->rel_hdr;
5093 rela_normal = (bed->rela_normal
5094 && (input_rel_hdr->sh_entsize
5095 == sizeof (Elf_External_Rela)));
5096
5097 /* Adjust the reloc addresses and symbol indices. */
5098
5099 irela = internal_relocs;
5100 irelaend = irela + o->reloc_count * bed->s->int_rels_per_ext_rel;
5101 rel_hash = (elf_section_data (o->output_section)->rel_hashes
5102 + elf_section_data (o->output_section)->rel_count
5103 + elf_section_data (o->output_section)->rel_count2);
5104 last_offset = o->output_offset;
5105 if (!finfo->info->relocateable)
5106 last_offset += o->output_section->vma;
5107 for (next_erel = 0; irela < irelaend; irela++, next_erel++)
5108 {
5109 unsigned long r_symndx;
5110 asection *sec;
5111 Elf_Internal_Sym sym;
5112
5113 if (next_erel == bed->s->int_rels_per_ext_rel)
5114 {
5115 rel_hash++;
5116 next_erel = 0;
5117 }
5118
5119 irela->r_offset = _bfd_elf_section_offset (output_bfd,
5120 finfo->info, o,
5121 irela->r_offset);
5122 if (irela->r_offset >= (bfd_vma) -2)
5123 {
5124 /* This is a reloc for a deleted entry or somesuch.
5125 Turn it into an R_*_NONE reloc, at the same
5126 offset as the last reloc. elf_eh_frame.c and
5127 elf_bfd_discard_info rely on reloc offsets
5128 being ordered. */
5129 irela->r_offset = last_offset;
5130 irela->r_info = 0;
5131 irela->r_addend = 0;
5132 continue;
5133 }
5134
5135 irela->r_offset += o->output_offset;
5136
5137 /* Relocs in an executable have to be virtual addresses. */
5138 if (!finfo->info->relocateable)
5139 irela->r_offset += o->output_section->vma;
5140
5141 last_offset = irela->r_offset;
5142
5143 r_symndx = ELF_R_SYM (irela->r_info);
5144 if (r_symndx == STN_UNDEF)
5145 continue;
5146
5147 if (r_symndx >= locsymcount
5148 || (elf_bad_symtab (input_bfd)
5149 && finfo->sections[r_symndx] == NULL))
5150 {
5151 struct elf_link_hash_entry *rh;
5152 unsigned long indx;
5153
5154 /* This is a reloc against a global symbol. We
5155 have not yet output all the local symbols, so
5156 we do not know the symbol index of any global
5157 symbol. We set the rel_hash entry for this
5158 reloc to point to the global hash table entry
5159 for this symbol. The symbol index is then
5160 set at the end of elf_bfd_final_link. */
5161 indx = r_symndx - extsymoff;
5162 rh = elf_sym_hashes (input_bfd)[indx];
5163 while (rh->root.type == bfd_link_hash_indirect
5164 || rh->root.type == bfd_link_hash_warning)
5165 rh = (struct elf_link_hash_entry *) rh->root.u.i.link;
5166
5167 /* Setting the index to -2 tells
5168 elf_link_output_extsym that this symbol is
5169 used by a reloc. */
5170 BFD_ASSERT (rh->indx < 0);
5171 rh->indx = -2;
5172
5173 *rel_hash = rh;
5174
5175 continue;
5176 }
5177
5178 /* This is a reloc against a local symbol. */
5179
5180 *rel_hash = NULL;
5181 sym = isymbuf[r_symndx];
5182 sec = finfo->sections[r_symndx];
5183 if (ELF_ST_TYPE (sym.st_info) == STT_SECTION)
5184 {
5185 /* I suppose the backend ought to fill in the
5186 section of any STT_SECTION symbol against a
5187 processor specific section. If we have
5188 discarded a section, the output_section will
5189 be the absolute section. */
5190 if (bfd_is_abs_section (sec)
5191 || (sec != NULL
5192 && bfd_is_abs_section (sec->output_section)))
5193 r_symndx = 0;
5194 else if (sec == NULL || sec->owner == NULL)
5195 {
5196 bfd_set_error (bfd_error_bad_value);
5197 return FALSE;
5198 }
5199 else
5200 {
5201 r_symndx = sec->output_section->target_index;
5202 BFD_ASSERT (r_symndx != 0);
5203 }
5204
5205 /* Adjust the addend according to where the
5206 section winds up in the output section. */
5207 if (rela_normal)
5208 irela->r_addend += sec->output_offset;
5209 }
5210 else
5211 {
5212 if (finfo->indices[r_symndx] == -1)
5213 {
5214 unsigned long shlink;
5215 const char *name;
5216 asection *osec;
5217
5218 if (finfo->info->strip == strip_all)
5219 {
5220 /* You can't do ld -r -s. */
5221 bfd_set_error (bfd_error_invalid_operation);
5222 return FALSE;
5223 }
5224
5225 /* This symbol was skipped earlier, but
5226 since it is needed by a reloc, we
5227 must output it now. */
5228 shlink = symtab_hdr->sh_link;
5229 name = (bfd_elf_string_from_elf_section
5230 (input_bfd, shlink, sym.st_name));
5231 if (name == NULL)
5232 return FALSE;
5233
5234 osec = sec->output_section;
5235 sym.st_shndx =
5236 _bfd_elf_section_from_bfd_section (output_bfd,
5237 osec);
5238 if (sym.st_shndx == SHN_BAD)
5239 return FALSE;
5240
5241 sym.st_value += sec->output_offset;
5242 if (! finfo->info->relocateable)
5243 {
5244 sym.st_value += osec->vma;
5245 if (ELF_ST_TYPE (sym.st_info) == STT_TLS)
5246 {
5247 /* STT_TLS symbols are relative to PT_TLS
5248 segment base. */
5249 BFD_ASSERT (finfo->first_tls_sec != NULL);
5250 sym.st_value -= finfo->first_tls_sec->vma;
5251 }
5252 }
5253
5254 finfo->indices[r_symndx]
5255 = bfd_get_symcount (output_bfd);
5256
5257 if (! elf_link_output_sym (finfo, name, &sym, sec))
5258 return FALSE;
5259 }
5260
5261 r_symndx = finfo->indices[r_symndx];
5262 }
5263
5264 irela->r_info = ELF_R_INFO (r_symndx,
5265 ELF_R_TYPE (irela->r_info));
5266 }
5267
5268 /* Swap out the relocs. */
5269 if (bed->elf_backend_emit_relocs
5270 && !(finfo->info->relocateable
5271 || finfo->info->emitrelocations))
5272 reloc_emitter = bed->elf_backend_emit_relocs;
5273 else
5274 reloc_emitter = _bfd_elf_link_output_relocs;
5275
5276 if (input_rel_hdr->sh_size != 0
5277 && ! (*reloc_emitter) (output_bfd, o, input_rel_hdr,
5278 internal_relocs))
5279 return FALSE;
5280
5281 input_rel_hdr2 = elf_section_data (o)->rel_hdr2;
5282 if (input_rel_hdr2 && input_rel_hdr2->sh_size != 0)
5283 {
5284 internal_relocs += (NUM_SHDR_ENTRIES (input_rel_hdr)
5285 * bed->s->int_rels_per_ext_rel);
5286 if (! (*reloc_emitter) (output_bfd, o, input_rel_hdr2,
5287 internal_relocs))
5288 return FALSE;
5289 }
5290 }
5291 }
5292
5293 /* Write out the modified section contents. */
5294 if (bed->elf_backend_write_section
5295 && (*bed->elf_backend_write_section) (output_bfd, o, contents))
5296 {
5297 /* Section written out. */
5298 }
5299 else switch (o->sec_info_type)
5300 {
5301 case ELF_INFO_TYPE_STABS:
5302 if (! (_bfd_write_section_stabs
5303 (output_bfd,
5304 &elf_hash_table (finfo->info)->stab_info,
5305 o, &elf_section_data (o)->sec_info, contents)))
5306 return FALSE;
5307 break;
5308 case ELF_INFO_TYPE_MERGE:
5309 if (! _bfd_write_merged_section (output_bfd, o,
5310 elf_section_data (o)->sec_info))
5311 return FALSE;
5312 break;
5313 case ELF_INFO_TYPE_EH_FRAME:
5314 {
5315 if (! _bfd_elf_write_section_eh_frame (output_bfd, finfo->info,
5316 o, contents))
5317 return FALSE;
5318 }
5319 break;
5320 default:
5321 {
5322 bfd_size_type sec_size;
5323
5324 sec_size = (o->_cooked_size != 0 ? o->_cooked_size : o->_raw_size);
5325 if (! (o->flags & SEC_EXCLUDE)
5326 && ! bfd_set_section_contents (output_bfd, o->output_section,
5327 contents,
5328 (file_ptr) o->output_offset,
5329 sec_size))
5330 return FALSE;
5331 }
5332 break;
5333 }
5334 }
5335
5336 return TRUE;
5337 }
5338
5339 /* Generate a reloc when linking an ELF file. This is a reloc
5340 requested by the linker, and does come from any input file. This
5341 is used to build constructor and destructor tables when linking
5342 with -Ur. */
5343
5344 static bfd_boolean
5345 elf_reloc_link_order (output_bfd, info, output_section, link_order)
5346 bfd *output_bfd;
5347 struct bfd_link_info *info;
5348 asection *output_section;
5349 struct bfd_link_order *link_order;
5350 {
5351 reloc_howto_type *howto;
5352 long indx;
5353 bfd_vma offset;
5354 bfd_vma addend;
5355 struct elf_link_hash_entry **rel_hash_ptr;
5356 Elf_Internal_Shdr *rel_hdr;
5357 struct elf_backend_data *bed = get_elf_backend_data (output_bfd);
5358 Elf_Internal_Rela irel[MAX_INT_RELS_PER_EXT_REL];
5359 bfd_byte *erel;
5360 unsigned int i;
5361
5362 howto = bfd_reloc_type_lookup (output_bfd, link_order->u.reloc.p->reloc);
5363 if (howto == NULL)
5364 {
5365 bfd_set_error (bfd_error_bad_value);
5366 return FALSE;
5367 }
5368
5369 addend = link_order->u.reloc.p->addend;
5370
5371 /* Figure out the symbol index. */
5372 rel_hash_ptr = (elf_section_data (output_section)->rel_hashes
5373 + elf_section_data (output_section)->rel_count
5374 + elf_section_data (output_section)->rel_count2);
5375 if (link_order->type == bfd_section_reloc_link_order)
5376 {
5377 indx = link_order->u.reloc.p->u.section->target_index;
5378 BFD_ASSERT (indx != 0);
5379 *rel_hash_ptr = NULL;
5380 }
5381 else
5382 {
5383 struct elf_link_hash_entry *h;
5384
5385 /* Treat a reloc against a defined symbol as though it were
5386 actually against the section. */
5387 h = ((struct elf_link_hash_entry *)
5388 bfd_wrapped_link_hash_lookup (output_bfd, info,
5389 link_order->u.reloc.p->u.name,
5390 FALSE, FALSE, TRUE));
5391 if (h != NULL
5392 && (h->root.type == bfd_link_hash_defined
5393 || h->root.type == bfd_link_hash_defweak))
5394 {
5395 asection *section;
5396
5397 section = h->root.u.def.section;
5398 indx = section->output_section->target_index;
5399 *rel_hash_ptr = NULL;
5400 /* It seems that we ought to add the symbol value to the
5401 addend here, but in practice it has already been added
5402 because it was passed to constructor_callback. */
5403 addend += section->output_section->vma + section->output_offset;
5404 }
5405 else if (h != NULL)
5406 {
5407 /* Setting the index to -2 tells elf_link_output_extsym that
5408 this symbol is used by a reloc. */
5409 h->indx = -2;
5410 *rel_hash_ptr = h;
5411 indx = 0;
5412 }
5413 else
5414 {
5415 if (! ((*info->callbacks->unattached_reloc)
5416 (info, link_order->u.reloc.p->u.name, (bfd *) NULL,
5417 (asection *) NULL, (bfd_vma) 0)))
5418 return FALSE;
5419 indx = 0;
5420 }
5421 }
5422
5423 /* If this is an inplace reloc, we must write the addend into the
5424 object file. */
5425 if (howto->partial_inplace && addend != 0)
5426 {
5427 bfd_size_type size;
5428 bfd_reloc_status_type rstat;
5429 bfd_byte *buf;
5430 bfd_boolean ok;
5431 const char *sym_name;
5432
5433 size = bfd_get_reloc_size (howto);
5434 buf = (bfd_byte *) bfd_zmalloc (size);
5435 if (buf == (bfd_byte *) NULL)
5436 return FALSE;
5437 rstat = _bfd_relocate_contents (howto, output_bfd, (bfd_vma) addend, buf);
5438 switch (rstat)
5439 {
5440 case bfd_reloc_ok:
5441 break;
5442
5443 default:
5444 case bfd_reloc_outofrange:
5445 abort ();
5446
5447 case bfd_reloc_overflow:
5448 if (link_order->type == bfd_section_reloc_link_order)
5449 sym_name = bfd_section_name (output_bfd,
5450 link_order->u.reloc.p->u.section);
5451 else
5452 sym_name = link_order->u.reloc.p->u.name;
5453 if (! ((*info->callbacks->reloc_overflow)
5454 (info, sym_name, howto->name, addend,
5455 (bfd *) NULL, (asection *) NULL, (bfd_vma) 0)))
5456 {
5457 free (buf);
5458 return FALSE;
5459 }
5460 break;
5461 }
5462 ok = bfd_set_section_contents (output_bfd, output_section, (PTR) buf,
5463 (file_ptr) link_order->offset, size);
5464 free (buf);
5465 if (! ok)
5466 return FALSE;
5467 }
5468
5469 /* The address of a reloc is relative to the section in a
5470 relocateable file, and is a virtual address in an executable
5471 file. */
5472 offset = link_order->offset;
5473 if (! info->relocateable)
5474 offset += output_section->vma;
5475
5476 for (i = 0; i < bed->s->int_rels_per_ext_rel; i++)
5477 {
5478 irel[i].r_offset = offset;
5479 irel[i].r_info = 0;
5480 irel[i].r_addend = 0;
5481 }
5482 irel[0].r_info = ELF_R_INFO (indx, howto->type);
5483
5484 rel_hdr = &elf_section_data (output_section)->rel_hdr;
5485 erel = rel_hdr->contents;
5486 if (rel_hdr->sh_type == SHT_REL)
5487 {
5488 erel += (elf_section_data (output_section)->rel_count
5489 * sizeof (Elf_External_Rel));
5490 (*bed->s->swap_reloc_out) (output_bfd, irel, erel);
5491 }
5492 else
5493 {
5494 irel[0].r_addend = addend;
5495 erel += (elf_section_data (output_section)->rel_count
5496 * sizeof (Elf_External_Rela));
5497 (*bed->s->swap_reloca_out) (output_bfd, irel, erel);
5498 }
5499
5500 ++elf_section_data (output_section)->rel_count;
5501
5502 return TRUE;
5503 }
5504 \f
5505 /* Allocate a pointer to live in a linker created section. */
5506
5507 bfd_boolean
5508 elf_create_pointer_linker_section (abfd, info, lsect, h, rel)
5509 bfd *abfd;
5510 struct bfd_link_info *info;
5511 elf_linker_section_t *lsect;
5512 struct elf_link_hash_entry *h;
5513 const Elf_Internal_Rela *rel;
5514 {
5515 elf_linker_section_pointers_t **ptr_linker_section_ptr = NULL;
5516 elf_linker_section_pointers_t *linker_section_ptr;
5517 unsigned long r_symndx = ELF_R_SYM (rel->r_info);
5518 bfd_size_type amt;
5519
5520 BFD_ASSERT (lsect != NULL);
5521
5522 /* Is this a global symbol? */
5523 if (h != NULL)
5524 {
5525 /* Has this symbol already been allocated? If so, our work is done. */
5526 if (_bfd_elf_find_pointer_linker_section (h->linker_section_pointer,
5527 rel->r_addend,
5528 lsect->which))
5529 return TRUE;
5530
5531 ptr_linker_section_ptr = &h->linker_section_pointer;
5532 /* Make sure this symbol is output as a dynamic symbol. */
5533 if (h->dynindx == -1)
5534 {
5535 if (! elf_link_record_dynamic_symbol (info, h))
5536 return FALSE;
5537 }
5538
5539 if (lsect->rel_section)
5540 lsect->rel_section->_raw_size += sizeof (Elf_External_Rela);
5541 }
5542 else
5543 {
5544 /* Allocation of a pointer to a local symbol. */
5545 elf_linker_section_pointers_t **ptr = elf_local_ptr_offsets (abfd);
5546
5547 /* Allocate a table to hold the local symbols if first time. */
5548 if (!ptr)
5549 {
5550 unsigned int num_symbols = elf_tdata (abfd)->symtab_hdr.sh_info;
5551 register unsigned int i;
5552
5553 amt = num_symbols;
5554 amt *= sizeof (elf_linker_section_pointers_t *);
5555 ptr = (elf_linker_section_pointers_t **) bfd_alloc (abfd, amt);
5556
5557 if (!ptr)
5558 return FALSE;
5559
5560 elf_local_ptr_offsets (abfd) = ptr;
5561 for (i = 0; i < num_symbols; i++)
5562 ptr[i] = (elf_linker_section_pointers_t *) 0;
5563 }
5564
5565 /* Has this symbol already been allocated? If so, our work is done. */
5566 if (_bfd_elf_find_pointer_linker_section (ptr[r_symndx],
5567 rel->r_addend,
5568 lsect->which))
5569 return TRUE;
5570
5571 ptr_linker_section_ptr = &ptr[r_symndx];
5572
5573 if (info->shared)
5574 {
5575 /* If we are generating a shared object, we need to
5576 output a R_<xxx>_RELATIVE reloc so that the
5577 dynamic linker can adjust this GOT entry. */
5578 BFD_ASSERT (lsect->rel_section != NULL);
5579 lsect->rel_section->_raw_size += sizeof (Elf_External_Rela);
5580 }
5581 }
5582
5583 /* Allocate space for a pointer in the linker section, and allocate
5584 a new pointer record from internal memory. */
5585 BFD_ASSERT (ptr_linker_section_ptr != NULL);
5586 amt = sizeof (elf_linker_section_pointers_t);
5587 linker_section_ptr = (elf_linker_section_pointers_t *) bfd_alloc (abfd, amt);
5588
5589 if (!linker_section_ptr)
5590 return FALSE;
5591
5592 linker_section_ptr->next = *ptr_linker_section_ptr;
5593 linker_section_ptr->addend = rel->r_addend;
5594 linker_section_ptr->which = lsect->which;
5595 linker_section_ptr->written_address_p = FALSE;
5596 *ptr_linker_section_ptr = linker_section_ptr;
5597
5598 #if 0
5599 if (lsect->hole_size && lsect->hole_offset < lsect->max_hole_offset)
5600 {
5601 linker_section_ptr->offset = (lsect->section->_raw_size
5602 - lsect->hole_size + (ARCH_SIZE / 8));
5603 lsect->hole_offset += ARCH_SIZE / 8;
5604 lsect->sym_offset += ARCH_SIZE / 8;
5605 if (lsect->sym_hash)
5606 {
5607 /* Bump up symbol value if needed. */
5608 lsect->sym_hash->root.u.def.value += ARCH_SIZE / 8;
5609 #ifdef DEBUG
5610 fprintf (stderr, "Bump up %s by %ld, current value = %ld\n",
5611 lsect->sym_hash->root.root.string,
5612 (long) ARCH_SIZE / 8,
5613 (long) lsect->sym_hash->root.u.def.value);
5614 #endif
5615 }
5616 }
5617 else
5618 #endif
5619 linker_section_ptr->offset = lsect->section->_raw_size;
5620
5621 lsect->section->_raw_size += ARCH_SIZE / 8;
5622
5623 #ifdef DEBUG
5624 fprintf (stderr,
5625 "Create pointer in linker section %s, offset = %ld, section size = %ld\n",
5626 lsect->name, (long) linker_section_ptr->offset,
5627 (long) lsect->section->_raw_size);
5628 #endif
5629
5630 return TRUE;
5631 }
5632 \f
5633 #if ARCH_SIZE==64
5634 #define bfd_put_ptr(BFD,VAL,ADDR) bfd_put_64 (BFD, VAL, ADDR)
5635 #endif
5636 #if ARCH_SIZE==32
5637 #define bfd_put_ptr(BFD,VAL,ADDR) bfd_put_32 (BFD, VAL, ADDR)
5638 #endif
5639
5640 /* Fill in the address for a pointer generated in a linker section. */
5641
5642 bfd_vma
5643 elf_finish_pointer_linker_section (output_bfd, input_bfd, info, lsect, h,
5644 relocation, rel, relative_reloc)
5645 bfd *output_bfd;
5646 bfd *input_bfd;
5647 struct bfd_link_info *info;
5648 elf_linker_section_t *lsect;
5649 struct elf_link_hash_entry *h;
5650 bfd_vma relocation;
5651 const Elf_Internal_Rela *rel;
5652 int relative_reloc;
5653 {
5654 elf_linker_section_pointers_t *linker_section_ptr;
5655
5656 BFD_ASSERT (lsect != NULL);
5657
5658 if (h != NULL)
5659 {
5660 /* Handle global symbol. */
5661 linker_section_ptr = (_bfd_elf_find_pointer_linker_section
5662 (h->linker_section_pointer,
5663 rel->r_addend,
5664 lsect->which));
5665
5666 BFD_ASSERT (linker_section_ptr != NULL);
5667
5668 if (! elf_hash_table (info)->dynamic_sections_created
5669 || (info->shared
5670 && info->symbolic
5671 && (h->elf_link_hash_flags & ELF_LINK_HASH_DEF_REGULAR)))
5672 {
5673 /* This is actually a static link, or it is a
5674 -Bsymbolic link and the symbol is defined
5675 locally. We must initialize this entry in the
5676 global section.
5677
5678 When doing a dynamic link, we create a .rela.<xxx>
5679 relocation entry to initialize the value. This
5680 is done in the finish_dynamic_symbol routine. */
5681 if (!linker_section_ptr->written_address_p)
5682 {
5683 linker_section_ptr->written_address_p = TRUE;
5684 bfd_put_ptr (output_bfd,
5685 relocation + linker_section_ptr->addend,
5686 (lsect->section->contents
5687 + linker_section_ptr->offset));
5688 }
5689 }
5690 }
5691 else
5692 {
5693 /* Handle local symbol. */
5694 unsigned long r_symndx = ELF_R_SYM (rel->r_info);
5695 BFD_ASSERT (elf_local_ptr_offsets (input_bfd) != NULL);
5696 BFD_ASSERT (elf_local_ptr_offsets (input_bfd)[r_symndx] != NULL);
5697 linker_section_ptr = (_bfd_elf_find_pointer_linker_section
5698 (elf_local_ptr_offsets (input_bfd)[r_symndx],
5699 rel->r_addend,
5700 lsect->which));
5701
5702 BFD_ASSERT (linker_section_ptr != NULL);
5703
5704 /* Write out pointer if it hasn't been rewritten out before. */
5705 if (!linker_section_ptr->written_address_p)
5706 {
5707 linker_section_ptr->written_address_p = TRUE;
5708 bfd_put_ptr (output_bfd, relocation + linker_section_ptr->addend,
5709 lsect->section->contents + linker_section_ptr->offset);
5710
5711 if (info->shared)
5712 {
5713 asection *srel = lsect->rel_section;
5714 Elf_Internal_Rela outrel[MAX_INT_RELS_PER_EXT_REL];
5715 bfd_byte *erel;
5716 struct elf_backend_data *bed = get_elf_backend_data (output_bfd);
5717 unsigned int i;
5718
5719 /* We need to generate a relative reloc for the dynamic
5720 linker. */
5721 if (!srel)
5722 {
5723 srel = bfd_get_section_by_name (elf_hash_table (info)->dynobj,
5724 lsect->rel_name);
5725 lsect->rel_section = srel;
5726 }
5727
5728 BFD_ASSERT (srel != NULL);
5729
5730 for (i = 0; i < bed->s->int_rels_per_ext_rel; i++)
5731 {
5732 outrel[i].r_offset = (lsect->section->output_section->vma
5733 + lsect->section->output_offset
5734 + linker_section_ptr->offset);
5735 outrel[i].r_info = 0;
5736 outrel[i].r_addend = 0;
5737 }
5738 outrel[0].r_info = ELF_R_INFO (0, relative_reloc);
5739 erel = lsect->section->contents;
5740 erel += (elf_section_data (lsect->section)->rel_count++
5741 * sizeof (Elf_External_Rela));
5742 elf_swap_reloca_out (output_bfd, outrel, erel);
5743 }
5744 }
5745 }
5746
5747 relocation = (lsect->section->output_offset
5748 + linker_section_ptr->offset
5749 - lsect->hole_offset
5750 - lsect->sym_offset);
5751
5752 #ifdef DEBUG
5753 fprintf (stderr,
5754 "Finish pointer in linker section %s, offset = %ld (0x%lx)\n",
5755 lsect->name, (long) relocation, (long) relocation);
5756 #endif
5757
5758 /* Subtract out the addend, because it will get added back in by the normal
5759 processing. */
5760 return relocation - linker_section_ptr->addend;
5761 }
5762 \f
5763 /* Garbage collect unused sections. */
5764
5765 static bfd_boolean elf_gc_mark
5766 PARAMS ((struct bfd_link_info *, asection *,
5767 asection * (*) (asection *, struct bfd_link_info *,
5768 Elf_Internal_Rela *, struct elf_link_hash_entry *,
5769 Elf_Internal_Sym *)));
5770
5771 static bfd_boolean elf_gc_sweep
5772 PARAMS ((struct bfd_link_info *,
5773 bfd_boolean (*) (bfd *, struct bfd_link_info *, asection *,
5774 const Elf_Internal_Rela *)));
5775
5776 static bfd_boolean elf_gc_sweep_symbol
5777 PARAMS ((struct elf_link_hash_entry *, PTR));
5778
5779 static bfd_boolean elf_gc_allocate_got_offsets
5780 PARAMS ((struct elf_link_hash_entry *, PTR));
5781
5782 static bfd_boolean elf_gc_propagate_vtable_entries_used
5783 PARAMS ((struct elf_link_hash_entry *, PTR));
5784
5785 static bfd_boolean elf_gc_smash_unused_vtentry_relocs
5786 PARAMS ((struct elf_link_hash_entry *, PTR));
5787
5788 /* The mark phase of garbage collection. For a given section, mark
5789 it and any sections in this section's group, and all the sections
5790 which define symbols to which it refers. */
5791
5792 typedef asection * (*gc_mark_hook_fn)
5793 PARAMS ((asection *, struct bfd_link_info *, Elf_Internal_Rela *,
5794 struct elf_link_hash_entry *, Elf_Internal_Sym *));
5795
5796 static bfd_boolean
5797 elf_gc_mark (info, sec, gc_mark_hook)
5798 struct bfd_link_info *info;
5799 asection *sec;
5800 gc_mark_hook_fn gc_mark_hook;
5801 {
5802 bfd_boolean ret;
5803 asection *group_sec;
5804
5805 sec->gc_mark = 1;
5806
5807 /* Mark all the sections in the group. */
5808 group_sec = elf_section_data (sec)->next_in_group;
5809 if (group_sec && !group_sec->gc_mark)
5810 if (!elf_gc_mark (info, group_sec, gc_mark_hook))
5811 return FALSE;
5812
5813 /* Look through the section relocs. */
5814 ret = TRUE;
5815 if ((sec->flags & SEC_RELOC) != 0 && sec->reloc_count > 0)
5816 {
5817 Elf_Internal_Rela *relstart, *rel, *relend;
5818 Elf_Internal_Shdr *symtab_hdr;
5819 struct elf_link_hash_entry **sym_hashes;
5820 size_t nlocsyms;
5821 size_t extsymoff;
5822 bfd *input_bfd = sec->owner;
5823 struct elf_backend_data *bed = get_elf_backend_data (input_bfd);
5824 Elf_Internal_Sym *isym = NULL;
5825
5826 symtab_hdr = &elf_tdata (input_bfd)->symtab_hdr;
5827 sym_hashes = elf_sym_hashes (input_bfd);
5828
5829 /* Read the local symbols. */
5830 if (elf_bad_symtab (input_bfd))
5831 {
5832 nlocsyms = symtab_hdr->sh_size / sizeof (Elf_External_Sym);
5833 extsymoff = 0;
5834 }
5835 else
5836 extsymoff = nlocsyms = symtab_hdr->sh_info;
5837
5838 isym = (Elf_Internal_Sym *) symtab_hdr->contents;
5839 if (isym == NULL && nlocsyms != 0)
5840 {
5841 isym = bfd_elf_get_elf_syms (input_bfd, symtab_hdr, nlocsyms, 0,
5842 NULL, NULL, NULL);
5843 if (isym == NULL)
5844 return FALSE;
5845 }
5846
5847 /* Read the relocations. */
5848 relstart = _bfd_elf_link_read_relocs (input_bfd, sec, NULL,
5849 (Elf_Internal_Rela *) NULL,
5850 info->keep_memory);
5851 if (relstart == NULL)
5852 {
5853 ret = FALSE;
5854 goto out1;
5855 }
5856 relend = relstart + sec->reloc_count * bed->s->int_rels_per_ext_rel;
5857
5858 for (rel = relstart; rel < relend; rel++)
5859 {
5860 unsigned long r_symndx;
5861 asection *rsec;
5862 struct elf_link_hash_entry *h;
5863
5864 r_symndx = ELF_R_SYM (rel->r_info);
5865 if (r_symndx == 0)
5866 continue;
5867
5868 if (r_symndx >= nlocsyms
5869 || ELF_ST_BIND (isym[r_symndx].st_info) != STB_LOCAL)
5870 {
5871 h = sym_hashes[r_symndx - extsymoff];
5872 rsec = (*gc_mark_hook) (sec, info, rel, h, NULL);
5873 }
5874 else
5875 {
5876 rsec = (*gc_mark_hook) (sec, info, rel, NULL, &isym[r_symndx]);
5877 }
5878
5879 if (rsec && !rsec->gc_mark)
5880 {
5881 if (bfd_get_flavour (rsec->owner) != bfd_target_elf_flavour)
5882 rsec->gc_mark = 1;
5883 else if (!elf_gc_mark (info, rsec, gc_mark_hook))
5884 {
5885 ret = FALSE;
5886 goto out2;
5887 }
5888 }
5889 }
5890
5891 out2:
5892 if (elf_section_data (sec)->relocs != relstart)
5893 free (relstart);
5894 out1:
5895 if (isym != NULL && symtab_hdr->contents != (unsigned char *) isym)
5896 {
5897 if (! info->keep_memory)
5898 free (isym);
5899 else
5900 symtab_hdr->contents = (unsigned char *) isym;
5901 }
5902 }
5903
5904 return ret;
5905 }
5906
5907 /* The sweep phase of garbage collection. Remove all garbage sections. */
5908
5909 typedef bfd_boolean (*gc_sweep_hook_fn)
5910 PARAMS ((bfd *, struct bfd_link_info *, asection *,
5911 const Elf_Internal_Rela *));
5912
5913 static bfd_boolean
5914 elf_gc_sweep (info, gc_sweep_hook)
5915 struct bfd_link_info *info;
5916 gc_sweep_hook_fn gc_sweep_hook;
5917 {
5918 bfd *sub;
5919
5920 for (sub = info->input_bfds; sub != NULL; sub = sub->link_next)
5921 {
5922 asection *o;
5923
5924 if (bfd_get_flavour (sub) != bfd_target_elf_flavour)
5925 continue;
5926
5927 for (o = sub->sections; o != NULL; o = o->next)
5928 {
5929 /* Keep special sections. Keep .debug sections. */
5930 if ((o->flags & SEC_LINKER_CREATED)
5931 || (o->flags & SEC_DEBUGGING))
5932 o->gc_mark = 1;
5933
5934 if (o->gc_mark)
5935 continue;
5936
5937 /* Skip sweeping sections already excluded. */
5938 if (o->flags & SEC_EXCLUDE)
5939 continue;
5940
5941 /* Since this is early in the link process, it is simple
5942 to remove a section from the output. */
5943 o->flags |= SEC_EXCLUDE;
5944
5945 /* But we also have to update some of the relocation
5946 info we collected before. */
5947 if (gc_sweep_hook
5948 && (o->flags & SEC_RELOC) && o->reloc_count > 0)
5949 {
5950 Elf_Internal_Rela *internal_relocs;
5951 bfd_boolean r;
5952
5953 internal_relocs
5954 = _bfd_elf_link_read_relocs (o->owner, o, NULL,
5955 (Elf_Internal_Rela *) NULL,
5956 info->keep_memory);
5957 if (internal_relocs == NULL)
5958 return FALSE;
5959
5960 r = (*gc_sweep_hook) (o->owner, info, o, internal_relocs);
5961
5962 if (elf_section_data (o)->relocs != internal_relocs)
5963 free (internal_relocs);
5964
5965 if (!r)
5966 return FALSE;
5967 }
5968 }
5969 }
5970
5971 /* Remove the symbols that were in the swept sections from the dynamic
5972 symbol table. GCFIXME: Anyone know how to get them out of the
5973 static symbol table as well? */
5974 {
5975 int i = 0;
5976
5977 elf_link_hash_traverse (elf_hash_table (info),
5978 elf_gc_sweep_symbol,
5979 (PTR) &i);
5980
5981 elf_hash_table (info)->dynsymcount = i;
5982 }
5983
5984 return TRUE;
5985 }
5986
5987 /* Sweep symbols in swept sections. Called via elf_link_hash_traverse. */
5988
5989 static bfd_boolean
5990 elf_gc_sweep_symbol (h, idxptr)
5991 struct elf_link_hash_entry *h;
5992 PTR idxptr;
5993 {
5994 int *idx = (int *) idxptr;
5995
5996 if (h->root.type == bfd_link_hash_warning)
5997 h = (struct elf_link_hash_entry *) h->root.u.i.link;
5998
5999 if (h->dynindx != -1
6000 && ((h->root.type != bfd_link_hash_defined
6001 && h->root.type != bfd_link_hash_defweak)
6002 || h->root.u.def.section->gc_mark))
6003 h->dynindx = (*idx)++;
6004
6005 return TRUE;
6006 }
6007
6008 /* Propogate collected vtable information. This is called through
6009 elf_link_hash_traverse. */
6010
6011 static bfd_boolean
6012 elf_gc_propagate_vtable_entries_used (h, okp)
6013 struct elf_link_hash_entry *h;
6014 PTR okp;
6015 {
6016 if (h->root.type == bfd_link_hash_warning)
6017 h = (struct elf_link_hash_entry *) h->root.u.i.link;
6018
6019 /* Those that are not vtables. */
6020 if (h->vtable_parent == NULL)
6021 return TRUE;
6022
6023 /* Those vtables that do not have parents, we cannot merge. */
6024 if (h->vtable_parent == (struct elf_link_hash_entry *) -1)
6025 return TRUE;
6026
6027 /* If we've already been done, exit. */
6028 if (h->vtable_entries_used && h->vtable_entries_used[-1])
6029 return TRUE;
6030
6031 /* Make sure the parent's table is up to date. */
6032 elf_gc_propagate_vtable_entries_used (h->vtable_parent, okp);
6033
6034 if (h->vtable_entries_used == NULL)
6035 {
6036 /* None of this table's entries were referenced. Re-use the
6037 parent's table. */
6038 h->vtable_entries_used = h->vtable_parent->vtable_entries_used;
6039 h->vtable_entries_size = h->vtable_parent->vtable_entries_size;
6040 }
6041 else
6042 {
6043 size_t n;
6044 bfd_boolean *cu, *pu;
6045
6046 /* Or the parent's entries into ours. */
6047 cu = h->vtable_entries_used;
6048 cu[-1] = TRUE;
6049 pu = h->vtable_parent->vtable_entries_used;
6050 if (pu != NULL)
6051 {
6052 asection *sec = h->root.u.def.section;
6053 struct elf_backend_data *bed = get_elf_backend_data (sec->owner);
6054 unsigned int log_file_align = bed->s->log_file_align;
6055
6056 n = h->vtable_parent->vtable_entries_size >> log_file_align;
6057 while (n--)
6058 {
6059 if (*pu)
6060 *cu = TRUE;
6061 pu++;
6062 cu++;
6063 }
6064 }
6065 }
6066
6067 return TRUE;
6068 }
6069
6070 static bfd_boolean
6071 elf_gc_smash_unused_vtentry_relocs (h, okp)
6072 struct elf_link_hash_entry *h;
6073 PTR okp;
6074 {
6075 asection *sec;
6076 bfd_vma hstart, hend;
6077 Elf_Internal_Rela *relstart, *relend, *rel;
6078 struct elf_backend_data *bed;
6079 unsigned int log_file_align;
6080
6081 if (h->root.type == bfd_link_hash_warning)
6082 h = (struct elf_link_hash_entry *) h->root.u.i.link;
6083
6084 /* Take care of both those symbols that do not describe vtables as
6085 well as those that are not loaded. */
6086 if (h->vtable_parent == NULL)
6087 return TRUE;
6088
6089 BFD_ASSERT (h->root.type == bfd_link_hash_defined
6090 || h->root.type == bfd_link_hash_defweak);
6091
6092 sec = h->root.u.def.section;
6093 hstart = h->root.u.def.value;
6094 hend = hstart + h->size;
6095
6096 relstart = _bfd_elf_link_read_relocs (sec->owner, sec, NULL,
6097 (Elf_Internal_Rela *) NULL, TRUE);
6098 if (!relstart)
6099 return *(bfd_boolean *) okp = FALSE;
6100 bed = get_elf_backend_data (sec->owner);
6101 log_file_align = bed->s->log_file_align;
6102
6103 relend = relstart + sec->reloc_count * bed->s->int_rels_per_ext_rel;
6104
6105 for (rel = relstart; rel < relend; ++rel)
6106 if (rel->r_offset >= hstart && rel->r_offset < hend)
6107 {
6108 /* If the entry is in use, do nothing. */
6109 if (h->vtable_entries_used
6110 && (rel->r_offset - hstart) < h->vtable_entries_size)
6111 {
6112 bfd_vma entry = (rel->r_offset - hstart) >> log_file_align;
6113 if (h->vtable_entries_used[entry])
6114 continue;
6115 }
6116 /* Otherwise, kill it. */
6117 rel->r_offset = rel->r_info = rel->r_addend = 0;
6118 }
6119
6120 return TRUE;
6121 }
6122
6123 /* Do mark and sweep of unused sections. */
6124
6125 bfd_boolean
6126 elf_gc_sections (abfd, info)
6127 bfd *abfd;
6128 struct bfd_link_info *info;
6129 {
6130 bfd_boolean ok = TRUE;
6131 bfd *sub;
6132 asection * (*gc_mark_hook)
6133 PARAMS ((asection *, struct bfd_link_info *, Elf_Internal_Rela *,
6134 struct elf_link_hash_entry *h, Elf_Internal_Sym *));
6135
6136 if (!get_elf_backend_data (abfd)->can_gc_sections
6137 || info->relocateable || info->emitrelocations
6138 || elf_hash_table (info)->dynamic_sections_created)
6139 return TRUE;
6140
6141 /* Apply transitive closure to the vtable entry usage info. */
6142 elf_link_hash_traverse (elf_hash_table (info),
6143 elf_gc_propagate_vtable_entries_used,
6144 (PTR) &ok);
6145 if (!ok)
6146 return FALSE;
6147
6148 /* Kill the vtable relocations that were not used. */
6149 elf_link_hash_traverse (elf_hash_table (info),
6150 elf_gc_smash_unused_vtentry_relocs,
6151 (PTR) &ok);
6152 if (!ok)
6153 return FALSE;
6154
6155 /* Grovel through relocs to find out who stays ... */
6156
6157 gc_mark_hook = get_elf_backend_data (abfd)->gc_mark_hook;
6158 for (sub = info->input_bfds; sub != NULL; sub = sub->link_next)
6159 {
6160 asection *o;
6161
6162 if (bfd_get_flavour (sub) != bfd_target_elf_flavour)
6163 continue;
6164
6165 for (o = sub->sections; o != NULL; o = o->next)
6166 {
6167 if (o->flags & SEC_KEEP)
6168 if (!elf_gc_mark (info, o, gc_mark_hook))
6169 return FALSE;
6170 }
6171 }
6172
6173 /* ... and mark SEC_EXCLUDE for those that go. */
6174 if (!elf_gc_sweep (info, get_elf_backend_data (abfd)->gc_sweep_hook))
6175 return FALSE;
6176
6177 return TRUE;
6178 }
6179 \f
6180 /* Called from check_relocs to record the existance of a VTINHERIT reloc. */
6181
6182 bfd_boolean
6183 elf_gc_record_vtinherit (abfd, sec, h, offset)
6184 bfd *abfd;
6185 asection *sec;
6186 struct elf_link_hash_entry *h;
6187 bfd_vma offset;
6188 {
6189 struct elf_link_hash_entry **sym_hashes, **sym_hashes_end;
6190 struct elf_link_hash_entry **search, *child;
6191 bfd_size_type extsymcount;
6192
6193 /* The sh_info field of the symtab header tells us where the
6194 external symbols start. We don't care about the local symbols at
6195 this point. */
6196 extsymcount = elf_tdata (abfd)->symtab_hdr.sh_size/sizeof (Elf_External_Sym);
6197 if (!elf_bad_symtab (abfd))
6198 extsymcount -= elf_tdata (abfd)->symtab_hdr.sh_info;
6199
6200 sym_hashes = elf_sym_hashes (abfd);
6201 sym_hashes_end = sym_hashes + extsymcount;
6202
6203 /* Hunt down the child symbol, which is in this section at the same
6204 offset as the relocation. */
6205 for (search = sym_hashes; search != sym_hashes_end; ++search)
6206 {
6207 if ((child = *search) != NULL
6208 && (child->root.type == bfd_link_hash_defined
6209 || child->root.type == bfd_link_hash_defweak)
6210 && child->root.u.def.section == sec
6211 && child->root.u.def.value == offset)
6212 goto win;
6213 }
6214
6215 (*_bfd_error_handler) ("%s: %s+%lu: No symbol found for INHERIT",
6216 bfd_archive_filename (abfd), sec->name,
6217 (unsigned long) offset);
6218 bfd_set_error (bfd_error_invalid_operation);
6219 return FALSE;
6220
6221 win:
6222 if (!h)
6223 {
6224 /* This *should* only be the absolute section. It could potentially
6225 be that someone has defined a non-global vtable though, which
6226 would be bad. It isn't worth paging in the local symbols to be
6227 sure though; that case should simply be handled by the assembler. */
6228
6229 child->vtable_parent = (struct elf_link_hash_entry *) -1;
6230 }
6231 else
6232 child->vtable_parent = h;
6233
6234 return TRUE;
6235 }
6236
6237 /* Called from check_relocs to record the existance of a VTENTRY reloc. */
6238
6239 bfd_boolean
6240 elf_gc_record_vtentry (abfd, sec, h, addend)
6241 bfd *abfd ATTRIBUTE_UNUSED;
6242 asection *sec ATTRIBUTE_UNUSED;
6243 struct elf_link_hash_entry *h;
6244 bfd_vma addend;
6245 {
6246 struct elf_backend_data *bed = get_elf_backend_data (abfd);
6247 unsigned int log_file_align = bed->s->log_file_align;
6248
6249 if (addend >= h->vtable_entries_size)
6250 {
6251 size_t size, bytes;
6252 bfd_boolean *ptr = h->vtable_entries_used;
6253
6254 /* While the symbol is undefined, we have to be prepared to handle
6255 a zero size. */
6256 if (h->root.type == bfd_link_hash_undefined)
6257 size = addend;
6258 else
6259 {
6260 size = h->size;
6261 if (size < addend)
6262 {
6263 /* Oops! We've got a reference past the defined end of
6264 the table. This is probably a bug -- shall we warn? */
6265 size = addend;
6266 }
6267 }
6268
6269 /* Allocate one extra entry for use as a "done" flag for the
6270 consolidation pass. */
6271 bytes = ((size >> log_file_align) + 1) * sizeof (bfd_boolean);
6272
6273 if (ptr)
6274 {
6275 ptr = bfd_realloc (ptr - 1, (bfd_size_type) bytes);
6276
6277 if (ptr != NULL)
6278 {
6279 size_t oldbytes;
6280
6281 oldbytes = (((h->vtable_entries_size >> log_file_align) + 1)
6282 * sizeof (bfd_boolean));
6283 memset (((char *) ptr) + oldbytes, 0, bytes - oldbytes);
6284 }
6285 }
6286 else
6287 ptr = bfd_zmalloc ((bfd_size_type) bytes);
6288
6289 if (ptr == NULL)
6290 return FALSE;
6291
6292 /* And arrange for that done flag to be at index -1. */
6293 h->vtable_entries_used = ptr + 1;
6294 h->vtable_entries_size = size;
6295 }
6296
6297 h->vtable_entries_used[addend >> log_file_align] = TRUE;
6298
6299 return TRUE;
6300 }
6301
6302 /* And an accompanying bit to work out final got entry offsets once
6303 we're done. Should be called from final_link. */
6304
6305 bfd_boolean
6306 elf_gc_common_finalize_got_offsets (abfd, info)
6307 bfd *abfd;
6308 struct bfd_link_info *info;
6309 {
6310 bfd *i;
6311 struct elf_backend_data *bed = get_elf_backend_data (abfd);
6312 bfd_vma gotoff;
6313
6314 /* The GOT offset is relative to the .got section, but the GOT header is
6315 put into the .got.plt section, if the backend uses it. */
6316 if (bed->want_got_plt)
6317 gotoff = 0;
6318 else
6319 gotoff = bed->got_header_size;
6320
6321 /* Do the local .got entries first. */
6322 for (i = info->input_bfds; i; i = i->link_next)
6323 {
6324 bfd_signed_vma *local_got;
6325 bfd_size_type j, locsymcount;
6326 Elf_Internal_Shdr *symtab_hdr;
6327
6328 if (bfd_get_flavour (i) != bfd_target_elf_flavour)
6329 continue;
6330
6331 local_got = elf_local_got_refcounts (i);
6332 if (!local_got)
6333 continue;
6334
6335 symtab_hdr = &elf_tdata (i)->symtab_hdr;
6336 if (elf_bad_symtab (i))
6337 locsymcount = symtab_hdr->sh_size / sizeof (Elf_External_Sym);
6338 else
6339 locsymcount = symtab_hdr->sh_info;
6340
6341 for (j = 0; j < locsymcount; ++j)
6342 {
6343 if (local_got[j] > 0)
6344 {
6345 local_got[j] = gotoff;
6346 gotoff += ARCH_SIZE / 8;
6347 }
6348 else
6349 local_got[j] = (bfd_vma) -1;
6350 }
6351 }
6352
6353 /* Then the global .got entries. .plt refcounts are handled by
6354 adjust_dynamic_symbol */
6355 elf_link_hash_traverse (elf_hash_table (info),
6356 elf_gc_allocate_got_offsets,
6357 (PTR) &gotoff);
6358 return TRUE;
6359 }
6360
6361 /* We need a special top-level link routine to convert got reference counts
6362 to real got offsets. */
6363
6364 static bfd_boolean
6365 elf_gc_allocate_got_offsets (h, offarg)
6366 struct elf_link_hash_entry *h;
6367 PTR offarg;
6368 {
6369 bfd_vma *off = (bfd_vma *) offarg;
6370
6371 if (h->root.type == bfd_link_hash_warning)
6372 h = (struct elf_link_hash_entry *) h->root.u.i.link;
6373
6374 if (h->got.refcount > 0)
6375 {
6376 h->got.offset = off[0];
6377 off[0] += ARCH_SIZE / 8;
6378 }
6379 else
6380 h->got.offset = (bfd_vma) -1;
6381
6382 return TRUE;
6383 }
6384
6385 /* Many folk need no more in the way of final link than this, once
6386 got entry reference counting is enabled. */
6387
6388 bfd_boolean
6389 elf_gc_common_final_link (abfd, info)
6390 bfd *abfd;
6391 struct bfd_link_info *info;
6392 {
6393 if (!elf_gc_common_finalize_got_offsets (abfd, info))
6394 return FALSE;
6395
6396 /* Invoke the regular ELF backend linker to do all the work. */
6397 return elf_bfd_final_link (abfd, info);
6398 }
6399
6400 /* This function will be called though elf_link_hash_traverse to store
6401 all hash value of the exported symbols in an array. */
6402
6403 static bfd_boolean
6404 elf_collect_hash_codes (h, data)
6405 struct elf_link_hash_entry *h;
6406 PTR data;
6407 {
6408 unsigned long **valuep = (unsigned long **) data;
6409 const char *name;
6410 char *p;
6411 unsigned long ha;
6412 char *alc = NULL;
6413
6414 if (h->root.type == bfd_link_hash_warning)
6415 h = (struct elf_link_hash_entry *) h->root.u.i.link;
6416
6417 /* Ignore indirect symbols. These are added by the versioning code. */
6418 if (h->dynindx == -1)
6419 return TRUE;
6420
6421 name = h->root.root.string;
6422 p = strchr (name, ELF_VER_CHR);
6423 if (p != NULL)
6424 {
6425 alc = bfd_malloc ((bfd_size_type) (p - name + 1));
6426 memcpy (alc, name, (size_t) (p - name));
6427 alc[p - name] = '\0';
6428 name = alc;
6429 }
6430
6431 /* Compute the hash value. */
6432 ha = bfd_elf_hash (name);
6433
6434 /* Store the found hash value in the array given as the argument. */
6435 *(*valuep)++ = ha;
6436
6437 /* And store it in the struct so that we can put it in the hash table
6438 later. */
6439 h->elf_hash_value = ha;
6440
6441 if (alc != NULL)
6442 free (alc);
6443
6444 return TRUE;
6445 }
6446
6447 bfd_boolean
6448 elf_reloc_symbol_deleted_p (offset, cookie)
6449 bfd_vma offset;
6450 PTR cookie;
6451 {
6452 struct elf_reloc_cookie *rcookie = (struct elf_reloc_cookie *) cookie;
6453
6454 if (rcookie->bad_symtab)
6455 rcookie->rel = rcookie->rels;
6456
6457 for (; rcookie->rel < rcookie->relend; rcookie->rel++)
6458 {
6459 unsigned long r_symndx;
6460
6461 if (! rcookie->bad_symtab)
6462 if (rcookie->rel->r_offset > offset)
6463 return FALSE;
6464 if (rcookie->rel->r_offset != offset)
6465 continue;
6466
6467 r_symndx = ELF_R_SYM (rcookie->rel->r_info);
6468 if (r_symndx == SHN_UNDEF)
6469 return TRUE;
6470
6471 if (r_symndx >= rcookie->locsymcount
6472 || ELF_ST_BIND (rcookie->locsyms[r_symndx].st_info) != STB_LOCAL)
6473 {
6474 struct elf_link_hash_entry *h;
6475
6476 h = rcookie->sym_hashes[r_symndx - rcookie->extsymoff];
6477
6478 while (h->root.type == bfd_link_hash_indirect
6479 || h->root.type == bfd_link_hash_warning)
6480 h = (struct elf_link_hash_entry *) h->root.u.i.link;
6481
6482 if ((h->root.type == bfd_link_hash_defined
6483 || h->root.type == bfd_link_hash_defweak)
6484 && elf_discarded_section (h->root.u.def.section))
6485 return TRUE;
6486 else
6487 return FALSE;
6488 }
6489 else
6490 {
6491 /* It's not a relocation against a global symbol,
6492 but it could be a relocation against a local
6493 symbol for a discarded section. */
6494 asection *isec;
6495 Elf_Internal_Sym *isym;
6496
6497 /* Need to: get the symbol; get the section. */
6498 isym = &rcookie->locsyms[r_symndx];
6499 if (isym->st_shndx < SHN_LORESERVE || isym->st_shndx > SHN_HIRESERVE)
6500 {
6501 isec = section_from_elf_index (rcookie->abfd, isym->st_shndx);
6502 if (isec != NULL && elf_discarded_section (isec))
6503 return TRUE;
6504 }
6505 }
6506 return FALSE;
6507 }
6508 return FALSE;
6509 }
6510
6511 /* Discard unneeded references to discarded sections.
6512 Returns TRUE if any section's size was changed. */
6513 /* This function assumes that the relocations are in sorted order,
6514 which is true for all known assemblers. */
6515
6516 bfd_boolean
6517 elf_bfd_discard_info (output_bfd, info)
6518 bfd *output_bfd;
6519 struct bfd_link_info *info;
6520 {
6521 struct elf_reloc_cookie cookie;
6522 asection *stab, *eh;
6523 Elf_Internal_Shdr *symtab_hdr;
6524 struct elf_backend_data *bed;
6525 bfd *abfd;
6526 unsigned int count;
6527 bfd_boolean ret = FALSE;
6528
6529 if (info->traditional_format
6530 || info->hash->creator->flavour != bfd_target_elf_flavour
6531 || ! is_elf_hash_table (info))
6532 return FALSE;
6533
6534 for (abfd = info->input_bfds; abfd != NULL; abfd = abfd->link_next)
6535 {
6536 if (bfd_get_flavour (abfd) != bfd_target_elf_flavour)
6537 continue;
6538
6539 bed = get_elf_backend_data (abfd);
6540
6541 if ((abfd->flags & DYNAMIC) != 0)
6542 continue;
6543
6544 eh = bfd_get_section_by_name (abfd, ".eh_frame");
6545 if (info->relocateable
6546 || (eh != NULL
6547 && (eh->_raw_size == 0
6548 || bfd_is_abs_section (eh->output_section))))
6549 eh = NULL;
6550
6551 stab = bfd_get_section_by_name (abfd, ".stab");
6552 if (stab != NULL
6553 && (stab->_raw_size == 0
6554 || bfd_is_abs_section (stab->output_section)
6555 || stab->sec_info_type != ELF_INFO_TYPE_STABS))
6556 stab = NULL;
6557
6558 if (stab == NULL
6559 && eh == NULL
6560 && bed->elf_backend_discard_info == NULL)
6561 continue;
6562
6563 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
6564 cookie.abfd = abfd;
6565 cookie.sym_hashes = elf_sym_hashes (abfd);
6566 cookie.bad_symtab = elf_bad_symtab (abfd);
6567 if (cookie.bad_symtab)
6568 {
6569 cookie.locsymcount = symtab_hdr->sh_size / sizeof (Elf_External_Sym);
6570 cookie.extsymoff = 0;
6571 }
6572 else
6573 {
6574 cookie.locsymcount = symtab_hdr->sh_info;
6575 cookie.extsymoff = symtab_hdr->sh_info;
6576 }
6577
6578 cookie.locsyms = (Elf_Internal_Sym *) symtab_hdr->contents;
6579 if (cookie.locsyms == NULL && cookie.locsymcount != 0)
6580 {
6581 cookie.locsyms = bfd_elf_get_elf_syms (abfd, symtab_hdr,
6582 cookie.locsymcount, 0,
6583 NULL, NULL, NULL);
6584 if (cookie.locsyms == NULL)
6585 return FALSE;
6586 }
6587
6588 if (stab != NULL)
6589 {
6590 cookie.rels = NULL;
6591 count = stab->reloc_count;
6592 if (count != 0)
6593 cookie.rels
6594 = _bfd_elf_link_read_relocs (abfd, stab, (PTR) NULL,
6595 (Elf_Internal_Rela *) NULL,
6596 info->keep_memory);
6597 if (cookie.rels != NULL)
6598 {
6599 cookie.rel = cookie.rels;
6600 cookie.relend = cookie.rels;
6601 cookie.relend += count * bed->s->int_rels_per_ext_rel;
6602 if (_bfd_discard_section_stabs (abfd, stab,
6603 elf_section_data (stab)->sec_info,
6604 elf_reloc_symbol_deleted_p,
6605 &cookie))
6606 ret = TRUE;
6607 if (elf_section_data (stab)->relocs != cookie.rels)
6608 free (cookie.rels);
6609 }
6610 }
6611
6612 if (eh != NULL)
6613 {
6614 cookie.rels = NULL;
6615 count = eh->reloc_count;
6616 if (count != 0)
6617 cookie.rels
6618 = _bfd_elf_link_read_relocs (abfd, eh, (PTR) NULL,
6619 (Elf_Internal_Rela *) NULL,
6620 info->keep_memory);
6621 cookie.rel = cookie.rels;
6622 cookie.relend = cookie.rels;
6623 if (cookie.rels != NULL)
6624 cookie.relend += count * bed->s->int_rels_per_ext_rel;
6625
6626 if (_bfd_elf_discard_section_eh_frame (abfd, info, eh,
6627 elf_reloc_symbol_deleted_p,
6628 &cookie))
6629 ret = TRUE;
6630
6631 if (cookie.rels != NULL
6632 && elf_section_data (eh)->relocs != cookie.rels)
6633 free (cookie.rels);
6634 }
6635
6636 if (bed->elf_backend_discard_info != NULL
6637 && (*bed->elf_backend_discard_info) (abfd, &cookie, info))
6638 ret = TRUE;
6639
6640 if (cookie.locsyms != NULL
6641 && symtab_hdr->contents != (unsigned char *) cookie.locsyms)
6642 {
6643 if (! info->keep_memory)
6644 free (cookie.locsyms);
6645 else
6646 symtab_hdr->contents = (unsigned char *) cookie.locsyms;
6647 }
6648 }
6649
6650 if (info->eh_frame_hdr
6651 && !info->relocateable
6652 && _bfd_elf_discard_section_eh_frame_hdr (output_bfd, info))
6653 ret = TRUE;
6654
6655 return ret;
6656 }
6657
6658 static bfd_boolean
6659 elf_section_ignore_discarded_relocs (sec)
6660 asection *sec;
6661 {
6662 struct elf_backend_data *bed;
6663
6664 switch (sec->sec_info_type)
6665 {
6666 case ELF_INFO_TYPE_STABS:
6667 case ELF_INFO_TYPE_EH_FRAME:
6668 return TRUE;
6669 default:
6670 break;
6671 }
6672
6673 bed = get_elf_backend_data (sec->owner);
6674 if (bed->elf_backend_ignore_discarded_relocs != NULL
6675 && (*bed->elf_backend_ignore_discarded_relocs) (sec))
6676 return TRUE;
6677
6678 return FALSE;
6679 }