home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 9 / FreshFishVol9-CD2.bin / bbs / gnu / gdb-4.14-src.lha / gdb-4.14 / bfd / elfcode.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-03-04  |  197.2 KB  |  6,755 lines

  1. /* ELF executable support for BFD.
  2.    Copyright 1991, 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
  3.  
  4.    Written by Fred Fish @ Cygnus Support, from information published
  5.    in "UNIX System V Release 4, Programmers Guide: ANSI C and
  6.    Programming Support Tools".  Sufficient support for gdb.
  7.  
  8.    Rewritten by Mark Eichin @ Cygnus Support, from information
  9.    published in "System V Application Binary Interface", chapters 4
  10.    and 5, as well as the various "Processor Supplement" documents
  11.    derived from it. Added support for assembler and other object file
  12.    utilities.  Further work done by Ken Raeburn (Cygnus Support), Michael
  13.    Meissner (Open Software Foundation), and Peter Hoogenboom (University
  14.    of Utah) to finish and extend this.
  15.  
  16. This file is part of BFD, the Binary File Descriptor library.
  17.  
  18. This program is free software; you can redistribute it and/or modify
  19. it under the terms of the GNU General Public License as published by
  20. the Free Software Foundation; either version 2 of the License, or
  21. (at your option) any later version.
  22.  
  23. This program is distributed in the hope that it will be useful,
  24. but WITHOUT ANY WARRANTY; without even the implied warranty of
  25. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  26. GNU General Public License for more details.
  27.  
  28. You should have received a copy of the GNU General Public License
  29. along with this program; if not, write to the Free Software
  30. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  31.  
  32. /* Problems and other issues to resolve.
  33.  
  34.    (1)    BFD expects there to be some fixed number of "sections" in
  35.         the object file.  I.E. there is a "section_count" variable in the
  36.     bfd structure which contains the number of sections.  However, ELF
  37.     supports multiple "views" of a file.  In particular, with current
  38.     implementations, executable files typically have two tables, a
  39.     program header table and a section header table, both of which
  40.     partition the executable.
  41.  
  42.     In ELF-speak, the "linking view" of the file uses the section header
  43.     table to access "sections" within the file, and the "execution view"
  44.     uses the program header table to access "segments" within the file.
  45.     "Segments" typically may contain all the data from one or more
  46.     "sections".
  47.  
  48.     Note that the section header table is optional in ELF executables,
  49.     but it is this information that is most useful to gdb.  If the
  50.     section header table is missing, then gdb should probably try
  51.     to make do with the program header table.  (FIXME)
  52.  
  53.    (2)  The code in this file is compiled twice, once in 32-bit mode and
  54.     once in 64-bit mode.  More of it should be made size-independent
  55.     and moved into elf.c.
  56.  
  57.    (3)    ELF section symbols are handled rather sloppily now.  This should
  58.     be cleaned up, and ELF section symbols reconciled with BFD section
  59.     symbols.
  60.  
  61.    (4)  We need a published spec for 64-bit ELF.  We've got some stuff here
  62.     that we're using for SPARC V9 64-bit chips, but don't assume that
  63.     it's cast in stone.
  64.  */
  65.  
  66. #include <string.h>        /* For strrchr and friends */
  67. #include "bfd.h"
  68. #include "sysdep.h"
  69. #include "bfdlink.h"
  70. #include "libbfd.h"
  71. #include "libelf.h"
  72.  
  73. /* Renaming structures, typedefs, macros and functions to be size-specific.  */
  74. #define Elf_External_Ehdr    NAME(Elf,External_Ehdr)
  75. #define Elf_External_Sym    NAME(Elf,External_Sym)
  76. #define Elf_External_Shdr    NAME(Elf,External_Shdr)
  77. #define Elf_External_Phdr    NAME(Elf,External_Phdr)
  78. #define Elf_External_Rel    NAME(Elf,External_Rel)
  79. #define Elf_External_Rela    NAME(Elf,External_Rela)
  80. #define Elf_External_Dyn    NAME(Elf,External_Dyn)
  81.  
  82. #define elf_core_file_failing_command    NAME(bfd_elf,core_file_failing_command)
  83. #define elf_core_file_failing_signal    NAME(bfd_elf,core_file_failing_signal)
  84. #define elf_core_file_matches_executable_p \
  85.   NAME(bfd_elf,core_file_matches_executable_p)
  86. #define elf_object_p            NAME(bfd_elf,object_p)
  87. #define elf_core_file_p            NAME(bfd_elf,core_file_p)
  88. #define elf_get_symtab_upper_bound    NAME(bfd_elf,get_symtab_upper_bound)
  89. #define elf_get_dynamic_symtab_upper_bound \
  90.   NAME(bfd_elf,get_dynamic_symtab_upper_bound)
  91. #define elf_swap_reloc_in        NAME(bfd_elf,swap_reloc_in)
  92. #define elf_swap_reloca_in        NAME(bfd_elf,swap_reloca_in)
  93. #define elf_swap_reloc_out        NAME(bfd_elf,swap_reloc_out)
  94. #define elf_swap_reloca_out        NAME(bfd_elf,swap_reloca_out)
  95. #define elf_swap_symbol_in        NAME(bfd_elf,swap_symbol_in)
  96. #define elf_swap_symbol_out        NAME(bfd_elf,swap_symbol_out)
  97. #define elf_swap_dyn_in            NAME(bfd_elf,swap_dyn_in)
  98. #define elf_swap_dyn_out        NAME(bfd_elf,swap_dyn_out)
  99. #define elf_get_reloc_upper_bound    NAME(bfd_elf,get_reloc_upper_bound)
  100. #define elf_canonicalize_reloc        NAME(bfd_elf,canonicalize_reloc)
  101. #define elf_get_symtab            NAME(bfd_elf,get_symtab)
  102. #define elf_canonicalize_dynamic_symtab \
  103.   NAME(bfd_elf,canonicalize_dynamic_symtab)
  104. #define elf_make_empty_symbol        NAME(bfd_elf,make_empty_symbol)
  105. #define elf_get_symbol_info        NAME(bfd_elf,get_symbol_info)
  106. #define elf_get_lineno            NAME(bfd_elf,get_lineno)
  107. #define elf_set_arch_mach        NAME(bfd_elf,set_arch_mach)
  108. #define elf_find_nearest_line        NAME(bfd_elf,find_nearest_line)
  109. #define elf_sizeof_headers        NAME(bfd_elf,sizeof_headers)
  110. #define elf_set_section_contents    NAME(bfd_elf,set_section_contents)
  111. #define elf_no_info_to_howto        NAME(bfd_elf,no_info_to_howto)
  112. #define elf_no_info_to_howto_rel    NAME(bfd_elf,no_info_to_howto_rel)
  113. #define elf_new_section_hook        NAME(bfd_elf,new_section_hook)
  114. #define write_relocs            NAME(bfd_elf,_write_relocs)
  115. #define elf_find_section        NAME(bfd_elf,find_section)
  116. #define elf_bfd_link_add_symbols    NAME(bfd_elf,bfd_link_add_symbols)
  117. #define elf_add_dynamic_entry        NAME(bfd_elf,add_dynamic_entry)
  118. #define elf_link_create_dynamic_sections \
  119.   NAME(bfd_elf,link_create_dynamic_sections)
  120. #define elf_link_record_dynamic_symbol  \
  121.   NAME(bfd_elf,link_record_dynamic_symbol)
  122. #define elf_bfd_final_link        NAME(bfd_elf,bfd_final_link)
  123.  
  124. #if ARCH_SIZE == 64
  125. #define ELF_R_INFO(X,Y)    ELF64_R_INFO(X,Y)
  126. #define ELF_R_SYM(X)    ELF64_R_SYM(X)
  127. #define ELF_R_TYPE(X)    ELF64_R_TYPE(X)
  128. #define ELFCLASS    ELFCLASS64
  129. #define FILE_ALIGN    8
  130. #define LOG_FILE_ALIGN    3
  131. #endif
  132. #if ARCH_SIZE == 32
  133. #define ELF_R_INFO(X,Y)    ELF32_R_INFO(X,Y)
  134. #define ELF_R_SYM(X)    ELF32_R_SYM(X)
  135. #define ELF_R_TYPE(X)    ELF32_R_TYPE(X)
  136. #define ELFCLASS    ELFCLASS32
  137. #define FILE_ALIGN    4
  138. #define LOG_FILE_ALIGN    2
  139. #endif
  140.  
  141. /* Forward declarations of static functions */
  142.  
  143. static struct bfd_strtab_hash *elf_stringtab_init PARAMS ((void));
  144. static asection *section_from_elf_index PARAMS ((bfd *, unsigned int));
  145.  
  146. static int elf_section_from_bfd_section PARAMS ((bfd *, struct sec *));
  147.  
  148. static long elf_slurp_symbol_table PARAMS ((bfd *, asymbol **, boolean));
  149.  
  150. static boolean elf_slurp_reloc_table PARAMS ((bfd *, asection *, asymbol **));
  151.  
  152. static int elf_symbol_from_bfd_symbol PARAMS ((bfd *,
  153.                          struct symbol_cache_entry **));
  154.  
  155. static boolean elf_compute_section_file_positions
  156.   PARAMS ((bfd *, struct bfd_link_info *));
  157. static boolean prep_headers PARAMS ((bfd *));
  158. static void elf_fake_sections PARAMS ((bfd *, asection *, PTR));
  159. static boolean assign_section_numbers PARAMS ((bfd *));
  160. static file_ptr align_file_position PARAMS ((file_ptr));
  161. static file_ptr assign_file_position_for_section
  162.   PARAMS ((Elf_Internal_Shdr *, file_ptr, boolean));
  163. static boolean assign_file_positions_except_relocs PARAMS ((bfd *, boolean));
  164. static int elf_sort_hdrs PARAMS ((const PTR, const PTR));
  165. static void assign_file_positions_for_relocs PARAMS ((bfd *));
  166. static bfd_size_type get_program_header_size PARAMS ((bfd *,
  167.                               Elf_Internal_Shdr **,
  168.                               unsigned int,
  169.                               bfd_vma));
  170. static file_ptr map_program_segments
  171.   PARAMS ((bfd *, file_ptr, Elf_Internal_Shdr *, Elf_Internal_Shdr **,
  172.        bfd_size_type));
  173.  
  174. static boolean elf_map_symbols PARAMS ((bfd *));
  175. static boolean swap_out_syms PARAMS ((bfd *, struct bfd_strtab_hash **));
  176.  
  177. static boolean bfd_section_from_shdr PARAMS ((bfd *, unsigned int shindex));
  178.  
  179. #ifdef DEBUG
  180. static void elf_debug_section PARAMS ((int, Elf_Internal_Shdr *));
  181. static void elf_debug_file PARAMS ((Elf_Internal_Ehdr *));
  182. #endif
  183.  
  184. #define elf_string_from_elf_strtab(abfd,strindex) \
  185.      elf_string_from_elf_section(abfd,elf_elfheader(abfd)->e_shstrndx,strindex)
  186.  
  187. /* Structure swapping routines */
  188.  
  189. /* Should perhaps use put_offset, put_word, etc.  For now, the two versions
  190.    can be handled by explicitly specifying 32 bits or "the long type".  */
  191. #if ARCH_SIZE == 64
  192. #define put_word    bfd_h_put_64
  193. #define get_word    bfd_h_get_64
  194. #endif
  195. #if ARCH_SIZE == 32
  196. #define put_word    bfd_h_put_32
  197. #define get_word    bfd_h_get_32
  198. #endif
  199.  
  200. /* Translate an ELF symbol in external format into an ELF symbol in internal
  201.    format. */
  202.  
  203. void
  204. elf_swap_symbol_in (abfd, src, dst)
  205.      bfd *abfd;
  206.      Elf_External_Sym *src;
  207.      Elf_Internal_Sym *dst;
  208. {
  209.   dst->st_name = bfd_h_get_32 (abfd, (bfd_byte *) src->st_name);
  210.   dst->st_value = get_word (abfd, (bfd_byte *) src->st_value);
  211.   dst->st_size = get_word (abfd, (bfd_byte *) src->st_size);
  212.   dst->st_info = bfd_h_get_8 (abfd, (bfd_byte *) src->st_info);
  213.   dst->st_other = bfd_h_get_8 (abfd, (bfd_byte *) src->st_other);
  214.   dst->st_shndx = bfd_h_get_16 (abfd, (bfd_byte *) src->st_shndx);
  215. }
  216.  
  217. /* Translate an ELF symbol in internal format into an ELF symbol in external
  218.    format. */
  219.  
  220. void
  221. elf_swap_symbol_out (abfd, src, dst)
  222.      bfd *abfd;
  223.      Elf_Internal_Sym *src;
  224.      Elf_External_Sym *dst;
  225. {
  226.   bfd_h_put_32 (abfd, src->st_name, dst->st_name);
  227.   put_word (abfd, src->st_value, dst->st_value);
  228.   put_word (abfd, src->st_size, dst->st_size);
  229.   bfd_h_put_8 (abfd, src->st_info, dst->st_info);
  230.   bfd_h_put_8 (abfd, src->st_other, dst->st_other);
  231.   bfd_h_put_16 (abfd, src->st_shndx, dst->st_shndx);
  232. }
  233.  
  234.  
  235. /* Translate an ELF file header in external format into an ELF file header in
  236.    internal format. */
  237.  
  238. static void
  239. elf_swap_ehdr_in (abfd, src, dst)
  240.      bfd *abfd;
  241.      Elf_External_Ehdr *src;
  242.      Elf_Internal_Ehdr *dst;
  243. {
  244.   memcpy (dst->e_ident, src->e_ident, EI_NIDENT);
  245.   dst->e_type = bfd_h_get_16 (abfd, (bfd_byte *) src->e_type);
  246.   dst->e_machine = bfd_h_get_16 (abfd, (bfd_byte *) src->e_machine);
  247.   dst->e_version = bfd_h_get_32 (abfd, (bfd_byte *) src->e_version);
  248.   dst->e_entry = get_word (abfd, (bfd_byte *) src->e_entry);
  249.   dst->e_phoff = get_word (abfd, (bfd_byte *) src->e_phoff);
  250.   dst->e_shoff = get_word (abfd, (bfd_byte *) src->e_shoff);
  251.   dst->e_flags = bfd_h_get_32 (abfd, (bfd_byte *) src->e_flags);
  252.   dst->e_ehsize = bfd_h_get_16 (abfd, (bfd_byte *) src->e_ehsize);
  253.   dst->e_phentsize = bfd_h_get_16 (abfd, (bfd_byte *) src->e_phentsize);
  254.   dst->e_phnum = bfd_h_get_16 (abfd, (bfd_byte *) src->e_phnum);
  255.   dst->e_shentsize = bfd_h_get_16 (abfd, (bfd_byte *) src->e_shentsize);
  256.   dst->e_shnum = bfd_h_get_16 (abfd, (bfd_byte *) src->e_shnum);
  257.   dst->e_shstrndx = bfd_h_get_16 (abfd, (bfd_byte *) src->e_shstrndx);
  258. }
  259.  
  260. /* Translate an ELF file header in internal format into an ELF file header in
  261.    external format. */
  262.  
  263. static void
  264. elf_swap_ehdr_out (abfd, src, dst)
  265.      bfd *abfd;
  266.      Elf_Internal_Ehdr *src;
  267.      Elf_External_Ehdr *dst;
  268. {
  269.   memcpy (dst->e_ident, src->e_ident, EI_NIDENT);
  270.   /* note that all elements of dst are *arrays of unsigned char* already... */
  271.   bfd_h_put_16 (abfd, src->e_type, dst->e_type);
  272.   bfd_h_put_16 (abfd, src->e_machine, dst->e_machine);
  273.   bfd_h_put_32 (abfd, src->e_version, dst->e_version);
  274.   put_word (abfd, src->e_entry, dst->e_entry);
  275.   put_word (abfd, src->e_phoff, dst->e_phoff);
  276.   put_word (abfd, src->e_shoff, dst->e_shoff);
  277.   bfd_h_put_32 (abfd, src->e_flags, dst->e_flags);
  278.   bfd_h_put_16 (abfd, src->e_ehsize, dst->e_ehsize);
  279.   bfd_h_put_16 (abfd, src->e_phentsize, dst->e_phentsize);
  280.   bfd_h_put_16 (abfd, src->e_phnum, dst->e_phnum);
  281.   bfd_h_put_16 (abfd, src->e_shentsize, dst->e_shentsize);
  282.   bfd_h_put_16 (abfd, src->e_shnum, dst->e_shnum);
  283.   bfd_h_put_16 (abfd, src->e_shstrndx, dst->e_shstrndx);
  284. }
  285.  
  286.  
  287. /* Translate an ELF section header table entry in external format into an
  288.    ELF section header table entry in internal format. */
  289.  
  290. static void
  291. elf_swap_shdr_in (abfd, src, dst)
  292.      bfd *abfd;
  293.      Elf_External_Shdr *src;
  294.      Elf_Internal_Shdr *dst;
  295. {
  296.   dst->sh_name = bfd_h_get_32 (abfd, (bfd_byte *) src->sh_name);
  297.   dst->sh_type = bfd_h_get_32 (abfd, (bfd_byte *) src->sh_type);
  298.   dst->sh_flags = get_word (abfd, (bfd_byte *) src->sh_flags);
  299.   dst->sh_addr = get_word (abfd, (bfd_byte *) src->sh_addr);
  300.   dst->sh_offset = get_word (abfd, (bfd_byte *) src->sh_offset);
  301.   dst->sh_size = get_word (abfd, (bfd_byte *) src->sh_size);
  302.   dst->sh_link = bfd_h_get_32 (abfd, (bfd_byte *) src->sh_link);
  303.   dst->sh_info = bfd_h_get_32 (abfd, (bfd_byte *) src->sh_info);
  304.   dst->sh_addralign = get_word (abfd, (bfd_byte *) src->sh_addralign);
  305.   dst->sh_entsize = get_word (abfd, (bfd_byte *) src->sh_entsize);
  306.   dst->bfd_section = NULL;
  307.   dst->contents = NULL;
  308. }
  309.  
  310. /* Translate an ELF section header table entry in internal format into an
  311.    ELF section header table entry in external format. */
  312.  
  313. static void
  314. elf_swap_shdr_out (abfd, src, dst)
  315.      bfd *abfd;
  316.      Elf_Internal_Shdr *src;
  317.      Elf_External_Shdr *dst;
  318. {
  319.   /* note that all elements of dst are *arrays of unsigned char* already... */
  320.   bfd_h_put_32 (abfd, src->sh_name, dst->sh_name);
  321.   bfd_h_put_32 (abfd, src->sh_type, dst->sh_type);
  322.   put_word (abfd, src->sh_flags, dst->sh_flags);
  323.   put_word (abfd, src->sh_addr, dst->sh_addr);
  324.   put_word (abfd, src->sh_offset, dst->sh_offset);
  325.   put_word (abfd, src->sh_size, dst->sh_size);
  326.   bfd_h_put_32 (abfd, src->sh_link, dst->sh_link);
  327.   bfd_h_put_32 (abfd, src->sh_info, dst->sh_info);
  328.   put_word (abfd, src->sh_addralign, dst->sh_addralign);
  329.   put_word (abfd, src->sh_entsize, dst->sh_entsize);
  330. }
  331.  
  332.  
  333. /* Translate an ELF program header table entry in external format into an
  334.    ELF program header table entry in internal format. */
  335.  
  336. static void
  337. elf_swap_phdr_in (abfd, src, dst)
  338.      bfd *abfd;
  339.      Elf_External_Phdr *src;
  340.      Elf_Internal_Phdr *dst;
  341. {
  342.   dst->p_type = bfd_h_get_32 (abfd, (bfd_byte *) src->p_type);
  343.   dst->p_flags = bfd_h_get_32 (abfd, (bfd_byte *) src->p_flags);
  344.   dst->p_offset = get_word (abfd, (bfd_byte *) src->p_offset);
  345.   dst->p_vaddr = get_word (abfd, (bfd_byte *) src->p_vaddr);
  346.   dst->p_paddr = get_word (abfd, (bfd_byte *) src->p_paddr);
  347.   dst->p_filesz = get_word (abfd, (bfd_byte *) src->p_filesz);
  348.   dst->p_memsz = get_word (abfd, (bfd_byte *) src->p_memsz);
  349.   dst->p_align = get_word (abfd, (bfd_byte *) src->p_align);
  350. }
  351.  
  352. static void
  353. elf_swap_phdr_out (abfd, src, dst)
  354.      bfd *abfd;
  355.      Elf_Internal_Phdr *src;
  356.      Elf_External_Phdr *dst;
  357. {
  358.   /* note that all elements of dst are *arrays of unsigned char* already... */
  359.   bfd_h_put_32 (abfd, src->p_type, dst->p_type);
  360.   put_word (abfd, src->p_offset, dst->p_offset);
  361.   put_word (abfd, src->p_vaddr, dst->p_vaddr);
  362.   put_word (abfd, src->p_paddr, dst->p_paddr);
  363.   put_word (abfd, src->p_filesz, dst->p_filesz);
  364.   put_word (abfd, src->p_memsz, dst->p_memsz);
  365.   bfd_h_put_32 (abfd, src->p_flags, dst->p_flags);
  366.   put_word (abfd, src->p_align, dst->p_align);
  367. }
  368.  
  369. /* Translate an ELF reloc from external format to internal format. */
  370. INLINE void
  371. elf_swap_reloc_in (abfd, src, dst)
  372.      bfd *abfd;
  373.      Elf_External_Rel *src;
  374.      Elf_Internal_Rel *dst;
  375. {
  376.   dst->r_offset = get_word (abfd, (bfd_byte *) src->r_offset);
  377.   dst->r_info = get_word (abfd, (bfd_byte *) src->r_info);
  378. }
  379.  
  380. INLINE void
  381. elf_swap_reloca_in (abfd, src, dst)
  382.      bfd *abfd;
  383.      Elf_External_Rela *src;
  384.      Elf_Internal_Rela *dst;
  385. {
  386.   dst->r_offset = get_word (abfd, (bfd_byte *) src->r_offset);
  387.   dst->r_info = get_word (abfd, (bfd_byte *) src->r_info);
  388.   dst->r_addend = get_word (abfd, (bfd_byte *) src->r_addend);
  389. }
  390.  
  391. /* Translate an ELF reloc from internal format to external format. */
  392. INLINE void
  393. elf_swap_reloc_out (abfd, src, dst)
  394.      bfd *abfd;
  395.      Elf_Internal_Rel *src;
  396.      Elf_External_Rel *dst;
  397. {
  398.   put_word (abfd, src->r_offset, dst->r_offset);
  399.   put_word (abfd, src->r_info, dst->r_info);
  400. }
  401.  
  402. INLINE void
  403. elf_swap_reloca_out (abfd, src, dst)
  404.      bfd *abfd;
  405.      Elf_Internal_Rela *src;
  406.      Elf_External_Rela *dst;
  407. {
  408.   put_word (abfd, src->r_offset, dst->r_offset);
  409.   put_word (abfd, src->r_info, dst->r_info);
  410.   put_word (abfd, src->r_addend, dst->r_addend);
  411. }
  412.  
  413. INLINE void
  414. elf_swap_dyn_in (abfd, src, dst)
  415.      bfd *abfd;
  416.      const Elf_External_Dyn *src;
  417.      Elf_Internal_Dyn *dst;
  418. {
  419.   dst->d_tag = get_word (abfd, src->d_tag);
  420.   dst->d_un.d_val = get_word (abfd, src->d_un.d_val);
  421. }
  422.  
  423. INLINE void
  424. elf_swap_dyn_out (abfd, src, dst)
  425.      bfd *abfd;
  426.      const Elf_Internal_Dyn *src;
  427.      Elf_External_Dyn *dst;
  428. {
  429.   put_word (abfd, src->d_tag, dst->d_tag);
  430.   put_word (abfd, src->d_un.d_val, dst->d_un.d_val);
  431. }
  432.  
  433. /* Allocate an ELF string table--force the first byte to be zero.  */
  434.  
  435. static struct bfd_strtab_hash *
  436. elf_stringtab_init ()
  437. {
  438.   struct bfd_strtab_hash *ret;
  439.  
  440.   ret = _bfd_stringtab_init ();
  441.   if (ret != NULL)
  442.     {
  443.       bfd_size_type loc;
  444.  
  445.       loc = _bfd_stringtab_add (ret, "", true, false);
  446.       BFD_ASSERT (loc == 0 || loc == (bfd_size_type) -1);
  447.       if (loc == (bfd_size_type) -1)
  448.     {
  449.       _bfd_stringtab_free (ret);
  450.       ret = NULL;
  451.     }
  452.     }
  453.   return ret;
  454. }
  455.  
  456. /* ELF .o/exec file reading */
  457.  
  458. /* Create a new bfd section from an ELF section header. */
  459.  
  460. static boolean
  461. bfd_section_from_shdr (abfd, shindex)
  462.      bfd *abfd;
  463.      unsigned int shindex;
  464. {
  465.   Elf_Internal_Shdr *hdr = elf_elfsections (abfd)[shindex];
  466.   Elf_Internal_Ehdr *ehdr = elf_elfheader (abfd);
  467.   char *name;
  468.  
  469.   name = elf_string_from_elf_strtab (abfd, hdr->sh_name);
  470.  
  471.   switch (hdr->sh_type)
  472.     {
  473.     case SHT_NULL:
  474.       /* Inactive section. Throw it away.  */
  475.       return true;
  476.  
  477.     case SHT_PROGBITS:    /* Normal section with contents.  */
  478.     case SHT_DYNAMIC:    /* Dynamic linking information.  */
  479.     case SHT_NOBITS:    /* .bss section.  */
  480.     case SHT_HASH:    /* .hash section.  */
  481.       return _bfd_elf_make_section_from_shdr (abfd, hdr, name);
  482.  
  483.     case SHT_SYMTAB:        /* A symbol table */
  484.       if (elf_onesymtab (abfd) == shindex)
  485.     return true;
  486.  
  487.       BFD_ASSERT (hdr->sh_entsize == sizeof (Elf_External_Sym));
  488.       BFD_ASSERT (elf_onesymtab (abfd) == 0);
  489.       elf_onesymtab (abfd) = shindex;
  490.       elf_tdata (abfd)->symtab_hdr = *hdr;
  491.       elf_elfsections (abfd)[shindex] = &elf_tdata (abfd)->symtab_hdr;
  492.       abfd->flags |= HAS_SYMS;
  493.  
  494.       /* Sometimes a shared object will map in the symbol table.  If
  495.          SHF_ALLOC is set, and this is a shared object, then we also
  496.          treat this section as a BFD section.  We can not base the
  497.          decision purely on SHF_ALLOC, because that flag is sometimes
  498.          set in a relocateable object file, which would confuse the
  499.          linker.  */
  500.       if ((hdr->sh_flags & SHF_ALLOC) != 0
  501.       && (abfd->flags & DYNAMIC) != 0
  502.       && ! _bfd_elf_make_section_from_shdr (abfd, hdr, name))
  503.     return false;
  504.  
  505.       return true;
  506.  
  507.     case SHT_DYNSYM:        /* A dynamic symbol table */
  508.       if (elf_dynsymtab (abfd) == shindex)
  509.     return true;
  510.  
  511.       BFD_ASSERT (hdr->sh_entsize == sizeof (Elf_External_Sym));
  512.       BFD_ASSERT (elf_dynsymtab (abfd) == 0);
  513.       elf_dynsymtab (abfd) = shindex;
  514.       elf_tdata (abfd)->dynsymtab_hdr = *hdr;
  515.       elf_elfsections (abfd)[shindex] = &elf_tdata (abfd)->dynsymtab_hdr;
  516.       abfd->flags |= HAS_SYMS;
  517.  
  518.       /* Besides being a symbol table, we also treat this as a regular
  519.      section, so that objcopy can handle it.  */
  520.       return _bfd_elf_make_section_from_shdr (abfd, hdr, name);
  521.  
  522.     case SHT_STRTAB:        /* A string table */
  523.       if (hdr->bfd_section != NULL)
  524.     return true;
  525.       if (ehdr->e_shstrndx == shindex)
  526.     {
  527.       elf_tdata (abfd)->shstrtab_hdr = *hdr;
  528.       elf_elfsections (abfd)[shindex] = &elf_tdata (abfd)->shstrtab_hdr;
  529.       return true;
  530.     }
  531.       {
  532.     unsigned int i;
  533.  
  534.     for (i = 1; i < ehdr->e_shnum; i++)
  535.       {
  536.         Elf_Internal_Shdr *hdr2 = elf_elfsections (abfd)[i];
  537.         if (hdr2->sh_link == shindex)
  538.           {
  539.         if (! bfd_section_from_shdr (abfd, i))
  540.           return false;
  541.         if (elf_onesymtab (abfd) == i)
  542.           {
  543.             elf_tdata (abfd)->strtab_hdr = *hdr;
  544.             elf_elfsections (abfd)[shindex] =
  545.               &elf_tdata (abfd)->strtab_hdr;
  546.             return true;
  547.           }
  548.         if (elf_dynsymtab (abfd) == i)
  549.           {
  550.             elf_tdata (abfd)->dynstrtab_hdr = *hdr;
  551.             elf_elfsections (abfd)[shindex] =
  552.               &elf_tdata (abfd)->dynstrtab_hdr;
  553.             /* We also treat this as a regular section, so
  554.                that objcopy can handle it.  */
  555.             break;
  556.           }
  557. #if 0 /* Not handling other string tables specially right now.  */
  558.         hdr2 = elf_elfsections (abfd)[i];    /* in case it moved */
  559.         /* We have a strtab for some random other section.  */
  560.         newsect = (asection *) hdr2->bfd_section;
  561.         if (!newsect)
  562.           break;
  563.         hdr->bfd_section = newsect;
  564.         hdr2 = &elf_section_data (newsect)->str_hdr;
  565.         *hdr2 = *hdr;
  566.         elf_elfsections (abfd)[shindex] = hdr2;
  567. #endif
  568.           }
  569.       }
  570.       }
  571.  
  572.       return _bfd_elf_make_section_from_shdr (abfd, hdr, name);
  573.  
  574.     case SHT_REL:
  575.     case SHT_RELA:
  576.       /* *These* do a lot of work -- but build no sections!  */
  577.       {
  578.     asection *target_sect;
  579.     Elf_Internal_Shdr *hdr2;
  580.     int use_rela_p = get_elf_backend_data (abfd)->use_rela_p;
  581.  
  582.     /* Get the symbol table.  */
  583.     if (! bfd_section_from_shdr (abfd, hdr->sh_link))
  584.       return false;
  585.  
  586.     /* If this reloc section does not use the main symbol table we
  587.        don't treat it as a reloc section.  BFD can't adequately
  588.        represent such a section, so at least for now, we don't
  589.        try.  We just present it as a normal section.  */
  590.     if (hdr->sh_link != elf_onesymtab (abfd))
  591.       return _bfd_elf_make_section_from_shdr (abfd, hdr, name);
  592.  
  593.     /* Don't allow REL relocations on a machine that uses RELA and
  594.        vice versa.  */
  595.     /* @@ Actually, the generic ABI does suggest that both might be
  596.        used in one file.  But the four ABI Processor Supplements I
  597.        have access to right now all specify that only one is used on
  598.        each of those architectures.  It's conceivable that, e.g., a
  599.        bunch of absolute 32-bit relocs might be more compact in REL
  600.        form even on a RELA machine...  */
  601.     BFD_ASSERT (use_rela_p
  602.             ? (hdr->sh_type == SHT_RELA
  603.                && hdr->sh_entsize == sizeof (Elf_External_Rela))
  604.             : (hdr->sh_type == SHT_REL
  605.                && hdr->sh_entsize == sizeof (Elf_External_Rel)));
  606.  
  607.     if (! bfd_section_from_shdr (abfd, hdr->sh_info))
  608.       return false;
  609.     target_sect = section_from_elf_index (abfd, hdr->sh_info);
  610.     if (target_sect == NULL)
  611.       return false;
  612.  
  613.     hdr2 = &elf_section_data (target_sect)->rel_hdr;
  614.     *hdr2 = *hdr;
  615.     elf_elfsections (abfd)[shindex] = hdr2;
  616.     target_sect->reloc_count = hdr->sh_size / hdr->sh_entsize;
  617.     target_sect->flags |= SEC_RELOC;
  618.     target_sect->relocation = NULL;
  619.     target_sect->rel_filepos = hdr->sh_offset;
  620.     abfd->flags |= HAS_RELOC;
  621.     return true;
  622.       }
  623.       break;
  624.  
  625.     case SHT_NOTE:
  626. #if 0
  627.       fprintf (stderr, "Note Sections not yet supported.\n");
  628.       BFD_FAIL ();
  629. #endif
  630.       break;
  631.  
  632.     case SHT_SHLIB:
  633. #if 0
  634.       fprintf (stderr, "SHLIB Sections not supported (and non conforming.)\n");
  635. #endif
  636.       return true;
  637.  
  638.     default:
  639.       /* Check for any processor-specific section types.  */
  640.       {
  641.     struct elf_backend_data *bed = get_elf_backend_data (abfd);
  642.  
  643.     if (bed->elf_backend_section_from_shdr)
  644.       (*bed->elf_backend_section_from_shdr) (abfd, hdr, name);
  645.       }
  646.       break;
  647.     }
  648.  
  649.   return true;
  650. }
  651.  
  652. boolean
  653. elf_new_section_hook (abfd, sec)
  654.      bfd *abfd
  655.       ;
  656.      asection *sec;
  657. {
  658.   struct bfd_elf_section_data *sdata;
  659.  
  660.   sdata = (struct bfd_elf_section_data *) bfd_alloc (abfd, sizeof (*sdata));
  661.   if (!sdata)
  662.     {
  663.       bfd_set_error (bfd_error_no_memory);
  664.       return false;
  665.     }
  666.   sec->used_by_bfd = (PTR) sdata;
  667.   memset (sdata, 0, sizeof (*sdata));
  668.   return true;
  669. }
  670.  
  671. /* Create a new bfd section from an ELF program header.
  672.  
  673.    Since program segments have no names, we generate a synthetic name
  674.    of the form segment<NUM>, where NUM is generally the index in the
  675.    program header table.  For segments that are split (see below) we
  676.    generate the names segment<NUM>a and segment<NUM>b.
  677.  
  678.    Note that some program segments may have a file size that is different than
  679.    (less than) the memory size.  All this means is that at execution the
  680.    system must allocate the amount of memory specified by the memory size,
  681.    but only initialize it with the first "file size" bytes read from the
  682.    file.  This would occur for example, with program segments consisting
  683.    of combined data+bss.
  684.  
  685.    To handle the above situation, this routine generates TWO bfd sections
  686.    for the single program segment.  The first has the length specified by
  687.    the file size of the segment, and the second has the length specified
  688.    by the difference between the two sizes.  In effect, the segment is split
  689.    into it's initialized and uninitialized parts.
  690.  
  691.  */
  692.  
  693. static boolean
  694. bfd_section_from_phdr (abfd, hdr, index)
  695.      bfd *abfd;
  696.      Elf_Internal_Phdr *hdr;
  697.      int index;
  698. {
  699.   asection *newsect;
  700.   char *name;
  701.   char namebuf[64];
  702.   int split;
  703.  
  704.   split = ((hdr->p_memsz > 0) &&
  705.        (hdr->p_filesz > 0) &&
  706.        (hdr->p_memsz > hdr->p_filesz));
  707.   sprintf (namebuf, split ? "segment%da" : "segment%d", index);
  708.   name = bfd_alloc (abfd, strlen (namebuf) + 1);
  709.   if (!name)
  710.     {
  711.       bfd_set_error (bfd_error_no_memory);
  712.       return false;
  713.     }
  714.   strcpy (name, namebuf);
  715.   newsect = bfd_make_section (abfd, name);
  716.   if (newsect == NULL)
  717.     return false;
  718.   newsect->vma = hdr->p_vaddr;
  719.   newsect->_raw_size = hdr->p_filesz;
  720.   newsect->filepos = hdr->p_offset;
  721.   newsect->flags |= SEC_HAS_CONTENTS;
  722.   if (hdr->p_type == PT_LOAD)
  723.     {
  724.       newsect->flags |= SEC_ALLOC;
  725.       newsect->flags |= SEC_LOAD;
  726.       if (hdr->p_flags & PF_X)
  727.     {
  728.       /* FIXME: all we known is that it has execute PERMISSION,
  729.          may be data. */
  730.       newsect->flags |= SEC_CODE;
  731.     }
  732.     }
  733.   if (!(hdr->p_flags & PF_W))
  734.     {
  735.       newsect->flags |= SEC_READONLY;
  736.     }
  737.  
  738.   if (split)
  739.     {
  740.       sprintf (namebuf, "segment%db", index);
  741.       name = bfd_alloc (abfd, strlen (namebuf) + 1);
  742.       if (!name)
  743.     {
  744.       bfd_set_error (bfd_error_no_memory);
  745.       return false;
  746.     }
  747.       strcpy (name, namebuf);
  748.       newsect = bfd_make_section (abfd, name);
  749.       if (newsect == NULL)
  750.     return false;
  751.       newsect->vma = hdr->p_vaddr + hdr->p_filesz;
  752.       newsect->_raw_size = hdr->p_memsz - hdr->p_filesz;
  753.       if (hdr->p_type == PT_LOAD)
  754.     {
  755.       newsect->flags |= SEC_ALLOC;
  756.       if (hdr->p_flags & PF_X)
  757.         newsect->flags |= SEC_CODE;
  758.     }
  759.       if (!(hdr->p_flags & PF_W))
  760.     newsect->flags |= SEC_READONLY;
  761.     }
  762.  
  763.   return true;
  764. }
  765.  
  766. /* Begin processing a given object.
  767.  
  768.    First we validate the file by reading in the ELF header and checking
  769.    the magic number.  */
  770.  
  771. static INLINE boolean
  772. elf_file_p (x_ehdrp)
  773.      Elf_External_Ehdr *x_ehdrp;
  774. {
  775.   return ((x_ehdrp->e_ident[EI_MAG0] == ELFMAG0)
  776.       && (x_ehdrp->e_ident[EI_MAG1] == ELFMAG1)
  777.       && (x_ehdrp->e_ident[EI_MAG2] == ELFMAG2)
  778.       && (x_ehdrp->e_ident[EI_MAG3] == ELFMAG3));
  779. }
  780.  
  781. /* Check to see if the file associated with ABFD matches the target vector
  782.    that ABFD points to.
  783.  
  784.    Note that we may be called several times with the same ABFD, but different
  785.    target vectors, most of which will not match.  We have to avoid leaving
  786.    any side effects in ABFD, or any data it points to (like tdata), if the
  787.    file does not match the target vector.  */
  788.  
  789. const bfd_target *
  790. elf_object_p (abfd)
  791.      bfd *abfd;
  792. {
  793.   Elf_External_Ehdr x_ehdr;    /* Elf file header, external form */
  794.   Elf_Internal_Ehdr *i_ehdrp;    /* Elf file header, internal form */
  795.   Elf_External_Shdr x_shdr;    /* Section header table entry, external form */
  796.   Elf_Internal_Shdr *i_shdrp = NULL; /* Section header table, internal form */
  797.   unsigned int shindex;
  798.   char *shstrtab;        /* Internal copy of section header stringtab */
  799.   struct elf_backend_data *ebd;
  800.   struct elf_obj_tdata *preserved_tdata = elf_tdata (abfd);
  801.   struct elf_obj_tdata *new_tdata = NULL;
  802.  
  803.   /* Read in the ELF header in external format.  */
  804.  
  805.   if (bfd_read ((PTR) & x_ehdr, sizeof (x_ehdr), 1, abfd) != sizeof (x_ehdr))
  806.     {
  807.       if (bfd_get_error () != bfd_error_system_call)
  808.     goto got_wrong_format_error;
  809.       else
  810.     goto got_no_match;
  811.     }
  812.  
  813.   /* Now check to see if we have a valid ELF file, and one that BFD can
  814.      make use of.  The magic number must match, the address size ('class')
  815.      and byte-swapping must match our XVEC entry, and it must have a
  816.      section header table (FIXME: See comments re sections at top of this
  817.      file). */
  818.  
  819.   if ((elf_file_p (&x_ehdr) == false) ||
  820.       (x_ehdr.e_ident[EI_VERSION] != EV_CURRENT) ||
  821.       (x_ehdr.e_ident[EI_CLASS] != ELFCLASS))
  822.     goto got_wrong_format_error;
  823.  
  824.   /* Check that file's byte order matches xvec's */
  825.   switch (x_ehdr.e_ident[EI_DATA])
  826.     {
  827.     case ELFDATA2MSB:        /* Big-endian */
  828.       if (!abfd->xvec->header_byteorder_big_p)
  829.     goto got_wrong_format_error;
  830.       break;
  831.     case ELFDATA2LSB:        /* Little-endian */
  832.       if (abfd->xvec->header_byteorder_big_p)
  833.     goto got_wrong_format_error;
  834.       break;
  835.     case ELFDATANONE:        /* No data encoding specified */
  836.     default:            /* Unknown data encoding specified */
  837.       goto got_wrong_format_error;
  838.     }
  839.  
  840.   /* Allocate an instance of the elf_obj_tdata structure and hook it up to
  841.      the tdata pointer in the bfd.  */
  842.  
  843.   new_tdata = ((struct elf_obj_tdata *)
  844.            bfd_zalloc (abfd, sizeof (struct elf_obj_tdata)));
  845.   if (new_tdata == NULL)
  846.     goto got_no_memory_error;
  847.   elf_tdata (abfd) = new_tdata;
  848.  
  849.   /* Now that we know the byte order, swap in the rest of the header */
  850.   i_ehdrp = elf_elfheader (abfd);
  851.   elf_swap_ehdr_in (abfd, &x_ehdr, i_ehdrp);
  852. #if DEBUG & 1
  853.   elf_debug_file (i_ehdrp);
  854. #endif
  855.  
  856.   /* If there is no section header table, we're hosed. */
  857.   if (i_ehdrp->e_shoff == 0)
  858.     goto got_wrong_format_error;
  859.  
  860.   /* As a simple sanity check, verify that the what BFD thinks is the
  861.      size of each section header table entry actually matches the size
  862.      recorded in the file. */
  863.   if (i_ehdrp->e_shentsize != sizeof (x_shdr))
  864.     goto got_wrong_format_error;
  865.  
  866.   ebd = get_elf_backend_data (abfd);
  867.  
  868.   /* Check that the ELF e_machine field matches what this particular
  869.      BFD format expects.  */
  870.   if (ebd->elf_machine_code != i_ehdrp->e_machine)
  871.     {
  872.       const bfd_target * const *target_ptr;
  873.  
  874.       if (ebd->elf_machine_code != EM_NONE)
  875.     goto got_wrong_format_error;
  876.  
  877.       /* This is the generic ELF target.  Let it match any ELF target
  878.      for which we do not have a specific backend.  */
  879.       for (target_ptr = bfd_target_vector; *target_ptr != NULL; target_ptr++)
  880.     {
  881.       struct elf_backend_data *back;
  882.  
  883.       if ((*target_ptr)->flavour != bfd_target_elf_flavour)
  884.         continue;
  885.       back = (struct elf_backend_data *) (*target_ptr)->backend_data;
  886.       if (back->elf_machine_code == i_ehdrp->e_machine)
  887.         {
  888.           /* target_ptr is an ELF backend which matches this
  889.          object file, so reject the generic ELF target.  */
  890.           goto got_wrong_format_error;
  891.         }
  892.     }
  893.     }
  894.  
  895.   if (i_ehdrp->e_type == ET_EXEC)
  896.     abfd->flags |= EXEC_P;
  897.   else if (i_ehdrp->e_type == ET_DYN)
  898.     abfd->flags |= DYNAMIC;
  899.  
  900.   if (i_ehdrp->e_phnum > 0)
  901.     abfd->flags |= D_PAGED;
  902.  
  903.   if (! bfd_default_set_arch_mach (abfd, ebd->arch, 0))
  904.     goto got_no_match;
  905.  
  906.   /* Remember the entry point specified in the ELF file header. */
  907.   bfd_get_start_address (abfd) = i_ehdrp->e_entry;
  908.  
  909.   /* Allocate space for a copy of the section header table in
  910.      internal form, seek to the section header table in the file,
  911.      read it in, and convert it to internal form.  */
  912.   i_shdrp = ((Elf_Internal_Shdr *)
  913.          bfd_alloc (abfd, sizeof (*i_shdrp) * i_ehdrp->e_shnum));
  914.   elf_elfsections (abfd) = ((Elf_Internal_Shdr **)
  915.                 bfd_alloc (abfd,
  916.                        sizeof (i_shdrp) * i_ehdrp->e_shnum));
  917.   if (!i_shdrp || !elf_elfsections (abfd))
  918.     goto got_no_memory_error;
  919.   if (bfd_seek (abfd, i_ehdrp->e_shoff, SEEK_SET) != 0)
  920.     goto got_no_match;
  921.   for (shindex = 0; shindex < i_ehdrp->e_shnum; shindex++)
  922.     {
  923.       if (bfd_read ((PTR) & x_shdr, sizeof x_shdr, 1, abfd) != sizeof (x_shdr))
  924.     goto got_no_match;
  925.       elf_swap_shdr_in (abfd, &x_shdr, i_shdrp + shindex);
  926.       elf_elfsections (abfd)[shindex] = i_shdrp + shindex;
  927.     }
  928.   if (i_ehdrp->e_shstrndx)
  929.     {
  930.       if (! bfd_section_from_shdr (abfd, i_ehdrp->e_shstrndx))
  931.     goto got_no_match;
  932.     }
  933.  
  934.   /* Read in the string table containing the names of the sections.  We
  935.      will need the base pointer to this table later. */
  936.   /* We read this inline now, so that we don't have to go through
  937.      bfd_section_from_shdr with it (since this particular strtab is
  938.      used to find all of the ELF section names.) */
  939.  
  940.   shstrtab = elf_get_str_section (abfd, i_ehdrp->e_shstrndx);
  941.   if (!shstrtab)
  942.     goto got_no_match;
  943.  
  944.   /* Once all of the section headers have been read and converted, we
  945.      can start processing them.  Note that the first section header is
  946.      a dummy placeholder entry, so we ignore it.  */
  947.  
  948.   for (shindex = 1; shindex < i_ehdrp->e_shnum; shindex++)
  949.     {
  950.       if (! bfd_section_from_shdr (abfd, shindex))
  951.     goto got_no_match;
  952.     }
  953.  
  954.   /* Let the backend double check the format and override global
  955.      information.  */
  956.   if (ebd->elf_backend_object_p)
  957.     {
  958.       if ((*ebd->elf_backend_object_p) (abfd) == false)
  959.     goto got_wrong_format_error;
  960.     }
  961.  
  962.   return (abfd->xvec);
  963.  
  964. got_wrong_format_error:
  965.   bfd_set_error (bfd_error_wrong_format);
  966.   goto got_no_match;
  967. got_no_memory_error:
  968.   bfd_set_error (bfd_error_no_memory);
  969.   goto got_no_match;
  970. got_no_match:
  971.   if (new_tdata != NULL
  972.       && new_tdata->elf_sect_ptr != NULL)
  973.     bfd_release (abfd, new_tdata->elf_sect_ptr);
  974.   if (i_shdrp != NULL)
  975.     bfd_release (abfd, i_shdrp);
  976.   if (new_tdata != NULL)
  977.     bfd_release (abfd, new_tdata);
  978.   elf_tdata (abfd) = preserved_tdata;
  979.   return (NULL);
  980. }
  981.  
  982.  
  983. /* ELF .o/exec file writing */
  984.  
  985. /* Takes a bfd and a symbol, returns a pointer to the elf specific area
  986.    of the symbol if there is one.  */
  987. static INLINE elf_symbol_type *
  988. elf_symbol_from (ignore_abfd, symbol)
  989.      bfd *ignore_abfd;
  990.      asymbol *symbol;
  991. {
  992.   if (symbol->the_bfd->xvec->flavour != bfd_target_elf_flavour)
  993.     return 0;
  994.  
  995.   if (symbol->the_bfd->tdata.elf_obj_data == (struct elf_obj_tdata *) NULL)
  996.     return 0;
  997.  
  998.   return (elf_symbol_type *) symbol;
  999. }
  1000.  
  1001. void
  1002. write_relocs (abfd, sec, xxx)
  1003.      bfd *abfd;
  1004.      asection *sec;
  1005.      PTR xxx;
  1006. {
  1007.   Elf_Internal_Shdr *rela_hdr;
  1008.   Elf_External_Rela *outbound_relocas;
  1009.   Elf_External_Rel *outbound_relocs;
  1010.   int idx;
  1011.   int use_rela_p = get_elf_backend_data (abfd)->use_rela_p;
  1012.   asymbol *last_sym = 0;
  1013.   int last_sym_idx = 9999999;    /* should always be written before use */
  1014.  
  1015.   if ((sec->flags & SEC_RELOC) == 0)
  1016.     return;
  1017.  
  1018.   /* The linker backend writes the relocs out itself, and sets the
  1019.      reloc_count field to zero to inhibit writing them here.  Also,
  1020.      sometimes the SEC_RELOC flag gets set even when there aren't any
  1021.      relocs.  */
  1022.   if (sec->reloc_count == 0)
  1023.     return;
  1024.  
  1025.   rela_hdr = &elf_section_data (sec)->rel_hdr;
  1026.  
  1027.   rela_hdr->sh_size = rela_hdr->sh_entsize * sec->reloc_count;
  1028.   rela_hdr->contents = (void *) bfd_alloc (abfd, rela_hdr->sh_size);
  1029.   if (!rela_hdr->contents)
  1030.     {
  1031.       bfd_set_error (bfd_error_no_memory);
  1032.       abort ();            /* FIXME */
  1033.     }
  1034.  
  1035.   /* orelocation has the data, reloc_count has the count... */
  1036.   if (use_rela_p)
  1037.     {
  1038.       outbound_relocas = (Elf_External_Rela *) rela_hdr->contents;
  1039.  
  1040.       for (idx = 0; idx < sec->reloc_count; idx++)
  1041.     {
  1042.       Elf_Internal_Rela dst_rela;
  1043.       Elf_External_Rela *src_rela;
  1044.       arelent *ptr;
  1045.       asymbol *sym;
  1046.       int n;
  1047.  
  1048.       ptr = sec->orelocation[idx];
  1049.       src_rela = outbound_relocas + idx;
  1050.  
  1051.       /* The address of an ELF reloc is section relative for an object
  1052.          file, and absolute for an executable file or shared library.
  1053.          The address of a BFD reloc is always section relative.  */
  1054.       if ((abfd->flags & (EXEC_P | DYNAMIC)) == 0)
  1055.         dst_rela.r_offset = ptr->address;
  1056.       else
  1057.         dst_rela.r_offset = ptr->address + sec->vma;
  1058.  
  1059.       sym = *ptr->sym_ptr_ptr;
  1060.       if (sym == last_sym)
  1061.         n = last_sym_idx;
  1062.       else
  1063.         {
  1064.           last_sym = sym;
  1065.           last_sym_idx = n = elf_symbol_from_bfd_symbol (abfd, &sym);
  1066.         }
  1067.       dst_rela.r_info = ELF_R_INFO (n, ptr->howto->type);
  1068.  
  1069.       dst_rela.r_addend = ptr->addend;
  1070.       elf_swap_reloca_out (abfd, &dst_rela, src_rela);
  1071.     }
  1072.     }
  1073.   else
  1074.     /* REL relocations */
  1075.     {
  1076.       outbound_relocs = (Elf_External_Rel *) rela_hdr->contents;
  1077.  
  1078.       for (idx = 0; idx < sec->reloc_count; idx++)
  1079.     {
  1080.       Elf_Internal_Rel dst_rel;
  1081.       Elf_External_Rel *src_rel;
  1082.       arelent *ptr;
  1083.       int n;
  1084.       asymbol *sym;
  1085.  
  1086.       ptr = sec->orelocation[idx];
  1087.       sym = *ptr->sym_ptr_ptr;
  1088.       src_rel = outbound_relocs + idx;
  1089.  
  1090.       /* The address of an ELF reloc is section relative for an object
  1091.          file, and absolute for an executable file or shared library.
  1092.          The address of a BFD reloc is always section relative.  */
  1093.       if ((abfd->flags & (EXEC_P | DYNAMIC)) == 0)
  1094.         dst_rel.r_offset = ptr->address;
  1095.       else
  1096.         dst_rel.r_offset = ptr->address + sec->vma;
  1097.  
  1098.       if (sym == last_sym)
  1099.         n = last_sym_idx;
  1100.       else
  1101.         {
  1102.           last_sym = sym;
  1103.           last_sym_idx = n = elf_symbol_from_bfd_symbol (abfd, &sym);
  1104.         }
  1105.       dst_rel.r_info = ELF_R_INFO (n, ptr->howto->type);
  1106.  
  1107.       elf_swap_reloc_out (abfd, &dst_rel, src_rel);
  1108.     }
  1109.     }
  1110. }
  1111.  
  1112. /* Set up an ELF internal section header for a section.  */
  1113.  
  1114. /*ARGSUSED*/
  1115. static void
  1116. elf_fake_sections (abfd, asect, failedptrarg)
  1117.      bfd *abfd;
  1118.      asection *asect;
  1119.      PTR failedptrarg;
  1120. {
  1121.   boolean *failedptr = (boolean *) failedptrarg;
  1122.   Elf_Internal_Shdr *this_hdr;
  1123.  
  1124.   if (*failedptr)
  1125.     {
  1126.       /* We already failed; just get out of the bfd_map_over_sections
  1127.          loop.  */
  1128.       return;
  1129.     }
  1130.  
  1131.   this_hdr = &elf_section_data (asect)->this_hdr;
  1132.  
  1133.   this_hdr->sh_name = (unsigned long) _bfd_stringtab_add (elf_shstrtab (abfd),
  1134.                               asect->name,
  1135.                               true, false);
  1136.   if (this_hdr->sh_name == (unsigned long) -1)
  1137.     {
  1138.       *failedptr = true;
  1139.       return;
  1140.     }
  1141.  
  1142.   this_hdr->sh_flags = 0;
  1143.   if ((asect->flags & SEC_ALLOC) != 0)
  1144.     this_hdr->sh_addr = asect->vma;
  1145.   else
  1146.     this_hdr->sh_addr = 0;
  1147.   this_hdr->sh_offset = 0;
  1148.   this_hdr->sh_size = asect->_raw_size;
  1149.   this_hdr->sh_link = 0;
  1150.   this_hdr->sh_info = 0;
  1151.   this_hdr->sh_addralign = 1 << asect->alignment_power;
  1152.   this_hdr->sh_entsize = 0;
  1153.  
  1154.   this_hdr->bfd_section = asect;
  1155.   this_hdr->contents = NULL;
  1156.  
  1157.   /* FIXME: This should not be based on section names.  */
  1158.   if (strcmp (asect->name, ".dynstr") == 0)
  1159.     this_hdr->sh_type = SHT_STRTAB;
  1160.   else if (strcmp (asect->name, ".hash") == 0)
  1161.     {
  1162.       this_hdr->sh_type = SHT_HASH;
  1163.       this_hdr->sh_entsize = ARCH_SIZE / 8;
  1164.     }
  1165.   else if (strcmp (asect->name, ".dynsym") == 0)
  1166.     {
  1167.       this_hdr->sh_type = SHT_DYNSYM;
  1168.       this_hdr->sh_entsize = sizeof (Elf_External_Sym);
  1169.     }
  1170.   else if (strcmp (asect->name, ".dynamic") == 0)
  1171.     {
  1172.       this_hdr->sh_type = SHT_DYNAMIC;
  1173.       this_hdr->sh_entsize = sizeof (Elf_External_Dyn);
  1174.     }
  1175.   else if (strncmp (asect->name, ".rela", 5) == 0
  1176.        && get_elf_backend_data (abfd)->use_rela_p)
  1177.     {
  1178.       this_hdr->sh_type = SHT_RELA;
  1179.       this_hdr->sh_entsize = sizeof (Elf_External_Rela);
  1180.     }
  1181.   else if (strncmp (asect->name, ".rel", 4) == 0
  1182.        && ! get_elf_backend_data (abfd)->use_rela_p)
  1183.     {
  1184.       this_hdr->sh_type = SHT_REL;
  1185.       this_hdr->sh_entsize = sizeof (Elf_External_Rel);
  1186.     }
  1187.   else if (strcmp (asect->name, ".note") == 0)
  1188.     this_hdr->sh_type = SHT_NOTE;
  1189.   else if (strncmp (asect->name, ".stab", 5) == 0
  1190.        && strcmp (asect->name + strlen (asect->name) - 3, "str") == 0)
  1191.     this_hdr->sh_type = SHT_STRTAB;
  1192.   else if ((asect->flags & SEC_ALLOC) != 0
  1193.        && (asect->flags & SEC_LOAD) != 0)
  1194.     this_hdr->sh_type = SHT_PROGBITS;
  1195.   else if ((asect->flags & SEC_ALLOC) != 0
  1196.        && ((asect->flags & SEC_LOAD) == 0))
  1197.     {
  1198.       BFD_ASSERT (strcmp (asect->name, ".bss") == 0
  1199.           || strcmp (asect->name, ".sbss") == 0);
  1200.       this_hdr->sh_type = SHT_NOBITS;
  1201.     }
  1202.   else
  1203.     {
  1204.       /* Who knows?  */
  1205.       this_hdr->sh_type = SHT_PROGBITS;
  1206.     }
  1207.  
  1208.   if ((asect->flags & SEC_ALLOC) != 0)
  1209.     this_hdr->sh_flags |= SHF_ALLOC;
  1210.   if ((asect->flags & SEC_READONLY) == 0)
  1211.     this_hdr->sh_flags |= SHF_WRITE;
  1212.   if ((asect->flags & SEC_CODE) != 0)
  1213.     this_hdr->sh_flags |= SHF_EXECINSTR;
  1214.  
  1215.   /* Check for processor-specific section types.  */
  1216.   {
  1217.     struct elf_backend_data *bed = get_elf_backend_data (abfd);
  1218.  
  1219.     if (bed->elf_backend_fake_sections)
  1220.       (*bed->elf_backend_fake_sections) (abfd, this_hdr, asect);
  1221.   }
  1222.  
  1223.   /* If the section has relocs, set up a section header for the
  1224.      SHT_REL[A] section.  */
  1225.   if ((asect->flags & SEC_RELOC) != 0)
  1226.     {
  1227.       Elf_Internal_Shdr *rela_hdr;
  1228.       int use_rela_p = get_elf_backend_data (abfd)->use_rela_p;
  1229.       char *name;
  1230.  
  1231.       rela_hdr = &elf_section_data (asect)->rel_hdr;
  1232.       name = bfd_alloc (abfd, sizeof ".rela" + strlen (asect->name));
  1233.       if (name == NULL)
  1234.     {
  1235.       bfd_set_error (bfd_error_no_memory);
  1236.       *failedptr = true;
  1237.       return;
  1238.     }
  1239.       sprintf (name, "%s%s", use_rela_p ? ".rela" : ".rel", asect->name);
  1240.       rela_hdr->sh_name =
  1241.     (unsigned int) _bfd_stringtab_add (elf_shstrtab (abfd), name,
  1242.                        true, false);
  1243.       if (rela_hdr->sh_name == (unsigned int) -1)
  1244.     {
  1245.       *failedptr = true;
  1246.       return;
  1247.     }
  1248.       rela_hdr->sh_type = use_rela_p ? SHT_RELA : SHT_REL;
  1249.       rela_hdr->sh_entsize = (use_rela_p
  1250.                   ? sizeof (Elf_External_Rela)
  1251.                   : sizeof (Elf_External_Rel));
  1252.       rela_hdr->sh_addralign = FILE_ALIGN;
  1253.       rela_hdr->sh_flags = 0;
  1254.       rela_hdr->sh_addr = 0;
  1255.       rela_hdr->sh_size = 0;
  1256.       rela_hdr->sh_offset = 0;
  1257.     }
  1258. }
  1259.  
  1260. /* Assign all ELF section numbers.  The dummy first section is handled here
  1261.    too.  The link/info pointers for the standard section types are filled
  1262.    in here too, while we're at it.  */
  1263.  
  1264. static boolean
  1265. assign_section_numbers (abfd)
  1266.      bfd *abfd;
  1267. {
  1268.   struct elf_obj_tdata *t = elf_tdata (abfd);
  1269.   asection *sec;
  1270.   unsigned int section_number;
  1271.   Elf_Internal_Shdr **i_shdrp;
  1272.  
  1273.   section_number = 1;
  1274.  
  1275.   for (sec = abfd->sections; sec; sec = sec->next)
  1276.     {
  1277.       struct bfd_elf_section_data *d = elf_section_data (sec);
  1278.  
  1279.       d->this_idx = section_number++;
  1280.       if ((sec->flags & SEC_RELOC) == 0)
  1281.     d->rel_idx = 0;
  1282.       else
  1283.     d->rel_idx = section_number++;
  1284.     }
  1285.  
  1286.   t->shstrtab_section = section_number++;
  1287.   elf_elfheader (abfd)->e_shstrndx = t->shstrtab_section;
  1288.   t->shstrtab_hdr.sh_size = _bfd_stringtab_size (elf_shstrtab (abfd));
  1289.  
  1290.   if (abfd->symcount > 0)
  1291.     {
  1292.       t->symtab_section = section_number++;
  1293.       t->strtab_section = section_number++;
  1294.     }
  1295.  
  1296.   elf_elfheader (abfd)->e_shnum = section_number;
  1297.  
  1298.   /* Set up the list of section header pointers, in agreement with the
  1299.      indices.  */
  1300.   i_shdrp = ((Elf_Internal_Shdr **)
  1301.          bfd_alloc (abfd, section_number * sizeof (Elf_Internal_Shdr *)));
  1302.   if (i_shdrp == NULL)
  1303.     {
  1304.       bfd_set_error (bfd_error_no_memory);
  1305.       return false;
  1306.     }
  1307.  
  1308.   i_shdrp[0] = ((Elf_Internal_Shdr *)
  1309.         bfd_alloc (abfd, sizeof (Elf_Internal_Shdr)));
  1310.   if (i_shdrp[0] == NULL)
  1311.     {
  1312.       bfd_release (abfd, i_shdrp);
  1313.       bfd_set_error (bfd_error_no_memory);
  1314.       return false;
  1315.     }
  1316.   memset (i_shdrp[0], 0, sizeof (Elf_Internal_Shdr));
  1317.  
  1318.   elf_elfsections (abfd) = i_shdrp;
  1319.  
  1320.   i_shdrp[t->shstrtab_section] = &t->shstrtab_hdr;
  1321.   if (abfd->symcount > 0)
  1322.     {
  1323.       i_shdrp[t->symtab_section] = &t->symtab_hdr;
  1324.       i_shdrp[t->strtab_section] = &t->strtab_hdr;
  1325.       t->symtab_hdr.sh_link = t->strtab_section;
  1326.     }
  1327.   for (sec = abfd->sections; sec; sec = sec->next)
  1328.     {
  1329.       struct bfd_elf_section_data *d = elf_section_data (sec);
  1330.       asection *s;
  1331.       const char *name;
  1332.  
  1333.       i_shdrp[d->this_idx] = &d->this_hdr;
  1334.       if (d->rel_idx != 0)
  1335.     i_shdrp[d->rel_idx] = &d->rel_hdr;
  1336.  
  1337.       /* Fill in the sh_link and sh_info fields while we're at it.  */
  1338.  
  1339.       /* sh_link of a reloc section is the section index of the symbol
  1340.      table.  sh_info is the section index of the section to which
  1341.      the relocation entries apply.  */
  1342.       if (d->rel_idx != 0)
  1343.     {
  1344.       d->rel_hdr.sh_link = t->symtab_section;
  1345.       d->rel_hdr.sh_info = d->this_idx;
  1346.     }
  1347.  
  1348.       switch (d->this_hdr.sh_type)
  1349.     {
  1350.     case SHT_REL:
  1351.     case SHT_RELA:
  1352.       /* A reloc section which we are treating as a normal BFD
  1353.          section.  sh_link is the section index of the symbol
  1354.          table.  sh_info is the section index of the section to
  1355.          which the relocation entries apply.  We assume that an
  1356.          allocated reloc section uses the dynamic symbol table.
  1357.          FIXME: How can we be sure?  */
  1358.       s = bfd_get_section_by_name (abfd, ".dynsym");
  1359.       if (s != NULL)
  1360.         d->this_hdr.sh_link = elf_section_data (s)->this_idx;
  1361.  
  1362.       /* We look up the section the relocs apply to by name.  */
  1363.       name = sec->name;
  1364.       if (d->this_hdr.sh_type == SHT_REL)
  1365.         name += 4;
  1366.       else
  1367.         name += 5;
  1368.       s = bfd_get_section_by_name (abfd, name);
  1369.       if (s != NULL)
  1370.         d->this_hdr.sh_info = elf_section_data (s)->this_idx;
  1371.       break;
  1372.  
  1373.     case SHT_STRTAB:
  1374.       /* We assume that a section named .stab*str is a stabs
  1375.          string section.  We look for a section with the same name
  1376.          but without the trailing ``str'', and set its sh_link
  1377.          field to point to this section.  */
  1378.       if (strncmp (sec->name, ".stab", sizeof ".stab" - 1) == 0
  1379.           && strcmp (sec->name + strlen (sec->name) - 3, "str") == 0)
  1380.         {
  1381.           size_t len;
  1382.           char *alc;
  1383.  
  1384.           len = strlen (sec->name);
  1385.           alc = (char *) malloc (len - 2);
  1386.           if (alc == NULL)
  1387.         {
  1388.           bfd_set_error (bfd_error_no_memory);
  1389.           return false;
  1390.         }
  1391.           strncpy (alc, sec->name, len - 3);
  1392.           alc[len - 3] = '\0';
  1393.           s = bfd_get_section_by_name (abfd, alc);
  1394.           free (alc);
  1395.           if (s != NULL)
  1396.         {
  1397.           elf_section_data (s)->this_hdr.sh_link = d->this_idx;
  1398.  
  1399.           /* This is a .stab section.  */
  1400.           elf_section_data (s)->this_hdr.sh_entsize =
  1401.             4 + 2 * (ARCH_SIZE / 8);
  1402.         }
  1403.         }
  1404.       break;
  1405.  
  1406.     case SHT_DYNAMIC:
  1407.     case SHT_DYNSYM:
  1408.       /* sh_link is the section header index of the string table
  1409.          used for the dynamic entries or symbol table.  */
  1410.       s = bfd_get_section_by_name (abfd, ".dynstr");
  1411.       if (s != NULL)
  1412.         d->this_hdr.sh_link = elf_section_data (s)->this_idx;
  1413.       break;
  1414.  
  1415.     case SHT_HASH:
  1416.       /* sh_link is the section header index of the symbol table
  1417.          this hash table is for.  */
  1418.       s = bfd_get_section_by_name (abfd, ".dynsym");
  1419.       if (s != NULL)
  1420.         d->this_hdr.sh_link = elf_section_data (s)->this_idx;
  1421.       break;
  1422.     }
  1423.     }
  1424.  
  1425.   return true;
  1426. }
  1427.  
  1428. /* Map symbol from it's internal number to the external number, moving
  1429.    all local symbols to be at the head of the list.  */
  1430.  
  1431. static INLINE int
  1432. sym_is_global (abfd, sym)
  1433.      bfd *abfd;
  1434.      asymbol *sym;
  1435. {
  1436.   /* If the backend has a special mapping, use it.  */
  1437.   if (get_elf_backend_data (abfd)->elf_backend_sym_is_global)
  1438.     return ((*get_elf_backend_data (abfd)->elf_backend_sym_is_global)
  1439.         (abfd, sym));
  1440.  
  1441.   if (sym->flags & (BSF_GLOBAL | BSF_WEAK))
  1442.     {
  1443.       if (sym->flags & BSF_LOCAL)
  1444.     abort ();
  1445.       return 1;
  1446.     }
  1447.   if (sym->section == 0)
  1448.     {
  1449.       /* Is this valid?  */
  1450.       abort ();
  1451.  
  1452.       return 1;
  1453.     }
  1454.   if (bfd_is_und_section (sym->section))
  1455.     return 1;
  1456.   if (bfd_is_com_section (sym->section))
  1457.     return 1;
  1458.   if (sym->flags & (BSF_LOCAL | BSF_SECTION_SYM | BSF_FILE))
  1459.     return 0;
  1460.   return 0;
  1461. }
  1462.  
  1463. static boolean
  1464. elf_map_symbols (abfd)
  1465.      bfd *abfd;
  1466. {
  1467.   int symcount = bfd_get_symcount (abfd);
  1468.   asymbol **syms = bfd_get_outsymbols (abfd);
  1469.   asymbol **sect_syms;
  1470.   int num_locals = 0;
  1471.   int num_globals = 0;
  1472.   int num_locals2 = 0;
  1473.   int num_globals2 = 0;
  1474.   int max_index = 0;
  1475.   int num_sections = 0;
  1476.   int idx;
  1477.   asection *asect;
  1478.   asymbol **new_syms;
  1479.  
  1480. #ifdef DEBUG
  1481.   fprintf (stderr, "elf_map_symbols\n");
  1482.   fflush (stderr);
  1483. #endif
  1484.  
  1485.   /* Add a section symbol for each BFD section.  FIXME: Is this really
  1486.      necessary?  */
  1487.   for (asect = abfd->sections; asect; asect = asect->next)
  1488.     {
  1489.       if (max_index < asect->index)
  1490.     max_index = asect->index;
  1491.     }
  1492.  
  1493.   max_index++;
  1494.   sect_syms = (asymbol **) bfd_zalloc (abfd, max_index * sizeof (asymbol *));
  1495.   if (sect_syms == NULL)
  1496.     {
  1497.       bfd_set_error (bfd_error_no_memory);
  1498.       return false;
  1499.     }
  1500.   elf_section_syms (abfd) = sect_syms;
  1501.  
  1502.   for (idx = 0; idx < symcount; idx++)
  1503.     {
  1504.       if ((syms[idx]->flags & BSF_SECTION_SYM) != 0
  1505.       && syms[idx]->value == 0)
  1506.     {
  1507.       asection *sec;
  1508.  
  1509.       sec = syms[idx]->section;
  1510.       if (sec->owner != NULL)
  1511.         {
  1512.           if (sec->owner != abfd)
  1513.         {
  1514.           if (sec->output_offset != 0)
  1515.             continue;
  1516.           sec = sec->output_section;
  1517.           BFD_ASSERT (sec->owner == abfd);
  1518.         }
  1519.           sect_syms[sec->index] = syms[idx];
  1520.         }
  1521.     }
  1522.     }
  1523.  
  1524.   for (asect = abfd->sections; asect; asect = asect->next)
  1525.     {
  1526.       asymbol *sym;
  1527.  
  1528.       if (sect_syms[asect->index] != NULL)
  1529.     continue;
  1530.  
  1531.       sym = bfd_make_empty_symbol (abfd);
  1532.       if (sym == NULL)
  1533.     return false;
  1534.       sym->the_bfd = abfd;
  1535.       sym->name = asect->name;
  1536.       sym->value = 0;
  1537.       /* Set the flags to 0 to indicate that this one was newly added.  */
  1538.       sym->flags = 0;
  1539.       sym->section = asect;
  1540.       sect_syms[asect->index] = sym;
  1541.       num_sections++;
  1542. #ifdef DEBUG
  1543.       fprintf (stderr,
  1544.            "creating section symbol, name = %s, value = 0x%.8lx, index = %d, section = 0x%.8lx\n",
  1545.            asect->name, (long) asect->vma, asect->index, (long) asect);
  1546. #endif
  1547.     }
  1548.  
  1549.   /* Classify all of the symbols.  */
  1550.   for (idx = 0; idx < symcount; idx++)
  1551.     {
  1552.       if (!sym_is_global (abfd, syms[idx]))
  1553.     num_locals++;
  1554.       else
  1555.     num_globals++;
  1556.     }
  1557.   for (asect = abfd->sections; asect; asect = asect->next)
  1558.     {
  1559.       if (sect_syms[asect->index] != NULL
  1560.       && sect_syms[asect->index]->flags == 0)
  1561.     {
  1562.       sect_syms[asect->index]->flags = BSF_SECTION_SYM;
  1563.       if (!sym_is_global (abfd, sect_syms[asect->index]))
  1564.         num_locals++;
  1565.       else
  1566.         num_globals++;
  1567.       sect_syms[asect->index]->flags = 0;
  1568.     }
  1569.     }
  1570.  
  1571.   /* Now sort the symbols so the local symbols are first.  */
  1572.   new_syms = ((asymbol **)
  1573.           bfd_alloc (abfd,
  1574.              (num_locals + num_globals) * sizeof (asymbol *)));
  1575.   if (new_syms == NULL)
  1576.     {
  1577.       bfd_set_error (bfd_error_no_memory);
  1578.       return false;
  1579.     }
  1580.  
  1581.   for (idx = 0; idx < symcount; idx++)
  1582.     {
  1583.       asymbol *sym = syms[idx];
  1584.       int i;
  1585.  
  1586.       if (!sym_is_global (abfd, sym))
  1587.     i = num_locals2++;
  1588.       else
  1589.     i = num_locals + num_globals2++;
  1590.       new_syms[i] = sym;
  1591.       sym->udata.i = i + 1;
  1592.     }
  1593.   for (asect = abfd->sections; asect; asect = asect->next)
  1594.     {
  1595.       if (sect_syms[asect->index] != NULL
  1596.       && sect_syms[asect->index]->flags == 0)
  1597.     {
  1598.       asymbol *sym = sect_syms[asect->index];
  1599.       int i;
  1600.  
  1601.       sym->flags = BSF_SECTION_SYM;
  1602.       if (!sym_is_global (abfd, sym))
  1603.         i = num_locals2++;
  1604.       else
  1605.         i = num_locals + num_globals2++;
  1606.       new_syms[i] = sym;
  1607.       sym->udata.i = i + 1;
  1608.     }
  1609.     }
  1610.  
  1611.   bfd_set_symtab (abfd, new_syms, num_locals + num_globals);
  1612.  
  1613.   elf_num_locals (abfd) = num_locals;
  1614.   elf_num_globals (abfd) = num_globals;
  1615.   return true;
  1616. }
  1617.  
  1618. /* Compute the file positions we are going to put the sections at, and
  1619.    otherwise prepare to begin writing out the ELF file.  If LINK_INFO
  1620.    is not NULL, this is being called by the ELF backend linker.  */
  1621.  
  1622. static boolean
  1623. elf_compute_section_file_positions (abfd, link_info)
  1624.      bfd *abfd;
  1625.      struct bfd_link_info *link_info;
  1626. {
  1627.   struct elf_backend_data *bed = get_elf_backend_data (abfd);
  1628.   boolean failed;
  1629.   struct bfd_strtab_hash *strtab;
  1630.   Elf_Internal_Shdr *shstrtab_hdr;
  1631.  
  1632.   if (abfd->output_has_begun)
  1633.     return true;
  1634.  
  1635.   /* Do any elf backend specific processing first.  */
  1636.   if (bed->elf_backend_begin_write_processing)
  1637.     (*bed->elf_backend_begin_write_processing) (abfd, link_info);
  1638.  
  1639.   if (! prep_headers (abfd))
  1640.     return false;
  1641.  
  1642.   failed = false;
  1643.   bfd_map_over_sections (abfd, elf_fake_sections, &failed);
  1644.   if (failed)
  1645.     return false;
  1646.  
  1647.   if (!assign_section_numbers (abfd))
  1648.     return false;
  1649.  
  1650.   /* The backend linker builds symbol table information itself.  */
  1651.   if (link_info == NULL)
  1652.     {
  1653.       if (! swap_out_syms (abfd, &strtab))
  1654.     return false;
  1655.     }
  1656.  
  1657.   shstrtab_hdr = &elf_tdata (abfd)->shstrtab_hdr;
  1658.   /* sh_name was set in prep_headers.  */
  1659.   shstrtab_hdr->sh_type = SHT_STRTAB;
  1660.   shstrtab_hdr->sh_flags = 0;
  1661.   shstrtab_hdr->sh_addr = 0;
  1662.   shstrtab_hdr->sh_size = _bfd_stringtab_size (elf_shstrtab (abfd));
  1663.   shstrtab_hdr->sh_entsize = 0;
  1664.   shstrtab_hdr->sh_link = 0;
  1665.   shstrtab_hdr->sh_info = 0;
  1666.   /* sh_offset is set in assign_file_positions_for_symtabs_and_strtabs.  */
  1667.   shstrtab_hdr->sh_addralign = 1;
  1668.  
  1669.   if (!assign_file_positions_except_relocs (abfd,
  1670.                         link_info == NULL ? true : false))
  1671.     return false;
  1672.  
  1673.   if (link_info == NULL)
  1674.     {
  1675.       /* Now that we know where the .strtab section goes, write it
  1676.          out.  */
  1677.       if ((bfd_seek (abfd, elf_tdata (abfd)->strtab_hdr.sh_offset, SEEK_SET)
  1678.        != 0)
  1679.       || ! _bfd_stringtab_emit (abfd, strtab))
  1680.     return false;
  1681.       _bfd_stringtab_free (strtab);
  1682.     }
  1683.  
  1684.   abfd->output_has_begun = true;
  1685.  
  1686.   return true;
  1687. }
  1688.  
  1689.  
  1690. /* Align to the maximum file alignment that could be required for any
  1691.    ELF data structure.  */
  1692.  
  1693. static INLINE file_ptr
  1694. align_file_position (off)
  1695.      file_ptr off;
  1696. {
  1697.   return (off + FILE_ALIGN - 1) & ~(FILE_ALIGN - 1);
  1698. }
  1699.  
  1700. /* Assign a file position to a section, optionally aligning to the
  1701.    required section alignment.  */
  1702.  
  1703. static INLINE file_ptr
  1704. assign_file_position_for_section (i_shdrp, offset, align)
  1705.      Elf_Internal_Shdr *i_shdrp;
  1706.      file_ptr offset;
  1707.      boolean align;
  1708. {
  1709.   if (align)
  1710.     {
  1711.       unsigned int al;
  1712.  
  1713.       al = i_shdrp->sh_addralign;
  1714.       if (al > 1)
  1715.     offset = BFD_ALIGN (offset, al);
  1716.     }
  1717.   i_shdrp->sh_offset = offset;
  1718.   if (i_shdrp->bfd_section != NULL)
  1719.     i_shdrp->bfd_section->filepos = offset;
  1720.   if (i_shdrp->sh_type != SHT_NOBITS)
  1721.     offset += i_shdrp->sh_size;
  1722.   return offset;
  1723. }
  1724.  
  1725. /* Get the size of the program header.
  1726.  
  1727.    SORTED_HDRS, if non-NULL, is an array of COUNT pointers to headers sorted
  1728.    by VMA.  Non-allocated sections (!SHF_ALLOC) must appear last.  All
  1729.    section VMAs and sizes are known so we can compute the correct value.
  1730.    (??? This may not be perfectly true.  What cases do we miss?)
  1731.  
  1732.    If SORTED_HDRS is NULL we assume there are two segments: text and data
  1733.    (exclusive of .interp and .dynamic).
  1734.  
  1735.    If this is called by the linker before any of the section VMA's are set, it
  1736.    can't calculate the correct value for a strange memory layout.  This only
  1737.    happens when SIZEOF_HEADERS is used in a linker script.  In this case,
  1738.    SORTED_HDRS is NULL and we assume the normal scenario of one text and one
  1739.    data segment (exclusive of .interp and .dynamic).
  1740.  
  1741.    ??? User written scripts must either not use SIZEOF_HEADERS, or assume there
  1742.    will be two segments.  */
  1743.  
  1744. static bfd_size_type
  1745. get_program_header_size (abfd, sorted_hdrs, count, maxpagesize)
  1746.      bfd *abfd;
  1747.      Elf_Internal_Shdr **sorted_hdrs;
  1748.      unsigned int count;
  1749.      bfd_vma maxpagesize;
  1750. {
  1751.   size_t segs;
  1752.   asection *s;
  1753.  
  1754.   /* We can't return a different result each time we're called.  */
  1755.   if (elf_tdata (abfd)->program_header_size != 0)
  1756.     return elf_tdata (abfd)->program_header_size;
  1757.  
  1758.   if (sorted_hdrs != NULL)
  1759.     {
  1760.       unsigned int i;
  1761.       unsigned int last_type;
  1762.       Elf_Internal_Shdr **hdrpp;
  1763.       /* What we think the current segment's offset is.  */
  1764.       bfd_vma p_offset;
  1765.       /* What we think the current segment's address is.  */
  1766.       bfd_vma p_vaddr;
  1767.       /* How big we think the current segment is.  */
  1768.       bfd_vma p_memsz;
  1769.       /* What we think the current file offset is.  */
  1770.       bfd_vma file_offset;
  1771.       bfd_vma next_offset;
  1772.  
  1773.       /* Scan the headers and compute the number of segments required.  This
  1774.      code is intentionally similar to the code in map_program_segments.
  1775.  
  1776.      The `sh_offset' field isn't valid at this point, so we keep our own
  1777.      running total in `file_offset'.
  1778.  
  1779.      This works because section VMAs are already known.  */
  1780.  
  1781.       segs = 1;
  1782.       /* Make sure the first section goes in the first segment.  */
  1783.       file_offset = p_offset = sorted_hdrs[0]->sh_addr % maxpagesize;
  1784.       p_vaddr = sorted_hdrs[0]->sh_addr;
  1785.       p_memsz = 0;
  1786.       last_type = SHT_PROGBITS;
  1787.  
  1788.       for (i = 0, hdrpp = sorted_hdrs; i < count; i++, hdrpp++)
  1789.     {
  1790.       Elf_Internal_Shdr *hdr;
  1791.  
  1792.       hdr = *hdrpp;
  1793.  
  1794.       /* Ignore any section which will not be part of the process
  1795.          image.  */
  1796.       if ((hdr->sh_flags & SHF_ALLOC) == 0)
  1797.         continue;
  1798.  
  1799.       /* Keep track of where this and the next sections go.
  1800.          The section VMA must equal the file position modulo
  1801.          the page size.  */
  1802.       file_offset += (hdr->sh_addr - file_offset) % maxpagesize;
  1803.       next_offset = file_offset;
  1804.       if (hdr->sh_type != SHT_NOBITS)
  1805.         next_offset = file_offset + hdr->sh_size;
  1806.  
  1807.       /* If this section fits in the segment we are constructing, add
  1808.          it in.  */
  1809.       if ((file_offset - (p_offset + p_memsz)
  1810.            == hdr->sh_addr - (p_vaddr + p_memsz))
  1811.           && (last_type != SHT_NOBITS || hdr->sh_type == SHT_NOBITS))
  1812.         {
  1813.           bfd_size_type adjust;
  1814.  
  1815.           adjust = hdr->sh_addr - (p_vaddr + p_memsz);
  1816.           p_memsz += hdr->sh_size + adjust;
  1817.           file_offset = next_offset;
  1818.           last_type = hdr->sh_type;
  1819.           continue;
  1820.         }
  1821.  
  1822.       /* The section won't fit, start a new segment.  */
  1823.       ++segs;
  1824.  
  1825.       /* Initialize the segment.  */
  1826.       p_vaddr = hdr->sh_addr;
  1827.       p_memsz = hdr->sh_size;
  1828.       p_offset = file_offset;
  1829.       file_offset = next_offset;
  1830.  
  1831.       last_type = hdr->sh_type;
  1832.     }
  1833.     }
  1834.   else
  1835.     {
  1836.       /* Assume we will need exactly two PT_LOAD segments: one for text
  1837.      and one for data.  */
  1838.       segs = 2;
  1839.     }
  1840.  
  1841.   s = bfd_get_section_by_name (abfd, ".interp");
  1842.   if (s != NULL && (s->flags & SEC_LOAD) != 0)
  1843.     {
  1844.       /* If we have a loadable interpreter section, we need a
  1845.      PT_INTERP segment.  In this case, assume we also need a
  1846.      PT_PHDR segment, although that may not be true for all
  1847.      targets.  */
  1848.       segs += 2;
  1849.     }
  1850.  
  1851.   if (bfd_get_section_by_name (abfd, ".dynamic") != NULL)
  1852.     {
  1853.       /* We need a PT_DYNAMIC segment.  */
  1854.       ++segs;
  1855.     }
  1856.  
  1857.   elf_tdata (abfd)->program_header_size = segs * sizeof (Elf_External_Phdr);
  1858.   return elf_tdata (abfd)->program_header_size;
  1859. }
  1860.  
  1861. /* Create the program header.  OFF is the file offset where the
  1862.    program header should be written.  FIRST is the first loadable ELF
  1863.    section.  SORTED_HDRS is the ELF sections sorted by section
  1864.    address.  PHDR_SIZE is the size of the program header as returned
  1865.    by get_program_header_size.  */
  1866.  
  1867. static file_ptr
  1868. map_program_segments (abfd, off, first, sorted_hdrs, phdr_size)
  1869.      bfd *abfd;
  1870.      file_ptr off;
  1871.      Elf_Internal_Shdr *first;
  1872.      Elf_Internal_Shdr **sorted_hdrs;
  1873.      bfd_size_type phdr_size;
  1874. {
  1875.   Elf_Internal_Phdr phdrs[10];
  1876.   unsigned int phdr_count;
  1877.   Elf_Internal_Phdr *phdr;
  1878.   int phdr_size_adjust;
  1879.   unsigned int i;
  1880.   Elf_Internal_Shdr **hdrpp;
  1881.   asection *sinterp, *sdyn;
  1882.   unsigned int last_type;
  1883.   Elf_Internal_Ehdr *i_ehdrp;
  1884.  
  1885.   BFD_ASSERT ((abfd->flags & (EXEC_P | DYNAMIC)) != 0);
  1886.   BFD_ASSERT (phdr_size / sizeof (Elf_Internal_Phdr)
  1887.           <= sizeof phdrs / sizeof (phdrs[0]));
  1888.  
  1889.   phdr_count = 0;
  1890.   phdr = phdrs;
  1891.  
  1892.   phdr_size_adjust = 0;
  1893.  
  1894.   /* If we have a loadable .interp section, we must create a PT_INTERP
  1895.      segment which must precede all PT_LOAD segments.  We assume that
  1896.      we must also create a PT_PHDR segment, although that may not be
  1897.      true for all targets.  */
  1898.   sinterp = bfd_get_section_by_name (abfd, ".interp");
  1899.   if (sinterp != NULL && (sinterp->flags & SEC_LOAD) != 0)
  1900.     {
  1901.       BFD_ASSERT (first != NULL);
  1902.  
  1903.       phdr->p_type = PT_PHDR;
  1904.  
  1905.       phdr->p_offset = off;
  1906.  
  1907.       /* Account for any adjustment made because of the alignment of
  1908.      the first loadable section.  */
  1909.       phdr_size_adjust = (first->sh_offset - phdr_size) - off;
  1910.       BFD_ASSERT (phdr_size_adjust >= 0 && phdr_size_adjust < 128);
  1911.  
  1912.       /* The program header precedes all loadable sections.  This lets
  1913.      us compute its loadable address.  This depends on the linker
  1914.      script.  */
  1915.       phdr->p_vaddr = first->sh_addr - (phdr_size + phdr_size_adjust);
  1916.  
  1917.       phdr->p_paddr = 0;
  1918.       phdr->p_filesz = phdr_size;
  1919.       phdr->p_memsz = phdr_size;
  1920.  
  1921.       /* FIXME: UnixWare and Solaris set PF_X, Irix 5 does not.  */
  1922.       phdr->p_flags = PF_R | PF_X;
  1923.  
  1924.       phdr->p_align = FILE_ALIGN;
  1925.       BFD_ASSERT ((phdr->p_vaddr - phdr->p_offset) % FILE_ALIGN == 0);
  1926.  
  1927.       /* Include the ELF header in the first loadable segment.  */
  1928.       phdr_size_adjust += off;
  1929.  
  1930.       ++phdr_count;
  1931.       ++phdr;
  1932.  
  1933.       phdr->p_type = PT_INTERP;
  1934.       phdr->p_offset = sinterp->filepos;
  1935.       phdr->p_vaddr = sinterp->vma;
  1936.       phdr->p_paddr = 0;
  1937.       phdr->p_filesz = sinterp->_raw_size;
  1938.       phdr->p_memsz = sinterp->_raw_size;
  1939.       phdr->p_flags = PF_R;
  1940.       phdr->p_align = 1 << bfd_get_section_alignment (abfd, sinterp);
  1941.  
  1942.       ++phdr_count;
  1943.       ++phdr;
  1944.     }
  1945.  
  1946.   /* Look through the sections to see how they will be divided into
  1947.      program segments.  The sections must be arranged in order by
  1948.      sh_addr for this to work correctly.  */
  1949.   phdr->p_type = PT_NULL;
  1950.   last_type = SHT_PROGBITS;
  1951.   for (i = 1, hdrpp = sorted_hdrs;
  1952.        i < elf_elfheader (abfd)->e_shnum;
  1953.        i++, hdrpp++)
  1954.     {
  1955.       Elf_Internal_Shdr *hdr;
  1956.  
  1957.       hdr = *hdrpp;
  1958.  
  1959.       /* Ignore any section which will not be part of the process
  1960.      image.  */
  1961.       if ((hdr->sh_flags & SHF_ALLOC) == 0)
  1962.     continue;
  1963.  
  1964.       /* If this section fits in the segment we are constructing, add
  1965.      it in.  */
  1966.       if (phdr->p_type != PT_NULL
  1967.       && (hdr->sh_offset - (phdr->p_offset + phdr->p_memsz)
  1968.           == hdr->sh_addr - (phdr->p_vaddr + phdr->p_memsz))
  1969.       && (last_type != SHT_NOBITS || hdr->sh_type == SHT_NOBITS))
  1970.     {
  1971.       bfd_size_type adjust;
  1972.  
  1973.       adjust = hdr->sh_addr - (phdr->p_vaddr + phdr->p_memsz);
  1974.       phdr->p_memsz += hdr->sh_size + adjust;
  1975.       if (hdr->sh_type != SHT_NOBITS)
  1976.         phdr->p_filesz += hdr->sh_size + adjust;
  1977.       if ((hdr->sh_flags & SHF_WRITE) != 0)
  1978.         phdr->p_flags |= PF_W;
  1979.       if ((hdr->sh_flags & SHF_EXECINSTR) != 0)
  1980.         phdr->p_flags |= PF_X;
  1981.       last_type = hdr->sh_type;
  1982.       continue;
  1983.     }
  1984.  
  1985.       /* The section won't fit, start a new segment.  If we're already in one,
  1986.      move to the next one.  */
  1987.       if (phdr->p_type != PT_NULL)
  1988.     {
  1989.       ++phdr;
  1990.       ++phdr_count;
  1991.     }
  1992.  
  1993.       /* Initialize the segment.  */
  1994.       phdr->p_type = PT_LOAD;
  1995.       phdr->p_offset = hdr->sh_offset;
  1996.       phdr->p_vaddr = hdr->sh_addr;
  1997.       phdr->p_paddr = 0;
  1998.       if (hdr->sh_type == SHT_NOBITS)
  1999.     phdr->p_filesz = 0;
  2000.       else
  2001.     phdr->p_filesz = hdr->sh_size;
  2002.       phdr->p_memsz = hdr->sh_size;
  2003.       phdr->p_flags = PF_R;
  2004.       if ((hdr->sh_flags & SHF_WRITE) != 0)
  2005.     phdr->p_flags |= PF_W;
  2006.       if ((hdr->sh_flags & SHF_EXECINSTR) != 0)
  2007.     phdr->p_flags |= PF_X;
  2008.       phdr->p_align = get_elf_backend_data (abfd)->maxpagesize;
  2009.  
  2010.       if (hdr == first
  2011.       && sinterp != NULL
  2012.       && (sinterp->flags & SEC_LOAD) != 0)
  2013.     {
  2014.       phdr->p_offset -= phdr_size + phdr_size_adjust;
  2015.       phdr->p_vaddr -= phdr_size + phdr_size_adjust;
  2016.       phdr->p_filesz += phdr_size + phdr_size_adjust;
  2017.       phdr->p_memsz += phdr_size + phdr_size_adjust;
  2018.     }
  2019.  
  2020.       last_type = hdr->sh_type;
  2021.     }
  2022.  
  2023.   if (phdr->p_type != PT_NULL)
  2024.     {
  2025.       ++phdr;
  2026.       ++phdr_count;
  2027.     }
  2028.  
  2029.   /* If we have a .dynamic section, create a PT_DYNAMIC segment.  */
  2030.   sdyn = bfd_get_section_by_name (abfd, ".dynamic");
  2031.   if (sdyn != NULL && (sdyn->flags & SEC_LOAD) != 0)
  2032.     {
  2033.       phdr->p_type = PT_DYNAMIC;
  2034.       phdr->p_offset = sdyn->filepos;
  2035.       phdr->p_vaddr = sdyn->vma;
  2036.       phdr->p_paddr = 0;
  2037.       phdr->p_filesz = sdyn->_raw_size;
  2038.       phdr->p_memsz = sdyn->_raw_size;
  2039.       phdr->p_flags = PF_R;
  2040.       if ((sdyn->flags & SEC_READONLY) == 0)
  2041.     phdr->p_flags |= PF_W;
  2042.       if ((sdyn->flags & SEC_CODE) != 0)
  2043.     phdr->p_flags |= PF_X;
  2044.       phdr->p_align = 1 << bfd_get_section_alignment (abfd, sdyn);
  2045.  
  2046.       ++phdr;
  2047.       ++phdr_count;
  2048.     }
  2049.  
  2050.   /* Make sure the return value from get_program_header_size matches
  2051.      what we computed here.  Actually, it's OK if we allocated too
  2052.      much space in the program header.  */
  2053.   if (phdr_count > phdr_size / sizeof (Elf_External_Phdr))
  2054.     abort ();
  2055.  
  2056.   /* Set up program header information.  */
  2057.   i_ehdrp = elf_elfheader (abfd);
  2058.   i_ehdrp->e_phentsize = sizeof (Elf_External_Phdr);
  2059.   i_ehdrp->e_phoff = off;
  2060.   i_ehdrp->e_phnum = phdr_count;
  2061.  
  2062.   /* Save the program headers away.  I don't think anybody uses this
  2063.      information right now.  */
  2064.   elf_tdata (abfd)->phdr = ((Elf_Internal_Phdr *)
  2065.                 bfd_alloc (abfd,
  2066.                        (phdr_count
  2067.                     * sizeof (Elf_Internal_Phdr))));
  2068.   if (elf_tdata (abfd)->phdr == NULL && phdr_count != 0)
  2069.     {
  2070.       bfd_set_error (bfd_error_no_memory);
  2071.       return (file_ptr) -1;
  2072.     }
  2073.   memcpy (elf_tdata (abfd)->phdr, phdrs,
  2074.       phdr_count * sizeof (Elf_Internal_Phdr));
  2075.  
  2076.   /* Write out the program headers.  */
  2077.   if (bfd_seek (abfd, off, SEEK_SET) != 0)
  2078.     return (file_ptr) -1;
  2079.  
  2080.   for (i = 0, phdr = phdrs; i < phdr_count; i++, phdr++)
  2081.     {
  2082.       Elf_External_Phdr extphdr;
  2083.  
  2084.       elf_swap_phdr_out (abfd, phdr, &extphdr);
  2085.       if (bfd_write (&extphdr, sizeof (Elf_External_Phdr), 1, abfd)
  2086.       != sizeof (Elf_External_Phdr))
  2087.     return (file_ptr) -1;
  2088.     }
  2089.  
  2090.   return off + phdr_count * sizeof (Elf_External_Phdr);
  2091. }
  2092.  
  2093. /* Work out the file positions of all the sections.  This is called by
  2094.    elf_compute_section_file_positions.  All the section sizes and VMAs
  2095.    must be known before this is called.
  2096.  
  2097.    We do not consider reloc sections at this point, unless they form
  2098.    part of the loadable image.  Reloc sections are assigned file
  2099.    positions in assign_file_positions_for_relocs, which is called by
  2100.    write_object_contents and final_link.
  2101.  
  2102.    If DOSYMS is false, we do not assign file positions for the symbol
  2103.    table or the string table.  */
  2104.  
  2105. static boolean
  2106. assign_file_positions_except_relocs (abfd, dosyms)
  2107.      bfd *abfd;
  2108.      boolean dosyms;
  2109. {
  2110.   struct elf_obj_tdata * const tdata = elf_tdata (abfd);
  2111.   Elf_Internal_Ehdr * const i_ehdrp = elf_elfheader (abfd);
  2112.   Elf_Internal_Shdr ** const i_shdrpp = elf_elfsections (abfd);
  2113.   file_ptr off;
  2114.  
  2115.   /* Start after the ELF header.  */
  2116.   off = i_ehdrp->e_ehsize;
  2117.  
  2118.   if ((abfd->flags & (EXEC_P | DYNAMIC)) == 0)
  2119.     {
  2120.       Elf_Internal_Shdr **hdrpp;
  2121.       unsigned int i;
  2122.  
  2123.       /* We are not creating an executable, which means that we are
  2124.      not creating a program header, and that the actual order of
  2125.      the sections in the file is unimportant.  */
  2126.       for (i = 1, hdrpp = i_shdrpp + 1; i < i_ehdrp->e_shnum; i++, hdrpp++)
  2127.     {
  2128.       Elf_Internal_Shdr *hdr;
  2129.  
  2130.       hdr = *hdrpp;
  2131.       if (hdr->sh_type == SHT_REL || hdr->sh_type == SHT_RELA)
  2132.         {
  2133.           hdr->sh_offset = -1;
  2134.           continue;
  2135.         }
  2136.       if (! dosyms
  2137.           && (i == tdata->symtab_section
  2138.           || i == tdata->strtab_section))
  2139.         {
  2140.           hdr->sh_offset = -1;
  2141.           continue;
  2142.         }
  2143.       
  2144.       off = assign_file_position_for_section (hdr, off, true);
  2145.     }
  2146.     }
  2147.   else
  2148.     {
  2149.       file_ptr phdr_off;
  2150.       bfd_size_type phdr_size;
  2151.       bfd_vma maxpagesize;
  2152.       size_t hdrppsize;
  2153.       Elf_Internal_Shdr **sorted_hdrs;
  2154.       Elf_Internal_Shdr **hdrpp;
  2155.       unsigned int i;
  2156.       Elf_Internal_Shdr *first;
  2157.       file_ptr phdr_map;
  2158.  
  2159.       /* We are creating an executable.  */
  2160.  
  2161.       maxpagesize = get_elf_backend_data (abfd)->maxpagesize;
  2162.       if (maxpagesize == 0)
  2163.     maxpagesize = 1;
  2164.  
  2165.       /* We must sort the sections.  The GNU linker will always create
  2166.      the sections in an appropriate order, but the Irix 5 linker
  2167.      will not.  We don't include the dummy first section in the
  2168.      sort.  We sort sections which are not SHF_ALLOC to the end.  */
  2169.       hdrppsize = (i_ehdrp->e_shnum - 1) * sizeof (Elf_Internal_Shdr *);
  2170.       sorted_hdrs = (Elf_Internal_Shdr **) malloc (hdrppsize);
  2171.       if (sorted_hdrs == NULL)
  2172.     {
  2173.       bfd_set_error (bfd_error_no_memory);
  2174.       return false;
  2175.     }
  2176.  
  2177.       memcpy (sorted_hdrs, i_shdrpp + 1, hdrppsize);
  2178.       qsort (sorted_hdrs, i_ehdrp->e_shnum - 1, sizeof (Elf_Internal_Shdr *),
  2179.          elf_sort_hdrs);
  2180.  
  2181.       /* We can't actually create the program header until we have set the
  2182.      file positions for the sections, and we can't do that until we know
  2183.      how big the header is going to be.  */
  2184.       off = align_file_position (off);
  2185.       phdr_size = get_program_header_size (abfd,
  2186.                        sorted_hdrs, i_ehdrp->e_shnum - 1,
  2187.                        maxpagesize);
  2188.       if (phdr_size == (file_ptr) -1)
  2189.     return false;
  2190.  
  2191.       /* Compute the file offsets of each section.  */
  2192.       phdr_off = off;
  2193.       off += phdr_size;
  2194.       first = NULL;
  2195.       for (i = 1, hdrpp = sorted_hdrs; i < i_ehdrp->e_shnum; i++, hdrpp++)
  2196.     {
  2197.       Elf_Internal_Shdr *hdr;
  2198.  
  2199.       hdr = *hdrpp;
  2200.       if ((hdr->sh_flags & SHF_ALLOC) == 0)
  2201.         {
  2202.           if (hdr->sh_type == SHT_REL || hdr->sh_type == SHT_RELA)
  2203.         {
  2204.           hdr->sh_offset = -1;
  2205.           continue;
  2206.         }
  2207.           if (! dosyms
  2208.           && (hdr == i_shdrpp[tdata->symtab_section]
  2209.               || hdr == i_shdrpp[tdata->strtab_section]))
  2210.         {
  2211.           hdr->sh_offset = -1;
  2212.           continue;
  2213.         }
  2214.         }
  2215.       else
  2216.         {
  2217.           if (first == NULL)
  2218.         first = hdr;
  2219.  
  2220.           /* The section VMA must equal the file position modulo
  2221.          the page size.  This is required by the program
  2222.          header.  */
  2223.           off += (hdr->sh_addr - off) % maxpagesize;
  2224.         }
  2225.  
  2226.       off = assign_file_position_for_section (hdr, off, false);
  2227.     }
  2228.  
  2229.       /* Create the program header.  */
  2230.       phdr_map = map_program_segments (abfd, phdr_off, first, sorted_hdrs,
  2231.                        phdr_size);
  2232.       if (phdr_map == (file_ptr) -1)
  2233.     return false;
  2234.       BFD_ASSERT ((bfd_size_type) phdr_map <= (bfd_size_type) phdr_off + phdr_size);
  2235.  
  2236.       free (sorted_hdrs);
  2237.     }
  2238.  
  2239.   /* Place the section headers.  */
  2240.   off = align_file_position (off);
  2241.   i_ehdrp->e_shoff = off;
  2242.   off += i_ehdrp->e_shnum * i_ehdrp->e_shentsize;
  2243.  
  2244.   elf_tdata (abfd)->next_file_pos = off;
  2245.  
  2246.   return true;
  2247. }
  2248.  
  2249. /* Sort the ELF headers by VMA.  We sort headers which are not
  2250.    SHF_ALLOC to the end.  */
  2251.  
  2252. static int
  2253. elf_sort_hdrs (arg1, arg2)
  2254.      const PTR arg1;
  2255.      const PTR arg2;
  2256. {
  2257.   const Elf_Internal_Shdr *hdr1 = *(const Elf_Internal_Shdr **) arg1;
  2258.   const Elf_Internal_Shdr *hdr2 = *(const Elf_Internal_Shdr **) arg2;
  2259.  
  2260.   if ((hdr1->sh_flags & SHF_ALLOC) != 0)
  2261.     {
  2262.       if ((hdr2->sh_flags & SHF_ALLOC) == 0)
  2263.     return -1;
  2264.       if (hdr1->sh_addr < hdr2->sh_addr)
  2265.     return -1;
  2266.       else if (hdr1->sh_addr > hdr2->sh_addr)
  2267.     return 1;
  2268.       else
  2269.     return 0;
  2270.     }
  2271.   else
  2272.     {
  2273.       if ((hdr2->sh_flags & SHF_ALLOC) != 0)
  2274.     return 1;
  2275.       return 0;
  2276.     }
  2277. }
  2278.  
  2279. static boolean
  2280. prep_headers (abfd)
  2281.      bfd *abfd;
  2282. {
  2283.   Elf_Internal_Ehdr *i_ehdrp;    /* Elf file header, internal form */
  2284.   Elf_Internal_Phdr *i_phdrp = 0;    /* Program header table, internal form */
  2285.   Elf_Internal_Shdr **i_shdrp;    /* Section header table, internal form */
  2286.   int count;
  2287.   struct bfd_strtab_hash *shstrtab;
  2288.  
  2289.   i_ehdrp = elf_elfheader (abfd);
  2290.   i_shdrp = elf_elfsections (abfd);
  2291.  
  2292.   shstrtab = elf_stringtab_init ();
  2293.   if (shstrtab == NULL)
  2294.     return false;
  2295.  
  2296.   elf_shstrtab (abfd) = shstrtab;
  2297.  
  2298.   i_ehdrp->e_ident[EI_MAG0] = ELFMAG0;
  2299.   i_ehdrp->e_ident[EI_MAG1] = ELFMAG1;
  2300.   i_ehdrp->e_ident[EI_MAG2] = ELFMAG2;
  2301.   i_ehdrp->e_ident[EI_MAG3] = ELFMAG3;
  2302.  
  2303.   i_ehdrp->e_ident[EI_CLASS] = ELFCLASS;
  2304.   i_ehdrp->e_ident[EI_DATA] =
  2305.     abfd->xvec->byteorder_big_p ? ELFDATA2MSB : ELFDATA2LSB;
  2306.   i_ehdrp->e_ident[EI_VERSION] = EV_CURRENT;
  2307.  
  2308.   for (count = EI_PAD; count < EI_NIDENT; count++)
  2309.     i_ehdrp->e_ident[count] = 0;
  2310.  
  2311.   if ((abfd->flags & DYNAMIC) != 0)
  2312.     i_ehdrp->e_type = ET_DYN;
  2313.   else if ((abfd->flags & EXEC_P) != 0)
  2314.     i_ehdrp->e_type = ET_EXEC;
  2315.   else
  2316.     i_ehdrp->e_type = ET_REL;
  2317.  
  2318.   switch (bfd_get_arch (abfd))
  2319.     {
  2320.     case bfd_arch_unknown:
  2321.       i_ehdrp->e_machine = EM_NONE;
  2322.       break;
  2323.     case bfd_arch_sparc:
  2324. #if ARCH_SIZE == 64
  2325.       i_ehdrp->e_machine = EM_SPARC64;
  2326. #else
  2327.       i_ehdrp->e_machine = EM_SPARC;
  2328. #endif
  2329.       break;
  2330.     case bfd_arch_i386:
  2331.       i_ehdrp->e_machine = EM_386;
  2332.       break;
  2333.     case bfd_arch_m68k:
  2334.       i_ehdrp->e_machine = EM_68K;
  2335.       break;
  2336.     case bfd_arch_m88k:
  2337.       i_ehdrp->e_machine = EM_88K;
  2338.       break;
  2339.     case bfd_arch_i860:
  2340.       i_ehdrp->e_machine = EM_860;
  2341.       break;
  2342.     case bfd_arch_mips:    /* MIPS Rxxxx */
  2343.       i_ehdrp->e_machine = EM_MIPS;    /* only MIPS R3000 */
  2344.       break;
  2345.     case bfd_arch_hppa:
  2346.       i_ehdrp->e_machine = EM_PARISC;
  2347.       break;
  2348.     case bfd_arch_powerpc:
  2349.       i_ehdrp->e_machine = EM_PPC;
  2350.       break;
  2351.       /* also note that EM_M32, AT&T WE32100 is unknown to bfd */
  2352.     default:
  2353.       i_ehdrp->e_machine = EM_NONE;
  2354.     }
  2355.   i_ehdrp->e_version = EV_CURRENT;
  2356.   i_ehdrp->e_ehsize = sizeof (Elf_External_Ehdr);
  2357.  
  2358.   /* no program header, for now. */
  2359.   i_ehdrp->e_phoff = 0;
  2360.   i_ehdrp->e_phentsize = 0;
  2361.   i_ehdrp->e_phnum = 0;
  2362.  
  2363.   /* each bfd section is section header entry */
  2364.   i_ehdrp->e_entry = bfd_get_start_address (abfd);
  2365.   i_ehdrp->e_shentsize = sizeof (Elf_External_Shdr);
  2366.  
  2367.   /* if we're building an executable, we'll need a program header table */
  2368.   if (abfd->flags & EXEC_P)
  2369.     {
  2370.       /* it all happens later */
  2371. #if 0
  2372.       i_ehdrp->e_phentsize = sizeof (Elf_External_Phdr);
  2373.  
  2374.       /* elf_build_phdrs() returns a (NULL-terminated) array of
  2375.      Elf_Internal_Phdrs */
  2376.       i_phdrp = elf_build_phdrs (abfd, i_ehdrp, i_shdrp, &i_ehdrp->e_phnum);
  2377.       i_ehdrp->e_phoff = outbase;
  2378.       outbase += i_ehdrp->e_phentsize * i_ehdrp->e_phnum;
  2379. #endif
  2380.     }
  2381.   else
  2382.     {
  2383.       i_ehdrp->e_phentsize = 0;
  2384.       i_phdrp = 0;
  2385.       i_ehdrp->e_phoff = 0;
  2386.     }
  2387.  
  2388.   elf_tdata (abfd)->symtab_hdr.sh_name =
  2389.     (unsigned int) _bfd_stringtab_add (shstrtab, ".symtab", true, false);
  2390.   elf_tdata (abfd)->strtab_hdr.sh_name =
  2391.     (unsigned int) _bfd_stringtab_add (shstrtab, ".strtab", true, false);
  2392.   elf_tdata (abfd)->shstrtab_hdr.sh_name =
  2393.     (unsigned int) _bfd_stringtab_add (shstrtab, ".shstrtab", true, false);
  2394.   if (elf_tdata (abfd)->symtab_hdr.sh_name == (unsigned int) -1
  2395.       || elf_tdata (abfd)->symtab_hdr.sh_name == (unsigned int) -1
  2396.       || elf_tdata (abfd)->shstrtab_hdr.sh_name == (unsigned int) -1)
  2397.     return false;
  2398.  
  2399.   return true;
  2400. }
  2401.  
  2402. static boolean
  2403. swap_out_syms (abfd, sttp)
  2404.      bfd *abfd;
  2405.      struct bfd_strtab_hash **sttp;
  2406. {
  2407.   if (!elf_map_symbols (abfd))
  2408.     return false;
  2409.  
  2410.   /* Dump out the symtabs. */
  2411.   {
  2412.     int symcount = bfd_get_symcount (abfd);
  2413.     asymbol **syms = bfd_get_outsymbols (abfd);
  2414.     struct bfd_strtab_hash *stt;
  2415.     Elf_Internal_Shdr *symtab_hdr;
  2416.     Elf_Internal_Shdr *symstrtab_hdr;
  2417.     Elf_External_Sym *outbound_syms;
  2418.     int idx;
  2419.  
  2420.     stt = elf_stringtab_init ();
  2421.     if (stt == NULL)
  2422.       return false;
  2423.  
  2424.     symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
  2425.     symtab_hdr->sh_type = SHT_SYMTAB;
  2426.     symtab_hdr->sh_entsize = sizeof (Elf_External_Sym);
  2427.     symtab_hdr->sh_size = symtab_hdr->sh_entsize * (symcount + 1);
  2428.     symtab_hdr->sh_info = elf_num_locals (abfd) + 1;
  2429.     symtab_hdr->sh_addralign = FILE_ALIGN;
  2430.  
  2431.     symstrtab_hdr = &elf_tdata (abfd)->strtab_hdr;
  2432.     symstrtab_hdr->sh_type = SHT_STRTAB;
  2433.  
  2434.     outbound_syms = ((Elf_External_Sym *)
  2435.              bfd_alloc (abfd,
  2436.                 (1 + symcount) * sizeof (Elf_External_Sym)));
  2437.     if (outbound_syms == NULL)
  2438.       {
  2439.     bfd_set_error (bfd_error_no_memory);
  2440.     return false;
  2441.       }
  2442.     symtab_hdr->contents = (PTR) outbound_syms;
  2443.  
  2444.     /* now generate the data (for "contents") */
  2445.     {
  2446.       /* Fill in zeroth symbol and swap it out.  */
  2447.       Elf_Internal_Sym sym;
  2448.       sym.st_name = 0;
  2449.       sym.st_value = 0;
  2450.       sym.st_size = 0;
  2451.       sym.st_info = 0;
  2452.       sym.st_other = 0;
  2453.       sym.st_shndx = SHN_UNDEF;
  2454.       elf_swap_symbol_out (abfd, &sym, outbound_syms);
  2455.       ++outbound_syms;
  2456.     }
  2457.     for (idx = 0; idx < symcount; idx++)
  2458.       {
  2459.     Elf_Internal_Sym sym;
  2460.     bfd_vma value = syms[idx]->value;
  2461.     elf_symbol_type *type_ptr;
  2462.  
  2463.     if (syms[idx]->flags & BSF_SECTION_SYM)
  2464.       /* Section symbols have no names.  */
  2465.       sym.st_name = 0;
  2466.     else
  2467.       {
  2468.         sym.st_name = (unsigned long) _bfd_stringtab_add (stt,
  2469.                                   syms[idx]->name,
  2470.                                   true, false);
  2471.         if (sym.st_name == (unsigned long) -1)
  2472.           return false;
  2473.       }
  2474.  
  2475.     type_ptr = elf_symbol_from (abfd, syms[idx]);
  2476.  
  2477.     if (bfd_is_com_section (syms[idx]->section))
  2478.       {
  2479.         /* ELF common symbols put the alignment into the `value' field,
  2480.            and the size into the `size' field.  This is backwards from
  2481.            how BFD handles it, so reverse it here.  */
  2482.         sym.st_size = value;
  2483.         if (type_ptr == NULL
  2484.         || type_ptr->internal_elf_sym.st_value == 0)
  2485.           sym.st_value = value >= 16 ? 16 : (1 << bfd_log2 (value));
  2486.         else
  2487.           sym.st_value = type_ptr->internal_elf_sym.st_value;
  2488.         sym.st_shndx = elf_section_from_bfd_section (abfd,
  2489.                              syms[idx]->section);
  2490.       }
  2491.     else
  2492.       {
  2493.         asection *sec = syms[idx]->section;
  2494.         int shndx;
  2495.  
  2496.         if (sec->output_section)
  2497.           {
  2498.         value += sec->output_offset;
  2499.         sec = sec->output_section;
  2500.           }
  2501.         value += sec->vma;
  2502.         sym.st_value = value;
  2503.         sym.st_size = type_ptr ? type_ptr->internal_elf_sym.st_size : 0;
  2504.         sym.st_shndx = shndx = elf_section_from_bfd_section (abfd, sec);
  2505.         if (shndx == -1)
  2506.           {
  2507.         asection *sec2;
  2508.         /* Writing this would be a hell of a lot easier if we had
  2509.            some decent documentation on bfd, and knew what to expect
  2510.            of the library, and what to demand of applications.  For
  2511.            example, it appears that `objcopy' might not set the
  2512.            section of a symbol to be a section that is actually in
  2513.            the output file.  */
  2514.         sec2 = bfd_get_section_by_name (abfd, sec->name);
  2515.         BFD_ASSERT (sec2 != 0);
  2516.         sym.st_shndx = shndx = elf_section_from_bfd_section (abfd, sec2);
  2517.         BFD_ASSERT (shndx != -1);
  2518.           }
  2519.       }
  2520.  
  2521.     if (bfd_is_com_section (syms[idx]->section))
  2522.       sym.st_info = ELF_ST_INFO (STB_GLOBAL, STT_OBJECT);
  2523.     else if (bfd_is_und_section (syms[idx]->section))
  2524.       sym.st_info = ELF_ST_INFO (STB_GLOBAL,
  2525.                      ((syms[idx]->flags & BSF_FUNCTION)
  2526.                       ? STT_FUNC
  2527.                       : STT_NOTYPE));
  2528.     else if (syms[idx]->flags & BSF_SECTION_SYM)
  2529.       sym.st_info = ELF_ST_INFO (STB_LOCAL, STT_SECTION);
  2530.     else if (syms[idx]->flags & BSF_FILE)
  2531.       sym.st_info = ELF_ST_INFO (STB_LOCAL, STT_FILE);
  2532.     else
  2533.       {
  2534.         int bind = STB_LOCAL;
  2535.         int type = STT_OBJECT;
  2536.         unsigned int flags = syms[idx]->flags;
  2537.  
  2538.         if (flags & BSF_LOCAL)
  2539.           bind = STB_LOCAL;
  2540.         else if (flags & BSF_WEAK)
  2541.           bind = STB_WEAK;
  2542.         else if (flags & BSF_GLOBAL)
  2543.           bind = STB_GLOBAL;
  2544.  
  2545.         if (flags & BSF_FUNCTION)
  2546.           type = STT_FUNC;
  2547.  
  2548.         sym.st_info = ELF_ST_INFO (bind, type);
  2549.       }
  2550.  
  2551.     sym.st_other = 0;
  2552.     elf_swap_symbol_out (abfd, &sym, outbound_syms);
  2553.     ++outbound_syms;
  2554.       }
  2555.  
  2556.     *sttp = stt;
  2557.     symstrtab_hdr->sh_size = _bfd_stringtab_size (stt);
  2558.     symstrtab_hdr->sh_type = SHT_STRTAB;
  2559.  
  2560.     symstrtab_hdr->sh_flags = 0;
  2561.     symstrtab_hdr->sh_addr = 0;
  2562.     symstrtab_hdr->sh_entsize = 0;
  2563.     symstrtab_hdr->sh_link = 0;
  2564.     symstrtab_hdr->sh_info = 0;
  2565.     symstrtab_hdr->sh_addralign = 1;
  2566.   }
  2567.  
  2568.   return true;
  2569. }
  2570.  
  2571. static boolean
  2572. write_shdrs_and_ehdr (abfd)
  2573.      bfd *abfd;
  2574. {
  2575.   Elf_External_Ehdr x_ehdr;    /* Elf file header, external form */
  2576.   Elf_Internal_Ehdr *i_ehdrp;    /* Elf file header, internal form */
  2577.   Elf_External_Shdr *x_shdrp;    /* Section header table, external form */
  2578.   Elf_Internal_Shdr **i_shdrp;    /* Section header table, internal form */
  2579.   unsigned int count;
  2580.  
  2581.   i_ehdrp = elf_elfheader (abfd);
  2582.   i_shdrp = elf_elfsections (abfd);
  2583.  
  2584.   /* swap the header before spitting it out... */
  2585.  
  2586. #if DEBUG & 1
  2587.   elf_debug_file (i_ehdrp);
  2588. #endif
  2589.   elf_swap_ehdr_out (abfd, i_ehdrp, &x_ehdr);
  2590.   if (bfd_seek (abfd, (file_ptr) 0, SEEK_SET) != 0
  2591.       || (bfd_write ((PTR) & x_ehdr, sizeof (x_ehdr), 1, abfd)
  2592.       != sizeof (x_ehdr)))
  2593.     return false;
  2594.  
  2595.   /* at this point we've concocted all the ELF sections... */
  2596.   x_shdrp = (Elf_External_Shdr *)
  2597.     bfd_alloc (abfd, sizeof (*x_shdrp) * (i_ehdrp->e_shnum));
  2598.   if (!x_shdrp)
  2599.     {
  2600.       bfd_set_error (bfd_error_no_memory);
  2601.       return false;
  2602.     }
  2603.  
  2604.   for (count = 0; count < i_ehdrp->e_shnum; count++)
  2605.     {
  2606. #if DEBUG & 2
  2607.       elf_debug_section (count, i_shdrp[count]);
  2608. #endif
  2609.       elf_swap_shdr_out (abfd, i_shdrp[count], x_shdrp + count);
  2610.     }
  2611.   if (bfd_seek (abfd, (file_ptr) i_ehdrp->e_shoff, SEEK_SET) != 0
  2612.       || (bfd_write ((PTR) x_shdrp, sizeof (*x_shdrp), i_ehdrp->e_shnum, abfd)
  2613.       != sizeof (*x_shdrp) * i_ehdrp->e_shnum))
  2614.     return false;
  2615.  
  2616.   /* need to dump the string table too... */
  2617.  
  2618.   return true;
  2619. }
  2620.  
  2621. /* Assign file positions for all the reloc sections which are not part
  2622.    of the loadable file image.  */
  2623.  
  2624. static void
  2625. assign_file_positions_for_relocs (abfd)
  2626.      bfd *abfd;
  2627. {
  2628.   file_ptr off;
  2629.   unsigned int i;
  2630.   Elf_Internal_Shdr **shdrpp;
  2631.  
  2632.   off = elf_tdata (abfd)->next_file_pos;
  2633.  
  2634.   for (i = 1, shdrpp = elf_elfsections (abfd) + 1;
  2635.        i < elf_elfheader (abfd)->e_shnum;
  2636.        i++, shdrpp++)
  2637.     {
  2638.       Elf_Internal_Shdr *shdrp;
  2639.  
  2640.       shdrp = *shdrpp;
  2641.       if ((shdrp->sh_type == SHT_REL || shdrp->sh_type == SHT_RELA)
  2642.       && shdrp->sh_offset == -1)
  2643.     off = assign_file_position_for_section (shdrp, off, true);
  2644.     }
  2645.  
  2646.   elf_tdata (abfd)->next_file_pos = off;
  2647. }
  2648.  
  2649. boolean
  2650. NAME(bfd_elf,write_object_contents) (abfd)
  2651.      bfd *abfd;
  2652. {
  2653.   struct elf_backend_data *bed = get_elf_backend_data (abfd);
  2654.   Elf_Internal_Ehdr *i_ehdrp;
  2655.   Elf_Internal_Shdr **i_shdrp;
  2656.   unsigned int count;
  2657.  
  2658.   if (! abfd->output_has_begun
  2659.       && ! elf_compute_section_file_positions (abfd,
  2660.                            (struct bfd_link_info *) NULL))
  2661.     return false;
  2662.  
  2663.   i_shdrp = elf_elfsections (abfd);
  2664.   i_ehdrp = elf_elfheader (abfd);
  2665.  
  2666.   bfd_map_over_sections (abfd, write_relocs, (PTR) 0);
  2667.   assign_file_positions_for_relocs (abfd);
  2668.  
  2669.   /* After writing the headers, we need to write the sections too... */
  2670.   for (count = 1; count < i_ehdrp->e_shnum; count++)
  2671.     {
  2672.       if (bed->elf_backend_section_processing)
  2673.     (*bed->elf_backend_section_processing) (abfd, i_shdrp[count]);
  2674.       if (i_shdrp[count]->contents)
  2675.     {
  2676.       if (bfd_seek (abfd, i_shdrp[count]->sh_offset, SEEK_SET) != 0
  2677.           || (bfd_write (i_shdrp[count]->contents, i_shdrp[count]->sh_size,
  2678.                  1, abfd)
  2679.           != i_shdrp[count]->sh_size))
  2680.         return false;
  2681.     }
  2682.     }
  2683.  
  2684.   /* Write out the section header names.  */
  2685.   if (bfd_seek (abfd, elf_tdata (abfd)->shstrtab_hdr.sh_offset, SEEK_SET) != 0
  2686.       || ! _bfd_stringtab_emit (abfd, elf_shstrtab (abfd)))
  2687.     return false;
  2688.  
  2689.   if (bed->elf_backend_final_write_processing)
  2690.     (*bed->elf_backend_final_write_processing) (abfd,
  2691.                         elf_tdata (abfd)->linker);
  2692.  
  2693.   return write_shdrs_and_ehdr (abfd);
  2694. }
  2695.  
  2696. /* Given an ELF section number, retrieve the corresponding BFD
  2697.    section.  */
  2698.  
  2699. static asection *
  2700. section_from_elf_index (abfd, index)
  2701.      bfd *abfd;
  2702.      unsigned int index;
  2703. {
  2704.   BFD_ASSERT (index > 0 && index < SHN_LORESERVE);
  2705.   if (index >= elf_elfheader (abfd)->e_shnum)
  2706.     return NULL;
  2707.   return elf_elfsections (abfd)[index]->bfd_section;
  2708. }
  2709.  
  2710. /* given a section, search the header to find them... */
  2711. static int
  2712. elf_section_from_bfd_section (abfd, asect)
  2713.      bfd *abfd;
  2714.      struct sec *asect;
  2715. {
  2716.   struct elf_backend_data *bed = get_elf_backend_data (abfd);
  2717.   Elf_Internal_Shdr **i_shdrp = elf_elfsections (abfd);
  2718.   int index;
  2719.   Elf_Internal_Shdr *hdr;
  2720.   int maxindex = elf_elfheader (abfd)->e_shnum;
  2721.  
  2722.   for (index = 0; index < maxindex; index++)
  2723.     {
  2724.       hdr = i_shdrp[index];
  2725.       if (hdr->bfd_section == asect)
  2726.     return index;
  2727.     }
  2728.  
  2729.   if (bed->elf_backend_section_from_bfd_section)
  2730.     {
  2731.       for (index = 0; index < maxindex; index++)
  2732.     {
  2733.       int retval;
  2734.  
  2735.       hdr = i_shdrp[index];
  2736.       retval = index;
  2737.       if ((*bed->elf_backend_section_from_bfd_section)
  2738.           (abfd, hdr, asect, &retval))
  2739.         return retval;
  2740.     }
  2741.     }
  2742.  
  2743.   if (bfd_is_abs_section (asect))
  2744.     return SHN_ABS;
  2745.   if (bfd_is_com_section (asect))
  2746.     return SHN_COMMON;
  2747.   if (bfd_is_und_section (asect))
  2748.     return SHN_UNDEF;
  2749.  
  2750.   return -1;
  2751. }
  2752.  
  2753. /* given a symbol, return the bfd index for that symbol.  */
  2754. static int
  2755. elf_symbol_from_bfd_symbol (abfd, asym_ptr_ptr)
  2756.      bfd *abfd;
  2757.      struct symbol_cache_entry **asym_ptr_ptr;
  2758. {
  2759.   struct symbol_cache_entry *asym_ptr = *asym_ptr_ptr;
  2760.   int idx;
  2761.   flagword flags = asym_ptr->flags;
  2762.  
  2763.   /* When gas creates relocations against local labels, it creates its
  2764.      own symbol for the section, but does put the symbol into the
  2765.      symbol chain, so udata is 0.  When the linker is generating
  2766.      relocatable output, this section symbol may be for one of the
  2767.      input sections rather than the output section.  */
  2768.   if (asym_ptr->udata.i == 0
  2769.       && (flags & BSF_SECTION_SYM)
  2770.       && asym_ptr->section)
  2771.     {
  2772.       int indx;
  2773.  
  2774.       if (asym_ptr->section->output_section != NULL)
  2775.     indx = asym_ptr->section->output_section->index;
  2776.       else
  2777.     indx = asym_ptr->section->index;
  2778.       if (elf_section_syms (abfd)[indx])
  2779.     asym_ptr->udata.i = elf_section_syms (abfd)[indx]->udata.i;
  2780.     }
  2781.  
  2782.   idx = asym_ptr->udata.i;
  2783.   if (idx == 0)
  2784.     abort ();
  2785.  
  2786. #if DEBUG & 4
  2787.   {
  2788.  
  2789.     fprintf (stderr,
  2790.          "elf_symbol_from_bfd_symbol 0x%.8lx, name = %s, sym num = %d, flags = 0x%.8lx %s\n",
  2791.      (long) asym_ptr, asym_ptr->name, idx, flags, elf_symbol_flags (flags));
  2792.     fflush (stderr);
  2793.   }
  2794. #endif
  2795.  
  2796.   return idx;
  2797. }
  2798.  
  2799. static long
  2800. elf_slurp_symbol_table (abfd, symptrs, dynamic)
  2801.      bfd *abfd;
  2802.      asymbol **symptrs;        /* Buffer for generated bfd symbols */
  2803.      boolean dynamic;
  2804. {
  2805.   Elf_Internal_Shdr *hdr;
  2806.   long symcount;        /* Number of external ELF symbols */
  2807.   elf_symbol_type *sym;        /* Pointer to current bfd symbol */
  2808.   elf_symbol_type *symbase;    /* Buffer for generated bfd symbols */
  2809.   Elf_Internal_Sym i_sym;
  2810.   Elf_External_Sym *x_symp = NULL;
  2811.  
  2812.   /* Read each raw ELF symbol, converting from external ELF form to
  2813.      internal ELF form, and then using the information to create a
  2814.      canonical bfd symbol table entry.
  2815.  
  2816.      Note that we allocate the initial bfd canonical symbol buffer
  2817.      based on a one-to-one mapping of the ELF symbols to canonical
  2818.      symbols.  We actually use all the ELF symbols, so there will be no
  2819.      space left over at the end.  When we have all the symbols, we
  2820.      build the caller's pointer vector. */
  2821.  
  2822.   if (dynamic)
  2823.     hdr = &elf_tdata (abfd)->dynsymtab_hdr;
  2824.   else
  2825.     hdr = &elf_tdata (abfd)->symtab_hdr;
  2826.   if (bfd_seek (abfd, hdr->sh_offset, SEEK_SET) == -1)
  2827.     return -1;
  2828.  
  2829.   symcount = hdr->sh_size / sizeof (Elf_External_Sym);
  2830.  
  2831.   if (symcount == 0)
  2832.     sym = symbase = NULL;
  2833.   else
  2834.     {
  2835.       long i;
  2836.  
  2837.       if (bfd_seek (abfd, hdr->sh_offset, SEEK_SET) == -1)
  2838.     return -1;
  2839.  
  2840.       symbase = ((elf_symbol_type *)
  2841.          bfd_zalloc (abfd, symcount * sizeof (elf_symbol_type)));
  2842.       if (symbase == (elf_symbol_type *) NULL)
  2843.     {
  2844.       bfd_set_error (bfd_error_no_memory);
  2845.       return -1;
  2846.     }
  2847.       sym = symbase;
  2848.  
  2849.       /* Temporarily allocate room for the raw ELF symbols.  */
  2850.       x_symp = ((Elf_External_Sym *)
  2851.         malloc (symcount * sizeof (Elf_External_Sym)));
  2852.       if (x_symp == NULL && symcount != 0)
  2853.     {
  2854.       bfd_set_error (bfd_error_no_memory);
  2855.       goto error_return;
  2856.     }
  2857.  
  2858.       if (bfd_read ((PTR) x_symp, sizeof (Elf_External_Sym), symcount, abfd)
  2859.       != symcount * sizeof (Elf_External_Sym))
  2860.     goto error_return;
  2861.       /* Skip first symbol, which is a null dummy.  */
  2862.       for (i = 1; i < symcount; i++)
  2863.     {
  2864.       elf_swap_symbol_in (abfd, x_symp + i, &i_sym);
  2865.       memcpy (&sym->internal_elf_sym, &i_sym, sizeof (Elf_Internal_Sym));
  2866. #ifdef ELF_KEEP_EXTSYM
  2867.       memcpy (&sym->native_elf_sym, x_symp + i, sizeof (Elf_External_Sym));
  2868. #endif
  2869.       sym->symbol.the_bfd = abfd;
  2870.  
  2871.       sym->symbol.name = elf_string_from_elf_section (abfd, hdr->sh_link,
  2872.                               i_sym.st_name);
  2873.  
  2874.       sym->symbol.value = i_sym.st_value;
  2875.  
  2876.       if (i_sym.st_shndx > 0 && i_sym.st_shndx < SHN_LORESERVE)
  2877.         {
  2878.           sym->symbol.section = section_from_elf_index (abfd,
  2879.                                 i_sym.st_shndx);
  2880.           if (sym->symbol.section == NULL)
  2881.         {
  2882.           /* This symbol is in a section for which we did not
  2883.              create a BFD section.  Just use bfd_abs_section,
  2884.              although it is wrong.  FIXME.  */
  2885.           sym->symbol.section = bfd_abs_section_ptr;
  2886.         }
  2887.         }
  2888.       else if (i_sym.st_shndx == SHN_ABS)
  2889.         {
  2890.           sym->symbol.section = bfd_abs_section_ptr;
  2891.         }
  2892.       else if (i_sym.st_shndx == SHN_COMMON)
  2893.         {
  2894.           sym->symbol.section = bfd_com_section_ptr;
  2895.           /* Elf puts the alignment into the `value' field, and
  2896.          the size into the `size' field.  BFD wants to see the
  2897.          size in the value field, and doesn't care (at the
  2898.          moment) about the alignment.  */
  2899.           sym->symbol.value = i_sym.st_size;
  2900.         }
  2901.       else if (i_sym.st_shndx == SHN_UNDEF)
  2902.         {
  2903.           sym->symbol.section = bfd_und_section_ptr;
  2904.         }
  2905.       else
  2906.         sym->symbol.section = bfd_abs_section_ptr;
  2907.  
  2908.       sym->symbol.value -= sym->symbol.section->vma;
  2909.  
  2910.       switch (ELF_ST_BIND (i_sym.st_info))
  2911.         {
  2912.         case STB_LOCAL:
  2913.           sym->symbol.flags |= BSF_LOCAL;
  2914.           break;
  2915.         case STB_GLOBAL:
  2916.           if (i_sym.st_shndx != SHN_UNDEF
  2917.           && i_sym.st_shndx != SHN_COMMON)
  2918.         sym->symbol.flags |= BSF_GLOBAL;
  2919.           break;
  2920.         case STB_WEAK:
  2921.           sym->symbol.flags |= BSF_WEAK;
  2922.           break;
  2923.         }
  2924.  
  2925.       switch (ELF_ST_TYPE (i_sym.st_info))
  2926.         {
  2927.         case STT_SECTION:
  2928.           sym->symbol.flags |= BSF_SECTION_SYM | BSF_DEBUGGING;
  2929.           break;
  2930.         case STT_FILE:
  2931.           sym->symbol.flags |= BSF_FILE | BSF_DEBUGGING;
  2932.           break;
  2933.         case STT_FUNC:
  2934.           sym->symbol.flags |= BSF_FUNCTION;
  2935.           break;
  2936.         }
  2937.  
  2938.       if (dynamic)
  2939.         sym->symbol.flags |= BSF_DYNAMIC;
  2940.  
  2941.       /* Do some backend-specific processing on this symbol.  */
  2942.       {
  2943.         struct elf_backend_data *ebd = get_elf_backend_data (abfd);
  2944.         if (ebd->elf_backend_symbol_processing)
  2945.           (*ebd->elf_backend_symbol_processing) (abfd, &sym->symbol);
  2946.       }
  2947.  
  2948.       sym++;
  2949.     }
  2950.     }
  2951.  
  2952.   /* Do some backend-specific processing on this symbol table.  */
  2953.   {
  2954.     struct elf_backend_data *ebd = get_elf_backend_data (abfd);
  2955.     if (ebd->elf_backend_symbol_table_processing)
  2956.       (*ebd->elf_backend_symbol_table_processing) (abfd, symbase, symcount);
  2957.   }
  2958.  
  2959.   /* We rely on the zalloc to clear out the final symbol entry.  */
  2960.  
  2961.   symcount = sym - symbase;
  2962.  
  2963.   /* Fill in the user's symbol pointer vector if needed.  */
  2964.   if (symptrs)
  2965.     {
  2966.       long l = symcount;
  2967.  
  2968.       sym = symbase;
  2969.       while (l-- > 0)
  2970.     {
  2971.       *symptrs++ = &sym->symbol;
  2972.       sym++;
  2973.     }
  2974.       *symptrs = 0;        /* Final null pointer */
  2975.     }
  2976.  
  2977.   if (x_symp != NULL)
  2978.     free (x_symp);
  2979.   return symcount;
  2980. error_return:
  2981.   if (x_symp != NULL)
  2982.     free (x_symp);
  2983.   return -1;
  2984. }
  2985.  
  2986. /* Return the number of bytes required to hold the symtab vector.
  2987.  
  2988.    Note that we base it on the count plus 1, since we will null terminate
  2989.    the vector allocated based on this size.  However, the ELF symbol table
  2990.    always has a dummy entry as symbol #0, so it ends up even.  */
  2991.  
  2992. long
  2993. elf_get_symtab_upper_bound (abfd)
  2994.      bfd *abfd;
  2995. {
  2996.   long symcount;
  2997.   long symtab_size;
  2998.   Elf_Internal_Shdr *hdr = &elf_tdata (abfd)->symtab_hdr;
  2999.  
  3000.   symcount = hdr->sh_size / sizeof (Elf_External_Sym);
  3001.   symtab_size = (symcount - 1 + 1) * (sizeof (asymbol *));
  3002.  
  3003.   return symtab_size;
  3004. }
  3005.  
  3006. long
  3007. elf_get_dynamic_symtab_upper_bound (abfd)
  3008.      bfd *abfd;
  3009. {
  3010.   long symcount;
  3011.   long symtab_size;
  3012.   Elf_Internal_Shdr *hdr = &elf_tdata (abfd)->dynsymtab_hdr;
  3013.  
  3014.   if (elf_dynsymtab (abfd) == 0)
  3015.     {
  3016.       bfd_set_error (bfd_error_invalid_operation);
  3017.       return -1;
  3018.     }
  3019.  
  3020.   symcount = hdr->sh_size / sizeof (Elf_External_Sym);
  3021.   symtab_size = (symcount - 1 + 1) * (sizeof (asymbol *));
  3022.  
  3023.   return symtab_size;
  3024. }
  3025.  
  3026. long
  3027. elf_get_reloc_upper_bound (abfd, asect)
  3028.      bfd *abfd;
  3029.      sec_ptr asect;
  3030. {
  3031.   return (asect->reloc_count + 1) * sizeof (arelent *);
  3032. }
  3033.  
  3034. /* Read in and swap the external relocs.  */
  3035.  
  3036. static boolean
  3037. elf_slurp_reloc_table (abfd, asect, symbols)
  3038.      bfd *abfd;
  3039.      asection *asect;
  3040.      asymbol **symbols;
  3041. {
  3042.   struct elf_backend_data * const ebd = get_elf_backend_data (abfd);
  3043.   struct bfd_elf_section_data * const d = elf_section_data (asect);
  3044.   PTR allocated = NULL;
  3045.   bfd_byte *native_relocs;
  3046.   arelent *relents;
  3047.   arelent *relent;
  3048.   unsigned int i;
  3049.   int entsize;
  3050.  
  3051.   if (asect->relocation != NULL
  3052.       || (asect->flags & SEC_RELOC) == 0
  3053.       || asect->reloc_count == 0)
  3054.     return true;
  3055.  
  3056.   BFD_ASSERT (asect->rel_filepos == d->rel_hdr.sh_offset
  3057.           && (asect->reloc_count
  3058.           == d->rel_hdr.sh_size / d->rel_hdr.sh_entsize));
  3059.  
  3060.   allocated = (PTR) malloc (d->rel_hdr.sh_size);
  3061.   if (allocated == NULL)
  3062.     {
  3063.       bfd_set_error (bfd_error_no_memory);
  3064.       goto error_return;
  3065.     }
  3066.  
  3067.   if (bfd_seek (abfd, asect->rel_filepos, SEEK_SET) != 0
  3068.       || (bfd_read (allocated, 1, d->rel_hdr.sh_size, abfd)
  3069.       != d->rel_hdr.sh_size))
  3070.     goto error_return;
  3071.  
  3072.   native_relocs = (bfd_byte *) allocated;
  3073.  
  3074.   relents = ((arelent *)
  3075.          bfd_alloc (abfd, asect->reloc_count * sizeof (arelent)));
  3076.   if (relents == NULL)
  3077.     {
  3078.       bfd_set_error (bfd_error_no_memory);
  3079.       goto error_return;
  3080.     }
  3081.  
  3082.   entsize = d->rel_hdr.sh_entsize;
  3083.   BFD_ASSERT (entsize == sizeof (Elf_External_Rel)
  3084.           || entsize == sizeof (Elf_External_Rela));
  3085.  
  3086.   for (i = 0, relent = relents;
  3087.        i < asect->reloc_count;
  3088.        i++, relent++, native_relocs += entsize)
  3089.     {
  3090.       Elf_Internal_Rela rela;
  3091.       Elf_Internal_Rel rel;
  3092.  
  3093.       if (entsize == sizeof (Elf_External_Rela))
  3094.     elf_swap_reloca_in (abfd, (Elf_External_Rela *) native_relocs, &rela);
  3095.       else
  3096.     {
  3097.       elf_swap_reloc_in (abfd, (Elf_External_Rel *) native_relocs, &rel);
  3098.       rela.r_offset = rel.r_offset;
  3099.       rela.r_info = rel.r_info;
  3100.       rela.r_addend = 0;
  3101.     }
  3102.  
  3103.       /* The address of an ELF reloc is section relative for an object
  3104.      file, and absolute for an executable file or shared library.
  3105.      The address of a BFD reloc is always section relative.  */
  3106.       if ((abfd->flags & (EXEC_P | DYNAMIC)) == 0)
  3107.     relent->address = rela.r_offset;
  3108.       else
  3109.     relent->address = rela.r_offset - asect->vma;
  3110.  
  3111.       if (ELF_R_SYM (rela.r_info) == 0)
  3112.     relent->sym_ptr_ptr = bfd_abs_section_ptr->symbol_ptr_ptr;
  3113.       else
  3114.     {
  3115.       asymbol **ps, *s;
  3116.  
  3117.       ps = symbols + ELF_R_SYM (rela.r_info) - 1;
  3118.       s = *ps;
  3119.  
  3120.       /* Canonicalize ELF section symbols.  FIXME: Why?  */
  3121.       if ((s->flags & BSF_SECTION_SYM) == 0)
  3122.         relent->sym_ptr_ptr = ps;
  3123.       else
  3124.         relent->sym_ptr_ptr = s->section->symbol_ptr_ptr;
  3125.     }
  3126.  
  3127.       relent->addend = rela.r_addend;
  3128.  
  3129.       if (entsize == sizeof (Elf_External_Rela))
  3130.     (*ebd->elf_info_to_howto) (abfd, relent, &rela);
  3131.       else
  3132.     (*ebd->elf_info_to_howto_rel) (abfd, relent, &rel);
  3133.     }
  3134.  
  3135.   asect->relocation = relents;
  3136.  
  3137.   if (allocated != NULL)
  3138.     free (allocated);
  3139.  
  3140.   return true;
  3141.  
  3142.  error_return:
  3143.   if (allocated != NULL)
  3144.     free (allocated);
  3145.   return false;
  3146. }
  3147.  
  3148. #ifdef DEBUG
  3149. static void
  3150. elf_debug_section (num, hdr)
  3151.      int num;
  3152.      Elf_Internal_Shdr *hdr;
  3153. {
  3154.   fprintf (stderr, "\nSection#%d '%s' 0x%.8lx\n", num,
  3155.        hdr->bfd_section != NULL ? hfd->bfd_section->name : "",
  3156.        (long) hdr);
  3157.   fprintf (stderr,
  3158.        "sh_name      = %ld\tsh_type      = %ld\tsh_flags     = %ld\n",
  3159.        (long) hdr->sh_name,
  3160.        (long) hdr->sh_type,
  3161.        (long) hdr->sh_flags);
  3162.   fprintf (stderr,
  3163.        "sh_addr      = %ld\tsh_offset    = %ld\tsh_size      = %ld\n",
  3164.        (long) hdr->sh_addr,
  3165.        (long) hdr->sh_offset,
  3166.        (long) hdr->sh_size);
  3167.   fprintf (stderr,
  3168.        "sh_link      = %ld\tsh_info      = %ld\tsh_addralign = %ld\n",
  3169.        (long) hdr->sh_link,
  3170.        (long) hdr->sh_info,
  3171.        (long) hdr->sh_addralign);
  3172.   fprintf (stderr, "sh_entsize   = %ld\n",
  3173.        (long) hdr->sh_entsize);
  3174.   fflush (stderr);
  3175. }
  3176.  
  3177. static void
  3178. elf_debug_file (ehdrp)
  3179.      Elf_Internal_Ehdr *ehdrp;
  3180. {
  3181.   fprintf (stderr, "e_entry      = 0x%.8lx\n", (long) ehdrp->e_entry);
  3182.   fprintf (stderr, "e_phoff      = %ld\n", (long) ehdrp->e_phoff);
  3183.   fprintf (stderr, "e_phnum      = %ld\n", (long) ehdrp->e_phnum);
  3184.   fprintf (stderr, "e_phentsize  = %ld\n", (long) ehdrp->e_phentsize);
  3185.   fprintf (stderr, "e_shoff      = %ld\n", (long) ehdrp->e_shoff);
  3186.   fprintf (stderr, "e_shnum      = %ld\n", (long) ehdrp->e_shnum);
  3187.   fprintf (stderr, "e_shentsize  = %ld\n", (long) ehdrp->e_shentsize);
  3188. }
  3189. #endif
  3190.  
  3191. /* Canonicalize the relocs.  */
  3192.  
  3193. long
  3194. elf_canonicalize_reloc (abfd, section, relptr, symbols)
  3195.      bfd *abfd;
  3196.      sec_ptr section;
  3197.      arelent **relptr;
  3198.      asymbol **symbols;
  3199. {
  3200.   arelent *tblptr;
  3201.   unsigned int i;
  3202.  
  3203.   if (! elf_slurp_reloc_table (abfd, section, symbols))
  3204.     return -1;
  3205.  
  3206.   tblptr = section->relocation;
  3207.   for (i = 0; i < section->reloc_count; i++)
  3208.     *relptr++ = tblptr++;
  3209.  
  3210.   *relptr = NULL;
  3211.  
  3212.   return section->reloc_count;
  3213. }
  3214.  
  3215. long
  3216. elf_get_symtab (abfd, alocation)
  3217.      bfd *abfd;
  3218.      asymbol **alocation;
  3219. {
  3220.   long symcount = elf_slurp_symbol_table (abfd, alocation, false);
  3221.  
  3222.   if (symcount >= 0)
  3223.     bfd_get_symcount (abfd) = symcount;
  3224.   return symcount;
  3225. }
  3226.  
  3227. long
  3228. elf_canonicalize_dynamic_symtab (abfd, alocation)
  3229.      bfd *abfd;
  3230.      asymbol **alocation;
  3231. {
  3232.   return elf_slurp_symbol_table (abfd, alocation, true);
  3233. }
  3234.  
  3235. asymbol *
  3236. elf_make_empty_symbol (abfd)
  3237.      bfd *abfd;
  3238. {
  3239.   elf_symbol_type *newsym;
  3240.  
  3241.   newsym = (elf_symbol_type *) bfd_zalloc (abfd, sizeof (elf_symbol_type));
  3242.   if (!newsym)
  3243.     {
  3244.       bfd_set_error (bfd_error_no_memory);
  3245.       return NULL;
  3246.     }
  3247.   else
  3248.     {
  3249.       newsym->symbol.the_bfd = abfd;
  3250.       return &newsym->symbol;
  3251.     }
  3252. }
  3253.  
  3254. void
  3255. elf_get_symbol_info (ignore_abfd, symbol, ret)
  3256.      bfd *ignore_abfd;
  3257.      asymbol *symbol;
  3258.      symbol_info *ret;
  3259. {
  3260.   bfd_symbol_info (symbol, ret);
  3261. }
  3262.  
  3263. alent *
  3264. elf_get_lineno (ignore_abfd, symbol)
  3265.      bfd *ignore_abfd;
  3266.      asymbol *symbol;
  3267. {
  3268.   fprintf (stderr, "elf_get_lineno unimplemented\n");
  3269.   fflush (stderr);
  3270.   BFD_FAIL ();
  3271.   return NULL;
  3272. }
  3273.  
  3274. boolean
  3275. elf_set_arch_mach (abfd, arch, machine)
  3276.      bfd *abfd;
  3277.      enum bfd_architecture arch;
  3278.      unsigned long machine;
  3279. {
  3280.   /* If this isn't the right architecture for this backend, and this
  3281.      isn't the generic backend, fail.  */
  3282.   if (arch != get_elf_backend_data (abfd)->arch
  3283.       && arch != bfd_arch_unknown
  3284.       && get_elf_backend_data (abfd)->arch != bfd_arch_unknown)
  3285.     return false;
  3286.  
  3287.   return bfd_default_set_arch_mach (abfd, arch, machine);
  3288. }
  3289.  
  3290. boolean
  3291. elf_find_nearest_line (abfd,
  3292.                section,
  3293.                symbols,
  3294.                offset,
  3295.                filename_ptr,
  3296.                functionname_ptr,
  3297.                line_ptr)
  3298.      bfd *abfd;
  3299.      asection *section;
  3300.      asymbol **symbols;
  3301.      bfd_vma offset;
  3302.      CONST char **filename_ptr;
  3303.      CONST char **functionname_ptr;
  3304.      unsigned int *line_ptr;
  3305. {
  3306.   return false;
  3307. }
  3308.  
  3309. int
  3310. elf_sizeof_headers (abfd, reloc)
  3311.      bfd *abfd;
  3312.      boolean reloc;
  3313. {
  3314.   int ret;
  3315.  
  3316.   ret = sizeof (Elf_External_Ehdr);
  3317.   if (! reloc)
  3318.     ret += get_program_header_size (abfd, (Elf_Internal_Shdr **) NULL, 0,
  3319.                     (bfd_vma) 0);
  3320.   return ret;
  3321. }
  3322.  
  3323. boolean
  3324. elf_set_section_contents (abfd, section, location, offset, count)
  3325.      bfd *abfd;
  3326.      sec_ptr section;
  3327.      PTR location;
  3328.      file_ptr offset;
  3329.      bfd_size_type count;
  3330. {
  3331.   Elf_Internal_Shdr *hdr;
  3332.  
  3333.   if (! abfd->output_has_begun
  3334.       && ! elf_compute_section_file_positions (abfd,
  3335.                            (struct bfd_link_info *) NULL))
  3336.     return false;
  3337.  
  3338.   hdr = &elf_section_data (section)->this_hdr;
  3339.  
  3340.   if (bfd_seek (abfd, hdr->sh_offset + offset, SEEK_SET) == -1)
  3341.     return false;
  3342.   if (bfd_write (location, 1, count, abfd) != count)
  3343.     return false;
  3344.  
  3345.   return true;
  3346. }
  3347.  
  3348. void
  3349. elf_no_info_to_howto (abfd, cache_ptr, dst)
  3350.      bfd *abfd;
  3351.      arelent *cache_ptr;
  3352.      Elf_Internal_Rela *dst;
  3353. {
  3354.   fprintf (stderr, "elf RELA relocation support for target machine unimplemented\n");
  3355.   fflush (stderr);
  3356.   BFD_FAIL ();
  3357. }
  3358.  
  3359. void
  3360. elf_no_info_to_howto_rel (abfd, cache_ptr, dst)
  3361.      bfd *abfd;
  3362.      arelent *cache_ptr;
  3363.      Elf_Internal_Rel *dst;
  3364. {
  3365.   fprintf (stderr, "elf REL relocation support for target machine unimplemented\n");
  3366.   fflush (stderr);
  3367.   BFD_FAIL ();
  3368. }
  3369.  
  3370.  
  3371. /* Core file support */
  3372.  
  3373. #ifdef HAVE_PROCFS        /* Some core file support requires host /proc files */
  3374. #include <sys/procfs.h>
  3375. #else
  3376. #define bfd_prstatus(abfd, descdata, descsz, filepos) true
  3377. #define bfd_fpregset(abfd, descdata, descsz, filepos) true
  3378. #define bfd_prpsinfo(abfd, descdata, descsz, filepos) true
  3379. #endif
  3380.  
  3381. #ifdef HAVE_PROCFS
  3382.  
  3383. static boolean
  3384. bfd_prstatus (abfd, descdata, descsz, filepos)
  3385.      bfd *abfd;
  3386.      char *descdata;
  3387.      int descsz;
  3388.      long filepos;
  3389. {
  3390.   asection *newsect;
  3391.   prstatus_t *status = (prstatus_t *) 0;
  3392.  
  3393.   if (descsz == sizeof (prstatus_t))
  3394.     {
  3395.       newsect = bfd_make_section (abfd, ".reg");
  3396.       if (newsect == NULL)
  3397.     return false;
  3398.       newsect->_raw_size = sizeof (status->pr_reg);
  3399.       newsect->filepos = filepos + (long) &status->pr_reg;
  3400.       newsect->flags = SEC_HAS_CONTENTS;
  3401.       newsect->alignment_power = 2;
  3402.       if ((core_prstatus (abfd) = bfd_alloc (abfd, descsz)) != NULL)
  3403.     {
  3404.       memcpy (core_prstatus (abfd), descdata, descsz);
  3405.     }
  3406.     }
  3407.   return true;
  3408. }
  3409.  
  3410. /* Stash a copy of the prpsinfo structure away for future use. */
  3411.  
  3412. static boolean
  3413. bfd_prpsinfo (abfd, descdata, descsz, filepos)
  3414.      bfd *abfd;
  3415.      char *descdata;
  3416.      int descsz;
  3417.      long filepos;
  3418. {
  3419.   if (descsz == sizeof (prpsinfo_t))
  3420.     {
  3421.       if ((core_prpsinfo (abfd) = bfd_alloc (abfd, descsz)) == NULL)
  3422.     {
  3423.       bfd_set_error (bfd_error_no_memory);
  3424.       return false;
  3425.     }
  3426.       memcpy (core_prpsinfo (abfd), descdata, descsz);
  3427.     }
  3428.   return true;
  3429. }
  3430.  
  3431. static boolean
  3432. bfd_fpregset (abfd, descdata, descsz, filepos)
  3433.      bfd *abfd;
  3434.      char *descdata;
  3435.      int descsz;
  3436.      long filepos;
  3437. {
  3438.   asection *newsect;
  3439.  
  3440.   newsect = bfd_make_section (abfd, ".reg2");
  3441.   if (newsect == NULL)
  3442.     return false;
  3443.   newsect->_raw_size = descsz;
  3444.   newsect->filepos = filepos;
  3445.   newsect->flags = SEC_HAS_CONTENTS;
  3446.   newsect->alignment_power = 2;
  3447.   return true;
  3448. }
  3449.  
  3450. #endif /* HAVE_PROCFS */
  3451.  
  3452. /* Return a pointer to the args (including the command name) that were
  3453.    seen by the program that generated the core dump.  Note that for
  3454.    some reason, a spurious space is tacked onto the end of the args
  3455.    in some (at least one anyway) implementations, so strip it off if
  3456.    it exists. */
  3457.  
  3458. char *
  3459. elf_core_file_failing_command (abfd)
  3460.      bfd *abfd;
  3461. {
  3462. #ifdef HAVE_PROCFS
  3463.   if (core_prpsinfo (abfd))
  3464.     {
  3465.       prpsinfo_t *p = core_prpsinfo (abfd);
  3466.       char *scan = p->pr_psargs;
  3467.       while (*scan++)
  3468.     {;
  3469.     }
  3470.       scan -= 2;
  3471.       if ((scan > p->pr_psargs) && (*scan == ' '))
  3472.     {
  3473.       *scan = '\000';
  3474.     }
  3475.       return p->pr_psargs;
  3476.     }
  3477. #endif
  3478.   return NULL;
  3479. }
  3480.  
  3481. /* Return the number of the signal that caused the core dump.  Presumably,
  3482.    since we have a core file, we got a signal of some kind, so don't bother
  3483.    checking the other process status fields, just return the signal number.
  3484.    */
  3485.  
  3486. int
  3487. elf_core_file_failing_signal (abfd)
  3488.      bfd *abfd;
  3489. {
  3490. #ifdef HAVE_PROCFS
  3491.   if (core_prstatus (abfd))
  3492.     {
  3493.       return ((prstatus_t *) (core_prstatus (abfd)))->pr_cursig;
  3494.     }
  3495. #endif
  3496.   return -1;
  3497. }
  3498.  
  3499. /* Check to see if the core file could reasonably be expected to have
  3500.    come for the current executable file.  Note that by default we return
  3501.    true unless we find something that indicates that there might be a
  3502.    problem.
  3503.    */
  3504.  
  3505. boolean
  3506. elf_core_file_matches_executable_p (core_bfd, exec_bfd)
  3507.      bfd *core_bfd;
  3508.      bfd *exec_bfd;
  3509. {
  3510. #ifdef HAVE_PROCFS
  3511.   char *corename;
  3512.   char *execname;
  3513. #endif
  3514.  
  3515.   /* First, xvecs must match since both are ELF files for the same target. */
  3516.  
  3517.   if (core_bfd->xvec != exec_bfd->xvec)
  3518.     {
  3519.       bfd_set_error (bfd_error_system_call);
  3520.       return false;
  3521.     }
  3522.  
  3523. #ifdef HAVE_PROCFS
  3524.  
  3525.   /* If no prpsinfo, just return true.  Otherwise, grab the last component
  3526.      of the exec'd pathname from the prpsinfo. */
  3527.  
  3528.   if (core_prpsinfo (core_bfd))
  3529.     {
  3530.       corename = (((struct prpsinfo *) core_prpsinfo (core_bfd))->pr_fname);
  3531.     }
  3532.   else
  3533.     {
  3534.       return true;
  3535.     }
  3536.  
  3537.   /* Find the last component of the executable pathname. */
  3538.  
  3539.   if ((execname = strrchr (exec_bfd->filename, '/')) != NULL)
  3540.     {
  3541.       execname++;
  3542.     }
  3543.   else
  3544.     {
  3545.       execname = (char *) exec_bfd->filename;
  3546.     }
  3547.  
  3548.   /* See if they match */
  3549.  
  3550.   return strcmp (execname, corename) ? false : true;
  3551.  
  3552. #else
  3553.  
  3554.   return true;
  3555.  
  3556. #endif /* HAVE_PROCFS */
  3557. }
  3558.  
  3559. /* ELF core files contain a segment of type PT_NOTE, that holds much of
  3560.    the information that would normally be available from the /proc interface
  3561.    for the process, at the time the process dumped core.  Currently this
  3562.    includes copies of the prstatus, prpsinfo, and fpregset structures.
  3563.  
  3564.    Since these structures are potentially machine dependent in size and
  3565.    ordering, bfd provides two levels of support for them.  The first level,
  3566.    available on all machines since it does not require that the host
  3567.    have /proc support or the relevant include files, is to create a bfd
  3568.    section for each of the prstatus, prpsinfo, and fpregset structures,
  3569.    without any interpretation of their contents.  With just this support,
  3570.    the bfd client will have to interpret the structures itself.  Even with
  3571.    /proc support, it might want these full structures for it's own reasons.
  3572.  
  3573.    In the second level of support, where HAVE_PROCFS is defined, bfd will
  3574.    pick apart the structures to gather some additional information that
  3575.    clients may want, such as the general register set, the name of the
  3576.    exec'ed file and its arguments, the signal (if any) that caused the
  3577.    core dump, etc.
  3578.  
  3579.    */
  3580.  
  3581. static boolean
  3582. elf_corefile_note (abfd, hdr)
  3583.      bfd *abfd;
  3584.      Elf_Internal_Phdr *hdr;
  3585. {
  3586.   Elf_External_Note *x_note_p;    /* Elf note, external form */
  3587.   Elf_Internal_Note i_note;    /* Elf note, internal form */
  3588.   char *buf = NULL;        /* Entire note segment contents */
  3589.   char *namedata;        /* Name portion of the note */
  3590.   char *descdata;        /* Descriptor portion of the note */
  3591.   char *sectname;        /* Name to use for new section */
  3592.   long filepos;            /* File offset to descriptor data */
  3593.   asection *newsect;
  3594.  
  3595.   if (hdr->p_filesz > 0
  3596.       && (buf = (char *) malloc (hdr->p_filesz)) != NULL
  3597.       && bfd_seek (abfd, hdr->p_offset, SEEK_SET) != -1
  3598.       && bfd_read ((PTR) buf, hdr->p_filesz, 1, abfd) == hdr->p_filesz)
  3599.     {
  3600.       x_note_p = (Elf_External_Note *) buf;
  3601.       while ((char *) x_note_p < (buf + hdr->p_filesz))
  3602.     {
  3603.       i_note.namesz = bfd_h_get_32 (abfd, (bfd_byte *) x_note_p->namesz);
  3604.       i_note.descsz = bfd_h_get_32 (abfd, (bfd_byte *) x_note_p->descsz);
  3605.       i_note.type = bfd_h_get_32 (abfd, (bfd_byte *) x_note_p->type);
  3606.       namedata = x_note_p->name;
  3607.       descdata = namedata + BFD_ALIGN (i_note.namesz, 4);
  3608.       filepos = hdr->p_offset + (descdata - buf);
  3609.       switch (i_note.type)
  3610.         {
  3611.         case NT_PRSTATUS:
  3612.           /* process descdata as prstatus info */
  3613.           if (! bfd_prstatus (abfd, descdata, i_note.descsz, filepos))
  3614.         return false;
  3615.           sectname = ".prstatus";
  3616.           break;
  3617.         case NT_FPREGSET:
  3618.           /* process descdata as fpregset info */
  3619.           if (! bfd_fpregset (abfd, descdata, i_note.descsz, filepos))
  3620.         return false;
  3621.           sectname = ".fpregset";
  3622.           break;
  3623.         case NT_PRPSINFO:
  3624.           /* process descdata as prpsinfo */
  3625.           if (! bfd_prpsinfo (abfd, descdata, i_note.descsz, filepos))
  3626.         return false;
  3627.           sectname = ".prpsinfo";
  3628.           break;
  3629.         default:
  3630.           /* Unknown descriptor, just ignore it. */
  3631.           sectname = NULL;
  3632.           break;
  3633.         }
  3634.       if (sectname != NULL)
  3635.         {
  3636.           newsect = bfd_make_section (abfd, sectname);
  3637.           if (newsect == NULL)
  3638.         return false;
  3639.           newsect->_raw_size = i_note.descsz;
  3640.           newsect->filepos = filepos;
  3641.           newsect->flags = SEC_ALLOC | SEC_HAS_CONTENTS;
  3642.           newsect->alignment_power = 2;
  3643.         }
  3644.       x_note_p = (Elf_External_Note *)
  3645.         (descdata + BFD_ALIGN (i_note.descsz, 4));
  3646.     }
  3647.     }
  3648.   if (buf != NULL)
  3649.     {
  3650.       free (buf);
  3651.     }
  3652.   else if (hdr->p_filesz > 0)
  3653.     {
  3654.       bfd_set_error (bfd_error_no_memory);
  3655.       return false;
  3656.     }
  3657.   return true;
  3658.  
  3659. }
  3660.  
  3661. /*  Core files are simply standard ELF formatted files that partition
  3662.     the file using the execution view of the file (program header table)
  3663.     rather than the linking view.  In fact, there is no section header
  3664.     table in a core file.
  3665.  
  3666.     The process status information (including the contents of the general
  3667.     register set) and the floating point register set are stored in a
  3668.     segment of type PT_NOTE.  We handcraft a couple of extra bfd sections
  3669.     that allow standard bfd access to the general registers (.reg) and the
  3670.     floating point registers (.reg2).
  3671.  
  3672.  */
  3673.  
  3674. const bfd_target *
  3675. elf_core_file_p (abfd)
  3676.      bfd *abfd;
  3677. {
  3678.   Elf_External_Ehdr x_ehdr;    /* Elf file header, external form */
  3679.   Elf_Internal_Ehdr *i_ehdrp;    /* Elf file header, internal form */
  3680.   Elf_External_Phdr x_phdr;    /* Program header table entry, external form */
  3681.   Elf_Internal_Phdr *i_phdrp;    /* Program header table, internal form */
  3682.   unsigned int phindex;
  3683.   struct elf_backend_data *ebd;
  3684.  
  3685.   /* Read in the ELF header in external format.  */
  3686.  
  3687.   if (bfd_read ((PTR) & x_ehdr, sizeof (x_ehdr), 1, abfd) != sizeof (x_ehdr))
  3688.     {
  3689.       if (bfd_get_error () != bfd_error_system_call)
  3690.     bfd_set_error (bfd_error_wrong_format);
  3691.       return NULL;
  3692.     }
  3693.  
  3694.   /* Now check to see if we have a valid ELF file, and one that BFD can
  3695.      make use of.  The magic number must match, the address size ('class')
  3696.      and byte-swapping must match our XVEC entry, and it must have a
  3697.      program header table (FIXME: See comments re segments at top of this
  3698.      file). */
  3699.  
  3700.   if (elf_file_p (&x_ehdr) == false)
  3701.     {
  3702.     wrong:
  3703.       bfd_set_error (bfd_error_wrong_format);
  3704.       return NULL;
  3705.     }
  3706.  
  3707.   /* FIXME, Check EI_VERSION here !  */
  3708.  
  3709.   {
  3710. #if ARCH_SIZE == 32
  3711.     int desired_address_size = ELFCLASS32;
  3712. #endif
  3713. #if ARCH_SIZE == 64
  3714.     int desired_address_size = ELFCLASS64;
  3715. #endif
  3716.  
  3717.     if (x_ehdr.e_ident[EI_CLASS] != desired_address_size)
  3718.       goto wrong;
  3719.   }
  3720.  
  3721.   /* Switch xvec to match the specified byte order.  */
  3722.   switch (x_ehdr.e_ident[EI_DATA])
  3723.     {
  3724.     case ELFDATA2MSB:        /* Big-endian */
  3725.       if (abfd->xvec->byteorder_big_p == false)
  3726.     goto wrong;
  3727.       break;
  3728.     case ELFDATA2LSB:        /* Little-endian */
  3729.       if (abfd->xvec->byteorder_big_p == true)
  3730.     goto wrong;
  3731.       break;
  3732.     case ELFDATANONE:        /* No data encoding specified */
  3733.     default:            /* Unknown data encoding specified */
  3734.       goto wrong;
  3735.     }
  3736.  
  3737.   /* Allocate an instance of the elf_obj_tdata structure and hook it up to
  3738.      the tdata pointer in the bfd. */
  3739.  
  3740.   elf_tdata (abfd) =
  3741.     (struct elf_obj_tdata *) bfd_zalloc (abfd, sizeof (struct elf_obj_tdata));
  3742.   if (elf_tdata (abfd) == NULL)
  3743.     {
  3744.       bfd_set_error (bfd_error_no_memory);
  3745.       return NULL;
  3746.     }
  3747.  
  3748.   /* FIXME, `wrong' returns from this point onward, leak memory.  */
  3749.  
  3750.   /* Now that we know the byte order, swap in the rest of the header */
  3751.   i_ehdrp = elf_elfheader (abfd);
  3752.   elf_swap_ehdr_in (abfd, &x_ehdr, i_ehdrp);
  3753. #if DEBUG & 1
  3754.   elf_debug_file (i_ehdrp);
  3755. #endif
  3756.  
  3757.   ebd = get_elf_backend_data (abfd);
  3758.  
  3759.   /* Check that the ELF e_machine field matches what this particular
  3760.      BFD format expects.  */
  3761.   if (ebd->elf_machine_code != i_ehdrp->e_machine)
  3762.     {
  3763.       const bfd_target * const *target_ptr;
  3764.  
  3765.       if (ebd->elf_machine_code != EM_NONE)
  3766.     goto wrong;
  3767.  
  3768.       /* This is the generic ELF target.  Let it match any ELF target
  3769.      for which we do not have a specific backend.  */
  3770.       for (target_ptr = bfd_target_vector; *target_ptr != NULL; target_ptr++)
  3771.     {
  3772.       struct elf_backend_data *back;
  3773.  
  3774.       if ((*target_ptr)->flavour != bfd_target_elf_flavour)
  3775.         continue;
  3776.       back = (struct elf_backend_data *) (*target_ptr)->backend_data;
  3777.       if (back->elf_machine_code == i_ehdrp->e_machine)
  3778.         {
  3779.           /* target_ptr is an ELF backend which matches this
  3780.          object file, so reject the generic ELF target.  */
  3781.           goto wrong;
  3782.         }
  3783.     }
  3784.     }
  3785.  
  3786.   /* If there is no program header, or the type is not a core file, then
  3787.      we are hosed. */
  3788.   if (i_ehdrp->e_phoff == 0 || i_ehdrp->e_type != ET_CORE)
  3789.     goto wrong;
  3790.  
  3791.   /* Allocate space for a copy of the program header table in
  3792.      internal form, seek to the program header table in the file,
  3793.      read it in, and convert it to internal form.  As a simple sanity
  3794.      check, verify that the what BFD thinks is the size of each program
  3795.      header table entry actually matches the size recorded in the file. */
  3796.  
  3797.   if (i_ehdrp->e_phentsize != sizeof (x_phdr))
  3798.     goto wrong;
  3799.   i_phdrp = (Elf_Internal_Phdr *)
  3800.     bfd_alloc (abfd, sizeof (*i_phdrp) * i_ehdrp->e_phnum);
  3801.   if (!i_phdrp)
  3802.     {
  3803.       bfd_set_error (bfd_error_no_memory);
  3804.       return NULL;
  3805.     }
  3806.   if (bfd_seek (abfd, i_ehdrp->e_phoff, SEEK_SET) == -1)
  3807.     return NULL;
  3808.   for (phindex = 0; phindex < i_ehdrp->e_phnum; phindex++)
  3809.     {
  3810.       if (bfd_read ((PTR) & x_phdr, sizeof (x_phdr), 1, abfd)
  3811.       != sizeof (x_phdr))
  3812.     return NULL;
  3813.       elf_swap_phdr_in (abfd, &x_phdr, i_phdrp + phindex);
  3814.     }
  3815.  
  3816.   /* Once all of the program headers have been read and converted, we
  3817.      can start processing them. */
  3818.  
  3819.   for (phindex = 0; phindex < i_ehdrp->e_phnum; phindex++)
  3820.     {
  3821.       bfd_section_from_phdr (abfd, i_phdrp + phindex, phindex);
  3822.       if ((i_phdrp + phindex)->p_type == PT_NOTE)
  3823.     {
  3824.       if (! elf_corefile_note (abfd, i_phdrp + phindex))
  3825.         return NULL;
  3826.     }
  3827.     }
  3828.  
  3829.   /* Remember the entry point specified in the ELF file header. */
  3830.  
  3831.   bfd_get_start_address (abfd) = i_ehdrp->e_entry;
  3832.  
  3833.   return abfd->xvec;
  3834. }
  3835.  
  3836. /* ELF linker code.  */
  3837.  
  3838. static boolean elf_link_add_object_symbols
  3839.   PARAMS ((bfd *, struct bfd_link_info *));
  3840. static boolean elf_link_add_archive_symbols
  3841.   PARAMS ((bfd *, struct bfd_link_info *));
  3842. static Elf_Internal_Rela *elf_link_read_relocs
  3843.   PARAMS ((bfd *, asection *, PTR, Elf_Internal_Rela *, boolean));
  3844. static boolean elf_export_symbol
  3845.   PARAMS ((struct elf_link_hash_entry *, PTR));
  3846. static boolean elf_adjust_dynamic_symbol
  3847.   PARAMS ((struct elf_link_hash_entry *, PTR));
  3848.  
  3849. /* Given an ELF BFD, add symbols to the global hash table as
  3850.    appropriate.  */
  3851.  
  3852. boolean
  3853. elf_bfd_link_add_symbols (abfd, info)
  3854.      bfd *abfd;
  3855.      struct bfd_link_info *info;
  3856. {
  3857.   bfd *first;
  3858.  
  3859.   switch (bfd_get_format (abfd))
  3860.     {
  3861.     case bfd_object:
  3862.       return elf_link_add_object_symbols (abfd, info);
  3863.     case bfd_archive:
  3864.       first = bfd_openr_next_archived_file (abfd, (bfd *) NULL);
  3865.       if (first == NULL)
  3866.     return false;
  3867.       if (! bfd_check_format (first, bfd_object))
  3868.     return false;
  3869.       if (bfd_get_flavour (first) != bfd_target_elf_flavour)
  3870.     {
  3871.       /* On Linux, we may have an a.out archive which got
  3872.              recognized as an ELF archive.  Therefore, we treat all
  3873.              archives as though they were actually of the flavour of
  3874.              their first element.  */
  3875.       return (*first->xvec->_bfd_link_add_symbols) (abfd, info);
  3876.     }
  3877.       return elf_link_add_archive_symbols (abfd, info);
  3878.     default:
  3879.       bfd_set_error (bfd_error_wrong_format);
  3880.       return false;
  3881.     }
  3882. }
  3883.  
  3884. /* Add symbols from an ELF archive file to the linker hash table.  We
  3885.    don't use _bfd_generic_link_add_archive_symbols because of a
  3886.    problem which arises on UnixWare.  The UnixWare libc.so is an
  3887.    archive which includes an entry libc.so.1 which defines a bunch of
  3888.    symbols.  The libc.so archive also includes a number of other
  3889.    object files, which also define symbols, some of which are the same
  3890.    as those defined in libc.so.1.  Correct linking requires that we
  3891.    consider each object file in turn, and include it if it defines any
  3892.    symbols we need.  _bfd_generic_link_add_archive_symbols does not do
  3893.    this; it looks through the list of undefined symbols, and includes
  3894.    any object file which defines them.  When this algorithm is used on
  3895.    UnixWare, it winds up pulling in libc.so.1 early and defining a
  3896.    bunch of symbols.  This means that some of the other objects in the
  3897.    archive are not included in the link, which is incorrect since they
  3898.    precede libc.so.1 in the archive.
  3899.  
  3900.    Fortunately, ELF archive handling is simpler than that done by
  3901.    _bfd_generic_link_add_archive_symbols, which has to allow for a.out
  3902.    oddities.  In ELF, if we find a symbol in the archive map, and the
  3903.    symbol is currently undefined, we know that we must pull in that
  3904.    object file.
  3905.  
  3906.    Unfortunately, we do have to make multiple passes over the symbol
  3907.    table until nothing further is resolved.  */
  3908.  
  3909. static boolean
  3910. elf_link_add_archive_symbols (abfd, info)
  3911.      bfd *abfd;
  3912.      struct bfd_link_info *info;
  3913. {
  3914.   symindex c;
  3915.   boolean *defined = NULL;
  3916.   boolean *included = NULL;
  3917.   carsym *symdefs;
  3918.   boolean loop;
  3919.  
  3920.   if (! bfd_has_map (abfd))
  3921.     {
  3922.       /* An empty archive is a special case.  */
  3923.       if (bfd_openr_next_archived_file (abfd, (bfd *) NULL) == NULL)
  3924.     return true;
  3925.       bfd_set_error (bfd_error_no_symbols);
  3926.       return false;
  3927.     }
  3928.  
  3929.   /* Keep track of all symbols we know to be already defined, and all
  3930.      files we know to be already included.  This is to speed up the
  3931.      second and subsequent passes.  */
  3932.   c = bfd_ardata (abfd)->symdef_count;
  3933.   if (c == 0)
  3934.     return true;
  3935.   defined = (boolean *) malloc (c * sizeof (boolean));
  3936.   included = (boolean *) malloc (c * sizeof (boolean));
  3937.   if (defined == (boolean *) NULL || included == (boolean *) NULL)
  3938.     {
  3939.       bfd_set_error (bfd_error_no_memory);
  3940.       goto error_return;
  3941.     }
  3942.   memset (defined, 0, c * sizeof (boolean));
  3943.   memset (included, 0, c * sizeof (boolean));
  3944.  
  3945.   symdefs = bfd_ardata (abfd)->symdefs;
  3946.  
  3947.   do
  3948.     {
  3949.       file_ptr last;
  3950.       symindex i;
  3951.       carsym *symdef;
  3952.       carsym *symdefend;
  3953.  
  3954.       loop = false;
  3955.       last = -1;
  3956.  
  3957.       symdef = symdefs;
  3958.       symdefend = symdef + c;
  3959.       for (i = 0; symdef < symdefend; symdef++, i++)
  3960.     {
  3961.       struct elf_link_hash_entry *h;
  3962.       bfd *element;
  3963.       struct bfd_link_hash_entry *undefs_tail;
  3964.       symindex mark;
  3965.  
  3966.       if (defined[i] || included[i])
  3967.         continue;
  3968.       if (symdef->file_offset == last)
  3969.         {
  3970.           included[i] = true;
  3971.           continue;
  3972.         }
  3973.  
  3974.       h = elf_link_hash_lookup (elf_hash_table (info), symdef->name,
  3975.                     false, false, false);
  3976.       if (h == (struct elf_link_hash_entry *) NULL)
  3977.         continue;
  3978.       if (h->root.type != bfd_link_hash_undefined)
  3979.         {
  3980.           defined[i] = true;
  3981.           continue;
  3982.         }
  3983.  
  3984.       /* We need to include this archive member.  */
  3985.  
  3986.       element = _bfd_get_elt_at_filepos (abfd, symdef->file_offset);
  3987.       if (element == (bfd *) NULL)
  3988.         goto error_return;
  3989.  
  3990.       if (! bfd_check_format (element, bfd_object))
  3991.         goto error_return;
  3992.  
  3993.       /* Doublecheck that we have not included this object
  3994.          already--it should be impossible, but there may be
  3995.          something wrong with the archive.  */
  3996.       if (element->archive_pass != 0)
  3997.         {
  3998.           bfd_set_error (bfd_error_bad_value);
  3999.           goto error_return;
  4000.         }
  4001.       element->archive_pass = 1;
  4002.  
  4003.       undefs_tail = info->hash->undefs_tail;
  4004.  
  4005.       if (! (*info->callbacks->add_archive_element) (info, element,
  4006.                              symdef->name))
  4007.         goto error_return;
  4008.       if (! elf_link_add_object_symbols (element, info))
  4009.         goto error_return;
  4010.  
  4011.       /* If there are any new undefined symbols, we need to make
  4012.          another pass through the archive in order to see whether
  4013.          they can be defined.  FIXME: This isn't perfect, because
  4014.          common symbols wind up on undefs_tail and because an
  4015.          undefined symbol which is defined later on in this pass
  4016.          does not require another pass.  This isn't a bug, but it
  4017.          does make the code less efficient than it could be.  */
  4018.       if (undefs_tail != info->hash->undefs_tail)
  4019.         loop = true;
  4020.  
  4021.       /* Look backward to mark all symbols from this object file
  4022.          which we have already seen in this pass.  */
  4023.       mark = i;
  4024.       do
  4025.         {
  4026.           included[mark] = true;
  4027.           if (mark == 0)
  4028.         break;
  4029.           --mark;
  4030.         }
  4031.       while (symdefs[mark].file_offset == symdef->file_offset);
  4032.  
  4033.       /* We mark subsequent symbols from this object file as we go
  4034.          on through the loop.  */
  4035.       last = symdef->file_offset;
  4036.     }
  4037.     }
  4038.   while (loop);
  4039.  
  4040.   free (defined);
  4041.   free (included);
  4042.  
  4043.   return true;
  4044.  
  4045.  error_return:
  4046.   if (defined != (boolean *) NULL)
  4047.     free (defined);
  4048.   if (included != (boolean *) NULL)
  4049.     free (included);
  4050.   return false;
  4051. }
  4052.  
  4053. /* Record a new dynamic symbol.  We record the dynamic symbols as we
  4054.    read the input files, since we need to have a list of all of them
  4055.    before we can determine the final sizes of the output sections.
  4056.    Note that we may actually call this function even though we are not
  4057.    going to output any dynamic symbols; in some cases we know that a
  4058.    symbol should be in the dynamic symbol table, but only if there is
  4059.    one.  */
  4060.  
  4061. boolean
  4062. elf_link_record_dynamic_symbol (info, h)
  4063.      struct bfd_link_info *info;
  4064.      struct elf_link_hash_entry *h;
  4065. {
  4066.   if (h->dynindx == -1)
  4067.     {
  4068.       struct bfd_strtab_hash *dynstr;
  4069.  
  4070.       h->dynindx = elf_hash_table (info)->dynsymcount;
  4071.       ++elf_hash_table (info)->dynsymcount;
  4072.  
  4073.       dynstr = elf_hash_table (info)->dynstr;
  4074.       if (dynstr == NULL)
  4075.     {
  4076.       /* Create a strtab to hold the dynamic symbol names.  */
  4077.       elf_hash_table (info)->dynstr = dynstr = elf_stringtab_init ();
  4078.       if (dynstr == NULL)
  4079.         return false;
  4080.     }
  4081.  
  4082.       h->dynstr_index = ((unsigned long)
  4083.              _bfd_stringtab_add (dynstr, h->root.root.string,
  4084.                          true, false));
  4085.       if (h->dynstr_index == (unsigned long) -1)
  4086.     return false;
  4087.     }
  4088.  
  4089.   return true;
  4090. }
  4091.  
  4092. /* Add symbols from an ELF object file to the linker hash table.  */
  4093.  
  4094. static boolean
  4095. elf_link_add_object_symbols (abfd, info)
  4096.      bfd *abfd;
  4097.      struct bfd_link_info *info;
  4098. {
  4099.   boolean (*add_symbol_hook) PARAMS ((bfd *, struct bfd_link_info *,
  4100.                       const Elf_Internal_Sym *,
  4101.                       const char **, flagword *,
  4102.                       asection **, bfd_vma *));
  4103.   boolean (*check_relocs) PARAMS ((bfd *, struct bfd_link_info *,
  4104.                    asection *, const Elf_Internal_Rela *));
  4105.   boolean collect;
  4106.   Elf_Internal_Shdr *hdr;
  4107.   size_t symcount;
  4108.   size_t extsymcount;
  4109.   size_t extsymoff;
  4110.   Elf_External_Sym *buf = NULL;
  4111.   struct elf_link_hash_entry **sym_hash;
  4112.   boolean dynamic;
  4113.   Elf_External_Dyn *dynbuf = NULL;
  4114.   struct elf_link_hash_entry *weaks;
  4115.   Elf_External_Sym *esym;
  4116.   Elf_External_Sym *esymend;
  4117.  
  4118.   add_symbol_hook = get_elf_backend_data (abfd)->elf_add_symbol_hook;
  4119.   collect = get_elf_backend_data (abfd)->collect;
  4120.  
  4121.   /* A stripped shared library might only have a dynamic symbol table,
  4122.      not a regular symbol table.  In that case we can still go ahead
  4123.      and link using the dynamic symbol table.  */
  4124.   if (elf_onesymtab (abfd) == 0
  4125.       && elf_dynsymtab (abfd) != 0)
  4126.     {
  4127.       elf_onesymtab (abfd) = elf_dynsymtab (abfd);
  4128.       elf_tdata (abfd)->symtab_hdr = elf_tdata (abfd)->dynsymtab_hdr;
  4129.     }
  4130.  
  4131.   hdr = &elf_tdata (abfd)->symtab_hdr;
  4132.   symcount = hdr->sh_size / sizeof (Elf_External_Sym);
  4133.  
  4134.   /* The sh_info field of the symtab header tells us where the
  4135.      external symbols start.  We don't care about the local symbols at
  4136.      this point.  */
  4137.   if (elf_bad_symtab (abfd))
  4138.     {
  4139.       extsymcount = symcount;
  4140.       extsymoff = 0;
  4141.     }
  4142.   else
  4143.     {
  4144.       extsymcount = symcount - hdr->sh_info;
  4145.       extsymoff = hdr->sh_info;
  4146.     }
  4147.  
  4148.   buf = (Elf_External_Sym *) malloc (extsymcount * sizeof (Elf_External_Sym));
  4149.   if (buf == NULL && extsymcount != 0)
  4150.     {
  4151.       bfd_set_error (bfd_error_no_memory);
  4152.       goto error_return;
  4153.     }
  4154.  
  4155.   /* We store a pointer to the hash table entry for each external
  4156.      symbol.  */
  4157.   sym_hash = ((struct elf_link_hash_entry **)
  4158.           bfd_alloc (abfd,
  4159.              extsymcount * sizeof (struct elf_link_hash_entry *)));
  4160.   if (sym_hash == NULL)
  4161.     {
  4162.       bfd_set_error (bfd_error_no_memory);
  4163.       goto error_return;
  4164.     }
  4165.   elf_sym_hashes (abfd) = sym_hash;
  4166.  
  4167.   if (elf_elfheader (abfd)->e_type != ET_DYN)
  4168.     {
  4169.       dynamic = false;
  4170.  
  4171.       /* If we are creating a shared library, create all the dynamic
  4172.          sections immediately.  We need to attach them to something,
  4173.          so we attach them to this BFD, provided it is the right
  4174.          format.  FIXME: If there are no input BFD's of the same
  4175.          format as the output, we can't make a shared library.  */
  4176.       if (info->shared
  4177.       && ! elf_hash_table (info)->dynamic_sections_created
  4178.       && abfd->xvec == info->hash->creator)
  4179.     {
  4180.       if (! elf_link_create_dynamic_sections (abfd, info))
  4181.         goto error_return;
  4182.     }
  4183.     }
  4184.   else
  4185.     {
  4186.       asection *s;
  4187.       const char *name;
  4188.       bfd_size_type strindex;
  4189.  
  4190.       dynamic = true;
  4191.  
  4192.       /* You can't use -r against a dynamic object.  Also, there's no
  4193.      hope of using a dynamic object which does not exactly match
  4194.      the format of the output file.  */
  4195.       if (info->relocateable
  4196.       || info->hash->creator != abfd->xvec)
  4197.     {
  4198.       bfd_set_error (bfd_error_invalid_operation);
  4199.       goto error_return;
  4200.     }
  4201.  
  4202.       /* Find the name to use in a DT_NEEDED entry that refers to this
  4203.      object.  If the object has a DT_SONAME entry, we use it.
  4204.      Otherwise, if the generic linker stuck something in
  4205.      elf_dt_needed_name, we use that.  Otherwise, we just use the
  4206.      file name.  */
  4207.       name = bfd_get_filename (abfd);
  4208.       if (elf_dt_needed_name (abfd) != NULL)
  4209.     name = elf_dt_needed_name (abfd);
  4210.       s = bfd_get_section_by_name (abfd, ".dynamic");
  4211.       if (s != NULL)
  4212.     {
  4213.       Elf_External_Dyn *extdyn;
  4214.       Elf_External_Dyn *extdynend;
  4215.  
  4216.       dynbuf = (Elf_External_Dyn *) malloc (s->_raw_size);
  4217.       if (dynbuf == NULL)
  4218.         {
  4219.           bfd_set_error (bfd_error_no_memory);
  4220.           goto error_return;
  4221.         }
  4222.  
  4223.       if (! bfd_get_section_contents (abfd, s, (PTR) dynbuf,
  4224.                       (file_ptr) 0, s->_raw_size))
  4225.         goto error_return;
  4226.  
  4227.       extdyn = dynbuf;
  4228.       extdynend = extdyn + s->_raw_size / sizeof (Elf_External_Dyn);
  4229.       for (; extdyn < extdynend; extdyn++)
  4230.         {
  4231.           Elf_Internal_Dyn dyn;
  4232.  
  4233.           elf_swap_dyn_in (abfd, extdyn, &dyn);
  4234.           if (dyn.d_tag == DT_SONAME)
  4235.         {
  4236.           int elfsec;
  4237.           unsigned long link;
  4238.  
  4239.           elfsec = elf_section_from_bfd_section (abfd, s);
  4240.           if (elfsec == -1)
  4241.             goto error_return;
  4242.           link = elf_elfsections (abfd)[elfsec]->sh_link;
  4243.           name = elf_string_from_elf_section (abfd, link,
  4244.                               dyn.d_un.d_val);
  4245.           if (name == NULL)
  4246.             goto error_return;
  4247.  
  4248.           break;
  4249.         }
  4250.         }
  4251.  
  4252.       free (dynbuf);
  4253.       dynbuf = NULL;
  4254.     }
  4255.  
  4256.       /* We do not want to include any of the sections in a dynamic
  4257.      object in the output file.  We hack by simply clobbering the
  4258.      list of sections in the BFD.  This could be handled more
  4259.      cleanly by, say, a new section flag; the existing
  4260.      SEC_NEVER_LOAD flag is not the one we want, because that one
  4261.      still implies that the section takes up space in the output
  4262.      file.  */
  4263.       abfd->sections = NULL;
  4264.  
  4265.       /* If this is the first dynamic object found in the link, create
  4266.      the special sections required for dynamic linking.  */
  4267.       if (! elf_hash_table (info)->dynamic_sections_created)
  4268.     {
  4269.       if (! elf_link_create_dynamic_sections (abfd, info))
  4270.         goto error_return;
  4271.     }
  4272.  
  4273.       /* Add a DT_NEEDED entry for this dynamic object.  */
  4274.       strindex = _bfd_stringtab_add (elf_hash_table (info)->dynstr, name,
  4275.                      true, false);
  4276.       if (strindex == (bfd_size_type) -1)
  4277.     goto error_return;
  4278.       if (! elf_add_dynamic_entry (info, DT_NEEDED, strindex))
  4279.     goto error_return;
  4280.     }
  4281.  
  4282.   if (bfd_seek (abfd,
  4283.         hdr->sh_offset + extsymoff * sizeof (Elf_External_Sym),
  4284.         SEEK_SET) != 0
  4285.       || (bfd_read ((PTR) buf, sizeof (Elf_External_Sym), extsymcount, abfd)
  4286.       != extsymcount * sizeof (Elf_External_Sym)))
  4287.     goto error_return;
  4288.  
  4289.   weaks = NULL;
  4290.  
  4291.   esymend = buf + extsymcount;
  4292.   for (esym = buf; esym < esymend; esym++, sym_hash++)
  4293.     {
  4294.       Elf_Internal_Sym sym;
  4295.       int bind;
  4296.       bfd_vma value;
  4297.       asection *sec;
  4298.       flagword flags;
  4299.       const char *name;
  4300.       struct elf_link_hash_entry *h = NULL;
  4301.       boolean definition;
  4302.  
  4303.       elf_swap_symbol_in (abfd, esym, &sym);
  4304.  
  4305.       flags = BSF_NO_FLAGS;
  4306.       sec = NULL;
  4307.       value = sym.st_value;
  4308.       *sym_hash = NULL;
  4309.  
  4310.       bind = ELF_ST_BIND (sym.st_info);
  4311.       if (bind == STB_LOCAL)
  4312.     {
  4313.       /* This should be impossible, since ELF requires that all
  4314.          global symbols follow all local symbols, and that sh_info
  4315.          point to the first global symbol.  Unfortunatealy, Irix 5
  4316.          screws this up.  */
  4317.       continue;
  4318.     }
  4319.       else if (bind == STB_GLOBAL)
  4320.     {
  4321.       if (sym.st_shndx != SHN_UNDEF
  4322.           && sym.st_shndx != SHN_COMMON)
  4323.         flags = BSF_GLOBAL;
  4324.       else
  4325.         flags = 0;
  4326.     }
  4327.       else if (bind == STB_WEAK)
  4328.     flags = BSF_WEAK;
  4329.       else
  4330.     {
  4331.       /* Leave it up to the processor backend.  */
  4332.     }
  4333.  
  4334.       if (sym.st_shndx == SHN_UNDEF)
  4335.     sec = bfd_und_section_ptr;
  4336.       else if (sym.st_shndx > 0 && sym.st_shndx < SHN_LORESERVE)
  4337.     {
  4338.       sec = section_from_elf_index (abfd, sym.st_shndx);
  4339.       if (sec != NULL)
  4340.         value -= sec->vma;
  4341.       else
  4342.         sec = bfd_abs_section_ptr;
  4343.     }
  4344.       else if (sym.st_shndx == SHN_ABS)
  4345.     sec = bfd_abs_section_ptr;
  4346.       else if (sym.st_shndx == SHN_COMMON)
  4347.     {
  4348.       sec = bfd_com_section_ptr;
  4349.       /* What ELF calls the size we call the value.  What ELF
  4350.          calls the value we call the alignment.  */
  4351.       value = sym.st_size;
  4352.     }
  4353.       else
  4354.     {
  4355.       /* Leave it up to the processor backend.  */
  4356.     }
  4357.  
  4358.       name = elf_string_from_elf_section (abfd, hdr->sh_link, sym.st_name);
  4359.       if (name == (const char *) NULL)
  4360.     goto error_return;
  4361.  
  4362.       if (add_symbol_hook)
  4363.     {
  4364.       if (! (*add_symbol_hook) (abfd, info, &sym, &name, &flags, &sec,
  4365.                     &value))
  4366.         goto error_return;
  4367.  
  4368.       /* The hook function sets the name to NULL if this symbol
  4369.          should be skipped for some reason.  */
  4370.       if (name == (const char *) NULL)
  4371.         continue;
  4372.     }
  4373.  
  4374.       /* Sanity check that all possibilities were handled.  */
  4375.       if (sec == (asection *) NULL)
  4376.     {
  4377.       bfd_set_error (bfd_error_bad_value);
  4378.       goto error_return;
  4379.     }
  4380.  
  4381.       if (bfd_is_und_section (sec)
  4382.       || bfd_is_com_section (sec))
  4383.     definition = false;
  4384.       else
  4385.     definition = true;
  4386.  
  4387.       if (info->hash->creator->flavour == bfd_target_elf_flavour)
  4388.     {
  4389.       /* We need to look up the symbol now in order to get some of
  4390.          the dynamic object handling right.  We pass the hash
  4391.          table entry in to _bfd_generic_link_add_one_symbol so
  4392.          that it does not have to look it up again.  */
  4393.       h = elf_link_hash_lookup (elf_hash_table (info), name,
  4394.                     true, false, false);
  4395.       if (h == NULL)
  4396.         goto error_return;
  4397.       *sym_hash = h;
  4398.  
  4399.       /* If we are looking at a dynamic object, and this is a
  4400.          definition, we need to see if it has already been defined
  4401.          by some other object.  If it has, we want to use the
  4402.          existing definition, and we do not want to report a
  4403.          multiple symbol definition error; we do this by
  4404.          clobbering sec to be bfd_und_section_ptr.  */
  4405.       if (dynamic && definition)
  4406.         {
  4407.           if (h->root.type == bfd_link_hash_defined)
  4408.         sec = bfd_und_section_ptr;
  4409.         }
  4410.  
  4411.       /* Similarly, if we are not looking at a dynamic object, and
  4412.          we have a definition, we want to override any definition
  4413.          we may have from a dynamic object.  Symbols from regular
  4414.          files always take precedence over symbols from dynamic
  4415.          objects, even if they are defined after the dynamic
  4416.          object in the link.  */
  4417.       if (! dynamic
  4418.           && definition
  4419.           && h->root.type == bfd_link_hash_defined
  4420.           && (h->elf_link_hash_flags & ELF_LINK_HASH_DEF_DYNAMIC) != 0
  4421.           && (bfd_get_flavour (h->root.u.def.section->owner)
  4422.           == bfd_target_elf_flavour)
  4423.           && (elf_elfheader (h->root.u.def.section->owner)->e_type
  4424.           == ET_DYN))
  4425.         {
  4426.           /* Change the hash table entry to undefined, and let
  4427.          _bfd_generic_link_add_one_symbol do the right thing
  4428.          with the new definition.  */
  4429.           h->root.type = bfd_link_hash_undefined;
  4430.           h->root.u.undef.abfd = h->root.u.def.section->owner;
  4431.           h->elf_link_hash_flags &=~ ELF_LINK_HASH_DEFINED_WEAK;
  4432.         }
  4433.  
  4434.       /* If this is a weak definition which we are going to use,
  4435.          and the symbol is currently undefined, record that the
  4436.          definition is weak.  */
  4437.       if (definition
  4438.           && (flags & BSF_WEAK) != 0
  4439.           && ! bfd_is_und_section (sec)
  4440.           && (h->root.type == bfd_link_hash_new
  4441.           || h->root.type == bfd_link_hash_undefined
  4442.           || h->root.type == bfd_link_hash_weak))
  4443.         h->elf_link_hash_flags |= ELF_LINK_HASH_DEFINED_WEAK;
  4444.     }
  4445.  
  4446.       if (! (_bfd_generic_link_add_one_symbol
  4447.          (info, abfd, name, flags, sec, value, (const char *) NULL,
  4448.           false, collect, (struct bfd_link_hash_entry **) sym_hash)))
  4449.     goto error_return;
  4450.  
  4451.       if (dynamic
  4452.       && definition
  4453.       && (flags & BSF_WEAK) != 0
  4454.       && ELF_ST_TYPE (sym.st_info) != STT_FUNC
  4455.       && info->hash->creator->flavour == bfd_target_elf_flavour
  4456.       && (*sym_hash)->weakdef == NULL)
  4457.     {
  4458.       /* Keep a list of all weak defined non function symbols from
  4459.          a dynamic object, using the weakdef field.  Later in this
  4460.          function we will set the weakdef field to the correct
  4461.          value.  We only put non-function symbols from dynamic
  4462.          objects on this list, because that happens to be the only
  4463.          time we need to know the normal symbol corresponding to a
  4464.          weak symbol, and the information is time consuming to
  4465.          figure out.  If the weakdef field is not already NULL,
  4466.          then this symbol was already defined by some previous
  4467.          dynamic object, and we will be using that previous
  4468.          definition anyhow.  */
  4469.  
  4470.       (*sym_hash)->weakdef = weaks;
  4471.       weaks = *sym_hash;
  4472.     }
  4473.  
  4474.       /* Get the alignment of a common symbol.  */
  4475.       if (sym.st_shndx == SHN_COMMON
  4476.       && (*sym_hash)->root.type == bfd_link_hash_common)
  4477.     (*sym_hash)->root.u.c.alignment_power = bfd_log2 (sym.st_value);
  4478.  
  4479.       if (info->hash->creator->flavour == bfd_target_elf_flavour)
  4480.     {
  4481.       int old_flags;
  4482.       boolean dynsym;
  4483.       int new_flag;
  4484.  
  4485.       /* Remember the symbol size and type.  */
  4486.       if (sym.st_size != 0)
  4487.         {
  4488.           /* FIXME: We should probably somehow give a warning if
  4489.          the symbol size changes.  */
  4490.           h->size = sym.st_size;
  4491.         }
  4492.       if (ELF_ST_TYPE (sym.st_info) != STT_NOTYPE)
  4493.         {
  4494.           /* FIXME: We should probably somehow give a warning if
  4495.          the symbol type changes.  */
  4496.           h->type = ELF_ST_TYPE (sym.st_info);
  4497.         }
  4498.  
  4499.       /* Set a flag in the hash table entry indicating the type of
  4500.          reference or definition we just found.  Keep a count of
  4501.          the number of dynamic symbols we find.  A dynamic symbol
  4502.          is one which is referenced or defined by both a regular
  4503.          object and a shared object, or one which is referenced or
  4504.          defined by more than one shared object.  */
  4505.       old_flags = h->elf_link_hash_flags;
  4506.       dynsym = false;
  4507.       if (! dynamic)
  4508.         {
  4509.           if (! definition)
  4510.         new_flag = ELF_LINK_HASH_REF_REGULAR;
  4511.           else
  4512.         new_flag = ELF_LINK_HASH_DEF_REGULAR;
  4513.           if (info->shared
  4514.           || (old_flags & (ELF_LINK_HASH_DEF_DYNAMIC
  4515.                    | ELF_LINK_HASH_REF_DYNAMIC)) != 0)
  4516.         dynsym = true;
  4517.         }
  4518.       else
  4519.         {
  4520.           if (! definition)
  4521.         new_flag = ELF_LINK_HASH_REF_DYNAMIC;
  4522.           else
  4523.         new_flag = ELF_LINK_HASH_DEF_DYNAMIC;
  4524.           if ((old_flags & new_flag) != 0
  4525.           || (old_flags & (ELF_LINK_HASH_DEF_REGULAR
  4526.                    | ELF_LINK_HASH_REF_REGULAR)) != 0)
  4527.         dynsym = true;
  4528.         }
  4529.  
  4530.       h->elf_link_hash_flags |= new_flag;
  4531.       if (dynsym && h->dynindx == -1)
  4532.         {
  4533.           if (! elf_link_record_dynamic_symbol (info, h))
  4534.         goto error_return;
  4535.         }
  4536.     }
  4537.     }
  4538.  
  4539.   /* Now set the weakdefs field correctly for all the weak defined
  4540.      symbols we found.  The only way to do this is to search all the
  4541.      symbols.  Since we only need the information for non functions in
  4542.      dynamic objects, that's the only time we actually put anything on
  4543.      the list WEAKS.  We need this information so that if a regular
  4544.      object refers to a symbol defined weakly in a dynamic object, the
  4545.      real symbol in the dynamic object is also put in the dynamic
  4546.      symbols; we also must arrange for both symbols to point to the
  4547.      same memory location.  We could handle the general case of symbol
  4548.      aliasing, but a general symbol alias can only be generated in
  4549.      assembler code, handling it correctly would be very time
  4550.      consuming, and other ELF linkers don't handle general aliasing
  4551.      either.  */
  4552.   while (weaks != NULL)
  4553.     {
  4554.       struct elf_link_hash_entry *hlook;
  4555.       asection *slook;
  4556.       bfd_vma vlook;
  4557.       struct elf_link_hash_entry **hpp;
  4558.       struct elf_link_hash_entry **hppend;
  4559.  
  4560.       hlook = weaks;
  4561.       weaks = hlook->weakdef;
  4562.       hlook->weakdef = NULL;
  4563.  
  4564.       BFD_ASSERT (hlook->root.type == bfd_link_hash_defined);
  4565.       slook = hlook->root.u.def.section;
  4566.       vlook = hlook->root.u.def.value;
  4567.  
  4568.       hpp = elf_sym_hashes (abfd);
  4569.       hppend = hpp + extsymcount;
  4570.       for (; hpp < hppend; hpp++)
  4571.     {
  4572.       struct elf_link_hash_entry *h;
  4573.  
  4574.       h = *hpp;
  4575.       if (h != hlook
  4576.           && h->root.type == bfd_link_hash_defined
  4577.           && h->root.u.def.section == slook
  4578.           && h->root.u.def.value == vlook)
  4579.         {
  4580.           hlook->weakdef = h;
  4581.  
  4582.           /* If the weak definition is in the list of dynamic
  4583.          symbols, make sure the real definition is put there
  4584.          as well.  */
  4585.           if (hlook->dynindx != -1
  4586.           && h->dynindx == -1)
  4587.         {
  4588.           if (! elf_link_record_dynamic_symbol (info, h))
  4589.             goto error_return;
  4590.         }
  4591.  
  4592.           break;
  4593.         }
  4594.     }
  4595.     }
  4596.  
  4597.   if (buf != NULL)
  4598.     {
  4599.       free (buf);
  4600.       buf = NULL;
  4601.     }
  4602.  
  4603.   /* If this object is the same format as the output object, and it is
  4604.      not a shared library, then let the backend look through the
  4605.      relocs.
  4606.  
  4607.      This is required to build global offset table entries and to
  4608.      arrange for dynamic relocs.  It is not required for the
  4609.      particular common case of linking non PIC code, even when linking
  4610.      against shared libraries, but unfortunately there is no way of
  4611.      knowing whether an object file has been compiled PIC or not.
  4612.      Looking through the relocs is not particularly time consuming.
  4613.      The problem is that we must either (1) keep the relocs in memory,
  4614.      which causes the linker to require additional runtime memory or
  4615.      (2) read the relocs twice from the input file, which wastes time.
  4616.      This would be a good case for using mmap.
  4617.  
  4618.      I have no idea how to handle linking PIC code into a file of a
  4619.      different format.  It probably can't be done.  */
  4620.   check_relocs = get_elf_backend_data (abfd)->check_relocs;
  4621.   if (! dynamic
  4622.       && abfd->xvec == info->hash->creator
  4623.       && check_relocs != NULL)
  4624.     {
  4625.       asection *o;
  4626.  
  4627.       for (o = abfd->sections; o != NULL; o = o->next)
  4628.     {
  4629.       Elf_Internal_Rela *internal_relocs;
  4630.       boolean ok;
  4631.  
  4632.       if ((o->flags & SEC_RELOC) == 0
  4633.           || o->reloc_count == 0)
  4634.         continue;
  4635.  
  4636.       /* I believe we can ignore the relocs for any section which
  4637.              does not form part of the final process image, such as a
  4638.              debugging section.  */
  4639.       if ((o->flags & SEC_ALLOC) == 0)
  4640.         continue;
  4641.  
  4642.       internal_relocs = elf_link_read_relocs (abfd, o, (PTR) NULL,
  4643.                           (Elf_Internal_Rela *) NULL,
  4644.                           info->keep_memory);
  4645.       if (internal_relocs == NULL)
  4646.         goto error_return;
  4647.  
  4648.       ok = (*check_relocs) (abfd, info, o, internal_relocs);
  4649.  
  4650.       if (! info->keep_memory)
  4651.         free (internal_relocs);
  4652.  
  4653.       if (! ok)
  4654.         goto error_return;
  4655.     }
  4656.     }
  4657.  
  4658.   return true;
  4659.  
  4660.  error_return:
  4661.   if (buf != NULL)
  4662.     free (buf);
  4663.   if (dynbuf != NULL)
  4664.     free (dynbuf);
  4665.   return false;
  4666. }
  4667.  
  4668. /* Create some sections which will be filled in with dynamic linking
  4669.    information.  ABFD is an input file which requires dynamic sections
  4670.    to be created.  The dynamic sections take up virtual memory space
  4671.    when the final executable is run, so we need to create them before
  4672.    addresses are assigned to the output sections.  We work out the
  4673.    actual contents and size of these sections later.  */
  4674.  
  4675. boolean
  4676. elf_link_create_dynamic_sections (abfd, info)
  4677.      bfd *abfd;
  4678.      struct bfd_link_info *info;
  4679. {
  4680.   flagword flags;
  4681.   register asection *s;
  4682.   struct elf_link_hash_entry *h;
  4683.   struct elf_backend_data *bed;
  4684.  
  4685.   if (elf_hash_table (info)->dynamic_sections_created)
  4686.     return true;
  4687.  
  4688.   /* Make sure that all dynamic sections use the same input BFD.  */
  4689.   if (elf_hash_table (info)->dynobj == NULL)
  4690.     elf_hash_table (info)->dynobj = abfd;
  4691.   else
  4692.     abfd = elf_hash_table (info)->dynobj;
  4693.  
  4694.   /* Note that we set the SEC_IN_MEMORY flag for all of these
  4695.      sections.  */
  4696.   flags = SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS | SEC_IN_MEMORY;
  4697.  
  4698.   /* A dynamically linked executable has a .interp section, but a
  4699.      shared library does not.  */
  4700.   if (! info->shared)
  4701.     {
  4702.       s = bfd_make_section (abfd, ".interp");
  4703.       if (s == NULL
  4704.       || ! bfd_set_section_flags (abfd, s, flags | SEC_READONLY))
  4705.     return false;
  4706.     }
  4707.  
  4708.   s = bfd_make_section (abfd, ".dynsym");
  4709.   if (s == NULL
  4710.       || ! bfd_set_section_flags (abfd, s, flags | SEC_READONLY)
  4711.       || ! bfd_set_section_alignment (abfd, s, LOG_FILE_ALIGN))
  4712.     return false;
  4713.  
  4714.   s = bfd_make_section (abfd, ".dynstr");
  4715.   if (s == NULL
  4716.       || ! bfd_set_section_flags (abfd, s, flags | SEC_READONLY))
  4717.     return false;
  4718.  
  4719.   /* Create a strtab to hold the dynamic symbol names.  */
  4720.   if (elf_hash_table (info)->dynstr == NULL)
  4721.     {
  4722.       elf_hash_table (info)->dynstr = elf_stringtab_init ();
  4723.       if (elf_hash_table (info)->dynstr == NULL)
  4724.     return false;
  4725.     }
  4726.  
  4727.   s = bfd_make_section (abfd, ".dynamic");
  4728.   if (s == NULL
  4729.       || ! bfd_set_section_flags (abfd, s, flags)
  4730.       || ! bfd_set_section_alignment (abfd, s, LOG_FILE_ALIGN))
  4731.     return false;
  4732.  
  4733.   /* The special symbol _DYNAMIC is always set to the start of the
  4734.      .dynamic section.  This call occurs before we have processed the
  4735.      symbols for any dynamic object, so we don't have to worry about
  4736.      overriding a dynamic definition.  We could set _DYNAMIC in a
  4737.      linker script, but we only want to define it if we are, in fact,
  4738.      creating a .dynamic section.  We don't want to define it if there
  4739.      is no .dynamic section, since on some ELF platforms the start up
  4740.      code examines it to decide how to initialize the process.  */
  4741.   h = NULL;
  4742.   if (! (_bfd_generic_link_add_one_symbol
  4743.      (info, abfd, "_DYNAMIC", BSF_GLOBAL, s, (bfd_vma) 0,
  4744.       (const char *) NULL, false, get_elf_backend_data (abfd)->collect,
  4745.       (struct bfd_link_hash_entry **) &h)))
  4746.     return false;
  4747.   h->elf_link_hash_flags |= ELF_LINK_HASH_DEF_REGULAR;
  4748.   h->type = STT_OBJECT;
  4749.  
  4750.   if (info->shared
  4751.       && ! elf_link_record_dynamic_symbol (info, h))
  4752.     return false;
  4753.  
  4754.   s = bfd_make_section (abfd, ".hash");
  4755.   if (s == NULL
  4756.       || ! bfd_set_section_flags (abfd, s, flags | SEC_READONLY)
  4757.       || ! bfd_set_section_alignment (abfd, s, LOG_FILE_ALIGN))
  4758.     return false;
  4759.  
  4760.   /* Let the backend create the rest of the sections.  This lets the
  4761.      backend set the right flags.  The backend will normally create
  4762.      the .got and .plt sections.  */
  4763.   bed = get_elf_backend_data (abfd);
  4764.   if (! (*bed->elf_backend_create_dynamic_sections) (abfd, info))
  4765.     return false;
  4766.  
  4767.   elf_hash_table (info)->dynamic_sections_created = true;
  4768.  
  4769.   return true;
  4770. }
  4771.  
  4772. /* Add an entry to the .dynamic table.  */
  4773.  
  4774. boolean
  4775. elf_add_dynamic_entry (info, tag, val)
  4776.      struct bfd_link_info *info;
  4777.      bfd_vma tag;
  4778.      bfd_vma val;
  4779. {
  4780.   Elf_Internal_Dyn dyn;
  4781.   bfd *dynobj;
  4782.   asection *s;
  4783.   size_t newsize;
  4784.   bfd_byte *newcontents;
  4785.  
  4786.   dynobj = elf_hash_table (info)->dynobj;
  4787.  
  4788.   s = bfd_get_section_by_name (dynobj, ".dynamic");
  4789.   BFD_ASSERT (s != NULL);
  4790.  
  4791.   newsize = s->_raw_size + sizeof (Elf_External_Dyn);
  4792.   if (s->contents == NULL)
  4793.     newcontents = (bfd_byte *) malloc (newsize);
  4794.   else
  4795.     newcontents = (bfd_byte *) realloc (s->contents, newsize);
  4796.   if (newcontents == NULL)
  4797.     {
  4798.       bfd_set_error (bfd_error_no_memory);
  4799.       return false;
  4800.     }
  4801.  
  4802.   dyn.d_tag = tag;
  4803.   dyn.d_un.d_val = val;
  4804.   elf_swap_dyn_out (dynobj, &dyn,
  4805.             (Elf_External_Dyn *) (newcontents + s->_raw_size));
  4806.  
  4807.   s->_raw_size = newsize;
  4808.   s->contents = newcontents;
  4809.  
  4810.   return true;
  4811. }
  4812.  
  4813. /* Read and swap the relocs for a section.  They may have been cached.
  4814.    If the EXTERNAL_RELOCS and INTERNAL_RELOCS arguments are not NULL,
  4815.    they are used as buffers to read into.  They are known to be large
  4816.    enough.  If the INTERNAL_RELOCS relocs argument is NULL, the return
  4817.    value is allocated using either malloc or bfd_alloc, according to
  4818.    the KEEP_MEMORY argument.  */
  4819.  
  4820. static Elf_Internal_Rela *
  4821. elf_link_read_relocs (abfd, o, external_relocs, internal_relocs, keep_memory)
  4822.      bfd *abfd;
  4823.      asection *o;
  4824.      PTR external_relocs;
  4825.      Elf_Internal_Rela *internal_relocs;
  4826.      boolean keep_memory;
  4827. {
  4828.   Elf_Internal_Shdr *rel_hdr;
  4829.   PTR alloc1 = NULL;
  4830.   Elf_Internal_Rela *alloc2 = NULL;
  4831.  
  4832.   if (elf_section_data (o)->relocs != NULL)
  4833.     return elf_section_data (o)->relocs;
  4834.  
  4835.   if (o->reloc_count == 0)
  4836.     return NULL;
  4837.  
  4838.   rel_hdr = &elf_section_data (o)->rel_hdr;
  4839.  
  4840.   if (internal_relocs == NULL)
  4841.     {
  4842.       size_t size;
  4843.  
  4844.       size = o->reloc_count * sizeof (Elf_Internal_Rela);
  4845.       if (keep_memory)
  4846.     internal_relocs = (Elf_Internal_Rela *) bfd_alloc (abfd, size);
  4847.       else
  4848.     internal_relocs = alloc2 = (Elf_Internal_Rela *) malloc (size);
  4849.       if (internal_relocs == NULL)
  4850.     {
  4851.       bfd_set_error (bfd_error_no_memory);
  4852.       goto error_return;
  4853.     }
  4854.     }
  4855.  
  4856.   if (external_relocs == NULL)
  4857.     {
  4858.       alloc1 = (PTR) malloc (rel_hdr->sh_size);
  4859.       if (alloc1 == NULL)
  4860.     {
  4861.       bfd_set_error (bfd_error_no_memory);
  4862.       goto error_return;
  4863.     }
  4864.       external_relocs = alloc1;
  4865.     }
  4866.  
  4867.   if ((bfd_seek (abfd, rel_hdr->sh_offset, SEEK_SET) != 0)
  4868.       || (bfd_read (external_relocs, 1, rel_hdr->sh_size, abfd)
  4869.       != rel_hdr->sh_size))
  4870.     goto error_return;
  4871.  
  4872.   /* Swap in the relocs.  For convenience, we always produce an
  4873.      Elf_Internal_Rela array; if the relocs are Rel, we set the addend
  4874.      to 0.  */
  4875.   if (rel_hdr->sh_entsize == sizeof (Elf_External_Rel))
  4876.     {
  4877.       Elf_External_Rel *erel;
  4878.       Elf_External_Rel *erelend;
  4879.       Elf_Internal_Rela *irela;
  4880.  
  4881.       erel = (Elf_External_Rel *) external_relocs;
  4882.       erelend = erel + o->reloc_count;
  4883.       irela = internal_relocs;
  4884.       for (; erel < erelend; erel++, irela++)
  4885.     {
  4886.       Elf_Internal_Rel irel;
  4887.  
  4888.       elf_swap_reloc_in (abfd, erel, &irel);
  4889.       irela->r_offset = irel.r_offset;
  4890.       irela->r_info = irel.r_info;
  4891.       irela->r_addend = 0;
  4892.     }
  4893.     }
  4894.   else
  4895.     {
  4896.       Elf_External_Rela *erela;
  4897.       Elf_External_Rela *erelaend;
  4898.       Elf_Internal_Rela *irela;
  4899.  
  4900.       BFD_ASSERT (rel_hdr->sh_entsize == sizeof (Elf_External_Rela));
  4901.  
  4902.       erela = (Elf_External_Rela *) external_relocs;
  4903.       erelaend = erela + o->reloc_count;
  4904.       irela = internal_relocs;
  4905.       for (; erela < erelaend; erela++, irela++)
  4906.     elf_swap_reloca_in (abfd, erela, irela);
  4907.     }
  4908.  
  4909.   /* Cache the results for next time, if we can.  */
  4910.   if (keep_memory)
  4911.     elf_section_data (o)->relocs = internal_relocs;
  4912.          
  4913.   if (alloc1 != NULL)
  4914.     free (alloc1);
  4915.  
  4916.   /* Don't free alloc2, since if it was allocated we are passing it
  4917.      back (under the name of internal_relocs).  */
  4918.  
  4919.   return internal_relocs;
  4920.  
  4921.  error_return:
  4922.   if (alloc1 != NULL)
  4923.     free (alloc1);
  4924.   if (alloc2 != NULL)
  4925.     free (alloc2);
  4926.   return NULL;
  4927. }
  4928.  
  4929. /* Record an assignment to a symbol made by a linker script.  We need
  4930.    this in case some dynamic object refers to this symbol.  */
  4931.  
  4932. /*ARGSUSED*/
  4933. boolean
  4934. NAME(bfd_elf,record_link_assignment) (output_bfd, info, name)
  4935.      bfd *output_bfd;
  4936.      struct bfd_link_info *info;
  4937.      const char *name;
  4938. {
  4939.   struct elf_link_hash_entry *h;
  4940.  
  4941.   if (info->hash->creator->flavour != bfd_target_elf_flavour)
  4942.     return true;
  4943.  
  4944.   h = elf_link_hash_lookup (elf_hash_table (info), name, true, true, false);
  4945.   if (h == NULL)
  4946.     return false;
  4947.  
  4948.   h->elf_link_hash_flags |= ELF_LINK_HASH_DEF_REGULAR;
  4949.   h->type = STT_OBJECT;
  4950.  
  4951.   if (((h->elf_link_hash_flags & (ELF_LINK_HASH_DEF_DYNAMIC
  4952.                   | ELF_LINK_HASH_REF_DYNAMIC)) != 0
  4953.        || info->shared)
  4954.       && h->dynindx == -1)
  4955.     {
  4956.       if (! elf_link_record_dynamic_symbol (info, h))
  4957.     return false;
  4958.  
  4959.       /* If this is a weak defined symbol, and we know a corresponding
  4960.      real symbol from the same dynamic object, make sure the real
  4961.      symbol is also made into a dynamic symbol.  */
  4962.       if (h->weakdef != NULL
  4963.       && h->weakdef->dynindx == -1)
  4964.     {
  4965.       if (! elf_link_record_dynamic_symbol (info, h->weakdef))
  4966.         return false;
  4967.     }
  4968.     }
  4969.  
  4970.   return true;
  4971. }
  4972.  
  4973. /* Array used to determine the number of hash table buckets to use
  4974.    based on the number of symbols there are.  If there are fewer than
  4975.    3 symbols we use 1 bucket, fewer than 17 symbols we use 3 buckets,
  4976.    fewer than 37 we use 17 buckets, and so forth.  We never use more
  4977.    than 521 buckets.  */
  4978.  
  4979. static const size_t elf_buckets[] =
  4980. {
  4981.   1, 3, 17, 37, 67, 97, 131, 197, 263, 521, 0
  4982. };
  4983.  
  4984. /* Set up the sizes and contents of the ELF dynamic sections.  This is
  4985.    called by the ELF linker emulation before_allocation routine.  We
  4986.    must set the sizes of the sections before the linker sets the
  4987.    addresses of the various sections.  */
  4988.  
  4989. boolean
  4990. NAME(bfd_elf,size_dynamic_sections) (output_bfd, soname, rpath,
  4991.                      export_dynamic, info, sinterpptr)
  4992.      bfd *output_bfd;
  4993.      const char *soname;
  4994.      const char *rpath;
  4995.      boolean export_dynamic;
  4996.      struct bfd_link_info *info;
  4997.      asection **sinterpptr;
  4998. {
  4999.   bfd *dynobj;
  5000.   asection *s;
  5001.   Elf_Internal_Sym isym;
  5002.   size_t i;
  5003.   size_t bucketcount;
  5004.   struct elf_backend_data *bed;
  5005.  
  5006.   *sinterpptr = NULL;
  5007.  
  5008.   if (info->hash->creator->flavour != bfd_target_elf_flavour)
  5009.     return true;
  5010.  
  5011.   dynobj = elf_hash_table (info)->dynobj;
  5012.  
  5013.   /* If there were no dynamic objects in the link, there is nothing to
  5014.      do here.  */
  5015.   if (dynobj == NULL)
  5016.     return true;
  5017.  
  5018.   /* If we are supposed to export all symbols into the dynamic symbol
  5019.      table (this is not the normal case), then do so.  */
  5020.   if (export_dynamic)
  5021.     elf_link_hash_traverse (elf_hash_table (info), elf_export_symbol,
  5022.                 (PTR) info);
  5023.  
  5024.   if (elf_hash_table (info)->dynamic_sections_created)
  5025.     {
  5026.       bfd_size_type strsize;
  5027.  
  5028.       *sinterpptr = bfd_get_section_by_name (dynobj, ".interp");
  5029.       BFD_ASSERT (*sinterpptr != NULL || info->shared);
  5030.  
  5031.       if (soname != NULL)
  5032.     {
  5033.       bfd_size_type indx;
  5034.  
  5035.       indx = _bfd_stringtab_add (elf_hash_table (info)->dynstr, soname,
  5036.                      true, true);
  5037.       if (indx == (bfd_size_type) -1
  5038.           || ! elf_add_dynamic_entry (info, DT_SONAME, indx))
  5039.         return false;
  5040.     }      
  5041.  
  5042.       if (rpath != NULL)
  5043.     {
  5044.       bfd_size_type indx;
  5045.  
  5046.       indx = _bfd_stringtab_add (elf_hash_table (info)->dynstr, rpath,
  5047.                      true, true);
  5048.       if (indx == (bfd_size_type) -1
  5049.           || ! elf_add_dynamic_entry (info, DT_RPATH, indx))
  5050.         return false;
  5051.     }
  5052.  
  5053.       /* Find all symbols which were defined in a dynamic object and make
  5054.      the backend pick a reasonable value for them.  */
  5055.       elf_link_hash_traverse (elf_hash_table (info),
  5056.                   elf_adjust_dynamic_symbol,
  5057.                   (PTR) info);
  5058.  
  5059.       /* Add some entries to the .dynamic section.  We fill in some of the
  5060.      values later, in elf_bfd_final_link, but we must add the entries
  5061.      now so that we know the final size of the .dynamic section.  */
  5062.       if (elf_link_hash_lookup (elf_hash_table (info), "_init", false,
  5063.                 false, false) != NULL)
  5064.     {
  5065.       if (! elf_add_dynamic_entry (info, DT_INIT, 0))
  5066.         return false;
  5067.     }
  5068.       if (elf_link_hash_lookup (elf_hash_table (info), "_fini", false,
  5069.                 false, false) != NULL)
  5070.     {
  5071.       if (! elf_add_dynamic_entry (info, DT_FINI, 0))
  5072.         return false;
  5073.     }
  5074.       strsize = _bfd_stringtab_size (elf_hash_table (info)->dynstr);
  5075.       if (! elf_add_dynamic_entry (info, DT_HASH, 0)
  5076.       || ! elf_add_dynamic_entry (info, DT_STRTAB, 0)
  5077.       || ! elf_add_dynamic_entry (info, DT_SYMTAB, 0)
  5078.       || ! elf_add_dynamic_entry (info, DT_STRSZ, strsize)
  5079.       || ! elf_add_dynamic_entry (info, DT_SYMENT,
  5080.                       sizeof (Elf_External_Sym)))
  5081.     return false;
  5082.     }
  5083.  
  5084.   /* The backend must work out the sizes of all the other dynamic
  5085.      sections.  */
  5086.   bed = get_elf_backend_data (output_bfd);
  5087.   if (! (*bed->elf_backend_size_dynamic_sections) (output_bfd, info))
  5088.     return false;
  5089.  
  5090.   if (elf_hash_table (info)->dynamic_sections_created)
  5091.     {
  5092.       size_t dynsymcount;
  5093.  
  5094.       /* Set the size of the .dynsym and .hash sections.  We counted
  5095.      the number of dynamic symbols in elf_link_add_object_symbols.
  5096.      We will build the contents of .dynsym and .hash when we build
  5097.      the final symbol table, because until then we do not know the
  5098.      correct value to give the symbols.  We built the .dynstr
  5099.      section as we went along in elf_link_add_object_symbols.  */
  5100.       dynsymcount = elf_hash_table (info)->dynsymcount;
  5101.       s = bfd_get_section_by_name (dynobj, ".dynsym");
  5102.       BFD_ASSERT (s != NULL);
  5103.       s->_raw_size = dynsymcount * sizeof (Elf_External_Sym);
  5104.       s->contents = (bfd_byte *) bfd_alloc (output_bfd, s->_raw_size);
  5105.       if (s->contents == NULL && s->_raw_size != 0)
  5106.     {
  5107.       bfd_set_error (bfd_error_no_memory);
  5108.       return false;
  5109.     }
  5110.  
  5111.       /* The first entry in .dynsym is a dummy symbol.  */
  5112.       isym.st_value = 0;
  5113.       isym.st_size = 0;
  5114.       isym.st_name = 0;
  5115.       isym.st_info = 0;
  5116.       isym.st_other = 0;
  5117.       isym.st_shndx = 0;
  5118.       elf_swap_symbol_out (output_bfd, &isym,
  5119.                (Elf_External_Sym *) s->contents);
  5120.  
  5121.       for (i = 0; elf_buckets[i] != 0; i++)
  5122.     {
  5123.       bucketcount = elf_buckets[i];
  5124.       if (dynsymcount < elf_buckets[i + 1])
  5125.         break;
  5126.     }
  5127.  
  5128.       s = bfd_get_section_by_name (dynobj, ".hash");
  5129.       BFD_ASSERT (s != NULL);
  5130.       s->_raw_size = (2 + bucketcount + dynsymcount) * (ARCH_SIZE / 8);
  5131.       s->contents = (bfd_byte *) bfd_alloc (output_bfd, s->_raw_size);
  5132.       if (s->contents == NULL)
  5133.     {
  5134.       bfd_set_error (bfd_error_no_memory);
  5135.       return false;
  5136.     }
  5137.       memset (s->contents, 0, s->_raw_size);
  5138.  
  5139.       put_word (output_bfd, bucketcount, s->contents);
  5140.       put_word (output_bfd, dynsymcount, s->contents + (ARCH_SIZE / 8));
  5141.  
  5142.       elf_hash_table (info)->bucketcount = bucketcount;
  5143.  
  5144.       s = bfd_get_section_by_name (dynobj, ".dynstr");
  5145.       BFD_ASSERT (s != NULL);
  5146.       s->_raw_size = _bfd_stringtab_size (elf_hash_table (info)->dynstr);
  5147.  
  5148.       if (! elf_add_dynamic_entry (info, DT_NULL, 0))
  5149.     return false;
  5150.     }
  5151.  
  5152.   return true;
  5153. }
  5154.  
  5155. /* This routine is used to export all defined symbols into the dynamic
  5156.    symbol table.  It is called via elf_link_hash_traverse.  */
  5157.  
  5158. static boolean
  5159. elf_export_symbol (h, data)
  5160.      struct elf_link_hash_entry *h;
  5161.      PTR data;
  5162. {
  5163.   struct bfd_link_info *info = (struct bfd_link_info *) data;
  5164.  
  5165.   if (h->dynindx == -1
  5166.       && (h->elf_link_hash_flags
  5167.       & (ELF_LINK_HASH_DEF_REGULAR | ELF_LINK_HASH_REF_REGULAR)) != 0)
  5168.     {
  5169.       if (! elf_link_record_dynamic_symbol (info, h))
  5170.     {
  5171.       /* FIXME: No way to report error.  */
  5172.       abort ();
  5173.     }
  5174.     }
  5175.  
  5176.   return true;
  5177. }
  5178.  
  5179. /* Make the backend pick a good value for a dynamic symbol.  This is
  5180.    called via elf_link_hash_traverse, and also calls itself
  5181.    recursively.  */
  5182.  
  5183. static boolean
  5184. elf_adjust_dynamic_symbol (h, data)
  5185.      struct elf_link_hash_entry *h;
  5186.      PTR data;
  5187. {
  5188.   struct bfd_link_info *info = (struct bfd_link_info *) data;
  5189.   bfd *dynobj;
  5190.   struct elf_backend_data *bed;
  5191.  
  5192.   /* If this symbol does not require a PLT entry, and it is not
  5193.      defined by a dynamic object, or is not referenced by a regular
  5194.      object, ignore it.  FIXME: Do we need to worry about symbols
  5195.      which are defined by one dynamic object and referenced by another
  5196.      one?  */
  5197.   if ((h->elf_link_hash_flags & ELF_LINK_HASH_NEEDS_PLT) == 0
  5198.       && ((h->elf_link_hash_flags & ELF_LINK_HASH_DEF_REGULAR) != 0
  5199.       || (h->elf_link_hash_flags & ELF_LINK_HASH_DEF_DYNAMIC) == 0
  5200.       || (h->elf_link_hash_flags & ELF_LINK_HASH_REF_REGULAR) == 0))
  5201.     return true;
  5202.  
  5203.   /* If we've already adjusted this symbol, don't do it again.  This
  5204.      can happen via a recursive call.  */
  5205.   if ((h->elf_link_hash_flags & ELF_LINK_HASH_DYNAMIC_ADJUSTED) != 0)
  5206.     return true;
  5207.  
  5208.   /* Don't look at this symbol again.  Note that we must set this
  5209.      after checking the above conditions, because we may look at a
  5210.      symbol once, decide not to do anything, and then get called
  5211.      recursively later after REF_REGULAR is set below.  */
  5212.   h->elf_link_hash_flags |= ELF_LINK_HASH_DYNAMIC_ADJUSTED;
  5213.  
  5214.   /* If this is a weak definition, and we know a real definition, and
  5215.      the real symbol is not itself defined by a regular object file,
  5216.      then get a good value for the real definition.  We handle the
  5217.      real symbol first, for the convenience of the backend routine.
  5218.  
  5219.      Note that there is a confusing case here.  If the real definition
  5220.      is defined by a regular object file, we don't get the real symbol
  5221.      from the dynamic object, but we do get the weak symbol.  If the
  5222.      processor backend uses a COPY reloc, then if some routine in the
  5223.      dynamic object changes the real symbol, we will not see that
  5224.      change in the corresponding weak symbol.  This is the way other
  5225.      ELF linkers work as well, and seems to be a result of the shared
  5226.      library model.
  5227.  
  5228.      I will clarify this issue.  Most SVR4 shared libraries define the
  5229.      variable _timezone and define timezone as a weak synonym.  The
  5230.      tzset call changes _timezone.  If you write
  5231.        extern int timezone;
  5232.        int _timezone = 5;
  5233.        int main () { tzset (); printf ("%d %d\n", timezone, _timezone); }
  5234.      you might expect that, since timezone is a synonym for _timezone,
  5235.      the same number will print both times.  However, if the processor
  5236.      backend uses a COPY reloc, then actually timezone will be copied
  5237.      into your process image, and, since you define _timezone
  5238.      yourself, _timezone will not.  Thus timezone and _timezone will
  5239.      wind up at different memory locations.  The tzset call will set
  5240.      _timezone, leaving timezone unchanged.  */
  5241.  
  5242.   if (h->weakdef != NULL)
  5243.     {
  5244.       struct elf_link_hash_entry *weakdef;
  5245.  
  5246.       BFD_ASSERT (h->root.type == bfd_link_hash_defined);
  5247.       weakdef = h->weakdef;
  5248.       BFD_ASSERT (weakdef->root.type == bfd_link_hash_defined);
  5249.       BFD_ASSERT (weakdef->elf_link_hash_flags & ELF_LINK_HASH_DEF_DYNAMIC);
  5250.       if ((weakdef->elf_link_hash_flags & ELF_LINK_HASH_DEF_REGULAR) != 0)
  5251.     {
  5252.       /* This symbol is defined by a regular object file, so we
  5253.          will not do anything special.  Clear weakdef for the
  5254.          convenience of the processor backend.  */
  5255.       h->weakdef = NULL;
  5256.     }
  5257.       else
  5258.     {
  5259.       /* There is an implicit reference by a regular object file
  5260.          via the weak symbol.  */
  5261.       weakdef->elf_link_hash_flags |= ELF_LINK_HASH_REF_REGULAR;
  5262.       if (! elf_adjust_dynamic_symbol (weakdef, (PTR) info))
  5263.         return false;
  5264.     }
  5265.     }
  5266.  
  5267.   dynobj = elf_hash_table (info)->dynobj;
  5268.   bed = get_elf_backend_data (dynobj);
  5269.   if (! (*bed->elf_backend_adjust_dynamic_symbol) (info, h))
  5270.     {
  5271.       /* FIXME: No way to return error.  */
  5272.       abort ();
  5273.     }
  5274.  
  5275.   return true;
  5276. }
  5277.  
  5278. /* Final phase of ELF linker.  */
  5279.  
  5280. /* A structure we use to avoid passing large numbers of arguments.  */
  5281.  
  5282. struct elf_final_link_info
  5283. {
  5284.   /* General link information.  */
  5285.   struct bfd_link_info *info;
  5286.   /* Output BFD.  */
  5287.   bfd *output_bfd;
  5288.   /* Symbol string table.  */
  5289.   struct bfd_strtab_hash *symstrtab;
  5290.   /* .dynsym section.  */
  5291.   asection *dynsym_sec;
  5292.   /* .hash section.  */
  5293.   asection *hash_sec;
  5294.   /* Buffer large enough to hold contents of any section.  */
  5295.   bfd_byte *contents;
  5296.   /* Buffer large enough to hold external relocs of any section.  */
  5297.   PTR external_relocs;
  5298.   /* Buffer large enough to hold internal relocs of any section.  */
  5299.   Elf_Internal_Rela *internal_relocs;
  5300.   /* Buffer large enough to hold external local symbols of any input
  5301.      BFD.  */
  5302.   Elf_External_Sym *external_syms;
  5303.   /* Buffer large enough to hold internal local symbols of any input
  5304.      BFD.  */
  5305.   Elf_Internal_Sym *internal_syms;
  5306.   /* Array large enough to hold a symbol index for each local symbol
  5307.      of any input BFD.  */
  5308.   long *indices;
  5309.   /* Array large enough to hold a section pointer for each local
  5310.      symbol of any input BFD.  */
  5311.   asection **sections;
  5312.   /* Buffer to hold swapped out symbols.  */
  5313.   Elf_External_Sym *symbuf;
  5314.   /* Number of swapped out symbols in buffer.  */
  5315.   size_t symbuf_count;
  5316.   /* Number of symbols which fit in symbuf.  */
  5317.   size_t symbuf_size;
  5318. };
  5319.  
  5320. static boolean elf_link_output_sym
  5321.   PARAMS ((struct elf_final_link_info *, const char *,
  5322.        Elf_Internal_Sym *, asection *));
  5323. static boolean elf_link_flush_output_syms
  5324.   PARAMS ((struct elf_final_link_info *));
  5325. static boolean elf_link_output_extsym
  5326.   PARAMS ((struct elf_link_hash_entry *, PTR));
  5327. static boolean elf_link_input_bfd
  5328.   PARAMS ((struct elf_final_link_info *, bfd *));
  5329. static boolean elf_reloc_link_order
  5330.   PARAMS ((bfd *, struct bfd_link_info *, asection *,
  5331.        struct bfd_link_order *));
  5332.  
  5333. /* Do the final step of an ELF link.  */
  5334.  
  5335. boolean
  5336. elf_bfd_final_link (abfd, info)
  5337.      bfd *abfd;
  5338.      struct bfd_link_info *info;
  5339. {
  5340.   boolean dynamic;
  5341.   bfd *dynobj;
  5342.   struct elf_final_link_info finfo;
  5343.   register asection *o;
  5344.   register struct bfd_link_order *p;
  5345.   register bfd *sub;
  5346.   size_t max_contents_size;
  5347.   size_t max_external_reloc_size;
  5348.   size_t max_internal_reloc_count;
  5349.   size_t max_sym_count;
  5350.   file_ptr off;
  5351.   Elf_Internal_Sym elfsym;
  5352.   unsigned int i;
  5353.   Elf_Internal_Shdr *symtab_hdr;
  5354.   Elf_Internal_Shdr *symstrtab_hdr;
  5355.   struct elf_backend_data *bed = get_elf_backend_data (abfd);
  5356.  
  5357.   if (info->shared)
  5358.     abfd->flags |= DYNAMIC;
  5359.  
  5360.   dynamic = elf_hash_table (info)->dynamic_sections_created;
  5361.   dynobj = elf_hash_table (info)->dynobj;
  5362.  
  5363.   finfo.info = info;
  5364.   finfo.output_bfd = abfd;
  5365.   finfo.symstrtab = elf_stringtab_init ();
  5366.   if (finfo.symstrtab == NULL)
  5367.     return false;
  5368.   if (! dynamic)
  5369.     {
  5370.       finfo.dynsym_sec = NULL;
  5371.       finfo.hash_sec = NULL;
  5372.     }
  5373.   else
  5374.     {
  5375.       finfo.dynsym_sec = bfd_get_section_by_name (dynobj, ".dynsym");
  5376.       finfo.hash_sec = bfd_get_section_by_name (dynobj, ".hash");
  5377.       if (finfo.dynsym_sec == NULL
  5378.       || finfo.hash_sec == NULL)
  5379.     abort ();
  5380.     }
  5381.   finfo.contents = NULL;
  5382.   finfo.external_relocs = NULL;
  5383.   finfo.internal_relocs = NULL;
  5384.   finfo.external_syms = NULL;
  5385.   finfo.internal_syms = NULL;
  5386.   finfo.indices = NULL;
  5387.   finfo.sections = NULL;
  5388.   finfo.symbuf = NULL;
  5389.   finfo.symbuf_count = 0;
  5390.  
  5391.   /* Count up the number of relocations we will output for each output
  5392.      section, so that we know the sizes of the reloc sections.  We
  5393.      also figure out some maximum sizes.  */
  5394.   max_contents_size = 0;
  5395.   max_external_reloc_size = 0;
  5396.   max_internal_reloc_count = 0;
  5397.   max_sym_count = 0;
  5398.   for (o = abfd->sections; o != (asection *) NULL; o = o->next)
  5399.     {
  5400.       o->reloc_count = 0;
  5401.  
  5402.       for (p = o->link_order_head; p != NULL; p = p->next)
  5403.     {
  5404.       if (p->type == bfd_section_reloc_link_order
  5405.           || p->type == bfd_symbol_reloc_link_order)
  5406.         ++o->reloc_count;
  5407.       else if (p->type == bfd_indirect_link_order)
  5408.         {
  5409.           asection *sec;
  5410.  
  5411.           sec = p->u.indirect.section;
  5412.  
  5413.           if (info->relocateable)
  5414.         o->reloc_count += sec->reloc_count;
  5415.  
  5416.           if (sec->_raw_size > max_contents_size)
  5417.         max_contents_size = sec->_raw_size;
  5418.           if (sec->_cooked_size > max_contents_size)
  5419.         max_contents_size = sec->_cooked_size;
  5420.  
  5421.           /* We are interested in just local symbols, not all
  5422.          symbols.  */
  5423.           if (bfd_get_flavour (sec->owner) == bfd_target_elf_flavour)
  5424.         {
  5425.           size_t sym_count;
  5426.  
  5427.           if (elf_bad_symtab (sec->owner))
  5428.             sym_count = (elf_tdata (sec->owner)->symtab_hdr.sh_size
  5429.                  / sizeof (Elf_External_Sym));
  5430.           else
  5431.             sym_count = elf_tdata (sec->owner)->symtab_hdr.sh_info;
  5432.  
  5433.           if (sym_count > max_sym_count)
  5434.             max_sym_count = sym_count;
  5435.  
  5436.           if ((sec->flags & SEC_RELOC) != 0)
  5437.             {
  5438.               size_t ext_size;
  5439.  
  5440.               ext_size = elf_section_data (sec)->rel_hdr.sh_size;
  5441.               if (ext_size > max_external_reloc_size)
  5442.             max_external_reloc_size = ext_size;
  5443.               if (sec->reloc_count > max_internal_reloc_count)
  5444.             max_internal_reloc_count = sec->reloc_count;
  5445.             }
  5446.         }
  5447.         }
  5448.     }
  5449.  
  5450.       if (o->reloc_count > 0)
  5451.     o->flags |= SEC_RELOC;
  5452.       else
  5453.     {
  5454.       /* Explicitly clear the SEC_RELOC flag.  The linker tends to
  5455.          set it (this is probably a bug) and if it is set
  5456.          assign_section_numbers will create a reloc section.  */
  5457.       o->flags &=~ SEC_RELOC;
  5458.     }
  5459.  
  5460.       /* If the SEC_ALLOC flag is not set, force the section VMA to
  5461.      zero.  This is done in elf_fake_sections as well, but forcing
  5462.      the VMA to 0 here will ensure that relocs against these
  5463.      sections are handled correctly.  */
  5464.       if ((o->flags & SEC_ALLOC) == 0)
  5465.     o->vma = 0;
  5466.     }
  5467.  
  5468.   /* Figure out the file positions for everything but the symbol table
  5469.      and the relocs.  We set symcount to force assign_section_numbers
  5470.      to create a symbol table.  */
  5471.   abfd->symcount = info->strip == strip_all ? 0 : 1;
  5472.   BFD_ASSERT (! abfd->output_has_begun);
  5473.   if (! elf_compute_section_file_positions (abfd, info))
  5474.     goto error_return;
  5475.  
  5476.   /* That created the reloc sections.  Set their sizes, and assign
  5477.      them file positions, and allocate some buffers.  */
  5478.   for (o = abfd->sections; o != NULL; o = o->next)
  5479.     {
  5480.       if ((o->flags & SEC_RELOC) != 0)
  5481.     {
  5482.       Elf_Internal_Shdr *rel_hdr;
  5483.       register struct elf_link_hash_entry **p, **pend;
  5484.  
  5485.       rel_hdr = &elf_section_data (o)->rel_hdr;
  5486.  
  5487.       rel_hdr->sh_size = rel_hdr->sh_entsize * o->reloc_count;
  5488.  
  5489.       /* The contents field must last into write_object_contents,
  5490.          so we allocate it with bfd_alloc rather than malloc.  */
  5491.       rel_hdr->contents = (PTR) bfd_alloc (abfd, rel_hdr->sh_size);
  5492.       if (rel_hdr->contents == NULL && rel_hdr->sh_size != 0)
  5493.         {
  5494.           bfd_set_error (bfd_error_no_memory);
  5495.           goto error_return;
  5496.         }
  5497.  
  5498.       p = ((struct elf_link_hash_entry **)
  5499.            malloc (o->reloc_count
  5500.                * sizeof (struct elf_link_hash_entry *)));
  5501.       if (p == NULL && o->reloc_count != 0)
  5502.         {
  5503.           bfd_set_error (bfd_error_no_memory);
  5504.           goto error_return;
  5505.         }
  5506.       elf_section_data (o)->rel_hashes = p;
  5507.       pend = p + o->reloc_count;
  5508.       for (; p < pend; p++)
  5509.         *p = NULL;
  5510.  
  5511.       /* Use the reloc_count field as an index when outputting the
  5512.          relocs.  */
  5513.       o->reloc_count = 0;
  5514.     }
  5515.     }
  5516.  
  5517.   assign_file_positions_for_relocs (abfd);
  5518.  
  5519.   /* We have now assigned file positions for all the sections except
  5520.      .symtab and .strtab.  We start the .symtab section at the current
  5521.      file position, and write directly to it.  We build the .strtab
  5522.      section in memory.  When we add .dynsym support, we will build
  5523.      that in memory as well (.dynsym is smaller than .symtab).  */
  5524.   abfd->symcount = 0;
  5525.   symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
  5526.   /* sh_name is set in prep_headers.  */
  5527.   symtab_hdr->sh_type = SHT_SYMTAB;
  5528.   symtab_hdr->sh_flags = 0;
  5529.   symtab_hdr->sh_addr = 0;
  5530.   symtab_hdr->sh_size = 0;
  5531.   symtab_hdr->sh_entsize = sizeof (Elf_External_Sym);
  5532.   /* sh_link is set in assign_section_numbers.  */
  5533.   /* sh_info is set below.  */
  5534.   /* sh_offset is set just below.  */
  5535.   symtab_hdr->sh_addralign = 4;  /* FIXME: system dependent?  */
  5536.  
  5537.   off = elf_tdata (abfd)->next_file_pos;
  5538.   off = assign_file_position_for_section (symtab_hdr, off, true);
  5539.  
  5540.   /* Note that at this point elf_tdata (abfd)->next_file_pos is
  5541.      incorrect.  We do not yet know the size of the .symtab section.
  5542.      We correct next_file_pos below, after we do know the size.  */
  5543.  
  5544.   /* Allocate a buffer to hold swapped out symbols.  This is to avoid
  5545.      continuously seeking to the right position in the file.  */
  5546.   if (! info->keep_memory || max_sym_count < 20)
  5547.     finfo.symbuf_size = 20;
  5548.   else
  5549.     finfo.symbuf_size = max_sym_count;
  5550.   finfo.symbuf = ((Elf_External_Sym *)
  5551.           malloc (finfo.symbuf_size * sizeof (Elf_External_Sym)));
  5552.   if (finfo.symbuf == NULL)
  5553.     {
  5554.       bfd_set_error (bfd_error_no_memory);
  5555.       goto error_return;
  5556.     }
  5557.  
  5558.   /* Start writing out the symbol table.  The first symbol is always a
  5559.      dummy symbol.  */
  5560.   elfsym.st_value = 0;
  5561.   elfsym.st_size = 0;
  5562.   elfsym.st_info = 0;
  5563.   elfsym.st_other = 0;
  5564.   elfsym.st_shndx = SHN_UNDEF;
  5565.   if (! elf_link_output_sym (&finfo, (const char *) NULL,
  5566.                  &elfsym, bfd_und_section_ptr))
  5567.     goto error_return;
  5568.  
  5569. #if 0
  5570.   /* Some standard ELF linkers do this, but we don't because it causes
  5571.      bootstrap comparison failures.  */
  5572.   /* Output a file symbol for the output file as the second symbol.
  5573.      We output this even if we are discarding local symbols, although
  5574.      I'm not sure if this is correct.  */
  5575.   elfsym.st_value = 0;
  5576.   elfsym.st_size = 0;
  5577.   elfsym.st_info = ELF_ST_INFO (STB_LOCAL, STT_FILE);
  5578.   elfsym.st_other = 0;
  5579.   elfsym.st_shndx = SHN_ABS;
  5580.   if (! elf_link_output_sym (&finfo, bfd_get_filename (abfd),
  5581.                  &elfsym, bfd_abs_section_ptr))
  5582.     goto error_return;
  5583. #endif
  5584.  
  5585.   /* Output a symbol for each section.  We output these even if we are
  5586.      discarding local symbols, since they are used for relocs.  These
  5587.      symbols have no names.  We store the index of each one in the
  5588.      index field of the section, so that we can find it again when
  5589.      outputting relocs.  */
  5590.   elfsym.st_value = 0;
  5591.   elfsym.st_size = 0;
  5592.   elfsym.st_info = ELF_ST_INFO (STB_LOCAL, STT_SECTION);
  5593.   elfsym.st_other = 0;
  5594.   for (i = 1; i < elf_elfheader (abfd)->e_shnum; i++)
  5595.     {
  5596.       o = section_from_elf_index (abfd, i);
  5597.       if (o != NULL)
  5598.     o->target_index = abfd->symcount;
  5599.       elfsym.st_shndx = i;
  5600.       if (! elf_link_output_sym (&finfo, (const char *) NULL,
  5601.                  &elfsym, o))
  5602.     goto error_return;
  5603.     }
  5604.  
  5605.   /* Allocate some memory to hold information read in from the input
  5606.      files.  */
  5607.   finfo.contents = (bfd_byte *) malloc (max_contents_size);
  5608.   finfo.external_relocs = (PTR) malloc (max_external_reloc_size);
  5609.   finfo.internal_relocs = ((Elf_Internal_Rela *)
  5610.                malloc (max_internal_reloc_count
  5611.                    * sizeof (Elf_Internal_Rela)));
  5612.   finfo.external_syms = ((Elf_External_Sym *)
  5613.              malloc (max_sym_count * sizeof (Elf_External_Sym)));
  5614.   finfo.internal_syms = ((Elf_Internal_Sym *)
  5615.              malloc (max_sym_count * sizeof (Elf_Internal_Sym)));
  5616.   finfo.indices = (long *) malloc (max_sym_count * sizeof (long));
  5617.   finfo.sections = (asection **) malloc (max_sym_count * sizeof (asection *));
  5618.   if ((finfo.contents == NULL && max_contents_size != 0)
  5619.       || (finfo.external_relocs == NULL && max_external_reloc_size != 0)
  5620.       || (finfo.internal_relocs == NULL && max_internal_reloc_count != 0)
  5621.       || (finfo.external_syms == NULL && max_sym_count != 0)
  5622.       || (finfo.internal_syms == NULL && max_sym_count != 0)
  5623.       || (finfo.indices == NULL && max_sym_count != 0)
  5624.       || (finfo.sections == NULL && max_sym_count != 0))
  5625.     {
  5626.       bfd_set_error (bfd_error_no_memory);
  5627.       goto error_return;
  5628.     }
  5629.  
  5630.   /* Since ELF permits relocations to be against local symbols, we
  5631.      must have the local symbols available when we do the relocations.
  5632.      Since we would rather only read the local symbols once, and we
  5633.      would rather not keep them in memory, we handle all the
  5634.      relocations for a single input file at the same time.
  5635.  
  5636.      Unfortunately, there is no way to know the total number of local
  5637.      symbols until we have seen all of them, and the local symbol
  5638.      indices precede the global symbol indices.  This means that when
  5639.      we are generating relocateable output, and we see a reloc against
  5640.      a global symbol, we can not know the symbol index until we have
  5641.      finished examining all the local symbols to see which ones we are
  5642.      going to output.  To deal with this, we keep the relocations in
  5643.      memory, and don't output them until the end of the link.  This is
  5644.      an unfortunate waste of memory, but I don't see a good way around
  5645.      it.  Fortunately, it only happens when performing a relocateable
  5646.      link, which is not the common case.  FIXME: If keep_memory is set
  5647.      we could write the relocs out and then read them again; I don't
  5648.      know how bad the memory loss will be.  */
  5649.  
  5650.   for (sub = info->input_bfds; sub != NULL; sub = sub->next)
  5651.     sub->output_has_begun = false;
  5652.   for (o = abfd->sections; o != NULL; o = o->next)
  5653.     {
  5654.       for (p = o->link_order_head; p != NULL; p = p->next)
  5655.     {
  5656.       if (p->type == bfd_indirect_link_order
  5657.           && (bfd_get_flavour (p->u.indirect.section->owner)
  5658.           == bfd_target_elf_flavour))
  5659.         {
  5660.           sub = p->u.indirect.section->owner;
  5661.           if (! sub->output_has_begun)
  5662.         {
  5663.           if (! elf_link_input_bfd (&finfo, sub))
  5664.             goto error_return;
  5665.           sub->output_has_begun = true;
  5666.         }
  5667.         }
  5668.       else if (p->type == bfd_section_reloc_link_order
  5669.            || p->type == bfd_symbol_reloc_link_order)
  5670.         {
  5671.           if (! elf_reloc_link_order (abfd, info, o, p))
  5672.         goto error_return;
  5673.         }
  5674.       else
  5675.         {
  5676.           if (! _bfd_default_link_order (abfd, info, o, p))
  5677.         goto error_return;
  5678.         }
  5679.     }
  5680.     }
  5681.  
  5682.   /* That wrote out all the local symbols.  Finish up the symbol table
  5683.      with the global symbols.  */
  5684.  
  5685.   /* The sh_info field records the index of the first non local
  5686.      symbol.  */
  5687.   symtab_hdr->sh_info = abfd->symcount;
  5688.   if (dynamic)
  5689.     elf_section_data (finfo.dynsym_sec->output_section)->this_hdr.sh_info = 1;
  5690.  
  5691.   /* We get the global symbols from the hash table.  */
  5692.   elf_link_hash_traverse (elf_hash_table (info), elf_link_output_extsym,
  5693.               (PTR) &finfo);
  5694.  
  5695.   /* Flush all symbols to the file.  */
  5696.   if (! elf_link_flush_output_syms (&finfo))
  5697.     return false;
  5698.  
  5699.   /* Now we know the size of the symtab section.  */
  5700.   off += symtab_hdr->sh_size;
  5701.  
  5702.   /* Finish up and write out the symbol string table (.strtab)
  5703.      section.  */
  5704.   symstrtab_hdr = &elf_tdata (abfd)->strtab_hdr;
  5705.   /* sh_name was set in prep_headers.  */
  5706.   symstrtab_hdr->sh_type = SHT_STRTAB;
  5707.   symstrtab_hdr->sh_flags = 0;
  5708.   symstrtab_hdr->sh_addr = 0;
  5709.   symstrtab_hdr->sh_size = _bfd_stringtab_size (finfo.symstrtab);
  5710.   symstrtab_hdr->sh_entsize = 0;
  5711.   symstrtab_hdr->sh_link = 0;
  5712.   symstrtab_hdr->sh_info = 0;
  5713.   /* sh_offset is set just below.  */
  5714.   symstrtab_hdr->sh_addralign = 1;
  5715.  
  5716.   off = assign_file_position_for_section (symstrtab_hdr, off, true);
  5717.   elf_tdata (abfd)->next_file_pos = off;
  5718.  
  5719.   if (bfd_seek (abfd, symstrtab_hdr->sh_offset, SEEK_SET) != 0
  5720.       || ! _bfd_stringtab_emit (abfd, finfo.symstrtab))
  5721.     return false;
  5722.  
  5723.   /* Adjust the relocs to have the correct symbol indices.  */
  5724.   for (o = abfd->sections; o != NULL; o = o->next)
  5725.     {
  5726.       struct elf_link_hash_entry **rel_hash;
  5727.       Elf_Internal_Shdr *rel_hdr;
  5728.  
  5729.       if ((o->flags & SEC_RELOC) == 0)
  5730.     continue;
  5731.  
  5732.       rel_hash = elf_section_data (o)->rel_hashes;
  5733.       rel_hdr = &elf_section_data (o)->rel_hdr;
  5734.       for (i = 0; i < o->reloc_count; i++, rel_hash++)
  5735.     {
  5736.       if (*rel_hash == NULL)
  5737.         continue;
  5738.           
  5739.       BFD_ASSERT ((*rel_hash)->indx >= 0);
  5740.  
  5741.       if (rel_hdr->sh_entsize == sizeof (Elf_External_Rel))
  5742.         {
  5743.           Elf_External_Rel *erel;
  5744.           Elf_Internal_Rel irel;
  5745.  
  5746.           erel = (Elf_External_Rel *) rel_hdr->contents + i;
  5747.           elf_swap_reloc_in (abfd, erel, &irel);
  5748.           irel.r_info = ELF_R_INFO ((*rel_hash)->indx,
  5749.                     ELF_R_TYPE (irel.r_info));
  5750.           elf_swap_reloc_out (abfd, &irel, erel);
  5751.         }
  5752.       else
  5753.         {
  5754.           Elf_External_Rela *erela;
  5755.           Elf_Internal_Rela irela;
  5756.  
  5757.           BFD_ASSERT (rel_hdr->sh_entsize
  5758.               == sizeof (Elf_External_Rela));
  5759.  
  5760.           erela = (Elf_External_Rela *) rel_hdr->contents + i;
  5761.           elf_swap_reloca_in (abfd, erela, &irela);
  5762.           irela.r_info = ELF_R_INFO ((*rel_hash)->indx,
  5763.                      ELF_R_TYPE (irela.r_info));
  5764.           elf_swap_reloca_out (abfd, &irela, erela);
  5765.         }
  5766.     }
  5767.  
  5768.       /* Set the reloc_count field to 0 to prevent write_relocs from
  5769.      trying to swap the relocs out itself.  */
  5770.       o->reloc_count = 0;
  5771.     }
  5772.  
  5773.   /* If we are linking against a dynamic object, or generating a
  5774.      shared library, finish up the dynamic linking information.  */
  5775.   if (dynamic)
  5776.     {
  5777.       Elf_External_Dyn *dyncon, *dynconend;
  5778.  
  5779.       /* Fix up .dynamic entries.  */
  5780.       o = bfd_get_section_by_name (dynobj, ".dynamic");
  5781.       BFD_ASSERT (o != NULL);
  5782.  
  5783.       dyncon = (Elf_External_Dyn *) o->contents;
  5784.       dynconend = (Elf_External_Dyn *) (o->contents + o->_raw_size);
  5785.       for (; dyncon < dynconend; dyncon++)
  5786.     {
  5787.       Elf_Internal_Dyn dyn;
  5788.       const char *name;
  5789.       unsigned int type;
  5790.  
  5791.       elf_swap_dyn_in (dynobj, dyncon, &dyn);
  5792.  
  5793.       switch (dyn.d_tag)
  5794.         {
  5795.         default:
  5796.           break;
  5797.  
  5798.           /* SVR4 linkers seem to set DT_INIT and DT_FINI based on
  5799.                  magic _init and _fini symbols.  This is pretty ugly,
  5800.                  but we are compatible.  */
  5801.         case DT_INIT:
  5802.           name = "_init";
  5803.           goto get_sym;
  5804.         case DT_FINI:
  5805.           name = "_fini";
  5806.         get_sym:
  5807.           {
  5808.         struct elf_link_hash_entry *h;
  5809.  
  5810.         h = elf_link_hash_lookup (elf_hash_table (info), name,
  5811.                       false, false, true);
  5812.         BFD_ASSERT (h != NULL);
  5813.         if (h->root.type == bfd_link_hash_defined)
  5814.           {
  5815.             dyn.d_un.d_val = h->root.u.def.value;
  5816.             o = h->root.u.def.section;
  5817.             if (o->output_section != NULL)
  5818.               dyn.d_un.d_val += (o->output_section->vma
  5819.                      + o->output_offset);
  5820.             else
  5821.               dyn.d_un.d_val += o->vma;
  5822.           }
  5823.         elf_swap_dyn_out (dynobj, &dyn, dyncon);
  5824.           }
  5825.           break;
  5826.  
  5827.         case DT_HASH:
  5828.           name = ".hash";
  5829.           goto get_vma;
  5830.         case DT_STRTAB:
  5831.           name = ".dynstr";
  5832.           goto get_vma;
  5833.         case DT_SYMTAB:
  5834.           name = ".dynsym";
  5835.         get_vma:
  5836.           o = bfd_get_section_by_name (abfd, name);
  5837.           BFD_ASSERT (o != NULL);
  5838.           dyn.d_un.d_ptr = o->vma;
  5839.           elf_swap_dyn_out (dynobj, &dyn, dyncon);
  5840.           break;
  5841.  
  5842.         case DT_REL:
  5843.         case DT_RELA:
  5844.         case DT_RELSZ:
  5845.         case DT_RELASZ:
  5846.           if (dyn.d_tag == DT_REL || dyn.d_tag == DT_RELSZ)
  5847.         type = SHT_REL;
  5848.           else
  5849.         type = SHT_RELA;
  5850.           dyn.d_un.d_val = 0;
  5851.           for (i = 1; i < elf_elfheader (abfd)->e_shnum; i++)
  5852.         {
  5853.           Elf_Internal_Shdr *hdr;
  5854.  
  5855.           hdr = elf_elfsections (abfd)[i];
  5856.           if (hdr->sh_type == type
  5857.               && (hdr->sh_flags & SHF_ALLOC) != 0)
  5858.             {
  5859.               if (dyn.d_tag == DT_RELSZ || dyn.d_tag == DT_RELASZ)
  5860.             dyn.d_un.d_val += hdr->sh_size;
  5861.               else
  5862.             {
  5863.               if (dyn.d_un.d_val == 0
  5864.                   || hdr->sh_addr < dyn.d_un.d_val)
  5865.                 dyn.d_un.d_val = hdr->sh_addr;
  5866.             }
  5867.             }
  5868.         }
  5869.           elf_swap_dyn_out (dynobj, &dyn, dyncon);
  5870.           break;
  5871.         }
  5872.     }
  5873.     }
  5874.  
  5875.   /* If we have created any dynamic sections, then output them.  */
  5876.   if (dynobj != NULL)
  5877.     {
  5878.       if (! (*bed->elf_backend_finish_dynamic_sections) (abfd, info))
  5879.     goto error_return;
  5880.  
  5881.       for (o = dynobj->sections; o != NULL; o = o->next)
  5882.     {
  5883.       if ((o->flags & SEC_HAS_CONTENTS) == 0
  5884.           || o->_raw_size == 0)
  5885.         continue;
  5886.       if ((o->flags & SEC_IN_MEMORY) == 0)
  5887.         {
  5888.           /* At this point, we are only interested in sections
  5889.                  created by elf_link_create_dynamic_sections.  FIXME:
  5890.                  This test is fragile.  */
  5891.           continue;
  5892.         }
  5893.       if ((elf_section_data (o->output_section)->this_hdr.sh_type
  5894.            != SHT_STRTAB)
  5895.           || strcmp (bfd_get_section_name (abfd, o), ".dynstr") != 0)
  5896.         {
  5897.           if (! bfd_set_section_contents (abfd, o->output_section,
  5898.                           o->contents, o->output_offset,
  5899.                           o->_raw_size))
  5900.         goto error_return;
  5901.         }
  5902.       else
  5903.         {
  5904.           file_ptr off;
  5905.  
  5906.           /* The contents of the .dynstr section are actually in a
  5907.                  stringtab.  */
  5908.           off = elf_section_data (o->output_section)->this_hdr.sh_offset;
  5909.           if (bfd_seek (abfd, off, SEEK_SET) != 0
  5910.           || ! _bfd_stringtab_emit (abfd,
  5911.                         elf_hash_table (info)->dynstr))
  5912.         goto error_return;
  5913.         }
  5914.     }
  5915.     }
  5916.  
  5917.   if (finfo.symstrtab != NULL)
  5918.     _bfd_stringtab_free (finfo.symstrtab);
  5919.   if (finfo.contents != NULL)
  5920.     free (finfo.contents);
  5921.   if (finfo.external_relocs != NULL)
  5922.     free (finfo.external_relocs);
  5923.   if (finfo.internal_relocs != NULL)
  5924.     free (finfo.internal_relocs);
  5925.   if (finfo.external_syms != NULL)
  5926.     free (finfo.external_syms);
  5927.   if (finfo.internal_syms != NULL)
  5928.     free (finfo.internal_syms);
  5929.   if (finfo.indices != NULL)
  5930.     free (finfo.indices);
  5931.   if (finfo.sections != NULL)
  5932.     free (finfo.sections);
  5933.   if (finfo.symbuf != NULL)
  5934.     free (finfo.symbuf);
  5935.   for (o = abfd->sections; o != NULL; o = o->next)
  5936.     {
  5937.       if ((o->flags & SEC_RELOC) != 0
  5938.       && elf_section_data (o)->rel_hashes != NULL)
  5939.     free (elf_section_data (o)->rel_hashes);
  5940.     }
  5941.  
  5942.   elf_tdata (abfd)->linker = true;
  5943.  
  5944.   return true;
  5945.  
  5946.  error_return:
  5947.   if (finfo.symstrtab != NULL)
  5948.     _bfd_stringtab_free (finfo.symstrtab);
  5949.   if (finfo.contents != NULL)
  5950.     free (finfo.contents);
  5951.   if (finfo.external_relocs != NULL)
  5952.     free (finfo.external_relocs);
  5953.   if (finfo.internal_relocs != NULL)
  5954.     free (finfo.internal_relocs);
  5955.   if (finfo.external_syms != NULL)
  5956.     free (finfo.external_syms);
  5957.   if (finfo.internal_syms != NULL)
  5958.     free (finfo.internal_syms);
  5959.   if (finfo.indices != NULL)
  5960.     free (finfo.indices);
  5961.   if (finfo.sections != NULL)
  5962.     free (finfo.sections);
  5963.   if (finfo.symbuf != NULL)
  5964.     free (finfo.symbuf);
  5965.   for (o = abfd->sections; o != NULL; o = o->next)
  5966.     {
  5967.       if ((o->flags & SEC_RELOC) != 0
  5968.       && elf_section_data (o)->rel_hashes != NULL)
  5969.     free (elf_section_data (o)->rel_hashes);
  5970.     }
  5971.  
  5972.   return false;
  5973. }
  5974.  
  5975. /* Add a symbol to the output symbol table.  */
  5976.  
  5977. static boolean
  5978. elf_link_output_sym (finfo, name, elfsym, input_sec)
  5979.      struct elf_final_link_info *finfo;
  5980.      const char *name;
  5981.      Elf_Internal_Sym *elfsym;
  5982.      asection *input_sec;
  5983. {
  5984.   boolean (*output_symbol_hook) PARAMS ((bfd *,
  5985.                      struct bfd_link_info *info,
  5986.                      const char *,
  5987.                      Elf_Internal_Sym *,
  5988.                      asection *));
  5989.  
  5990.   output_symbol_hook = get_elf_backend_data (finfo->output_bfd)->
  5991.     elf_backend_link_output_symbol_hook;
  5992.   if (output_symbol_hook != NULL)
  5993.     {
  5994.       if (! ((*output_symbol_hook)
  5995.          (finfo->output_bfd, finfo->info, name, elfsym, input_sec)))
  5996.     return false;
  5997.     }
  5998.  
  5999.   if (name == (const char *) NULL || *name == '\0')
  6000.     elfsym->st_name = 0;
  6001.   else
  6002.     {
  6003.       elfsym->st_name = (unsigned long) _bfd_stringtab_add (finfo->symstrtab,
  6004.                                 name, true,
  6005.                                 false);
  6006.       if (elfsym->st_name == (unsigned long) -1)
  6007.     return false;
  6008.     }
  6009.  
  6010.   if (finfo->symbuf_count >= finfo->symbuf_size)
  6011.     {
  6012.       if (! elf_link_flush_output_syms (finfo))
  6013.     return false;
  6014.     }
  6015.  
  6016.   elf_swap_symbol_out (finfo->output_bfd, elfsym,
  6017.                finfo->symbuf + finfo->symbuf_count);
  6018.   ++finfo->symbuf_count;
  6019.  
  6020.   ++finfo->output_bfd->symcount;
  6021.  
  6022.   return true;
  6023. }
  6024.  
  6025. /* Flush the output symbols to the file.  */
  6026.  
  6027. static boolean
  6028. elf_link_flush_output_syms (finfo)
  6029.      struct elf_final_link_info *finfo;
  6030. {
  6031.   Elf_Internal_Shdr *symtab;
  6032.  
  6033.   symtab = &elf_tdata (finfo->output_bfd)->symtab_hdr;
  6034.  
  6035.   if (bfd_seek (finfo->output_bfd, symtab->sh_offset + symtab->sh_size,
  6036.         SEEK_SET) != 0
  6037.       || (bfd_write ((PTR) finfo->symbuf, finfo->symbuf_count,
  6038.              sizeof (Elf_External_Sym), finfo->output_bfd)
  6039.       != finfo->symbuf_count * sizeof (Elf_External_Sym)))
  6040.     return false;
  6041.  
  6042.   symtab->sh_size += finfo->symbuf_count * sizeof (Elf_External_Sym);
  6043.  
  6044.   finfo->symbuf_count = 0;
  6045.  
  6046.   return true;
  6047. }
  6048.  
  6049. /* Add an external symbol to the symbol table.  This is called from
  6050.    the hash table traversal routine.  */
  6051.  
  6052. static boolean
  6053. elf_link_output_extsym (h, data)
  6054.      struct elf_link_hash_entry *h;
  6055.      PTR data;
  6056. {
  6057.   struct elf_final_link_info *finfo = (struct elf_final_link_info *) data;
  6058.   boolean strip;
  6059.   Elf_Internal_Sym sym;
  6060.   asection *input_sec;
  6061.  
  6062.   /* We don't want to output symbols that have never been mentioned by
  6063.      a regular file, or that we have been told to strip.  However, if
  6064.      h->indx is set to -2, the symbol is used by a reloc and we must
  6065.      output it.  */
  6066.   if (h->indx == -2)
  6067.     strip = false;
  6068.   else if (((h->elf_link_hash_flags & ELF_LINK_HASH_DEF_DYNAMIC) != 0
  6069.         || (h->elf_link_hash_flags & ELF_LINK_HASH_REF_DYNAMIC) != 0)
  6070.        && (h->elf_link_hash_flags & ELF_LINK_HASH_DEF_REGULAR) == 0
  6071.        && (h->elf_link_hash_flags & ELF_LINK_HASH_REF_REGULAR) == 0)
  6072.     strip = true;
  6073.   else if (finfo->info->strip == strip_all
  6074.        || (finfo->info->strip == strip_some
  6075.            && bfd_hash_lookup (finfo->info->keep_hash,
  6076.                    h->root.root.string,
  6077.                    false, false) == NULL))
  6078.     strip = true;
  6079.   else
  6080.     strip = false;
  6081.  
  6082.   /* If we're stripping it, and it's not a dynamic symbol, there's
  6083.      nothing else to do.  */
  6084.   if (strip && h->dynindx == -1)
  6085.     return true;
  6086.  
  6087.   sym.st_value = 0;
  6088.   sym.st_size = h->size;
  6089.   sym.st_other = 0;
  6090.   if (h->root.type == bfd_link_hash_weak
  6091.       || (h->elf_link_hash_flags & ELF_LINK_HASH_DEFINED_WEAK) != 0)
  6092.     sym.st_info = ELF_ST_INFO (STB_WEAK, h->type);
  6093.   else
  6094.     sym.st_info = ELF_ST_INFO (STB_GLOBAL, h->type);
  6095.  
  6096.   switch (h->root.type)
  6097.     {
  6098.     default:
  6099.     case bfd_link_hash_new:
  6100.       abort ();
  6101.       return false;
  6102.  
  6103.     case bfd_link_hash_undefined:
  6104.       input_sec = bfd_und_section_ptr;
  6105.       sym.st_shndx = SHN_UNDEF;
  6106.       break;
  6107.  
  6108.     case bfd_link_hash_weak:
  6109.       input_sec = bfd_und_section_ptr;
  6110.       sym.st_shndx = SHN_UNDEF;
  6111.       break;
  6112.  
  6113.     case bfd_link_hash_defined:
  6114.       {
  6115.     input_sec = h->root.u.def.section;
  6116.     if (input_sec->output_section != NULL)
  6117.       {
  6118.         sym.st_shndx =
  6119.           elf_section_from_bfd_section (finfo->output_bfd,
  6120.                         input_sec->output_section);
  6121.         if (sym.st_shndx == (unsigned short) -1)
  6122.           {
  6123.         /* FIXME: No way to handle errors.  */
  6124.         abort ();
  6125.           }
  6126.  
  6127.         /* ELF symbols in relocateable files are section relative,
  6128.            but in nonrelocateable files they are virtual
  6129.            addresses.  */
  6130.         sym.st_value = h->root.u.def.value + input_sec->output_offset;
  6131.         if (! finfo->info->relocateable)
  6132.           sym.st_value += input_sec->output_section->vma;
  6133.       }
  6134.     else
  6135.       {
  6136.         BFD_ASSERT ((bfd_get_flavour (input_sec->owner)
  6137.              == bfd_target_elf_flavour)
  6138.             && elf_elfheader (input_sec->owner)->e_type == ET_DYN);
  6139.         sym.st_shndx = SHN_UNDEF;
  6140.         input_sec = bfd_und_section_ptr;
  6141.       }
  6142.       }
  6143.       break;
  6144.  
  6145.     case bfd_link_hash_common:
  6146.       input_sec = bfd_com_section_ptr;
  6147.       sym.st_shndx = SHN_COMMON;
  6148.       sym.st_value = 1 << h->root.u.c.alignment_power;
  6149.       break;
  6150.  
  6151.     case bfd_link_hash_indirect:
  6152.     case bfd_link_hash_warning:
  6153.       /* I have no idea how these should be handled.  */
  6154.       return true;
  6155.     }
  6156.  
  6157.   /* If this symbol should be put in the .dynsym section, then put it
  6158.      there now.  We have already know the symbol index.  We also fill
  6159.      in the entry in the .hash section.  */
  6160.   if (h->dynindx != -1
  6161.       && elf_hash_table (finfo->info)->dynamic_sections_created)
  6162.     {
  6163.       struct elf_backend_data *bed;
  6164.       size_t bucketcount;
  6165.       size_t bucket;
  6166.       bfd_byte *bucketpos;
  6167.       bfd_vma chain;
  6168.  
  6169.       sym.st_name = h->dynstr_index;
  6170.  
  6171.       /* Give the processor backend a chance to tweak the symbol
  6172.      value, and also to finish up anything that needs to be done
  6173.      for this symbol.  */
  6174.       bed = get_elf_backend_data (finfo->output_bfd);
  6175.       if (! ((*bed->elf_backend_finish_dynamic_symbol)
  6176.          (finfo->output_bfd, finfo->info, h, &sym)))
  6177.     {
  6178.       /* FIXME: No way to return error.  */
  6179.       abort ();
  6180.     }
  6181.  
  6182.       elf_swap_symbol_out (finfo->output_bfd, &sym,
  6183.                ((Elf_External_Sym *) finfo->dynsym_sec->contents
  6184.                 + h->dynindx));
  6185.  
  6186.       bucketcount = elf_hash_table (finfo->info)->bucketcount;
  6187.       bucket = (bfd_elf_hash ((const unsigned char *) h->root.root.string)
  6188.         % bucketcount);
  6189.       bucketpos = ((bfd_byte *) finfo->hash_sec->contents
  6190.            + (bucket + 2) * (ARCH_SIZE / 8));
  6191.       chain = get_word (finfo->output_bfd, bucketpos);
  6192.       put_word (finfo->output_bfd, h->dynindx, bucketpos);
  6193.       put_word (finfo->output_bfd, chain,
  6194.         ((bfd_byte *) finfo->hash_sec->contents
  6195.          + (bucketcount + 2 + h->dynindx) * (ARCH_SIZE / 8)));
  6196.     }
  6197.  
  6198.   /* If we're stripping it, then it was just a dynamic symbol, and
  6199.      there's nothing else to do.  */
  6200.   if (strip)
  6201.     return true;
  6202.  
  6203.   h->indx = finfo->output_bfd->symcount;
  6204.  
  6205.   if (! elf_link_output_sym (finfo, h->root.root.string, &sym, input_sec))
  6206.     {
  6207.       /* FIXME: No way to return error.  */
  6208.       abort ();
  6209.     }
  6210.  
  6211.   return true;
  6212. }
  6213.  
  6214. /* Link an input file into the linker output file.  This function
  6215.    handles all the sections and relocations of the input file at once.
  6216.    This is so that we only have to read the local symbols once, and
  6217.    don't have to keep them in memory.  */
  6218.  
  6219. static boolean
  6220. elf_link_input_bfd (finfo, input_bfd)
  6221.      struct elf_final_link_info *finfo;
  6222.      bfd *input_bfd;
  6223. {
  6224.   boolean (*relocate_section) PARAMS ((bfd *, struct bfd_link_info *,
  6225.                        bfd *, asection *, bfd_byte *,
  6226.                        Elf_Internal_Rela *,
  6227.                        Elf_Internal_Sym *, asection **));
  6228.   bfd *output_bfd;
  6229.   Elf_Internal_Shdr *symtab_hdr;
  6230.   size_t locsymcount;
  6231.   size_t extsymoff;
  6232.   Elf_External_Sym *esym;
  6233.   Elf_External_Sym *esymend;
  6234.   Elf_Internal_Sym *isym;
  6235.   long *pindex;
  6236.   asection **ppsection;
  6237.   asection *o;
  6238.  
  6239.   output_bfd = finfo->output_bfd;
  6240.   relocate_section =
  6241.     get_elf_backend_data (output_bfd)->elf_backend_relocate_section;
  6242.  
  6243.   /* If this is a dynamic object, we don't want to do anything here:
  6244.      we don't want the local symbols, and we don't want the section
  6245.      contents.  */
  6246.   if (elf_elfheader (input_bfd)->e_type == ET_DYN)
  6247.     return true;
  6248.  
  6249.   symtab_hdr = &elf_tdata (input_bfd)->symtab_hdr;
  6250.   if (elf_bad_symtab (input_bfd))
  6251.     {
  6252.       locsymcount = symtab_hdr->sh_size / sizeof (Elf_External_Sym);
  6253.       extsymoff = 0;
  6254.     }
  6255.   else
  6256.     {
  6257.       locsymcount = symtab_hdr->sh_info;
  6258.       extsymoff = symtab_hdr->sh_info;
  6259.     }
  6260.  
  6261.   /* Read the local symbols.  */
  6262.   if (locsymcount > 0
  6263.       && (bfd_seek (input_bfd, symtab_hdr->sh_offset, SEEK_SET) != 0
  6264.             || (bfd_read (finfo->external_syms, sizeof (Elf_External_Sym),
  6265.             locsymcount, input_bfd)
  6266.           != locsymcount * sizeof (Elf_External_Sym))))
  6267.     return false;
  6268.  
  6269.   /* Swap in the local symbols and write out the ones which we know
  6270.      are going into the output file.  */
  6271.   esym = finfo->external_syms;
  6272.   esymend = esym + locsymcount;
  6273.   isym = finfo->internal_syms;
  6274.   pindex = finfo->indices;
  6275.   ppsection = finfo->sections;
  6276.   for (; esym < esymend; esym++, isym++, pindex++, ppsection++)
  6277.     {
  6278.       asection *isec;
  6279.       const char *name;
  6280.       Elf_Internal_Sym osym;
  6281.  
  6282.       elf_swap_symbol_in (input_bfd, esym, isym);
  6283.       *pindex = -1;
  6284.  
  6285.       if (elf_bad_symtab (input_bfd))
  6286.     {
  6287.       if (ELF_ST_BIND (isym->st_info) != STB_LOCAL)
  6288.         {
  6289.           *ppsection = NULL;
  6290.           continue;
  6291.         }
  6292.     }
  6293.  
  6294.       if (isym->st_shndx == SHN_UNDEF)
  6295.     isec = bfd_und_section_ptr;
  6296.       else if (isym->st_shndx > 0 && isym->st_shndx < SHN_LORESERVE)
  6297.     isec = section_from_elf_index (input_bfd, isym->st_shndx);
  6298.       else if (isym->st_shndx == SHN_ABS)
  6299.     isec = bfd_abs_section_ptr;
  6300.       else if (isym->st_shndx == SHN_COMMON)
  6301.     isec = bfd_com_section_ptr;
  6302.       else
  6303.     {
  6304.       /* Who knows?  */
  6305.       isec = NULL;
  6306.     }
  6307.  
  6308.       *ppsection = isec;
  6309.  
  6310.       /* Don't output the first, undefined, symbol.  */
  6311.       if (esym == finfo->external_syms)
  6312.     continue;
  6313.  
  6314.       /* If we are stripping all symbols, we don't want to output this
  6315.      one.  */
  6316.       if (finfo->info->strip == strip_all)
  6317.     continue;
  6318.  
  6319.       /* We never output section symbols.  Instead, we use the section
  6320.      symbol of the corresponding section in the output file.  */
  6321.       if (ELF_ST_TYPE (isym->st_info) == STT_SECTION)
  6322.     continue;
  6323.  
  6324.       /* If we are discarding all local symbols, we don't want to
  6325.      output this one.  If we are generating a relocateable output
  6326.      file, then some of the local symbols may be required by
  6327.      relocs; we output them below as we discover that they are
  6328.      needed.  */
  6329.       if (finfo->info->discard == discard_all)
  6330.     continue;
  6331.  
  6332.       /* Get the name of the symbol.  */
  6333.       name = elf_string_from_elf_section (input_bfd, symtab_hdr->sh_link,
  6334.                       isym->st_name);
  6335.       if (name == NULL)
  6336.     return false;
  6337.  
  6338.       /* See if we are discarding symbols with this name.  */
  6339.       if ((finfo->info->strip == strip_some
  6340.        && (bfd_hash_lookup (finfo->info->keep_hash, name, false, false)
  6341.            == NULL))
  6342.       || (finfo->info->discard == discard_l
  6343.           && strncmp (name, finfo->info->lprefix,
  6344.               finfo->info->lprefix_len) == 0))
  6345.     continue;
  6346.  
  6347.       /* If we get here, we are going to output this symbol.  */
  6348.  
  6349.       osym = *isym;
  6350.  
  6351.       /* Adjust the section index for the output file.  */
  6352.       osym.st_shndx = elf_section_from_bfd_section (output_bfd,
  6353.                             isec->output_section);
  6354.       if (osym.st_shndx == (unsigned short) -1)
  6355.     return false;
  6356.  
  6357.       *pindex = output_bfd->symcount;
  6358.  
  6359.       /* ELF symbols in relocateable files are section relative, but
  6360.      in executable files they are virtual addresses.  Note that
  6361.      this code assumes that all ELF sections have an associated
  6362.      BFD section with a reasonable value for output_offset; below
  6363.      we assume that they also have a reasonable value for
  6364.      output_section.  Any special sections must be set up to meet
  6365.      these requirements.  */
  6366.       osym.st_value += isec->output_offset;
  6367.       if (! finfo->info->relocateable)
  6368.     osym.st_value += isec->output_section->vma;
  6369.  
  6370.       if (! elf_link_output_sym (finfo, name, &osym, isec))
  6371.     return false;
  6372.     }
  6373.  
  6374.   /* Relocate the contents of each section.  */
  6375.   for (o = input_bfd->sections; o != NULL; o = o->next)
  6376.     {
  6377.       if ((o->flags & SEC_HAS_CONTENTS) == 0)
  6378.     continue;
  6379.  
  6380.       if ((o->flags & SEC_IN_MEMORY) != 0
  6381.       && input_bfd == elf_hash_table (finfo->info)->dynobj)
  6382.     {
  6383.       /* Section was created by elf_link_create_dynamic_sections.
  6384.              FIXME: This test is fragile.  */
  6385.       continue;
  6386.     }
  6387.  
  6388.       /* Read the contents of the section.  */
  6389.       if (! bfd_get_section_contents (input_bfd, o, finfo->contents,
  6390.                       (file_ptr) 0, o->_raw_size))
  6391.     return false;
  6392.  
  6393.       if ((o->flags & SEC_RELOC) != 0)
  6394.     {
  6395.       Elf_Internal_Rela *internal_relocs;
  6396.  
  6397.       /* Get the swapped relocs.  */
  6398.       internal_relocs = elf_link_read_relocs (input_bfd, o,
  6399.                           finfo->external_relocs,
  6400.                           finfo->internal_relocs,
  6401.                           false);
  6402.       if (internal_relocs == NULL
  6403.           && o->reloc_count > 0)
  6404.         return false;
  6405.  
  6406.       /* Relocate the section by invoking a back end routine.
  6407.  
  6408.          The back end routine is responsible for adjusting the
  6409.          section contents as necessary, and (if using Rela relocs
  6410.          and generating a relocateable output file) adjusting the
  6411.          reloc addend as necessary.
  6412.  
  6413.          The back end routine does not have to worry about setting
  6414.          the reloc address or the reloc symbol index.
  6415.  
  6416.          The back end routine is given a pointer to the swapped in
  6417.          internal symbols, and can access the hash table entries
  6418.          for the external symbols via elf_sym_hashes (input_bfd).
  6419.  
  6420.          When generating relocateable output, the back end routine
  6421.          must handle STB_LOCAL/STT_SECTION symbols specially.  The
  6422.          output symbol is going to be a section symbol
  6423.          corresponding to the output section, which will require
  6424.          the addend to be adjusted.  */
  6425.  
  6426.       if (! (*relocate_section) (output_bfd, finfo->info,
  6427.                      input_bfd, o,
  6428.                      finfo->contents,
  6429.                      internal_relocs,
  6430.                      finfo->internal_syms,
  6431.                      finfo->sections))
  6432.         return false;
  6433.  
  6434.       if (finfo->info->relocateable)
  6435.         {
  6436.           Elf_Internal_Rela *irela;
  6437.           Elf_Internal_Rela *irelaend;
  6438.           struct elf_link_hash_entry **rel_hash;
  6439.           Elf_Internal_Shdr *input_rel_hdr;
  6440.           Elf_Internal_Shdr *output_rel_hdr;
  6441.  
  6442.           /* Adjust the reloc addresses and symbol indices.  */
  6443.  
  6444.           irela = internal_relocs;
  6445.           irelaend = irela + o->reloc_count;
  6446.           rel_hash = (elf_section_data (o->output_section)->rel_hashes
  6447.               + o->output_section->reloc_count);
  6448.           for (; irela < irelaend; irela++, rel_hash++)
  6449.         {
  6450.           long r_symndx;
  6451.           Elf_Internal_Sym *isym;
  6452.           asection *sec;
  6453.  
  6454.           irela->r_offset += o->output_offset;
  6455.  
  6456.           r_symndx = ELF_R_SYM (irela->r_info);
  6457.  
  6458.           if (r_symndx == 0)
  6459.             continue;
  6460.  
  6461.           if (r_symndx >= locsymcount
  6462.               || (elf_bad_symtab (input_bfd)
  6463.               && finfo->sections[r_symndx] == NULL))
  6464.             {
  6465.               long indx;
  6466.  
  6467.               /* This is a reloc against a global symbol.  We
  6468.              have not yet output all the local symbols, so
  6469.              we do not know the symbol index of any global
  6470.              symbol.  We set the rel_hash entry for this
  6471.              reloc to point to the global hash table entry
  6472.              for this symbol.  The symbol index is then
  6473.              set at the end of elf_bfd_final_link.  */
  6474.               indx = r_symndx - extsymoff;
  6475.               *rel_hash = elf_sym_hashes (input_bfd)[indx];
  6476.  
  6477.               /* Setting the index to -2 tells
  6478.              elf_link_output_extsym that this symbol is
  6479.              used by a reloc.  */
  6480.               BFD_ASSERT ((*rel_hash)->indx < 0);
  6481.               (*rel_hash)->indx = -2;
  6482.  
  6483.               continue;
  6484.             }
  6485.  
  6486.           /* This is a reloc against a local symbol. */
  6487.  
  6488.           *rel_hash = NULL;
  6489.           isym = finfo->internal_syms + r_symndx;
  6490.           sec = finfo->sections[r_symndx];
  6491.           if (ELF_ST_TYPE (isym->st_info) == STT_SECTION)
  6492.             {
  6493.               /* I suppose the backend ought to fill in the
  6494.              section of any STT_SECTION symbol against a
  6495.              processor specific section.  */
  6496.               if (sec != NULL && bfd_is_abs_section (sec))
  6497.             r_symndx = 0;
  6498.               else if (sec == NULL || sec->owner == NULL)
  6499.             {
  6500.               bfd_set_error (bfd_error_bad_value);
  6501.               return false;
  6502.             }
  6503.               else
  6504.             {
  6505.               r_symndx = sec->output_section->target_index;
  6506.               if (r_symndx == 0)
  6507.                 abort ();
  6508.             }
  6509.             }
  6510.           else
  6511.             {
  6512.               if (finfo->indices[r_symndx] == -1)
  6513.             {
  6514.               unsigned long link;
  6515.               const char *name;
  6516.               asection *osec;
  6517.  
  6518.               if (finfo->info->strip == strip_all)
  6519.                 {
  6520.                   /* You can't do ld -r -s.  */
  6521.                   bfd_set_error (bfd_error_invalid_operation);
  6522.                   return false;
  6523.                 }
  6524.  
  6525.               /* This symbol was skipped earlier, but
  6526.                  since it is needed by a reloc, we
  6527.                  must output it now.  */
  6528.               link = symtab_hdr->sh_link;
  6529.               name = elf_string_from_elf_section (input_bfd,
  6530.                                   link,
  6531.                                   isym->st_name);
  6532.               if (name == NULL)
  6533.                 return false;
  6534.  
  6535.               osec = sec->output_section;
  6536.               isym->st_shndx =
  6537.                 elf_section_from_bfd_section (output_bfd,
  6538.                               osec);
  6539.               if (isym->st_shndx == (unsigned short) -1)
  6540.                 return false;
  6541.  
  6542.               isym->st_value += sec->output_offset;
  6543.               if (! finfo->info->relocateable)
  6544.                 isym->st_value += osec->vma;
  6545.  
  6546.               finfo->indices[r_symndx] = output_bfd->symcount;
  6547.  
  6548.               if (! elf_link_output_sym (finfo, name, isym, sec))
  6549.                 return false;
  6550.             }
  6551.  
  6552.               r_symndx = finfo->indices[r_symndx];
  6553.             }
  6554.  
  6555.           irela->r_info = ELF_R_INFO (r_symndx,
  6556.                           ELF_R_TYPE (irela->r_info));
  6557.         }
  6558.  
  6559.           /* Swap out the relocs.  */
  6560.           input_rel_hdr = &elf_section_data (o)->rel_hdr;
  6561.           output_rel_hdr = &elf_section_data (o->output_section)->rel_hdr;
  6562.           BFD_ASSERT (output_rel_hdr->sh_entsize
  6563.               == input_rel_hdr->sh_entsize);
  6564.           irela = internal_relocs;
  6565.           irelaend = irela + o->reloc_count;
  6566.           if (input_rel_hdr->sh_entsize == sizeof (Elf_External_Rel))
  6567.         {
  6568.           Elf_External_Rel *erel;
  6569.  
  6570.           erel = ((Elf_External_Rel *) output_rel_hdr->contents
  6571.               + o->output_section->reloc_count);
  6572.           for (; irela < irelaend; irela++, erel++)
  6573.             {
  6574.               Elf_Internal_Rel irel;
  6575.  
  6576.               irel.r_offset = irela->r_offset;
  6577.               irel.r_info = irela->r_info;
  6578.               BFD_ASSERT (irela->r_addend == 0);
  6579.               elf_swap_reloc_out (output_bfd, &irel, erel);
  6580.             }
  6581.         }
  6582.           else
  6583.         {
  6584.           Elf_External_Rela *erela;
  6585.  
  6586.           BFD_ASSERT (input_rel_hdr->sh_entsize
  6587.                   == sizeof (Elf_External_Rela));
  6588.           erela = ((Elf_External_Rela *) output_rel_hdr->contents
  6589.                + o->output_section->reloc_count);
  6590.           for (; irela < irelaend; irela++, erela++)
  6591.             elf_swap_reloca_out (output_bfd, irela, erela);
  6592.         }
  6593.  
  6594.           o->output_section->reloc_count += o->reloc_count;
  6595.         }
  6596.     }
  6597.  
  6598.       /* Write out the modified section contents.  */
  6599.       if (! bfd_set_section_contents (output_bfd, o->output_section,
  6600.                       finfo->contents, o->output_offset,
  6601.                       (o->_cooked_size != 0
  6602.                        ? o->_cooked_size
  6603.                        : o->_raw_size)))
  6604.     return false;
  6605.     }
  6606.  
  6607.   return true;
  6608. }
  6609.  
  6610. /* Generate a reloc when linking an ELF file.  This is a reloc
  6611.    requested by the linker, and does come from any input file.  This
  6612.    is used to build constructor and destructor tables when linking
  6613.    with -Ur.  */
  6614.  
  6615. static boolean
  6616. elf_reloc_link_order (output_bfd, info, output_section, link_order)
  6617.      bfd *output_bfd;
  6618.      struct bfd_link_info *info;
  6619.      asection *output_section;
  6620.      struct bfd_link_order *link_order;
  6621. {
  6622.   reloc_howto_type *howto;
  6623.   long indx;
  6624.   bfd_vma offset;
  6625.   struct elf_link_hash_entry **rel_hash_ptr;
  6626.   Elf_Internal_Shdr *rel_hdr;
  6627.  
  6628.   howto = bfd_reloc_type_lookup (output_bfd, link_order->u.reloc.p->reloc);
  6629.   if (howto == NULL)
  6630.     {
  6631.       bfd_set_error (bfd_error_bad_value);
  6632.       return false;
  6633.     }
  6634.  
  6635.   /* If this is an inplace reloc, we must write the addend into the
  6636.      object file.  */
  6637.   if (howto->partial_inplace
  6638.       && link_order->u.reloc.p->addend != 0)
  6639.     {
  6640.       bfd_size_type size;
  6641.       bfd_reloc_status_type rstat;
  6642.       bfd_byte *buf;
  6643.       boolean ok;
  6644.  
  6645.       size = bfd_get_reloc_size (howto);
  6646.       buf = (bfd_byte *) bfd_zmalloc (size);
  6647.       if (buf == (bfd_byte *) NULL)
  6648.     {
  6649.       bfd_set_error (bfd_error_no_memory);
  6650.       return false;
  6651.     }
  6652.       rstat = _bfd_relocate_contents (howto, output_bfd,
  6653.                       link_order->u.reloc.p->addend, buf);
  6654.       switch (rstat)
  6655.     {
  6656.     case bfd_reloc_ok:
  6657.       break;
  6658.     default:
  6659.     case bfd_reloc_outofrange:
  6660.       abort ();
  6661.     case bfd_reloc_overflow:
  6662.       if (! ((*info->callbacks->reloc_overflow)
  6663.          (info,
  6664.           (link_order->type == bfd_section_reloc_link_order
  6665.            ? bfd_section_name (output_bfd,
  6666.                        link_order->u.reloc.p->u.section)
  6667.            : link_order->u.reloc.p->u.name),
  6668.           howto->name, link_order->u.reloc.p->addend,
  6669.           (bfd *) NULL, (asection *) NULL, (bfd_vma) 0)))
  6670.         {
  6671.           free (buf);
  6672.           return false;
  6673.         }
  6674.       break;
  6675.     }
  6676.       ok = bfd_set_section_contents (output_bfd, output_section, (PTR) buf,
  6677.                      (file_ptr) link_order->offset, size);
  6678.       free (buf);
  6679.       if (! ok)
  6680.     return false;
  6681.     }
  6682.  
  6683.   /* Figure out the symbol index.  */
  6684.   rel_hash_ptr = (elf_section_data (output_section)->rel_hashes
  6685.           + output_section->reloc_count);
  6686.   if (link_order->type == bfd_section_reloc_link_order)
  6687.     {
  6688.       indx = link_order->u.reloc.p->u.section->target_index;
  6689.       if (indx == 0)
  6690.     abort ();
  6691.       *rel_hash_ptr = NULL;
  6692.     }
  6693.   else
  6694.     {
  6695.       struct elf_link_hash_entry *h;
  6696.  
  6697.       h = elf_link_hash_lookup (elf_hash_table (info),
  6698.                 link_order->u.reloc.p->u.name,
  6699.                 false, false, true);
  6700.       if (h != NULL)
  6701.     {
  6702.       /* Setting the index to -2 tells elf_link_output_extsym that
  6703.          this symbol is used by a reloc.  */
  6704.       h->indx = -2;
  6705.       *rel_hash_ptr = h;
  6706.       indx = 0;
  6707.     }
  6708.       else
  6709.     {
  6710.       if (! ((*info->callbacks->unattached_reloc)
  6711.          (info, link_order->u.reloc.p->u.name, (bfd *) NULL,
  6712.           (asection *) NULL, (bfd_vma) 0)))
  6713.         return false;
  6714.       indx = 0;
  6715.     }
  6716.     }
  6717.  
  6718.   /* The address of a reloc is relative to the section in a
  6719.      relocateable file, and is a virtual address in an executable
  6720.      file.  */
  6721.   offset = link_order->offset;
  6722.   if (! info->relocateable)
  6723.     offset += output_section->vma;
  6724.  
  6725.   rel_hdr = &elf_section_data (output_section)->rel_hdr;
  6726.  
  6727.   if (rel_hdr->sh_type == SHT_REL)
  6728.     {
  6729.       Elf_Internal_Rel irel;
  6730.       Elf_External_Rel *erel;
  6731.  
  6732.       irel.r_offset = offset;
  6733.       irel.r_info = ELF_R_INFO (indx, howto->type);
  6734.       erel = ((Elf_External_Rel *) rel_hdr->contents
  6735.           + output_section->reloc_count);
  6736.       elf_swap_reloc_out (output_bfd, &irel, erel);
  6737.     }
  6738.   else
  6739.     {
  6740.       Elf_Internal_Rela irela;
  6741.       Elf_External_Rela *erela;
  6742.  
  6743.       irela.r_offset = offset;
  6744.       irela.r_info = ELF_R_INFO (indx, howto->type);
  6745.       irela.r_addend = link_order->u.reloc.p->addend;
  6746.       erela = ((Elf_External_Rela *) rel_hdr->contents
  6747.            + output_section->reloc_count);
  6748.       elf_swap_reloca_out (output_bfd, &irela, erela);
  6749.     }
  6750.  
  6751.   ++output_section->reloc_count;
  6752.  
  6753.   return true;
  6754. }
  6755.