home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / gdb-4.16-base.tgz / gdb-4.16-base.tar / fsf / gdb / bfd / sunos.c < prev    next >
C/C++ Source or Header  |  1996-03-12  |  85KB  |  2,768 lines

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