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