* sunos.c (sunos_scan_dynamic_symbol): Only set written if the
[external/binutils.git] / bfd / sunos.c
1 /* BFD backend for SunOS binaries.
2    Copyright (C) 1990, 91, 92, 93, 94, 1995 Free Software Foundation, Inc.
3    Written by Cygnus Support.
4
5 This file is part of BFD, the Binary File Descriptor library.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
20
21 #define TARGETNAME "a.out-sunos-big"
22 #define MY(OP) CAT(sunos_big_,OP)
23
24 #include "bfd.h"
25 #include "bfdlink.h"
26 #include "libaout.h"
27
28 /* Static routines defined in this file.  */
29
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
40   PARAMS ((bfd *));
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 *,
65            bfd_vma *));
66 static boolean sunos_finish_dynamic_link
67   PARAMS ((bfd *, struct bfd_link_info *));
68
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
80
81 /* Include the usual a.out support.  */
82 #include "aoutf1.h"
83
84 /* SunOS shared library support.  We store a pointer to this structure
85    in obj_aout_dynamic_info (abfd).  */
86
87 struct sunos_dynamic_info
88 {
89   /* Whether we found any dynamic information.  */
90   boolean valid;
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.  */
100   char *dynstr;
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.  */
105   PTR dynrel;
106   /* arelent structures for dynamic relocs.  */
107   arelent *canonical_dynrel;
108 };
109
110 /* The hash table of dynamic symbols is composed of two word entries.
111    See include/aout/sun4.h for details.  */
112
113 #define HASH_ENTRY_SIZE (2 * BYTES_IN_WORD)
114
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.  */
120
121 static boolean
122 sunos_read_dynamic_info (abfd)
123      bfd *abfd;
124 {
125   struct sunos_dynamic_info *info;
126   asection *dynsec;
127   bfd_vma dynoff;
128   struct external_sun4_dynamic dyninfo;
129   unsigned long dynver;
130   struct external_sun4_dynamic_link linkinfo;
131
132   if (obj_aout_dynamic_info (abfd) != (PTR) NULL)
133     return true;
134
135   if ((abfd->flags & DYNAMIC) == 0)
136     {
137       bfd_set_error (bfd_error_invalid_operation);
138       return false;
139     }
140
141   info = ((struct sunos_dynamic_info *)
142           bfd_zalloc (abfd, sizeof (struct sunos_dynamic_info)));
143   if (!info)
144     {
145       bfd_set_error (bfd_error_no_memory);
146       return false;
147     }
148   info->valid = false;
149   info->dynsym = NULL;
150   info->dynstr = NULL;
151   info->canonical_dynsym = NULL;
152   info->dynrel = NULL;
153   info->canonical_dynrel = NULL;
154   obj_aout_dynamic_info (abfd) = (PTR) info;
155
156   /* This code used to look for the __DYNAMIC symbol to locate the dynamic
157      linking information.
158      However this inhibits recovering the dynamic symbols from a
159      stripped object file, so blindly assume that the dynamic linking
160      information is located at the start of the data section.
161      We could verify this assumption later by looking through the dynamic
162      symbols for the __DYNAMIC symbol.  */
163   if ((abfd->flags & DYNAMIC) == 0)
164     return true;
165   if (! bfd_get_section_contents (abfd, obj_datasec (abfd), (PTR) &dyninfo,
166                                   (file_ptr) 0, sizeof dyninfo))
167     return true;
168
169   dynver = GET_WORD (abfd, dyninfo.ld_version);
170   if (dynver != 2 && dynver != 3)
171     return true;
172
173   dynoff = GET_WORD (abfd, dyninfo.ld);
174
175   /* dynoff is a virtual address.  It is probably always in the .data
176      section, but this code should work even if it moves.  */
177   if (dynoff < bfd_get_section_vma (abfd, obj_datasec (abfd)))
178     dynsec = obj_textsec (abfd);
179   else
180     dynsec = obj_datasec (abfd);
181   dynoff -= bfd_get_section_vma (abfd, dynsec);
182   if (dynoff > bfd_section_size (abfd, dynsec))
183     return true;
184
185   /* This executable appears to be dynamically linked in a way that we
186      can understand.  */
187   if (! bfd_get_section_contents (abfd, dynsec, (PTR) &linkinfo, dynoff,
188                                   (bfd_size_type) sizeof linkinfo))
189     return true;
190
191   /* Swap in the dynamic link information.  */
192   info->dyninfo.ld_loaded = GET_WORD (abfd, linkinfo.ld_loaded);
193   info->dyninfo.ld_need = GET_WORD (abfd, linkinfo.ld_need);
194   info->dyninfo.ld_rules = GET_WORD (abfd, linkinfo.ld_rules);
195   info->dyninfo.ld_got = GET_WORD (abfd, linkinfo.ld_got);
196   info->dyninfo.ld_plt = GET_WORD (abfd, linkinfo.ld_plt);
197   info->dyninfo.ld_rel = GET_WORD (abfd, linkinfo.ld_rel);
198   info->dyninfo.ld_hash = GET_WORD (abfd, linkinfo.ld_hash);
199   info->dyninfo.ld_stab = GET_WORD (abfd, linkinfo.ld_stab);
200   info->dyninfo.ld_stab_hash = GET_WORD (abfd, linkinfo.ld_stab_hash);
201   info->dyninfo.ld_buckets = GET_WORD (abfd, linkinfo.ld_buckets);
202   info->dyninfo.ld_symbols = GET_WORD (abfd, linkinfo.ld_symbols);
203   info->dyninfo.ld_symb_size = GET_WORD (abfd, linkinfo.ld_symb_size);
204   info->dyninfo.ld_text = GET_WORD (abfd, linkinfo.ld_text);
205   info->dyninfo.ld_plt_sz = GET_WORD (abfd, linkinfo.ld_plt_sz);
206
207   /* Reportedly the addresses need to be offset by the size of the
208      exec header in an NMAGIC file.  */
209   if (adata (abfd).magic == n_magic)
210     {
211       unsigned long exec_bytes_size = adata (abfd).exec_bytes_size;
212
213       info->dyninfo.ld_need += exec_bytes_size;
214       info->dyninfo.ld_rules += exec_bytes_size;
215       info->dyninfo.ld_rel += exec_bytes_size;
216       info->dyninfo.ld_hash += exec_bytes_size;
217       info->dyninfo.ld_stab += exec_bytes_size;
218       info->dyninfo.ld_symbols += exec_bytes_size;
219     }
220
221   /* The only way to get the size of the symbol information appears to
222      be to determine the distance between it and the string table.  */
223   info->dynsym_count = ((info->dyninfo.ld_symbols - info->dyninfo.ld_stab)
224                         / EXTERNAL_NLIST_SIZE);
225   BFD_ASSERT (info->dynsym_count * EXTERNAL_NLIST_SIZE
226               == (unsigned long) (info->dyninfo.ld_symbols
227                                   - info->dyninfo.ld_stab));
228
229   /* Similarly, the relocs end at the hash table.  */
230   info->dynrel_count = ((info->dyninfo.ld_hash - info->dyninfo.ld_rel)
231                         / obj_reloc_entry_size (abfd));
232   BFD_ASSERT (info->dynrel_count * obj_reloc_entry_size (abfd)
233               == (unsigned long) (info->dyninfo.ld_hash
234                                   - info->dyninfo.ld_rel));
235
236   info->valid = true;
237
238   return true;
239 }
240
241 /* Return the amount of memory required for the dynamic symbols.  */
242
243 static long
244 sunos_get_dynamic_symtab_upper_bound (abfd)
245      bfd *abfd;
246 {
247   struct sunos_dynamic_info *info;
248
249   if (! sunos_read_dynamic_info (abfd))
250     return -1;
251
252   info = (struct sunos_dynamic_info *) obj_aout_dynamic_info (abfd);
253   if (! info->valid)
254     {
255       bfd_set_error (bfd_error_no_symbols);
256       return -1;
257     }
258
259   return (info->dynsym_count + 1) * sizeof (asymbol *);
260 }
261
262 /* Read the external dynamic symbols.  */
263
264 static boolean
265 sunos_slurp_dynamic_symtab (abfd)
266      bfd *abfd;
267 {
268   struct sunos_dynamic_info *info;
269
270   /* Get the general dynamic information.  */
271   if (obj_aout_dynamic_info (abfd) == NULL)
272     {
273       if (! sunos_read_dynamic_info (abfd))
274           return false;
275     }
276
277   info = (struct sunos_dynamic_info *) obj_aout_dynamic_info (abfd);
278   if (! info->valid)
279     {
280       bfd_set_error (bfd_error_no_symbols);
281       return false;
282     }
283
284   /* Get the dynamic nlist structures.  */
285   if (info->dynsym == (struct external_nlist *) NULL)
286     {
287       info->dynsym = ((struct external_nlist *)
288                       bfd_alloc (abfd,
289                                  (info->dynsym_count
290                                   * EXTERNAL_NLIST_SIZE)));
291       if (info->dynsym == NULL && info->dynsym_count != 0)
292         {
293           bfd_set_error (bfd_error_no_memory);
294           return false;
295         }
296       if (bfd_seek (abfd, info->dyninfo.ld_stab, SEEK_SET) != 0
297           || (bfd_read ((PTR) info->dynsym, info->dynsym_count,
298                         EXTERNAL_NLIST_SIZE, abfd)
299               != info->dynsym_count * EXTERNAL_NLIST_SIZE))
300         {
301           if (info->dynsym != NULL)
302             {
303               bfd_release (abfd, info->dynsym);
304               info->dynsym = NULL;
305             }
306           return false;
307         }
308     }
309
310   /* Get the dynamic strings.  */
311   if (info->dynstr == (char *) NULL)
312     {
313       info->dynstr = (char *) bfd_alloc (abfd, info->dyninfo.ld_symb_size);
314       if (info->dynstr == NULL && info->dyninfo.ld_symb_size != 0)
315         {
316           bfd_set_error (bfd_error_no_memory);
317           return false;
318         }
319       if (bfd_seek (abfd, info->dyninfo.ld_symbols, SEEK_SET) != 0
320           || (bfd_read ((PTR) info->dynstr, 1, info->dyninfo.ld_symb_size,
321                         abfd)
322               != info->dyninfo.ld_symb_size))
323         {
324           if (info->dynstr != NULL)
325             {
326               bfd_release (abfd, info->dynstr);
327               info->dynstr = NULL;
328             }
329           return false;
330         }
331     }
332
333   return true;
334 }
335
336 /* Read in the dynamic symbols.  */
337
338 static long
339 sunos_canonicalize_dynamic_symtab (abfd, storage)
340      bfd *abfd;
341      asymbol **storage;
342 {
343   struct sunos_dynamic_info *info;
344   unsigned long i;
345
346   if (! sunos_slurp_dynamic_symtab (abfd))
347     return -1;
348
349   info = (struct sunos_dynamic_info *) obj_aout_dynamic_info (abfd);
350
351 #ifdef CHECK_DYNAMIC_HASH
352   /* Check my understanding of the dynamic hash table by making sure
353      that each symbol can be located in the hash table.  */
354   {
355     bfd_size_type table_size;
356     bfd_byte *table;
357     bfd_size_type i;
358
359     if (info->dyninfo.ld_buckets > info->dynsym_count)
360       abort ();
361     table_size = info->dyninfo.ld_stab - info->dyninfo.ld_hash;
362     table = (bfd_byte *) malloc (table_size);
363     if (table == NULL && table_size != 0)
364       abort ();
365     if (bfd_seek (abfd, info->dyninfo.ld_hash, SEEK_SET) != 0
366         || bfd_read ((PTR) table, 1, table_size, abfd) != table_size)
367       abort ();
368     for (i = 0; i < info->dynsym_count; i++)
369       {
370         unsigned char *name;
371         unsigned long hash;
372
373         name = ((unsigned char *) info->dynstr
374                 + GET_WORD (abfd, info->dynsym[i].e_strx));
375         hash = 0;
376         while (*name != '\0')
377           hash = (hash << 1) + *name++;
378         hash &= 0x7fffffff;
379         hash %= info->dyninfo.ld_buckets;
380         while (GET_WORD (abfd, table + hash * HASH_ENTRY_SIZE) != i)
381           {
382             hash = GET_WORD (abfd,
383                              table + hash * HASH_ENTRY_SIZE + BYTES_IN_WORD);
384             if (hash == 0 || hash >= table_size / HASH_ENTRY_SIZE)
385               abort ();
386           }
387       }
388     free (table);
389   }
390 #endif /* CHECK_DYNAMIC_HASH */
391
392   /* Get the asymbol structures corresponding to the dynamic nlist
393      structures.  */
394   if (info->canonical_dynsym == (aout_symbol_type *) NULL)
395     {
396       info->canonical_dynsym = ((aout_symbol_type *)
397                                 bfd_alloc (abfd,
398                                            (info->dynsym_count
399                                             * sizeof (aout_symbol_type))));
400       if (info->canonical_dynsym == NULL && info->dynsym_count != 0)
401         {
402           bfd_set_error (bfd_error_no_memory);
403           return -1;
404         }
405
406       if (! aout_32_translate_symbol_table (abfd, info->canonical_dynsym,
407                                             info->dynsym, info->dynsym_count,
408                                             info->dynstr,
409                                             info->dyninfo.ld_symb_size,
410                                             true))
411         {
412           if (info->canonical_dynsym != NULL)
413             {
414               bfd_release (abfd, info->canonical_dynsym);
415               info->canonical_dynsym = NULL;
416             }
417           return -1;
418         }
419     }
420
421   /* Return pointers to the dynamic asymbol structures.  */
422   for (i = 0; i < info->dynsym_count; i++)
423     *storage++ = (asymbol *) (info->canonical_dynsym + i);
424   *storage = NULL;
425
426   return info->dynsym_count;
427 }
428
429 /* Return the amount of memory required for the dynamic relocs.  */
430
431 static long
432 sunos_get_dynamic_reloc_upper_bound (abfd)
433      bfd *abfd;
434 {
435   struct sunos_dynamic_info *info;
436
437   if (! sunos_read_dynamic_info (abfd))
438     return -1;
439
440   info = (struct sunos_dynamic_info *) obj_aout_dynamic_info (abfd);
441   if (! info->valid)
442     {
443       bfd_set_error (bfd_error_no_symbols);
444       return -1;
445     }
446
447   return (info->dynrel_count + 1) * sizeof (arelent *);
448 }
449
450 /* Read in the dynamic relocs.  */
451
452 static long
453 sunos_canonicalize_dynamic_reloc (abfd, storage, syms)
454      bfd *abfd;
455      arelent **storage;
456      asymbol **syms;
457 {
458   struct sunos_dynamic_info *info;
459   unsigned long i;
460
461   /* Get the general dynamic information.  */
462   if (obj_aout_dynamic_info (abfd) == (PTR) NULL)
463     {
464       if (! sunos_read_dynamic_info (abfd))
465         return -1;
466     }
467
468   info = (struct sunos_dynamic_info *) obj_aout_dynamic_info (abfd);
469   if (! info->valid)
470     {
471       bfd_set_error (bfd_error_no_symbols);
472       return -1;
473     }
474
475   /* Get the dynamic reloc information.  */
476   if (info->dynrel == NULL)
477     {
478       info->dynrel = (PTR) bfd_alloc (abfd,
479                                       (info->dynrel_count
480                                        * obj_reloc_entry_size (abfd)));
481       if (info->dynrel == NULL && info->dynrel_count != 0)
482         {
483           bfd_set_error (bfd_error_no_memory);
484           return -1;
485         }
486       if (bfd_seek (abfd, info->dyninfo.ld_rel, SEEK_SET) != 0
487           || (bfd_read ((PTR) info->dynrel, info->dynrel_count,
488                         obj_reloc_entry_size (abfd), abfd)
489               != info->dynrel_count * obj_reloc_entry_size (abfd)))
490         {
491           if (info->dynrel != NULL)
492             {
493               bfd_release (abfd, info->dynrel);
494               info->dynrel = NULL;
495             }
496           return -1;
497         }
498     }
499
500   /* Get the arelent structures corresponding to the dynamic reloc
501      information.  */
502   if (info->canonical_dynrel == (arelent *) NULL)
503     {
504       arelent *to;
505
506       info->canonical_dynrel = ((arelent *)
507                                 bfd_alloc (abfd,
508                                            (info->dynrel_count
509                                             * sizeof (arelent))));
510       if (info->canonical_dynrel == NULL && info->dynrel_count != 0)
511         {
512           bfd_set_error (bfd_error_no_memory);
513           return -1;
514         }
515       
516       to = info->canonical_dynrel;
517
518       if (obj_reloc_entry_size (abfd) == RELOC_EXT_SIZE)
519         {
520           register struct reloc_ext_external *p;
521           struct reloc_ext_external *pend;
522
523           p = (struct reloc_ext_external *) info->dynrel;
524           pend = p + info->dynrel_count;
525           for (; p < pend; p++, to++)
526             NAME(aout,swap_ext_reloc_in) (abfd, p, to, syms,
527                                           info->dynsym_count);
528         }
529       else
530         {
531           register struct reloc_std_external *p;
532           struct reloc_std_external *pend;
533
534           p = (struct reloc_std_external *) info->dynrel;
535           pend = p + info->dynrel_count;
536           for (; p < pend; p++, to++)
537             NAME(aout,swap_std_reloc_in) (abfd, p, to, syms,
538                                           info->dynsym_count);
539         }
540     }
541
542   /* Return pointers to the dynamic arelent structures.  */
543   for (i = 0; i < info->dynrel_count; i++)
544     *storage++ = info->canonical_dynrel + i;
545   *storage = NULL;
546
547   return info->dynrel_count;
548 }
549 \f
550 /* Code to handle linking of SunOS shared libraries.  */
551
552 /* A SPARC procedure linkage table entry is 12 bytes.  The first entry
553    in the table is a jump which is filled in by the runtime linker.
554    The remaining entries are branches back to the first entry,
555    followed by an index into the relocation table encoded to look like
556    a sethi of %g0.  */
557
558 #define SPARC_PLT_ENTRY_SIZE (12)
559
560 static const bfd_byte sparc_plt_first_entry[SPARC_PLT_ENTRY_SIZE] =
561 {
562   /* sethi %hi(0),%g1; address filled in by runtime linker.  */
563   0x3, 0, 0, 0,
564   /* jmp %g1; offset filled in by runtime linker.  */
565   0x81, 0xc0, 0x60, 0,
566   /* nop */
567   0x1, 0, 0, 0
568 };
569
570 /* save %sp, -96, %sp */
571 #define SPARC_PLT_ENTRY_WORD0 0x9de3bfa0
572 /* call; address filled in later.  */
573 #define SPARC_PLT_ENTRY_WORD1 0x40000000
574 /* sethi; reloc index filled in later.  */
575 #define SPARC_PLT_ENTRY_WORD2 0x01000000
576
577 /* This sequence is used when for the jump table entry to a defined
578    symbol in a complete executable.  It is used when linking PIC
579    compiled code which is not being put into a shared library.  */
580 /* sethi <address to be filled in later>, %g1 */
581 #define SPARC_PLT_PIC_WORD0 0x03000000
582 /* jmp %g1 + <address to be filled in later> */
583 #define SPARC_PLT_PIC_WORD1 0x81c06000
584 /* nop */
585 #define SPARC_PLT_PIC_WORD2 0x01000000
586
587 /* An m68k procedure linkage table entry is 8 bytes.  The first entry
588    in the table is a jump which is filled in the by the runtime
589    linker.  The remaining entries are branches back to the first
590    entry, followed by a two byte index into the relocation table.  */
591
592 #define M68K_PLT_ENTRY_SIZE (8)
593
594 static const bfd_byte m68k_plt_first_entry[M68K_PLT_ENTRY_SIZE] =
595 {
596   /* jmps @# */
597   0x4e, 0xf9,
598   /* Filled in by runtime linker with a magic address.  */
599   0, 0, 0, 0,
600   /* Not used?  */
601   0, 0
602 };
603
604 /* bsrl */
605 #define M68K_PLT_ENTRY_WORD0 (0x61ff)
606 /* Remaining words filled in later.  */
607
608 /* An entry in the SunOS linker hash table.  */
609
610 struct sunos_link_hash_entry
611 {
612   struct aout_link_hash_entry root;
613
614   /* If this is a dynamic symbol, this is its index into the dynamic
615      symbol table.  This is initialized to -1.  As the linker looks at
616      the input files, it changes this to -2 if it will be added to the
617      dynamic symbol table.  After all the input files have been seen,
618      the linker will know whether to build a dynamic symbol table; if
619      it does build one, this becomes the index into the table.  */
620   long dynindx;
621
622   /* If this is a dynamic symbol, this is the index of the name in the
623      dynamic symbol string table.  */
624   long dynstr_index;
625
626   /* The offset into the global offset table used for this symbol.  If
627      the symbol does not require a GOT entry, this is 0.  */
628   bfd_vma got_offset;
629
630   /* The offset into the procedure linkage table used for this symbol.
631      If the symbol does not require a PLT entry, this is 0.  */
632   bfd_vma plt_offset;
633
634   /* Some linker flags.  */
635   unsigned char flags;
636   /* Symbol is referenced by a regular object.  */
637 #define SUNOS_REF_REGULAR 01
638   /* Symbol is defined by a regular object.  */
639 #define SUNOS_DEF_REGULAR 02
640   /* Symbol is referenced by a dynamic object.  */
641 #define SUNOS_REF_DYNAMIC 010
642   /* Symbol is defined by a dynamic object.  */
643 #define SUNOS_DEF_DYNAMIC 020
644 };
645
646 /* The SunOS linker hash table.  */
647
648 struct sunos_link_hash_table
649 {
650   struct aout_link_hash_table root;
651
652   /* The object which holds the dynamic sections.  */
653   bfd *dynobj;
654
655   /* Whether we have created the dynamic sections.  */
656   boolean dynamic_sections_created;
657
658   /* Whether we need the dynamic sections.  */
659   boolean dynamic_sections_needed;
660
661   /* The number of dynamic symbols.  */
662   size_t dynsymcount;
663
664   /* The number of buckets in the hash table.  */
665   size_t bucketcount;
666
667   /* The list of dynamic objects needed by dynamic objects included in
668      the link.  */
669   struct bfd_link_needed_list *needed;
670 };
671
672 /* Routine to create an entry in an SunOS link hash table.  */
673
674 static struct bfd_hash_entry *
675 sunos_link_hash_newfunc (entry, table, string)
676      struct bfd_hash_entry *entry;
677      struct bfd_hash_table *table;
678      const char *string;
679 {
680   struct sunos_link_hash_entry *ret = (struct sunos_link_hash_entry *) entry;
681
682   /* Allocate the structure if it has not already been allocated by a
683      subclass.  */
684   if (ret == (struct sunos_link_hash_entry *) NULL)
685     ret = ((struct sunos_link_hash_entry *)
686            bfd_hash_allocate (table, sizeof (struct sunos_link_hash_entry)));
687   if (ret == (struct sunos_link_hash_entry *) NULL)
688     {
689       bfd_set_error (bfd_error_no_memory);
690       return (struct bfd_hash_entry *) ret;
691     }
692
693   /* Call the allocation method of the superclass.  */
694   ret = ((struct sunos_link_hash_entry *)
695          NAME(aout,link_hash_newfunc) ((struct bfd_hash_entry *) ret,
696                                        table, string));
697   if (ret != NULL)
698     {
699       /* Set local fields.  */
700       ret->dynindx = -1;
701       ret->dynstr_index = -1;
702       ret->got_offset = 0;
703       ret->plt_offset = 0;
704       ret->flags = 0;
705     }
706
707   return (struct bfd_hash_entry *) ret;
708 }
709
710 /* Create a SunOS link hash table.  */
711
712 static struct bfd_link_hash_table *
713 sunos_link_hash_table_create (abfd)
714      bfd *abfd;
715 {
716   struct sunos_link_hash_table *ret;
717
718   ret = ((struct sunos_link_hash_table *)
719          bfd_alloc (abfd, sizeof (struct sunos_link_hash_table)));
720   if (ret == (struct sunos_link_hash_table *) NULL)
721     {
722       bfd_set_error (bfd_error_no_memory);
723       return (struct bfd_link_hash_table *) NULL;
724     }
725   if (! NAME(aout,link_hash_table_init) (&ret->root, abfd,
726                                          sunos_link_hash_newfunc))
727     {
728       bfd_release (abfd, ret);
729       return (struct bfd_link_hash_table *) NULL;
730     }
731
732   ret->dynobj = NULL;
733   ret->dynamic_sections_created = false;
734   ret->dynamic_sections_needed = false;
735   ret->dynsymcount = 0;
736   ret->bucketcount = 0;
737   ret->needed = NULL;
738
739   return &ret->root.root;
740 }
741
742 /* Look up an entry in an SunOS link hash table.  */
743
744 #define sunos_link_hash_lookup(table, string, create, copy, follow) \
745   ((struct sunos_link_hash_entry *) \
746    aout_link_hash_lookup (&(table)->root, (string), (create), (copy),\
747                           (follow)))
748
749 /* Traverse a SunOS link hash table.  */
750
751 #define sunos_link_hash_traverse(table, func, info)                     \
752   (aout_link_hash_traverse                                              \
753    (&(table)->root,                                                     \
754     (boolean (*) PARAMS ((struct aout_link_hash_entry *, PTR))) (func), \
755     (info)))
756
757 /* Get the SunOS link hash table from the info structure.  This is
758    just a cast.  */
759
760 #define sunos_hash_table(p) ((struct sunos_link_hash_table *) ((p)->hash))
761
762 static boolean sunos_scan_dynamic_symbol
763   PARAMS ((struct sunos_link_hash_entry *, PTR));
764
765 /* Create the dynamic sections needed if we are linking against a
766    dynamic object, or if we are linking PIC compiled code.  ABFD is a
767    bfd we can attach the dynamic sections to.  The linker script will
768    look for these special sections names and put them in the right
769    place in the output file.  See include/aout/sun4.h for more details
770    of the dynamic linking information.  */
771
772 static boolean
773 sunos_create_dynamic_sections (abfd, info, needed)
774      bfd *abfd;
775      struct bfd_link_info *info;
776      boolean needed;
777 {
778   asection *s;
779
780   if (! sunos_hash_table (info)->dynamic_sections_created)
781     {
782       flagword flags;
783
784       sunos_hash_table (info)->dynobj = abfd;
785
786       flags = SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS | SEC_IN_MEMORY;
787
788       /* The .dynamic section holds the basic dynamic information: the
789          sun4_dynamic structure, the dynamic debugger information, and
790          the sun4_dynamic_link structure.  */
791       s = bfd_make_section (abfd, ".dynamic");
792       if (s == NULL
793           || ! bfd_set_section_flags (abfd, s, flags)
794           || ! bfd_set_section_alignment (abfd, s, 2))
795         return false;
796
797       /* The .got section holds the global offset table.  The address
798          is put in the ld_got field.  */
799       s = bfd_make_section (abfd, ".got");
800       if (s == NULL
801           || ! bfd_set_section_flags (abfd, s, flags)
802           || ! bfd_set_section_alignment (abfd, s, 2))
803         return false;
804
805       /* The .plt section holds the procedure linkage table.  The
806          address is put in the ld_plt field.  */
807       s = bfd_make_section (abfd, ".plt");
808       if (s == NULL
809           || ! bfd_set_section_flags (abfd, s, flags | SEC_CODE)
810           || ! bfd_set_section_alignment (abfd, s, 2))
811         return false;
812
813       /* The .dynrel section holds the dynamic relocs.  The address is
814          put in the ld_rel field.  */
815       s = bfd_make_section (abfd, ".dynrel");
816       if (s == NULL
817           || ! bfd_set_section_flags (abfd, s, flags | SEC_READONLY)
818           || ! bfd_set_section_alignment (abfd, s, 2))
819         return false;
820
821       /* The .hash section holds the dynamic hash table.  The address
822          is put in the ld_hash field.  */
823       s = bfd_make_section (abfd, ".hash");
824       if (s == NULL
825           || ! bfd_set_section_flags (abfd, s, flags | SEC_READONLY)
826           || ! bfd_set_section_alignment (abfd, s, 2))
827         return false;
828
829       /* The .dynsym section holds the dynamic symbols.  The address
830          is put in the ld_stab field.  */
831       s = bfd_make_section (abfd, ".dynsym");
832       if (s == NULL
833           || ! bfd_set_section_flags (abfd, s, flags | SEC_READONLY)
834           || ! bfd_set_section_alignment (abfd, s, 2))
835         return false;
836
837       /* The .dynstr section holds the dynamic symbol string table.
838          The address is put in the ld_symbols field.  */
839       s = bfd_make_section (abfd, ".dynstr");
840       if (s == NULL
841           || ! bfd_set_section_flags (abfd, s, flags | SEC_READONLY)
842           || ! bfd_set_section_alignment (abfd, s, 2))
843         return false;
844
845       sunos_hash_table (info)->dynamic_sections_created = true;
846     }
847
848   if (needed && ! sunos_hash_table (info)->dynamic_sections_needed)
849     {
850       bfd *dynobj;
851
852       dynobj = sunos_hash_table (info)->dynobj;
853
854       s = bfd_get_section_by_name (dynobj, ".got");
855       s->_raw_size = BYTES_IN_WORD;
856
857       sunos_hash_table (info)->dynamic_sections_needed = true;
858     }
859
860   return true;
861 }
862
863 /* Add dynamic symbols during a link.  This is called by the a.out
864    backend linker when it encounters an object with the DYNAMIC flag
865    set.  */
866
867 static boolean
868 sunos_add_dynamic_symbols (abfd, info, symsp, sym_countp, stringsp)
869      bfd *abfd;
870      struct bfd_link_info *info;
871      struct external_nlist **symsp;
872      bfd_size_type *sym_countp;
873      char **stringsp;
874 {
875   asection *s;
876   bfd *dynobj;
877   struct sunos_dynamic_info *dinfo;
878   unsigned long need;
879
880   /* We do not want to include the sections in a dynamic object in the
881      output file.  We hack by simply clobbering the list of sections
882      in the BFD.  This could be handled more cleanly by, say, a new
883      section flag; the existing SEC_NEVER_LOAD flag is not the one we
884      want, because that one still implies that the section takes up
885      space in the output file.  */
886   abfd->sections = NULL;
887
888   /* The native linker seems to just ignore dynamic objects when -r is
889      used.  */
890   if (info->relocateable)
891     return true;
892
893   /* There's no hope of using a dynamic object which does not exactly
894      match the format of the output file.  */
895   if (info->hash->creator != abfd->xvec)
896     {
897       bfd_set_error (bfd_error_invalid_operation);
898       return false;
899     }
900
901   /* Make sure we have all the required information.  */
902   if (! sunos_create_dynamic_sections (abfd, info, true))
903     return false;
904
905   /* Make sure we have a .need and a .rules sections.  These are only
906      needed if there really is a dynamic object in the link, so they
907      are not added by sunos_create_dynamic_sections.  */
908   dynobj = sunos_hash_table (info)->dynobj;
909   if (bfd_get_section_by_name (dynobj, ".need") == NULL)
910     {
911       /* The .need section holds the list of names of shared objets
912          which must be included at runtime.  The address of this
913          section is put in the ld_need field.  */
914       s = bfd_make_section (dynobj, ".need");
915       if (s == NULL
916           || ! bfd_set_section_flags (dynobj, s,
917                                       (SEC_ALLOC
918                                        | SEC_LOAD
919                                        | SEC_HAS_CONTENTS
920                                        | SEC_IN_MEMORY
921                                        | SEC_READONLY))
922           || ! bfd_set_section_alignment (dynobj, s, 2))
923         return false;
924     }
925
926   if (bfd_get_section_by_name (dynobj, ".rules") == NULL)
927     {
928       /* The .rules section holds the path to search for shared
929          objects.  The address of this section is put in the ld_rules
930          field.  */
931       s = bfd_make_section (dynobj, ".rules");
932       if (s == NULL
933           || ! bfd_set_section_flags (dynobj, s,
934                                       (SEC_ALLOC
935                                        | SEC_LOAD
936                                        | SEC_HAS_CONTENTS
937                                        | SEC_IN_MEMORY
938                                        | SEC_READONLY))
939           || ! bfd_set_section_alignment (dynobj, s, 2))
940         return false;
941     }
942
943   /* Pick up the dynamic symbols and return them to the caller.  */
944   if (! sunos_slurp_dynamic_symtab (abfd))
945     return false;
946
947   dinfo = (struct sunos_dynamic_info *) obj_aout_dynamic_info (abfd);
948   *symsp = dinfo->dynsym;
949   *sym_countp = dinfo->dynsym_count;
950   *stringsp = dinfo->dynstr;
951
952   /* Record information about any other objects needed by this one.  */
953   need = dinfo->dyninfo.ld_need;
954   while (need != 0)
955     {
956       bfd_byte buf[16];
957       unsigned long name, flags;
958       unsigned short major_vno, minor_vno;
959       struct bfd_link_needed_list *needed, **pp;
960       bfd_byte b;
961
962       if (bfd_seek (abfd, need, SEEK_SET) != 0
963           || bfd_read (buf, 1, 16, abfd) != 16)
964         return false;
965
966       /* For the format of an ld_need entry, see aout/sun4.h.  We
967          should probably define structs for this manipulation.  */
968
969       name = bfd_get_32 (abfd, buf);
970       flags = bfd_get_32 (abfd, buf + 4);
971       major_vno = bfd_get_16 (abfd, buf + 8);
972       minor_vno = bfd_get_16 (abfd, buf + 10);
973       need = bfd_get_32 (abfd, buf + 12);
974
975       needed = (struct bfd_link_needed_list *) bfd_alloc (abfd, sizeof (struct bfd_link_needed_list));
976       if (needed == NULL)
977         {
978           bfd_set_error (bfd_error_no_memory);
979           return false;
980         }
981       needed->by = abfd;
982
983       /* We return the name as [-l]name[.maj][.min].  */
984
985       if ((flags & 0x80000000) != 0)
986         bfd_alloc_grow (abfd, "-l", 2);
987       if (bfd_seek (abfd, name, SEEK_SET) != 0)
988         return false;
989       do
990         {
991           if (bfd_read (&b, 1, 1, abfd) != 1)
992             return false;
993           bfd_alloc_grow (abfd, &b, 1);
994         }
995       while (b != '\0');
996       if (major_vno != 0)
997         {
998           char verbuf[30];
999
1000           sprintf (verbuf, ".%d", major_vno);
1001           bfd_alloc_grow (abfd, verbuf, strlen (verbuf));
1002           if (minor_vno != 0)
1003             {
1004               sprintf (verbuf, ".%d", minor_vno);
1005               bfd_alloc_grow (abfd, verbuf, strlen (verbuf));
1006             }
1007         }
1008       needed->name = bfd_alloc_finish (abfd);
1009       if (needed->name == NULL)
1010         {
1011           bfd_set_error (bfd_error_no_memory);
1012           return false;
1013         }
1014
1015       needed->next = NULL;
1016
1017       for (pp = &sunos_hash_table (info)->needed;
1018            *pp != NULL;
1019            pp = &(*pp)->next)
1020         ;
1021       *pp = needed;
1022     }
1023
1024   return true;
1025 }
1026
1027 /* Function to add a single symbol to the linker hash table.  This is
1028    a wrapper around _bfd_generic_link_add_one_symbol which handles the
1029    tweaking needed for dynamic linking support.  */
1030
1031 static boolean
1032 sunos_add_one_symbol (info, abfd, name, flags, section, value, string,
1033                       copy, collect, hashp)
1034      struct bfd_link_info *info;
1035      bfd *abfd;
1036      const char *name;
1037      flagword flags;
1038      asection *section;
1039      bfd_vma value;
1040      const char *string;
1041      boolean copy;
1042      boolean collect;
1043      struct bfd_link_hash_entry **hashp;
1044 {
1045   struct sunos_link_hash_entry *h;
1046   int new_flag;
1047
1048   if (! sunos_hash_table (info)->dynamic_sections_created)
1049     {
1050       /* We must create the dynamic sections while reading the input
1051          files, even though at this point we don't know if any of the
1052          sections will be needed.  This will ensure that the dynamic
1053          sections are mapped to the right output section.  It does no
1054          harm to create these sections if they are not needed.  */
1055       if (! sunos_create_dynamic_sections (abfd, info, false))
1056         return false;
1057     }
1058
1059   h = sunos_link_hash_lookup (sunos_hash_table (info), name, true, copy,
1060                               false);
1061   if (h == NULL)
1062     return false;
1063
1064   if (hashp != NULL)
1065     *hashp = (struct bfd_link_hash_entry *) h;
1066
1067   /* Treat a common symbol in a dynamic object as defined in the .bss
1068      section of the dynamic object.  We don't want to allocate space
1069      for it in our process image.  */
1070   if ((abfd->flags & DYNAMIC) != 0
1071       && bfd_is_com_section (section))
1072     section = obj_bsssec (abfd);
1073
1074   if (! bfd_is_und_section (section)
1075       && h->root.root.type != bfd_link_hash_new
1076       && h->root.root.type != bfd_link_hash_undefined
1077       && h->root.root.type != bfd_link_hash_defweak)
1078     {
1079       /* We are defining the symbol, and it is already defined.  This
1080          is a potential multiple definition error.  */
1081       if ((abfd->flags & DYNAMIC) != 0)
1082         {
1083           /* The definition we are adding is from a dynamic object.
1084              We do not want this new definition to override the
1085              existing definition, so we pretend it is just a
1086              reference.  */
1087           section = bfd_und_section_ptr;
1088         }
1089       else if (h->root.root.type == bfd_link_hash_defined
1090                && h->root.root.u.def.section->owner != NULL
1091                && (h->root.root.u.def.section->owner->flags & DYNAMIC) != 0)
1092         {
1093           /* The existing definition is from a dynamic object.  We
1094              want to override it with the definition we just found.
1095              Clobber the existing definition.  */
1096           h->root.root.type = bfd_link_hash_new;
1097         }
1098       else if (h->root.root.type == bfd_link_hash_common
1099                && (h->root.root.u.c.p->section->owner->flags & DYNAMIC) != 0)
1100         {
1101           /* The existing definition is from a dynamic object.  We
1102              want to override it with the definition we just found.
1103              Clobber the existing definition.  We can't set it to new,
1104              because it is on the undefined list.  */
1105           h->root.root.type = bfd_link_hash_undefined;
1106           h->root.root.u.undef.abfd = h->root.root.u.c.p->section->owner;
1107         }
1108     }
1109
1110   /* Do the usual procedure for adding a symbol.  */
1111   if (! _bfd_generic_link_add_one_symbol (info, abfd, name, flags, section,
1112                                           value, string, copy, collect,
1113                                           hashp))
1114     return false;
1115
1116   if (abfd->xvec == info->hash->creator)
1117     {
1118       /* Set a flag in the hash table entry indicating the type of
1119          reference or definition we just found.  Keep a count of the
1120          number of dynamic symbols we find.  A dynamic symbol is one
1121          which is referenced or defined by both a regular object and a
1122          shared object.  */
1123       if ((abfd->flags & DYNAMIC) == 0)
1124         {
1125           if (bfd_is_und_section (section))
1126             new_flag = SUNOS_REF_REGULAR;
1127           else
1128             new_flag = SUNOS_DEF_REGULAR;
1129         }
1130       else
1131         {
1132           if (bfd_is_und_section (section))
1133             new_flag = SUNOS_REF_DYNAMIC;
1134           else
1135             new_flag = SUNOS_DEF_DYNAMIC;
1136         }
1137       h->flags |= new_flag;
1138
1139       if (h->dynindx == -1
1140           && (h->flags & (SUNOS_DEF_REGULAR | SUNOS_REF_REGULAR)) != 0)
1141         {
1142           ++sunos_hash_table (info)->dynsymcount;
1143           h->dynindx = -2;
1144         }
1145     }
1146
1147   return true;
1148 }
1149
1150 /* Return the list of objects needed by BFD.  */
1151
1152 /*ARGSUSED*/
1153 struct bfd_link_needed_list *
1154 bfd_sunos_get_needed_list (abfd, info)
1155      bfd *abfd;
1156      struct bfd_link_info *info;
1157 {
1158   if (info->hash->creator != &MY(vec))
1159     return NULL;
1160   return sunos_hash_table (info)->needed;
1161 }
1162
1163 /* Record an assignment made to a symbol by a linker script.  We need
1164    this in case some dynamic object refers to this symbol.  */
1165
1166 boolean
1167 bfd_sunos_record_link_assignment (output_bfd, info, name)
1168      bfd *output_bfd;
1169      struct bfd_link_info *info;
1170      const char *name;
1171 {
1172   struct sunos_link_hash_entry *h;
1173
1174   if (output_bfd->xvec != &MY(vec))
1175     return true;
1176
1177   /* This is called after we have examined all the input objects.  If
1178      the symbol does not exist, it merely means that no object refers
1179      to it, and we can just ignore it at this point.  */
1180   h = sunos_link_hash_lookup (sunos_hash_table (info), name,
1181                               false, false, false);
1182   if (h == NULL)
1183     return true;
1184
1185   /* In a shared library, the __DYNAMIC symbol does not appear in the
1186      dynamic symbol table.  */
1187   if (! info->shared || strcmp (name, "__DYNAMIC") != 0)
1188     {
1189       h->flags |= SUNOS_DEF_REGULAR;
1190
1191       if (h->dynindx == -1)
1192         {
1193           ++sunos_hash_table (info)->dynsymcount;
1194           h->dynindx = -2;
1195         }
1196     }
1197
1198   return true;
1199 }
1200
1201 /* Set up the sizes and contents of the dynamic sections created in
1202    sunos_add_dynamic_symbols.  This is called by the SunOS linker
1203    emulation before_allocation routine.  We must set the sizes of the
1204    sections before the linker sets the addresses of the various
1205    sections.  This unfortunately requires reading all the relocs so
1206    that we can work out which ones need to become dynamic relocs.  If
1207    info->keep_memory is true, we keep the relocs in memory; otherwise,
1208    we discard them, and will read them again later.  */
1209
1210 boolean
1211 bfd_sunos_size_dynamic_sections (output_bfd, info, sdynptr, sneedptr,
1212                                  srulesptr)
1213      bfd *output_bfd;
1214      struct bfd_link_info *info;
1215      asection **sdynptr;
1216      asection **sneedptr;
1217      asection **srulesptr;
1218 {
1219   bfd *dynobj;
1220   size_t dynsymcount;
1221   struct sunos_link_hash_entry *h;
1222   asection *s;
1223   size_t bucketcount;
1224   size_t hashalloc;
1225   size_t i;
1226   bfd *sub;
1227
1228   *sdynptr = NULL;
1229   *sneedptr = NULL;
1230   *srulesptr = NULL;
1231
1232   if (output_bfd->xvec != &MY(vec))
1233     return true;
1234
1235   /* Look through all the input BFD's and read their relocs.  It would
1236      be better if we didn't have to do this, but there is no other way
1237      to determine the number of dynamic relocs we need, and, more
1238      importantly, there is no other way to know which symbols should
1239      get an entry in the procedure linkage table.  */
1240   for (sub = info->input_bfds; sub != NULL; sub = sub->link_next)
1241     {
1242       if ((sub->flags & DYNAMIC) == 0
1243           && sub->xvec == output_bfd->xvec)
1244         {
1245           if (! sunos_scan_relocs (info, sub, obj_textsec (sub),
1246                                    exec_hdr (sub)->a_trsize)
1247               || ! sunos_scan_relocs (info, sub, obj_datasec (sub),
1248                                       exec_hdr (sub)->a_drsize))
1249             return false;
1250         }
1251     }
1252
1253   dynobj = sunos_hash_table (info)->dynobj;
1254   dynsymcount = sunos_hash_table (info)->dynsymcount;
1255
1256   /* If there were no dynamic objects in the link, and we don't need
1257      to build a global offset table, there is nothing to do here.  */
1258   if (! sunos_hash_table (info)->dynamic_sections_needed)
1259     return true;
1260
1261   /* If __GLOBAL_OFFSET_TABLE_ was mentioned, define it.  */
1262   h = sunos_link_hash_lookup (sunos_hash_table (info),
1263                               "__GLOBAL_OFFSET_TABLE_", false, false, false);
1264   if (h != NULL && (h->flags & SUNOS_REF_REGULAR) != 0)
1265     {
1266       h->flags |= SUNOS_DEF_REGULAR;
1267       if (h->dynindx == -1)
1268         {
1269           ++sunos_hash_table (info)->dynsymcount;
1270           h->dynindx = -2;
1271         }
1272       h->root.root.type = bfd_link_hash_defined;
1273       h->root.root.u.def.section = bfd_get_section_by_name (dynobj, ".got");
1274       h->root.root.u.def.value = 0;
1275     }
1276
1277   /* The .dynamic section is always the same size.  */
1278   s = bfd_get_section_by_name (dynobj, ".dynamic");
1279   BFD_ASSERT (s != NULL);
1280   s->_raw_size = (sizeof (struct external_sun4_dynamic)
1281                   + EXTERNAL_SUN4_DYNAMIC_DEBUGGER_SIZE
1282                   + sizeof (struct external_sun4_dynamic_link));
1283
1284   /* Set the size of the .dynsym and .hash sections.  We counted the
1285      number of dynamic symbols as we read the input files.  We will
1286      build the dynamic symbol table (.dynsym) and the hash table
1287      (.hash) when we build the final symbol table, because until then
1288      we do not know the correct value to give the symbols.  We build
1289      the dynamic symbol string table (.dynstr) in a traversal of the
1290      symbol table using sunos_scan_dynamic_symbol.  */
1291   s = bfd_get_section_by_name (dynobj, ".dynsym");
1292   BFD_ASSERT (s != NULL);
1293   s->_raw_size = dynsymcount * sizeof (struct external_nlist);
1294   s->contents = (bfd_byte *) bfd_alloc (output_bfd, s->_raw_size);
1295   if (s->contents == NULL && s->_raw_size != 0)
1296     {
1297       bfd_set_error (bfd_error_no_memory);
1298       return false;
1299     }
1300       
1301   /* The number of buckets is just the number of symbols divided by
1302      four.  To compute the final size of the hash table, we must
1303      actually compute the hash table.  Normally we need exactly as
1304      many entries in the hash table as there are dynamic symbols, but
1305      if some of the buckets are not used we will need additional
1306      entries.  In the worst case, every symbol will hash to the same
1307      bucket, and we will need BUCKETCOUNT - 1 extra entries.  */
1308   if (dynsymcount >= 4)
1309     bucketcount = dynsymcount / 4;
1310   else if (dynsymcount > 0)
1311     bucketcount = dynsymcount;
1312   else
1313     bucketcount = 1;
1314   s = bfd_get_section_by_name (dynobj, ".hash");
1315   BFD_ASSERT (s != NULL);
1316   hashalloc = (dynsymcount + bucketcount - 1) * HASH_ENTRY_SIZE;
1317   s->contents = (bfd_byte *) bfd_alloc (dynobj, hashalloc);
1318   if (s->contents == NULL && dynsymcount > 0)
1319     {
1320       bfd_set_error (bfd_error_no_memory);
1321       return false;
1322     }
1323   memset (s->contents, 0, hashalloc);
1324   for (i = 0; i < bucketcount; i++)
1325     PUT_WORD (output_bfd, (bfd_vma) -1, s->contents + i * HASH_ENTRY_SIZE);
1326   s->_raw_size = bucketcount * HASH_ENTRY_SIZE;
1327
1328   sunos_hash_table (info)->bucketcount = bucketcount;
1329
1330   /* Scan all the symbols, place them in the dynamic symbol table, and
1331      build the dynamic hash table.  We reuse dynsymcount as a counter
1332      for the number of symbols we have added so far.  */
1333   sunos_hash_table (info)->dynsymcount = 0;
1334   sunos_link_hash_traverse (sunos_hash_table (info),
1335                             sunos_scan_dynamic_symbol,
1336                             (PTR) info);
1337   BFD_ASSERT (sunos_hash_table (info)->dynsymcount == dynsymcount);
1338
1339   /* The SunOS native linker seems to align the total size of the
1340      symbol strings to a multiple of 8.  I don't know if this is
1341      important, but it can't hurt much.  */
1342   s = bfd_get_section_by_name (dynobj, ".dynstr");
1343   BFD_ASSERT (s != NULL);
1344   if ((s->_raw_size & 7) != 0)
1345     {
1346       bfd_size_type add;
1347       bfd_byte *contents;
1348
1349       add = 8 - (s->_raw_size & 7);
1350       contents = (bfd_byte *) realloc (s->contents,
1351                                        (size_t) (s->_raw_size + add));
1352       if (contents == NULL)
1353         {
1354           bfd_set_error (bfd_error_no_memory);
1355           return false;
1356         }
1357       memset (contents + s->_raw_size, 0, (size_t) add);
1358       s->contents = contents;
1359       s->_raw_size += add;
1360     }
1361
1362   /* Now that we have worked out the sizes of the procedure linkage
1363      table and the dynamic relocs, allocate storage for them.  */
1364   s = bfd_get_section_by_name (dynobj, ".plt");
1365   BFD_ASSERT (s != NULL);
1366   if (s->_raw_size != 0)
1367     {
1368       s->contents = (bfd_byte *) bfd_alloc (dynobj, s->_raw_size);
1369       if (s->contents == NULL)
1370         {
1371           bfd_set_error (bfd_error_no_memory);
1372           return false;
1373         }
1374
1375       /* Fill in the first entry in the table.  */
1376       switch (bfd_get_arch (dynobj))
1377         {
1378         case bfd_arch_sparc:
1379           memcpy (s->contents, sparc_plt_first_entry, SPARC_PLT_ENTRY_SIZE);
1380           break;
1381
1382         case bfd_arch_m68k:
1383           memcpy (s->contents, m68k_plt_first_entry, M68K_PLT_ENTRY_SIZE);
1384           break;
1385
1386         default:
1387           abort ();
1388         }
1389     }
1390
1391   s = bfd_get_section_by_name (dynobj, ".dynrel");
1392   if (s->_raw_size != 0)
1393     {
1394       s->contents = (bfd_byte *) bfd_alloc (dynobj, s->_raw_size);
1395       if (s->contents == NULL)
1396         {
1397           bfd_set_error (bfd_error_no_memory);
1398           return false;
1399         }
1400     }
1401   /* We use the reloc_count field to keep track of how many of the
1402      relocs we have output so far.  */
1403   s->reloc_count = 0;
1404
1405   /* Make space for the global offset table.  */
1406   s = bfd_get_section_by_name (dynobj, ".got");
1407   s->contents = (bfd_byte *) bfd_alloc (dynobj, s->_raw_size);
1408   if (s->contents == NULL)
1409     {
1410       bfd_set_error (bfd_error_no_memory);
1411       return false;
1412     }
1413
1414   *sdynptr = bfd_get_section_by_name (dynobj, ".dynamic");
1415   *sneedptr = bfd_get_section_by_name (dynobj, ".need");
1416   *srulesptr = bfd_get_section_by_name (dynobj, ".rules");
1417
1418   return true;
1419 }
1420
1421 /* Scan the relocs for an input section.  */
1422
1423 static boolean
1424 sunos_scan_relocs (info, abfd, sec, rel_size)
1425      struct bfd_link_info *info;
1426      bfd *abfd;
1427      asection *sec;
1428      bfd_size_type rel_size;
1429 {
1430   PTR relocs;
1431   PTR free_relocs = NULL;
1432
1433   if (rel_size == 0)
1434     return true;
1435
1436   if (! info->keep_memory)
1437     relocs = free_relocs = malloc ((size_t) rel_size);
1438   else
1439     {
1440       struct aout_section_data_struct *n;
1441
1442       n = ((struct aout_section_data_struct *)
1443            bfd_alloc (abfd, sizeof (struct aout_section_data_struct)));
1444       if (n == NULL)
1445         relocs = NULL;
1446       else
1447         {
1448           set_aout_section_data (sec, n);
1449           relocs = malloc ((size_t) rel_size);
1450           aout_section_data (sec)->relocs = relocs;
1451         }
1452     }
1453   if (relocs == NULL)
1454     {
1455       bfd_set_error (bfd_error_no_memory);
1456       return false;
1457     }
1458
1459   if (bfd_seek (abfd, sec->rel_filepos, SEEK_SET) != 0
1460       || bfd_read (relocs, 1, rel_size, abfd) != rel_size)
1461     goto error_return;
1462
1463   if (obj_reloc_entry_size (abfd) == RELOC_STD_SIZE)
1464     {
1465       if (! sunos_scan_std_relocs (info, abfd, sec,
1466                                    (struct reloc_std_external *) relocs,
1467                                    rel_size))
1468         goto error_return;
1469     }
1470   else
1471     {
1472       if (! sunos_scan_ext_relocs (info, abfd, sec,
1473                                    (struct reloc_ext_external *) relocs,
1474                                    rel_size))
1475         goto error_return;
1476     }
1477
1478   if (free_relocs != NULL)
1479     free (free_relocs);
1480
1481   return true;
1482
1483  error_return:
1484   if (free_relocs != NULL)
1485     free (free_relocs);
1486   return false;
1487 }
1488
1489 /* Scan the relocs for an input section using standard relocs.  We
1490    need to figure out what to do for each reloc against a dynamic
1491    symbol.  If the symbol is in the .text section, an entry is made in
1492    the procedure linkage table.  Note that this will do the wrong
1493    thing if the symbol is actually data; I don't think the Sun 3
1494    native linker handles this case correctly either.  If the symbol is
1495    not in the .text section, we must preserve the reloc as a dynamic
1496    reloc.  FIXME: We should also handle the PIC relocs here by
1497    building global offset table entries.  */
1498
1499 static boolean
1500 sunos_scan_std_relocs (info, abfd, sec, relocs, rel_size)
1501      struct bfd_link_info *info;
1502      bfd *abfd;
1503      asection *sec;
1504      const struct reloc_std_external *relocs;
1505      bfd_size_type rel_size;
1506 {
1507   bfd *dynobj;
1508   asection *splt = NULL;
1509   asection *srel = NULL;
1510   struct sunos_link_hash_entry **sym_hashes;
1511   const struct reloc_std_external *rel, *relend;
1512
1513   /* We only know how to handle m68k plt entries.  */
1514   if (bfd_get_arch (abfd) != bfd_arch_m68k)
1515     {
1516       bfd_set_error (bfd_error_invalid_target);
1517       return false;
1518     }
1519
1520   dynobj = NULL;
1521
1522   sym_hashes = (struct sunos_link_hash_entry **) obj_aout_sym_hashes (abfd);
1523
1524   relend = relocs + rel_size / RELOC_STD_SIZE;
1525   for (rel = relocs; rel < relend; rel++)
1526     {
1527       int r_index;
1528       struct sunos_link_hash_entry *h;
1529
1530       /* We only want relocs against external symbols.  */
1531       if (abfd->xvec->header_byteorder_big_p)
1532         {
1533           if ((rel->r_type[0] & RELOC_STD_BITS_EXTERN_BIG) == 0)
1534             continue;
1535         }
1536       else
1537         {
1538           if ((rel->r_type[0] & RELOC_STD_BITS_EXTERN_LITTLE) == 0)
1539             continue;
1540         }
1541
1542       /* Get the symbol index.  */
1543       if (abfd->xvec->header_byteorder_big_p)
1544         r_index = ((rel->r_index[0] << 16)
1545                    | (rel->r_index[1] << 8)
1546                    | rel->r_index[2]);
1547       else
1548         r_index = ((rel->r_index[2] << 16)
1549                    | (rel->r_index[1] << 8)
1550                    | rel->r_index[0]);
1551
1552       /* Get the hash table entry.  */
1553       h = sym_hashes[r_index];
1554       if (h == NULL)
1555         {
1556           /* This should not normally happen, but it will in any case
1557              be caught in the relocation phase.  */
1558           continue;
1559         }
1560
1561       /* At this point common symbols have already been allocated, so
1562          we don't have to worry about them.  We need to consider that
1563          we may have already seen this symbol and marked it undefined;
1564          if the symbol is really undefined, then SUNOS_DEF_DYNAMIC
1565          will be zero.  */
1566       if (h->root.root.type != bfd_link_hash_defined
1567           && h->root.root.type != bfd_link_hash_defweak
1568           && h->root.root.type != bfd_link_hash_undefined)
1569         continue;
1570
1571       if ((h->flags & SUNOS_DEF_DYNAMIC) == 0
1572           || (h->flags & SUNOS_DEF_REGULAR) != 0)
1573         continue;
1574
1575       if (dynobj == NULL)
1576         {
1577           if (! sunos_create_dynamic_sections (abfd, info, true))
1578             return false;
1579           dynobj = sunos_hash_table (info)->dynobj;
1580           splt = bfd_get_section_by_name (dynobj, ".plt");
1581           srel = bfd_get_section_by_name (dynobj, ".dynrel");
1582           BFD_ASSERT (splt != NULL && srel != NULL);
1583         }
1584
1585       BFD_ASSERT ((h->flags & SUNOS_REF_REGULAR) != 0);
1586       BFD_ASSERT (h->plt_offset != 0
1587                   || ((h->root.root.type == bfd_link_hash_defined
1588                        || h->root.root.type == bfd_link_hash_defweak)
1589                       ? (h->root.root.u.def.section->owner->flags
1590                          & DYNAMIC) != 0
1591                       : (h->root.root.u.undef.abfd->flags & DYNAMIC) != 0));
1592
1593       /* This reloc is against a symbol defined only by a dynamic
1594          object.  */
1595
1596       if (h->root.root.type == bfd_link_hash_undefined)
1597         {
1598           /* Presumably this symbol was marked as being undefined by
1599              an earlier reloc.  */
1600           srel->_raw_size += RELOC_STD_SIZE;
1601         }
1602       else if ((h->root.root.u.def.section->flags & SEC_CODE) == 0)
1603         {
1604           bfd *sub;
1605
1606           /* This reloc is not in the .text section.  It must be
1607              copied into the dynamic relocs.  We mark the symbol as
1608              being undefined.  */
1609           srel->_raw_size += RELOC_STD_SIZE;
1610           sub = h->root.root.u.def.section->owner;
1611           h->root.root.type = bfd_link_hash_undefined;
1612           h->root.root.u.undef.abfd = sub;
1613         }
1614       else
1615         {
1616           /* This symbol is in the .text section.  We must give it an
1617              entry in the procedure linkage table, if we have not
1618              already done so.  We change the definition of the symbol
1619              to the .plt section; this will cause relocs against it to
1620              be handled correctly.  */
1621           if (h->plt_offset == 0)
1622             {
1623               if (splt->_raw_size == 0)
1624                 splt->_raw_size = M68K_PLT_ENTRY_SIZE;
1625               h->plt_offset = splt->_raw_size;
1626
1627               if ((h->flags & SUNOS_DEF_REGULAR) == 0)
1628                 {
1629                   h->root.root.u.def.section = splt;
1630                   h->root.root.u.def.value = splt->_raw_size;
1631                 }
1632
1633               splt->_raw_size += M68K_PLT_ENTRY_SIZE;
1634
1635               /* We may also need a dynamic reloc entry.  */
1636               if ((h->flags & SUNOS_DEF_REGULAR) == 0)
1637                 srel->_raw_size += RELOC_STD_SIZE;
1638             }
1639         }
1640     }
1641
1642   return true;
1643 }
1644
1645 /* Scan the relocs for an input section using extended relocs.  We
1646    need to figure out what to do for each reloc against a dynamic
1647    symbol.  If the reloc is a WDISP30, and the symbol is in the .text
1648    section, an entry is made in the procedure linkage table.
1649    Otherwise, we must preserve the reloc as a dynamic reloc.  */
1650
1651 static boolean
1652 sunos_scan_ext_relocs (info, abfd, sec, relocs, rel_size)
1653      struct bfd_link_info *info;
1654      bfd *abfd;
1655      asection *sec;
1656      const struct reloc_ext_external *relocs;
1657      bfd_size_type rel_size;
1658 {
1659   bfd *dynobj;
1660   struct sunos_link_hash_entry **sym_hashes;
1661   const struct reloc_ext_external *rel, *relend;
1662   asection *splt = NULL;
1663   asection *sgot = NULL;
1664   asection *srel = NULL;
1665
1666   /* We only know how to handle SPARC plt entries.  */
1667   if (bfd_get_arch (abfd) != bfd_arch_sparc)
1668     {
1669       bfd_set_error (bfd_error_invalid_target);
1670       return false;
1671     }
1672
1673   dynobj = NULL;
1674
1675   sym_hashes = (struct sunos_link_hash_entry **) obj_aout_sym_hashes (abfd);
1676
1677   relend = relocs + rel_size / RELOC_EXT_SIZE;
1678   for (rel = relocs; rel < relend; rel++)
1679     {
1680       unsigned int r_index;
1681       int r_extern;
1682       int r_type;
1683       struct sunos_link_hash_entry *h = NULL;
1684
1685       /* Swap in the reloc information.  */
1686       if (abfd->xvec->header_byteorder_big_p)
1687         {
1688           r_index = ((rel->r_index[0] << 16)
1689                      | (rel->r_index[1] << 8)
1690                      | rel->r_index[2]);
1691           r_extern = (0 != (rel->r_type[0] & RELOC_EXT_BITS_EXTERN_BIG));
1692           r_type = ((rel->r_type[0] & RELOC_EXT_BITS_TYPE_BIG)
1693                     >> RELOC_EXT_BITS_TYPE_SH_BIG);
1694         }
1695       else
1696         {
1697           r_index = ((rel->r_index[2] << 16)
1698                      | (rel->r_index[1] << 8)
1699                      | rel->r_index[0]);
1700           r_extern = (0 != (rel->r_type[0] & RELOC_EXT_BITS_EXTERN_LITTLE));
1701           r_type = ((rel->r_type[0] & RELOC_EXT_BITS_TYPE_LITTLE)
1702                     >> RELOC_EXT_BITS_TYPE_SH_LITTLE);
1703         }
1704
1705       if (r_extern)
1706         {
1707           h = sym_hashes[r_index];
1708           if (h == NULL)
1709             {
1710               /* This should not normally happen, but it will in any
1711                  case be caught in the relocation phase.  */
1712               continue;
1713             }
1714         }
1715
1716       /* If this is a base relative reloc, we need to make an entry in
1717          the .got section.  */
1718       if (r_type == RELOC_BASE10
1719           || r_type == RELOC_BASE13
1720           || r_type == RELOC_BASE22)
1721         {
1722           if (dynobj == NULL)
1723             {
1724               if (! sunos_create_dynamic_sections (abfd, info, true))
1725                 return false;
1726               dynobj = sunos_hash_table (info)->dynobj;
1727               splt = bfd_get_section_by_name (dynobj, ".plt");
1728               sgot = bfd_get_section_by_name (dynobj, ".got");
1729               srel = bfd_get_section_by_name (dynobj, ".dynrel");
1730               BFD_ASSERT (splt != NULL && sgot != NULL && srel != NULL);
1731             }
1732
1733           if (r_extern)
1734             {
1735               if (h->got_offset != 0)
1736                 continue;
1737
1738               h->got_offset = sgot->_raw_size;
1739             }
1740           else
1741             {
1742               if (r_index >= bfd_get_symcount (abfd))
1743                 {
1744                   /* This is abnormal, but should be caught in the
1745                      relocation phase.  */
1746                   continue;
1747                 }
1748
1749               if (adata (abfd).local_got_offsets == NULL)
1750                 {
1751                   adata (abfd).local_got_offsets =
1752                     (bfd_vma *) bfd_zalloc (abfd,
1753                                             (bfd_get_symcount (abfd)
1754                                              * sizeof (bfd_vma)));
1755                   if (adata (abfd).local_got_offsets == NULL)
1756                     {
1757                       bfd_set_error (bfd_error_no_memory);
1758                       return false;
1759                     }
1760                 }
1761
1762               if (adata (abfd).local_got_offsets[r_index] != 0)
1763                 continue;
1764
1765               adata (abfd).local_got_offsets[r_index] = sgot->_raw_size;
1766             }
1767
1768           sgot->_raw_size += BYTES_IN_WORD;
1769
1770           /* If we are making a shared library, or if the symbol is
1771              defined by a dynamic object, we will need a dynamic reloc
1772              entry.  */
1773           if (info->shared
1774               || (h != NULL
1775                   && (h->flags & SUNOS_DEF_DYNAMIC) != 0
1776                   && (h->flags & SUNOS_DEF_REGULAR) == 0))
1777             srel->_raw_size += RELOC_EXT_SIZE;
1778
1779           continue;
1780         }
1781
1782       /* Otherwise, we are only interested in relocs against symbols
1783          defined in dynamic objects but not in regular objects.  We
1784          only need to consider relocs against external symbols.  */
1785       if (! r_extern)
1786         {
1787           /* But, if we are creating a shared library, we need to
1788              generate an absolute reloc.  */
1789           if (info->shared)
1790             {
1791               if (dynobj == NULL)
1792                 {
1793                   if (! sunos_create_dynamic_sections (abfd, info, true))
1794                     return false;
1795                   dynobj = sunos_hash_table (info)->dynobj;
1796                   splt = bfd_get_section_by_name (dynobj, ".plt");
1797                   sgot = bfd_get_section_by_name (dynobj, ".got");
1798                   srel = bfd_get_section_by_name (dynobj, ".dynrel");
1799                   BFD_ASSERT (splt != NULL && sgot != NULL && srel != NULL);
1800                 }
1801
1802               srel->_raw_size += RELOC_EXT_SIZE;
1803             }
1804
1805           continue;
1806         }
1807
1808       /* At this point common symbols have already been allocated, so
1809          we don't have to worry about them.  We need to consider that
1810          we may have already seen this symbol and marked it undefined;
1811          if the symbol is really undefined, then SUNOS_DEF_DYNAMIC
1812          will be zero.  */
1813       if (h->root.root.type != bfd_link_hash_defined
1814           && h->root.root.type != bfd_link_hash_defweak
1815           && h->root.root.type != bfd_link_hash_undefined)
1816         continue;
1817
1818       if (r_type != RELOC_JMP_TBL
1819           && ! info->shared
1820           && ((h->flags & SUNOS_DEF_DYNAMIC) == 0
1821               || (h->flags & SUNOS_DEF_REGULAR) != 0))
1822         continue;
1823
1824       if (strcmp (h->root.root.root.string, "__GLOBAL_OFFSET_TABLE_") == 0)
1825         continue;
1826
1827       if (dynobj == NULL)
1828         {
1829           if (! sunos_create_dynamic_sections (abfd, info, true))
1830             return false;
1831           dynobj = sunos_hash_table (info)->dynobj;
1832           splt = bfd_get_section_by_name (dynobj, ".plt");
1833           sgot = bfd_get_section_by_name (dynobj, ".got");
1834           srel = bfd_get_section_by_name (dynobj, ".dynrel");
1835           BFD_ASSERT (splt != NULL && sgot != NULL && srel != NULL);
1836         }
1837
1838       BFD_ASSERT (r_type == RELOC_JMP_TBL
1839                   || (h->flags & SUNOS_REF_REGULAR) != 0);
1840       BFD_ASSERT (r_type == RELOC_JMP_TBL
1841                   || info->shared
1842                   || h->plt_offset != 0
1843                   || ((h->root.root.type == bfd_link_hash_defined
1844                        || h->root.root.type == bfd_link_hash_defweak)
1845                       ? (h->root.root.u.def.section->owner->flags
1846                          & DYNAMIC) != 0
1847                       : (h->root.root.u.undef.abfd->flags & DYNAMIC) != 0));
1848
1849       /* This reloc is against a symbol defined only by a dynamic
1850          object, or it is a jump table reloc from PIC compiled code.  */
1851
1852       if (r_type != RELOC_JMP_TBL
1853           && h->root.root.type == bfd_link_hash_undefined)
1854         {
1855           /* Presumably this symbol was marked as being undefined by
1856              an earlier reloc.  */
1857           srel->_raw_size += RELOC_EXT_SIZE;
1858         }
1859       else if (r_type != RELOC_JMP_TBL
1860                && (h->root.root.u.def.section->flags & SEC_CODE) == 0)
1861         {
1862           bfd *sub;
1863
1864           /* This reloc is not in the .text section.  It must be
1865              copied into the dynamic relocs.  We mark the symbol as
1866              being undefined.  */
1867           srel->_raw_size += RELOC_EXT_SIZE;
1868           if ((h->flags & SUNOS_DEF_REGULAR) == 0)
1869             {
1870               sub = h->root.root.u.def.section->owner;
1871               h->root.root.type = bfd_link_hash_undefined;
1872               h->root.root.u.undef.abfd = sub;
1873             }
1874         }
1875       else
1876         {
1877           /* This symbol is in the .text section.  We must give it an
1878              entry in the procedure linkage table, if we have not
1879              already done so.  We change the definition of the symbol
1880              to the .plt section; this will cause relocs against it to
1881              be handled correctly.  */
1882           if (h->plt_offset == 0)
1883             {
1884               if (splt->_raw_size == 0)
1885                 splt->_raw_size = SPARC_PLT_ENTRY_SIZE;
1886               h->plt_offset = splt->_raw_size;
1887
1888               if ((h->flags & SUNOS_DEF_REGULAR) == 0)
1889                 {
1890                   if (h->root.root.type == bfd_link_hash_undefined)
1891                     h->root.root.type = bfd_link_hash_defined;
1892                   h->root.root.u.def.section = splt;
1893                   h->root.root.u.def.value = splt->_raw_size;
1894                 }
1895
1896               splt->_raw_size += SPARC_PLT_ENTRY_SIZE;
1897
1898               /* We will also need a dynamic reloc entry, unless this
1899                  is a JMP_TBL reloc produced by linking PIC compiled
1900                  code, and we are not making a shared library.  */
1901               if (info->shared || (h->flags & SUNOS_DEF_REGULAR) == 0)
1902                 srel->_raw_size += RELOC_EXT_SIZE;
1903             }
1904
1905           /* If we are creating a shared library, we need to copy over
1906              any reloc other than a jump table reloc.  */
1907           if (info->shared && r_type != RELOC_JMP_TBL)
1908             srel->_raw_size += RELOC_EXT_SIZE;
1909         }
1910     }
1911
1912   return true;
1913 }
1914
1915 /* Build the hash table of dynamic symbols, and to mark as written all
1916    symbols from dynamic objects which we do not plan to write out.  */
1917
1918 static boolean
1919 sunos_scan_dynamic_symbol (h, data)
1920      struct sunos_link_hash_entry *h;
1921      PTR data;
1922 {
1923   struct bfd_link_info *info = (struct bfd_link_info *) data;
1924
1925   /* Set the written flag for symbols we do not want to write out as
1926      part of the regular symbol table.  This is all symbols which are
1927      not defined in a regular object file.  For some reason symbols
1928      which are referenced by a regular object and defined by a dynamic
1929      object do not seem to show up in the regular symbol table.  It is
1930      possible for a symbol to have only SUNOS_REF_REGULAR set here, it
1931      is an undefined symbol which was turned into a common symbol
1932      because it was found in an archive object which was not included
1933      in the link.  */
1934   if ((h->flags & SUNOS_DEF_REGULAR) == 0
1935       && (h->flags & SUNOS_DEF_DYNAMIC) != 0
1936       && strcmp (h->root.root.root.string, "__DYNAMIC") != 0)
1937     h->root.written = true;
1938
1939   /* If this symbol is defined by a dynamic object and referenced by a
1940      regular object, see whether we gave it a reasonable value while
1941      scanning the relocs.  */
1942
1943   if ((h->flags & SUNOS_DEF_REGULAR) == 0
1944       && (h->flags & SUNOS_DEF_DYNAMIC) != 0
1945       && (h->flags & SUNOS_REF_REGULAR) != 0)
1946     {
1947       if ((h->root.root.type == bfd_link_hash_defined
1948            || h->root.root.type == bfd_link_hash_defweak)
1949           && ((h->root.root.u.def.section->owner->flags & DYNAMIC) != 0)
1950           && h->root.root.u.def.section->output_section == NULL)
1951         {
1952           bfd *sub;
1953
1954           /* This symbol is currently defined in a dynamic section
1955              which is not being put into the output file.  This
1956              implies that there is no reloc against the symbol.  I'm
1957              not sure why this case would ever occur.  In any case, we
1958              change the symbol to be undefined.  */
1959           sub = h->root.root.u.def.section->owner;
1960           h->root.root.type = bfd_link_hash_undefined;
1961           h->root.root.u.undef.abfd = sub;
1962         }
1963     }
1964
1965   /* If this symbol is defined or referenced by a regular file, add it
1966      to the dynamic symbols.  */
1967   if ((h->flags & (SUNOS_DEF_REGULAR | SUNOS_REF_REGULAR)) != 0)
1968     {
1969       asection *s;
1970       size_t len;
1971       bfd_byte *contents;
1972       unsigned char *name;
1973       unsigned long hash;
1974       bfd *dynobj;
1975
1976       BFD_ASSERT (h->dynindx == -2);
1977
1978       dynobj = sunos_hash_table (info)->dynobj;
1979
1980       h->dynindx = sunos_hash_table (info)->dynsymcount;
1981       ++sunos_hash_table (info)->dynsymcount;
1982
1983       len = strlen (h->root.root.root.string);
1984
1985       /* We don't bother to construct a BFD hash table for the strings
1986          which are the names of the dynamic symbols.  Using a hash
1987          table for the regular symbols is beneficial, because the
1988          regular symbols includes the debugging symbols, which have
1989          long names and are often duplicated in several object files.
1990          There are no debugging symbols in the dynamic symbols.  */
1991       s = bfd_get_section_by_name (dynobj, ".dynstr");
1992       BFD_ASSERT (s != NULL);
1993       if (s->contents == NULL)
1994         contents = (bfd_byte *) malloc (len + 1);
1995       else
1996         contents = (bfd_byte *) realloc (s->contents,
1997                                          (size_t) (s->_raw_size + len + 1));
1998       if (contents == NULL)
1999         {
2000           bfd_set_error (bfd_error_no_memory);
2001           return false;
2002         }
2003       s->contents = contents;
2004
2005       h->dynstr_index = s->_raw_size;
2006       strcpy (contents + s->_raw_size, h->root.root.root.string);
2007       s->_raw_size += len + 1;
2008
2009       /* Add it to the dynamic hash table.  */
2010       name = (unsigned char *) h->root.root.root.string;
2011       hash = 0;
2012       while (*name != '\0')
2013         hash = (hash << 1) + *name++;
2014       hash &= 0x7fffffff;
2015       hash %= sunos_hash_table (info)->bucketcount;
2016
2017       s = bfd_get_section_by_name (dynobj, ".hash");
2018       BFD_ASSERT (s != NULL);
2019
2020       if (GET_SWORD (dynobj, s->contents + hash * HASH_ENTRY_SIZE) == -1)
2021         PUT_WORD (dynobj, h->dynindx, s->contents + hash * HASH_ENTRY_SIZE);
2022       else
2023         {
2024           bfd_vma next;
2025
2026           next = GET_WORD (dynobj,
2027                            (s->contents
2028                             + hash * HASH_ENTRY_SIZE
2029                             + BYTES_IN_WORD));
2030           PUT_WORD (dynobj, s->_raw_size / HASH_ENTRY_SIZE,
2031                     s->contents + hash * HASH_ENTRY_SIZE + BYTES_IN_WORD);
2032           PUT_WORD (dynobj, h->dynindx, s->contents + s->_raw_size);
2033           PUT_WORD (dynobj, next, s->contents + s->_raw_size + BYTES_IN_WORD);
2034           s->_raw_size += HASH_ENTRY_SIZE;
2035         }
2036     }
2037
2038   return true;
2039 }
2040
2041 /* Link a dynamic object.  We actually don't have anything to do at
2042    this point.  This entry point exists to prevent the regular linker
2043    code from doing anything with the object.  */
2044
2045 /*ARGSUSED*/
2046 static boolean
2047 sunos_link_dynamic_object (info, abfd)
2048      struct bfd_link_info *info;
2049      bfd *abfd;
2050 {
2051   return true;
2052 }
2053
2054 /* Write out a dynamic symbol.  This is called by the final traversal
2055    over the symbol table.  */
2056
2057 static boolean
2058 sunos_write_dynamic_symbol (output_bfd, info, harg)
2059      bfd *output_bfd;
2060      struct bfd_link_info *info;
2061      struct aout_link_hash_entry *harg;
2062 {
2063   struct sunos_link_hash_entry *h = (struct sunos_link_hash_entry *) harg;
2064   int type;
2065   bfd_vma val;
2066   asection *s;
2067   struct external_nlist *outsym;
2068
2069   if (h->dynindx < 0)
2070     return true;
2071
2072   switch (h->root.root.type)
2073     {
2074     default:
2075     case bfd_link_hash_new:
2076       abort ();
2077       /* Avoid variable not initialized warnings.  */
2078       return true;
2079     case bfd_link_hash_undefined:
2080       type = N_UNDF | N_EXT;
2081       val = 0;
2082       break;
2083     case bfd_link_hash_defined:
2084     case bfd_link_hash_defweak:
2085       {
2086         asection *sec;
2087         asection *output_section;
2088
2089         sec = h->root.root.u.def.section;
2090         output_section = sec->output_section;
2091         BFD_ASSERT (bfd_is_abs_section (output_section)
2092                     || output_section->owner == output_bfd);
2093         if (h->plt_offset != 0
2094             && (h->flags & SUNOS_DEF_REGULAR) == 0)
2095           {
2096             type = N_UNDF | N_EXT;
2097             val = 0;
2098           }
2099         else
2100           {
2101             if (output_section == obj_textsec (output_bfd))
2102               type = (h->root.root.type == bfd_link_hash_defined
2103                       ? N_TEXT
2104                       : N_WEAKT);
2105             else if (output_section == obj_datasec (output_bfd))
2106               type = (h->root.root.type == bfd_link_hash_defined
2107                       ? N_DATA
2108                       : N_WEAKD);
2109             else if (output_section == obj_bsssec (output_bfd))
2110               type = (h->root.root.type == bfd_link_hash_defined
2111                       ? N_BSS
2112                       : N_WEAKB);
2113             else
2114               type = (h->root.root.type == bfd_link_hash_defined
2115                       ? N_ABS
2116                       : N_WEAKA);
2117             type |= N_EXT;
2118             val = (h->root.root.u.def.value
2119                    + output_section->vma
2120                    + sec->output_offset);
2121           }
2122       }
2123       break;
2124     case bfd_link_hash_common:
2125       type = N_UNDF | N_EXT;
2126       val = h->root.root.u.c.size;
2127       break;
2128     case bfd_link_hash_undefweak:
2129       type = N_WEAKU;
2130       val = 0;
2131       break;
2132     case bfd_link_hash_indirect:
2133     case bfd_link_hash_warning:
2134       /* FIXME: Ignore these for now.  The circumstances under which
2135          they should be written out are not clear to me.  */
2136       return true;
2137     }
2138
2139   s = bfd_get_section_by_name (sunos_hash_table (info)->dynobj, ".dynsym");
2140   BFD_ASSERT (s != NULL);
2141   outsym = ((struct external_nlist *)
2142             (s->contents + h->dynindx * EXTERNAL_NLIST_SIZE));
2143
2144   bfd_h_put_8 (output_bfd, type, outsym->e_type);
2145   bfd_h_put_8 (output_bfd, 0, outsym->e_other);
2146
2147   /* FIXME: The native linker doesn't use 0 for desc.  It seems to use
2148      one less than the desc value in the shared library, although that
2149      seems unlikely.  */
2150   bfd_h_put_16 (output_bfd, 0, outsym->e_desc);
2151
2152   PUT_WORD (output_bfd, h->dynstr_index, outsym->e_strx);
2153   PUT_WORD (output_bfd, val, outsym->e_value);
2154
2155   /* If this symbol is in the procedure linkage table, fill in the
2156      table entry.  */
2157   if (h->plt_offset != 0)
2158     {
2159       bfd *dynobj;
2160       asection *splt;
2161       bfd_byte *p;
2162       asection *s;
2163       bfd_vma r_address;
2164
2165       dynobj = sunos_hash_table (info)->dynobj;
2166       splt = bfd_get_section_by_name (dynobj, ".plt");
2167       p = splt->contents + h->plt_offset;
2168
2169       s = bfd_get_section_by_name (dynobj, ".dynrel");
2170
2171       r_address = (splt->output_section->vma
2172                    + splt->output_offset
2173                    + h->plt_offset);
2174
2175       switch (bfd_get_arch (output_bfd))
2176         {
2177         case bfd_arch_sparc:
2178           if (info->shared || (h->flags & SUNOS_DEF_REGULAR) == 0)
2179             {
2180               bfd_put_32 (output_bfd, SPARC_PLT_ENTRY_WORD0, p);
2181               bfd_put_32 (output_bfd,
2182                           (SPARC_PLT_ENTRY_WORD1
2183                            + (((- (h->plt_offset + 4) >> 2)
2184                                & 0x3fffffff))),
2185                           p + 4);
2186               bfd_put_32 (output_bfd, SPARC_PLT_ENTRY_WORD2 + s->reloc_count,
2187                           p + 8);
2188             }
2189           else
2190             {
2191               bfd_vma val;
2192
2193               val = (h->root.root.u.def.section->output_section->vma
2194                      + h->root.root.u.def.section->output_offset
2195                      + h->root.root.u.def.value);
2196               bfd_put_32 (output_bfd,
2197                           SPARC_PLT_PIC_WORD0 + ((val >> 10) & 0x3fffff),
2198                           p);
2199               bfd_put_32 (output_bfd,
2200                           SPARC_PLT_PIC_WORD1 + (val & 0x3ff),
2201                           p + 4);
2202               bfd_put_32 (output_bfd, SPARC_PLT_PIC_WORD2, p + 8);
2203             }
2204           break;
2205
2206         case bfd_arch_m68k:
2207           if (! info->shared && (h->flags & SUNOS_DEF_REGULAR) != 0)
2208             abort ();
2209           bfd_put_16 (output_bfd, M68K_PLT_ENTRY_WORD0, p);
2210           bfd_put_32 (output_bfd, (- (h->plt_offset + 2)), p + 2);
2211           bfd_put_16 (output_bfd, s->reloc_count, p + 6);
2212           r_address += 2;
2213           break;
2214
2215         default:
2216           abort ();
2217         }
2218
2219       /* We also need to add a jump table reloc, unless this is the
2220          result of a JMP_TBL reloc from PIC compiled code.  */
2221       if (info->shared || (h->flags & SUNOS_DEF_REGULAR) == 0)
2222         {
2223           BFD_ASSERT (s->reloc_count * obj_reloc_entry_size (dynobj)
2224                       < s->_raw_size);
2225           p = s->contents + s->reloc_count * obj_reloc_entry_size (output_bfd);
2226           if (obj_reloc_entry_size (output_bfd) == RELOC_STD_SIZE)
2227             {
2228               struct reloc_std_external *srel;
2229
2230               srel = (struct reloc_std_external *) p;
2231               PUT_WORD (output_bfd, r_address, srel->r_address);
2232               if (output_bfd->xvec->header_byteorder_big_p)
2233                 {
2234                   srel->r_index[0] = h->dynindx >> 16;
2235                   srel->r_index[1] = h->dynindx >> 8;
2236                   srel->r_index[2] = h->dynindx;
2237                   srel->r_type[0] = (RELOC_STD_BITS_EXTERN_BIG
2238                                      | RELOC_STD_BITS_JMPTABLE_BIG);
2239                 }
2240               else
2241                 {
2242                   srel->r_index[2] = h->dynindx >> 16;
2243                   srel->r_index[1] = h->dynindx >> 8;
2244                   srel->r_index[0] = h->dynindx;
2245                   srel->r_type[0] = (RELOC_STD_BITS_EXTERN_LITTLE
2246                                      | RELOC_STD_BITS_JMPTABLE_LITTLE);
2247                 }
2248             }
2249           else
2250             {
2251               struct reloc_ext_external *erel;
2252
2253               erel = (struct reloc_ext_external *) p;
2254               PUT_WORD (output_bfd, r_address, erel->r_address);
2255               if (output_bfd->xvec->header_byteorder_big_p)
2256                 {
2257                   erel->r_index[0] = h->dynindx >> 16;
2258                   erel->r_index[1] = h->dynindx >> 8;
2259                   erel->r_index[2] = h->dynindx;
2260                   erel->r_type[0] =
2261                     (RELOC_EXT_BITS_EXTERN_BIG
2262                      | (RELOC_JMP_SLOT << RELOC_EXT_BITS_TYPE_SH_BIG));
2263                 }
2264               else
2265                 {
2266                   erel->r_index[2] = h->dynindx >> 16;
2267                   erel->r_index[1] = h->dynindx >> 8;
2268                   erel->r_index[0] = h->dynindx;
2269                   erel->r_type[0] =
2270                     (RELOC_EXT_BITS_EXTERN_LITTLE
2271                      | (RELOC_JMP_SLOT << RELOC_EXT_BITS_TYPE_SH_LITTLE));
2272                 }
2273               PUT_WORD (output_bfd, (bfd_vma) 0, erel->r_addend);
2274             }
2275
2276           ++s->reloc_count;
2277         }
2278     }
2279
2280   return true;
2281 }
2282
2283 /* This is called for each reloc against an external symbol.  If this
2284    is a reloc which are are going to copy as a dynamic reloc, then
2285    copy it over, and tell the caller to not bother processing this
2286    reloc.  */
2287
2288 /*ARGSUSED*/
2289 static boolean
2290 sunos_check_dynamic_reloc (info, input_bfd, input_section, harg, reloc,
2291                            contents, skip, relocationp)
2292      struct bfd_link_info *info;
2293      bfd *input_bfd;
2294      asection *input_section;
2295      struct aout_link_hash_entry *harg;
2296      PTR reloc;
2297      bfd_byte *contents;
2298      boolean *skip;
2299      bfd_vma *relocationp;
2300 {
2301   struct sunos_link_hash_entry *h = (struct sunos_link_hash_entry *) harg;
2302   bfd *dynobj;
2303   boolean baserel;
2304   boolean jmptbl;
2305   asection *s;
2306   bfd_byte *p;
2307   long indx;
2308
2309   *skip = false;
2310
2311   dynobj = sunos_hash_table (info)->dynobj;
2312
2313   if (h != NULL && h->plt_offset != 0)
2314     {
2315       asection *splt;
2316
2317       /* Redirect the relocation to the PLT entry.  */
2318       splt = bfd_get_section_by_name (dynobj, ".plt");
2319       *relocationp = (splt->output_section->vma
2320                       + splt->output_offset
2321                       + h->plt_offset);
2322     }
2323
2324   if (obj_reloc_entry_size (input_bfd) == RELOC_STD_SIZE)
2325     {
2326       struct reloc_std_external *srel;
2327
2328       srel = (struct reloc_std_external *) reloc;
2329       if (input_bfd->xvec->header_byteorder_big_p)
2330         {
2331           baserel = (0 != (srel->r_type[0] & RELOC_STD_BITS_BASEREL_BIG));
2332           jmptbl = (0 != (srel->r_type[0] & RELOC_STD_BITS_JMPTABLE_BIG));
2333         }
2334       else
2335         {
2336           baserel = (0 != (srel->r_type[0] & RELOC_STD_BITS_BASEREL_LITTLE));
2337           jmptbl = (0 != (srel->r_type[0] & RELOC_STD_BITS_JMPTABLE_LITTLE));
2338         }
2339     }
2340   else
2341     {
2342       struct reloc_ext_external *erel;
2343       int r_type;
2344
2345       erel = (struct reloc_ext_external *) reloc;
2346       if (input_bfd->xvec->header_byteorder_big_p)
2347         r_type = ((erel->r_type[0] & RELOC_EXT_BITS_TYPE_BIG)
2348                   >> RELOC_EXT_BITS_TYPE_SH_BIG);
2349       else
2350         r_type = ((erel->r_type[0] & RELOC_EXT_BITS_TYPE_LITTLE)
2351                   >> RELOC_EXT_BITS_TYPE_SH_LITTLE);
2352       baserel = (r_type == RELOC_BASE10
2353                  || r_type == RELOC_BASE13
2354                  || r_type == RELOC_BASE22);
2355       jmptbl = r_type == RELOC_JMP_TBL;
2356     }
2357
2358   if (baserel)
2359     {
2360       bfd_vma *got_offsetp;
2361       asection *sgot;
2362
2363       if (h != NULL)
2364         got_offsetp = &h->got_offset;
2365       else if (adata (input_bfd).local_got_offsets == NULL)
2366         got_offsetp = NULL;
2367       else
2368         {
2369           struct reloc_std_external *srel;
2370           int r_index;
2371
2372           srel = (struct reloc_std_external *) reloc;
2373           if (obj_reloc_entry_size (input_bfd) == RELOC_STD_SIZE)
2374             {
2375               if (input_bfd->xvec->header_byteorder_big_p)
2376                 r_index = ((srel->r_index[0] << 16)
2377                            | (srel->r_index[1] << 8)
2378                            | srel->r_index[2]);
2379               else
2380                 r_index = ((srel->r_index[2] << 16)
2381                            | (srel->r_index[1] << 8)
2382                            | srel->r_index[0]);
2383             }
2384           else
2385             {
2386               struct reloc_ext_external *erel;
2387
2388               erel = (struct reloc_ext_external *) reloc;
2389               if (input_bfd->xvec->header_byteorder_big_p)
2390                 r_index = ((erel->r_index[0] << 16)
2391                            | (erel->r_index[1] << 8)
2392                            | erel->r_index[2]);
2393               else
2394                 r_index = ((erel->r_index[2] << 16)
2395                            | (erel->r_index[1] << 8)
2396                            | erel->r_index[0]);
2397             }
2398
2399           got_offsetp = adata (input_bfd).local_got_offsets + r_index;
2400         }
2401
2402       BFD_ASSERT (got_offsetp != NULL && *got_offsetp != 0);
2403
2404       sgot = bfd_get_section_by_name (dynobj, ".got");
2405
2406       /* We set the least significant bit to indicate whether we have
2407          already initialized the GOT entry.  */
2408       if ((*got_offsetp & 1) == 0)
2409         {
2410           if (h == NULL
2411               || (! info->shared
2412                   && ((h->flags & SUNOS_DEF_DYNAMIC) == 0
2413                       || (h->flags & SUNOS_DEF_REGULAR) != 0)))
2414             PUT_WORD (dynobj, *relocationp, sgot->contents + *got_offsetp);
2415           else
2416             PUT_WORD (dynobj, 0, sgot->contents + *got_offsetp);
2417
2418           if (info->shared
2419               || (h != NULL
2420                   && (h->flags & SUNOS_DEF_DYNAMIC) != 0
2421                   && (h->flags & SUNOS_DEF_REGULAR) == 0))
2422             {
2423               /* We need to create a GLOB_DAT or 32 reloc to tell the
2424                  dynamic linker to fill in this entry in the table.  */
2425
2426               s = bfd_get_section_by_name (dynobj, ".dynrel");
2427               BFD_ASSERT (s != NULL);
2428               BFD_ASSERT (s->reloc_count * obj_reloc_entry_size (dynobj)
2429                           < s->_raw_size);
2430
2431               p = (s->contents
2432                    + s->reloc_count * obj_reloc_entry_size (dynobj));
2433
2434               if (h != NULL)
2435                 indx = h->dynindx;
2436               else
2437                 indx = 0;
2438
2439               if (obj_reloc_entry_size (dynobj) == RELOC_STD_SIZE)
2440                 {
2441                   struct reloc_std_external *srel;
2442
2443                   srel = (struct reloc_std_external *) p;
2444                   PUT_WORD (dynobj,
2445                             (*got_offsetp
2446                              + sgot->output_section->vma
2447                              + sgot->output_offset),
2448                             srel->r_address);
2449                   if (dynobj->xvec->header_byteorder_big_p)
2450                     {
2451                       srel->r_index[0] = indx >> 16;
2452                       srel->r_index[1] = indx >> 8;
2453                       srel->r_index[2] = indx;
2454                       if (h == NULL)
2455                         srel->r_type[0] = 2 << RELOC_STD_BITS_LENGTH_SH_BIG;
2456                       else
2457                         srel->r_type[0] =
2458                           (RELOC_STD_BITS_EXTERN_BIG
2459                            | RELOC_STD_BITS_BASEREL_BIG
2460                            | RELOC_STD_BITS_RELATIVE_BIG
2461                            | (2 << RELOC_STD_BITS_LENGTH_SH_BIG));
2462                     }
2463                   else
2464                     {
2465                       srel->r_index[2] = indx >> 16;
2466                       srel->r_index[1] = indx >> 8;
2467                       srel->r_index[0] = indx;
2468                       if (h == NULL)
2469                         srel->r_type[0] = 2 << RELOC_STD_BITS_LENGTH_SH_LITTLE;
2470                       else
2471                         srel->r_type[0] =
2472                           (RELOC_STD_BITS_EXTERN_LITTLE
2473                            | RELOC_STD_BITS_BASEREL_LITTLE
2474                            | RELOC_STD_BITS_RELATIVE_LITTLE
2475                            | (2 << RELOC_STD_BITS_LENGTH_SH_LITTLE));
2476                     }
2477                 }
2478               else
2479                 {
2480                   struct reloc_ext_external *erel;
2481
2482                   erel = (struct reloc_ext_external *) p;
2483                   PUT_WORD (dynobj,
2484                             (*got_offsetp
2485                              + sgot->output_section->vma
2486                              + sgot->output_offset),
2487                             erel->r_address);
2488                   if (dynobj->xvec->header_byteorder_big_p)
2489                     {
2490                       erel->r_index[0] = indx >> 16;
2491                       erel->r_index[1] = indx >> 8;
2492                       erel->r_index[2] = indx;
2493                       if (h == NULL)
2494                         erel->r_type[0] =
2495                           RELOC_32 << RELOC_EXT_BITS_TYPE_SH_BIG;
2496                       else
2497                         erel->r_type[0] =
2498                           (RELOC_EXT_BITS_EXTERN_BIG
2499                            | (RELOC_GLOB_DAT << RELOC_EXT_BITS_TYPE_SH_BIG));
2500                     }
2501                   else
2502                     {
2503                       erel->r_index[2] = indx >> 16;
2504                       erel->r_index[1] = indx >> 8;
2505                       erel->r_index[0] = indx;
2506                       if (h == NULL)
2507                         erel->r_type[0] =
2508                           RELOC_32 << RELOC_EXT_BITS_TYPE_SH_LITTLE;
2509                       else
2510                         erel->r_type[0] =
2511                           (RELOC_EXT_BITS_EXTERN_LITTLE
2512                            | (RELOC_GLOB_DAT
2513                               << RELOC_EXT_BITS_TYPE_SH_LITTLE));
2514                     }
2515                   PUT_WORD (dynobj, 0, erel->r_addend);
2516                 }
2517
2518               ++s->reloc_count;
2519             }
2520
2521           *got_offsetp |= 1;
2522         }
2523
2524       *relocationp = sgot->vma + (*got_offsetp &~ 1);
2525
2526       /* There is nothing else to do for a base relative reloc.  */
2527       return true;
2528     }
2529
2530   if (! sunos_hash_table (info)->dynamic_sections_needed)
2531     return true;
2532   if (! info->shared)
2533     {
2534       if (h == NULL
2535           || h->dynindx == -1
2536           || h->root.root.type != bfd_link_hash_undefined
2537           || (h->flags & SUNOS_DEF_REGULAR) != 0
2538           || (h->flags & SUNOS_DEF_DYNAMIC) == 0
2539           || (h->root.root.u.undef.abfd->flags & DYNAMIC) == 0)
2540         return true;
2541     }
2542   else
2543     {
2544       if (h != NULL
2545           && (h->dynindx == -1
2546               || jmptbl
2547               || strcmp (h->root.root.root.string,
2548                          "__GLOBAL_OFFSET_TABLE_") == 0))
2549         return true;
2550     }
2551
2552   /* It looks like this is a reloc we are supposed to copy.  */
2553
2554   s = bfd_get_section_by_name (dynobj, ".dynrel");
2555   BFD_ASSERT (s != NULL);
2556   BFD_ASSERT (s->reloc_count * obj_reloc_entry_size (dynobj) < s->_raw_size);
2557
2558   p = s->contents + s->reloc_count * obj_reloc_entry_size (dynobj);
2559
2560   /* Copy the reloc over.  */
2561   memcpy (p, reloc, obj_reloc_entry_size (dynobj));
2562
2563   if (h != NULL)
2564     indx = h->dynindx;
2565   else
2566     indx = 0;
2567
2568   /* Adjust the address and symbol index.  */
2569   if (obj_reloc_entry_size (dynobj) == RELOC_STD_SIZE)
2570     {
2571       struct reloc_std_external *srel;
2572
2573       srel = (struct reloc_std_external *) p;
2574       PUT_WORD (dynobj,
2575                 (GET_WORD (dynobj, srel->r_address)
2576                  + input_section->output_section->vma
2577                  + input_section->output_offset),
2578                 srel->r_address);
2579       if (dynobj->xvec->header_byteorder_big_p)
2580         {
2581           srel->r_index[0] = indx >> 16;
2582           srel->r_index[1] = indx >> 8;
2583           srel->r_index[2] = indx;
2584         }
2585       else
2586         {
2587           srel->r_index[2] = indx >> 16;
2588           srel->r_index[1] = indx >> 8;
2589           srel->r_index[0] = indx;
2590         }
2591     }
2592   else
2593     {
2594       struct reloc_ext_external *erel;
2595
2596       erel = (struct reloc_ext_external *) p;
2597       PUT_WORD (dynobj,
2598                 (GET_WORD (dynobj, erel->r_address)
2599                  + input_section->output_section->vma
2600                  + input_section->output_offset),
2601                 erel->r_address);
2602       if (dynobj->xvec->header_byteorder_big_p)
2603         {
2604           erel->r_index[0] = indx >> 16;
2605           erel->r_index[1] = indx >> 8;
2606           erel->r_index[2] = indx;
2607         }
2608       else
2609         {
2610           erel->r_index[2] = indx >> 16;
2611           erel->r_index[1] = indx >> 8;
2612           erel->r_index[0] = indx;
2613         }
2614     }
2615
2616   ++s->reloc_count;
2617
2618   if (h != NULL)
2619     *skip = true;
2620
2621   return true;
2622 }
2623
2624 /* Finish up the dynamic linking information.  */
2625
2626 static boolean
2627 sunos_finish_dynamic_link (abfd, info)
2628      bfd *abfd;
2629      struct bfd_link_info *info;
2630 {
2631   bfd *dynobj;
2632   asection *o;
2633   asection *s;
2634   asection *sdyn;
2635   struct external_sun4_dynamic esd;
2636   struct external_sun4_dynamic_link esdl;
2637
2638   if (! sunos_hash_table (info)->dynamic_sections_needed)
2639     return true;
2640
2641   dynobj = sunos_hash_table (info)->dynobj;
2642
2643   sdyn = bfd_get_section_by_name (dynobj, ".dynamic");
2644   BFD_ASSERT (sdyn != NULL);
2645
2646   /* Finish up the .need section.  The linker emulation code filled it
2647      in, but with offsets from the start of the section instead of
2648      real addresses.  Now that we know the section location, we can
2649      fill in the final values.  */
2650   s = bfd_get_section_by_name (dynobj, ".need");
2651   if (s != NULL && s->_raw_size != 0)
2652     {
2653       file_ptr filepos;
2654       bfd_byte *p;
2655
2656       filepos = s->output_section->filepos + s->output_offset;
2657       p = s->contents;
2658       while (1)
2659         {
2660           bfd_vma val;
2661
2662           PUT_WORD (dynobj, GET_WORD (dynobj, p) + filepos, p);
2663           val = GET_WORD (dynobj, p + 12);
2664           if (val == 0)
2665             break;
2666           PUT_WORD (dynobj, val + filepos, p + 12);
2667           p += 16;
2668         }
2669     }
2670
2671   /* The first entry in the .got section is the address of the
2672      dynamic information, unless this is a shared library.  */
2673   s = bfd_get_section_by_name (dynobj, ".got");
2674   BFD_ASSERT (s != NULL);
2675   if (info->shared)
2676     PUT_WORD (dynobj, 0, s->contents);
2677   else
2678     PUT_WORD (dynobj, sdyn->output_section->vma + sdyn->output_offset,
2679               s->contents);
2680
2681   for (o = dynobj->sections; o != NULL; o = o->next)
2682     {
2683       if ((o->flags & SEC_HAS_CONTENTS) != 0
2684           && o->contents != NULL)
2685         {
2686           BFD_ASSERT (o->output_section != NULL
2687                       && o->output_section->owner == abfd);
2688           if (! bfd_set_section_contents (abfd, o->output_section,
2689                                           o->contents, o->output_offset,
2690                                           o->_raw_size))
2691             return false;
2692         }
2693     }
2694
2695   /* Finish up the dynamic link information.  */
2696   PUT_WORD (dynobj, (bfd_vma) 3, esd.ld_version);
2697   PUT_WORD (dynobj,
2698             sdyn->output_section->vma + sdyn->output_offset + sizeof esd,
2699             esd.ldd);
2700   PUT_WORD (dynobj,
2701             (sdyn->output_section->vma
2702              + sdyn->output_offset
2703              + sizeof esd
2704              + EXTERNAL_SUN4_DYNAMIC_DEBUGGER_SIZE),
2705             esd.ld);
2706
2707   if (! bfd_set_section_contents (abfd, sdyn->output_section, &esd,
2708                                   sdyn->output_offset, sizeof esd))
2709     return false;
2710
2711
2712   PUT_WORD (dynobj, (bfd_vma) 0, esdl.ld_loaded);
2713
2714   s = bfd_get_section_by_name (dynobj, ".need");
2715   if (s == NULL || s->_raw_size == 0)
2716     PUT_WORD (dynobj, (bfd_vma) 0, esdl.ld_need);
2717   else
2718     PUT_WORD (dynobj, s->output_section->filepos + s->output_offset,
2719               esdl.ld_need);
2720
2721   s = bfd_get_section_by_name (dynobj, ".rules");
2722   if (s == NULL || s->_raw_size == 0)
2723     PUT_WORD (dynobj, (bfd_vma) 0, esdl.ld_rules);
2724   else
2725     PUT_WORD (dynobj, s->output_section->filepos + s->output_offset,
2726               esdl.ld_rules);
2727
2728   s = bfd_get_section_by_name (dynobj, ".got");
2729   BFD_ASSERT (s != NULL);
2730   PUT_WORD (dynobj, s->output_section->vma + s->output_offset, esdl.ld_got);
2731
2732   s = bfd_get_section_by_name (dynobj, ".plt");
2733   BFD_ASSERT (s != NULL);
2734   PUT_WORD (dynobj, s->output_section->vma + s->output_offset, esdl.ld_plt);
2735   PUT_WORD (dynobj, s->_raw_size, esdl.ld_plt_sz);
2736
2737   s = bfd_get_section_by_name (dynobj, ".dynrel");
2738   BFD_ASSERT (s != NULL);
2739   BFD_ASSERT (s->reloc_count * obj_reloc_entry_size (dynobj) == s->_raw_size);
2740   PUT_WORD (dynobj, s->output_section->filepos + s->output_offset,
2741             esdl.ld_rel);
2742
2743   s = bfd_get_section_by_name (dynobj, ".hash");
2744   BFD_ASSERT (s != NULL);
2745   PUT_WORD (dynobj, s->output_section->filepos + s->output_offset,
2746             esdl.ld_hash);
2747
2748   s = bfd_get_section_by_name (dynobj, ".dynsym");
2749   BFD_ASSERT (s != NULL);
2750   PUT_WORD (dynobj, s->output_section->filepos + s->output_offset,
2751             esdl.ld_stab);
2752
2753   PUT_WORD (dynobj, (bfd_vma) 0, esdl.ld_stab_hash);
2754
2755   PUT_WORD (dynobj, (bfd_vma) sunos_hash_table (info)->bucketcount,
2756             esdl.ld_buckets);
2757
2758   s = bfd_get_section_by_name (dynobj, ".dynstr");
2759   BFD_ASSERT (s != NULL);
2760   PUT_WORD (dynobj, s->output_section->filepos + s->output_offset,
2761             esdl.ld_symbols);
2762   PUT_WORD (dynobj, s->_raw_size, esdl.ld_symb_size);
2763
2764   /* The size of the text area is the size of the .text section
2765      rounded up to a page boundary.  FIXME: Should the page size be
2766      conditional on something?  */
2767   PUT_WORD (dynobj,
2768             BFD_ALIGN (obj_textsec (abfd)->_raw_size, 0x2000),
2769             esdl.ld_text);
2770   
2771   if (! bfd_set_section_contents (abfd, sdyn->output_section, &esdl,
2772                                   (sdyn->output_offset
2773                                    + sizeof esd
2774                                    + EXTERNAL_SUN4_DYNAMIC_DEBUGGER_SIZE),
2775                                   sizeof esdl))
2776     return false;
2777
2778   abfd->flags |= DYNAMIC;
2779
2780   return true;
2781 }