1 /* BFD backend for SunOS binaries.
2 Copyright (C) 1990, 91, 92, 93, 94, 1995 Free Software Foundation, Inc.
3 Written by Cygnus Support.
5 This file is part of BFD, the Binary File Descriptor library.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
21 #define TARGETNAME "a.out-sunos-big"
22 #define MY(OP) CAT(sunos_big_,OP)
28 /* Static routines defined in this file. */
30 static boolean sunos_read_dynamic_info PARAMS ((bfd *));
31 static long sunos_get_dynamic_symtab_upper_bound PARAMS ((bfd *));
32 static boolean sunos_slurp_dynamic_symtab PARAMS ((bfd *));
33 static long sunos_canonicalize_dynamic_symtab PARAMS ((bfd *, asymbol **));
34 static long sunos_get_dynamic_reloc_upper_bound PARAMS ((bfd *));
35 static long sunos_canonicalize_dynamic_reloc
36 PARAMS ((bfd *, arelent **, asymbol **));
37 static struct bfd_hash_entry *sunos_link_hash_newfunc
38 PARAMS ((struct bfd_hash_entry *, struct bfd_hash_table *, const char *));
39 static struct bfd_link_hash_table *sunos_link_hash_table_create
41 static boolean sunos_create_dynamic_sections
42 PARAMS ((bfd *, struct bfd_link_info *, boolean));
43 static boolean sunos_add_dynamic_symbols
44 PARAMS ((bfd *, struct bfd_link_info *, struct external_nlist **,
45 bfd_size_type *, char **));
46 static boolean sunos_add_one_symbol
47 PARAMS ((struct bfd_link_info *, bfd *, const char *, flagword, asection *,
48 bfd_vma, const char *, boolean, boolean,
49 struct bfd_link_hash_entry **));
50 static boolean sunos_scan_relocs
51 PARAMS ((struct bfd_link_info *, bfd *, asection *, bfd_size_type));
52 static boolean sunos_scan_std_relocs
53 PARAMS ((struct bfd_link_info *, bfd *, asection *,
54 const struct reloc_std_external *, bfd_size_type));
55 static boolean sunos_scan_ext_relocs
56 PARAMS ((struct bfd_link_info *, bfd *, asection *,
57 const struct reloc_ext_external *, bfd_size_type));
58 static boolean sunos_link_dynamic_object
59 PARAMS ((struct bfd_link_info *, bfd *));
60 static boolean sunos_write_dynamic_symbol
61 PARAMS ((bfd *, struct bfd_link_info *, struct aout_link_hash_entry *));
62 static boolean sunos_check_dynamic_reloc
63 PARAMS ((struct bfd_link_info *, bfd *, asection *,
64 struct aout_link_hash_entry *, PTR, bfd_byte *, boolean *,
66 static boolean sunos_finish_dynamic_link
67 PARAMS ((bfd *, struct bfd_link_info *));
69 #define MY_get_dynamic_symtab_upper_bound sunos_get_dynamic_symtab_upper_bound
70 #define MY_canonicalize_dynamic_symtab sunos_canonicalize_dynamic_symtab
71 #define MY_get_dynamic_reloc_upper_bound sunos_get_dynamic_reloc_upper_bound
72 #define MY_canonicalize_dynamic_reloc sunos_canonicalize_dynamic_reloc
73 #define MY_bfd_link_hash_table_create sunos_link_hash_table_create
74 #define MY_add_dynamic_symbols sunos_add_dynamic_symbols
75 #define MY_add_one_symbol sunos_add_one_symbol
76 #define MY_link_dynamic_object sunos_link_dynamic_object
77 #define MY_write_dynamic_symbol sunos_write_dynamic_symbol
78 #define MY_check_dynamic_reloc sunos_check_dynamic_reloc
79 #define MY_finish_dynamic_link sunos_finish_dynamic_link
81 /* Include the usual a.out support. */
84 /* SunOS shared library support. We store a pointer to this structure
85 in obj_aout_dynamic_info (abfd). */
87 struct sunos_dynamic_info
89 /* Whether we found any dynamic information. */
91 /* Dynamic information. */
92 struct internal_sun4_dynamic_link dyninfo;
93 /* Number of dynamic symbols. */
94 unsigned long dynsym_count;
95 /* Read in nlists for dynamic symbols. */
96 struct external_nlist *dynsym;
97 /* asymbol structures for dynamic symbols. */
98 aout_symbol_type *canonical_dynsym;
99 /* Read in dynamic string table. */
101 /* Number of dynamic relocs. */
102 unsigned long dynrel_count;
103 /* Read in dynamic relocs. This may be reloc_std_external or
104 reloc_ext_external. */
106 /* arelent structures for dynamic relocs. */
107 arelent *canonical_dynrel;
110 /* The hash table of dynamic symbols is composed of two word entries.
111 See include/aout/sun4.h for details. */
113 #define HASH_ENTRY_SIZE (2 * BYTES_IN_WORD)
115 /* Read in the basic dynamic information. This locates the __DYNAMIC
116 structure and uses it to find the dynamic_link structure. It
117 creates and saves a sunos_dynamic_info structure. If it can't find
118 __DYNAMIC, it sets the valid field of the sunos_dynamic_info
119 structure to false to avoid doing this work again. */
122 sunos_read_dynamic_info (abfd)
125 struct sunos_dynamic_info *info;
128 struct external_sun4_dynamic dyninfo;
129 unsigned long dynver;
130 struct external_sun4_dynamic_link linkinfo;
132 if (obj_aout_dynamic_info (abfd) != (PTR) NULL)
135 if ((abfd->flags & DYNAMIC) == 0)
137 bfd_set_error (bfd_error_invalid_operation);
141 info = ((struct sunos_dynamic_info *)
142 bfd_zalloc (abfd, sizeof (struct sunos_dynamic_info)));
148 info->canonical_dynsym = NULL;
150 info->canonical_dynrel = NULL;
151 obj_aout_dynamic_info (abfd) = (PTR) info;
153 /* This code used to look for the __DYNAMIC symbol to locate the dynamic
155 However this inhibits recovering the dynamic symbols from a
156 stripped object file, so blindly assume that the dynamic linking
157 information is located at the start of the data section.
158 We could verify this assumption later by looking through the dynamic
159 symbols for the __DYNAMIC symbol. */
160 if ((abfd->flags & DYNAMIC) == 0)
162 if (! bfd_get_section_contents (abfd, obj_datasec (abfd), (PTR) &dyninfo,
163 (file_ptr) 0, sizeof dyninfo))
166 dynver = GET_WORD (abfd, dyninfo.ld_version);
167 if (dynver != 2 && dynver != 3)
170 dynoff = GET_WORD (abfd, dyninfo.ld);
172 /* dynoff is a virtual address. It is probably always in the .data
173 section, but this code should work even if it moves. */
174 if (dynoff < bfd_get_section_vma (abfd, obj_datasec (abfd)))
175 dynsec = obj_textsec (abfd);
177 dynsec = obj_datasec (abfd);
178 dynoff -= bfd_get_section_vma (abfd, dynsec);
179 if (dynoff > bfd_section_size (abfd, dynsec))
182 /* This executable appears to be dynamically linked in a way that we
184 if (! bfd_get_section_contents (abfd, dynsec, (PTR) &linkinfo, dynoff,
185 (bfd_size_type) sizeof linkinfo))
188 /* Swap in the dynamic link information. */
189 info->dyninfo.ld_loaded = GET_WORD (abfd, linkinfo.ld_loaded);
190 info->dyninfo.ld_need = GET_WORD (abfd, linkinfo.ld_need);
191 info->dyninfo.ld_rules = GET_WORD (abfd, linkinfo.ld_rules);
192 info->dyninfo.ld_got = GET_WORD (abfd, linkinfo.ld_got);
193 info->dyninfo.ld_plt = GET_WORD (abfd, linkinfo.ld_plt);
194 info->dyninfo.ld_rel = GET_WORD (abfd, linkinfo.ld_rel);
195 info->dyninfo.ld_hash = GET_WORD (abfd, linkinfo.ld_hash);
196 info->dyninfo.ld_stab = GET_WORD (abfd, linkinfo.ld_stab);
197 info->dyninfo.ld_stab_hash = GET_WORD (abfd, linkinfo.ld_stab_hash);
198 info->dyninfo.ld_buckets = GET_WORD (abfd, linkinfo.ld_buckets);
199 info->dyninfo.ld_symbols = GET_WORD (abfd, linkinfo.ld_symbols);
200 info->dyninfo.ld_symb_size = GET_WORD (abfd, linkinfo.ld_symb_size);
201 info->dyninfo.ld_text = GET_WORD (abfd, linkinfo.ld_text);
202 info->dyninfo.ld_plt_sz = GET_WORD (abfd, linkinfo.ld_plt_sz);
204 /* Reportedly the addresses need to be offset by the size of the
205 exec header in an NMAGIC file. */
206 if (adata (abfd).magic == n_magic)
208 unsigned long exec_bytes_size = adata (abfd).exec_bytes_size;
210 info->dyninfo.ld_need += exec_bytes_size;
211 info->dyninfo.ld_rules += exec_bytes_size;
212 info->dyninfo.ld_rel += exec_bytes_size;
213 info->dyninfo.ld_hash += exec_bytes_size;
214 info->dyninfo.ld_stab += exec_bytes_size;
215 info->dyninfo.ld_symbols += exec_bytes_size;
218 /* The only way to get the size of the symbol information appears to
219 be to determine the distance between it and the string table. */
220 info->dynsym_count = ((info->dyninfo.ld_symbols - info->dyninfo.ld_stab)
221 / EXTERNAL_NLIST_SIZE);
222 BFD_ASSERT (info->dynsym_count * EXTERNAL_NLIST_SIZE
223 == (unsigned long) (info->dyninfo.ld_symbols
224 - info->dyninfo.ld_stab));
226 /* Similarly, the relocs end at the hash table. */
227 info->dynrel_count = ((info->dyninfo.ld_hash - info->dyninfo.ld_rel)
228 / obj_reloc_entry_size (abfd));
229 BFD_ASSERT (info->dynrel_count * obj_reloc_entry_size (abfd)
230 == (unsigned long) (info->dyninfo.ld_hash
231 - info->dyninfo.ld_rel));
238 /* Return the amount of memory required for the dynamic symbols. */
241 sunos_get_dynamic_symtab_upper_bound (abfd)
244 struct sunos_dynamic_info *info;
246 if (! sunos_read_dynamic_info (abfd))
249 info = (struct sunos_dynamic_info *) obj_aout_dynamic_info (abfd);
252 bfd_set_error (bfd_error_no_symbols);
256 return (info->dynsym_count + 1) * sizeof (asymbol *);
259 /* Read the external dynamic symbols. */
262 sunos_slurp_dynamic_symtab (abfd)
265 struct sunos_dynamic_info *info;
267 /* Get the general dynamic information. */
268 if (obj_aout_dynamic_info (abfd) == NULL)
270 if (! sunos_read_dynamic_info (abfd))
274 info = (struct sunos_dynamic_info *) obj_aout_dynamic_info (abfd);
277 bfd_set_error (bfd_error_no_symbols);
281 /* Get the dynamic nlist structures. */
282 if (info->dynsym == (struct external_nlist *) NULL)
284 info->dynsym = ((struct external_nlist *)
287 * EXTERNAL_NLIST_SIZE)));
288 if (info->dynsym == NULL && info->dynsym_count != 0)
290 if (bfd_seek (abfd, info->dyninfo.ld_stab, SEEK_SET) != 0
291 || (bfd_read ((PTR) info->dynsym, info->dynsym_count,
292 EXTERNAL_NLIST_SIZE, abfd)
293 != info->dynsym_count * EXTERNAL_NLIST_SIZE))
295 if (info->dynsym != NULL)
297 bfd_release (abfd, info->dynsym);
304 /* Get the dynamic strings. */
305 if (info->dynstr == (char *) NULL)
307 info->dynstr = (char *) bfd_alloc (abfd, info->dyninfo.ld_symb_size);
308 if (info->dynstr == NULL && info->dyninfo.ld_symb_size != 0)
310 if (bfd_seek (abfd, info->dyninfo.ld_symbols, SEEK_SET) != 0
311 || (bfd_read ((PTR) info->dynstr, 1, info->dyninfo.ld_symb_size,
313 != info->dyninfo.ld_symb_size))
315 if (info->dynstr != NULL)
317 bfd_release (abfd, info->dynstr);
327 /* Read in the dynamic symbols. */
330 sunos_canonicalize_dynamic_symtab (abfd, storage)
334 struct sunos_dynamic_info *info;
337 if (! sunos_slurp_dynamic_symtab (abfd))
340 info = (struct sunos_dynamic_info *) obj_aout_dynamic_info (abfd);
342 #ifdef CHECK_DYNAMIC_HASH
343 /* Check my understanding of the dynamic hash table by making sure
344 that each symbol can be located in the hash table. */
346 bfd_size_type table_size;
350 if (info->dyninfo.ld_buckets > info->dynsym_count)
352 table_size = info->dyninfo.ld_stab - info->dyninfo.ld_hash;
353 table = (bfd_byte *) bfd_malloc (table_size);
354 if (table == NULL && table_size != 0)
356 if (bfd_seek (abfd, info->dyninfo.ld_hash, SEEK_SET) != 0
357 || bfd_read ((PTR) table, 1, table_size, abfd) != table_size)
359 for (i = 0; i < info->dynsym_count; i++)
364 name = ((unsigned char *) info->dynstr
365 + GET_WORD (abfd, info->dynsym[i].e_strx));
367 while (*name != '\0')
368 hash = (hash << 1) + *name++;
370 hash %= info->dyninfo.ld_buckets;
371 while (GET_WORD (abfd, table + hash * HASH_ENTRY_SIZE) != i)
373 hash = GET_WORD (abfd,
374 table + hash * HASH_ENTRY_SIZE + BYTES_IN_WORD);
375 if (hash == 0 || hash >= table_size / HASH_ENTRY_SIZE)
381 #endif /* CHECK_DYNAMIC_HASH */
383 /* Get the asymbol structures corresponding to the dynamic nlist
385 if (info->canonical_dynsym == (aout_symbol_type *) NULL)
387 info->canonical_dynsym = ((aout_symbol_type *)
390 * sizeof (aout_symbol_type))));
391 if (info->canonical_dynsym == NULL && info->dynsym_count != 0)
394 if (! aout_32_translate_symbol_table (abfd, info->canonical_dynsym,
395 info->dynsym, info->dynsym_count,
397 info->dyninfo.ld_symb_size,
400 if (info->canonical_dynsym != NULL)
402 bfd_release (abfd, info->canonical_dynsym);
403 info->canonical_dynsym = NULL;
409 /* Return pointers to the dynamic asymbol structures. */
410 for (i = 0; i < info->dynsym_count; i++)
411 *storage++ = (asymbol *) (info->canonical_dynsym + i);
414 return info->dynsym_count;
417 /* Return the amount of memory required for the dynamic relocs. */
420 sunos_get_dynamic_reloc_upper_bound (abfd)
423 struct sunos_dynamic_info *info;
425 if (! sunos_read_dynamic_info (abfd))
428 info = (struct sunos_dynamic_info *) obj_aout_dynamic_info (abfd);
431 bfd_set_error (bfd_error_no_symbols);
435 return (info->dynrel_count + 1) * sizeof (arelent *);
438 /* Read in the dynamic relocs. */
441 sunos_canonicalize_dynamic_reloc (abfd, storage, syms)
446 struct sunos_dynamic_info *info;
449 /* Get the general dynamic information. */
450 if (obj_aout_dynamic_info (abfd) == (PTR) NULL)
452 if (! sunos_read_dynamic_info (abfd))
456 info = (struct sunos_dynamic_info *) obj_aout_dynamic_info (abfd);
459 bfd_set_error (bfd_error_no_symbols);
463 /* Get the dynamic reloc information. */
464 if (info->dynrel == NULL)
466 info->dynrel = (PTR) bfd_alloc (abfd,
468 * obj_reloc_entry_size (abfd)));
469 if (info->dynrel == NULL && info->dynrel_count != 0)
471 if (bfd_seek (abfd, info->dyninfo.ld_rel, SEEK_SET) != 0
472 || (bfd_read ((PTR) info->dynrel, info->dynrel_count,
473 obj_reloc_entry_size (abfd), abfd)
474 != info->dynrel_count * obj_reloc_entry_size (abfd)))
476 if (info->dynrel != NULL)
478 bfd_release (abfd, info->dynrel);
485 /* Get the arelent structures corresponding to the dynamic reloc
487 if (info->canonical_dynrel == (arelent *) NULL)
491 info->canonical_dynrel = ((arelent *)
494 * sizeof (arelent))));
495 if (info->canonical_dynrel == NULL && info->dynrel_count != 0)
498 to = info->canonical_dynrel;
500 if (obj_reloc_entry_size (abfd) == RELOC_EXT_SIZE)
502 register struct reloc_ext_external *p;
503 struct reloc_ext_external *pend;
505 p = (struct reloc_ext_external *) info->dynrel;
506 pend = p + info->dynrel_count;
507 for (; p < pend; p++, to++)
508 NAME(aout,swap_ext_reloc_in) (abfd, p, to, syms,
513 register struct reloc_std_external *p;
514 struct reloc_std_external *pend;
516 p = (struct reloc_std_external *) info->dynrel;
517 pend = p + info->dynrel_count;
518 for (; p < pend; p++, to++)
519 NAME(aout,swap_std_reloc_in) (abfd, p, to, syms,
524 /* Return pointers to the dynamic arelent structures. */
525 for (i = 0; i < info->dynrel_count; i++)
526 *storage++ = info->canonical_dynrel + i;
529 return info->dynrel_count;
532 /* Code to handle linking of SunOS shared libraries. */
534 /* A SPARC procedure linkage table entry is 12 bytes. The first entry
535 in the table is a jump which is filled in by the runtime linker.
536 The remaining entries are branches back to the first entry,
537 followed by an index into the relocation table encoded to look like
540 #define SPARC_PLT_ENTRY_SIZE (12)
542 static const bfd_byte sparc_plt_first_entry[SPARC_PLT_ENTRY_SIZE] =
544 /* sethi %hi(0),%g1; address filled in by runtime linker. */
546 /* jmp %g1; offset filled in by runtime linker. */
552 /* save %sp, -96, %sp */
553 #define SPARC_PLT_ENTRY_WORD0 0x9de3bfa0
554 /* call; address filled in later. */
555 #define SPARC_PLT_ENTRY_WORD1 0x40000000
556 /* sethi; reloc index filled in later. */
557 #define SPARC_PLT_ENTRY_WORD2 0x01000000
559 /* This sequence is used when for the jump table entry to a defined
560 symbol in a complete executable. It is used when linking PIC
561 compiled code which is not being put into a shared library. */
562 /* sethi <address to be filled in later>, %g1 */
563 #define SPARC_PLT_PIC_WORD0 0x03000000
564 /* jmp %g1 + <address to be filled in later> */
565 #define SPARC_PLT_PIC_WORD1 0x81c06000
567 #define SPARC_PLT_PIC_WORD2 0x01000000
569 /* An m68k procedure linkage table entry is 8 bytes. The first entry
570 in the table is a jump which is filled in the by the runtime
571 linker. The remaining entries are branches back to the first
572 entry, followed by a two byte index into the relocation table. */
574 #define M68K_PLT_ENTRY_SIZE (8)
576 static const bfd_byte m68k_plt_first_entry[M68K_PLT_ENTRY_SIZE] =
580 /* Filled in by runtime linker with a magic address. */
587 #define M68K_PLT_ENTRY_WORD0 (0x61ff)
588 /* Remaining words filled in later. */
590 /* An entry in the SunOS linker hash table. */
592 struct sunos_link_hash_entry
594 struct aout_link_hash_entry root;
596 /* If this is a dynamic symbol, this is its index into the dynamic
597 symbol table. This is initialized to -1. As the linker looks at
598 the input files, it changes this to -2 if it will be added to the
599 dynamic symbol table. After all the input files have been seen,
600 the linker will know whether to build a dynamic symbol table; if
601 it does build one, this becomes the index into the table. */
604 /* If this is a dynamic symbol, this is the index of the name in the
605 dynamic symbol string table. */
608 /* The offset into the global offset table used for this symbol. If
609 the symbol does not require a GOT entry, this is 0. */
612 /* The offset into the procedure linkage table used for this symbol.
613 If the symbol does not require a PLT entry, this is 0. */
616 /* Some linker flags. */
618 /* Symbol is referenced by a regular object. */
619 #define SUNOS_REF_REGULAR 01
620 /* Symbol is defined by a regular object. */
621 #define SUNOS_DEF_REGULAR 02
622 /* Symbol is referenced by a dynamic object. */
623 #define SUNOS_REF_DYNAMIC 010
624 /* Symbol is defined by a dynamic object. */
625 #define SUNOS_DEF_DYNAMIC 020
628 /* The SunOS linker hash table. */
630 struct sunos_link_hash_table
632 struct aout_link_hash_table root;
634 /* The object which holds the dynamic sections. */
637 /* Whether we have created the dynamic sections. */
638 boolean dynamic_sections_created;
640 /* Whether we need the dynamic sections. */
641 boolean dynamic_sections_needed;
643 /* The number of dynamic symbols. */
646 /* The number of buckets in the hash table. */
649 /* The list of dynamic objects needed by dynamic objects included in
651 struct bfd_link_needed_list *needed;
654 /* Routine to create an entry in an SunOS link hash table. */
656 static struct bfd_hash_entry *
657 sunos_link_hash_newfunc (entry, table, string)
658 struct bfd_hash_entry *entry;
659 struct bfd_hash_table *table;
662 struct sunos_link_hash_entry *ret = (struct sunos_link_hash_entry *) entry;
664 /* Allocate the structure if it has not already been allocated by a
666 if (ret == (struct sunos_link_hash_entry *) NULL)
667 ret = ((struct sunos_link_hash_entry *)
668 bfd_hash_allocate (table, sizeof (struct sunos_link_hash_entry)));
669 if (ret == (struct sunos_link_hash_entry *) NULL)
670 return (struct bfd_hash_entry *) ret;
672 /* Call the allocation method of the superclass. */
673 ret = ((struct sunos_link_hash_entry *)
674 NAME(aout,link_hash_newfunc) ((struct bfd_hash_entry *) ret,
678 /* Set local fields. */
680 ret->dynstr_index = -1;
686 return (struct bfd_hash_entry *) ret;
689 /* Create a SunOS link hash table. */
691 static struct bfd_link_hash_table *
692 sunos_link_hash_table_create (abfd)
695 struct sunos_link_hash_table *ret;
697 ret = ((struct sunos_link_hash_table *)
698 bfd_alloc (abfd, sizeof (struct sunos_link_hash_table)));
699 if (ret == (struct sunos_link_hash_table *) NULL)
700 return (struct bfd_link_hash_table *) NULL;
701 if (! NAME(aout,link_hash_table_init) (&ret->root, abfd,
702 sunos_link_hash_newfunc))
704 bfd_release (abfd, ret);
705 return (struct bfd_link_hash_table *) NULL;
709 ret->dynamic_sections_created = false;
710 ret->dynamic_sections_needed = false;
711 ret->dynsymcount = 0;
712 ret->bucketcount = 0;
715 return &ret->root.root;
718 /* Look up an entry in an SunOS link hash table. */
720 #define sunos_link_hash_lookup(table, string, create, copy, follow) \
721 ((struct sunos_link_hash_entry *) \
722 aout_link_hash_lookup (&(table)->root, (string), (create), (copy),\
725 /* Traverse a SunOS link hash table. */
727 #define sunos_link_hash_traverse(table, func, info) \
728 (aout_link_hash_traverse \
730 (boolean (*) PARAMS ((struct aout_link_hash_entry *, PTR))) (func), \
733 /* Get the SunOS link hash table from the info structure. This is
736 #define sunos_hash_table(p) ((struct sunos_link_hash_table *) ((p)->hash))
738 static boolean sunos_scan_dynamic_symbol
739 PARAMS ((struct sunos_link_hash_entry *, PTR));
741 /* Create the dynamic sections needed if we are linking against a
742 dynamic object, or if we are linking PIC compiled code. ABFD is a
743 bfd we can attach the dynamic sections to. The linker script will
744 look for these special sections names and put them in the right
745 place in the output file. See include/aout/sun4.h for more details
746 of the dynamic linking information. */
749 sunos_create_dynamic_sections (abfd, info, needed)
751 struct bfd_link_info *info;
756 if (! sunos_hash_table (info)->dynamic_sections_created)
760 sunos_hash_table (info)->dynobj = abfd;
762 flags = SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS | SEC_IN_MEMORY;
764 /* The .dynamic section holds the basic dynamic information: the
765 sun4_dynamic structure, the dynamic debugger information, and
766 the sun4_dynamic_link structure. */
767 s = bfd_make_section (abfd, ".dynamic");
769 || ! bfd_set_section_flags (abfd, s, flags)
770 || ! bfd_set_section_alignment (abfd, s, 2))
773 /* The .got section holds the global offset table. The address
774 is put in the ld_got field. */
775 s = bfd_make_section (abfd, ".got");
777 || ! bfd_set_section_flags (abfd, s, flags)
778 || ! bfd_set_section_alignment (abfd, s, 2))
781 /* The .plt section holds the procedure linkage table. The
782 address is put in the ld_plt field. */
783 s = bfd_make_section (abfd, ".plt");
785 || ! bfd_set_section_flags (abfd, s, flags | SEC_CODE)
786 || ! bfd_set_section_alignment (abfd, s, 2))
789 /* The .dynrel section holds the dynamic relocs. The address is
790 put in the ld_rel field. */
791 s = bfd_make_section (abfd, ".dynrel");
793 || ! bfd_set_section_flags (abfd, s, flags | SEC_READONLY)
794 || ! bfd_set_section_alignment (abfd, s, 2))
797 /* The .hash section holds the dynamic hash table. The address
798 is put in the ld_hash field. */
799 s = bfd_make_section (abfd, ".hash");
801 || ! bfd_set_section_flags (abfd, s, flags | SEC_READONLY)
802 || ! bfd_set_section_alignment (abfd, s, 2))
805 /* The .dynsym section holds the dynamic symbols. The address
806 is put in the ld_stab field. */
807 s = bfd_make_section (abfd, ".dynsym");
809 || ! bfd_set_section_flags (abfd, s, flags | SEC_READONLY)
810 || ! bfd_set_section_alignment (abfd, s, 2))
813 /* The .dynstr section holds the dynamic symbol string table.
814 The address is put in the ld_symbols field. */
815 s = bfd_make_section (abfd, ".dynstr");
817 || ! bfd_set_section_flags (abfd, s, flags | SEC_READONLY)
818 || ! bfd_set_section_alignment (abfd, s, 2))
821 sunos_hash_table (info)->dynamic_sections_created = true;
824 if (needed && ! sunos_hash_table (info)->dynamic_sections_needed)
828 dynobj = sunos_hash_table (info)->dynobj;
830 s = bfd_get_section_by_name (dynobj, ".got");
831 s->_raw_size = BYTES_IN_WORD;
833 sunos_hash_table (info)->dynamic_sections_needed = true;
839 /* Add dynamic symbols during a link. This is called by the a.out
840 backend linker when it encounters an object with the DYNAMIC flag
844 sunos_add_dynamic_symbols (abfd, info, symsp, sym_countp, stringsp)
846 struct bfd_link_info *info;
847 struct external_nlist **symsp;
848 bfd_size_type *sym_countp;
853 struct sunos_dynamic_info *dinfo;
856 /* We do not want to include the sections in a dynamic object in the
857 output file. We hack by simply clobbering the list of sections
858 in the BFD. This could be handled more cleanly by, say, a new
859 section flag; the existing SEC_NEVER_LOAD flag is not the one we
860 want, because that one still implies that the section takes up
861 space in the output file. */
862 abfd->sections = NULL;
864 /* The native linker seems to just ignore dynamic objects when -r is
866 if (info->relocateable)
869 /* There's no hope of using a dynamic object which does not exactly
870 match the format of the output file. */
871 if (info->hash->creator != abfd->xvec)
873 bfd_set_error (bfd_error_invalid_operation);
877 /* Make sure we have all the required information. */
878 if (! sunos_create_dynamic_sections (abfd, info, true))
881 /* Make sure we have a .need and a .rules sections. These are only
882 needed if there really is a dynamic object in the link, so they
883 are not added by sunos_create_dynamic_sections. */
884 dynobj = sunos_hash_table (info)->dynobj;
885 if (bfd_get_section_by_name (dynobj, ".need") == NULL)
887 /* The .need section holds the list of names of shared objets
888 which must be included at runtime. The address of this
889 section is put in the ld_need field. */
890 s = bfd_make_section (dynobj, ".need");
892 || ! bfd_set_section_flags (dynobj, s,
898 || ! bfd_set_section_alignment (dynobj, s, 2))
902 if (bfd_get_section_by_name (dynobj, ".rules") == NULL)
904 /* The .rules section holds the path to search for shared
905 objects. The address of this section is put in the ld_rules
907 s = bfd_make_section (dynobj, ".rules");
909 || ! bfd_set_section_flags (dynobj, s,
915 || ! bfd_set_section_alignment (dynobj, s, 2))
919 /* Pick up the dynamic symbols and return them to the caller. */
920 if (! sunos_slurp_dynamic_symtab (abfd))
923 dinfo = (struct sunos_dynamic_info *) obj_aout_dynamic_info (abfd);
924 *symsp = dinfo->dynsym;
925 *sym_countp = dinfo->dynsym_count;
926 *stringsp = dinfo->dynstr;
928 /* Record information about any other objects needed by this one. */
929 need = dinfo->dyninfo.ld_need;
933 unsigned long name, flags;
934 unsigned short major_vno, minor_vno;
935 struct bfd_link_needed_list *needed, **pp;
938 if (bfd_seek (abfd, need, SEEK_SET) != 0
939 || bfd_read (buf, 1, 16, abfd) != 16)
942 /* For the format of an ld_need entry, see aout/sun4.h. We
943 should probably define structs for this manipulation. */
945 name = bfd_get_32 (abfd, buf);
946 flags = bfd_get_32 (abfd, buf + 4);
947 major_vno = bfd_get_16 (abfd, buf + 8);
948 minor_vno = bfd_get_16 (abfd, buf + 10);
949 need = bfd_get_32 (abfd, buf + 12);
951 needed = (struct bfd_link_needed_list *) bfd_alloc (abfd, sizeof (struct bfd_link_needed_list));
956 /* We return the name as [-l]name[.maj][.min]. */
958 if ((flags & 0x80000000) != 0)
959 bfd_alloc_grow (abfd, "-l", 2);
960 if (bfd_seek (abfd, name, SEEK_SET) != 0)
964 if (bfd_read (&b, 1, 1, abfd) != 1)
966 bfd_alloc_grow (abfd, &b, 1);
973 sprintf (verbuf, ".%d", major_vno);
974 bfd_alloc_grow (abfd, verbuf, strlen (verbuf));
977 sprintf (verbuf, ".%d", minor_vno);
978 bfd_alloc_grow (abfd, verbuf, strlen (verbuf));
981 needed->name = bfd_alloc_finish (abfd);
982 if (needed->name == NULL)
987 for (pp = &sunos_hash_table (info)->needed;
997 /* Function to add a single symbol to the linker hash table. This is
998 a wrapper around _bfd_generic_link_add_one_symbol which handles the
999 tweaking needed for dynamic linking support. */
1002 sunos_add_one_symbol (info, abfd, name, flags, section, value, string,
1003 copy, collect, hashp)
1004 struct bfd_link_info *info;
1013 struct bfd_link_hash_entry **hashp;
1015 struct sunos_link_hash_entry *h;
1018 if (! sunos_hash_table (info)->dynamic_sections_created)
1020 /* We must create the dynamic sections while reading the input
1021 files, even though at this point we don't know if any of the
1022 sections will be needed. This will ensure that the dynamic
1023 sections are mapped to the right output section. It does no
1024 harm to create these sections if they are not needed. */
1025 if (! sunos_create_dynamic_sections (abfd, info, false))
1029 h = sunos_link_hash_lookup (sunos_hash_table (info), name, true, copy,
1035 *hashp = (struct bfd_link_hash_entry *) h;
1037 /* Treat a common symbol in a dynamic object as defined in the .bss
1038 section of the dynamic object. We don't want to allocate space
1039 for it in our process image. */
1040 if ((abfd->flags & DYNAMIC) != 0
1041 && bfd_is_com_section (section))
1042 section = obj_bsssec (abfd);
1044 if (! bfd_is_und_section (section)
1045 && h->root.root.type != bfd_link_hash_new
1046 && h->root.root.type != bfd_link_hash_undefined
1047 && h->root.root.type != bfd_link_hash_defweak)
1049 /* We are defining the symbol, and it is already defined. This
1050 is a potential multiple definition error. */
1051 if ((abfd->flags & DYNAMIC) != 0)
1053 /* The definition we are adding is from a dynamic object.
1054 We do not want this new definition to override the
1055 existing definition, so we pretend it is just a
1057 section = bfd_und_section_ptr;
1059 else if (h->root.root.type == bfd_link_hash_defined
1060 && h->root.root.u.def.section->owner != NULL
1061 && (h->root.root.u.def.section->owner->flags & DYNAMIC) != 0)
1063 /* The existing definition is from a dynamic object. We
1064 want to override it with the definition we just found.
1065 Clobber the existing definition. */
1066 h->root.root.type = bfd_link_hash_new;
1068 else if (h->root.root.type == bfd_link_hash_common
1069 && (h->root.root.u.c.p->section->owner->flags & DYNAMIC) != 0)
1071 /* The existing definition is from a dynamic object. We
1072 want to override it with the definition we just found.
1073 Clobber the existing definition. We can't set it to new,
1074 because it is on the undefined list. */
1075 h->root.root.type = bfd_link_hash_undefined;
1076 h->root.root.u.undef.abfd = h->root.root.u.c.p->section->owner;
1080 /* Do the usual procedure for adding a symbol. */
1081 if (! _bfd_generic_link_add_one_symbol (info, abfd, name, flags, section,
1082 value, string, copy, collect,
1086 if (abfd->xvec == info->hash->creator)
1088 /* Set a flag in the hash table entry indicating the type of
1089 reference or definition we just found. Keep a count of the
1090 number of dynamic symbols we find. A dynamic symbol is one
1091 which is referenced or defined by both a regular object and a
1093 if ((abfd->flags & DYNAMIC) == 0)
1095 if (bfd_is_und_section (section))
1096 new_flag = SUNOS_REF_REGULAR;
1098 new_flag = SUNOS_DEF_REGULAR;
1102 if (bfd_is_und_section (section))
1103 new_flag = SUNOS_REF_DYNAMIC;
1105 new_flag = SUNOS_DEF_DYNAMIC;
1107 h->flags |= new_flag;
1109 if (h->dynindx == -1
1110 && (h->flags & (SUNOS_DEF_REGULAR | SUNOS_REF_REGULAR)) != 0)
1112 ++sunos_hash_table (info)->dynsymcount;
1120 /* Return the list of objects needed by BFD. */
1123 struct bfd_link_needed_list *
1124 bfd_sunos_get_needed_list (abfd, info)
1126 struct bfd_link_info *info;
1128 if (info->hash->creator != &MY(vec))
1130 return sunos_hash_table (info)->needed;
1133 /* Record an assignment made to a symbol by a linker script. We need
1134 this in case some dynamic object refers to this symbol. */
1137 bfd_sunos_record_link_assignment (output_bfd, info, name)
1139 struct bfd_link_info *info;
1142 struct sunos_link_hash_entry *h;
1144 if (output_bfd->xvec != &MY(vec))
1147 /* This is called after we have examined all the input objects. If
1148 the symbol does not exist, it merely means that no object refers
1149 to it, and we can just ignore it at this point. */
1150 h = sunos_link_hash_lookup (sunos_hash_table (info), name,
1151 false, false, false);
1155 /* In a shared library, the __DYNAMIC symbol does not appear in the
1156 dynamic symbol table. */
1157 if (! info->shared || strcmp (name, "__DYNAMIC") != 0)
1159 h->flags |= SUNOS_DEF_REGULAR;
1161 if (h->dynindx == -1)
1163 ++sunos_hash_table (info)->dynsymcount;
1171 /* Set up the sizes and contents of the dynamic sections created in
1172 sunos_add_dynamic_symbols. This is called by the SunOS linker
1173 emulation before_allocation routine. We must set the sizes of the
1174 sections before the linker sets the addresses of the various
1175 sections. This unfortunately requires reading all the relocs so
1176 that we can work out which ones need to become dynamic relocs. If
1177 info->keep_memory is true, we keep the relocs in memory; otherwise,
1178 we discard them, and will read them again later. */
1181 bfd_sunos_size_dynamic_sections (output_bfd, info, sdynptr, sneedptr,
1184 struct bfd_link_info *info;
1186 asection **sneedptr;
1187 asection **srulesptr;
1191 struct sunos_link_hash_entry *h;
1202 if (output_bfd->xvec != &MY(vec))
1205 /* Look through all the input BFD's and read their relocs. It would
1206 be better if we didn't have to do this, but there is no other way
1207 to determine the number of dynamic relocs we need, and, more
1208 importantly, there is no other way to know which symbols should
1209 get an entry in the procedure linkage table. */
1210 for (sub = info->input_bfds; sub != NULL; sub = sub->link_next)
1212 if ((sub->flags & DYNAMIC) == 0
1213 && sub->xvec == output_bfd->xvec)
1215 if (! sunos_scan_relocs (info, sub, obj_textsec (sub),
1216 exec_hdr (sub)->a_trsize)
1217 || ! sunos_scan_relocs (info, sub, obj_datasec (sub),
1218 exec_hdr (sub)->a_drsize))
1223 dynobj = sunos_hash_table (info)->dynobj;
1224 dynsymcount = sunos_hash_table (info)->dynsymcount;
1226 /* If there were no dynamic objects in the link, and we don't need
1227 to build a global offset table, there is nothing to do here. */
1228 if (! sunos_hash_table (info)->dynamic_sections_needed)
1231 /* If __GLOBAL_OFFSET_TABLE_ was mentioned, define it. */
1232 h = sunos_link_hash_lookup (sunos_hash_table (info),
1233 "__GLOBAL_OFFSET_TABLE_", false, false, false);
1234 if (h != NULL && (h->flags & SUNOS_REF_REGULAR) != 0)
1236 h->flags |= SUNOS_DEF_REGULAR;
1237 if (h->dynindx == -1)
1239 ++sunos_hash_table (info)->dynsymcount;
1242 h->root.root.type = bfd_link_hash_defined;
1243 h->root.root.u.def.section = bfd_get_section_by_name (dynobj, ".got");
1244 h->root.root.u.def.value = 0;
1247 /* The .dynamic section is always the same size. */
1248 s = bfd_get_section_by_name (dynobj, ".dynamic");
1249 BFD_ASSERT (s != NULL);
1250 s->_raw_size = (sizeof (struct external_sun4_dynamic)
1251 + EXTERNAL_SUN4_DYNAMIC_DEBUGGER_SIZE
1252 + sizeof (struct external_sun4_dynamic_link));
1254 /* Set the size of the .dynsym and .hash sections. We counted the
1255 number of dynamic symbols as we read the input files. We will
1256 build the dynamic symbol table (.dynsym) and the hash table
1257 (.hash) when we build the final symbol table, because until then
1258 we do not know the correct value to give the symbols. We build
1259 the dynamic symbol string table (.dynstr) in a traversal of the
1260 symbol table using sunos_scan_dynamic_symbol. */
1261 s = bfd_get_section_by_name (dynobj, ".dynsym");
1262 BFD_ASSERT (s != NULL);
1263 s->_raw_size = dynsymcount * sizeof (struct external_nlist);
1264 s->contents = (bfd_byte *) bfd_alloc (output_bfd, s->_raw_size);
1265 if (s->contents == NULL && s->_raw_size != 0)
1268 /* The number of buckets is just the number of symbols divided by
1269 four. To compute the final size of the hash table, we must
1270 actually compute the hash table. Normally we need exactly as
1271 many entries in the hash table as there are dynamic symbols, but
1272 if some of the buckets are not used we will need additional
1273 entries. In the worst case, every symbol will hash to the same
1274 bucket, and we will need BUCKETCOUNT - 1 extra entries. */
1275 if (dynsymcount >= 4)
1276 bucketcount = dynsymcount / 4;
1277 else if (dynsymcount > 0)
1278 bucketcount = dynsymcount;
1281 s = bfd_get_section_by_name (dynobj, ".hash");
1282 BFD_ASSERT (s != NULL);
1283 hashalloc = (dynsymcount + bucketcount - 1) * HASH_ENTRY_SIZE;
1284 s->contents = (bfd_byte *) bfd_alloc (dynobj, hashalloc);
1285 if (s->contents == NULL && dynsymcount > 0)
1287 memset (s->contents, 0, hashalloc);
1288 for (i = 0; i < bucketcount; i++)
1289 PUT_WORD (output_bfd, (bfd_vma) -1, s->contents + i * HASH_ENTRY_SIZE);
1290 s->_raw_size = bucketcount * HASH_ENTRY_SIZE;
1292 sunos_hash_table (info)->bucketcount = bucketcount;
1294 /* Scan all the symbols, place them in the dynamic symbol table, and
1295 build the dynamic hash table. We reuse dynsymcount as a counter
1296 for the number of symbols we have added so far. */
1297 sunos_hash_table (info)->dynsymcount = 0;
1298 sunos_link_hash_traverse (sunos_hash_table (info),
1299 sunos_scan_dynamic_symbol,
1301 BFD_ASSERT (sunos_hash_table (info)->dynsymcount == dynsymcount);
1303 /* The SunOS native linker seems to align the total size of the
1304 symbol strings to a multiple of 8. I don't know if this is
1305 important, but it can't hurt much. */
1306 s = bfd_get_section_by_name (dynobj, ".dynstr");
1307 BFD_ASSERT (s != NULL);
1308 if ((s->_raw_size & 7) != 0)
1313 add = 8 - (s->_raw_size & 7);
1314 contents = (bfd_byte *) bfd_realloc (s->contents,
1315 (size_t) (s->_raw_size + add));
1316 if (contents == NULL)
1318 memset (contents + s->_raw_size, 0, (size_t) add);
1319 s->contents = contents;
1320 s->_raw_size += add;
1323 /* Now that we have worked out the sizes of the procedure linkage
1324 table and the dynamic relocs, allocate storage for them. */
1325 s = bfd_get_section_by_name (dynobj, ".plt");
1326 BFD_ASSERT (s != NULL);
1327 if (s->_raw_size != 0)
1329 s->contents = (bfd_byte *) bfd_alloc (dynobj, s->_raw_size);
1330 if (s->contents == NULL)
1333 /* Fill in the first entry in the table. */
1334 switch (bfd_get_arch (dynobj))
1336 case bfd_arch_sparc:
1337 memcpy (s->contents, sparc_plt_first_entry, SPARC_PLT_ENTRY_SIZE);
1341 memcpy (s->contents, m68k_plt_first_entry, M68K_PLT_ENTRY_SIZE);
1349 s = bfd_get_section_by_name (dynobj, ".dynrel");
1350 if (s->_raw_size != 0)
1352 s->contents = (bfd_byte *) bfd_alloc (dynobj, s->_raw_size);
1353 if (s->contents == NULL)
1356 /* We use the reloc_count field to keep track of how many of the
1357 relocs we have output so far. */
1360 /* Make space for the global offset table. */
1361 s = bfd_get_section_by_name (dynobj, ".got");
1362 s->contents = (bfd_byte *) bfd_alloc (dynobj, s->_raw_size);
1363 if (s->contents == NULL)
1366 *sdynptr = bfd_get_section_by_name (dynobj, ".dynamic");
1367 *sneedptr = bfd_get_section_by_name (dynobj, ".need");
1368 *srulesptr = bfd_get_section_by_name (dynobj, ".rules");
1373 /* Scan the relocs for an input section. */
1376 sunos_scan_relocs (info, abfd, sec, rel_size)
1377 struct bfd_link_info *info;
1380 bfd_size_type rel_size;
1383 PTR free_relocs = NULL;
1388 if (! info->keep_memory)
1389 relocs = free_relocs = bfd_malloc ((size_t) rel_size);
1392 struct aout_section_data_struct *n;
1394 n = ((struct aout_section_data_struct *)
1395 bfd_alloc (abfd, sizeof (struct aout_section_data_struct)));
1400 set_aout_section_data (sec, n);
1401 relocs = bfd_malloc ((size_t) rel_size);
1402 aout_section_data (sec)->relocs = relocs;
1408 if (bfd_seek (abfd, sec->rel_filepos, SEEK_SET) != 0
1409 || bfd_read (relocs, 1, rel_size, abfd) != rel_size)
1412 if (obj_reloc_entry_size (abfd) == RELOC_STD_SIZE)
1414 if (! sunos_scan_std_relocs (info, abfd, sec,
1415 (struct reloc_std_external *) relocs,
1421 if (! sunos_scan_ext_relocs (info, abfd, sec,
1422 (struct reloc_ext_external *) relocs,
1427 if (free_relocs != NULL)
1433 if (free_relocs != NULL)
1438 /* Scan the relocs for an input section using standard relocs. We
1439 need to figure out what to do for each reloc against a dynamic
1440 symbol. If the symbol is in the .text section, an entry is made in
1441 the procedure linkage table. Note that this will do the wrong
1442 thing if the symbol is actually data; I don't think the Sun 3
1443 native linker handles this case correctly either. If the symbol is
1444 not in the .text section, we must preserve the reloc as a dynamic
1445 reloc. FIXME: We should also handle the PIC relocs here by
1446 building global offset table entries. */
1449 sunos_scan_std_relocs (info, abfd, sec, relocs, rel_size)
1450 struct bfd_link_info *info;
1453 const struct reloc_std_external *relocs;
1454 bfd_size_type rel_size;
1457 asection *splt = NULL;
1458 asection *srel = NULL;
1459 struct sunos_link_hash_entry **sym_hashes;
1460 const struct reloc_std_external *rel, *relend;
1462 /* We only know how to handle m68k plt entries. */
1463 if (bfd_get_arch (abfd) != bfd_arch_m68k)
1465 bfd_set_error (bfd_error_invalid_target);
1471 sym_hashes = (struct sunos_link_hash_entry **) obj_aout_sym_hashes (abfd);
1473 relend = relocs + rel_size / RELOC_STD_SIZE;
1474 for (rel = relocs; rel < relend; rel++)
1477 struct sunos_link_hash_entry *h;
1479 /* We only want relocs against external symbols. */
1480 if (bfd_header_big_endian (abfd))
1482 if ((rel->r_type[0] & RELOC_STD_BITS_EXTERN_BIG) == 0)
1487 if ((rel->r_type[0] & RELOC_STD_BITS_EXTERN_LITTLE) == 0)
1491 /* Get the symbol index. */
1492 if (bfd_header_big_endian (abfd))
1493 r_index = ((rel->r_index[0] << 16)
1494 | (rel->r_index[1] << 8)
1497 r_index = ((rel->r_index[2] << 16)
1498 | (rel->r_index[1] << 8)
1501 /* Get the hash table entry. */
1502 h = sym_hashes[r_index];
1505 /* This should not normally happen, but it will in any case
1506 be caught in the relocation phase. */
1510 /* At this point common symbols have already been allocated, so
1511 we don't have to worry about them. We need to consider that
1512 we may have already seen this symbol and marked it undefined;
1513 if the symbol is really undefined, then SUNOS_DEF_DYNAMIC
1515 if (h->root.root.type != bfd_link_hash_defined
1516 && h->root.root.type != bfd_link_hash_defweak
1517 && h->root.root.type != bfd_link_hash_undefined)
1520 if ((h->flags & SUNOS_DEF_DYNAMIC) == 0
1521 || (h->flags & SUNOS_DEF_REGULAR) != 0)
1526 if (! sunos_create_dynamic_sections (abfd, info, true))
1528 dynobj = sunos_hash_table (info)->dynobj;
1529 splt = bfd_get_section_by_name (dynobj, ".plt");
1530 srel = bfd_get_section_by_name (dynobj, ".dynrel");
1531 BFD_ASSERT (splt != NULL && srel != NULL);
1534 BFD_ASSERT ((h->flags & SUNOS_REF_REGULAR) != 0);
1535 BFD_ASSERT (h->plt_offset != 0
1536 || ((h->root.root.type == bfd_link_hash_defined
1537 || h->root.root.type == bfd_link_hash_defweak)
1538 ? (h->root.root.u.def.section->owner->flags
1540 : (h->root.root.u.undef.abfd->flags & DYNAMIC) != 0));
1542 /* This reloc is against a symbol defined only by a dynamic
1545 if (h->root.root.type == bfd_link_hash_undefined)
1547 /* Presumably this symbol was marked as being undefined by
1548 an earlier reloc. */
1549 srel->_raw_size += RELOC_STD_SIZE;
1551 else if ((h->root.root.u.def.section->flags & SEC_CODE) == 0)
1555 /* This reloc is not in the .text section. It must be
1556 copied into the dynamic relocs. We mark the symbol as
1558 srel->_raw_size += RELOC_STD_SIZE;
1559 sub = h->root.root.u.def.section->owner;
1560 h->root.root.type = bfd_link_hash_undefined;
1561 h->root.root.u.undef.abfd = sub;
1565 /* This symbol is in the .text section. We must give it an
1566 entry in the procedure linkage table, if we have not
1567 already done so. We change the definition of the symbol
1568 to the .plt section; this will cause relocs against it to
1569 be handled correctly. */
1570 if (h->plt_offset == 0)
1572 if (splt->_raw_size == 0)
1573 splt->_raw_size = M68K_PLT_ENTRY_SIZE;
1574 h->plt_offset = splt->_raw_size;
1576 if ((h->flags & SUNOS_DEF_REGULAR) == 0)
1578 h->root.root.u.def.section = splt;
1579 h->root.root.u.def.value = splt->_raw_size;
1582 splt->_raw_size += M68K_PLT_ENTRY_SIZE;
1584 /* We may also need a dynamic reloc entry. */
1585 if ((h->flags & SUNOS_DEF_REGULAR) == 0)
1586 srel->_raw_size += RELOC_STD_SIZE;
1594 /* Scan the relocs for an input section using extended relocs. We
1595 need to figure out what to do for each reloc against a dynamic
1596 symbol. If the reloc is a WDISP30, and the symbol is in the .text
1597 section, an entry is made in the procedure linkage table.
1598 Otherwise, we must preserve the reloc as a dynamic reloc. */
1601 sunos_scan_ext_relocs (info, abfd, sec, relocs, rel_size)
1602 struct bfd_link_info *info;
1605 const struct reloc_ext_external *relocs;
1606 bfd_size_type rel_size;
1609 struct sunos_link_hash_entry **sym_hashes;
1610 const struct reloc_ext_external *rel, *relend;
1611 asection *splt = NULL;
1612 asection *sgot = NULL;
1613 asection *srel = NULL;
1615 /* We only know how to handle SPARC plt entries. */
1616 if (bfd_get_arch (abfd) != bfd_arch_sparc)
1618 bfd_set_error (bfd_error_invalid_target);
1624 sym_hashes = (struct sunos_link_hash_entry **) obj_aout_sym_hashes (abfd);
1626 relend = relocs + rel_size / RELOC_EXT_SIZE;
1627 for (rel = relocs; rel < relend; rel++)
1629 unsigned int r_index;
1632 struct sunos_link_hash_entry *h = NULL;
1634 /* Swap in the reloc information. */
1635 if (bfd_header_big_endian (abfd))
1637 r_index = ((rel->r_index[0] << 16)
1638 | (rel->r_index[1] << 8)
1640 r_extern = (0 != (rel->r_type[0] & RELOC_EXT_BITS_EXTERN_BIG));
1641 r_type = ((rel->r_type[0] & RELOC_EXT_BITS_TYPE_BIG)
1642 >> RELOC_EXT_BITS_TYPE_SH_BIG);
1646 r_index = ((rel->r_index[2] << 16)
1647 | (rel->r_index[1] << 8)
1649 r_extern = (0 != (rel->r_type[0] & RELOC_EXT_BITS_EXTERN_LITTLE));
1650 r_type = ((rel->r_type[0] & RELOC_EXT_BITS_TYPE_LITTLE)
1651 >> RELOC_EXT_BITS_TYPE_SH_LITTLE);
1656 h = sym_hashes[r_index];
1659 /* This should not normally happen, but it will in any
1660 case be caught in the relocation phase. */
1665 /* If this is a base relative reloc, we need to make an entry in
1666 the .got section. */
1667 if (r_type == RELOC_BASE10
1668 || r_type == RELOC_BASE13
1669 || r_type == RELOC_BASE22)
1673 if (! sunos_create_dynamic_sections (abfd, info, true))
1675 dynobj = sunos_hash_table (info)->dynobj;
1676 splt = bfd_get_section_by_name (dynobj, ".plt");
1677 sgot = bfd_get_section_by_name (dynobj, ".got");
1678 srel = bfd_get_section_by_name (dynobj, ".dynrel");
1679 BFD_ASSERT (splt != NULL && sgot != NULL && srel != NULL);
1684 if (h->got_offset != 0)
1687 h->got_offset = sgot->_raw_size;
1691 if (r_index >= bfd_get_symcount (abfd))
1693 /* This is abnormal, but should be caught in the
1694 relocation phase. */
1698 if (adata (abfd).local_got_offsets == NULL)
1700 adata (abfd).local_got_offsets =
1701 (bfd_vma *) bfd_zalloc (abfd,
1702 (bfd_get_symcount (abfd)
1703 * sizeof (bfd_vma)));
1704 if (adata (abfd).local_got_offsets == NULL)
1708 if (adata (abfd).local_got_offsets[r_index] != 0)
1711 adata (abfd).local_got_offsets[r_index] = sgot->_raw_size;
1714 sgot->_raw_size += BYTES_IN_WORD;
1716 /* If we are making a shared library, or if the symbol is
1717 defined by a dynamic object, we will need a dynamic reloc
1721 && (h->flags & SUNOS_DEF_DYNAMIC) != 0
1722 && (h->flags & SUNOS_DEF_REGULAR) == 0))
1723 srel->_raw_size += RELOC_EXT_SIZE;
1728 /* Otherwise, we are only interested in relocs against symbols
1729 defined in dynamic objects but not in regular objects. We
1730 only need to consider relocs against external symbols. */
1733 /* But, if we are creating a shared library, we need to
1734 generate an absolute reloc. */
1739 if (! sunos_create_dynamic_sections (abfd, info, true))
1741 dynobj = sunos_hash_table (info)->dynobj;
1742 splt = bfd_get_section_by_name (dynobj, ".plt");
1743 sgot = bfd_get_section_by_name (dynobj, ".got");
1744 srel = bfd_get_section_by_name (dynobj, ".dynrel");
1745 BFD_ASSERT (splt != NULL && sgot != NULL && srel != NULL);
1748 srel->_raw_size += RELOC_EXT_SIZE;
1754 /* At this point common symbols have already been allocated, so
1755 we don't have to worry about them. We need to consider that
1756 we may have already seen this symbol and marked it undefined;
1757 if the symbol is really undefined, then SUNOS_DEF_DYNAMIC
1759 if (h->root.root.type != bfd_link_hash_defined
1760 && h->root.root.type != bfd_link_hash_defweak
1761 && h->root.root.type != bfd_link_hash_undefined)
1764 if (r_type != RELOC_JMP_TBL
1766 && ((h->flags & SUNOS_DEF_DYNAMIC) == 0
1767 || (h->flags & SUNOS_DEF_REGULAR) != 0))
1770 if (strcmp (h->root.root.root.string, "__GLOBAL_OFFSET_TABLE_") == 0)
1775 if (! sunos_create_dynamic_sections (abfd, info, true))
1777 dynobj = sunos_hash_table (info)->dynobj;
1778 splt = bfd_get_section_by_name (dynobj, ".plt");
1779 sgot = bfd_get_section_by_name (dynobj, ".got");
1780 srel = bfd_get_section_by_name (dynobj, ".dynrel");
1781 BFD_ASSERT (splt != NULL && sgot != NULL && srel != NULL);
1784 BFD_ASSERT (r_type == RELOC_JMP_TBL
1786 || (h->flags & SUNOS_REF_REGULAR) != 0);
1787 BFD_ASSERT (r_type == RELOC_JMP_TBL
1789 || h->plt_offset != 0
1790 || ((h->root.root.type == bfd_link_hash_defined
1791 || h->root.root.type == bfd_link_hash_defweak)
1792 ? (h->root.root.u.def.section->owner->flags
1794 : (h->root.root.u.undef.abfd->flags & DYNAMIC) != 0));
1796 /* This reloc is against a symbol defined only by a dynamic
1797 object, or it is a jump table reloc from PIC compiled code. */
1799 if (r_type != RELOC_JMP_TBL
1800 && h->root.root.type == bfd_link_hash_undefined)
1802 /* Presumably this symbol was marked as being undefined by
1803 an earlier reloc. */
1804 srel->_raw_size += RELOC_EXT_SIZE;
1806 else if (r_type != RELOC_JMP_TBL
1807 && (h->root.root.u.def.section->flags & SEC_CODE) == 0)
1811 /* This reloc is not in the .text section. It must be
1812 copied into the dynamic relocs. We mark the symbol as
1814 srel->_raw_size += RELOC_EXT_SIZE;
1815 if ((h->flags & SUNOS_DEF_REGULAR) == 0)
1817 sub = h->root.root.u.def.section->owner;
1818 h->root.root.type = bfd_link_hash_undefined;
1819 h->root.root.u.undef.abfd = sub;
1824 /* This symbol is in the .text section. We must give it an
1825 entry in the procedure linkage table, if we have not
1826 already done so. We change the definition of the symbol
1827 to the .plt section; this will cause relocs against it to
1828 be handled correctly. */
1829 if (h->plt_offset == 0)
1831 if (splt->_raw_size == 0)
1832 splt->_raw_size = SPARC_PLT_ENTRY_SIZE;
1833 h->plt_offset = splt->_raw_size;
1835 if ((h->flags & SUNOS_DEF_REGULAR) == 0)
1837 if (h->root.root.type == bfd_link_hash_undefined)
1838 h->root.root.type = bfd_link_hash_defined;
1839 h->root.root.u.def.section = splt;
1840 h->root.root.u.def.value = splt->_raw_size;
1843 splt->_raw_size += SPARC_PLT_ENTRY_SIZE;
1845 /* We will also need a dynamic reloc entry, unless this
1846 is a JMP_TBL reloc produced by linking PIC compiled
1847 code, and we are not making a shared library. */
1848 if (info->shared || (h->flags & SUNOS_DEF_REGULAR) == 0)
1849 srel->_raw_size += RELOC_EXT_SIZE;
1852 /* If we are creating a shared library, we need to copy over
1853 any reloc other than a jump table reloc. */
1854 if (info->shared && r_type != RELOC_JMP_TBL)
1855 srel->_raw_size += RELOC_EXT_SIZE;
1862 /* Build the hash table of dynamic symbols, and to mark as written all
1863 symbols from dynamic objects which we do not plan to write out. */
1866 sunos_scan_dynamic_symbol (h, data)
1867 struct sunos_link_hash_entry *h;
1870 struct bfd_link_info *info = (struct bfd_link_info *) data;
1872 /* Set the written flag for symbols we do not want to write out as
1873 part of the regular symbol table. This is all symbols which are
1874 not defined in a regular object file. For some reason symbols
1875 which are referenced by a regular object and defined by a dynamic
1876 object do not seem to show up in the regular symbol table. It is
1877 possible for a symbol to have only SUNOS_REF_REGULAR set here, it
1878 is an undefined symbol which was turned into a common symbol
1879 because it was found in an archive object which was not included
1881 if ((h->flags & SUNOS_DEF_REGULAR) == 0
1882 && (h->flags & SUNOS_DEF_DYNAMIC) != 0
1883 && strcmp (h->root.root.root.string, "__DYNAMIC") != 0)
1884 h->root.written = true;
1886 /* If this symbol is defined by a dynamic object and referenced by a
1887 regular object, see whether we gave it a reasonable value while
1888 scanning the relocs. */
1890 if ((h->flags & SUNOS_DEF_REGULAR) == 0
1891 && (h->flags & SUNOS_DEF_DYNAMIC) != 0
1892 && (h->flags & SUNOS_REF_REGULAR) != 0)
1894 if ((h->root.root.type == bfd_link_hash_defined
1895 || h->root.root.type == bfd_link_hash_defweak)
1896 && ((h->root.root.u.def.section->owner->flags & DYNAMIC) != 0)
1897 && h->root.root.u.def.section->output_section == NULL)
1901 /* This symbol is currently defined in a dynamic section
1902 which is not being put into the output file. This
1903 implies that there is no reloc against the symbol. I'm
1904 not sure why this case would ever occur. In any case, we
1905 change the symbol to be undefined. */
1906 sub = h->root.root.u.def.section->owner;
1907 h->root.root.type = bfd_link_hash_undefined;
1908 h->root.root.u.undef.abfd = sub;
1912 /* If this symbol is defined or referenced by a regular file, add it
1913 to the dynamic symbols. */
1914 if ((h->flags & (SUNOS_DEF_REGULAR | SUNOS_REF_REGULAR)) != 0)
1919 unsigned char *name;
1923 BFD_ASSERT (h->dynindx == -2);
1925 dynobj = sunos_hash_table (info)->dynobj;
1927 h->dynindx = sunos_hash_table (info)->dynsymcount;
1928 ++sunos_hash_table (info)->dynsymcount;
1930 len = strlen (h->root.root.root.string);
1932 /* We don't bother to construct a BFD hash table for the strings
1933 which are the names of the dynamic symbols. Using a hash
1934 table for the regular symbols is beneficial, because the
1935 regular symbols includes the debugging symbols, which have
1936 long names and are often duplicated in several object files.
1937 There are no debugging symbols in the dynamic symbols. */
1938 s = bfd_get_section_by_name (dynobj, ".dynstr");
1939 BFD_ASSERT (s != NULL);
1940 contents = (bfd_byte *) bfd_realloc (s->contents,
1941 s->_raw_size + len + 1);
1942 if (contents == NULL)
1944 s->contents = contents;
1946 h->dynstr_index = s->_raw_size;
1947 strcpy (contents + s->_raw_size, h->root.root.root.string);
1948 s->_raw_size += len + 1;
1950 /* Add it to the dynamic hash table. */
1951 name = (unsigned char *) h->root.root.root.string;
1953 while (*name != '\0')
1954 hash = (hash << 1) + *name++;
1956 hash %= sunos_hash_table (info)->bucketcount;
1958 s = bfd_get_section_by_name (dynobj, ".hash");
1959 BFD_ASSERT (s != NULL);
1961 if (GET_SWORD (dynobj, s->contents + hash * HASH_ENTRY_SIZE) == -1)
1962 PUT_WORD (dynobj, h->dynindx, s->contents + hash * HASH_ENTRY_SIZE);
1967 next = GET_WORD (dynobj,
1969 + hash * HASH_ENTRY_SIZE
1971 PUT_WORD (dynobj, s->_raw_size / HASH_ENTRY_SIZE,
1972 s->contents + hash * HASH_ENTRY_SIZE + BYTES_IN_WORD);
1973 PUT_WORD (dynobj, h->dynindx, s->contents + s->_raw_size);
1974 PUT_WORD (dynobj, next, s->contents + s->_raw_size + BYTES_IN_WORD);
1975 s->_raw_size += HASH_ENTRY_SIZE;
1982 /* Link a dynamic object. We actually don't have anything to do at
1983 this point. This entry point exists to prevent the regular linker
1984 code from doing anything with the object. */
1988 sunos_link_dynamic_object (info, abfd)
1989 struct bfd_link_info *info;
1995 /* Write out a dynamic symbol. This is called by the final traversal
1996 over the symbol table. */
1999 sunos_write_dynamic_symbol (output_bfd, info, harg)
2001 struct bfd_link_info *info;
2002 struct aout_link_hash_entry *harg;
2004 struct sunos_link_hash_entry *h = (struct sunos_link_hash_entry *) harg;
2008 struct external_nlist *outsym;
2013 switch (h->root.root.type)
2016 case bfd_link_hash_new:
2018 /* Avoid variable not initialized warnings. */
2020 case bfd_link_hash_undefined:
2021 type = N_UNDF | N_EXT;
2024 case bfd_link_hash_defined:
2025 case bfd_link_hash_defweak:
2028 asection *output_section;
2030 sec = h->root.root.u.def.section;
2031 output_section = sec->output_section;
2032 BFD_ASSERT (bfd_is_abs_section (output_section)
2033 || output_section->owner == output_bfd);
2034 if (h->plt_offset != 0
2035 && (h->flags & SUNOS_DEF_REGULAR) == 0)
2037 type = N_UNDF | N_EXT;
2042 if (output_section == obj_textsec (output_bfd))
2043 type = (h->root.root.type == bfd_link_hash_defined
2046 else if (output_section == obj_datasec (output_bfd))
2047 type = (h->root.root.type == bfd_link_hash_defined
2050 else if (output_section == obj_bsssec (output_bfd))
2051 type = (h->root.root.type == bfd_link_hash_defined
2055 type = (h->root.root.type == bfd_link_hash_defined
2059 val = (h->root.root.u.def.value
2060 + output_section->vma
2061 + sec->output_offset);
2065 case bfd_link_hash_common:
2066 type = N_UNDF | N_EXT;
2067 val = h->root.root.u.c.size;
2069 case bfd_link_hash_undefweak:
2073 case bfd_link_hash_indirect:
2074 case bfd_link_hash_warning:
2075 /* FIXME: Ignore these for now. The circumstances under which
2076 they should be written out are not clear to me. */
2080 s = bfd_get_section_by_name (sunos_hash_table (info)->dynobj, ".dynsym");
2081 BFD_ASSERT (s != NULL);
2082 outsym = ((struct external_nlist *)
2083 (s->contents + h->dynindx * EXTERNAL_NLIST_SIZE));
2085 bfd_h_put_8 (output_bfd, type, outsym->e_type);
2086 bfd_h_put_8 (output_bfd, 0, outsym->e_other);
2088 /* FIXME: The native linker doesn't use 0 for desc. It seems to use
2089 one less than the desc value in the shared library, although that
2091 bfd_h_put_16 (output_bfd, 0, outsym->e_desc);
2093 PUT_WORD (output_bfd, h->dynstr_index, outsym->e_strx);
2094 PUT_WORD (output_bfd, val, outsym->e_value);
2096 /* If this symbol is in the procedure linkage table, fill in the
2098 if (h->plt_offset != 0)
2106 dynobj = sunos_hash_table (info)->dynobj;
2107 splt = bfd_get_section_by_name (dynobj, ".plt");
2108 p = splt->contents + h->plt_offset;
2110 s = bfd_get_section_by_name (dynobj, ".dynrel");
2112 r_address = (splt->output_section->vma
2113 + splt->output_offset
2116 switch (bfd_get_arch (output_bfd))
2118 case bfd_arch_sparc:
2119 if (info->shared || (h->flags & SUNOS_DEF_REGULAR) == 0)
2121 bfd_put_32 (output_bfd, SPARC_PLT_ENTRY_WORD0, p);
2122 bfd_put_32 (output_bfd,
2123 (SPARC_PLT_ENTRY_WORD1
2124 + (((- (h->plt_offset + 4) >> 2)
2127 bfd_put_32 (output_bfd, SPARC_PLT_ENTRY_WORD2 + s->reloc_count,
2134 val = (h->root.root.u.def.section->output_section->vma
2135 + h->root.root.u.def.section->output_offset
2136 + h->root.root.u.def.value);
2137 bfd_put_32 (output_bfd,
2138 SPARC_PLT_PIC_WORD0 + ((val >> 10) & 0x3fffff),
2140 bfd_put_32 (output_bfd,
2141 SPARC_PLT_PIC_WORD1 + (val & 0x3ff),
2143 bfd_put_32 (output_bfd, SPARC_PLT_PIC_WORD2, p + 8);
2148 if (! info->shared && (h->flags & SUNOS_DEF_REGULAR) != 0)
2150 bfd_put_16 (output_bfd, M68K_PLT_ENTRY_WORD0, p);
2151 bfd_put_32 (output_bfd, (- (h->plt_offset + 2)), p + 2);
2152 bfd_put_16 (output_bfd, s->reloc_count, p + 6);
2160 /* We also need to add a jump table reloc, unless this is the
2161 result of a JMP_TBL reloc from PIC compiled code. */
2162 if (info->shared || (h->flags & SUNOS_DEF_REGULAR) == 0)
2164 BFD_ASSERT (s->reloc_count * obj_reloc_entry_size (dynobj)
2166 p = s->contents + s->reloc_count * obj_reloc_entry_size (output_bfd);
2167 if (obj_reloc_entry_size (output_bfd) == RELOC_STD_SIZE)
2169 struct reloc_std_external *srel;
2171 srel = (struct reloc_std_external *) p;
2172 PUT_WORD (output_bfd, r_address, srel->r_address);
2173 if (bfd_header_big_endian (output_bfd))
2175 srel->r_index[0] = h->dynindx >> 16;
2176 srel->r_index[1] = h->dynindx >> 8;
2177 srel->r_index[2] = h->dynindx;
2178 srel->r_type[0] = (RELOC_STD_BITS_EXTERN_BIG
2179 | RELOC_STD_BITS_JMPTABLE_BIG);
2183 srel->r_index[2] = h->dynindx >> 16;
2184 srel->r_index[1] = h->dynindx >> 8;
2185 srel->r_index[0] = h->dynindx;
2186 srel->r_type[0] = (RELOC_STD_BITS_EXTERN_LITTLE
2187 | RELOC_STD_BITS_JMPTABLE_LITTLE);
2192 struct reloc_ext_external *erel;
2194 erel = (struct reloc_ext_external *) p;
2195 PUT_WORD (output_bfd, r_address, erel->r_address);
2196 if (bfd_header_big_endian (output_bfd))
2198 erel->r_index[0] = h->dynindx >> 16;
2199 erel->r_index[1] = h->dynindx >> 8;
2200 erel->r_index[2] = h->dynindx;
2202 (RELOC_EXT_BITS_EXTERN_BIG
2203 | (RELOC_JMP_SLOT << RELOC_EXT_BITS_TYPE_SH_BIG));
2207 erel->r_index[2] = h->dynindx >> 16;
2208 erel->r_index[1] = h->dynindx >> 8;
2209 erel->r_index[0] = h->dynindx;
2211 (RELOC_EXT_BITS_EXTERN_LITTLE
2212 | (RELOC_JMP_SLOT << RELOC_EXT_BITS_TYPE_SH_LITTLE));
2214 PUT_WORD (output_bfd, (bfd_vma) 0, erel->r_addend);
2224 /* This is called for each reloc against an external symbol. If this
2225 is a reloc which are are going to copy as a dynamic reloc, then
2226 copy it over, and tell the caller to not bother processing this
2231 sunos_check_dynamic_reloc (info, input_bfd, input_section, harg, reloc,
2232 contents, skip, relocationp)
2233 struct bfd_link_info *info;
2235 asection *input_section;
2236 struct aout_link_hash_entry *harg;
2240 bfd_vma *relocationp;
2242 struct sunos_link_hash_entry *h = (struct sunos_link_hash_entry *) harg;
2252 dynobj = sunos_hash_table (info)->dynobj;
2254 if (h != NULL && h->plt_offset != 0)
2258 /* Redirect the relocation to the PLT entry. */
2259 splt = bfd_get_section_by_name (dynobj, ".plt");
2260 *relocationp = (splt->output_section->vma
2261 + splt->output_offset
2265 if (obj_reloc_entry_size (input_bfd) == RELOC_STD_SIZE)
2267 struct reloc_std_external *srel;
2269 srel = (struct reloc_std_external *) reloc;
2270 if (bfd_header_big_endian (input_bfd))
2272 baserel = (0 != (srel->r_type[0] & RELOC_STD_BITS_BASEREL_BIG));
2273 jmptbl = (0 != (srel->r_type[0] & RELOC_STD_BITS_JMPTABLE_BIG));
2277 baserel = (0 != (srel->r_type[0] & RELOC_STD_BITS_BASEREL_LITTLE));
2278 jmptbl = (0 != (srel->r_type[0] & RELOC_STD_BITS_JMPTABLE_LITTLE));
2283 struct reloc_ext_external *erel;
2286 erel = (struct reloc_ext_external *) reloc;
2287 if (bfd_header_big_endian (input_bfd))
2288 r_type = ((erel->r_type[0] & RELOC_EXT_BITS_TYPE_BIG)
2289 >> RELOC_EXT_BITS_TYPE_SH_BIG);
2291 r_type = ((erel->r_type[0] & RELOC_EXT_BITS_TYPE_LITTLE)
2292 >> RELOC_EXT_BITS_TYPE_SH_LITTLE);
2293 baserel = (r_type == RELOC_BASE10
2294 || r_type == RELOC_BASE13
2295 || r_type == RELOC_BASE22);
2296 jmptbl = r_type == RELOC_JMP_TBL;
2301 bfd_vma *got_offsetp;
2305 got_offsetp = &h->got_offset;
2306 else if (adata (input_bfd).local_got_offsets == NULL)
2310 struct reloc_std_external *srel;
2313 srel = (struct reloc_std_external *) reloc;
2314 if (obj_reloc_entry_size (input_bfd) == RELOC_STD_SIZE)
2316 if (bfd_header_big_endian (input_bfd))
2317 r_index = ((srel->r_index[0] << 16)
2318 | (srel->r_index[1] << 8)
2319 | srel->r_index[2]);
2321 r_index = ((srel->r_index[2] << 16)
2322 | (srel->r_index[1] << 8)
2323 | srel->r_index[0]);
2327 struct reloc_ext_external *erel;
2329 erel = (struct reloc_ext_external *) reloc;
2330 if (bfd_header_big_endian (input_bfd))
2331 r_index = ((erel->r_index[0] << 16)
2332 | (erel->r_index[1] << 8)
2333 | erel->r_index[2]);
2335 r_index = ((erel->r_index[2] << 16)
2336 | (erel->r_index[1] << 8)
2337 | erel->r_index[0]);
2340 got_offsetp = adata (input_bfd).local_got_offsets + r_index;
2343 BFD_ASSERT (got_offsetp != NULL && *got_offsetp != 0);
2345 sgot = bfd_get_section_by_name (dynobj, ".got");
2347 /* We set the least significant bit to indicate whether we have
2348 already initialized the GOT entry. */
2349 if ((*got_offsetp & 1) == 0)
2353 && ((h->flags & SUNOS_DEF_DYNAMIC) == 0
2354 || (h->flags & SUNOS_DEF_REGULAR) != 0)))
2355 PUT_WORD (dynobj, *relocationp, sgot->contents + *got_offsetp);
2357 PUT_WORD (dynobj, 0, sgot->contents + *got_offsetp);
2361 && (h->flags & SUNOS_DEF_DYNAMIC) != 0
2362 && (h->flags & SUNOS_DEF_REGULAR) == 0))
2364 /* We need to create a GLOB_DAT or 32 reloc to tell the
2365 dynamic linker to fill in this entry in the table. */
2367 s = bfd_get_section_by_name (dynobj, ".dynrel");
2368 BFD_ASSERT (s != NULL);
2369 BFD_ASSERT (s->reloc_count * obj_reloc_entry_size (dynobj)
2373 + s->reloc_count * obj_reloc_entry_size (dynobj));
2380 if (obj_reloc_entry_size (dynobj) == RELOC_STD_SIZE)
2382 struct reloc_std_external *srel;
2384 srel = (struct reloc_std_external *) p;
2387 + sgot->output_section->vma
2388 + sgot->output_offset),
2390 if (bfd_header_big_endian (dynobj))
2392 srel->r_index[0] = indx >> 16;
2393 srel->r_index[1] = indx >> 8;
2394 srel->r_index[2] = indx;
2396 srel->r_type[0] = 2 << RELOC_STD_BITS_LENGTH_SH_BIG;
2399 (RELOC_STD_BITS_EXTERN_BIG
2400 | RELOC_STD_BITS_BASEREL_BIG
2401 | RELOC_STD_BITS_RELATIVE_BIG
2402 | (2 << RELOC_STD_BITS_LENGTH_SH_BIG));
2406 srel->r_index[2] = indx >> 16;
2407 srel->r_index[1] = indx >> 8;
2408 srel->r_index[0] = indx;
2410 srel->r_type[0] = 2 << RELOC_STD_BITS_LENGTH_SH_LITTLE;
2413 (RELOC_STD_BITS_EXTERN_LITTLE
2414 | RELOC_STD_BITS_BASEREL_LITTLE
2415 | RELOC_STD_BITS_RELATIVE_LITTLE
2416 | (2 << RELOC_STD_BITS_LENGTH_SH_LITTLE));
2421 struct reloc_ext_external *erel;
2423 erel = (struct reloc_ext_external *) p;
2426 + sgot->output_section->vma
2427 + sgot->output_offset),
2429 if (bfd_header_big_endian (dynobj))
2431 erel->r_index[0] = indx >> 16;
2432 erel->r_index[1] = indx >> 8;
2433 erel->r_index[2] = indx;
2436 RELOC_32 << RELOC_EXT_BITS_TYPE_SH_BIG;
2439 (RELOC_EXT_BITS_EXTERN_BIG
2440 | (RELOC_GLOB_DAT << RELOC_EXT_BITS_TYPE_SH_BIG));
2444 erel->r_index[2] = indx >> 16;
2445 erel->r_index[1] = indx >> 8;
2446 erel->r_index[0] = indx;
2449 RELOC_32 << RELOC_EXT_BITS_TYPE_SH_LITTLE;
2452 (RELOC_EXT_BITS_EXTERN_LITTLE
2454 << RELOC_EXT_BITS_TYPE_SH_LITTLE));
2456 PUT_WORD (dynobj, 0, erel->r_addend);
2465 *relocationp = sgot->vma + (*got_offsetp &~ 1);
2467 /* There is nothing else to do for a base relative reloc. */
2471 if (! sunos_hash_table (info)->dynamic_sections_needed)
2477 || h->root.root.type != bfd_link_hash_undefined
2478 || (h->flags & SUNOS_DEF_REGULAR) != 0
2479 || (h->flags & SUNOS_DEF_DYNAMIC) == 0
2480 || (h->root.root.u.undef.abfd->flags & DYNAMIC) == 0)
2486 && (h->dynindx == -1
2488 || strcmp (h->root.root.root.string,
2489 "__GLOBAL_OFFSET_TABLE_") == 0))
2493 /* It looks like this is a reloc we are supposed to copy. */
2495 s = bfd_get_section_by_name (dynobj, ".dynrel");
2496 BFD_ASSERT (s != NULL);
2497 BFD_ASSERT (s->reloc_count * obj_reloc_entry_size (dynobj) < s->_raw_size);
2499 p = s->contents + s->reloc_count * obj_reloc_entry_size (dynobj);
2501 /* Copy the reloc over. */
2502 memcpy (p, reloc, obj_reloc_entry_size (dynobj));
2509 /* Adjust the address and symbol index. */
2510 if (obj_reloc_entry_size (dynobj) == RELOC_STD_SIZE)
2512 struct reloc_std_external *srel;
2514 srel = (struct reloc_std_external *) p;
2516 (GET_WORD (dynobj, srel->r_address)
2517 + input_section->output_section->vma
2518 + input_section->output_offset),
2520 if (bfd_header_big_endian (dynobj))
2522 srel->r_index[0] = indx >> 16;
2523 srel->r_index[1] = indx >> 8;
2524 srel->r_index[2] = indx;
2528 srel->r_index[2] = indx >> 16;
2529 srel->r_index[1] = indx >> 8;
2530 srel->r_index[0] = indx;
2535 struct reloc_ext_external *erel;
2537 erel = (struct reloc_ext_external *) p;
2539 (GET_WORD (dynobj, erel->r_address)
2540 + input_section->output_section->vma
2541 + input_section->output_offset),
2543 if (bfd_header_big_endian (dynobj))
2545 erel->r_index[0] = indx >> 16;
2546 erel->r_index[1] = indx >> 8;
2547 erel->r_index[2] = indx;
2551 erel->r_index[2] = indx >> 16;
2552 erel->r_index[1] = indx >> 8;
2553 erel->r_index[0] = indx;
2565 /* Finish up the dynamic linking information. */
2568 sunos_finish_dynamic_link (abfd, info)
2570 struct bfd_link_info *info;
2576 struct external_sun4_dynamic esd;
2577 struct external_sun4_dynamic_link esdl;
2579 if (! sunos_hash_table (info)->dynamic_sections_needed)
2582 dynobj = sunos_hash_table (info)->dynobj;
2584 sdyn = bfd_get_section_by_name (dynobj, ".dynamic");
2585 BFD_ASSERT (sdyn != NULL);
2587 /* Finish up the .need section. The linker emulation code filled it
2588 in, but with offsets from the start of the section instead of
2589 real addresses. Now that we know the section location, we can
2590 fill in the final values. */
2591 s = bfd_get_section_by_name (dynobj, ".need");
2592 if (s != NULL && s->_raw_size != 0)
2597 filepos = s->output_section->filepos + s->output_offset;
2603 PUT_WORD (dynobj, GET_WORD (dynobj, p) + filepos, p);
2604 val = GET_WORD (dynobj, p + 12);
2607 PUT_WORD (dynobj, val + filepos, p + 12);
2612 /* The first entry in the .got section is the address of the
2613 dynamic information, unless this is a shared library. */
2614 s = bfd_get_section_by_name (dynobj, ".got");
2615 BFD_ASSERT (s != NULL);
2617 PUT_WORD (dynobj, 0, s->contents);
2619 PUT_WORD (dynobj, sdyn->output_section->vma + sdyn->output_offset,
2622 for (o = dynobj->sections; o != NULL; o = o->next)
2624 if ((o->flags & SEC_HAS_CONTENTS) != 0
2625 && o->contents != NULL)
2627 BFD_ASSERT (o->output_section != NULL
2628 && o->output_section->owner == abfd);
2629 if (! bfd_set_section_contents (abfd, o->output_section,
2630 o->contents, o->output_offset,
2636 /* Finish up the dynamic link information. */
2637 PUT_WORD (dynobj, (bfd_vma) 3, esd.ld_version);
2639 sdyn->output_section->vma + sdyn->output_offset + sizeof esd,
2642 (sdyn->output_section->vma
2643 + sdyn->output_offset
2645 + EXTERNAL_SUN4_DYNAMIC_DEBUGGER_SIZE),
2648 if (! bfd_set_section_contents (abfd, sdyn->output_section, &esd,
2649 sdyn->output_offset, sizeof esd))
2653 PUT_WORD (dynobj, (bfd_vma) 0, esdl.ld_loaded);
2655 s = bfd_get_section_by_name (dynobj, ".need");
2656 if (s == NULL || s->_raw_size == 0)
2657 PUT_WORD (dynobj, (bfd_vma) 0, esdl.ld_need);
2659 PUT_WORD (dynobj, s->output_section->filepos + s->output_offset,
2662 s = bfd_get_section_by_name (dynobj, ".rules");
2663 if (s == NULL || s->_raw_size == 0)
2664 PUT_WORD (dynobj, (bfd_vma) 0, esdl.ld_rules);
2666 PUT_WORD (dynobj, s->output_section->filepos + s->output_offset,
2669 s = bfd_get_section_by_name (dynobj, ".got");
2670 BFD_ASSERT (s != NULL);
2671 PUT_WORD (dynobj, s->output_section->vma + s->output_offset, esdl.ld_got);
2673 s = bfd_get_section_by_name (dynobj, ".plt");
2674 BFD_ASSERT (s != NULL);
2675 PUT_WORD (dynobj, s->output_section->vma + s->output_offset, esdl.ld_plt);
2676 PUT_WORD (dynobj, s->_raw_size, esdl.ld_plt_sz);
2678 s = bfd_get_section_by_name (dynobj, ".dynrel");
2679 BFD_ASSERT (s != NULL);
2680 BFD_ASSERT (s->reloc_count * obj_reloc_entry_size (dynobj) == s->_raw_size);
2681 PUT_WORD (dynobj, s->output_section->filepos + s->output_offset,
2684 s = bfd_get_section_by_name (dynobj, ".hash");
2685 BFD_ASSERT (s != NULL);
2686 PUT_WORD (dynobj, s->output_section->filepos + s->output_offset,
2689 s = bfd_get_section_by_name (dynobj, ".dynsym");
2690 BFD_ASSERT (s != NULL);
2691 PUT_WORD (dynobj, s->output_section->filepos + s->output_offset,
2694 PUT_WORD (dynobj, (bfd_vma) 0, esdl.ld_stab_hash);
2696 PUT_WORD (dynobj, (bfd_vma) sunos_hash_table (info)->bucketcount,
2699 s = bfd_get_section_by_name (dynobj, ".dynstr");
2700 BFD_ASSERT (s != NULL);
2701 PUT_WORD (dynobj, s->output_section->filepos + s->output_offset,
2703 PUT_WORD (dynobj, s->_raw_size, esdl.ld_symb_size);
2705 /* The size of the text area is the size of the .text section
2706 rounded up to a page boundary. FIXME: Should the page size be
2707 conditional on something? */
2709 BFD_ALIGN (obj_textsec (abfd)->_raw_size, 0x2000),
2712 if (! bfd_set_section_contents (abfd, sdyn->output_section, &esdl,
2713 (sdyn->output_offset
2715 + EXTERNAL_SUN4_DYNAMIC_DEBUGGER_SIZE),
2719 abfd->flags |= DYNAMIC;