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 {
5007 if (! ((*finfo->info->callbacks->undefined_symbol)
5008 (finfo->info, h->root.root.string,
5009 input_bfd, o, rel->r_offset,
5010 TRUE)))
5011 return FALSE;
5012 }
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 bfd_boolean ok;
5032 const char *msg
5033 = _("local symbols in discarded section %s");
5034 bfd_size_type amt
5035 = strlen (sec->name) + strlen (msg) - 1;
5036 char *buf = (char *) bfd_malloc (amt);
5037
5038 if (buf != NULL)
5039 sprintf (buf, msg, sec->name);
5040 else
5041 buf = (char *) sec->name;
5042 ok = (*finfo->info->callbacks
5043 ->undefined_symbol) (finfo->info, buf,
5044 input_bfd, o,
5045 rel->r_offset,
5046 TRUE);
5047 if (buf != sec->name)
5048 free (buf);
5049 if (!ok)
5050 return FALSE;
5051 }
5052 }
5053 }
5054 }
5055 }
5056
5057 /* Relocate the section by invoking a back end routine.
5058
5059 The back end routine is responsible for adjusting the
5060 section contents as necessary, and (if using Rela relocs
5061 and generating a relocateable output file) adjusting the
5062 reloc addend as necessary.
5063
5064 The back end routine does not have to worry about setting
5065 the reloc address or the reloc symbol index.
5066
5067 The back end routine is given a pointer to the swapped in
5068 internal symbols, and can access the hash table entries
5069 for the external symbols via elf_sym_hashes (input_bfd).
5070
5071 When generating relocateable output, the back end routine
5072 must handle STB_LOCAL/STT_SECTION symbols specially. The
5073 output symbol is going to be a section symbol
5074 corresponding to the output section, which will require
5075 the addend to be adjusted. */
5076
5077 if (! (*relocate_section) (output_bfd, finfo->info,
5078 input_bfd, o, contents,
5079 internal_relocs,
5080 isymbuf,
5081 finfo->sections))
5082 return FALSE;
5083
5084 if (emit_relocs)
5085 {
5086 Elf_Internal_Rela *irela;
5087 Elf_Internal_Rela *irelaend;
5088 bfd_vma last_offset;
5089 struct elf_link_hash_entry **rel_hash;
5090 Elf_Internal_Shdr *input_rel_hdr, *input_rel_hdr2;
5091 unsigned int next_erel;
5092 bfd_boolean (*reloc_emitter)
5093 PARAMS ((bfd *, asection *, Elf_Internal_Shdr *,
5094 Elf_Internal_Rela *));
5095 bfd_boolean rela_normal;
5096
5097 input_rel_hdr = &elf_section_data (o)->rel_hdr;
5098 rela_normal = (bed->rela_normal
5099 && (input_rel_hdr->sh_entsize
5100 == sizeof (Elf_External_Rela)));
5101
5102 /* Adjust the reloc addresses and symbol indices. */
5103
5104 irela = internal_relocs;
5105 irelaend = irela + o->reloc_count * bed->s->int_rels_per_ext_rel;
5106 rel_hash = (elf_section_data (o->output_section)->rel_hashes
5107 + elf_section_data (o->output_section)->rel_count
5108 + elf_section_data (o->output_section)->rel_count2);
5109 last_offset = o->output_offset;
5110 if (!finfo->info->relocateable)
5111 last_offset += o->output_section->vma;
5112 for (next_erel = 0; irela < irelaend; irela++, next_erel++)
5113 {
5114 unsigned long r_symndx;
5115 asection *sec;
5116 Elf_Internal_Sym sym;
5117
5118 if (next_erel == bed->s->int_rels_per_ext_rel)
5119 {
5120 rel_hash++;
5121 next_erel = 0;
5122 }
5123
5124 irela->r_offset = _bfd_elf_section_offset (output_bfd,
5125 finfo->info, o,
5126 irela->r_offset);
5127 if (irela->r_offset >= (bfd_vma) -2)
5128 {
5129 /* This is a reloc for a deleted entry or somesuch.
5130 Turn it into an R_*_NONE reloc, at the same
5131 offset as the last reloc. elf_eh_frame.c and
5132 elf_bfd_discard_info rely on reloc offsets
5133 being ordered. */
5134 irela->r_offset = last_offset;
5135 irela->r_info = 0;
5136 irela->r_addend = 0;
5137 continue;
5138 }
5139
5140 irela->r_offset += o->output_offset;
5141
5142 /* Relocs in an executable have to be virtual addresses. */
5143 if (!finfo->info->relocateable)
5144 irela->r_offset += o->output_section->vma;
5145
5146 last_offset = irela->r_offset;
5147
5148 r_symndx = ELF_R_SYM (irela->r_info);
5149 if (r_symndx == STN_UNDEF)
5150 continue;
5151
5152 if (r_symndx >= locsymcount
5153 || (elf_bad_symtab (input_bfd)
5154 && finfo->sections[r_symndx] == NULL))
5155 {
5156 struct elf_link_hash_entry *rh;
5157 unsigned long indx;
5158
5159 /* This is a reloc against a global symbol. We
5160 have not yet output all the local symbols, so
5161 we do not know the symbol index of any global
5162 symbol. We set the rel_hash entry for this
5163 reloc to point to the global hash table entry
5164 for this symbol. The symbol index is then
5165 set at the end of elf_bfd_final_link. */
5166 indx = r_symndx - extsymoff;
5167 rh = elf_sym_hashes (input_bfd)[indx];
5168 while (rh->root.type == bfd_link_hash_indirect
5169 || rh->root.type == bfd_link_hash_warning)
5170 rh = (struct elf_link_hash_entry *) rh->root.u.i.link;
5171
5172 /* Setting the index to -2 tells
5173 elf_link_output_extsym that this symbol is
5174 used by a reloc. */
5175 BFD_ASSERT (rh->indx < 0);
5176 rh->indx = -2;
5177
5178 *rel_hash = rh;
5179
5180 continue;
5181 }
5182
5183 /* This is a reloc against a local symbol. */
5184
5185 *rel_hash = NULL;
5186 sym = isymbuf[r_symndx];
5187 sec = finfo->sections[r_symndx];
5188 if (ELF_ST_TYPE (sym.st_info) == STT_SECTION)
5189 {
5190 /* I suppose the backend ought to fill in the
5191 section of any STT_SECTION symbol against a
5192 processor specific section. If we have
5193 discarded a section, the output_section will
5194 be the absolute section. */
5195 if (bfd_is_abs_section (sec)
5196 || (sec != NULL
5197 && bfd_is_abs_section (sec->output_section)))
5198 r_symndx = 0;
5199 else if (sec == NULL || sec->owner == NULL)
5200 {
5201 bfd_set_error (bfd_error_bad_value);
5202 return FALSE;
5203 }
5204 else
5205 {
5206 r_symndx = sec->output_section->target_index;
5207 BFD_ASSERT (r_symndx != 0);
5208 }
5209
5210 /* Adjust the addend according to where the
5211 section winds up in the output section. */
5212 if (rela_normal)
5213 irela->r_addend += sec->output_offset;
5214 }
5215 else
5216 {
5217 if (finfo->indices[r_symndx] == -1)
5218 {
5219 unsigned long shlink;
5220 const char *name;
5221 asection *osec;
5222
5223 if (finfo->info->strip == strip_all)
5224 {
5225 /* You can't do ld -r -s. */
5226 bfd_set_error (bfd_error_invalid_operation);
5227 return FALSE;
5228 }
5229
5230 /* This symbol was skipped earlier, but
5231 since it is needed by a reloc, we
5232 must output it now. */
5233 shlink = symtab_hdr->sh_link;
5234 name = (bfd_elf_string_from_elf_section
5235 (input_bfd, shlink, sym.st_name));
5236 if (name == NULL)
5237 return FALSE;
5238
5239 osec = sec->output_section;
5240 sym.st_shndx =
5241 _bfd_elf_section_from_bfd_section (output_bfd,
5242 osec);
5243 if (sym.st_shndx == SHN_BAD)
5244 return FALSE;
5245
5246 sym.st_value += sec->output_offset;
5247 if (! finfo->info->relocateable)
5248 {
5249 sym.st_value += osec->vma;
5250 if (ELF_ST_TYPE (sym.st_info) == STT_TLS)
5251 {
5252 /* STT_TLS symbols are relative to PT_TLS
5253 segment base. */
5254 BFD_ASSERT (finfo->first_tls_sec != NULL);
5255 sym.st_value -= finfo->first_tls_sec->vma;
5256 }
5257 }
5258
5259 finfo->indices[r_symndx]
5260 = bfd_get_symcount (output_bfd);
5261
5262 if (! elf_link_output_sym (finfo, name, &sym, sec))
5263 return FALSE;
5264 }
5265
5266 r_symndx = finfo->indices[r_symndx];
5267 }
5268
5269 irela->r_info = ELF_R_INFO (r_symndx,
5270 ELF_R_TYPE (irela->r_info));
5271 }
5272
5273 /* Swap out the relocs. */
5274 if (bed->elf_backend_emit_relocs
5275 && !(finfo->info->relocateable
5276 || finfo->info->emitrelocations))
5277 reloc_emitter = bed->elf_backend_emit_relocs;
5278 else
5279 reloc_emitter = _bfd_elf_link_output_relocs;
5280
5281 if (input_rel_hdr->sh_size != 0
5282 && ! (*reloc_emitter) (output_bfd, o, input_rel_hdr,
5283 internal_relocs))
5284 return FALSE;
5285
5286 input_rel_hdr2 = elf_section_data (o)->rel_hdr2;
5287 if (input_rel_hdr2 && input_rel_hdr2->sh_size != 0)
5288 {
5289 internal_relocs += (NUM_SHDR_ENTRIES (input_rel_hdr)
5290 * bed->s->int_rels_per_ext_rel);
5291 if (! (*reloc_emitter) (output_bfd, o, input_rel_hdr2,
5292 internal_relocs))
5293 return FALSE;
5294 }
5295 }
5296 }
5297
5298 /* Write out the modified section contents. */
5299 if (bed->elf_backend_write_section
5300 && (*bed->elf_backend_write_section) (output_bfd, o, contents))
5301 {
5302 /* Section written out. */
5303 }
5304 else switch (o->sec_info_type)
5305 {
5306 case ELF_INFO_TYPE_STABS:
5307 if (! (_bfd_write_section_stabs
5308 (output_bfd,
5309 &elf_hash_table (finfo->info)->stab_info,
5310 o, &elf_section_data (o)->sec_info, contents)))
5311 return FALSE;
5312 break;
5313 case ELF_INFO_TYPE_MERGE:
5314 if (! _bfd_write_merged_section (output_bfd, o,
5315 elf_section_data (o)->sec_info))
5316 return FALSE;
5317 break;
5318 case ELF_INFO_TYPE_EH_FRAME:
5319 {
5320 if (! _bfd_elf_write_section_eh_frame (output_bfd, finfo->info,
5321 o, contents))
5322 return FALSE;
5323 }
5324 break;
5325 default:
5326 {
5327 bfd_size_type sec_size;
5328
5329 sec_size = (o->_cooked_size != 0 ? o->_cooked_size : o->_raw_size);
5330 if (! (o->flags & SEC_EXCLUDE)
5331 && ! bfd_set_section_contents (output_bfd, o->output_section,
5332 contents,
5333 (file_ptr) o->output_offset,
5334 sec_size))
5335 return FALSE;
5336 }
5337 break;
5338 }
5339 }
5340
5341 return TRUE;
5342 }
5343
5344 /* Generate a reloc when linking an ELF file. This is a reloc
5345 requested by the linker, and does come from any input file. This
5346 is used to build constructor and destructor tables when linking
5347 with -Ur. */
5348
5349 static bfd_boolean
5350 elf_reloc_link_order (output_bfd, info, output_section, link_order)
5351 bfd *output_bfd;
5352 struct bfd_link_info *info;
5353 asection *output_section;
5354 struct bfd_link_order *link_order;
5355 {
5356 reloc_howto_type *howto;
5357 long indx;
5358 bfd_vma offset;
5359 bfd_vma addend;
5360 struct elf_link_hash_entry **rel_hash_ptr;
5361 Elf_Internal_Shdr *rel_hdr;
5362 struct elf_backend_data *bed = get_elf_backend_data (output_bfd);
5363 Elf_Internal_Rela irel[MAX_INT_RELS_PER_EXT_REL];
5364 bfd_byte *erel;
5365 unsigned int i;
5366
5367 howto = bfd_reloc_type_lookup (output_bfd, link_order->u.reloc.p->reloc);
5368 if (howto == NULL)
5369 {
5370 bfd_set_error (bfd_error_bad_value);
5371 return FALSE;
5372 }
5373
5374 addend = link_order->u.reloc.p->addend;
5375
5376 /* Figure out the symbol index. */
5377 rel_hash_ptr = (elf_section_data (output_section)->rel_hashes
5378 + elf_section_data (output_section)->rel_count
5379 + elf_section_data (output_section)->rel_count2);
5380 if (link_order->type == bfd_section_reloc_link_order)
5381 {
5382 indx = link_order->u.reloc.p->u.section->target_index;
5383 BFD_ASSERT (indx != 0);
5384 *rel_hash_ptr = NULL;
5385 }
5386 else
5387 {
5388 struct elf_link_hash_entry *h;
5389
5390 /* Treat a reloc against a defined symbol as though it were
5391 actually against the section. */
5392 h = ((struct elf_link_hash_entry *)
5393 bfd_wrapped_link_hash_lookup (output_bfd, info,
5394 link_order->u.reloc.p->u.name,
5395 FALSE, FALSE, TRUE));
5396 if (h != NULL
5397 && (h->root.type == bfd_link_hash_defined
5398 || h->root.type == bfd_link_hash_defweak))
5399 {
5400 asection *section;
5401
5402 section = h->root.u.def.section;
5403 indx = section->output_section->target_index;
5404 *rel_hash_ptr = NULL;
5405 /* It seems that we ought to add the symbol value to the
5406 addend here, but in practice it has already been added
5407 because it was passed to constructor_callback. */
5408 addend += section->output_section->vma + section->output_offset;
5409 }
5410 else if (h != NULL)
5411 {
5412 /* Setting the index to -2 tells elf_link_output_extsym that
5413 this symbol is used by a reloc. */
5414 h->indx = -2;
5415 *rel_hash_ptr = h;
5416 indx = 0;
5417 }
5418 else
5419 {
5420 if (! ((*info->callbacks->unattached_reloc)
5421 (info, link_order->u.reloc.p->u.name, (bfd *) NULL,
5422 (asection *) NULL, (bfd_vma) 0)))
5423 return FALSE;
5424 indx = 0;
5425 }
5426 }
5427
5428 /* If this is an inplace reloc, we must write the addend into the
5429 object file. */
5430 if (howto->partial_inplace && addend != 0)
5431 {
5432 bfd_size_type size;
5433 bfd_reloc_status_type rstat;
5434 bfd_byte *buf;
5435 bfd_boolean ok;
5436 const char *sym_name;
5437
5438 size = bfd_get_reloc_size (howto);
5439 buf = (bfd_byte *) bfd_zmalloc (size);
5440 if (buf == (bfd_byte *) NULL)
5441 return FALSE;
5442 rstat = _bfd_relocate_contents (howto, output_bfd, (bfd_vma) addend, buf);
5443 switch (rstat)
5444 {
5445 case bfd_reloc_ok:
5446 break;
5447
5448 default:
5449 case bfd_reloc_outofrange:
5450 abort ();
5451
5452 case bfd_reloc_overflow:
5453 if (link_order->type == bfd_section_reloc_link_order)
5454 sym_name = bfd_section_name (output_bfd,
5455 link_order->u.reloc.p->u.section);
5456 else
5457 sym_name = link_order->u.reloc.p->u.name;
5458 if (! ((*info->callbacks->reloc_overflow)
5459 (info, sym_name, howto->name, addend,
5460 (bfd *) NULL, (asection *) NULL, (bfd_vma) 0)))
5461 {
5462 free (buf);
5463 return FALSE;
5464 }
5465 break;
5466 }
5467 ok = bfd_set_section_contents (output_bfd, output_section, (PTR) buf,
5468 (file_ptr) link_order->offset, size);
5469 free (buf);
5470 if (! ok)
5471 return FALSE;
5472 }
5473
5474 /* The address of a reloc is relative to the section in a
5475 relocateable file, and is a virtual address in an executable
5476 file. */
5477 offset = link_order->offset;
5478 if (! info->relocateable)
5479 offset += output_section->vma;
5480
5481 for (i = 0; i < bed->s->int_rels_per_ext_rel; i++)
5482 {
5483 irel[i].r_offset = offset;
5484 irel[i].r_info = 0;
5485 irel[i].r_addend = 0;
5486 }
5487 irel[0].r_info = ELF_R_INFO (indx, howto->type);
5488
5489 rel_hdr = &elf_section_data (output_section)->rel_hdr;
5490 erel = rel_hdr->contents;
5491 if (rel_hdr->sh_type == SHT_REL)
5492 {
5493 erel += (elf_section_data (output_section)->rel_count
5494 * sizeof (Elf_External_Rel));
5495 (*bed->s->swap_reloc_out) (output_bfd, irel, erel);
5496 }
5497 else
5498 {
5499 irel[0].r_addend = addend;
5500 erel += (elf_section_data (output_section)->rel_count
5501 * sizeof (Elf_External_Rela));
5502 (*bed->s->swap_reloca_out) (output_bfd, irel, erel);
5503 }
5504
5505 ++elf_section_data (output_section)->rel_count;
5506
5507 return TRUE;
5508 }
5509 \f
5510 /* Allocate a pointer to live in a linker created section. */
5511
5512 bfd_boolean
5513 elf_create_pointer_linker_section (abfd, info, lsect, h, rel)
5514 bfd *abfd;
5515 struct bfd_link_info *info;
5516 elf_linker_section_t *lsect;
5517 struct elf_link_hash_entry *h;
5518 const Elf_Internal_Rela *rel;
5519 {
5520 elf_linker_section_pointers_t **ptr_linker_section_ptr = NULL;
5521 elf_linker_section_pointers_t *linker_section_ptr;
5522 unsigned long r_symndx = ELF_R_SYM (rel->r_info);
5523 bfd_size_type amt;
5524
5525 BFD_ASSERT (lsect != NULL);
5526
5527 /* Is this a global symbol? */
5528 if (h != NULL)
5529 {
5530 /* Has this symbol already been allocated? If so, our work is done. */
5531 if (_bfd_elf_find_pointer_linker_section (h->linker_section_pointer,
5532 rel->r_addend,
5533 lsect->which))
5534 return TRUE;
5535
5536 ptr_linker_section_ptr = &h->linker_section_pointer;
5537 /* Make sure this symbol is output as a dynamic symbol. */
5538 if (h->dynindx == -1)
5539 {
5540 if (! elf_link_record_dynamic_symbol (info, h))
5541 return FALSE;
5542 }
5543
5544 if (lsect->rel_section)
5545 lsect->rel_section->_raw_size += sizeof (Elf_External_Rela);
5546 }
5547 else
5548 {
5549 /* Allocation of a pointer to a local symbol. */
5550 elf_linker_section_pointers_t **ptr = elf_local_ptr_offsets (abfd);
5551
5552 /* Allocate a table to hold the local symbols if first time. */
5553 if (!ptr)
5554 {
5555 unsigned int num_symbols = elf_tdata (abfd)->symtab_hdr.sh_info;
5556 register unsigned int i;
5557
5558 amt = num_symbols;
5559 amt *= sizeof (elf_linker_section_pointers_t *);
5560 ptr = (elf_linker_section_pointers_t **) bfd_alloc (abfd, amt);
5561
5562 if (!ptr)
5563 return FALSE;
5564
5565 elf_local_ptr_offsets (abfd) = ptr;
5566 for (i = 0; i < num_symbols; i++)
5567 ptr[i] = (elf_linker_section_pointers_t *) 0;
5568 }
5569
5570 /* Has this symbol already been allocated? If so, our work is done. */
5571 if (_bfd_elf_find_pointer_linker_section (ptr[r_symndx],
5572 rel->r_addend,
5573 lsect->which))
5574 return TRUE;
5575
5576 ptr_linker_section_ptr = &ptr[r_symndx];
5577
5578 if (info->shared)
5579 {
5580 /* If we are generating a shared object, we need to
5581 output a R_<xxx>_RELATIVE reloc so that the
5582 dynamic linker can adjust this GOT entry. */
5583 BFD_ASSERT (lsect->rel_section != NULL);
5584 lsect->rel_section->_raw_size += sizeof (Elf_External_Rela);
5585 }
5586 }
5587
5588 /* Allocate space for a pointer in the linker section, and allocate
5589 a new pointer record from internal memory. */
5590 BFD_ASSERT (ptr_linker_section_ptr != NULL);
5591 amt = sizeof (elf_linker_section_pointers_t);
5592 linker_section_ptr = (elf_linker_section_pointers_t *) bfd_alloc (abfd, amt);
5593
5594 if (!linker_section_ptr)
5595 return FALSE;
5596
5597 linker_section_ptr->next = *ptr_linker_section_ptr;
5598 linker_section_ptr->addend = rel->r_addend;
5599 linker_section_ptr->which = lsect->which;
5600 linker_section_ptr->written_address_p = FALSE;
5601 *ptr_linker_section_ptr = linker_section_ptr;
5602
5603 #if 0
5604 if (lsect->hole_size && lsect->hole_offset < lsect->max_hole_offset)
5605 {
5606 linker_section_ptr->offset = (lsect->section->_raw_size
5607 - lsect->hole_size + (ARCH_SIZE / 8));
5608 lsect->hole_offset += ARCH_SIZE / 8;
5609 lsect->sym_offset += ARCH_SIZE / 8;
5610 if (lsect->sym_hash)
5611 {
5612 /* Bump up symbol value if needed. */
5613 lsect->sym_hash->root.u.def.value += ARCH_SIZE / 8;
5614 #ifdef DEBUG
5615 fprintf (stderr, "Bump up %s by %ld, current value = %ld\n",
5616 lsect->sym_hash->root.root.string,
5617 (long) ARCH_SIZE / 8,
5618 (long) lsect->sym_hash->root.u.def.value);
5619 #endif
5620 }
5621 }
5622 else
5623 #endif
5624 linker_section_ptr->offset = lsect->section->_raw_size;
5625
5626 lsect->section->_raw_size += ARCH_SIZE / 8;
5627
5628 #ifdef DEBUG
5629 fprintf (stderr,
5630 "Create pointer in linker section %s, offset = %ld, section size = %ld\n",
5631 lsect->name, (long) linker_section_ptr->offset,
5632 (long) lsect->section->_raw_size);
5633 #endif
5634
5635 return TRUE;
5636 }
5637 \f
5638 #if ARCH_SIZE==64
5639 #define bfd_put_ptr(BFD,VAL,ADDR) bfd_put_64 (BFD, VAL, ADDR)
5640 #endif
5641 #if ARCH_SIZE==32
5642 #define bfd_put_ptr(BFD,VAL,ADDR) bfd_put_32 (BFD, VAL, ADDR)
5643 #endif
5644
5645 /* Fill in the address for a pointer generated in a linker section. */
5646
5647 bfd_vma
5648 elf_finish_pointer_linker_section (output_bfd, input_bfd, info, lsect, h,
5649 relocation, rel, relative_reloc)
5650 bfd *output_bfd;
5651 bfd *input_bfd;
5652 struct bfd_link_info *info;
5653 elf_linker_section_t *lsect;
5654 struct elf_link_hash_entry *h;
5655 bfd_vma relocation;
5656 const Elf_Internal_Rela *rel;
5657 int relative_reloc;
5658 {
5659 elf_linker_section_pointers_t *linker_section_ptr;
5660
5661 BFD_ASSERT (lsect != NULL);
5662
5663 if (h != NULL)
5664 {
5665 /* Handle global symbol. */
5666 linker_section_ptr = (_bfd_elf_find_pointer_linker_section
5667 (h->linker_section_pointer,
5668 rel->r_addend,
5669 lsect->which));
5670
5671 BFD_ASSERT (linker_section_ptr != NULL);
5672
5673 if (! elf_hash_table (info)->dynamic_sections_created
5674 || (info->shared
5675 && info->symbolic
5676 && (h->elf_link_hash_flags & ELF_LINK_HASH_DEF_REGULAR)))
5677 {
5678 /* This is actually a static link, or it is a
5679 -Bsymbolic link and the symbol is defined
5680 locally. We must initialize this entry in the
5681 global section.
5682
5683 When doing a dynamic link, we create a .rela.<xxx>
5684 relocation entry to initialize the value. This
5685 is done in the finish_dynamic_symbol routine. */
5686 if (!linker_section_ptr->written_address_p)
5687 {
5688 linker_section_ptr->written_address_p = TRUE;
5689 bfd_put_ptr (output_bfd,
5690 relocation + linker_section_ptr->addend,
5691 (lsect->section->contents
5692 + linker_section_ptr->offset));
5693 }
5694 }
5695 }
5696 else
5697 {
5698 /* Handle local symbol. */
5699 unsigned long r_symndx = ELF_R_SYM (rel->r_info);
5700 BFD_ASSERT (elf_local_ptr_offsets (input_bfd) != NULL);
5701 BFD_ASSERT (elf_local_ptr_offsets (input_bfd)[r_symndx] != NULL);
5702 linker_section_ptr = (_bfd_elf_find_pointer_linker_section
5703 (elf_local_ptr_offsets (input_bfd)[r_symndx],
5704 rel->r_addend,
5705 lsect->which));
5706
5707 BFD_ASSERT (linker_section_ptr != NULL);
5708
5709 /* Write out pointer if it hasn't been rewritten out before. */
5710 if (!linker_section_ptr->written_address_p)
5711 {
5712 linker_section_ptr->written_address_p = TRUE;
5713 bfd_put_ptr (output_bfd, relocation + linker_section_ptr->addend,
5714 lsect->section->contents + linker_section_ptr->offset);
5715
5716 if (info->shared)
5717 {
5718 asection *srel = lsect->rel_section;
5719 Elf_Internal_Rela outrel[MAX_INT_RELS_PER_EXT_REL];
5720 bfd_byte *erel;
5721 struct elf_backend_data *bed = get_elf_backend_data (output_bfd);
5722 unsigned int i;
5723
5724 /* We need to generate a relative reloc for the dynamic
5725 linker. */
5726 if (!srel)
5727 {
5728 srel = bfd_get_section_by_name (elf_hash_table (info)->dynobj,
5729 lsect->rel_name);
5730 lsect->rel_section = srel;
5731 }
5732
5733 BFD_ASSERT (srel != NULL);
5734
5735 for (i = 0; i < bed->s->int_rels_per_ext_rel; i++)
5736 {
5737 outrel[i].r_offset = (lsect->section->output_section->vma
5738 + lsect->section->output_offset
5739 + linker_section_ptr->offset);
5740 outrel[i].r_info = 0;
5741 outrel[i].r_addend = 0;
5742 }
5743 outrel[0].r_info = ELF_R_INFO (0, relative_reloc);
5744 erel = lsect->section->contents;
5745 erel += (elf_section_data (lsect->section)->rel_count++
5746 * sizeof (Elf_External_Rela));
5747 elf_swap_reloca_out (output_bfd, outrel, erel);
5748 }
5749 }
5750 }
5751
5752 relocation = (lsect->section->output_offset
5753 + linker_section_ptr->offset
5754 - lsect->hole_offset
5755 - lsect->sym_offset);
5756
5757 #ifdef DEBUG
5758 fprintf (stderr,
5759 "Finish pointer in linker section %s, offset = %ld (0x%lx)\n",
5760 lsect->name, (long) relocation, (long) relocation);
5761 #endif
5762
5763 /* Subtract out the addend, because it will get added back in by the normal
5764 processing. */
5765 return relocation - linker_section_ptr->addend;
5766 }
5767 \f
5768 /* Garbage collect unused sections. */
5769
5770 static bfd_boolean elf_gc_mark
5771 PARAMS ((struct bfd_link_info *, asection *,
5772 asection * (*) (asection *, struct bfd_link_info *,
5773 Elf_Internal_Rela *, struct elf_link_hash_entry *,
5774 Elf_Internal_Sym *)));
5775
5776 static bfd_boolean elf_gc_sweep
5777 PARAMS ((struct bfd_link_info *,
5778 bfd_boolean (*) (bfd *, struct bfd_link_info *, asection *,
5779 const Elf_Internal_Rela *)));
5780
5781 static bfd_boolean elf_gc_sweep_symbol
5782 PARAMS ((struct elf_link_hash_entry *, PTR));
5783
5784 static bfd_boolean elf_gc_allocate_got_offsets
5785 PARAMS ((struct elf_link_hash_entry *, PTR));
5786
5787 static bfd_boolean elf_gc_propagate_vtable_entries_used
5788 PARAMS ((struct elf_link_hash_entry *, PTR));
5789
5790 static bfd_boolean elf_gc_smash_unused_vtentry_relocs
5791 PARAMS ((struct elf_link_hash_entry *, PTR));
5792
5793 /* The mark phase of garbage collection. For a given section, mark
5794 it and any sections in this section's group, and all the sections
5795 which define symbols to which it refers. */
5796
5797 typedef asection * (*gc_mark_hook_fn)
5798 PARAMS ((asection *, struct bfd_link_info *, Elf_Internal_Rela *,
5799 struct elf_link_hash_entry *, Elf_Internal_Sym *));
5800
5801 static bfd_boolean
5802 elf_gc_mark (info, sec, gc_mark_hook)
5803 struct bfd_link_info *info;
5804 asection *sec;
5805 gc_mark_hook_fn gc_mark_hook;
5806 {
5807 bfd_boolean ret;
5808 asection *group_sec;
5809
5810 sec->gc_mark = 1;
5811
5812 /* Mark all the sections in the group. */
5813 group_sec = elf_section_data (sec)->next_in_group;
5814 if (group_sec && !group_sec->gc_mark)
5815 if (!elf_gc_mark (info, group_sec, gc_mark_hook))
5816 return FALSE;
5817
5818 /* Look through the section relocs. */
5819 ret = TRUE;
5820 if ((sec->flags & SEC_RELOC) != 0 && sec->reloc_count > 0)
5821 {
5822 Elf_Internal_Rela *relstart, *rel, *relend;
5823 Elf_Internal_Shdr *symtab_hdr;
5824 struct elf_link_hash_entry **sym_hashes;
5825 size_t nlocsyms;
5826 size_t extsymoff;
5827 bfd *input_bfd = sec->owner;
5828 struct elf_backend_data *bed = get_elf_backend_data (input_bfd);
5829 Elf_Internal_Sym *isym = NULL;
5830
5831 symtab_hdr = &elf_tdata (input_bfd)->symtab_hdr;
5832 sym_hashes = elf_sym_hashes (input_bfd);
5833
5834 /* Read the local symbols. */
5835 if (elf_bad_symtab (input_bfd))
5836 {
5837 nlocsyms = symtab_hdr->sh_size / sizeof (Elf_External_Sym);
5838 extsymoff = 0;
5839 }
5840 else
5841 extsymoff = nlocsyms = symtab_hdr->sh_info;
5842
5843 isym = (Elf_Internal_Sym *) symtab_hdr->contents;
5844 if (isym == NULL && nlocsyms != 0)
5845 {
5846 isym = bfd_elf_get_elf_syms (input_bfd, symtab_hdr, nlocsyms, 0,
5847 NULL, NULL, NULL);
5848 if (isym == NULL)
5849 return FALSE;
5850 }
5851
5852 /* Read the relocations. */
5853 relstart = _bfd_elf_link_read_relocs (input_bfd, sec, NULL,
5854 (Elf_Internal_Rela *) NULL,
5855 info->keep_memory);
5856 if (relstart == NULL)
5857 {
5858 ret = FALSE;
5859 goto out1;
5860 }
5861 relend = relstart + sec->reloc_count * bed->s->int_rels_per_ext_rel;
5862
5863 for (rel = relstart; rel < relend; rel++)
5864 {
5865 unsigned long r_symndx;
5866 asection *rsec;
5867 struct elf_link_hash_entry *h;
5868
5869 r_symndx = ELF_R_SYM (rel->r_info);
5870 if (r_symndx == 0)
5871 continue;
5872
5873 if (r_symndx >= nlocsyms
5874 || ELF_ST_BIND (isym[r_symndx].st_info) != STB_LOCAL)
5875 {
5876 h = sym_hashes[r_symndx - extsymoff];
5877 rsec = (*gc_mark_hook) (sec, info, rel, h, NULL);
5878 }
5879 else
5880 {
5881 rsec = (*gc_mark_hook) (sec, info, rel, NULL, &isym[r_symndx]);
5882 }
5883
5884 if (rsec && !rsec->gc_mark)
5885 {
5886 if (bfd_get_flavour (rsec->owner) != bfd_target_elf_flavour)
5887 rsec->gc_mark = 1;
5888 else if (!elf_gc_mark (info, rsec, gc_mark_hook))
5889 {
5890 ret = FALSE;
5891 goto out2;
5892 }
5893 }
5894 }
5895
5896 out2:
5897 if (elf_section_data (sec)->relocs != relstart)
5898 free (relstart);
5899 out1:
5900 if (isym != NULL && symtab_hdr->contents != (unsigned char *) isym)
5901 {
5902 if (! info->keep_memory)
5903 free (isym);
5904 else
5905 symtab_hdr->contents = (unsigned char *) isym;
5906 }
5907 }
5908
5909 return ret;
5910 }
5911
5912 /* The sweep phase of garbage collection. Remove all garbage sections. */
5913
5914 typedef bfd_boolean (*gc_sweep_hook_fn)
5915 PARAMS ((bfd *, struct bfd_link_info *, asection *,
5916 const Elf_Internal_Rela *));
5917
5918 static bfd_boolean
5919 elf_gc_sweep (info, gc_sweep_hook)
5920 struct bfd_link_info *info;
5921 gc_sweep_hook_fn gc_sweep_hook;
5922 {
5923 bfd *sub;
5924
5925 for (sub = info->input_bfds; sub != NULL; sub = sub->link_next)
5926 {
5927 asection *o;
5928
5929 if (bfd_get_flavour (sub) != bfd_target_elf_flavour)
5930 continue;
5931
5932 for (o = sub->sections; o != NULL; o = o->next)
5933 {
5934 /* Keep special sections. Keep .debug sections. */
5935 if ((o->flags & SEC_LINKER_CREATED)
5936 || (o->flags & SEC_DEBUGGING))
5937 o->gc_mark = 1;
5938
5939 if (o->gc_mark)
5940 continue;
5941
5942 /* Skip sweeping sections already excluded. */
5943 if (o->flags & SEC_EXCLUDE)
5944 continue;
5945
5946 /* Since this is early in the link process, it is simple
5947 to remove a section from the output. */
5948 o->flags |= SEC_EXCLUDE;
5949
5950 /* But we also have to update some of the relocation
5951 info we collected before. */
5952 if (gc_sweep_hook
5953 && (o->flags & SEC_RELOC) && o->reloc_count > 0)
5954 {
5955 Elf_Internal_Rela *internal_relocs;
5956 bfd_boolean r;
5957
5958 internal_relocs
5959 = _bfd_elf_link_read_relocs (o->owner, o, NULL,
5960 (Elf_Internal_Rela *) NULL,
5961 info->keep_memory);
5962 if (internal_relocs == NULL)
5963 return FALSE;
5964
5965 r = (*gc_sweep_hook) (o->owner, info, o, internal_relocs);
5966
5967 if (elf_section_data (o)->relocs != internal_relocs)
5968 free (internal_relocs);
5969
5970 if (!r)
5971 return FALSE;
5972 }
5973 }
5974 }
5975
5976 /* Remove the symbols that were in the swept sections from the dynamic
5977 symbol table. GCFIXME: Anyone know how to get them out of the
5978 static symbol table as well? */
5979 {
5980 int i = 0;
5981
5982 elf_link_hash_traverse (elf_hash_table (info),
5983 elf_gc_sweep_symbol,
5984 (PTR) &i);
5985
5986 elf_hash_table (info)->dynsymcount = i;
5987 }
5988
5989 return TRUE;
5990 }
5991
5992 /* Sweep symbols in swept sections. Called via elf_link_hash_traverse. */
5993
5994 static bfd_boolean
5995 elf_gc_sweep_symbol (h, idxptr)
5996 struct elf_link_hash_entry *h;
5997 PTR idxptr;
5998 {
5999 int *idx = (int *) idxptr;
6000
6001 if (h->root.type == bfd_link_hash_warning)
6002 h = (struct elf_link_hash_entry *) h->root.u.i.link;
6003
6004 if (h->dynindx != -1
6005 && ((h->root.type != bfd_link_hash_defined
6006 && h->root.type != bfd_link_hash_defweak)
6007 || h->root.u.def.section->gc_mark))
6008 h->dynindx = (*idx)++;
6009
6010 return TRUE;
6011 }
6012
6013 /* Propogate collected vtable information. This is called through
6014 elf_link_hash_traverse. */
6015
6016 static bfd_boolean
6017 elf_gc_propagate_vtable_entries_used (h, okp)
6018 struct elf_link_hash_entry *h;
6019 PTR okp;
6020 {
6021 if (h->root.type == bfd_link_hash_warning)
6022 h = (struct elf_link_hash_entry *) h->root.u.i.link;
6023
6024 /* Those that are not vtables. */
6025 if (h->vtable_parent == NULL)
6026 return TRUE;
6027
6028 /* Those vtables that do not have parents, we cannot merge. */
6029 if (h->vtable_parent == (struct elf_link_hash_entry *) -1)
6030 return TRUE;
6031
6032 /* If we've already been done, exit. */
6033 if (h->vtable_entries_used && h->vtable_entries_used[-1])
6034 return TRUE;
6035
6036 /* Make sure the parent's table is up to date. */
6037 elf_gc_propagate_vtable_entries_used (h->vtable_parent, okp);
6038
6039 if (h->vtable_entries_used == NULL)
6040 {
6041 /* None of this table's entries were referenced. Re-use the
6042 parent's table. */
6043 h->vtable_entries_used = h->vtable_parent->vtable_entries_used;
6044 h->vtable_entries_size = h->vtable_parent->vtable_entries_size;
6045 }
6046 else
6047 {
6048 size_t n;
6049 bfd_boolean *cu, *pu;
6050
6051 /* Or the parent's entries into ours. */
6052 cu = h->vtable_entries_used;
6053 cu[-1] = TRUE;
6054 pu = h->vtable_parent->vtable_entries_used;
6055 if (pu != NULL)
6056 {
6057 asection *sec = h->root.u.def.section;
6058 struct elf_backend_data *bed = get_elf_backend_data (sec->owner);
6059 unsigned int log_file_align = bed->s->log_file_align;
6060
6061 n = h->vtable_parent->vtable_entries_size >> log_file_align;
6062 while (n--)
6063 {
6064 if (*pu)
6065 *cu = TRUE;
6066 pu++;
6067 cu++;
6068 }
6069 }
6070 }
6071
6072 return TRUE;
6073 }
6074
6075 static bfd_boolean
6076 elf_gc_smash_unused_vtentry_relocs (h, okp)
6077 struct elf_link_hash_entry *h;
6078 PTR okp;
6079 {
6080 asection *sec;
6081 bfd_vma hstart, hend;
6082 Elf_Internal_Rela *relstart, *relend, *rel;
6083 struct elf_backend_data *bed;
6084 unsigned int log_file_align;
6085
6086 if (h->root.type == bfd_link_hash_warning)
6087 h = (struct elf_link_hash_entry *) h->root.u.i.link;
6088
6089 /* Take care of both those symbols that do not describe vtables as
6090 well as those that are not loaded. */
6091 if (h->vtable_parent == NULL)
6092 return TRUE;
6093
6094 BFD_ASSERT (h->root.type == bfd_link_hash_defined
6095 || h->root.type == bfd_link_hash_defweak);
6096
6097 sec = h->root.u.def.section;
6098 hstart = h->root.u.def.value;
6099 hend = hstart + h->size;
6100
6101 relstart = _bfd_elf_link_read_relocs (sec->owner, sec, NULL,
6102 (Elf_Internal_Rela *) NULL, TRUE);
6103 if (!relstart)
6104 return *(bfd_boolean *) okp = FALSE;
6105 bed = get_elf_backend_data (sec->owner);
6106 log_file_align = bed->s->log_file_align;
6107
6108 relend = relstart + sec->reloc_count * bed->s->int_rels_per_ext_rel;
6109
6110 for (rel = relstart; rel < relend; ++rel)
6111 if (rel->r_offset >= hstart && rel->r_offset < hend)
6112 {
6113 /* If the entry is in use, do nothing. */
6114 if (h->vtable_entries_used
6115 && (rel->r_offset - hstart) < h->vtable_entries_size)
6116 {
6117 bfd_vma entry = (rel->r_offset - hstart) >> log_file_align;
6118 if (h->vtable_entries_used[entry])
6119 continue;
6120 }
6121 /* Otherwise, kill it. */
6122 rel->r_offset = rel->r_info = rel->r_addend = 0;
6123 }
6124
6125 return TRUE;
6126 }
6127
6128 /* Do mark and sweep of unused sections. */
6129
6130 bfd_boolean
6131 elf_gc_sections (abfd, info)
6132 bfd *abfd;
6133 struct bfd_link_info *info;
6134 {
6135 bfd_boolean ok = TRUE;
6136 bfd *sub;
6137 asection * (*gc_mark_hook)
6138 PARAMS ((asection *, struct bfd_link_info *, Elf_Internal_Rela *,
6139 struct elf_link_hash_entry *h, Elf_Internal_Sym *));
6140
6141 if (!get_elf_backend_data (abfd)->can_gc_sections
6142 || info->relocateable || info->emitrelocations
6143 || elf_hash_table (info)->dynamic_sections_created)
6144 return TRUE;
6145
6146 /* Apply transitive closure to the vtable entry usage info. */
6147 elf_link_hash_traverse (elf_hash_table (info),
6148 elf_gc_propagate_vtable_entries_used,
6149 (PTR) &ok);
6150 if (!ok)
6151 return FALSE;
6152
6153 /* Kill the vtable relocations that were not used. */
6154 elf_link_hash_traverse (elf_hash_table (info),
6155 elf_gc_smash_unused_vtentry_relocs,
6156 (PTR) &ok);
6157 if (!ok)
6158 return FALSE;
6159
6160 /* Grovel through relocs to find out who stays ... */
6161
6162 gc_mark_hook = get_elf_backend_data (abfd)->gc_mark_hook;
6163 for (sub = info->input_bfds; sub != NULL; sub = sub->link_next)
6164 {
6165 asection *o;
6166
6167 if (bfd_get_flavour (sub) != bfd_target_elf_flavour)
6168 continue;
6169
6170 for (o = sub->sections; o != NULL; o = o->next)
6171 {
6172 if (o->flags & SEC_KEEP)
6173 if (!elf_gc_mark (info, o, gc_mark_hook))
6174 return FALSE;
6175 }
6176 }
6177
6178 /* ... and mark SEC_EXCLUDE for those that go. */
6179 if (!elf_gc_sweep (info, get_elf_backend_data (abfd)->gc_sweep_hook))
6180 return FALSE;
6181
6182 return TRUE;
6183 }
6184 \f
6185 /* Called from check_relocs to record the existance of a VTINHERIT reloc. */
6186
6187 bfd_boolean
6188 elf_gc_record_vtinherit (abfd, sec, h, offset)
6189 bfd *abfd;
6190 asection *sec;
6191 struct elf_link_hash_entry *h;
6192 bfd_vma offset;
6193 {
6194 struct elf_link_hash_entry **sym_hashes, **sym_hashes_end;
6195 struct elf_link_hash_entry **search, *child;
6196 bfd_size_type extsymcount;
6197
6198 /* The sh_info field of the symtab header tells us where the
6199 external symbols start. We don't care about the local symbols at
6200 this point. */
6201 extsymcount = elf_tdata (abfd)->symtab_hdr.sh_size/sizeof (Elf_External_Sym);
6202 if (!elf_bad_symtab (abfd))
6203 extsymcount -= elf_tdata (abfd)->symtab_hdr.sh_info;
6204
6205 sym_hashes = elf_sym_hashes (abfd);
6206 sym_hashes_end = sym_hashes + extsymcount;
6207
6208 /* Hunt down the child symbol, which is in this section at the same
6209 offset as the relocation. */
6210 for (search = sym_hashes; search != sym_hashes_end; ++search)
6211 {
6212 if ((child = *search) != NULL
6213 && (child->root.type == bfd_link_hash_defined
6214 || child->root.type == bfd_link_hash_defweak)
6215 && child->root.u.def.section == sec
6216 && child->root.u.def.value == offset)
6217 goto win;
6218 }
6219
6220 (*_bfd_error_handler) ("%s: %s+%lu: No symbol found for INHERIT",
6221 bfd_archive_filename (abfd), sec->name,
6222 (unsigned long) offset);
6223 bfd_set_error (bfd_error_invalid_operation);
6224 return FALSE;
6225
6226 win:
6227 if (!h)
6228 {
6229 /* This *should* only be the absolute section. It could potentially
6230 be that someone has defined a non-global vtable though, which
6231 would be bad. It isn't worth paging in the local symbols to be
6232 sure though; that case should simply be handled by the assembler. */
6233
6234 child->vtable_parent = (struct elf_link_hash_entry *) -1;
6235 }
6236 else
6237 child->vtable_parent = h;
6238
6239 return TRUE;
6240 }
6241
6242 /* Called from check_relocs to record the existance of a VTENTRY reloc. */
6243
6244 bfd_boolean
6245 elf_gc_record_vtentry (abfd, sec, h, addend)
6246 bfd *abfd ATTRIBUTE_UNUSED;
6247 asection *sec ATTRIBUTE_UNUSED;
6248 struct elf_link_hash_entry *h;
6249 bfd_vma addend;
6250 {
6251 struct elf_backend_data *bed = get_elf_backend_data (abfd);
6252 unsigned int log_file_align = bed->s->log_file_align;
6253
6254 if (addend >= h->vtable_entries_size)
6255 {
6256 size_t size, bytes;
6257 bfd_boolean *ptr = h->vtable_entries_used;
6258
6259 /* While the symbol is undefined, we have to be prepared to handle
6260 a zero size. */
6261 if (h->root.type == bfd_link_hash_undefined)
6262 size = addend;
6263 else
6264 {
6265 size = h->size;
6266 if (size < addend)
6267 {
6268 /* Oops! We've got a reference past the defined end of
6269 the table. This is probably a bug -- shall we warn? */
6270 size = addend;
6271 }
6272 }
6273
6274 /* Allocate one extra entry for use as a "done" flag for the
6275 consolidation pass. */
6276 bytes = ((size >> log_file_align) + 1) * sizeof (bfd_boolean);
6277
6278 if (ptr)
6279 {
6280 ptr = bfd_realloc (ptr - 1, (bfd_size_type) bytes);
6281
6282 if (ptr != NULL)
6283 {
6284 size_t oldbytes;
6285
6286 oldbytes = (((h->vtable_entries_size >> log_file_align) + 1)
6287 * sizeof (bfd_boolean));
6288 memset (((char *) ptr) + oldbytes, 0, bytes - oldbytes);
6289 }
6290 }
6291 else
6292 ptr = bfd_zmalloc ((bfd_size_type) bytes);
6293
6294 if (ptr == NULL)
6295 return FALSE;
6296
6297 /* And arrange for that done flag to be at index -1. */
6298 h->vtable_entries_used = ptr + 1;
6299 h->vtable_entries_size = size;
6300 }
6301
6302 h->vtable_entries_used[addend >> log_file_align] = TRUE;
6303
6304 return TRUE;
6305 }
6306
6307 /* And an accompanying bit to work out final got entry offsets once
6308 we're done. Should be called from final_link. */
6309
6310 bfd_boolean
6311 elf_gc_common_finalize_got_offsets (abfd, info)
6312 bfd *abfd;
6313 struct bfd_link_info *info;
6314 {
6315 bfd *i;
6316 struct elf_backend_data *bed = get_elf_backend_data (abfd);
6317 bfd_vma gotoff;
6318
6319 /* The GOT offset is relative to the .got section, but the GOT header is
6320 put into the .got.plt section, if the backend uses it. */
6321 if (bed->want_got_plt)
6322 gotoff = 0;
6323 else
6324 gotoff = bed->got_header_size;
6325
6326 /* Do the local .got entries first. */
6327 for (i = info->input_bfds; i; i = i->link_next)
6328 {
6329 bfd_signed_vma *local_got;
6330 bfd_size_type j, locsymcount;
6331 Elf_Internal_Shdr *symtab_hdr;
6332
6333 if (bfd_get_flavour (i) != bfd_target_elf_flavour)
6334 continue;
6335
6336 local_got = elf_local_got_refcounts (i);
6337 if (!local_got)
6338 continue;
6339
6340 symtab_hdr = &elf_tdata (i)->symtab_hdr;
6341 if (elf_bad_symtab (i))
6342 locsymcount = symtab_hdr->sh_size / sizeof (Elf_External_Sym);
6343 else
6344 locsymcount = symtab_hdr->sh_info;
6345
6346 for (j = 0; j < locsymcount; ++j)
6347 {
6348 if (local_got[j] > 0)
6349 {
6350 local_got[j] = gotoff;
6351 gotoff += ARCH_SIZE / 8;
6352 }
6353 else
6354 local_got[j] = (bfd_vma) -1;
6355 }
6356 }
6357
6358 /* Then the global .got entries. .plt refcounts are handled by
6359 adjust_dynamic_symbol */
6360 elf_link_hash_traverse (elf_hash_table (info),
6361 elf_gc_allocate_got_offsets,
6362 (PTR) &gotoff);
6363 return TRUE;
6364 }
6365
6366 /* We need a special top-level link routine to convert got reference counts
6367 to real got offsets. */
6368
6369 static bfd_boolean
6370 elf_gc_allocate_got_offsets (h, offarg)
6371 struct elf_link_hash_entry *h;
6372 PTR offarg;
6373 {
6374 bfd_vma *off = (bfd_vma *) offarg;
6375
6376 if (h->root.type == bfd_link_hash_warning)
6377 h = (struct elf_link_hash_entry *) h->root.u.i.link;
6378
6379 if (h->got.refcount > 0)
6380 {
6381 h->got.offset = off[0];
6382 off[0] += ARCH_SIZE / 8;
6383 }
6384 else
6385 h->got.offset = (bfd_vma) -1;
6386
6387 return TRUE;
6388 }
6389
6390 /* Many folk need no more in the way of final link than this, once
6391 got entry reference counting is enabled. */
6392
6393 bfd_boolean
6394 elf_gc_common_final_link (abfd, info)
6395 bfd *abfd;
6396 struct bfd_link_info *info;
6397 {
6398 if (!elf_gc_common_finalize_got_offsets (abfd, info))
6399 return FALSE;
6400
6401 /* Invoke the regular ELF backend linker to do all the work. */
6402 return elf_bfd_final_link (abfd, info);
6403 }
6404
6405 /* This function will be called though elf_link_hash_traverse to store
6406 all hash value of the exported symbols in an array. */
6407
6408 static bfd_boolean
6409 elf_collect_hash_codes (h, data)
6410 struct elf_link_hash_entry *h;
6411 PTR data;
6412 {
6413 unsigned long **valuep = (unsigned long **) data;
6414 const char *name;
6415 char *p;
6416 unsigned long ha;
6417 char *alc = NULL;
6418
6419 if (h->root.type == bfd_link_hash_warning)
6420 h = (struct elf_link_hash_entry *) h->root.u.i.link;
6421
6422 /* Ignore indirect symbols. These are added by the versioning code. */
6423 if (h->dynindx == -1)
6424 return TRUE;
6425
6426 name = h->root.root.string;
6427 p = strchr (name, ELF_VER_CHR);
6428 if (p != NULL)
6429 {
6430 alc = bfd_malloc ((bfd_size_type) (p - name + 1));
6431 memcpy (alc, name, (size_t) (p - name));
6432 alc[p - name] = '\0';
6433 name = alc;
6434 }
6435
6436 /* Compute the hash value. */
6437 ha = bfd_elf_hash (name);
6438
6439 /* Store the found hash value in the array given as the argument. */
6440 *(*valuep)++ = ha;
6441
6442 /* And store it in the struct so that we can put it in the hash table
6443 later. */
6444 h->elf_hash_value = ha;
6445
6446 if (alc != NULL)
6447 free (alc);
6448
6449 return TRUE;
6450 }
6451
6452 bfd_boolean
6453 elf_reloc_symbol_deleted_p (offset, cookie)
6454 bfd_vma offset;
6455 PTR cookie;
6456 {
6457 struct elf_reloc_cookie *rcookie = (struct elf_reloc_cookie *) cookie;
6458
6459 if (rcookie->bad_symtab)
6460 rcookie->rel = rcookie->rels;
6461
6462 for (; rcookie->rel < rcookie->relend; rcookie->rel++)
6463 {
6464 unsigned long r_symndx;
6465
6466 if (! rcookie->bad_symtab)
6467 if (rcookie->rel->r_offset > offset)
6468 return FALSE;
6469 if (rcookie->rel->r_offset != offset)
6470 continue;
6471
6472 r_symndx = ELF_R_SYM (rcookie->rel->r_info);
6473 if (r_symndx == SHN_UNDEF)
6474 return TRUE;
6475
6476 if (r_symndx >= rcookie->locsymcount
6477 || ELF_ST_BIND (rcookie->locsyms[r_symndx].st_info) != STB_LOCAL)
6478 {
6479 struct elf_link_hash_entry *h;
6480
6481 h = rcookie->sym_hashes[r_symndx - rcookie->extsymoff];
6482
6483 while (h->root.type == bfd_link_hash_indirect
6484 || h->root.type == bfd_link_hash_warning)
6485 h = (struct elf_link_hash_entry *) h->root.u.i.link;
6486
6487 if ((h->root.type == bfd_link_hash_defined
6488 || h->root.type == bfd_link_hash_defweak)
6489 && elf_discarded_section (h->root.u.def.section))
6490 return TRUE;
6491 else
6492 return FALSE;
6493 }
6494 else
6495 {
6496 /* It's not a relocation against a global symbol,
6497 but it could be a relocation against a local
6498 symbol for a discarded section. */
6499 asection *isec;
6500 Elf_Internal_Sym *isym;
6501
6502 /* Need to: get the symbol; get the section. */
6503 isym = &rcookie->locsyms[r_symndx];
6504 if (isym->st_shndx < SHN_LORESERVE || isym->st_shndx > SHN_HIRESERVE)
6505 {
6506 isec = section_from_elf_index (rcookie->abfd, isym->st_shndx);
6507 if (isec != NULL && elf_discarded_section (isec))
6508 return TRUE;
6509 }
6510 }
6511 return FALSE;
6512 }
6513 return FALSE;
6514 }
6515
6516 /* Discard unneeded references to discarded sections.
6517 Returns TRUE if any section's size was changed. */
6518 /* This function assumes that the relocations are in sorted order,
6519 which is true for all known assemblers. */
6520
6521 bfd_boolean
6522 elf_bfd_discard_info (output_bfd, info)
6523 bfd *output_bfd;
6524 struct bfd_link_info *info;
6525 {
6526 struct elf_reloc_cookie cookie;
6527 asection *stab, *eh;
6528 Elf_Internal_Shdr *symtab_hdr;
6529 struct elf_backend_data *bed;
6530 bfd *abfd;
6531 unsigned int count;
6532 bfd_boolean ret = FALSE;
6533
6534 if (info->traditional_format
6535 || info->hash->creator->flavour != bfd_target_elf_flavour
6536 || ! is_elf_hash_table (info))
6537 return FALSE;
6538
6539 for (abfd = info->input_bfds; abfd != NULL; abfd = abfd->link_next)
6540 {
6541 if (bfd_get_flavour (abfd) != bfd_target_elf_flavour)
6542 continue;
6543
6544 bed = get_elf_backend_data (abfd);
6545
6546 if ((abfd->flags & DYNAMIC) != 0)
6547 continue;
6548
6549 eh = bfd_get_section_by_name (abfd, ".eh_frame");
6550 if (info->relocateable
6551 || (eh != NULL
6552 && (eh->_raw_size == 0
6553 || bfd_is_abs_section (eh->output_section))))
6554 eh = NULL;
6555
6556 stab = bfd_get_section_by_name (abfd, ".stab");
6557 if (stab != NULL
6558 && (stab->_raw_size == 0
6559 || bfd_is_abs_section (stab->output_section)
6560 || stab->sec_info_type != ELF_INFO_TYPE_STABS))
6561 stab = NULL;
6562
6563 if (stab == NULL
6564 && eh == NULL
6565 && bed->elf_backend_discard_info == NULL)
6566 continue;
6567
6568 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
6569 cookie.abfd = abfd;
6570 cookie.sym_hashes = elf_sym_hashes (abfd);
6571 cookie.bad_symtab = elf_bad_symtab (abfd);
6572 if (cookie.bad_symtab)
6573 {
6574 cookie.locsymcount = symtab_hdr->sh_size / sizeof (Elf_External_Sym);
6575 cookie.extsymoff = 0;
6576 }
6577 else
6578 {
6579 cookie.locsymcount = symtab_hdr->sh_info;
6580 cookie.extsymoff = symtab_hdr->sh_info;
6581 }
6582
6583 cookie.locsyms = (Elf_Internal_Sym *) symtab_hdr->contents;
6584 if (cookie.locsyms == NULL && cookie.locsymcount != 0)
6585 {
6586 cookie.locsyms = bfd_elf_get_elf_syms (abfd, symtab_hdr,
6587 cookie.locsymcount, 0,
6588 NULL, NULL, NULL);
6589 if (cookie.locsyms == NULL)
6590 return FALSE;
6591 }
6592
6593 if (stab != NULL)
6594 {
6595 cookie.rels = NULL;
6596 count = stab->reloc_count;
6597 if (count != 0)
6598 cookie.rels
6599 = _bfd_elf_link_read_relocs (abfd, stab, (PTR) NULL,
6600 (Elf_Internal_Rela *) NULL,
6601 info->keep_memory);
6602 if (cookie.rels != NULL)
6603 {
6604 cookie.rel = cookie.rels;
6605 cookie.relend = cookie.rels;
6606 cookie.relend += count * bed->s->int_rels_per_ext_rel;
6607 if (_bfd_discard_section_stabs (abfd, stab,
6608 elf_section_data (stab)->sec_info,
6609 elf_reloc_symbol_deleted_p,
6610 &cookie))
6611 ret = TRUE;
6612 if (elf_section_data (stab)->relocs != cookie.rels)
6613 free (cookie.rels);
6614 }
6615 }
6616
6617 if (eh != NULL)
6618 {
6619 cookie.rels = NULL;
6620 count = eh->reloc_count;
6621 if (count != 0)
6622 cookie.rels
6623 = _bfd_elf_link_read_relocs (abfd, eh, (PTR) NULL,
6624 (Elf_Internal_Rela *) NULL,
6625 info->keep_memory);
6626 cookie.rel = cookie.rels;
6627 cookie.relend = cookie.rels;
6628 if (cookie.rels != NULL)
6629 cookie.relend += count * bed->s->int_rels_per_ext_rel;
6630
6631 if (_bfd_elf_discard_section_eh_frame (abfd, info, eh,
6632 elf_reloc_symbol_deleted_p,
6633 &cookie))
6634 ret = TRUE;
6635
6636 if (cookie.rels != NULL
6637 && elf_section_data (eh)->relocs != cookie.rels)
6638 free (cookie.rels);
6639 }
6640
6641 if (bed->elf_backend_discard_info != NULL
6642 && (*bed->elf_backend_discard_info) (abfd, &cookie, info))
6643 ret = TRUE;
6644
6645 if (cookie.locsyms != NULL
6646 && symtab_hdr->contents != (unsigned char *) cookie.locsyms)
6647 {
6648 if (! info->keep_memory)
6649 free (cookie.locsyms);
6650 else
6651 symtab_hdr->contents = (unsigned char *) cookie.locsyms;
6652 }
6653 }
6654
6655 if (info->eh_frame_hdr
6656 && !info->relocateable
6657 && _bfd_elf_discard_section_eh_frame_hdr (output_bfd, info))
6658 ret = TRUE;
6659
6660 return ret;
6661 }
6662
6663 static bfd_boolean
6664 elf_section_ignore_discarded_relocs (sec)
6665 asection *sec;
6666 {
6667 struct elf_backend_data *bed;
6668
6669 switch (sec->sec_info_type)
6670 {
6671 case ELF_INFO_TYPE_STABS:
6672 case ELF_INFO_TYPE_EH_FRAME:
6673 return TRUE;
6674 default:
6675 break;
6676 }
6677
6678 bed = get_elf_backend_data (sec->owner);
6679 if (bed->elf_backend_ignore_discarded_relocs != NULL
6680 && (*bed->elf_backend_ignore_discarded_relocs) (sec))
6681 return TRUE;
6682
6683 return FALSE;
6684 }