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