home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / SOURCE / D / GDB / GDB-4.13 / GDB-4 / gdb-4.13 / bfd / i386linux.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-07-12  |  20.1 KB  |  699 lines

  1. /* BFD back-end for linux flavored i386 a.out binaries.
  2.    Copyright (C) 1992, 1993, 1994 Free Software Foundation, Inc.
  3.  
  4. This file is part of BFD, the Binary File Descriptor library.
  5.  
  6. This program is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 2 of the License, or
  9. (at your option) any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  19.  
  20. #define    PAGE_SIZE    4096
  21. #define ZMAGIC_DISK_BLOCK_SIZE 1024
  22. #define    SEGMENT_SIZE    4096
  23. #define TEXT_START_ADDR    0x0
  24. #define N_SHARED_LIB(x) 0
  25. #define BYTES_IN_WORD 4
  26.  
  27. #include "bfd.h"
  28. #include "sysdep.h"
  29. #include "libbfd.h"
  30. #include "aout/aout64.h"
  31. #include "aout/stab_gnu.h"
  32. #include "aout/ar.h"
  33. #include "libaout.h"           /* BFD a.out internal data structures */
  34.  
  35. #define DEFAULT_ARCH bfd_arch_i386
  36. #define MY(OP) CAT(i386linux_,OP)
  37. #define TARGETNAME "a.out-i386-linux"
  38.  
  39. /* We always generate QMAGIC files in preference to ZMAGIC files.  It
  40.    would be possible to make this a linker option, if that ever
  41.    becomes important.  */
  42.  
  43. static void MY_final_link_callback
  44.   PARAMS ((bfd *, file_ptr *, file_ptr *, file_ptr *));
  45.  
  46. static boolean
  47. i386linux_bfd_final_link (abfd, info)
  48.      bfd *abfd;
  49.      struct bfd_link_info *info;
  50. {
  51.   obj_aout_subformat (abfd) = q_magic_format;
  52.   return NAME(aout,final_link) (abfd, info, MY_final_link_callback);
  53. }
  54.  
  55. #define MY_bfd_final_link i386linux_bfd_final_link
  56.  
  57. /* Set the machine type correctly.  */
  58.  
  59. static boolean
  60. i386linux_write_object_contents (abfd)
  61.      bfd *abfd;
  62. {
  63.   struct external_exec exec_bytes;
  64.   struct internal_exec *execp = exec_hdr (abfd);
  65.  
  66.   N_SET_MACHTYPE (*execp, M_386);
  67.  
  68.   obj_reloc_entry_size (abfd) = RELOC_STD_SIZE;
  69.  
  70.   WRITE_HEADERS(abfd, execp);
  71.  
  72.   return true;
  73. }
  74.  
  75. #define MY_write_object_contents i386linux_write_object_contents
  76.  
  77. /* Code to link against Linux a.out shared libraries.  */
  78.  
  79. /* See if a symbol name is a reference to the global offset table.  */
  80.  
  81. #ifndef GOT_REF_PREFIX
  82. #define    GOT_REF_PREFIX    "__GOT_"
  83. #endif
  84.  
  85. #define IS_GOT_SYM(name) \
  86.   (strncmp (name, GOT_REF_PREFIX, sizeof GOT_REF_PREFIX - 1) == 0)
  87.  
  88. /* See if a symbol name is a reference to the procedure linkage table.  */
  89.  
  90. #ifndef PLT_REF_PREFIX
  91. #define    PLT_REF_PREFIX    "__PLT_"
  92. #endif
  93.  
  94. #define IS_PLT_SYM(name) \
  95.   (strncmp (name, PLT_REF_PREFIX, sizeof PLT_REF_PREFIX - 1) == 0)
  96.  
  97. /* This special symbol is a set vector that contains a list of
  98.    pointers to fixup tables.  It will be present in any dynamicly
  99.    linked file.  The linker generated fixup table should also be added
  100.    to the list, and it should always appear in the second slot (the
  101.    first one is a dummy with a magic number that is defined in
  102.    crt0.o).  */
  103.  
  104. #ifndef SHARABLE_CONFLICTS
  105. #define SHARABLE_CONFLICTS "__SHARABLE_CONFLICTS__"
  106. #endif
  107.  
  108. /* We keep a list of fixups.  The terminology is a bit strange, but
  109.    each fixup contains two 32 bit numbers.  A regular fixup contains
  110.    an address and a pointer, and at runtime we should store the
  111.    address at the location pointed to by the pointer.  A builtin fixup
  112.    contains two pointers, and we should read the address using one
  113.    pointer and store it at the location pointed to by the other
  114.    pointer.  Builtin fixups come into play when we have duplicate
  115.    __GOT__ symbols for the same variable.  The builtin fixup will copy
  116.    the GOT pointer from one over into the other.  */
  117.  
  118. struct fixup
  119. {
  120.   struct fixup *next;
  121.   struct linux_link_hash_entry *h;
  122.   bfd_vma value;
  123.  
  124.   /* Nonzero if this is a jump instruction that needs to be fixed,
  125.      zero if this is just a pointer */
  126.   char jump;
  127.  
  128.   char builtin;
  129. };
  130.  
  131. /* We don't need a special hash table entry structure, but we do need
  132.    to keep some information between linker passes, so we use a special
  133.    hash table.  */
  134.  
  135. struct linux_link_hash_entry
  136. {
  137.   struct aout_link_hash_entry root;
  138. };
  139.  
  140. struct linux_link_hash_table
  141. {
  142.   struct aout_link_hash_table root;
  143.  
  144.   /* First dynamic object found in link.  */
  145.   bfd *dynobj;
  146.  
  147.   /* Number of fixups.  */
  148.   size_t fixup_count;
  149.  
  150.   /* Number of builtin fixups.  */
  151.   size_t local_builtins;
  152.  
  153.   /* List of fixups.  */
  154.   struct fixup *fixup_list;
  155. };
  156.  
  157. static struct bfd_hash_entry *linux_link_hash_newfunc
  158.   PARAMS ((struct bfd_hash_entry *, struct bfd_hash_table *, const char *));
  159. static struct bfd_link_hash_table *linux_link_hash_table_create
  160.   PARAMS ((bfd *));
  161. static struct fixup *new_fixup
  162.   PARAMS ((struct bfd_link_info *, struct linux_link_hash_entry *,
  163.        bfd_vma, int));
  164. static boolean linux_link_create_dynamic_sections
  165.   PARAMS ((bfd *, struct bfd_link_info *));
  166. static boolean linux_add_one_symbol
  167.   PARAMS ((struct bfd_link_info *, bfd *, const char *, flagword, asection *,
  168.        bfd_vma, const char *, boolean, boolean,
  169.        struct bfd_link_hash_entry **));
  170. static boolean linux_tally_symbols
  171.   PARAMS ((struct linux_link_hash_entry *, PTR));
  172. static boolean linux_finish_dynamic_link
  173.   PARAMS ((bfd *, struct bfd_link_info *));
  174.  
  175. /* Routine to create an entry in an Linux link hash table.  */
  176.  
  177. static struct bfd_hash_entry *
  178. linux_link_hash_newfunc (entry, table, string)
  179.      struct bfd_hash_entry *entry;
  180.      struct bfd_hash_table *table;
  181.      const char *string;
  182. {
  183.   struct linux_link_hash_entry *ret = (struct linux_link_hash_entry *) entry;
  184.  
  185.   /* Allocate the structure if it has not already been allocated by a
  186.      subclass.  */
  187.   if (ret == (struct linux_link_hash_entry *) NULL)
  188.     ret = ((struct linux_link_hash_entry *)
  189.        bfd_hash_allocate (table, sizeof (struct linux_link_hash_entry)));
  190.   if (ret == NULL)
  191.     return (struct bfd_hash_entry *) ret;
  192.  
  193.   /* Call the allocation method of the superclass.  */
  194.   ret = ((struct linux_link_hash_entry *)
  195.      NAME(aout,link_hash_newfunc) ((struct bfd_hash_entry *) ret,
  196.                        table, string));
  197.   if (ret != NULL)
  198.     {
  199.       /* Set local fields; there aren't any.  */
  200.     }
  201.  
  202.   return (struct bfd_hash_entry *) ret;
  203. }
  204.  
  205. /* Create a Linux link hash table.  */
  206.  
  207. static struct bfd_link_hash_table *
  208. linux_link_hash_table_create (abfd)
  209.      bfd *abfd;
  210. {
  211.   struct linux_link_hash_table *ret;
  212.  
  213.   ret = ((struct linux_link_hash_table *)
  214.      malloc (sizeof (struct linux_link_hash_table)));
  215.   if (ret == (struct linux_link_hash_table *) NULL)
  216.     {
  217.       bfd_set_error (bfd_error_no_memory);
  218.       return (struct bfd_link_hash_table *) NULL;
  219.     }
  220.   if (! NAME(aout,link_hash_table_init) (&ret->root, abfd,
  221.                      linux_link_hash_newfunc))
  222.     {
  223.       free (ret);
  224.       return (struct bfd_link_hash_table *) NULL;
  225.     }
  226.  
  227.   ret->dynobj = NULL;
  228.   ret->fixup_count = 0;
  229.   ret->local_builtins = 0;
  230.   ret->fixup_list = NULL;
  231.  
  232.   return &ret->root.root;
  233. }
  234.  
  235. /* Look up an entry in a Linux link hash table.  */
  236.  
  237. #define linux_link_hash_lookup(table, string, create, copy, follow) \
  238.   ((struct linux_link_hash_entry *) \
  239.    aout_link_hash_lookup (&(table)->root, (string), (create), (copy),\
  240.               (follow)))
  241.  
  242. /* Traverse a Linux link hash table.  */
  243.  
  244. #define linux_link_hash_traverse(table, func, info)            \
  245.   (aout_link_hash_traverse                        \
  246.    (&(table)->root,                            \
  247.     (boolean (*) PARAMS ((struct aout_link_hash_entry *, PTR))) (func),    \
  248.     (info)))
  249.  
  250. /* Get the Linux link hash table from the info structure.  This is
  251.    just a cast.  */
  252.  
  253. #define linux_hash_table(p) ((struct linux_link_hash_table *) ((p)->hash))
  254.  
  255. /* Store the information for a new fixup.  */
  256.  
  257. static struct fixup *
  258. new_fixup (info, h, value, builtin)
  259.      struct bfd_link_info *info;
  260.      struct linux_link_hash_entry *h;
  261.      bfd_vma value;
  262.      int builtin;
  263. {
  264.   struct fixup *f;
  265.  
  266.   f = (struct fixup *) bfd_hash_allocate (&info->hash->table,
  267.                       sizeof (struct fixup));
  268.   if (f == NULL)
  269.     return f;
  270.   f->next = linux_hash_table (info)->fixup_list;
  271.   linux_hash_table (info)->fixup_list = f;
  272.   f->h = h;
  273.   f->value = value;
  274.   f->builtin = builtin;
  275.   f->jump = 0;
  276.   ++linux_hash_table (info)->fixup_count;
  277.   return f;
  278. }
  279.  
  280. /* We come here once we realize that we are going to link to a shared
  281.    library.  We need to create a special section that contains the
  282.    fixup table, and we ultimately need to add a pointer to this into
  283.    the set vector for SHARABLE_CONFLICTS.  At this point we do not
  284.    know the size of the section, but that's OK - we just need to
  285.    create it for now.  */
  286.  
  287. static boolean
  288. linux_link_create_dynamic_sections (abfd, info)
  289.      bfd *abfd;
  290.      struct bfd_link_info *info;
  291. {
  292.   flagword flags;
  293.   register asection *s;
  294.  
  295.   /* Note that we set the SEC_IN_MEMORY flag.  */
  296.   flags = SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS | SEC_IN_MEMORY;
  297.  
  298.   /* We choose to use the name ".dynamic" for the fixup table.  Why
  299.      not? */
  300.   s = bfd_make_section (abfd, ".dynamic");
  301.   if (s == NULL
  302.       || ! bfd_set_section_flags (abfd, s, flags)
  303.       || ! bfd_set_section_alignment (abfd, s, 2))
  304.     return false;
  305.   s->_raw_size = 0;
  306.   s->contents = 0;
  307.  
  308.   return true;
  309. }
  310.  
  311. /* Function to add a single symbol to the linker hash table.  This is
  312.    a wrapper around _bfd_generic_link_add_one_symbol which handles the
  313.    tweaking needed for dynamic linking support.  */
  314.  
  315. static boolean
  316. linux_add_one_symbol (info, abfd, name, flags, section, value, string,
  317.               copy, collect, hashp)
  318.      struct bfd_link_info *info;
  319.      bfd *abfd;
  320.      const char *name;
  321.      flagword flags;
  322.      asection *section;
  323.      bfd_vma value;
  324.      const char *string;
  325.      boolean copy;
  326.      boolean collect;
  327.      struct bfd_link_hash_entry **hashp;
  328. {
  329.   struct linux_link_hash_entry *h;
  330.   boolean insert;
  331.  
  332.   /* Look up and see if we already have this symbol in the hash table.
  333.      If we do, and the defining entry is from a shared library, we
  334.      need to create the dynamic sections.
  335.  
  336.      FIXME: What if abfd->xvec != info->hash->creator?  We may want to
  337.      be able to link Linux a.out and ELF objects together, but serious
  338.      confusion is possible.  */
  339.  
  340.   insert = false;
  341.  
  342.   if (! info->relocateable
  343.       && linux_hash_table (info)->dynobj == NULL
  344.       && strcmp (name, SHARABLE_CONFLICTS) == 0)
  345.     {
  346.       if (! linux_link_create_dynamic_sections (abfd, info))
  347.     return false;
  348.       linux_hash_table (info)->dynobj = abfd;
  349.       insert = true;
  350.     }
  351.  
  352.   if (bfd_is_abs_section (section)
  353.       && (IS_GOT_SYM (name) || IS_PLT_SYM (name)))
  354.     {
  355.       h = linux_link_hash_lookup (linux_hash_table (info), name, false,
  356.                   false, false);
  357.       if (h != NULL
  358.       && h->root.root.type == bfd_link_hash_defined)
  359.     {
  360.       if (new_fixup (info, h, value, ! IS_PLT_SYM(name)) == NULL)
  361.         return false;
  362.       return true;
  363.     }
  364.       if (hashp != NULL)
  365.     *hashp = (struct bfd_link_hash_entry *) h;
  366.     }
  367.  
  368.   /* Do the usual procedure for adding a symbol.  */
  369.   if (! _bfd_generic_link_add_one_symbol (info, abfd, name, flags, section,
  370.                       value, string, copy, collect,
  371.                       hashp))
  372.     return false;
  373.  
  374.   /* Insert a pointer to our table in the set vector.  The dynamic
  375.      linker requires this information */
  376.   if (insert)
  377.     {
  378.       asection *s;
  379.  
  380.       /* Here we do our special thing to add the pointer to the
  381.      dynamic section in the SHARABLE_CONFLICTS set vector.  */
  382.       s = bfd_get_section_by_name (linux_hash_table (info)->dynobj,
  383.                    ".dynamic");
  384.       BFD_ASSERT (s != NULL);
  385.  
  386.       if (! (_bfd_generic_link_add_one_symbol
  387.          (info, linux_hash_table (info)->dynobj, SHARABLE_CONFLICTS,
  388.           BSF_GLOBAL | BSF_CONSTRUCTOR, s, 0, NULL, false, false, NULL)))
  389.     return false;
  390.     }
  391.  
  392.   return true;
  393. }
  394.  
  395. /* We will crawl the hash table and come here for every global symbol.
  396.    We will examine each entry and see if there are indications that we
  397.    need to add a fixup.  There are two possible cases - one is where
  398.    you have duplicate definitions of PLT or GOT symbols - these will
  399.    have already been caught and added as "builtin" fixups.  If we find
  400.    that the corresponding non PLT/GOT symbol is also present, we
  401.    convert it to a regular fixup instead.
  402.  
  403.    This function is called via linux_link_hash_traverse.  */
  404.  
  405. static boolean
  406. linux_tally_symbols (h, data)
  407.      struct linux_link_hash_entry *h;
  408.      PTR data;
  409. {
  410.   struct bfd_link_info *info = (struct bfd_link_info *) data;
  411.   struct fixup *f, *f1;
  412.   int is_plt;
  413.   struct linux_link_hash_entry *h1, *h2;
  414.  
  415.   /* If this symbol is not a PLT/GOT, we do not even need to look at it */
  416.   is_plt = IS_PLT_SYM (h->root.root.root.string);
  417.  
  418.   if (is_plt || IS_GOT_SYM (h->root.root.root.string))
  419.     {
  420.       /* Look up this symbol twice.  Once just as a regular lookup,
  421.      and then again following all of the indirect links until we
  422.      reach a real symbol.  */
  423.       h1 = linux_link_hash_lookup (linux_hash_table (info),
  424.                    (h->root.root.root.string
  425.                     + sizeof PLT_REF_PREFIX - 1),
  426.                    false, false, true);
  427.       /* h2 does not follow indirect symbols. */
  428.       h2 = linux_link_hash_lookup (linux_hash_table (info), 
  429.                    (h->root.root.root.string
  430.                     + sizeof PLT_REF_PREFIX - 1),
  431.                    false, false, false);
  432.  
  433.       /* The real symbol must exist but if it is also an ABS symbol,
  434.      there is no need to have a fixup.  This is because they both
  435.      came from the same library.  If on the other hand, we had to
  436.      use an indirect symbol to get to the real symbol, we add the
  437.      fixup anyway, since there are cases where these symbols come
  438.      from different shared libraries */
  439.       if (h1 != NULL
  440.       && ((h1->root.root.type == bfd_link_hash_defined
  441.            && ! bfd_is_abs_section (h->root.root.u.def.section))
  442.           || h2->root.root.type == bfd_link_hash_indirect))
  443.     {
  444.       f = new_fixup (info, h1, h->root.root.u.def.value, 0);
  445.       if (f == NULL)
  446.         {
  447.           /* FIXME: No way to return error.  */
  448.           abort ();
  449.         }
  450.       f->jump = is_plt;
  451.  
  452.       /* See if there is a "builtin" fixup already present
  453.          involving this symbol.  If so, convert it to a regular
  454.          fixup.  In the end, this relaxes some of the requirements
  455.          about the order of performing fixups.  */
  456.       for (f1 = linux_hash_table (info)->fixup_list;
  457.            f1 != NULL;
  458.            f1 = f1->next)
  459.         {
  460.           if (f1 == f)
  461.         continue;
  462.           if (f1->h != h)
  463.         continue;
  464.           f1->h = h1;
  465.           f1->jump = is_plt;
  466.           f1->builtin = 0;
  467.         }
  468.     }
  469.  
  470.       /* Quick and dirty way of stripping these symbols from the
  471.      symtab. */
  472.       h->root.written = true;
  473.     }
  474.  
  475.   return true;
  476. }
  477.  
  478. /* This is called to set the size of the .dynamic section is.  It is
  479.    called by the Linux linker emulation before_allocation routine.  We
  480.    have finished reading all of the input files, and now we just scan
  481.    the hash tables to find out how many additional fixups are
  482.    required.  */
  483.  
  484. boolean
  485. bfd_linux_size_dynamic_sections (output_bfd, info)
  486.      bfd *output_bfd;
  487.      struct bfd_link_info *info;
  488. {
  489.   struct fixup *f;
  490.   asection *s;
  491.  
  492.   /* First find the fixups... */
  493.   linux_link_hash_traverse (linux_hash_table (info),
  494.                 linux_tally_symbols,
  495.                 (PTR) info);
  496.  
  497.   /* If there are builtin fixups, leave room for a marker.  This is
  498.      used by the dynamic linker so that it knows that all that follow
  499.      are builtin fixups instead of regular fixups.  */
  500.   for (f = linux_hash_table (info)->fixup_list; f != NULL; f = f->next)
  501.     {
  502.       if (f->builtin)
  503.     {
  504.       ++linux_hash_table (info)->fixup_count;
  505.       ++linux_hash_table (info)->local_builtins;
  506.       break;
  507.     }
  508.     }
  509.  
  510.   if (linux_hash_table (info)->dynobj == NULL)
  511.     {
  512.       if (linux_hash_table (info)->fixup_count > 0)
  513.     abort ();
  514.       return true;
  515.     }
  516.  
  517.   /* Allocate memory for our fixup table.  We will fill it in later.  */
  518.   s = bfd_get_section_by_name (linux_hash_table (info)->dynobj, ".dynamic");
  519.   if (s != NULL)
  520.     {
  521.       s->_raw_size = 8 + linux_hash_table (info)->fixup_count * 8;
  522.       s->contents = (bfd_byte *) bfd_alloc (output_bfd, s->_raw_size);
  523.       if (s->contents == NULL)
  524.     {
  525.       bfd_set_error (bfd_error_no_memory);
  526.       return false;
  527.     }
  528.       memset (s->contents, 0, s->_raw_size);
  529.     }
  530.  
  531.   return true;
  532. }
  533.  
  534. /* We come here once we are ready to actually write the fixup table to
  535.    the output file.  Scan the fixup tables and so forth and generate
  536.    the stuff we need.  */
  537.  
  538. static boolean
  539. linux_finish_dynamic_link (output_bfd, info)
  540.      bfd *output_bfd;
  541.      struct bfd_link_info *info;
  542. {
  543.   asection *s, *os, *is;
  544.   bfd_byte *fixup_table;
  545.   struct linux_link_hash_entry *h;
  546.   struct fixup *f;
  547.   unsigned int new_addr;
  548.   int section_offset;
  549.   int fixups_written;
  550.  
  551.   if (linux_hash_table (info)->dynobj == NULL)
  552.     return true;
  553.  
  554.   s = bfd_get_section_by_name (linux_hash_table (info)->dynobj, ".dynamic");
  555.   BFD_ASSERT (s != NULL);
  556.   os = s->output_section;
  557.   fixups_written = 0;
  558.  
  559. #ifdef LINUX_LINK_DEBUG
  560.   printf ("Fixup table file offset: %x  VMA: %x\n", 
  561.       os->filepos + s->output_offset,
  562.       os->vma + s->output_offset);
  563. #endif
  564.  
  565.   fixup_table = s->contents;
  566.   bfd_put_32 (output_bfd, linux_hash_table (info)->fixup_count, fixup_table);
  567.   fixup_table += 4;
  568.  
  569.   /* Fill in fixup table.  */
  570.   for (f = linux_hash_table (info)->fixup_list; f != NULL; f = f->next)
  571.     {
  572.       if (f->builtin)
  573.     continue;
  574.  
  575.       if (f->h->root.root.type != bfd_link_hash_defined)
  576.     {
  577.       /* FIXME!  */
  578.       fprintf (stderr,
  579.            "Symbol %s not defined for fixups\n",
  580.            f->h->root.root.root.string);
  581.       continue;
  582.     }
  583.  
  584.       is = f->h->root.root.u.def.section;
  585.       section_offset = is->output_section->vma + is->output_offset;
  586.       new_addr = f->h->root.root.u.def.value + section_offset;
  587.  
  588. #ifdef LINUX_LINK_DEBUG
  589.       printf ("Fixup(%d) %s: %x %x\n",f->jump, f->h->root.root.string,
  590.           new_addr, f->value);
  591. #endif
  592.  
  593.       if (f->jump)
  594.     {
  595.       /* Relative address */
  596.       new_addr = new_addr - (f->value + 5); 
  597.       bfd_put_32 (output_bfd, new_addr, fixup_table);
  598.       fixup_table += 4;
  599.       bfd_put_32 (output_bfd, f->value + 1, fixup_table);
  600.       fixup_table += 4;
  601.     }
  602.       else
  603.     {
  604.       bfd_put_32 (output_bfd, new_addr, fixup_table);
  605.       fixup_table += 4;
  606.       bfd_put_32 (output_bfd, f->value, fixup_table);
  607.       fixup_table += 4;
  608.     }
  609.       ++fixups_written;
  610.     }
  611.  
  612.   if (linux_hash_table (info)->local_builtins != 0)
  613.     {
  614.       /* Special marker so we know to switch to the other type of fixup */
  615.       bfd_put_32 (output_bfd, 0, fixup_table);
  616.       fixup_table += 4;
  617.       bfd_put_32 (output_bfd, 0, fixup_table);
  618.       fixup_table += 4;
  619.       ++fixups_written;
  620.       for (f = linux_hash_table (info)->fixup_list; f != NULL; f = f->next)
  621.     {
  622.       if (! f->builtin)
  623.         continue;
  624.  
  625.       if (f->h->root.root.type != bfd_link_hash_defined)
  626.         {
  627.           /* FIXME!  */
  628.           fprintf (stderr,
  629.                "Symbol %s not defined for fixups\n",
  630.                f->h->root.root.root.string);
  631.           continue;
  632.         }
  633.  
  634.       is = f->h->root.root.u.def.section;
  635.       section_offset = is->output_section->vma + is->output_offset;
  636.       new_addr = f->h->root.root.u.def.value + section_offset;
  637.  
  638. #ifdef LINUX_LINK_DEBUG
  639.       printf ("Fixup(B) %s: %x %x\n", f->h->root.root.string,
  640.           new_addr, f->value);
  641. #endif
  642.  
  643.       bfd_put_32 (output_bfd, new_addr, fixup_table);
  644.       fixup_table += 4;
  645.       bfd_put_32 (output_bfd, f->value, fixup_table);
  646.       fixup_table += 4;
  647.       ++fixups_written;
  648.     }
  649.   }
  650.  
  651.   if (linux_hash_table (info)->fixup_count != fixups_written)
  652.     {
  653.       /* FIXME!  */
  654.       fprintf (stderr, "Warning: fixup count mismatch\n");
  655.       while (linux_hash_table (info)->fixup_count > fixups_written)
  656.     {
  657.       bfd_put_32 (output_bfd, 0, fixup_table);
  658.       fixup_table += 4;
  659.       bfd_put_32 (output_bfd, 0, fixup_table);
  660.       fixup_table += 4;
  661.       ++fixups_written;
  662.     }
  663.     }
  664.  
  665.   h = linux_link_hash_lookup (linux_hash_table (info), 
  666.                   "__BUILTIN_FIXUPS__",
  667.                   false, false, false);
  668.  
  669.   if (h != NULL && h->root.root.type == bfd_link_hash_defined)
  670.     {
  671.       is = h->root.root.u.def.section;
  672.       section_offset = is->output_section->vma + is->output_offset;
  673.       new_addr = h->root.root.u.def.value + section_offset;
  674.  
  675. #ifdef LINUX_LINK_DEBUG
  676.       printf ("Builtin fixup table at %x\n", new_addr);
  677. #endif
  678.  
  679.       bfd_put_32 (output_bfd, new_addr, fixup_table);
  680.     }
  681.   else
  682.     bfd_put_32 (output_bfd, 0, fixup_table);
  683.  
  684.   if (bfd_seek (output_bfd, os->filepos + s->output_offset, SEEK_SET) != 0)
  685.     return false;
  686.  
  687.   if (bfd_write ((PTR) s->contents, 1, s->_raw_size, output_bfd)
  688.       != s->_raw_size)
  689.     return false;
  690.  
  691.   return true;
  692. }
  693.  
  694. #define MY_bfd_link_hash_table_create linux_link_hash_table_create
  695. #define MY_add_one_symbol linux_add_one_symbol
  696. #define MY_finish_dynamic_link linux_finish_dynamic_link
  697.  
  698. #include "aout-target.h"
  699.