home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 9 / FreshFishVol9-CD2.bin / bbs / gnu / gdb-4.14-src.lha / gdb-4.14 / gdb / elfread.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-03-05  |  24.5 KB  |  823 lines

  1. /* Read ELF (Executable and Linking Format) object files for GDB.
  2.    Copyright 1991, 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
  3.    Written by Fred Fish at Cygnus Support.
  4.  
  5. This file is part of GDB.
  6.  
  7. This program is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU General Public License as published by
  9. the Free Software Foundation; either version 2 of the License, or
  10. (at your option) any later version.
  11.  
  12. This program is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. GNU General Public License for more details.
  16.  
  17. You should have received a copy of the GNU General Public License
  18. along with this program; if not, write to the Free Software
  19. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  20.  
  21. #include "defs.h"
  22. #include "bfd.h"
  23. #include <string.h>
  24. #include "libelf.h"
  25. #include "elf/mips.h"
  26. #include "symtab.h"
  27. #include "symfile.h"
  28. #include "objfiles.h"
  29. #include "buildsym.h"
  30. #include "stabsread.h"
  31. #include "gdb-stabs.h"
  32. #include "complaints.h"
  33. #include "demangle.h"
  34.  
  35. /* The struct elfinfo is available only during ELF symbol table and
  36.    psymtab reading.  It is destroyed at the complation of psymtab-reading.
  37.    It's local to elf_symfile_read.  */
  38.  
  39. struct elfinfo {
  40.   file_ptr dboffset;        /* Offset to dwarf debug section */
  41.   unsigned int dbsize;        /* Size of dwarf debug section */
  42.   file_ptr lnoffset;        /* Offset to dwarf line number section */
  43.   unsigned int lnsize;        /* Size of dwarf line number section */
  44.   asection *stabsect;        /* Section pointer for .stab section */
  45.   asection *stabindexsect;    /* Section pointer for .stab.index section */
  46.   asection *mdebugsect;        /* Section pointer for .mdebug section */
  47. };
  48.  
  49. /* Various things we might complain about... */
  50.  
  51. struct complaint section_info_complaint = 
  52.   {"elf/stab section information %s without a preceding file symbol", 0, 0};
  53.  
  54. struct complaint section_info_dup_complaint = 
  55.   {"duplicated elf/stab section information for %s", 0, 0};
  56.  
  57. struct complaint stab_info_mismatch_complaint = 
  58.   {"elf/stab section information missing for %s", 0, 0};
  59.  
  60. struct complaint stab_info_questionable_complaint = 
  61.   {"elf/stab section information questionable for %s", 0, 0};
  62.  
  63. static void
  64. elf_symfile_init PARAMS ((struct objfile *));
  65.  
  66. static void
  67. elf_new_init PARAMS ((struct objfile *));
  68.  
  69. static void
  70. elf_symfile_read PARAMS ((struct objfile *, struct section_offsets *, int));
  71.  
  72. static void
  73. elf_symfile_finish PARAMS ((struct objfile *));
  74.  
  75. static void
  76. elf_symtab_read PARAMS ((bfd *,  CORE_ADDR, struct objfile *, int));
  77.  
  78. static void
  79. free_elfinfo PARAMS ((void *));
  80.  
  81. static struct section_offsets *
  82. elf_symfile_offsets PARAMS ((struct objfile *, CORE_ADDR));
  83.  
  84. static struct minimal_symbol *
  85. record_minimal_symbol_and_info PARAMS ((char *, CORE_ADDR,
  86.                     enum minimal_symbol_type, char *,
  87.                     struct objfile *));
  88.  
  89. static void
  90. elf_locate_sections PARAMS ((bfd *, asection *, void *));
  91.  
  92. /* We are called once per section from elf_symfile_read.  We
  93.    need to examine each section we are passed, check to see
  94.    if it is something we are interested in processing, and
  95.    if so, stash away some access information for the section.
  96.  
  97.    For now we recognize the dwarf debug information sections and
  98.    line number sections from matching their section names.  The
  99.    ELF definition is no real help here since it has no direct
  100.    knowledge of DWARF (by design, so any debugging format can be
  101.    used).
  102.  
  103.    We also recognize the ".stab" sections used by the Sun compilers
  104.    released with Solaris 2.
  105.  
  106.    FIXME: The section names should not be hardwired strings (what
  107.    should they be?  I don't think most object file formats have enough
  108.    section flags to specify what kind of debug section it is
  109.    -kingdon).  */
  110.  
  111. static void
  112. elf_locate_sections (ignore_abfd, sectp, eip)
  113.      bfd *ignore_abfd;
  114.      asection *sectp;
  115.      PTR eip;
  116. {
  117.   register struct elfinfo *ei;
  118.  
  119.   ei = (struct elfinfo *) eip;
  120.   if (STREQ (sectp -> name, ".debug"))
  121.     {
  122.       ei -> dboffset = sectp -> filepos;
  123.       ei -> dbsize = bfd_get_section_size_before_reloc (sectp);
  124.     }
  125.   else if (STREQ (sectp -> name, ".line"))
  126.     {
  127.       ei -> lnoffset = sectp -> filepos;
  128.       ei -> lnsize = bfd_get_section_size_before_reloc (sectp);
  129.     }
  130.   else if (STREQ (sectp -> name, ".stab"))
  131.     {
  132.       ei -> stabsect = sectp;
  133.     }
  134.   else if (STREQ (sectp -> name, ".stab.index"))
  135.     {
  136.       ei -> stabindexsect = sectp;
  137.     }
  138.   else if (STREQ (sectp -> name, ".mdebug"))
  139.     {
  140.       ei -> mdebugsect = sectp;
  141.     }
  142. }
  143.  
  144. #if 0    /* Currently unused */
  145.  
  146. char *
  147. elf_interpreter (abfd)
  148.      bfd *abfd;
  149. {
  150.   sec_ptr interp_sec;
  151.   unsigned size;
  152.   char *interp = NULL;
  153.  
  154.   interp_sec = bfd_get_section_by_name (abfd, ".interp");
  155.   if (interp_sec)
  156.     {
  157.       size = bfd_section_size (abfd, interp_sec);
  158.       interp = alloca (size);
  159.       if (bfd_get_section_contents (abfd, interp_sec, interp, (file_ptr)0,
  160.                     size))
  161.     {
  162.       interp = savestring (interp, size - 1);
  163.     }
  164.       else
  165.     {
  166.       interp = NULL;
  167.     }
  168.     }
  169.   return (interp);
  170. }
  171.  
  172. #endif
  173.  
  174. static struct minimal_symbol *
  175. record_minimal_symbol_and_info (name, address, ms_type, info, objfile)
  176.      char *name;
  177.      CORE_ADDR address;
  178.      enum minimal_symbol_type ms_type;
  179.      char *info;        /* FIXME, is this really char *? */
  180.      struct objfile *objfile;
  181. {
  182.   int section;
  183.  
  184.   /* Guess the section from the type.  This is likely to be wrong in
  185.      some cases.  */
  186.   switch (ms_type)
  187.     {
  188.     case mst_text:
  189.     case mst_file_text:
  190.       section = SECT_OFF_TEXT;
  191. #ifdef SMASH_TEXT_ADDRESS
  192.       SMASH_TEXT_ADDRESS (address);
  193. #endif
  194.       break;
  195.     case mst_data:
  196.     case mst_file_data:
  197.       section = SECT_OFF_DATA;
  198.       break;
  199.     case mst_bss:
  200.     case mst_file_bss:
  201.       section = SECT_OFF_BSS;
  202.       break;
  203.     default:
  204.       section = -1;
  205.       break;
  206.     }
  207.  
  208.   name = obsavestring (name, strlen (name), &objfile -> symbol_obstack);
  209.   return prim_record_minimal_symbol_and_info
  210.     (name, address, ms_type, info, section, objfile);
  211. }
  212.  
  213. /*
  214.  
  215. LOCAL FUNCTION
  216.  
  217.     elf_symtab_read -- read the symbol table of an ELF file
  218.  
  219. SYNOPSIS
  220.  
  221.     void elf_symtab_read (bfd *abfd, CORE_ADDR addr,
  222.                   struct objfile *objfile)
  223.  
  224. DESCRIPTION
  225.  
  226.     Given an open bfd, a base address to relocate symbols to, and a
  227.     flag that specifies whether or not this bfd is for an executable
  228.     or not (may be shared library for example), add all the global
  229.     function and data symbols to the minimal symbol table.
  230.  
  231.     In stabs-in-ELF, as implemented by Sun, there are some local symbols
  232.     defined in the ELF symbol table, which can be used to locate
  233.     the beginnings of sections from each ".o" file that was linked to
  234.     form the executable objfile.  We gather any such info and record it
  235.     in data structures hung off the objfile's private data.
  236.  
  237. */
  238.  
  239. static void
  240. elf_symtab_read (abfd, addr, objfile, dynamic)
  241.      bfd *abfd;
  242.      CORE_ADDR addr;
  243.      struct objfile *objfile;
  244.      int dynamic;
  245. {
  246.   long storage_needed;
  247.   asymbol *sym;
  248.   asymbol **symbol_table;
  249.   long number_of_symbols;
  250.   long i;
  251.   int index;
  252.   struct cleanup *back_to;
  253.   CORE_ADDR symaddr;
  254.   enum minimal_symbol_type ms_type;
  255.   /* If sectinfo is nonNULL, it contains section info that should end up
  256.      filed in the objfile.  */
  257.   struct stab_section_info *sectinfo = NULL;
  258.   /* If filesym is nonzero, it points to a file symbol, but we haven't
  259.      seen any section info for it yet.  */
  260.   asymbol *filesym = 0;
  261. #ifdef SOFUN_ADDRESS_MAYBE_MISSING
  262.   /* Name of filesym, as saved on the symbol_obstack.  */
  263.   char *filesymname = obsavestring ("", 0, &objfile->symbol_obstack);
  264. #endif
  265.   struct dbx_symfile_info *dbx = (struct dbx_symfile_info *)
  266.                  objfile->sym_stab_info;
  267.   unsigned long size;
  268.   int stripped = (bfd_get_symcount (abfd) == 0);
  269.  
  270.   if (dynamic)
  271.     {
  272.       storage_needed = bfd_get_dynamic_symtab_upper_bound (abfd);
  273.  
  274.       /* Nothing to be done if there is no dynamic symtab.  */
  275.       if (storage_needed < 0)
  276.     return;
  277.     }
  278.   else
  279.     {
  280.       storage_needed = bfd_get_symtab_upper_bound (abfd);
  281.       if (storage_needed < 0)
  282.     error ("Can't read symbols from %s: %s", bfd_get_filename (abfd),
  283.            bfd_errmsg (bfd_get_error ()));
  284.     }
  285.   if (storage_needed > 0)
  286.     {
  287.       symbol_table = (asymbol **) xmalloc (storage_needed);
  288.       back_to = make_cleanup (free, symbol_table);
  289.       if (dynamic)
  290.         number_of_symbols = bfd_canonicalize_dynamic_symtab (abfd,
  291.                                  symbol_table);
  292.       else
  293.         number_of_symbols = bfd_canonicalize_symtab (abfd, symbol_table);
  294.       if (number_of_symbols < 0)
  295.     error ("Can't read symbols from %s: %s", bfd_get_filename (abfd),
  296.            bfd_errmsg (bfd_get_error ()));
  297.       for (i = 0; i < number_of_symbols; i++)
  298.     {
  299.       sym = symbol_table[i];
  300.       if (sym -> name == NULL || *sym -> name == '\0')
  301.         {
  302.           /* Skip names that don't exist (shouldn't happen), or names
  303.          that are null strings (may happen). */
  304.           continue;
  305.         }
  306.  
  307.       if (sym -> section == &bfd_und_section
  308.           && (sym -> flags & BSF_FUNCTION))
  309.         {
  310.           struct minimal_symbol *msym;
  311.  
  312.           /* Symbol is a reference to a function defined in
  313.          a shared library.
  314.          If its value is non zero then it is usually the address
  315.          of the corresponding entry in the procedure linkage table,
  316.          relative to the base address.
  317.          If its value is zero then the dynamic linker has to resolve
  318.          the symbol. We are unable to find any meaningful address
  319.          for this symbol in the executable file, so we skip it.
  320.          Irix 5 has a zero value for all shared library functions
  321.          in the main symbol table, but the dynamic symbol table
  322.          provides the right values.  */
  323.           symaddr = sym -> value;
  324.           if (symaddr == 0)
  325.         continue;
  326.           symaddr += addr;
  327.           msym = record_minimal_symbol_and_info
  328.         ((char *) sym -> name, symaddr,
  329.         mst_solib_trampoline, NULL, objfile);
  330. #ifdef SOFUN_ADDRESS_MAYBE_MISSING
  331.           msym->filename = filesymname;
  332. #endif
  333.           continue;
  334.         }
  335.  
  336.       /* If it is a nonstripped executable, do not enter dynamic
  337.          symbols, as the dynamic symbol table is usually a subset
  338.          of the main symbol table.  */
  339.       if (dynamic && !stripped)
  340.         continue;
  341.       if (sym -> flags & BSF_FILE)
  342.         {
  343.           /* STT_FILE debugging symbol that helps stabs-in-elf debugging.
  344.          Chain any old one onto the objfile; remember new sym.  */
  345.           if (sectinfo != NULL)
  346.         {
  347.           sectinfo -> next = dbx -> stab_section_info;
  348.           dbx -> stab_section_info = sectinfo;
  349.           sectinfo = NULL;
  350.         }
  351.           filesym = sym;
  352. #ifdef SOFUN_ADDRESS_MAYBE_MISSING
  353.           filesymname =
  354.         obsavestring ((char *)filesym->name, strlen (filesym->name),
  355.                   &objfile->symbol_obstack);
  356. #endif
  357.         }
  358.       else if (sym -> flags & (BSF_GLOBAL | BSF_LOCAL | BSF_WEAK))
  359.         {
  360.           struct minimal_symbol *msym;
  361.  
  362.           /* Select global/local/weak symbols.  Note that bfd puts abs
  363.          symbols in their own section, so all symbols we are
  364.          interested in will have a section. */
  365.           /* Bfd symbols are section relative. */
  366.           symaddr = sym -> value + sym -> section -> vma;
  367.           /* Relocate all non-absolute symbols by base address.  */
  368.           if (sym -> section != &bfd_abs_section)
  369.         {
  370.           symaddr += addr;
  371.         }
  372.           /* For non-absolute symbols, use the type of the section
  373.          they are relative to, to intuit text/data.  Bfd provides
  374.          no way of figuring this out for absolute symbols. */
  375.           if (sym -> section == &bfd_abs_section)
  376.         {
  377.           /* This is a hack to get the minimal symbol type
  378.              right for Irix 5, which has absolute adresses
  379.              with special section indices for dynamic symbols. */
  380.           unsigned short shndx =
  381.             ((elf_symbol_type *) sym)->internal_elf_sym.st_shndx;
  382.  
  383.           switch (shndx)
  384.             {
  385.             case SHN_MIPS_TEXT:
  386.               ms_type = mst_text;
  387.               break;
  388.             case SHN_MIPS_DATA:
  389.               ms_type = mst_data;
  390.               break;
  391.             case SHN_MIPS_ACOMMON:
  392.               ms_type = mst_bss;
  393.               break;
  394.             default:
  395.               ms_type = mst_abs;
  396.             }
  397.         }
  398.           else if (sym -> section -> flags & SEC_CODE)
  399.         {
  400.           if (sym -> flags & BSF_GLOBAL)
  401.             {
  402.               ms_type = mst_text;
  403.             }
  404.           else if ((sym->name[0] == '.' && sym->name[1] == 'L')
  405.                || ((sym -> flags & BSF_LOCAL)
  406.                    && sym->name[0] == 'L'
  407.                    && sym->name[1] == 'L'))
  408.             /* Looks like a compiler-generated label.  Skip it.
  409.                The assembler should be skipping these (to keep
  410.                executables small), but apparently with gcc on the
  411.                delta m88k SVR4, it loses.  So to have us check too
  412.                should be harmless (but I encourage people to fix this
  413.                in the assembler instead of adding checks here).  */
  414.             continue;
  415.           else
  416.             {
  417.               ms_type = mst_file_text;
  418.             }
  419.         }
  420.           else if (sym -> section -> flags & SEC_ALLOC)
  421.         {
  422.           if (sym -> flags & BSF_GLOBAL)
  423.             {
  424.               if (sym -> section -> flags & SEC_LOAD)
  425.             {
  426.               ms_type = mst_data;
  427.             }
  428.               else
  429.             {
  430.               ms_type = mst_bss;
  431.             }
  432.             }
  433.           else if (sym -> flags & BSF_LOCAL)
  434.             {
  435.               /* Named Local variable in a Data section.  Check its
  436.              name for stabs-in-elf.  The STREQ macro checks the
  437.              first character inline, so we only actually do a
  438.              strcmp function call on names that start with 'B'
  439.              or 'D' */
  440.               index = SECT_OFF_MAX;
  441.               if (STREQ ("Bbss.bss", sym -> name))
  442.             {
  443.               index = SECT_OFF_BSS;
  444.             }
  445.               else if (STREQ ("Ddata.data", sym -> name))
  446.             {
  447.               index = SECT_OFF_DATA;
  448.             }
  449.               else if (STREQ ("Drodata.rodata", sym -> name))
  450.             {
  451.               index = SECT_OFF_RODATA;
  452.             }
  453.               if (index != SECT_OFF_MAX)
  454.             {
  455.               /* Found a special local symbol.  Allocate a
  456.                  sectinfo, if needed, and fill it in.  */
  457.               if (sectinfo == NULL)
  458.                 {
  459.                   sectinfo = (struct stab_section_info *)
  460.                 xmmalloc (objfile -> md, sizeof (*sectinfo));
  461.                   memset ((PTR) sectinfo, 0, sizeof (*sectinfo));
  462.                   if (filesym == NULL)
  463.                 {
  464.                   complain (§ion_info_complaint,
  465.                         sym -> name);
  466.                 }
  467.                   else
  468.                 {
  469.                   sectinfo -> filename =
  470.                     (char *) filesym -> name;
  471.                 }
  472.                 }
  473.               if (sectinfo -> sections[index] != 0)
  474.                 {
  475.                   complain (§ion_info_dup_complaint,
  476.                     sectinfo -> filename);
  477.                 }
  478.               /* Bfd symbols are section relative. */
  479.               symaddr = sym -> value + sym -> section -> vma;
  480.               /* Relocate non-absolute symbols by base address.  */
  481.               if (sym -> section != &bfd_abs_section)
  482.                 {
  483.                   symaddr += addr;
  484.                 }
  485.               sectinfo -> sections[index] = symaddr;
  486.               /* The special local symbols don't go in the
  487.                  minimal symbol table, so ignore this one. */
  488.               continue;
  489.             }
  490.               /* Not a special stabs-in-elf symbol, do regular
  491.              symbol processing. */
  492.               if (sym -> section -> flags & SEC_LOAD)
  493.             {
  494.               ms_type = mst_file_data;
  495.             }
  496.               else
  497.             {
  498.               ms_type = mst_file_bss;
  499.             }
  500.             }
  501.           else
  502.             {
  503.               ms_type = mst_unknown;
  504.             }
  505.         }
  506.           else
  507.         {
  508.           /* FIXME:  Solaris2 shared libraries include lots of
  509.              odd "absolute" and "undefined" symbols, that play 
  510.              hob with actions like finding what function the PC
  511.              is in.  Ignore them if they aren't text, data, or bss.  */
  512.           /* ms_type = mst_unknown; */
  513.           continue;        /* Skip this symbol. */
  514.         }
  515.           /* Pass symbol size field in via BFD.  FIXME!!!  */
  516.           size = ((elf_symbol_type *) sym) -> internal_elf_sym.st_size;
  517.           msym = record_minimal_symbol_and_info
  518.         ((char *) sym -> name, symaddr,
  519.          ms_type, (PTR) size, objfile);
  520. #ifdef SOFUN_ADDRESS_MAYBE_MISSING
  521.           msym->filename = filesymname;
  522. #endif
  523.         }
  524.     }
  525.       do_cleanups (back_to);
  526.     }
  527. }
  528.  
  529. /* Scan and build partial symbols for a symbol file.
  530.    We have been initialized by a call to elf_symfile_init, which 
  531.    currently does nothing.
  532.  
  533.    SECTION_OFFSETS is a set of offsets to apply to relocate the symbols
  534.    in each section.  We simplify it down to a single offset for all
  535.    symbols.  FIXME.
  536.  
  537.    MAINLINE is true if we are reading the main symbol
  538.    table (as opposed to a shared lib or dynamically loaded file).
  539.  
  540.    This function only does the minimum work necessary for letting the
  541.    user "name" things symbolically; it does not read the entire symtab.
  542.    Instead, it reads the external and static symbols and puts them in partial
  543.    symbol tables.  When more extensive information is requested of a
  544.    file, the corresponding partial symbol table is mutated into a full
  545.    fledged symbol table by going back and reading the symbols
  546.    for real.
  547.  
  548.    We look for sections with specific names, to tell us what debug
  549.    format to look for:  FIXME!!!
  550.  
  551.    dwarf_build_psymtabs() builds psymtabs for DWARF symbols;
  552.    elfstab_build_psymtabs() handles STABS symbols;
  553.    mdebug_build_psymtabs() handles ECOFF debugging information.
  554.  
  555.    Note that ELF files have a "minimal" symbol table, which looks a lot
  556.    like a COFF symbol table, but has only the minimal information necessary
  557.    for linking.  We process this also, and use the information to
  558.    build gdb's minimal symbol table.  This gives us some minimal debugging
  559.    capability even for files compiled without -g.  */
  560.  
  561. static void
  562. elf_symfile_read (objfile, section_offsets, mainline)
  563.      struct objfile *objfile;
  564.      struct section_offsets *section_offsets;
  565.      int mainline;
  566. {
  567.   bfd *abfd = objfile->obfd;
  568.   struct elfinfo ei;
  569.   struct cleanup *back_to;
  570.   CORE_ADDR offset;
  571.  
  572.   init_minimal_symbol_collection ();
  573.   back_to = make_cleanup (discard_minimal_symbols, 0);
  574.  
  575.   memset ((char *) &ei, 0, sizeof (ei));
  576.  
  577.   /* Allocate struct to keep track of the symfile */
  578.   objfile->sym_stab_info = (PTR)
  579.     xmmalloc (objfile -> md, sizeof (struct dbx_symfile_info));
  580.   memset ((char *) objfile->sym_stab_info, 0, sizeof (struct dbx_symfile_info));
  581.   make_cleanup (free_elfinfo, (PTR) objfile);
  582.  
  583.   /* Process the normal ELF symbol table first.  This may write some 
  584.      chain of info into the dbx_symfile_info in objfile->sym_stab_info,
  585.      which can later be used by elfstab_offset_sections.  */
  586.  
  587.   /* FIXME, should take a section_offsets param, not just an offset.  */
  588.   offset = ANOFFSET (section_offsets, 0);
  589.   elf_symtab_read (abfd, offset, objfile, 0);
  590.  
  591.   /* Add the dynamic symbols.  */
  592.  
  593.   elf_symtab_read (abfd, offset, objfile, 1);
  594.  
  595.   /* Now process debugging information, which is contained in
  596.      special ELF sections.  We first have to find them... */
  597.  
  598.   bfd_map_over_sections (abfd, elf_locate_sections, (PTR) &ei);
  599.   if (ei.dboffset && ei.lnoffset)
  600.     {
  601.       /* DWARF sections */
  602.       dwarf_build_psymtabs (objfile,
  603.                 section_offsets, mainline,
  604.                 ei.dboffset, ei.dbsize,
  605.                 ei.lnoffset, ei.lnsize);
  606.     }
  607.   if (ei.stabsect)
  608.     {
  609.       asection *str_sect;
  610.  
  611.       /* Stab sections have an associated string table that looks like
  612.      a separate section.  */
  613.       str_sect = bfd_get_section_by_name (abfd, ".stabstr");
  614.  
  615.       /* FIXME should probably warn about a stab section without a stabstr.  */
  616.       if (str_sect)
  617.     elfstab_build_psymtabs (objfile,
  618.                 section_offsets,
  619.                 mainline,
  620.                 ei.stabsect->filepos,
  621.                 bfd_section_size (abfd, ei.stabsect),
  622.                 str_sect->filepos,
  623.                 bfd_section_size (abfd, str_sect));
  624.     }
  625.   if (ei.mdebugsect)
  626.     {
  627.       const struct ecoff_debug_swap *swap;
  628.  
  629.       /* .mdebug section, presumably holding ECOFF debugging
  630.      information.  */
  631.       swap = get_elf_backend_data (abfd)->elf_backend_ecoff_debug_swap;
  632.       if (swap)
  633.     elfmdebug_build_psymtabs (objfile, swap, ei.mdebugsect,
  634.                   section_offsets);
  635.     }
  636.  
  637.   /* Install any minimal symbols that have been collected as the current
  638.      minimal symbols for this objfile. */
  639.  
  640.   install_minimal_symbols (objfile);
  641.  
  642.   do_cleanups (back_to);
  643. }
  644.  
  645. /* This cleans up the objfile's sym_stab_info pointer, and the chain of
  646.    stab_section_info's, that might be dangling from it.  */
  647.  
  648. static void
  649. free_elfinfo (objp)
  650.      PTR objp;
  651. {
  652.   struct objfile *objfile = (struct objfile *)objp;
  653.   struct dbx_symfile_info *dbxinfo = (struct dbx_symfile_info *)
  654.                      objfile->sym_stab_info;
  655.   struct stab_section_info *ssi, *nssi;
  656.  
  657.   ssi = dbxinfo->stab_section_info;
  658.   while (ssi)
  659.     {
  660.       nssi = ssi->next;
  661.       mfree (objfile->md, ssi);
  662.       ssi = nssi;
  663.     }
  664.  
  665.   dbxinfo->stab_section_info = 0;    /* Just say No mo info about this.  */
  666. }
  667.  
  668.  
  669. /* Initialize anything that needs initializing when a completely new symbol
  670.    file is specified (not just adding some symbols from another file, e.g. a
  671.    shared library).
  672.  
  673.    We reinitialize buildsym, since we may be reading stabs from an ELF file.  */
  674.  
  675. static void
  676. elf_new_init (ignore)
  677.      struct objfile *ignore;
  678. {
  679.   stabsread_new_init ();
  680.   buildsym_new_init ();
  681. }
  682.  
  683. /* Perform any local cleanups required when we are done with a particular
  684.    objfile.  I.E, we are in the process of discarding all symbol information
  685.    for an objfile, freeing up all memory held for it, and unlinking the
  686.    objfile struct from the global list of known objfiles. */
  687.  
  688. static void
  689. elf_symfile_finish (objfile)
  690.      struct objfile *objfile;
  691. {
  692.   if (objfile -> sym_stab_info != NULL)
  693.     {
  694.       mfree (objfile -> md, objfile -> sym_stab_info);
  695.     }
  696. }
  697.  
  698. /* ELF specific initialization routine for reading symbols.
  699.  
  700.    It is passed a pointer to a struct sym_fns which contains, among other
  701.    things, the BFD for the file whose symbols are being read, and a slot for
  702.    a pointer to "private data" which we can fill with goodies.
  703.  
  704.    For now at least, we have nothing in particular to do, so this function is
  705.    just a stub. */
  706.  
  707. static void
  708. elf_symfile_init (ignore)
  709.      struct objfile *ignore;
  710. {
  711. }
  712.  
  713. /* ELF specific parsing routine for section offsets.
  714.  
  715.    Plain and simple for now.  */
  716.  
  717. static
  718. struct section_offsets *
  719. elf_symfile_offsets (objfile, addr)
  720.      struct objfile *objfile;
  721.      CORE_ADDR addr;
  722. {
  723.   struct section_offsets *section_offsets;
  724.   int i;
  725.  
  726.   objfile->num_sections = SECT_OFF_MAX;
  727.   section_offsets = (struct section_offsets *)
  728.     obstack_alloc (&objfile -> psymbol_obstack,
  729.            sizeof (struct section_offsets)
  730.            + sizeof (section_offsets->offsets) * (SECT_OFF_MAX-1));
  731.  
  732.   for (i = 0; i < SECT_OFF_MAX; i++)
  733.     ANOFFSET (section_offsets, i) = addr;
  734.  
  735.   return section_offsets;
  736. }
  737.  
  738. /* When handling an ELF file that contains Sun STABS debug info,
  739.    some of the debug info is relative to the particular chunk of the
  740.    section that was generated in its individual .o file.  E.g.
  741.    offsets to static variables are relative to the start of the data
  742.    segment *for that module before linking*.  This information is
  743.    painfully squirreled away in the ELF symbol table as local symbols
  744.    with wierd names.  Go get 'em when needed.  */
  745.  
  746. void
  747. elfstab_offset_sections (objfile, pst)
  748.      struct objfile *objfile;
  749.      struct partial_symtab *pst;
  750. {
  751.   char *filename = pst->filename;
  752.   struct dbx_symfile_info *dbx = (struct dbx_symfile_info *)
  753.                  objfile->sym_stab_info;
  754.   struct stab_section_info *maybe = dbx->stab_section_info;
  755.   struct stab_section_info *questionable = 0;
  756.   int i;
  757.   char *p;
  758.  
  759.   /* The ELF symbol info doesn't include path names, so strip the path
  760.      (if any) from the psymtab filename.  */
  761.   while (0 != (p = strchr (filename, '/')))
  762.     filename = p+1;
  763.  
  764.   /* FIXME:  This linear search could speed up significantly
  765.      if it was chained in the right order to match how we search it,
  766.      and if we unchained when we found a match. */
  767.   for (; maybe; maybe = maybe->next)
  768.     {
  769.       if (filename[0] == maybe->filename[0]
  770.       && STREQ (filename, maybe->filename))
  771.     {
  772.       /* We found a match.  But there might be several source files
  773.          (from different directories) with the same name.  */
  774.       if (0 == maybe->found)
  775.         break;
  776.       questionable = maybe;        /* Might use it later.  */
  777.     }
  778.     }
  779.  
  780.   if (maybe == 0 && questionable != 0)
  781.     {
  782.       complain (&stab_info_questionable_complaint, filename);
  783.       maybe = questionable;
  784.     }
  785.  
  786.   if (maybe)
  787.     {
  788.       /* Found it!  Allocate a new psymtab struct, and fill it in.  */
  789.       maybe->found++;
  790.       pst->section_offsets = (struct section_offsets *)
  791.     obstack_alloc (&objfile -> psymbol_obstack,
  792.                sizeof (struct section_offsets) +
  793.            sizeof (pst->section_offsets->offsets) * (SECT_OFF_MAX-1));
  794.  
  795.       for (i = 0; i < SECT_OFF_MAX; i++)
  796.     ANOFFSET (pst->section_offsets, i) = maybe->sections[i];
  797.       return;
  798.     }
  799.  
  800.   /* We were unable to find any offsets for this file.  Complain.  */
  801.   if (dbx->stab_section_info)        /* If there *is* any info, */
  802.     complain (&stab_info_mismatch_complaint, filename);
  803. }
  804.  
  805. /* Register that we are able to handle ELF object file formats.  */
  806.  
  807. static struct sym_fns elf_sym_fns =
  808. {
  809.   bfd_target_elf_flavour,
  810.   elf_new_init,        /* sym_new_init: init anything gbl to entire symtab */
  811.   elf_symfile_init,    /* sym_init: read initial info, setup for sym_read() */
  812.   elf_symfile_read,    /* sym_read: read a symbol file into symtab */
  813.   elf_symfile_finish,    /* sym_finish: finished with file, cleanup */
  814.   elf_symfile_offsets,    /* sym_offsets:  Translate ext. to int. relocation */
  815.   NULL            /* next: pointer to next struct sym_fns */
  816. };
  817.  
  818. void
  819. _initialize_elfread ()
  820. {
  821.   add_symtab_fns (&elf_sym_fns);
  822. }
  823.