Home | History | Annotate | Line # | Download | only in gdb
solib-svr4.c revision 1.1.1.5
      1      1.1  christos /* Handle SVR4 shared libraries for GDB, the GNU Debugger.
      2      1.1  christos 
      3  1.1.1.5  christos    Copyright (C) 1990-2017 Free Software Foundation, Inc.
      4      1.1  christos 
      5      1.1  christos    This file is part of GDB.
      6      1.1  christos 
      7      1.1  christos    This program is free software; you can redistribute it and/or modify
      8      1.1  christos    it under the terms of the GNU General Public License as published by
      9      1.1  christos    the Free Software Foundation; either version 3 of the License, or
     10      1.1  christos    (at your option) any later version.
     11      1.1  christos 
     12      1.1  christos    This program is distributed in the hope that it will be useful,
     13      1.1  christos    but WITHOUT ANY WARRANTY; without even the implied warranty of
     14      1.1  christos    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     15      1.1  christos    GNU General Public License for more details.
     16      1.1  christos 
     17      1.1  christos    You should have received a copy of the GNU General Public License
     18      1.1  christos    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
     19      1.1  christos 
     20      1.1  christos #include "defs.h"
     21      1.1  christos 
     22      1.1  christos #include "elf/external.h"
     23      1.1  christos #include "elf/common.h"
     24      1.1  christos #include "elf/mips.h"
     25      1.1  christos 
     26      1.1  christos #include "symtab.h"
     27      1.1  christos #include "bfd.h"
     28      1.1  christos #include "symfile.h"
     29      1.1  christos #include "objfiles.h"
     30      1.1  christos #include "gdbcore.h"
     31      1.1  christos #include "target.h"
     32      1.1  christos #include "inferior.h"
     33  1.1.1.2  christos #include "infrun.h"
     34      1.1  christos #include "regcache.h"
     35      1.1  christos #include "gdbthread.h"
     36      1.1  christos #include "observer.h"
     37      1.1  christos 
     38      1.1  christos #include "solist.h"
     39      1.1  christos #include "solib.h"
     40      1.1  christos #include "solib-svr4.h"
     41      1.1  christos 
     42      1.1  christos #include "bfd-target.h"
     43      1.1  christos #include "elf-bfd.h"
     44      1.1  christos #include "exec.h"
     45      1.1  christos #include "auxv.h"
     46      1.1  christos #include "gdb_bfd.h"
     47      1.1  christos #include "probe.h"
     48      1.1  christos 
     49      1.1  christos static struct link_map_offsets *svr4_fetch_link_map_offsets (void);
     50      1.1  christos static int svr4_have_link_map_offsets (void);
     51      1.1  christos static void svr4_relocate_main_executable (void);
     52      1.1  christos static void svr4_free_library_list (void *p_list);
     53      1.1  christos 
     54      1.1  christos /* Link map info to include in an allocated so_list entry.  */
     55      1.1  christos 
     56      1.1  christos struct lm_info
     57      1.1  christos   {
     58      1.1  christos     /* Amount by which addresses in the binary should be relocated to
     59      1.1  christos        match the inferior.  The direct inferior value is L_ADDR_INFERIOR.
     60      1.1  christos        When prelinking is involved and the prelink base address changes,
     61      1.1  christos        we may need a different offset - the recomputed offset is in L_ADDR.
     62      1.1  christos        It is commonly the same value.  It is cached as we want to warn about
     63      1.1  christos        the difference and compute it only once.  L_ADDR is valid
     64      1.1  christos        iff L_ADDR_P.  */
     65      1.1  christos     CORE_ADDR l_addr, l_addr_inferior;
     66      1.1  christos     unsigned int l_addr_p : 1;
     67      1.1  christos 
     68      1.1  christos     /* The target location of lm.  */
     69      1.1  christos     CORE_ADDR lm_addr;
     70      1.1  christos 
     71      1.1  christos     /* Values read in from inferior's fields of the same name.  */
     72      1.1  christos     CORE_ADDR l_ld, l_next, l_prev, l_name;
     73      1.1  christos   };
     74      1.1  christos 
     75      1.1  christos /* On SVR4 systems, a list of symbols in the dynamic linker where
     76      1.1  christos    GDB can try to place a breakpoint to monitor shared library
     77      1.1  christos    events.
     78      1.1  christos 
     79      1.1  christos    If none of these symbols are found, or other errors occur, then
     80      1.1  christos    SVR4 systems will fall back to using a symbol as the "startup
     81      1.1  christos    mapping complete" breakpoint address.  */
     82      1.1  christos 
     83      1.1  christos static const char * const solib_break_names[] =
     84      1.1  christos {
     85      1.1  christos   "r_debug_state",
     86      1.1  christos   "_r_debug_state",
     87      1.1  christos   "_dl_debug_state",
     88      1.1  christos   "rtld_db_dlactivity",
     89      1.1  christos   "__dl_rtld_db_dlactivity",
     90      1.1  christos   "_rtld_debug_state",
     91      1.1  christos 
     92      1.1  christos   NULL
     93      1.1  christos };
     94      1.1  christos 
     95      1.1  christos static const char * const bkpt_names[] =
     96      1.1  christos {
     97      1.1  christos   "_start",
     98      1.1  christos   "__start",
     99      1.1  christos   "main",
    100      1.1  christos   NULL
    101      1.1  christos };
    102      1.1  christos 
    103      1.1  christos static const  char * const main_name_list[] =
    104      1.1  christos {
    105      1.1  christos   "main_$main",
    106      1.1  christos   NULL
    107      1.1  christos };
    108      1.1  christos 
    109      1.1  christos /* What to do when a probe stop occurs.  */
    110      1.1  christos 
    111      1.1  christos enum probe_action
    112      1.1  christos {
    113      1.1  christos   /* Something went seriously wrong.  Stop using probes and
    114      1.1  christos      revert to using the older interface.  */
    115      1.1  christos   PROBES_INTERFACE_FAILED,
    116      1.1  christos 
    117      1.1  christos   /* No action is required.  The shared object list is still
    118      1.1  christos      valid.  */
    119      1.1  christos   DO_NOTHING,
    120      1.1  christos 
    121      1.1  christos   /* The shared object list should be reloaded entirely.  */
    122      1.1  christos   FULL_RELOAD,
    123      1.1  christos 
    124      1.1  christos   /* Attempt to incrementally update the shared object list. If
    125      1.1  christos      the update fails or is not possible, fall back to reloading
    126      1.1  christos      the list in full.  */
    127      1.1  christos   UPDATE_OR_RELOAD,
    128      1.1  christos };
    129      1.1  christos 
    130      1.1  christos /* A probe's name and its associated action.  */
    131      1.1  christos 
    132      1.1  christos struct probe_info
    133      1.1  christos {
    134      1.1  christos   /* The name of the probe.  */
    135      1.1  christos   const char *name;
    136      1.1  christos 
    137      1.1  christos   /* What to do when a probe stop occurs.  */
    138      1.1  christos   enum probe_action action;
    139      1.1  christos };
    140      1.1  christos 
    141      1.1  christos /* A list of named probes and their associated actions.  If all
    142      1.1  christos    probes are present in the dynamic linker then the probes-based
    143      1.1  christos    interface will be used.  */
    144      1.1  christos 
    145      1.1  christos static const struct probe_info probe_info[] =
    146      1.1  christos {
    147      1.1  christos   { "init_start", DO_NOTHING },
    148      1.1  christos   { "init_complete", FULL_RELOAD },
    149      1.1  christos   { "map_start", DO_NOTHING },
    150      1.1  christos   { "map_failed", DO_NOTHING },
    151      1.1  christos   { "reloc_complete", UPDATE_OR_RELOAD },
    152      1.1  christos   { "unmap_start", DO_NOTHING },
    153      1.1  christos   { "unmap_complete", FULL_RELOAD },
    154      1.1  christos };
    155      1.1  christos 
    156      1.1  christos #define NUM_PROBES ARRAY_SIZE (probe_info)
    157      1.1  christos 
    158      1.1  christos /* Return non-zero if GDB_SO_NAME and INFERIOR_SO_NAME represent
    159      1.1  christos    the same shared library.  */
    160      1.1  christos 
    161      1.1  christos static int
    162      1.1  christos svr4_same_1 (const char *gdb_so_name, const char *inferior_so_name)
    163      1.1  christos {
    164      1.1  christos   if (strcmp (gdb_so_name, inferior_so_name) == 0)
    165      1.1  christos     return 1;
    166      1.1  christos 
    167      1.1  christos   /* On Solaris, when starting inferior we think that dynamic linker is
    168      1.1  christos      /usr/lib/ld.so.1, but later on, the table of loaded shared libraries
    169      1.1  christos      contains /lib/ld.so.1.  Sometimes one file is a link to another, but
    170      1.1  christos      sometimes they have identical content, but are not linked to each
    171      1.1  christos      other.  We don't restrict this check for Solaris, but the chances
    172      1.1  christos      of running into this situation elsewhere are very low.  */
    173      1.1  christos   if (strcmp (gdb_so_name, "/usr/lib/ld.so.1") == 0
    174      1.1  christos       && strcmp (inferior_so_name, "/lib/ld.so.1") == 0)
    175      1.1  christos     return 1;
    176      1.1  christos 
    177      1.1  christos   /* Similarly, we observed the same issue with sparc64, but with
    178      1.1  christos      different locations.  */
    179      1.1  christos   if (strcmp (gdb_so_name, "/usr/lib/sparcv9/ld.so.1") == 0
    180      1.1  christos       && strcmp (inferior_so_name, "/lib/sparcv9/ld.so.1") == 0)
    181      1.1  christos     return 1;
    182      1.1  christos 
    183      1.1  christos   return 0;
    184      1.1  christos }
    185      1.1  christos 
    186      1.1  christos static int
    187      1.1  christos svr4_same (struct so_list *gdb, struct so_list *inferior)
    188      1.1  christos {
    189      1.1  christos   return (svr4_same_1 (gdb->so_original_name, inferior->so_original_name));
    190      1.1  christos }
    191      1.1  christos 
    192      1.1  christos static struct lm_info *
    193      1.1  christos lm_info_read (CORE_ADDR lm_addr)
    194      1.1  christos {
    195      1.1  christos   struct link_map_offsets *lmo = svr4_fetch_link_map_offsets ();
    196      1.1  christos   gdb_byte *lm;
    197      1.1  christos   struct lm_info *lm_info;
    198      1.1  christos   struct cleanup *back_to;
    199      1.1  christos 
    200  1.1.1.4  christos   lm = (gdb_byte *) xmalloc (lmo->link_map_size);
    201      1.1  christos   back_to = make_cleanup (xfree, lm);
    202      1.1  christos 
    203      1.1  christos   if (target_read_memory (lm_addr, lm, lmo->link_map_size) != 0)
    204      1.1  christos     {
    205      1.1  christos       warning (_("Error reading shared library list entry at %s"),
    206      1.1  christos 	       paddress (target_gdbarch (), lm_addr)),
    207      1.1  christos       lm_info = NULL;
    208      1.1  christos     }
    209      1.1  christos   else
    210      1.1  christos     {
    211      1.1  christos       struct type *ptr_type = builtin_type (target_gdbarch ())->builtin_data_ptr;
    212      1.1  christos 
    213  1.1.1.4  christos       lm_info = XCNEW (struct lm_info);
    214      1.1  christos       lm_info->lm_addr = lm_addr;
    215      1.1  christos 
    216      1.1  christos       lm_info->l_addr_inferior = extract_typed_address (&lm[lmo->l_addr_offset],
    217      1.1  christos 							ptr_type);
    218      1.1  christos       lm_info->l_ld = extract_typed_address (&lm[lmo->l_ld_offset], ptr_type);
    219      1.1  christos       lm_info->l_next = extract_typed_address (&lm[lmo->l_next_offset],
    220      1.1  christos 					       ptr_type);
    221      1.1  christos       lm_info->l_prev = extract_typed_address (&lm[lmo->l_prev_offset],
    222      1.1  christos 					       ptr_type);
    223      1.1  christos       lm_info->l_name = extract_typed_address (&lm[lmo->l_name_offset],
    224      1.1  christos 					       ptr_type);
    225      1.1  christos     }
    226      1.1  christos 
    227      1.1  christos   do_cleanups (back_to);
    228      1.1  christos 
    229      1.1  christos   return lm_info;
    230      1.1  christos }
    231      1.1  christos 
    232      1.1  christos static int
    233      1.1  christos has_lm_dynamic_from_link_map (void)
    234      1.1  christos {
    235      1.1  christos   struct link_map_offsets *lmo = svr4_fetch_link_map_offsets ();
    236      1.1  christos 
    237      1.1  christos   return lmo->l_ld_offset >= 0;
    238      1.1  christos }
    239      1.1  christos 
    240      1.1  christos static CORE_ADDR
    241      1.1  christos lm_addr_check (const struct so_list *so, bfd *abfd)
    242      1.1  christos {
    243      1.1  christos   if (!so->lm_info->l_addr_p)
    244      1.1  christos     {
    245      1.1  christos       struct bfd_section *dyninfo_sect;
    246      1.1  christos       CORE_ADDR l_addr, l_dynaddr, dynaddr;
    247      1.1  christos 
    248      1.1  christos       l_addr = so->lm_info->l_addr_inferior;
    249      1.1  christos 
    250      1.1  christos       if (! abfd || ! has_lm_dynamic_from_link_map ())
    251      1.1  christos 	goto set_addr;
    252      1.1  christos 
    253      1.1  christos       l_dynaddr = so->lm_info->l_ld;
    254      1.1  christos 
    255      1.1  christos       dyninfo_sect = bfd_get_section_by_name (abfd, ".dynamic");
    256      1.1  christos       if (dyninfo_sect == NULL)
    257      1.1  christos 	goto set_addr;
    258      1.1  christos 
    259      1.1  christos       dynaddr = bfd_section_vma (abfd, dyninfo_sect);
    260      1.1  christos 
    261      1.1  christos       if (dynaddr + l_addr != l_dynaddr)
    262      1.1  christos 	{
    263      1.1  christos 	  CORE_ADDR align = 0x1000;
    264      1.1  christos 	  CORE_ADDR minpagesize = align;
    265      1.1  christos 
    266      1.1  christos 	  if (bfd_get_flavour (abfd) == bfd_target_elf_flavour)
    267      1.1  christos 	    {
    268      1.1  christos 	      Elf_Internal_Ehdr *ehdr = elf_tdata (abfd)->elf_header;
    269      1.1  christos 	      Elf_Internal_Phdr *phdr = elf_tdata (abfd)->phdr;
    270      1.1  christos 	      int i;
    271      1.1  christos 
    272      1.1  christos 	      align = 1;
    273      1.1  christos 
    274      1.1  christos 	      for (i = 0; i < ehdr->e_phnum; i++)
    275      1.1  christos 		if (phdr[i].p_type == PT_LOAD && phdr[i].p_align > align)
    276      1.1  christos 		  align = phdr[i].p_align;
    277      1.1  christos 
    278      1.1  christos 	      minpagesize = get_elf_backend_data (abfd)->minpagesize;
    279      1.1  christos 	    }
    280      1.1  christos 
    281      1.1  christos 	  /* Turn it into a mask.  */
    282      1.1  christos 	  align--;
    283      1.1  christos 
    284      1.1  christos 	  /* If the changes match the alignment requirements, we
    285      1.1  christos 	     assume we're using a core file that was generated by the
    286      1.1  christos 	     same binary, just prelinked with a different base offset.
    287      1.1  christos 	     If it doesn't match, we may have a different binary, the
    288      1.1  christos 	     same binary with the dynamic table loaded at an unrelated
    289      1.1  christos 	     location, or anything, really.  To avoid regressions,
    290      1.1  christos 	     don't adjust the base offset in the latter case, although
    291      1.1  christos 	     odds are that, if things really changed, debugging won't
    292      1.1  christos 	     quite work.
    293      1.1  christos 
    294      1.1  christos 	     One could expect more the condition
    295      1.1  christos 	       ((l_addr & align) == 0 && ((l_dynaddr - dynaddr) & align) == 0)
    296      1.1  christos 	     but the one below is relaxed for PPC.  The PPC kernel supports
    297      1.1  christos 	     either 4k or 64k page sizes.  To be prepared for 64k pages,
    298      1.1  christos 	     PPC ELF files are built using an alignment requirement of 64k.
    299      1.1  christos 	     However, when running on a kernel supporting 4k pages, the memory
    300      1.1  christos 	     mapping of the library may not actually happen on a 64k boundary!
    301      1.1  christos 
    302      1.1  christos 	     (In the usual case where (l_addr & align) == 0, this check is
    303      1.1  christos 	     equivalent to the possibly expected check above.)
    304      1.1  christos 
    305      1.1  christos 	     Even on PPC it must be zero-aligned at least for MINPAGESIZE.  */
    306      1.1  christos 
    307      1.1  christos 	  l_addr = l_dynaddr - dynaddr;
    308      1.1  christos 
    309      1.1  christos 	  if ((l_addr & (minpagesize - 1)) == 0
    310      1.1  christos 	      && (l_addr & align) == ((l_dynaddr - dynaddr) & align))
    311      1.1  christos 	    {
    312      1.1  christos 	      if (info_verbose)
    313      1.1  christos 		printf_unfiltered (_("Using PIC (Position Independent Code) "
    314      1.1  christos 				     "prelink displacement %s for \"%s\".\n"),
    315      1.1  christos 				   paddress (target_gdbarch (), l_addr),
    316      1.1  christos 				   so->so_name);
    317      1.1  christos 	    }
    318      1.1  christos 	  else
    319      1.1  christos 	    {
    320      1.1  christos 	      /* There is no way to verify the library file matches.  prelink
    321      1.1  christos 		 can during prelinking of an unprelinked file (or unprelinking
    322      1.1  christos 		 of a prelinked file) shift the DYNAMIC segment by arbitrary
    323      1.1  christos 		 offset without any page size alignment.  There is no way to
    324      1.1  christos 		 find out the ELF header and/or Program Headers for a limited
    325      1.1  christos 		 verification if it they match.  One could do a verification
    326      1.1  christos 		 of the DYNAMIC segment.  Still the found address is the best
    327      1.1  christos 		 one GDB could find.  */
    328      1.1  christos 
    329      1.1  christos 	      warning (_(".dynamic section for \"%s\" "
    330      1.1  christos 			 "is not at the expected address "
    331      1.1  christos 			 "(wrong library or version mismatch?)"), so->so_name);
    332      1.1  christos 	    }
    333      1.1  christos 	}
    334      1.1  christos 
    335      1.1  christos     set_addr:
    336      1.1  christos       so->lm_info->l_addr = l_addr;
    337      1.1  christos       so->lm_info->l_addr_p = 1;
    338      1.1  christos     }
    339      1.1  christos 
    340      1.1  christos   return so->lm_info->l_addr;
    341      1.1  christos }
    342      1.1  christos 
    343      1.1  christos /* Per pspace SVR4 specific data.  */
    344      1.1  christos 
    345      1.1  christos struct svr4_info
    346      1.1  christos {
    347      1.1  christos   CORE_ADDR debug_base;	/* Base of dynamic linker structures.  */
    348      1.1  christos 
    349      1.1  christos   /* Validity flag for debug_loader_offset.  */
    350      1.1  christos   int debug_loader_offset_p;
    351      1.1  christos 
    352      1.1  christos   /* Load address for the dynamic linker, inferred.  */
    353      1.1  christos   CORE_ADDR debug_loader_offset;
    354      1.1  christos 
    355      1.1  christos   /* Name of the dynamic linker, valid if debug_loader_offset_p.  */
    356      1.1  christos   char *debug_loader_name;
    357      1.1  christos 
    358      1.1  christos   /* Load map address for the main executable.  */
    359      1.1  christos   CORE_ADDR main_lm_addr;
    360      1.1  christos 
    361      1.1  christos   CORE_ADDR interp_text_sect_low;
    362      1.1  christos   CORE_ADDR interp_text_sect_high;
    363      1.1  christos   CORE_ADDR interp_plt_sect_low;
    364      1.1  christos   CORE_ADDR interp_plt_sect_high;
    365      1.1  christos 
    366      1.1  christos   /* Nonzero if the list of objects was last obtained from the target
    367      1.1  christos      via qXfer:libraries-svr4:read.  */
    368      1.1  christos   int using_xfer;
    369      1.1  christos 
    370      1.1  christos   /* Table of struct probe_and_action instances, used by the
    371      1.1  christos      probes-based interface to map breakpoint addresses to probes
    372      1.1  christos      and their associated actions.  Lookup is performed using
    373      1.1  christos      probe_and_action->probe->address.  */
    374      1.1  christos   htab_t probes_table;
    375      1.1  christos 
    376      1.1  christos   /* List of objects loaded into the inferior, used by the probes-
    377      1.1  christos      based interface.  */
    378      1.1  christos   struct so_list *solib_list;
    379      1.1  christos };
    380      1.1  christos 
    381      1.1  christos /* Per-program-space data key.  */
    382      1.1  christos static const struct program_space_data *solib_svr4_pspace_data;
    383      1.1  christos 
    384      1.1  christos /* Free the probes table.  */
    385      1.1  christos 
    386      1.1  christos static void
    387      1.1  christos free_probes_table (struct svr4_info *info)
    388      1.1  christos {
    389      1.1  christos   if (info->probes_table == NULL)
    390      1.1  christos     return;
    391      1.1  christos 
    392      1.1  christos   htab_delete (info->probes_table);
    393      1.1  christos   info->probes_table = NULL;
    394      1.1  christos }
    395      1.1  christos 
    396      1.1  christos /* Free the solib list.  */
    397      1.1  christos 
    398      1.1  christos static void
    399      1.1  christos free_solib_list (struct svr4_info *info)
    400      1.1  christos {
    401      1.1  christos   svr4_free_library_list (&info->solib_list);
    402      1.1  christos   info->solib_list = NULL;
    403      1.1  christos }
    404      1.1  christos 
    405      1.1  christos static void
    406      1.1  christos svr4_pspace_data_cleanup (struct program_space *pspace, void *arg)
    407      1.1  christos {
    408  1.1.1.4  christos   struct svr4_info *info = (struct svr4_info *) arg;
    409      1.1  christos 
    410      1.1  christos   free_probes_table (info);
    411      1.1  christos   free_solib_list (info);
    412      1.1  christos 
    413      1.1  christos   xfree (info);
    414      1.1  christos }
    415      1.1  christos 
    416      1.1  christos /* Get the current svr4 data.  If none is found yet, add it now.  This
    417      1.1  christos    function always returns a valid object.  */
    418      1.1  christos 
    419      1.1  christos static struct svr4_info *
    420      1.1  christos get_svr4_info (void)
    421      1.1  christos {
    422      1.1  christos   struct svr4_info *info;
    423      1.1  christos 
    424  1.1.1.4  christos   info = (struct svr4_info *) program_space_data (current_program_space,
    425  1.1.1.4  christos 						  solib_svr4_pspace_data);
    426      1.1  christos   if (info != NULL)
    427      1.1  christos     return info;
    428      1.1  christos 
    429  1.1.1.2  christos   info = XCNEW (struct svr4_info);
    430      1.1  christos   set_program_space_data (current_program_space, solib_svr4_pspace_data, info);
    431      1.1  christos   return info;
    432      1.1  christos }
    433      1.1  christos 
    434      1.1  christos /* Local function prototypes */
    435      1.1  christos 
    436      1.1  christos static int match_main (const char *);
    437      1.1  christos 
    438      1.1  christos /* Read program header TYPE from inferior memory.  The header is found
    439      1.1  christos    by scanning the OS auxillary vector.
    440      1.1  christos 
    441      1.1  christos    If TYPE == -1, return the program headers instead of the contents of
    442      1.1  christos    one program header.
    443      1.1  christos 
    444      1.1  christos    Return a pointer to allocated memory holding the program header contents,
    445      1.1  christos    or NULL on failure.  If sucessful, and unless P_SECT_SIZE is NULL, the
    446      1.1  christos    size of those contents is returned to P_SECT_SIZE.  Likewise, the target
    447  1.1.1.4  christos    architecture size (32-bit or 64-bit) is returned to P_ARCH_SIZE and
    448  1.1.1.4  christos    the base address of the section is returned in BASE_ADDR.  */
    449      1.1  christos 
    450      1.1  christos static gdb_byte *
    451  1.1.1.4  christos read_program_header (int type, int *p_sect_size, int *p_arch_size,
    452  1.1.1.4  christos 		     CORE_ADDR *base_addr)
    453      1.1  christos {
    454      1.1  christos   enum bfd_endian byte_order = gdbarch_byte_order (target_gdbarch ());
    455      1.1  christos   CORE_ADDR at_phdr, at_phent, at_phnum, pt_phdr = 0;
    456      1.1  christos   int arch_size, sect_size;
    457      1.1  christos   CORE_ADDR sect_addr;
    458      1.1  christos   gdb_byte *buf;
    459      1.1  christos   int pt_phdr_p = 0;
    460      1.1  christos 
    461      1.1  christos   /* Get required auxv elements from target.  */
    462      1.1  christos   if (target_auxv_search (&current_target, AT_PHDR, &at_phdr) <= 0)
    463      1.1  christos     return 0;
    464      1.1  christos   if (target_auxv_search (&current_target, AT_PHENT, &at_phent) <= 0)
    465      1.1  christos     return 0;
    466      1.1  christos   if (target_auxv_search (&current_target, AT_PHNUM, &at_phnum) <= 0)
    467      1.1  christos     return 0;
    468      1.1  christos   if (!at_phdr || !at_phnum)
    469      1.1  christos     return 0;
    470      1.1  christos 
    471      1.1  christos   /* Determine ELF architecture type.  */
    472      1.1  christos   if (at_phent == sizeof (Elf32_External_Phdr))
    473      1.1  christos     arch_size = 32;
    474      1.1  christos   else if (at_phent == sizeof (Elf64_External_Phdr))
    475      1.1  christos     arch_size = 64;
    476      1.1  christos   else
    477      1.1  christos     return 0;
    478      1.1  christos 
    479      1.1  christos   /* Find the requested segment.  */
    480      1.1  christos   if (type == -1)
    481      1.1  christos     {
    482      1.1  christos       sect_addr = at_phdr;
    483      1.1  christos       sect_size = at_phent * at_phnum;
    484      1.1  christos     }
    485      1.1  christos   else if (arch_size == 32)
    486      1.1  christos     {
    487      1.1  christos       Elf32_External_Phdr phdr;
    488      1.1  christos       int i;
    489      1.1  christos 
    490      1.1  christos       /* Search for requested PHDR.  */
    491      1.1  christos       for (i = 0; i < at_phnum; i++)
    492      1.1  christos 	{
    493      1.1  christos 	  int p_type;
    494      1.1  christos 
    495      1.1  christos 	  if (target_read_memory (at_phdr + i * sizeof (phdr),
    496      1.1  christos 				  (gdb_byte *)&phdr, sizeof (phdr)))
    497      1.1  christos 	    return 0;
    498      1.1  christos 
    499      1.1  christos 	  p_type = extract_unsigned_integer ((gdb_byte *) phdr.p_type,
    500      1.1  christos 					     4, byte_order);
    501      1.1  christos 
    502      1.1  christos 	  if (p_type == PT_PHDR)
    503      1.1  christos 	    {
    504      1.1  christos 	      pt_phdr_p = 1;
    505      1.1  christos 	      pt_phdr = extract_unsigned_integer ((gdb_byte *) phdr.p_vaddr,
    506      1.1  christos 						  4, byte_order);
    507      1.1  christos 	    }
    508      1.1  christos 
    509      1.1  christos 	  if (p_type == type)
    510      1.1  christos 	    break;
    511      1.1  christos 	}
    512      1.1  christos 
    513      1.1  christos       if (i == at_phnum)
    514      1.1  christos 	return 0;
    515      1.1  christos 
    516      1.1  christos       /* Retrieve address and size.  */
    517      1.1  christos       sect_addr = extract_unsigned_integer ((gdb_byte *)phdr.p_vaddr,
    518      1.1  christos 					    4, byte_order);
    519      1.1  christos       sect_size = extract_unsigned_integer ((gdb_byte *)phdr.p_memsz,
    520      1.1  christos 					    4, byte_order);
    521      1.1  christos     }
    522      1.1  christos   else
    523      1.1  christos     {
    524      1.1  christos       Elf64_External_Phdr phdr;
    525      1.1  christos       int i;
    526      1.1  christos 
    527      1.1  christos       /* Search for requested PHDR.  */
    528      1.1  christos       for (i = 0; i < at_phnum; i++)
    529      1.1  christos 	{
    530      1.1  christos 	  int p_type;
    531      1.1  christos 
    532      1.1  christos 	  if (target_read_memory (at_phdr + i * sizeof (phdr),
    533      1.1  christos 				  (gdb_byte *)&phdr, sizeof (phdr)))
    534      1.1  christos 	    return 0;
    535      1.1  christos 
    536      1.1  christos 	  p_type = extract_unsigned_integer ((gdb_byte *) phdr.p_type,
    537      1.1  christos 					     4, byte_order);
    538      1.1  christos 
    539      1.1  christos 	  if (p_type == PT_PHDR)
    540      1.1  christos 	    {
    541      1.1  christos 	      pt_phdr_p = 1;
    542      1.1  christos 	      pt_phdr = extract_unsigned_integer ((gdb_byte *) phdr.p_vaddr,
    543      1.1  christos 						  8, byte_order);
    544      1.1  christos 	    }
    545      1.1  christos 
    546      1.1  christos 	  if (p_type == type)
    547      1.1  christos 	    break;
    548      1.1  christos 	}
    549      1.1  christos 
    550      1.1  christos       if (i == at_phnum)
    551      1.1  christos 	return 0;
    552      1.1  christos 
    553      1.1  christos       /* Retrieve address and size.  */
    554      1.1  christos       sect_addr = extract_unsigned_integer ((gdb_byte *)phdr.p_vaddr,
    555      1.1  christos 					    8, byte_order);
    556      1.1  christos       sect_size = extract_unsigned_integer ((gdb_byte *)phdr.p_memsz,
    557      1.1  christos 					    8, byte_order);
    558      1.1  christos     }
    559      1.1  christos 
    560      1.1  christos   /* PT_PHDR is optional, but we really need it
    561      1.1  christos      for PIE to make this work in general.  */
    562      1.1  christos 
    563      1.1  christos   if (pt_phdr_p)
    564      1.1  christos     {
    565      1.1  christos       /* at_phdr is real address in memory. pt_phdr is what pheader says it is.
    566      1.1  christos 	 Relocation offset is the difference between the two. */
    567      1.1  christos       sect_addr = sect_addr + (at_phdr - pt_phdr);
    568      1.1  christos     }
    569      1.1  christos 
    570      1.1  christos   /* Read in requested program header.  */
    571  1.1.1.4  christos   buf = (gdb_byte *) xmalloc (sect_size);
    572      1.1  christos   if (target_read_memory (sect_addr, buf, sect_size))
    573      1.1  christos     {
    574      1.1  christos       xfree (buf);
    575      1.1  christos       return NULL;
    576      1.1  christos     }
    577      1.1  christos 
    578      1.1  christos   if (p_arch_size)
    579      1.1  christos     *p_arch_size = arch_size;
    580      1.1  christos   if (p_sect_size)
    581      1.1  christos     *p_sect_size = sect_size;
    582  1.1.1.4  christos   if (base_addr)
    583  1.1.1.4  christos     *base_addr = sect_addr;
    584      1.1  christos 
    585      1.1  christos   return buf;
    586      1.1  christos }
    587      1.1  christos 
    588      1.1  christos 
    589      1.1  christos /* Return program interpreter string.  */
    590      1.1  christos static char *
    591      1.1  christos find_program_interpreter (void)
    592      1.1  christos {
    593      1.1  christos   gdb_byte *buf = NULL;
    594      1.1  christos 
    595      1.1  christos   /* If we have an exec_bfd, use its section table.  */
    596      1.1  christos   if (exec_bfd
    597      1.1  christos       && bfd_get_flavour (exec_bfd) == bfd_target_elf_flavour)
    598      1.1  christos    {
    599      1.1  christos      struct bfd_section *interp_sect;
    600      1.1  christos 
    601      1.1  christos      interp_sect = bfd_get_section_by_name (exec_bfd, ".interp");
    602      1.1  christos      if (interp_sect != NULL)
    603      1.1  christos       {
    604      1.1  christos 	int sect_size = bfd_section_size (exec_bfd, interp_sect);
    605      1.1  christos 
    606  1.1.1.4  christos 	buf = (gdb_byte *) xmalloc (sect_size);
    607      1.1  christos 	bfd_get_section_contents (exec_bfd, interp_sect, buf, 0, sect_size);
    608      1.1  christos       }
    609      1.1  christos    }
    610      1.1  christos 
    611      1.1  christos   /* If we didn't find it, use the target auxillary vector.  */
    612      1.1  christos   if (!buf)
    613  1.1.1.4  christos     buf = read_program_header (PT_INTERP, NULL, NULL, NULL);
    614      1.1  christos 
    615      1.1  christos   return (char *) buf;
    616      1.1  christos }
    617      1.1  christos 
    618      1.1  christos 
    619  1.1.1.2  christos /* Scan for DESIRED_DYNTAG in .dynamic section of ABFD.  If DESIRED_DYNTAG is
    620  1.1.1.2  christos    found, 1 is returned and the corresponding PTR is set.  */
    621      1.1  christos 
    622      1.1  christos static int
    623  1.1.1.4  christos scan_dyntag (const int desired_dyntag, bfd *abfd, CORE_ADDR *ptr,
    624  1.1.1.4  christos 	     CORE_ADDR *ptr_addr)
    625      1.1  christos {
    626      1.1  christos   int arch_size, step, sect_size;
    627  1.1.1.2  christos   long current_dyntag;
    628      1.1  christos   CORE_ADDR dyn_ptr, dyn_addr;
    629      1.1  christos   gdb_byte *bufend, *bufstart, *buf;
    630      1.1  christos   Elf32_External_Dyn *x_dynp_32;
    631      1.1  christos   Elf64_External_Dyn *x_dynp_64;
    632      1.1  christos   struct bfd_section *sect;
    633      1.1  christos   struct target_section *target_section;
    634      1.1  christos 
    635      1.1  christos   if (abfd == NULL)
    636      1.1  christos     return 0;
    637      1.1  christos 
    638      1.1  christos   if (bfd_get_flavour (abfd) != bfd_target_elf_flavour)
    639      1.1  christos     return 0;
    640      1.1  christos 
    641      1.1  christos   arch_size = bfd_get_arch_size (abfd);
    642      1.1  christos   if (arch_size == -1)
    643      1.1  christos     return 0;
    644      1.1  christos 
    645      1.1  christos   /* Find the start address of the .dynamic section.  */
    646      1.1  christos   sect = bfd_get_section_by_name (abfd, ".dynamic");
    647      1.1  christos   if (sect == NULL)
    648      1.1  christos     return 0;
    649      1.1  christos 
    650      1.1  christos   for (target_section = current_target_sections->sections;
    651      1.1  christos        target_section < current_target_sections->sections_end;
    652      1.1  christos        target_section++)
    653      1.1  christos     if (sect == target_section->the_bfd_section)
    654      1.1  christos       break;
    655      1.1  christos   if (target_section < current_target_sections->sections_end)
    656      1.1  christos     dyn_addr = target_section->addr;
    657      1.1  christos   else
    658      1.1  christos     {
    659      1.1  christos       /* ABFD may come from OBJFILE acting only as a symbol file without being
    660      1.1  christos 	 loaded into the target (see add_symbol_file_command).  This case is
    661      1.1  christos 	 such fallback to the file VMA address without the possibility of
    662      1.1  christos 	 having the section relocated to its actual in-memory address.  */
    663      1.1  christos 
    664      1.1  christos       dyn_addr = bfd_section_vma (abfd, sect);
    665      1.1  christos     }
    666      1.1  christos 
    667      1.1  christos   /* Read in .dynamic from the BFD.  We will get the actual value
    668      1.1  christos      from memory later.  */
    669      1.1  christos   sect_size = bfd_section_size (abfd, sect);
    670  1.1.1.4  christos   buf = bufstart = (gdb_byte *) alloca (sect_size);
    671      1.1  christos   if (!bfd_get_section_contents (abfd, sect,
    672      1.1  christos 				 buf, 0, sect_size))
    673      1.1  christos     return 0;
    674      1.1  christos 
    675      1.1  christos   /* Iterate over BUF and scan for DYNTAG.  If found, set PTR and return.  */
    676      1.1  christos   step = (arch_size == 32) ? sizeof (Elf32_External_Dyn)
    677      1.1  christos 			   : sizeof (Elf64_External_Dyn);
    678      1.1  christos   for (bufend = buf + sect_size;
    679      1.1  christos        buf < bufend;
    680      1.1  christos        buf += step)
    681      1.1  christos   {
    682      1.1  christos     if (arch_size == 32)
    683      1.1  christos       {
    684      1.1  christos 	x_dynp_32 = (Elf32_External_Dyn *) buf;
    685  1.1.1.2  christos 	current_dyntag = bfd_h_get_32 (abfd, (bfd_byte *) x_dynp_32->d_tag);
    686      1.1  christos 	dyn_ptr = bfd_h_get_32 (abfd, (bfd_byte *) x_dynp_32->d_un.d_ptr);
    687      1.1  christos       }
    688      1.1  christos     else
    689      1.1  christos       {
    690      1.1  christos 	x_dynp_64 = (Elf64_External_Dyn *) buf;
    691  1.1.1.2  christos 	current_dyntag = bfd_h_get_64 (abfd, (bfd_byte *) x_dynp_64->d_tag);
    692      1.1  christos 	dyn_ptr = bfd_h_get_64 (abfd, (bfd_byte *) x_dynp_64->d_un.d_ptr);
    693      1.1  christos       }
    694  1.1.1.2  christos      if (current_dyntag == DT_NULL)
    695      1.1  christos        return 0;
    696  1.1.1.2  christos      if (current_dyntag == desired_dyntag)
    697      1.1  christos        {
    698      1.1  christos 	 /* If requested, try to read the runtime value of this .dynamic
    699      1.1  christos 	    entry.  */
    700      1.1  christos 	 if (ptr)
    701      1.1  christos 	   {
    702      1.1  christos 	     struct type *ptr_type;
    703      1.1  christos 	     gdb_byte ptr_buf[8];
    704  1.1.1.4  christos 	     CORE_ADDR ptr_addr_1;
    705      1.1  christos 
    706      1.1  christos 	     ptr_type = builtin_type (target_gdbarch ())->builtin_data_ptr;
    707  1.1.1.4  christos 	     ptr_addr_1 = dyn_addr + (buf - bufstart) + arch_size / 8;
    708  1.1.1.4  christos 	     if (target_read_memory (ptr_addr_1, ptr_buf, arch_size / 8) == 0)
    709      1.1  christos 	       dyn_ptr = extract_typed_address (ptr_buf, ptr_type);
    710      1.1  christos 	     *ptr = dyn_ptr;
    711  1.1.1.4  christos 	     if (ptr_addr)
    712  1.1.1.4  christos 	       *ptr_addr = dyn_addr + (buf - bufstart);
    713      1.1  christos 	   }
    714      1.1  christos 	 return 1;
    715      1.1  christos        }
    716      1.1  christos   }
    717      1.1  christos 
    718      1.1  christos   return 0;
    719      1.1  christos }
    720      1.1  christos 
    721  1.1.1.2  christos /* Scan for DESIRED_DYNTAG in .dynamic section of the target's main executable,
    722  1.1.1.2  christos    found by consulting the OS auxillary vector.  If DESIRED_DYNTAG is found, 1
    723  1.1.1.2  christos    is returned and the corresponding PTR is set.  */
    724      1.1  christos 
    725      1.1  christos static int
    726  1.1.1.4  christos scan_dyntag_auxv (const int desired_dyntag, CORE_ADDR *ptr,
    727  1.1.1.4  christos 		  CORE_ADDR *ptr_addr)
    728      1.1  christos {
    729      1.1  christos   enum bfd_endian byte_order = gdbarch_byte_order (target_gdbarch ());
    730      1.1  christos   int sect_size, arch_size, step;
    731  1.1.1.2  christos   long current_dyntag;
    732      1.1  christos   CORE_ADDR dyn_ptr;
    733  1.1.1.4  christos   CORE_ADDR base_addr;
    734      1.1  christos   gdb_byte *bufend, *bufstart, *buf;
    735      1.1  christos 
    736      1.1  christos   /* Read in .dynamic section.  */
    737  1.1.1.4  christos   buf = bufstart = read_program_header (PT_DYNAMIC, &sect_size, &arch_size,
    738  1.1.1.4  christos 					&base_addr);
    739      1.1  christos   if (!buf)
    740      1.1  christos     return 0;
    741      1.1  christos 
    742      1.1  christos   /* Iterate over BUF and scan for DYNTAG.  If found, set PTR and return.  */
    743      1.1  christos   step = (arch_size == 32) ? sizeof (Elf32_External_Dyn)
    744      1.1  christos 			   : sizeof (Elf64_External_Dyn);
    745      1.1  christos   for (bufend = buf + sect_size;
    746      1.1  christos        buf < bufend;
    747      1.1  christos        buf += step)
    748      1.1  christos   {
    749      1.1  christos     if (arch_size == 32)
    750      1.1  christos       {
    751      1.1  christos 	Elf32_External_Dyn *dynp = (Elf32_External_Dyn *) buf;
    752      1.1  christos 
    753  1.1.1.2  christos 	current_dyntag = extract_unsigned_integer ((gdb_byte *) dynp->d_tag,
    754      1.1  christos 					    4, byte_order);
    755      1.1  christos 	dyn_ptr = extract_unsigned_integer ((gdb_byte *) dynp->d_un.d_ptr,
    756      1.1  christos 					    4, byte_order);
    757      1.1  christos       }
    758      1.1  christos     else
    759      1.1  christos       {
    760      1.1  christos 	Elf64_External_Dyn *dynp = (Elf64_External_Dyn *) buf;
    761      1.1  christos 
    762  1.1.1.2  christos 	current_dyntag = extract_unsigned_integer ((gdb_byte *) dynp->d_tag,
    763      1.1  christos 					    8, byte_order);
    764      1.1  christos 	dyn_ptr = extract_unsigned_integer ((gdb_byte *) dynp->d_un.d_ptr,
    765      1.1  christos 					    8, byte_order);
    766      1.1  christos       }
    767  1.1.1.2  christos     if (current_dyntag == DT_NULL)
    768      1.1  christos       break;
    769      1.1  christos 
    770  1.1.1.2  christos     if (current_dyntag == desired_dyntag)
    771      1.1  christos       {
    772      1.1  christos 	if (ptr)
    773      1.1  christos 	  *ptr = dyn_ptr;
    774      1.1  christos 
    775  1.1.1.4  christos 	if (ptr_addr)
    776  1.1.1.4  christos 	  *ptr_addr = base_addr + buf - bufstart;
    777  1.1.1.4  christos 
    778      1.1  christos 	xfree (bufstart);
    779      1.1  christos 	return 1;
    780      1.1  christos       }
    781      1.1  christos   }
    782      1.1  christos 
    783      1.1  christos   xfree (bufstart);
    784      1.1  christos   return 0;
    785      1.1  christos }
    786      1.1  christos 
    787      1.1  christos /* Locate the base address of dynamic linker structs for SVR4 elf
    788      1.1  christos    targets.
    789      1.1  christos 
    790      1.1  christos    For SVR4 elf targets the address of the dynamic linker's runtime
    791      1.1  christos    structure is contained within the dynamic info section in the
    792      1.1  christos    executable file.  The dynamic section is also mapped into the
    793      1.1  christos    inferior address space.  Because the runtime loader fills in the
    794      1.1  christos    real address before starting the inferior, we have to read in the
    795      1.1  christos    dynamic info section from the inferior address space.
    796      1.1  christos    If there are any errors while trying to find the address, we
    797      1.1  christos    silently return 0, otherwise the found address is returned.  */
    798      1.1  christos 
    799      1.1  christos static CORE_ADDR
    800      1.1  christos elf_locate_base (void)
    801      1.1  christos {
    802  1.1.1.2  christos   struct bound_minimal_symbol msymbol;
    803  1.1.1.4  christos   CORE_ADDR dyn_ptr, dyn_ptr_addr;
    804      1.1  christos 
    805      1.1  christos   /* Look for DT_MIPS_RLD_MAP first.  MIPS executables use this
    806      1.1  christos      instead of DT_DEBUG, although they sometimes contain an unused
    807      1.1  christos      DT_DEBUG.  */
    808  1.1.1.4  christos   if (scan_dyntag (DT_MIPS_RLD_MAP, exec_bfd, &dyn_ptr, NULL)
    809  1.1.1.4  christos       || scan_dyntag_auxv (DT_MIPS_RLD_MAP, &dyn_ptr, NULL))
    810      1.1  christos     {
    811      1.1  christos       struct type *ptr_type = builtin_type (target_gdbarch ())->builtin_data_ptr;
    812      1.1  christos       gdb_byte *pbuf;
    813      1.1  christos       int pbuf_size = TYPE_LENGTH (ptr_type);
    814      1.1  christos 
    815  1.1.1.4  christos       pbuf = (gdb_byte *) alloca (pbuf_size);
    816      1.1  christos       /* DT_MIPS_RLD_MAP contains a pointer to the address
    817      1.1  christos 	 of the dynamic link structure.  */
    818      1.1  christos       if (target_read_memory (dyn_ptr, pbuf, pbuf_size))
    819      1.1  christos 	return 0;
    820      1.1  christos       return extract_typed_address (pbuf, ptr_type);
    821      1.1  christos     }
    822      1.1  christos 
    823  1.1.1.4  christos   /* Then check DT_MIPS_RLD_MAP_REL.  MIPS executables now use this form
    824  1.1.1.4  christos      because of needing to support PIE.  DT_MIPS_RLD_MAP will also exist
    825  1.1.1.4  christos      in non-PIE.  */
    826  1.1.1.4  christos   if (scan_dyntag (DT_MIPS_RLD_MAP_REL, exec_bfd, &dyn_ptr, &dyn_ptr_addr)
    827  1.1.1.4  christos       || scan_dyntag_auxv (DT_MIPS_RLD_MAP_REL, &dyn_ptr, &dyn_ptr_addr))
    828  1.1.1.4  christos     {
    829  1.1.1.4  christos       struct type *ptr_type = builtin_type (target_gdbarch ())->builtin_data_ptr;
    830  1.1.1.4  christos       gdb_byte *pbuf;
    831  1.1.1.4  christos       int pbuf_size = TYPE_LENGTH (ptr_type);
    832  1.1.1.4  christos 
    833  1.1.1.4  christos       pbuf = (gdb_byte *) alloca (pbuf_size);
    834  1.1.1.4  christos       /* DT_MIPS_RLD_MAP_REL contains an offset from the address of the
    835  1.1.1.4  christos 	 DT slot to the address of the dynamic link structure.  */
    836  1.1.1.4  christos       if (target_read_memory (dyn_ptr + dyn_ptr_addr, pbuf, pbuf_size))
    837  1.1.1.4  christos 	return 0;
    838  1.1.1.4  christos       return extract_typed_address (pbuf, ptr_type);
    839  1.1.1.4  christos     }
    840  1.1.1.4  christos 
    841      1.1  christos   /* Find DT_DEBUG.  */
    842  1.1.1.4  christos   if (scan_dyntag (DT_DEBUG, exec_bfd, &dyn_ptr, NULL)
    843  1.1.1.4  christos       || scan_dyntag_auxv (DT_DEBUG, &dyn_ptr, NULL))
    844      1.1  christos     return dyn_ptr;
    845      1.1  christos 
    846      1.1  christos   /* This may be a static executable.  Look for the symbol
    847      1.1  christos      conventionally named _r_debug, as a last resort.  */
    848      1.1  christos   msymbol = lookup_minimal_symbol ("_r_debug", NULL, symfile_objfile);
    849  1.1.1.2  christos   if (msymbol.minsym != NULL)
    850  1.1.1.2  christos     return BMSYMBOL_VALUE_ADDRESS (msymbol);
    851      1.1  christos 
    852      1.1  christos   /* DT_DEBUG entry not found.  */
    853      1.1  christos   return 0;
    854      1.1  christos }
    855      1.1  christos 
    856      1.1  christos /* Locate the base address of dynamic linker structs.
    857      1.1  christos 
    858      1.1  christos    For both the SunOS and SVR4 shared library implementations, if the
    859      1.1  christos    inferior executable has been linked dynamically, there is a single
    860      1.1  christos    address somewhere in the inferior's data space which is the key to
    861      1.1  christos    locating all of the dynamic linker's runtime structures.  This
    862      1.1  christos    address is the value of the debug base symbol.  The job of this
    863      1.1  christos    function is to find and return that address, or to return 0 if there
    864      1.1  christos    is no such address (the executable is statically linked for example).
    865      1.1  christos 
    866      1.1  christos    For SunOS, the job is almost trivial, since the dynamic linker and
    867      1.1  christos    all of it's structures are statically linked to the executable at
    868      1.1  christos    link time.  Thus the symbol for the address we are looking for has
    869      1.1  christos    already been added to the minimal symbol table for the executable's
    870      1.1  christos    objfile at the time the symbol file's symbols were read, and all we
    871      1.1  christos    have to do is look it up there.  Note that we explicitly do NOT want
    872      1.1  christos    to find the copies in the shared library.
    873      1.1  christos 
    874      1.1  christos    The SVR4 version is a bit more complicated because the address
    875      1.1  christos    is contained somewhere in the dynamic info section.  We have to go
    876      1.1  christos    to a lot more work to discover the address of the debug base symbol.
    877      1.1  christos    Because of this complexity, we cache the value we find and return that
    878      1.1  christos    value on subsequent invocations.  Note there is no copy in the
    879      1.1  christos    executable symbol tables.  */
    880      1.1  christos 
    881      1.1  christos static CORE_ADDR
    882      1.1  christos locate_base (struct svr4_info *info)
    883      1.1  christos {
    884      1.1  christos   /* Check to see if we have a currently valid address, and if so, avoid
    885      1.1  christos      doing all this work again and just return the cached address.  If
    886      1.1  christos      we have no cached address, try to locate it in the dynamic info
    887      1.1  christos      section for ELF executables.  There's no point in doing any of this
    888      1.1  christos      though if we don't have some link map offsets to work with.  */
    889      1.1  christos 
    890      1.1  christos   if (info->debug_base == 0 && svr4_have_link_map_offsets ())
    891      1.1  christos     info->debug_base = elf_locate_base ();
    892      1.1  christos   return info->debug_base;
    893      1.1  christos }
    894      1.1  christos 
    895      1.1  christos /* Find the first element in the inferior's dynamic link map, and
    896      1.1  christos    return its address in the inferior.  Return zero if the address
    897      1.1  christos    could not be determined.
    898      1.1  christos 
    899      1.1  christos    FIXME: Perhaps we should validate the info somehow, perhaps by
    900      1.1  christos    checking r_version for a known version number, or r_state for
    901      1.1  christos    RT_CONSISTENT.  */
    902      1.1  christos 
    903      1.1  christos static CORE_ADDR
    904      1.1  christos solib_svr4_r_map (struct svr4_info *info)
    905      1.1  christos {
    906      1.1  christos   struct link_map_offsets *lmo = svr4_fetch_link_map_offsets ();
    907      1.1  christos   struct type *ptr_type = builtin_type (target_gdbarch ())->builtin_data_ptr;
    908      1.1  christos   CORE_ADDR addr = 0;
    909      1.1  christos 
    910  1.1.1.3  christos   TRY
    911      1.1  christos     {
    912      1.1  christos       addr = read_memory_typed_address (info->debug_base + lmo->r_map_offset,
    913      1.1  christos                                         ptr_type);
    914      1.1  christos     }
    915  1.1.1.3  christos   CATCH (ex, RETURN_MASK_ERROR)
    916  1.1.1.3  christos     {
    917  1.1.1.3  christos       exception_print (gdb_stderr, ex);
    918  1.1.1.3  christos     }
    919  1.1.1.3  christos   END_CATCH
    920  1.1.1.3  christos 
    921      1.1  christos   return addr;
    922      1.1  christos }
    923      1.1  christos 
    924      1.1  christos /* Find r_brk from the inferior's debug base.  */
    925      1.1  christos 
    926      1.1  christos static CORE_ADDR
    927      1.1  christos solib_svr4_r_brk (struct svr4_info *info)
    928      1.1  christos {
    929      1.1  christos   struct link_map_offsets *lmo = svr4_fetch_link_map_offsets ();
    930      1.1  christos   struct type *ptr_type = builtin_type (target_gdbarch ())->builtin_data_ptr;
    931      1.1  christos 
    932      1.1  christos   return read_memory_typed_address (info->debug_base + lmo->r_brk_offset,
    933      1.1  christos 				    ptr_type);
    934      1.1  christos }
    935      1.1  christos 
    936      1.1  christos /* Find the link map for the dynamic linker (if it is not in the
    937      1.1  christos    normal list of loaded shared objects).  */
    938      1.1  christos 
    939      1.1  christos static CORE_ADDR
    940      1.1  christos solib_svr4_r_ldsomap (struct svr4_info *info)
    941      1.1  christos {
    942      1.1  christos   struct link_map_offsets *lmo = svr4_fetch_link_map_offsets ();
    943      1.1  christos   struct type *ptr_type = builtin_type (target_gdbarch ())->builtin_data_ptr;
    944      1.1  christos   enum bfd_endian byte_order = gdbarch_byte_order (target_gdbarch ());
    945  1.1.1.3  christos   ULONGEST version = 0;
    946  1.1.1.3  christos 
    947  1.1.1.3  christos   TRY
    948  1.1.1.3  christos     {
    949  1.1.1.3  christos       /* Check version, and return zero if `struct r_debug' doesn't have
    950  1.1.1.3  christos 	 the r_ldsomap member.  */
    951  1.1.1.3  christos       version
    952  1.1.1.3  christos 	= read_memory_unsigned_integer (info->debug_base + lmo->r_version_offset,
    953  1.1.1.3  christos 					lmo->r_version_size, byte_order);
    954  1.1.1.3  christos     }
    955  1.1.1.3  christos   CATCH (ex, RETURN_MASK_ERROR)
    956  1.1.1.3  christos     {
    957  1.1.1.3  christos       exception_print (gdb_stderr, ex);
    958  1.1.1.3  christos     }
    959  1.1.1.3  christos   END_CATCH
    960      1.1  christos 
    961      1.1  christos   if (version < 2 || lmo->r_ldsomap_offset == -1)
    962      1.1  christos     return 0;
    963      1.1  christos 
    964      1.1  christos   return read_memory_typed_address (info->debug_base + lmo->r_ldsomap_offset,
    965      1.1  christos 				    ptr_type);
    966      1.1  christos }
    967      1.1  christos 
    968      1.1  christos /* On Solaris systems with some versions of the dynamic linker,
    969      1.1  christos    ld.so's l_name pointer points to the SONAME in the string table
    970      1.1  christos    rather than into writable memory.  So that GDB can find shared
    971      1.1  christos    libraries when loading a core file generated by gcore, ensure that
    972      1.1  christos    memory areas containing the l_name string are saved in the core
    973      1.1  christos    file.  */
    974      1.1  christos 
    975      1.1  christos static int
    976      1.1  christos svr4_keep_data_in_core (CORE_ADDR vaddr, unsigned long size)
    977      1.1  christos {
    978      1.1  christos   struct svr4_info *info;
    979      1.1  christos   CORE_ADDR ldsomap;
    980  1.1.1.3  christos   struct so_list *newobj;
    981      1.1  christos   struct cleanup *old_chain;
    982      1.1  christos   CORE_ADDR name_lm;
    983      1.1  christos 
    984      1.1  christos   info = get_svr4_info ();
    985      1.1  christos 
    986      1.1  christos   info->debug_base = 0;
    987      1.1  christos   locate_base (info);
    988      1.1  christos   if (!info->debug_base)
    989      1.1  christos     return 0;
    990      1.1  christos 
    991      1.1  christos   ldsomap = solib_svr4_r_ldsomap (info);
    992      1.1  christos   if (!ldsomap)
    993      1.1  christos     return 0;
    994      1.1  christos 
    995  1.1.1.3  christos   newobj = XCNEW (struct so_list);
    996  1.1.1.3  christos   old_chain = make_cleanup (xfree, newobj);
    997  1.1.1.3  christos   newobj->lm_info = lm_info_read (ldsomap);
    998  1.1.1.3  christos   make_cleanup (xfree, newobj->lm_info);
    999  1.1.1.3  christos   name_lm = newobj->lm_info ? newobj->lm_info->l_name : 0;
   1000      1.1  christos   do_cleanups (old_chain);
   1001      1.1  christos 
   1002      1.1  christos   return (name_lm >= vaddr && name_lm < vaddr + size);
   1003      1.1  christos }
   1004      1.1  christos 
   1005      1.1  christos /* Implement the "open_symbol_file_object" target_so_ops method.
   1006      1.1  christos 
   1007      1.1  christos    If no open symbol file, attempt to locate and open the main symbol
   1008      1.1  christos    file.  On SVR4 systems, this is the first link map entry.  If its
   1009      1.1  christos    name is here, we can open it.  Useful when attaching to a process
   1010      1.1  christos    without first loading its symbol file.  */
   1011      1.1  christos 
   1012      1.1  christos static int
   1013      1.1  christos open_symbol_file_object (void *from_ttyp)
   1014      1.1  christos {
   1015      1.1  christos   CORE_ADDR lm, l_name;
   1016      1.1  christos   char *filename;
   1017      1.1  christos   int errcode;
   1018      1.1  christos   int from_tty = *(int *)from_ttyp;
   1019      1.1  christos   struct link_map_offsets *lmo = svr4_fetch_link_map_offsets ();
   1020      1.1  christos   struct type *ptr_type = builtin_type (target_gdbarch ())->builtin_data_ptr;
   1021      1.1  christos   int l_name_size = TYPE_LENGTH (ptr_type);
   1022  1.1.1.4  christos   gdb_byte *l_name_buf = (gdb_byte *) xmalloc (l_name_size);
   1023      1.1  christos   struct cleanup *cleanups = make_cleanup (xfree, l_name_buf);
   1024      1.1  christos   struct svr4_info *info = get_svr4_info ();
   1025  1.1.1.5  christos   symfile_add_flags add_flags = 0;
   1026  1.1.1.5  christos 
   1027  1.1.1.5  christos   if (from_tty)
   1028  1.1.1.5  christos     add_flags |= SYMFILE_VERBOSE;
   1029      1.1  christos 
   1030      1.1  christos   if (symfile_objfile)
   1031      1.1  christos     if (!query (_("Attempt to reload symbols from process? ")))
   1032      1.1  christos       {
   1033      1.1  christos 	do_cleanups (cleanups);
   1034      1.1  christos 	return 0;
   1035      1.1  christos       }
   1036      1.1  christos 
   1037      1.1  christos   /* Always locate the debug struct, in case it has moved.  */
   1038      1.1  christos   info->debug_base = 0;
   1039      1.1  christos   if (locate_base (info) == 0)
   1040      1.1  christos     {
   1041      1.1  christos       do_cleanups (cleanups);
   1042      1.1  christos       return 0;	/* failed somehow...  */
   1043      1.1  christos     }
   1044      1.1  christos 
   1045      1.1  christos   /* First link map member should be the executable.  */
   1046      1.1  christos   lm = solib_svr4_r_map (info);
   1047      1.1  christos   if (lm == 0)
   1048      1.1  christos     {
   1049      1.1  christos       do_cleanups (cleanups);
   1050      1.1  christos       return 0;	/* failed somehow...  */
   1051      1.1  christos     }
   1052      1.1  christos 
   1053      1.1  christos   /* Read address of name from target memory to GDB.  */
   1054      1.1  christos   read_memory (lm + lmo->l_name_offset, l_name_buf, l_name_size);
   1055      1.1  christos 
   1056      1.1  christos   /* Convert the address to host format.  */
   1057      1.1  christos   l_name = extract_typed_address (l_name_buf, ptr_type);
   1058      1.1  christos 
   1059      1.1  christos   if (l_name == 0)
   1060      1.1  christos     {
   1061      1.1  christos       do_cleanups (cleanups);
   1062      1.1  christos       return 0;		/* No filename.  */
   1063      1.1  christos     }
   1064      1.1  christos 
   1065      1.1  christos   /* Now fetch the filename from target memory.  */
   1066      1.1  christos   target_read_string (l_name, &filename, SO_NAME_MAX_PATH_SIZE - 1, &errcode);
   1067      1.1  christos   make_cleanup (xfree, filename);
   1068      1.1  christos 
   1069      1.1  christos   if (errcode)
   1070      1.1  christos     {
   1071      1.1  christos       warning (_("failed to read exec filename from attached file: %s"),
   1072      1.1  christos 	       safe_strerror (errcode));
   1073      1.1  christos       do_cleanups (cleanups);
   1074      1.1  christos       return 0;
   1075      1.1  christos     }
   1076      1.1  christos 
   1077      1.1  christos   /* Have a pathname: read the symbol file.  */
   1078  1.1.1.5  christos   symbol_file_add_main (filename, add_flags);
   1079      1.1  christos 
   1080      1.1  christos   do_cleanups (cleanups);
   1081      1.1  christos   return 1;
   1082      1.1  christos }
   1083      1.1  christos 
   1084      1.1  christos /* Data exchange structure for the XML parser as returned by
   1085      1.1  christos    svr4_current_sos_via_xfer_libraries.  */
   1086      1.1  christos 
   1087      1.1  christos struct svr4_library_list
   1088      1.1  christos {
   1089      1.1  christos   struct so_list *head, **tailp;
   1090      1.1  christos 
   1091      1.1  christos   /* Inferior address of struct link_map used for the main executable.  It is
   1092      1.1  christos      NULL if not known.  */
   1093      1.1  christos   CORE_ADDR main_lm;
   1094      1.1  christos };
   1095      1.1  christos 
   1096      1.1  christos /* Implementation for target_so_ops.free_so.  */
   1097      1.1  christos 
   1098      1.1  christos static void
   1099      1.1  christos svr4_free_so (struct so_list *so)
   1100      1.1  christos {
   1101      1.1  christos   xfree (so->lm_info);
   1102      1.1  christos }
   1103      1.1  christos 
   1104      1.1  christos /* Implement target_so_ops.clear_so.  */
   1105      1.1  christos 
   1106      1.1  christos static void
   1107      1.1  christos svr4_clear_so (struct so_list *so)
   1108      1.1  christos {
   1109      1.1  christos   if (so->lm_info != NULL)
   1110      1.1  christos     so->lm_info->l_addr_p = 0;
   1111      1.1  christos }
   1112      1.1  christos 
   1113      1.1  christos /* Free so_list built so far (called via cleanup).  */
   1114      1.1  christos 
   1115      1.1  christos static void
   1116      1.1  christos svr4_free_library_list (void *p_list)
   1117      1.1  christos {
   1118      1.1  christos   struct so_list *list = *(struct so_list **) p_list;
   1119      1.1  christos 
   1120      1.1  christos   while (list != NULL)
   1121      1.1  christos     {
   1122      1.1  christos       struct so_list *next = list->next;
   1123      1.1  christos 
   1124      1.1  christos       free_so (list);
   1125      1.1  christos       list = next;
   1126      1.1  christos     }
   1127      1.1  christos }
   1128      1.1  christos 
   1129      1.1  christos /* Copy library list.  */
   1130      1.1  christos 
   1131      1.1  christos static struct so_list *
   1132      1.1  christos svr4_copy_library_list (struct so_list *src)
   1133      1.1  christos {
   1134      1.1  christos   struct so_list *dst = NULL;
   1135      1.1  christos   struct so_list **link = &dst;
   1136      1.1  christos 
   1137      1.1  christos   while (src != NULL)
   1138      1.1  christos     {
   1139  1.1.1.3  christos       struct so_list *newobj;
   1140      1.1  christos 
   1141  1.1.1.4  christos       newobj = XNEW (struct so_list);
   1142  1.1.1.3  christos       memcpy (newobj, src, sizeof (struct so_list));
   1143      1.1  christos 
   1144  1.1.1.4  christos       newobj->lm_info = XNEW (struct lm_info);
   1145  1.1.1.3  christos       memcpy (newobj->lm_info, src->lm_info, sizeof (struct lm_info));
   1146      1.1  christos 
   1147  1.1.1.3  christos       newobj->next = NULL;
   1148  1.1.1.3  christos       *link = newobj;
   1149  1.1.1.3  christos       link = &newobj->next;
   1150      1.1  christos 
   1151      1.1  christos       src = src->next;
   1152      1.1  christos     }
   1153      1.1  christos 
   1154      1.1  christos   return dst;
   1155      1.1  christos }
   1156      1.1  christos 
   1157      1.1  christos #ifdef HAVE_LIBEXPAT
   1158      1.1  christos 
   1159      1.1  christos #include "xml-support.h"
   1160      1.1  christos 
   1161      1.1  christos /* Handle the start of a <library> element.  Note: new elements are added
   1162      1.1  christos    at the tail of the list, keeping the list in order.  */
   1163      1.1  christos 
   1164      1.1  christos static void
   1165      1.1  christos library_list_start_library (struct gdb_xml_parser *parser,
   1166      1.1  christos 			    const struct gdb_xml_element *element,
   1167      1.1  christos 			    void *user_data, VEC(gdb_xml_value_s) *attributes)
   1168      1.1  christos {
   1169  1.1.1.4  christos   struct svr4_library_list *list = (struct svr4_library_list *) user_data;
   1170  1.1.1.4  christos   const char *name
   1171  1.1.1.4  christos     = (const char *) xml_find_attribute (attributes, "name")->value;
   1172  1.1.1.4  christos   ULONGEST *lmp
   1173  1.1.1.4  christos     = (ULONGEST *) xml_find_attribute (attributes, "lm")->value;
   1174  1.1.1.4  christos   ULONGEST *l_addrp
   1175  1.1.1.4  christos     = (ULONGEST *) xml_find_attribute (attributes, "l_addr")->value;
   1176  1.1.1.4  christos   ULONGEST *l_ldp
   1177  1.1.1.4  christos     = (ULONGEST *) xml_find_attribute (attributes, "l_ld")->value;
   1178      1.1  christos   struct so_list *new_elem;
   1179      1.1  christos 
   1180  1.1.1.2  christos   new_elem = XCNEW (struct so_list);
   1181  1.1.1.2  christos   new_elem->lm_info = XCNEW (struct lm_info);
   1182      1.1  christos   new_elem->lm_info->lm_addr = *lmp;
   1183      1.1  christos   new_elem->lm_info->l_addr_inferior = *l_addrp;
   1184      1.1  christos   new_elem->lm_info->l_ld = *l_ldp;
   1185      1.1  christos 
   1186      1.1  christos   strncpy (new_elem->so_name, name, sizeof (new_elem->so_name) - 1);
   1187      1.1  christos   new_elem->so_name[sizeof (new_elem->so_name) - 1] = 0;
   1188      1.1  christos   strcpy (new_elem->so_original_name, new_elem->so_name);
   1189      1.1  christos 
   1190      1.1  christos   *list->tailp = new_elem;
   1191      1.1  christos   list->tailp = &new_elem->next;
   1192      1.1  christos }
   1193      1.1  christos 
   1194      1.1  christos /* Handle the start of a <library-list-svr4> element.  */
   1195      1.1  christos 
   1196      1.1  christos static void
   1197      1.1  christos svr4_library_list_start_list (struct gdb_xml_parser *parser,
   1198      1.1  christos 			      const struct gdb_xml_element *element,
   1199      1.1  christos 			      void *user_data, VEC(gdb_xml_value_s) *attributes)
   1200      1.1  christos {
   1201  1.1.1.4  christos   struct svr4_library_list *list = (struct svr4_library_list *) user_data;
   1202  1.1.1.4  christos   const char *version
   1203  1.1.1.4  christos     = (const char *) xml_find_attribute (attributes, "version")->value;
   1204      1.1  christos   struct gdb_xml_value *main_lm = xml_find_attribute (attributes, "main-lm");
   1205      1.1  christos 
   1206      1.1  christos   if (strcmp (version, "1.0") != 0)
   1207      1.1  christos     gdb_xml_error (parser,
   1208      1.1  christos 		   _("SVR4 Library list has unsupported version \"%s\""),
   1209      1.1  christos 		   version);
   1210      1.1  christos 
   1211      1.1  christos   if (main_lm)
   1212      1.1  christos     list->main_lm = *(ULONGEST *) main_lm->value;
   1213      1.1  christos }
   1214      1.1  christos 
   1215      1.1  christos /* The allowed elements and attributes for an XML library list.
   1216      1.1  christos    The root element is a <library-list>.  */
   1217      1.1  christos 
   1218      1.1  christos static const struct gdb_xml_attribute svr4_library_attributes[] =
   1219      1.1  christos {
   1220      1.1  christos   { "name", GDB_XML_AF_NONE, NULL, NULL },
   1221      1.1  christos   { "lm", GDB_XML_AF_NONE, gdb_xml_parse_attr_ulongest, NULL },
   1222      1.1  christos   { "l_addr", GDB_XML_AF_NONE, gdb_xml_parse_attr_ulongest, NULL },
   1223      1.1  christos   { "l_ld", GDB_XML_AF_NONE, gdb_xml_parse_attr_ulongest, NULL },
   1224      1.1  christos   { NULL, GDB_XML_AF_NONE, NULL, NULL }
   1225      1.1  christos };
   1226      1.1  christos 
   1227      1.1  christos static const struct gdb_xml_element svr4_library_list_children[] =
   1228      1.1  christos {
   1229      1.1  christos   {
   1230      1.1  christos     "library", svr4_library_attributes, NULL,
   1231      1.1  christos     GDB_XML_EF_REPEATABLE | GDB_XML_EF_OPTIONAL,
   1232      1.1  christos     library_list_start_library, NULL
   1233      1.1  christos   },
   1234      1.1  christos   { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
   1235      1.1  christos };
   1236      1.1  christos 
   1237      1.1  christos static const struct gdb_xml_attribute svr4_library_list_attributes[] =
   1238      1.1  christos {
   1239      1.1  christos   { "version", GDB_XML_AF_NONE, NULL, NULL },
   1240      1.1  christos   { "main-lm", GDB_XML_AF_OPTIONAL, gdb_xml_parse_attr_ulongest, NULL },
   1241      1.1  christos   { NULL, GDB_XML_AF_NONE, NULL, NULL }
   1242      1.1  christos };
   1243      1.1  christos 
   1244      1.1  christos static const struct gdb_xml_element svr4_library_list_elements[] =
   1245      1.1  christos {
   1246      1.1  christos   { "library-list-svr4", svr4_library_list_attributes, svr4_library_list_children,
   1247      1.1  christos     GDB_XML_EF_NONE, svr4_library_list_start_list, NULL },
   1248      1.1  christos   { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
   1249      1.1  christos };
   1250      1.1  christos 
   1251      1.1  christos /* Parse qXfer:libraries:read packet into *SO_LIST_RETURN.  Return 1 if
   1252      1.1  christos 
   1253      1.1  christos    Return 0 if packet not supported, *SO_LIST_RETURN is not modified in such
   1254      1.1  christos    case.  Return 1 if *SO_LIST_RETURN contains the library list, it may be
   1255      1.1  christos    empty, caller is responsible for freeing all its entries.  */
   1256      1.1  christos 
   1257      1.1  christos static int
   1258      1.1  christos svr4_parse_libraries (const char *document, struct svr4_library_list *list)
   1259      1.1  christos {
   1260      1.1  christos   struct cleanup *back_to = make_cleanup (svr4_free_library_list,
   1261      1.1  christos 					  &list->head);
   1262      1.1  christos 
   1263      1.1  christos   memset (list, 0, sizeof (*list));
   1264      1.1  christos   list->tailp = &list->head;
   1265  1.1.1.2  christos   if (gdb_xml_parse_quick (_("target library list"), "library-list-svr4.dtd",
   1266      1.1  christos 			   svr4_library_list_elements, document, list) == 0)
   1267      1.1  christos     {
   1268      1.1  christos       /* Parsed successfully, keep the result.  */
   1269      1.1  christos       discard_cleanups (back_to);
   1270      1.1  christos       return 1;
   1271      1.1  christos     }
   1272      1.1  christos 
   1273      1.1  christos   do_cleanups (back_to);
   1274      1.1  christos   return 0;
   1275      1.1  christos }
   1276      1.1  christos 
   1277      1.1  christos /* Attempt to get so_list from target via qXfer:libraries-svr4:read packet.
   1278      1.1  christos 
   1279      1.1  christos    Return 0 if packet not supported, *SO_LIST_RETURN is not modified in such
   1280      1.1  christos    case.  Return 1 if *SO_LIST_RETURN contains the library list, it may be
   1281      1.1  christos    empty, caller is responsible for freeing all its entries.
   1282      1.1  christos 
   1283      1.1  christos    Note that ANNEX must be NULL if the remote does not explicitly allow
   1284      1.1  christos    qXfer:libraries-svr4:read packets with non-empty annexes.  Support for
   1285      1.1  christos    this can be checked using target_augmented_libraries_svr4_read ().  */
   1286      1.1  christos 
   1287      1.1  christos static int
   1288      1.1  christos svr4_current_sos_via_xfer_libraries (struct svr4_library_list *list,
   1289      1.1  christos 				     const char *annex)
   1290      1.1  christos {
   1291      1.1  christos   char *svr4_library_document;
   1292      1.1  christos   int result;
   1293      1.1  christos   struct cleanup *back_to;
   1294      1.1  christos 
   1295      1.1  christos   gdb_assert (annex == NULL || target_augmented_libraries_svr4_read ());
   1296      1.1  christos 
   1297      1.1  christos   /* Fetch the list of shared libraries.  */
   1298      1.1  christos   svr4_library_document = target_read_stralloc (&current_target,
   1299      1.1  christos 						TARGET_OBJECT_LIBRARIES_SVR4,
   1300      1.1  christos 						annex);
   1301      1.1  christos   if (svr4_library_document == NULL)
   1302      1.1  christos     return 0;
   1303      1.1  christos 
   1304      1.1  christos   back_to = make_cleanup (xfree, svr4_library_document);
   1305      1.1  christos   result = svr4_parse_libraries (svr4_library_document, list);
   1306      1.1  christos   do_cleanups (back_to);
   1307      1.1  christos 
   1308      1.1  christos   return result;
   1309      1.1  christos }
   1310      1.1  christos 
   1311      1.1  christos #else
   1312      1.1  christos 
   1313      1.1  christos static int
   1314      1.1  christos svr4_current_sos_via_xfer_libraries (struct svr4_library_list *list,
   1315      1.1  christos 				     const char *annex)
   1316      1.1  christos {
   1317      1.1  christos   return 0;
   1318      1.1  christos }
   1319      1.1  christos 
   1320      1.1  christos #endif
   1321      1.1  christos 
   1322      1.1  christos /* If no shared library information is available from the dynamic
   1323      1.1  christos    linker, build a fallback list from other sources.  */
   1324      1.1  christos 
   1325      1.1  christos static struct so_list *
   1326      1.1  christos svr4_default_sos (void)
   1327      1.1  christos {
   1328      1.1  christos   struct svr4_info *info = get_svr4_info ();
   1329  1.1.1.3  christos   struct so_list *newobj;
   1330      1.1  christos 
   1331      1.1  christos   if (!info->debug_loader_offset_p)
   1332      1.1  christos     return NULL;
   1333      1.1  christos 
   1334  1.1.1.3  christos   newobj = XCNEW (struct so_list);
   1335      1.1  christos 
   1336  1.1.1.4  christos   newobj->lm_info = XCNEW (struct lm_info);
   1337      1.1  christos 
   1338      1.1  christos   /* Nothing will ever check the other fields if we set l_addr_p.  */
   1339  1.1.1.3  christos   newobj->lm_info->l_addr = info->debug_loader_offset;
   1340  1.1.1.3  christos   newobj->lm_info->l_addr_p = 1;
   1341      1.1  christos 
   1342  1.1.1.3  christos   strncpy (newobj->so_name, info->debug_loader_name, SO_NAME_MAX_PATH_SIZE - 1);
   1343  1.1.1.3  christos   newobj->so_name[SO_NAME_MAX_PATH_SIZE - 1] = '\0';
   1344  1.1.1.3  christos   strcpy (newobj->so_original_name, newobj->so_name);
   1345      1.1  christos 
   1346  1.1.1.3  christos   return newobj;
   1347      1.1  christos }
   1348      1.1  christos 
   1349      1.1  christos /* Read the whole inferior libraries chain starting at address LM.
   1350      1.1  christos    Expect the first entry in the chain's previous entry to be PREV_LM.
   1351      1.1  christos    Add the entries to the tail referenced by LINK_PTR_PTR.  Ignore the
   1352      1.1  christos    first entry if IGNORE_FIRST and set global MAIN_LM_ADDR according
   1353      1.1  christos    to it.  Returns nonzero upon success.  If zero is returned the
   1354      1.1  christos    entries stored to LINK_PTR_PTR are still valid although they may
   1355      1.1  christos    represent only part of the inferior library list.  */
   1356      1.1  christos 
   1357      1.1  christos static int
   1358      1.1  christos svr4_read_so_list (CORE_ADDR lm, CORE_ADDR prev_lm,
   1359      1.1  christos 		   struct so_list ***link_ptr_ptr, int ignore_first)
   1360      1.1  christos {
   1361  1.1.1.2  christos   CORE_ADDR first_l_name = 0;
   1362      1.1  christos   CORE_ADDR next_lm;
   1363      1.1  christos 
   1364      1.1  christos   for (; lm != 0; prev_lm = lm, lm = next_lm)
   1365      1.1  christos     {
   1366  1.1.1.3  christos       struct so_list *newobj;
   1367      1.1  christos       struct cleanup *old_chain;
   1368      1.1  christos       int errcode;
   1369      1.1  christos       char *buffer;
   1370      1.1  christos 
   1371  1.1.1.3  christos       newobj = XCNEW (struct so_list);
   1372  1.1.1.3  christos       old_chain = make_cleanup_free_so (newobj);
   1373      1.1  christos 
   1374  1.1.1.3  christos       newobj->lm_info = lm_info_read (lm);
   1375  1.1.1.3  christos       if (newobj->lm_info == NULL)
   1376      1.1  christos 	{
   1377      1.1  christos 	  do_cleanups (old_chain);
   1378      1.1  christos 	  return 0;
   1379      1.1  christos 	}
   1380      1.1  christos 
   1381  1.1.1.3  christos       next_lm = newobj->lm_info->l_next;
   1382      1.1  christos 
   1383  1.1.1.3  christos       if (newobj->lm_info->l_prev != prev_lm)
   1384      1.1  christos 	{
   1385      1.1  christos 	  warning (_("Corrupted shared library list: %s != %s"),
   1386      1.1  christos 		   paddress (target_gdbarch (), prev_lm),
   1387  1.1.1.3  christos 		   paddress (target_gdbarch (), newobj->lm_info->l_prev));
   1388      1.1  christos 	  do_cleanups (old_chain);
   1389      1.1  christos 	  return 0;
   1390      1.1  christos 	}
   1391      1.1  christos 
   1392      1.1  christos       /* For SVR4 versions, the first entry in the link map is for the
   1393      1.1  christos          inferior executable, so we must ignore it.  For some versions of
   1394      1.1  christos          SVR4, it has no name.  For others (Solaris 2.3 for example), it
   1395      1.1  christos          does have a name, so we can no longer use a missing name to
   1396      1.1  christos          decide when to ignore it.  */
   1397  1.1.1.3  christos       if (ignore_first && newobj->lm_info->l_prev == 0)
   1398      1.1  christos 	{
   1399      1.1  christos 	  struct svr4_info *info = get_svr4_info ();
   1400      1.1  christos 
   1401  1.1.1.3  christos 	  first_l_name = newobj->lm_info->l_name;
   1402  1.1.1.3  christos 	  info->main_lm_addr = newobj->lm_info->lm_addr;
   1403      1.1  christos 	  do_cleanups (old_chain);
   1404      1.1  christos 	  continue;
   1405      1.1  christos 	}
   1406      1.1  christos 
   1407      1.1  christos       /* Extract this shared object's name.  */
   1408  1.1.1.3  christos       target_read_string (newobj->lm_info->l_name, &buffer,
   1409      1.1  christos 			  SO_NAME_MAX_PATH_SIZE - 1, &errcode);
   1410      1.1  christos       if (errcode != 0)
   1411      1.1  christos 	{
   1412      1.1  christos 	  /* If this entry's l_name address matches that of the
   1413      1.1  christos 	     inferior executable, then this is not a normal shared
   1414      1.1  christos 	     object, but (most likely) a vDSO.  In this case, silently
   1415      1.1  christos 	     skip it; otherwise emit a warning. */
   1416  1.1.1.3  christos 	  if (first_l_name == 0 || newobj->lm_info->l_name != first_l_name)
   1417      1.1  christos 	    warning (_("Can't read pathname for load map: %s."),
   1418      1.1  christos 		     safe_strerror (errcode));
   1419      1.1  christos 	  do_cleanups (old_chain);
   1420      1.1  christos 	  continue;
   1421      1.1  christos 	}
   1422      1.1  christos 
   1423  1.1.1.3  christos       strncpy (newobj->so_name, buffer, SO_NAME_MAX_PATH_SIZE - 1);
   1424  1.1.1.3  christos       newobj->so_name[SO_NAME_MAX_PATH_SIZE - 1] = '\0';
   1425  1.1.1.3  christos       strcpy (newobj->so_original_name, newobj->so_name);
   1426      1.1  christos       xfree (buffer);
   1427      1.1  christos 
   1428      1.1  christos       /* If this entry has no name, or its name matches the name
   1429      1.1  christos 	 for the main executable, don't include it in the list.  */
   1430  1.1.1.3  christos       if (! newobj->so_name[0] || match_main (newobj->so_name))
   1431      1.1  christos 	{
   1432      1.1  christos 	  do_cleanups (old_chain);
   1433      1.1  christos 	  continue;
   1434      1.1  christos 	}
   1435      1.1  christos 
   1436      1.1  christos       discard_cleanups (old_chain);
   1437  1.1.1.3  christos       newobj->next = 0;
   1438  1.1.1.3  christos       **link_ptr_ptr = newobj;
   1439  1.1.1.3  christos       *link_ptr_ptr = &newobj->next;
   1440      1.1  christos     }
   1441      1.1  christos 
   1442      1.1  christos   return 1;
   1443      1.1  christos }
   1444      1.1  christos 
   1445      1.1  christos /* Read the full list of currently loaded shared objects directly
   1446      1.1  christos    from the inferior, without referring to any libraries read and
   1447      1.1  christos    stored by the probes interface.  Handle special cases relating
   1448      1.1  christos    to the first elements of the list.  */
   1449      1.1  christos 
   1450      1.1  christos static struct so_list *
   1451      1.1  christos svr4_current_sos_direct (struct svr4_info *info)
   1452      1.1  christos {
   1453      1.1  christos   CORE_ADDR lm;
   1454      1.1  christos   struct so_list *head = NULL;
   1455      1.1  christos   struct so_list **link_ptr = &head;
   1456      1.1  christos   struct cleanup *back_to;
   1457      1.1  christos   int ignore_first;
   1458      1.1  christos   struct svr4_library_list library_list;
   1459      1.1  christos 
   1460      1.1  christos   /* Fall back to manual examination of the target if the packet is not
   1461      1.1  christos      supported or gdbserver failed to find DT_DEBUG.  gdb.server/solib-list.exp
   1462      1.1  christos      tests a case where gdbserver cannot find the shared libraries list while
   1463      1.1  christos      GDB itself is able to find it via SYMFILE_OBJFILE.
   1464      1.1  christos 
   1465      1.1  christos      Unfortunately statically linked inferiors will also fall back through this
   1466      1.1  christos      suboptimal code path.  */
   1467      1.1  christos 
   1468      1.1  christos   info->using_xfer = svr4_current_sos_via_xfer_libraries (&library_list,
   1469      1.1  christos 							  NULL);
   1470      1.1  christos   if (info->using_xfer)
   1471      1.1  christos     {
   1472      1.1  christos       if (library_list.main_lm)
   1473      1.1  christos 	info->main_lm_addr = library_list.main_lm;
   1474      1.1  christos 
   1475      1.1  christos       return library_list.head ? library_list.head : svr4_default_sos ();
   1476      1.1  christos     }
   1477      1.1  christos 
   1478      1.1  christos   /* Always locate the debug struct, in case it has moved.  */
   1479      1.1  christos   info->debug_base = 0;
   1480      1.1  christos   locate_base (info);
   1481      1.1  christos 
   1482      1.1  christos   /* If we can't find the dynamic linker's base structure, this
   1483      1.1  christos      must not be a dynamically linked executable.  Hmm.  */
   1484      1.1  christos   if (! info->debug_base)
   1485      1.1  christos     return svr4_default_sos ();
   1486      1.1  christos 
   1487      1.1  christos   /* Assume that everything is a library if the dynamic loader was loaded
   1488      1.1  christos      late by a static executable.  */
   1489      1.1  christos   if (exec_bfd && bfd_get_section_by_name (exec_bfd, ".dynamic") == NULL)
   1490      1.1  christos     ignore_first = 0;
   1491      1.1  christos   else
   1492      1.1  christos     ignore_first = 1;
   1493      1.1  christos 
   1494      1.1  christos   back_to = make_cleanup (svr4_free_library_list, &head);
   1495      1.1  christos 
   1496      1.1  christos   /* Walk the inferior's link map list, and build our list of
   1497      1.1  christos      `struct so_list' nodes.  */
   1498      1.1  christos   lm = solib_svr4_r_map (info);
   1499      1.1  christos   if (lm)
   1500      1.1  christos     svr4_read_so_list (lm, 0, &link_ptr, ignore_first);
   1501      1.1  christos 
   1502      1.1  christos   /* On Solaris, the dynamic linker is not in the normal list of
   1503      1.1  christos      shared objects, so make sure we pick it up too.  Having
   1504      1.1  christos      symbol information for the dynamic linker is quite crucial
   1505      1.1  christos      for skipping dynamic linker resolver code.  */
   1506      1.1  christos   lm = solib_svr4_r_ldsomap (info);
   1507      1.1  christos   if (lm)
   1508      1.1  christos     svr4_read_so_list (lm, 0, &link_ptr, 0);
   1509      1.1  christos 
   1510      1.1  christos   discard_cleanups (back_to);
   1511      1.1  christos 
   1512      1.1  christos   if (head == NULL)
   1513      1.1  christos     return svr4_default_sos ();
   1514      1.1  christos 
   1515      1.1  christos   return head;
   1516      1.1  christos }
   1517      1.1  christos 
   1518  1.1.1.2  christos /* Implement the main part of the "current_sos" target_so_ops
   1519  1.1.1.2  christos    method.  */
   1520      1.1  christos 
   1521      1.1  christos static struct so_list *
   1522  1.1.1.2  christos svr4_current_sos_1 (void)
   1523      1.1  christos {
   1524      1.1  christos   struct svr4_info *info = get_svr4_info ();
   1525      1.1  christos 
   1526      1.1  christos   /* If the solib list has been read and stored by the probes
   1527      1.1  christos      interface then we return a copy of the stored list.  */
   1528      1.1  christos   if (info->solib_list != NULL)
   1529      1.1  christos     return svr4_copy_library_list (info->solib_list);
   1530      1.1  christos 
   1531      1.1  christos   /* Otherwise obtain the solib list directly from the inferior.  */
   1532      1.1  christos   return svr4_current_sos_direct (info);
   1533      1.1  christos }
   1534      1.1  christos 
   1535  1.1.1.2  christos /* Implement the "current_sos" target_so_ops method.  */
   1536  1.1.1.2  christos 
   1537  1.1.1.2  christos static struct so_list *
   1538  1.1.1.2  christos svr4_current_sos (void)
   1539  1.1.1.2  christos {
   1540  1.1.1.2  christos   struct so_list *so_head = svr4_current_sos_1 ();
   1541  1.1.1.2  christos   struct mem_range vsyscall_range;
   1542  1.1.1.2  christos 
   1543  1.1.1.2  christos   /* Filter out the vDSO module, if present.  Its symbol file would
   1544  1.1.1.2  christos      not be found on disk.  The vDSO/vsyscall's OBJFILE is instead
   1545  1.1.1.2  christos      managed by symfile-mem.c:add_vsyscall_page.  */
   1546  1.1.1.2  christos   if (gdbarch_vsyscall_range (target_gdbarch (), &vsyscall_range)
   1547  1.1.1.2  christos       && vsyscall_range.length != 0)
   1548  1.1.1.2  christos     {
   1549  1.1.1.2  christos       struct so_list **sop;
   1550  1.1.1.2  christos 
   1551  1.1.1.2  christos       sop = &so_head;
   1552  1.1.1.2  christos       while (*sop != NULL)
   1553  1.1.1.2  christos 	{
   1554  1.1.1.2  christos 	  struct so_list *so = *sop;
   1555  1.1.1.2  christos 
   1556  1.1.1.2  christos 	  /* We can't simply match the vDSO by starting address alone,
   1557  1.1.1.2  christos 	     because lm_info->l_addr_inferior (and also l_addr) do not
   1558  1.1.1.2  christos 	     necessarily represent the real starting address of the
   1559  1.1.1.2  christos 	     ELF if the vDSO's ELF itself is "prelinked".  The l_ld
   1560  1.1.1.2  christos 	     field (the ".dynamic" section of the shared object)
   1561  1.1.1.2  christos 	     always points at the absolute/resolved address though.
   1562  1.1.1.2  christos 	     So check whether that address is inside the vDSO's
   1563  1.1.1.2  christos 	     mapping instead.
   1564  1.1.1.2  christos 
   1565  1.1.1.2  christos 	     E.g., on Linux 3.16 (x86_64) the vDSO is a regular
   1566  1.1.1.2  christos 	     0-based ELF, and we see:
   1567  1.1.1.2  christos 
   1568  1.1.1.2  christos 	      (gdb) info auxv
   1569  1.1.1.2  christos 	      33  AT_SYSINFO_EHDR  System-supplied DSO's ELF header 0x7ffff7ffb000
   1570  1.1.1.2  christos 	      (gdb)  p/x *_r_debug.r_map.l_next
   1571  1.1.1.2  christos 	      $1 = {l_addr = 0x7ffff7ffb000, ..., l_ld = 0x7ffff7ffb318, ...}
   1572  1.1.1.2  christos 
   1573  1.1.1.2  christos 	     And on Linux 2.6.32 (x86_64) we see:
   1574  1.1.1.2  christos 
   1575  1.1.1.2  christos 	      (gdb) info auxv
   1576  1.1.1.2  christos 	      33  AT_SYSINFO_EHDR  System-supplied DSO's ELF header 0x7ffff7ffe000
   1577  1.1.1.2  christos 	      (gdb) p/x *_r_debug.r_map.l_next
   1578  1.1.1.2  christos 	      $5 = {l_addr = 0x7ffff88fe000, ..., l_ld = 0x7ffff7ffe580, ... }
   1579  1.1.1.2  christos 
   1580  1.1.1.2  christos 	     Dumping that vDSO shows:
   1581  1.1.1.2  christos 
   1582  1.1.1.2  christos 	      (gdb) info proc mappings
   1583  1.1.1.2  christos 	      0x7ffff7ffe000  0x7ffff7fff000  0x1000  0  [vdso]
   1584  1.1.1.2  christos 	      (gdb) dump memory vdso.bin 0x7ffff7ffe000 0x7ffff7fff000
   1585  1.1.1.2  christos 	      # readelf -Wa vdso.bin
   1586  1.1.1.2  christos 	      [...]
   1587  1.1.1.2  christos 		Entry point address: 0xffffffffff700700
   1588  1.1.1.2  christos 	      [...]
   1589  1.1.1.2  christos 	      Section Headers:
   1590  1.1.1.2  christos 		[Nr] Name     Type    Address	       Off    Size
   1591  1.1.1.2  christos 		[ 0]	      NULL    0000000000000000 000000 000000
   1592  1.1.1.2  christos 		[ 1] .hash    HASH    ffffffffff700120 000120 000038
   1593  1.1.1.2  christos 		[ 2] .dynsym  DYNSYM  ffffffffff700158 000158 0000d8
   1594  1.1.1.2  christos 	      [...]
   1595  1.1.1.2  christos 		[ 9] .dynamic DYNAMIC ffffffffff700580 000580 0000f0
   1596  1.1.1.2  christos 	  */
   1597  1.1.1.2  christos 	  if (address_in_mem_range (so->lm_info->l_ld, &vsyscall_range))
   1598  1.1.1.2  christos 	    {
   1599  1.1.1.2  christos 	      *sop = so->next;
   1600  1.1.1.2  christos 	      free_so (so);
   1601  1.1.1.2  christos 	      break;
   1602  1.1.1.2  christos 	    }
   1603  1.1.1.2  christos 
   1604  1.1.1.2  christos 	  sop = &so->next;
   1605  1.1.1.2  christos 	}
   1606  1.1.1.2  christos     }
   1607  1.1.1.2  christos 
   1608  1.1.1.2  christos   return so_head;
   1609  1.1.1.2  christos }
   1610  1.1.1.2  christos 
   1611      1.1  christos /* Get the address of the link_map for a given OBJFILE.  */
   1612      1.1  christos 
   1613      1.1  christos CORE_ADDR
   1614      1.1  christos svr4_fetch_objfile_link_map (struct objfile *objfile)
   1615      1.1  christos {
   1616      1.1  christos   struct so_list *so;
   1617      1.1  christos   struct svr4_info *info = get_svr4_info ();
   1618      1.1  christos 
   1619      1.1  christos   /* Cause svr4_current_sos() to be run if it hasn't been already.  */
   1620      1.1  christos   if (info->main_lm_addr == 0)
   1621  1.1.1.5  christos     solib_add (NULL, 0, auto_solib_add);
   1622      1.1  christos 
   1623      1.1  christos   /* svr4_current_sos() will set main_lm_addr for the main executable.  */
   1624      1.1  christos   if (objfile == symfile_objfile)
   1625      1.1  christos     return info->main_lm_addr;
   1626      1.1  christos 
   1627      1.1  christos   /* The other link map addresses may be found by examining the list
   1628      1.1  christos      of shared libraries.  */
   1629      1.1  christos   for (so = master_so_list (); so; so = so->next)
   1630      1.1  christos     if (so->objfile == objfile)
   1631      1.1  christos       return so->lm_info->lm_addr;
   1632      1.1  christos 
   1633      1.1  christos   /* Not found!  */
   1634      1.1  christos   return 0;
   1635      1.1  christos }
   1636      1.1  christos 
   1637      1.1  christos /* On some systems, the only way to recognize the link map entry for
   1638      1.1  christos    the main executable file is by looking at its name.  Return
   1639      1.1  christos    non-zero iff SONAME matches one of the known main executable names.  */
   1640      1.1  christos 
   1641      1.1  christos static int
   1642      1.1  christos match_main (const char *soname)
   1643      1.1  christos {
   1644      1.1  christos   const char * const *mainp;
   1645      1.1  christos 
   1646      1.1  christos   for (mainp = main_name_list; *mainp != NULL; mainp++)
   1647      1.1  christos     {
   1648      1.1  christos       if (strcmp (soname, *mainp) == 0)
   1649      1.1  christos 	return (1);
   1650      1.1  christos     }
   1651      1.1  christos 
   1652      1.1  christos   return (0);
   1653      1.1  christos }
   1654      1.1  christos 
   1655      1.1  christos /* Return 1 if PC lies in the dynamic symbol resolution code of the
   1656      1.1  christos    SVR4 run time loader.  */
   1657      1.1  christos 
   1658      1.1  christos int
   1659      1.1  christos svr4_in_dynsym_resolve_code (CORE_ADDR pc)
   1660      1.1  christos {
   1661      1.1  christos   struct svr4_info *info = get_svr4_info ();
   1662      1.1  christos 
   1663      1.1  christos   return ((pc >= info->interp_text_sect_low
   1664      1.1  christos 	   && pc < info->interp_text_sect_high)
   1665      1.1  christos 	  || (pc >= info->interp_plt_sect_low
   1666      1.1  christos 	      && pc < info->interp_plt_sect_high)
   1667      1.1  christos 	  || in_plt_section (pc)
   1668      1.1  christos 	  || in_gnu_ifunc_stub (pc));
   1669      1.1  christos }
   1670      1.1  christos 
   1671      1.1  christos /* Given an executable's ABFD and target, compute the entry-point
   1672      1.1  christos    address.  */
   1673      1.1  christos 
   1674      1.1  christos static CORE_ADDR
   1675      1.1  christos exec_entry_point (struct bfd *abfd, struct target_ops *targ)
   1676      1.1  christos {
   1677      1.1  christos   CORE_ADDR addr;
   1678      1.1  christos 
   1679      1.1  christos   /* KevinB wrote ... for most targets, the address returned by
   1680      1.1  christos      bfd_get_start_address() is the entry point for the start
   1681      1.1  christos      function.  But, for some targets, bfd_get_start_address() returns
   1682      1.1  christos      the address of a function descriptor from which the entry point
   1683      1.1  christos      address may be extracted.  This address is extracted by
   1684      1.1  christos      gdbarch_convert_from_func_ptr_addr().  The method
   1685      1.1  christos      gdbarch_convert_from_func_ptr_addr() is the merely the identify
   1686      1.1  christos      function for targets which don't use function descriptors.  */
   1687      1.1  christos   addr = gdbarch_convert_from_func_ptr_addr (target_gdbarch (),
   1688      1.1  christos 					     bfd_get_start_address (abfd),
   1689      1.1  christos 					     targ);
   1690      1.1  christos   return gdbarch_addr_bits_remove (target_gdbarch (), addr);
   1691      1.1  christos }
   1692      1.1  christos 
   1693      1.1  christos /* A probe and its associated action.  */
   1694      1.1  christos 
   1695      1.1  christos struct probe_and_action
   1696      1.1  christos {
   1697      1.1  christos   /* The probe.  */
   1698      1.1  christos   struct probe *probe;
   1699      1.1  christos 
   1700  1.1.1.2  christos   /* The relocated address of the probe.  */
   1701  1.1.1.2  christos   CORE_ADDR address;
   1702  1.1.1.2  christos 
   1703      1.1  christos   /* The action.  */
   1704      1.1  christos   enum probe_action action;
   1705      1.1  christos };
   1706      1.1  christos 
   1707      1.1  christos /* Returns a hash code for the probe_and_action referenced by p.  */
   1708      1.1  christos 
   1709      1.1  christos static hashval_t
   1710      1.1  christos hash_probe_and_action (const void *p)
   1711      1.1  christos {
   1712  1.1.1.4  christos   const struct probe_and_action *pa = (const struct probe_and_action *) p;
   1713      1.1  christos 
   1714  1.1.1.2  christos   return (hashval_t) pa->address;
   1715      1.1  christos }
   1716      1.1  christos 
   1717      1.1  christos /* Returns non-zero if the probe_and_actions referenced by p1 and p2
   1718      1.1  christos    are equal.  */
   1719      1.1  christos 
   1720      1.1  christos static int
   1721      1.1  christos equal_probe_and_action (const void *p1, const void *p2)
   1722      1.1  christos {
   1723  1.1.1.4  christos   const struct probe_and_action *pa1 = (const struct probe_and_action *) p1;
   1724  1.1.1.4  christos   const struct probe_and_action *pa2 = (const struct probe_and_action *) p2;
   1725      1.1  christos 
   1726  1.1.1.2  christos   return pa1->address == pa2->address;
   1727      1.1  christos }
   1728      1.1  christos 
   1729      1.1  christos /* Register a solib event probe and its associated action in the
   1730      1.1  christos    probes table.  */
   1731      1.1  christos 
   1732      1.1  christos static void
   1733  1.1.1.2  christos register_solib_event_probe (struct probe *probe, CORE_ADDR address,
   1734  1.1.1.2  christos 			    enum probe_action action)
   1735      1.1  christos {
   1736      1.1  christos   struct svr4_info *info = get_svr4_info ();
   1737      1.1  christos   struct probe_and_action lookup, *pa;
   1738      1.1  christos   void **slot;
   1739      1.1  christos 
   1740      1.1  christos   /* Create the probes table, if necessary.  */
   1741      1.1  christos   if (info->probes_table == NULL)
   1742      1.1  christos     info->probes_table = htab_create_alloc (1, hash_probe_and_action,
   1743      1.1  christos 					    equal_probe_and_action,
   1744      1.1  christos 					    xfree, xcalloc, xfree);
   1745      1.1  christos 
   1746      1.1  christos   lookup.probe = probe;
   1747  1.1.1.2  christos   lookup.address = address;
   1748      1.1  christos   slot = htab_find_slot (info->probes_table, &lookup, INSERT);
   1749      1.1  christos   gdb_assert (*slot == HTAB_EMPTY_ENTRY);
   1750      1.1  christos 
   1751      1.1  christos   pa = XCNEW (struct probe_and_action);
   1752      1.1  christos   pa->probe = probe;
   1753  1.1.1.2  christos   pa->address = address;
   1754      1.1  christos   pa->action = action;
   1755      1.1  christos 
   1756      1.1  christos   *slot = pa;
   1757      1.1  christos }
   1758      1.1  christos 
   1759      1.1  christos /* Get the solib event probe at the specified location, and the
   1760      1.1  christos    action associated with it.  Returns NULL if no solib event probe
   1761      1.1  christos    was found.  */
   1762      1.1  christos 
   1763      1.1  christos static struct probe_and_action *
   1764      1.1  christos solib_event_probe_at (struct svr4_info *info, CORE_ADDR address)
   1765      1.1  christos {
   1766      1.1  christos   struct probe_and_action lookup;
   1767      1.1  christos   void **slot;
   1768      1.1  christos 
   1769  1.1.1.2  christos   lookup.address = address;
   1770      1.1  christos   slot = htab_find_slot (info->probes_table, &lookup, NO_INSERT);
   1771      1.1  christos 
   1772      1.1  christos   if (slot == NULL)
   1773      1.1  christos     return NULL;
   1774      1.1  christos 
   1775      1.1  christos   return (struct probe_and_action *) *slot;
   1776      1.1  christos }
   1777      1.1  christos 
   1778      1.1  christos /* Decide what action to take when the specified solib event probe is
   1779      1.1  christos    hit.  */
   1780      1.1  christos 
   1781      1.1  christos static enum probe_action
   1782      1.1  christos solib_event_probe_action (struct probe_and_action *pa)
   1783      1.1  christos {
   1784      1.1  christos   enum probe_action action;
   1785  1.1.1.4  christos   unsigned probe_argc = 0;
   1786      1.1  christos   struct frame_info *frame = get_current_frame ();
   1787      1.1  christos 
   1788      1.1  christos   action = pa->action;
   1789      1.1  christos   if (action == DO_NOTHING || action == PROBES_INTERFACE_FAILED)
   1790      1.1  christos     return action;
   1791      1.1  christos 
   1792      1.1  christos   gdb_assert (action == FULL_RELOAD || action == UPDATE_OR_RELOAD);
   1793      1.1  christos 
   1794      1.1  christos   /* Check that an appropriate number of arguments has been supplied.
   1795      1.1  christos      We expect:
   1796      1.1  christos        arg0: Lmid_t lmid (mandatory)
   1797      1.1  christos        arg1: struct r_debug *debug_base (mandatory)
   1798      1.1  christos        arg2: struct link_map *new (optional, for incremental updates)  */
   1799  1.1.1.4  christos   TRY
   1800  1.1.1.4  christos     {
   1801  1.1.1.4  christos       probe_argc = get_probe_argument_count (pa->probe, frame);
   1802  1.1.1.4  christos     }
   1803  1.1.1.4  christos   CATCH (ex, RETURN_MASK_ERROR)
   1804  1.1.1.4  christos     {
   1805  1.1.1.4  christos       exception_print (gdb_stderr, ex);
   1806  1.1.1.4  christos       probe_argc = 0;
   1807  1.1.1.4  christos     }
   1808  1.1.1.4  christos   END_CATCH
   1809  1.1.1.4  christos 
   1810  1.1.1.4  christos   /* If get_probe_argument_count throws an exception, probe_argc will
   1811  1.1.1.4  christos      be set to zero.  However, if pa->probe does not have arguments,
   1812  1.1.1.4  christos      then get_probe_argument_count will succeed but probe_argc will
   1813  1.1.1.4  christos      also be zero.  Both cases happen because of different things, but
   1814  1.1.1.4  christos      they are treated equally here: action will be set to
   1815  1.1.1.4  christos      PROBES_INTERFACE_FAILED.  */
   1816      1.1  christos   if (probe_argc == 2)
   1817      1.1  christos     action = FULL_RELOAD;
   1818      1.1  christos   else if (probe_argc < 2)
   1819      1.1  christos     action = PROBES_INTERFACE_FAILED;
   1820      1.1  christos 
   1821      1.1  christos   return action;
   1822      1.1  christos }
   1823      1.1  christos 
   1824      1.1  christos /* Populate the shared object list by reading the entire list of
   1825      1.1  christos    shared objects from the inferior.  Handle special cases relating
   1826      1.1  christos    to the first elements of the list.  Returns nonzero on success.  */
   1827      1.1  christos 
   1828      1.1  christos static int
   1829      1.1  christos solist_update_full (struct svr4_info *info)
   1830      1.1  christos {
   1831      1.1  christos   free_solib_list (info);
   1832      1.1  christos   info->solib_list = svr4_current_sos_direct (info);
   1833      1.1  christos 
   1834      1.1  christos   return 1;
   1835      1.1  christos }
   1836      1.1  christos 
   1837      1.1  christos /* Update the shared object list starting from the link-map entry
   1838      1.1  christos    passed by the linker in the probe's third argument.  Returns
   1839      1.1  christos    nonzero if the list was successfully updated, or zero to indicate
   1840      1.1  christos    failure.  */
   1841      1.1  christos 
   1842      1.1  christos static int
   1843      1.1  christos solist_update_incremental (struct svr4_info *info, CORE_ADDR lm)
   1844      1.1  christos {
   1845      1.1  christos   struct so_list *tail;
   1846      1.1  christos   CORE_ADDR prev_lm;
   1847      1.1  christos 
   1848      1.1  christos   /* svr4_current_sos_direct contains logic to handle a number of
   1849      1.1  christos      special cases relating to the first elements of the list.  To
   1850      1.1  christos      avoid duplicating this logic we defer to solist_update_full
   1851      1.1  christos      if the list is empty.  */
   1852      1.1  christos   if (info->solib_list == NULL)
   1853      1.1  christos     return 0;
   1854      1.1  christos 
   1855      1.1  christos   /* Fall back to a full update if we are using a remote target
   1856      1.1  christos      that does not support incremental transfers.  */
   1857      1.1  christos   if (info->using_xfer && !target_augmented_libraries_svr4_read ())
   1858      1.1  christos     return 0;
   1859      1.1  christos 
   1860      1.1  christos   /* Walk to the end of the list.  */
   1861      1.1  christos   for (tail = info->solib_list; tail->next != NULL; tail = tail->next)
   1862      1.1  christos     /* Nothing.  */;
   1863      1.1  christos   prev_lm = tail->lm_info->lm_addr;
   1864      1.1  christos 
   1865      1.1  christos   /* Read the new objects.  */
   1866      1.1  christos   if (info->using_xfer)
   1867      1.1  christos     {
   1868      1.1  christos       struct svr4_library_list library_list;
   1869      1.1  christos       char annex[64];
   1870      1.1  christos 
   1871      1.1  christos       xsnprintf (annex, sizeof (annex), "start=%s;prev=%s",
   1872      1.1  christos 		 phex_nz (lm, sizeof (lm)),
   1873      1.1  christos 		 phex_nz (prev_lm, sizeof (prev_lm)));
   1874      1.1  christos       if (!svr4_current_sos_via_xfer_libraries (&library_list, annex))
   1875      1.1  christos 	return 0;
   1876      1.1  christos 
   1877      1.1  christos       tail->next = library_list.head;
   1878      1.1  christos     }
   1879      1.1  christos   else
   1880      1.1  christos     {
   1881      1.1  christos       struct so_list **link = &tail->next;
   1882      1.1  christos 
   1883      1.1  christos       /* IGNORE_FIRST may safely be set to zero here because the
   1884      1.1  christos 	 above check and deferral to solist_update_full ensures
   1885      1.1  christos 	 that this call to svr4_read_so_list will never see the
   1886      1.1  christos 	 first element.  */
   1887      1.1  christos       if (!svr4_read_so_list (lm, prev_lm, &link, 0))
   1888      1.1  christos 	return 0;
   1889      1.1  christos     }
   1890      1.1  christos 
   1891      1.1  christos   return 1;
   1892      1.1  christos }
   1893      1.1  christos 
   1894      1.1  christos /* Disable the probes-based linker interface and revert to the
   1895      1.1  christos    original interface.  We don't reset the breakpoints as the
   1896      1.1  christos    ones set up for the probes-based interface are adequate.  */
   1897      1.1  christos 
   1898      1.1  christos static void
   1899      1.1  christos disable_probes_interface_cleanup (void *arg)
   1900      1.1  christos {
   1901      1.1  christos   struct svr4_info *info = get_svr4_info ();
   1902      1.1  christos 
   1903      1.1  christos   warning (_("Probes-based dynamic linker interface failed.\n"
   1904      1.1  christos 	     "Reverting to original interface.\n"));
   1905      1.1  christos 
   1906      1.1  christos   free_probes_table (info);
   1907      1.1  christos   free_solib_list (info);
   1908      1.1  christos }
   1909      1.1  christos 
   1910      1.1  christos /* Update the solib list as appropriate when using the
   1911      1.1  christos    probes-based linker interface.  Do nothing if using the
   1912      1.1  christos    standard interface.  */
   1913      1.1  christos 
   1914      1.1  christos static void
   1915      1.1  christos svr4_handle_solib_event (void)
   1916      1.1  christos {
   1917      1.1  christos   struct svr4_info *info = get_svr4_info ();
   1918      1.1  christos   struct probe_and_action *pa;
   1919      1.1  christos   enum probe_action action;
   1920      1.1  christos   struct cleanup *old_chain, *usm_chain;
   1921  1.1.1.4  christos   struct value *val = NULL;
   1922      1.1  christos   CORE_ADDR pc, debug_base, lm = 0;
   1923      1.1  christos   struct frame_info *frame = get_current_frame ();
   1924      1.1  christos 
   1925      1.1  christos   /* Do nothing if not using the probes interface.  */
   1926      1.1  christos   if (info->probes_table == NULL)
   1927      1.1  christos     return;
   1928      1.1  christos 
   1929      1.1  christos   /* If anything goes wrong we revert to the original linker
   1930      1.1  christos      interface.  */
   1931      1.1  christos   old_chain = make_cleanup (disable_probes_interface_cleanup, NULL);
   1932      1.1  christos 
   1933      1.1  christos   pc = regcache_read_pc (get_current_regcache ());
   1934      1.1  christos   pa = solib_event_probe_at (info, pc);
   1935      1.1  christos   if (pa == NULL)
   1936      1.1  christos     {
   1937      1.1  christos       do_cleanups (old_chain);
   1938      1.1  christos       return;
   1939      1.1  christos     }
   1940      1.1  christos 
   1941      1.1  christos   action = solib_event_probe_action (pa);
   1942      1.1  christos   if (action == PROBES_INTERFACE_FAILED)
   1943      1.1  christos     {
   1944      1.1  christos       do_cleanups (old_chain);
   1945      1.1  christos       return;
   1946      1.1  christos     }
   1947      1.1  christos 
   1948      1.1  christos   if (action == DO_NOTHING)
   1949      1.1  christos     {
   1950      1.1  christos       discard_cleanups (old_chain);
   1951      1.1  christos       return;
   1952      1.1  christos     }
   1953      1.1  christos 
   1954      1.1  christos   /* evaluate_probe_argument looks up symbols in the dynamic linker
   1955      1.1  christos      using find_pc_section.  find_pc_section is accelerated by a cache
   1956      1.1  christos      called the section map.  The section map is invalidated every
   1957      1.1  christos      time a shared library is loaded or unloaded, and if the inferior
   1958      1.1  christos      is generating a lot of shared library events then the section map
   1959      1.1  christos      will be updated every time svr4_handle_solib_event is called.
   1960      1.1  christos      We called find_pc_section in svr4_create_solib_event_breakpoints,
   1961      1.1  christos      so we can guarantee that the dynamic linker's sections are in the
   1962      1.1  christos      section map.  We can therefore inhibit section map updates across
   1963      1.1  christos      these calls to evaluate_probe_argument and save a lot of time.  */
   1964      1.1  christos   inhibit_section_map_updates (current_program_space);
   1965      1.1  christos   usm_chain = make_cleanup (resume_section_map_updates_cleanup,
   1966      1.1  christos 			    current_program_space);
   1967      1.1  christos 
   1968  1.1.1.4  christos   TRY
   1969  1.1.1.4  christos     {
   1970  1.1.1.4  christos       val = evaluate_probe_argument (pa->probe, 1, frame);
   1971  1.1.1.4  christos     }
   1972  1.1.1.4  christos   CATCH (ex, RETURN_MASK_ERROR)
   1973  1.1.1.4  christos     {
   1974  1.1.1.4  christos       exception_print (gdb_stderr, ex);
   1975  1.1.1.4  christos       val = NULL;
   1976  1.1.1.4  christos     }
   1977  1.1.1.4  christos   END_CATCH
   1978  1.1.1.4  christos 
   1979      1.1  christos   if (val == NULL)
   1980      1.1  christos     {
   1981      1.1  christos       do_cleanups (old_chain);
   1982      1.1  christos       return;
   1983      1.1  christos     }
   1984      1.1  christos 
   1985      1.1  christos   debug_base = value_as_address (val);
   1986      1.1  christos   if (debug_base == 0)
   1987      1.1  christos     {
   1988      1.1  christos       do_cleanups (old_chain);
   1989      1.1  christos       return;
   1990      1.1  christos     }
   1991      1.1  christos 
   1992      1.1  christos   /* Always locate the debug struct, in case it moved.  */
   1993      1.1  christos   info->debug_base = 0;
   1994      1.1  christos   if (locate_base (info) == 0)
   1995      1.1  christos     {
   1996      1.1  christos       do_cleanups (old_chain);
   1997      1.1  christos       return;
   1998      1.1  christos     }
   1999      1.1  christos 
   2000      1.1  christos   /* GDB does not currently support libraries loaded via dlmopen
   2001      1.1  christos      into namespaces other than the initial one.  We must ignore
   2002      1.1  christos      any namespace other than the initial namespace here until
   2003      1.1  christos      support for this is added to GDB.  */
   2004      1.1  christos   if (debug_base != info->debug_base)
   2005      1.1  christos     action = DO_NOTHING;
   2006      1.1  christos 
   2007      1.1  christos   if (action == UPDATE_OR_RELOAD)
   2008      1.1  christos     {
   2009  1.1.1.4  christos       TRY
   2010  1.1.1.4  christos 	{
   2011  1.1.1.4  christos 	  val = evaluate_probe_argument (pa->probe, 2, frame);
   2012  1.1.1.4  christos 	}
   2013  1.1.1.4  christos       CATCH (ex, RETURN_MASK_ERROR)
   2014  1.1.1.4  christos 	{
   2015  1.1.1.4  christos 	  exception_print (gdb_stderr, ex);
   2016  1.1.1.4  christos 	  do_cleanups (old_chain);
   2017  1.1.1.4  christos 	  return;
   2018  1.1.1.4  christos 	}
   2019  1.1.1.4  christos       END_CATCH
   2020  1.1.1.4  christos 
   2021      1.1  christos       if (val != NULL)
   2022      1.1  christos 	lm = value_as_address (val);
   2023      1.1  christos 
   2024      1.1  christos       if (lm == 0)
   2025      1.1  christos 	action = FULL_RELOAD;
   2026      1.1  christos     }
   2027      1.1  christos 
   2028      1.1  christos   /* Resume section map updates.  */
   2029      1.1  christos   do_cleanups (usm_chain);
   2030      1.1  christos 
   2031      1.1  christos   if (action == UPDATE_OR_RELOAD)
   2032      1.1  christos     {
   2033      1.1  christos       if (!solist_update_incremental (info, lm))
   2034      1.1  christos 	action = FULL_RELOAD;
   2035      1.1  christos     }
   2036      1.1  christos 
   2037      1.1  christos   if (action == FULL_RELOAD)
   2038      1.1  christos     {
   2039      1.1  christos       if (!solist_update_full (info))
   2040      1.1  christos 	{
   2041      1.1  christos 	  do_cleanups (old_chain);
   2042      1.1  christos 	  return;
   2043      1.1  christos 	}
   2044      1.1  christos     }
   2045      1.1  christos 
   2046      1.1  christos   discard_cleanups (old_chain);
   2047      1.1  christos }
   2048      1.1  christos 
   2049      1.1  christos /* Helper function for svr4_update_solib_event_breakpoints.  */
   2050      1.1  christos 
   2051      1.1  christos static int
   2052      1.1  christos svr4_update_solib_event_breakpoint (struct breakpoint *b, void *arg)
   2053      1.1  christos {
   2054      1.1  christos   struct bp_location *loc;
   2055      1.1  christos 
   2056      1.1  christos   if (b->type != bp_shlib_event)
   2057      1.1  christos     {
   2058      1.1  christos       /* Continue iterating.  */
   2059      1.1  christos       return 0;
   2060      1.1  christos     }
   2061      1.1  christos 
   2062      1.1  christos   for (loc = b->loc; loc != NULL; loc = loc->next)
   2063      1.1  christos     {
   2064      1.1  christos       struct svr4_info *info;
   2065      1.1  christos       struct probe_and_action *pa;
   2066      1.1  christos 
   2067  1.1.1.4  christos       info = ((struct svr4_info *)
   2068  1.1.1.4  christos 	      program_space_data (loc->pspace, solib_svr4_pspace_data));
   2069      1.1  christos       if (info == NULL || info->probes_table == NULL)
   2070      1.1  christos 	continue;
   2071      1.1  christos 
   2072      1.1  christos       pa = solib_event_probe_at (info, loc->address);
   2073      1.1  christos       if (pa == NULL)
   2074      1.1  christos 	continue;
   2075      1.1  christos 
   2076      1.1  christos       if (pa->action == DO_NOTHING)
   2077      1.1  christos 	{
   2078      1.1  christos 	  if (b->enable_state == bp_disabled && stop_on_solib_events)
   2079      1.1  christos 	    enable_breakpoint (b);
   2080      1.1  christos 	  else if (b->enable_state == bp_enabled && !stop_on_solib_events)
   2081      1.1  christos 	    disable_breakpoint (b);
   2082      1.1  christos 	}
   2083      1.1  christos 
   2084      1.1  christos       break;
   2085      1.1  christos     }
   2086      1.1  christos 
   2087      1.1  christos   /* Continue iterating.  */
   2088      1.1  christos   return 0;
   2089      1.1  christos }
   2090      1.1  christos 
   2091      1.1  christos /* Enable or disable optional solib event breakpoints as appropriate.
   2092      1.1  christos    Called whenever stop_on_solib_events is changed.  */
   2093      1.1  christos 
   2094      1.1  christos static void
   2095      1.1  christos svr4_update_solib_event_breakpoints (void)
   2096      1.1  christos {
   2097      1.1  christos   iterate_over_breakpoints (svr4_update_solib_event_breakpoint, NULL);
   2098      1.1  christos }
   2099      1.1  christos 
   2100      1.1  christos /* Create and register solib event breakpoints.  PROBES is an array
   2101      1.1  christos    of NUM_PROBES elements, each of which is vector of probes.  A
   2102      1.1  christos    solib event breakpoint will be created and registered for each
   2103      1.1  christos    probe.  */
   2104      1.1  christos 
   2105      1.1  christos static void
   2106      1.1  christos svr4_create_probe_breakpoints (struct gdbarch *gdbarch,
   2107  1.1.1.2  christos 			       VEC (probe_p) **probes,
   2108  1.1.1.2  christos 			       struct objfile *objfile)
   2109      1.1  christos {
   2110      1.1  christos   int i;
   2111      1.1  christos 
   2112      1.1  christos   for (i = 0; i < NUM_PROBES; i++)
   2113      1.1  christos     {
   2114      1.1  christos       enum probe_action action = probe_info[i].action;
   2115      1.1  christos       struct probe *probe;
   2116      1.1  christos       int ix;
   2117      1.1  christos 
   2118      1.1  christos       for (ix = 0;
   2119      1.1  christos 	   VEC_iterate (probe_p, probes[i], ix, probe);
   2120      1.1  christos 	   ++ix)
   2121      1.1  christos 	{
   2122  1.1.1.2  christos 	  CORE_ADDR address = get_probe_address (probe, objfile);
   2123  1.1.1.2  christos 
   2124  1.1.1.2  christos 	  create_solib_event_breakpoint (gdbarch, address);
   2125  1.1.1.2  christos 	  register_solib_event_probe (probe, address, action);
   2126      1.1  christos 	}
   2127      1.1  christos     }
   2128      1.1  christos 
   2129      1.1  christos   svr4_update_solib_event_breakpoints ();
   2130      1.1  christos }
   2131      1.1  christos 
   2132      1.1  christos /* Both the SunOS and the SVR4 dynamic linkers call a marker function
   2133      1.1  christos    before and after mapping and unmapping shared libraries.  The sole
   2134      1.1  christos    purpose of this method is to allow debuggers to set a breakpoint so
   2135      1.1  christos    they can track these changes.
   2136      1.1  christos 
   2137      1.1  christos    Some versions of the glibc dynamic linker contain named probes
   2138      1.1  christos    to allow more fine grained stopping.  Given the address of the
   2139      1.1  christos    original marker function, this function attempts to find these
   2140      1.1  christos    probes, and if found, sets breakpoints on those instead.  If the
   2141      1.1  christos    probes aren't found, a single breakpoint is set on the original
   2142      1.1  christos    marker function.  */
   2143      1.1  christos 
   2144      1.1  christos static void
   2145      1.1  christos svr4_create_solib_event_breakpoints (struct gdbarch *gdbarch,
   2146      1.1  christos 				     CORE_ADDR address)
   2147      1.1  christos {
   2148      1.1  christos   struct obj_section *os;
   2149      1.1  christos 
   2150      1.1  christos   os = find_pc_section (address);
   2151      1.1  christos   if (os != NULL)
   2152      1.1  christos     {
   2153      1.1  christos       int with_prefix;
   2154      1.1  christos 
   2155      1.1  christos       for (with_prefix = 0; with_prefix <= 1; with_prefix++)
   2156      1.1  christos 	{
   2157      1.1  christos 	  VEC (probe_p) *probes[NUM_PROBES];
   2158      1.1  christos 	  int all_probes_found = 1;
   2159      1.1  christos 	  int checked_can_use_probe_arguments = 0;
   2160      1.1  christos 	  int i;
   2161      1.1  christos 
   2162      1.1  christos 	  memset (probes, 0, sizeof (probes));
   2163      1.1  christos 	  for (i = 0; i < NUM_PROBES; i++)
   2164      1.1  christos 	    {
   2165      1.1  christos 	      const char *name = probe_info[i].name;
   2166      1.1  christos 	      struct probe *p;
   2167      1.1  christos 	      char buf[32];
   2168      1.1  christos 
   2169      1.1  christos 	      /* Fedora 17 and Red Hat Enterprise Linux 6.2-6.4
   2170      1.1  christos 		 shipped with an early version of the probes code in
   2171      1.1  christos 		 which the probes' names were prefixed with "rtld_"
   2172      1.1  christos 		 and the "map_failed" probe did not exist.  The
   2173      1.1  christos 		 locations of the probes are otherwise the same, so
   2174      1.1  christos 		 we check for probes with prefixed names if probes
   2175      1.1  christos 		 with unprefixed names are not present.  */
   2176      1.1  christos 	      if (with_prefix)
   2177      1.1  christos 		{
   2178      1.1  christos 		  xsnprintf (buf, sizeof (buf), "rtld_%s", name);
   2179      1.1  christos 		  name = buf;
   2180      1.1  christos 		}
   2181      1.1  christos 
   2182      1.1  christos 	      probes[i] = find_probes_in_objfile (os->objfile, "rtld", name);
   2183      1.1  christos 
   2184      1.1  christos 	      /* The "map_failed" probe did not exist in early
   2185      1.1  christos 		 versions of the probes code in which the probes'
   2186      1.1  christos 		 names were prefixed with "rtld_".  */
   2187      1.1  christos 	      if (strcmp (name, "rtld_map_failed") == 0)
   2188      1.1  christos 		continue;
   2189      1.1  christos 
   2190      1.1  christos 	      if (VEC_empty (probe_p, probes[i]))
   2191      1.1  christos 		{
   2192      1.1  christos 		  all_probes_found = 0;
   2193      1.1  christos 		  break;
   2194      1.1  christos 		}
   2195      1.1  christos 
   2196      1.1  christos 	      /* Ensure probe arguments can be evaluated.  */
   2197      1.1  christos 	      if (!checked_can_use_probe_arguments)
   2198      1.1  christos 		{
   2199      1.1  christos 		  p = VEC_index (probe_p, probes[i], 0);
   2200      1.1  christos 		  if (!can_evaluate_probe_arguments (p))
   2201      1.1  christos 		    {
   2202      1.1  christos 		      all_probes_found = 0;
   2203      1.1  christos 		      break;
   2204      1.1  christos 		    }
   2205      1.1  christos 		  checked_can_use_probe_arguments = 1;
   2206      1.1  christos 		}
   2207      1.1  christos 	    }
   2208      1.1  christos 
   2209      1.1  christos 	  if (all_probes_found)
   2210  1.1.1.2  christos 	    svr4_create_probe_breakpoints (gdbarch, probes, os->objfile);
   2211      1.1  christos 
   2212      1.1  christos 	  for (i = 0; i < NUM_PROBES; i++)
   2213      1.1  christos 	    VEC_free (probe_p, probes[i]);
   2214      1.1  christos 
   2215      1.1  christos 	  if (all_probes_found)
   2216      1.1  christos 	    return;
   2217      1.1  christos 	}
   2218      1.1  christos     }
   2219      1.1  christos 
   2220      1.1  christos   create_solib_event_breakpoint (gdbarch, address);
   2221      1.1  christos }
   2222      1.1  christos 
   2223      1.1  christos /* Helper function for gdb_bfd_lookup_symbol.  */
   2224      1.1  christos 
   2225      1.1  christos static int
   2226  1.1.1.4  christos cmp_name_and_sec_flags (const asymbol *sym, const void *data)
   2227      1.1  christos {
   2228      1.1  christos   return (strcmp (sym->name, (const char *) data) == 0
   2229      1.1  christos 	  && (sym->section->flags & (SEC_CODE | SEC_DATA)) != 0);
   2230      1.1  christos }
   2231      1.1  christos /* Arrange for dynamic linker to hit breakpoint.
   2232      1.1  christos 
   2233      1.1  christos    Both the SunOS and the SVR4 dynamic linkers have, as part of their
   2234      1.1  christos    debugger interface, support for arranging for the inferior to hit
   2235      1.1  christos    a breakpoint after mapping in the shared libraries.  This function
   2236      1.1  christos    enables that breakpoint.
   2237      1.1  christos 
   2238      1.1  christos    For SunOS, there is a special flag location (in_debugger) which we
   2239      1.1  christos    set to 1.  When the dynamic linker sees this flag set, it will set
   2240      1.1  christos    a breakpoint at a location known only to itself, after saving the
   2241      1.1  christos    original contents of that place and the breakpoint address itself,
   2242      1.1  christos    in it's own internal structures.  When we resume the inferior, it
   2243      1.1  christos    will eventually take a SIGTRAP when it runs into the breakpoint.
   2244      1.1  christos    We handle this (in a different place) by restoring the contents of
   2245      1.1  christos    the breakpointed location (which is only known after it stops),
   2246      1.1  christos    chasing around to locate the shared libraries that have been
   2247      1.1  christos    loaded, then resuming.
   2248      1.1  christos 
   2249      1.1  christos    For SVR4, the debugger interface structure contains a member (r_brk)
   2250      1.1  christos    which is statically initialized at the time the shared library is
   2251      1.1  christos    built, to the offset of a function (_r_debug_state) which is guaran-
   2252      1.1  christos    teed to be called once before mapping in a library, and again when
   2253      1.1  christos    the mapping is complete.  At the time we are examining this member,
   2254      1.1  christos    it contains only the unrelocated offset of the function, so we have
   2255      1.1  christos    to do our own relocation.  Later, when the dynamic linker actually
   2256      1.1  christos    runs, it relocates r_brk to be the actual address of _r_debug_state().
   2257      1.1  christos 
   2258      1.1  christos    The debugger interface structure also contains an enumeration which
   2259      1.1  christos    is set to either RT_ADD or RT_DELETE prior to changing the mapping,
   2260      1.1  christos    depending upon whether or not the library is being mapped or unmapped,
   2261      1.1  christos    and then set to RT_CONSISTENT after the library is mapped/unmapped.  */
   2262      1.1  christos 
   2263      1.1  christos static int
   2264      1.1  christos enable_break (struct svr4_info *info, int from_tty)
   2265      1.1  christos {
   2266  1.1.1.2  christos   struct bound_minimal_symbol msymbol;
   2267      1.1  christos   const char * const *bkpt_namep;
   2268      1.1  christos   asection *interp_sect;
   2269      1.1  christos   char *interp_name;
   2270      1.1  christos   CORE_ADDR sym_addr;
   2271      1.1  christos 
   2272      1.1  christos   info->interp_text_sect_low = info->interp_text_sect_high = 0;
   2273      1.1  christos   info->interp_plt_sect_low = info->interp_plt_sect_high = 0;
   2274      1.1  christos 
   2275      1.1  christos   /* If we already have a shared library list in the target, and
   2276      1.1  christos      r_debug contains r_brk, set the breakpoint there - this should
   2277      1.1  christos      mean r_brk has already been relocated.  Assume the dynamic linker
   2278      1.1  christos      is the object containing r_brk.  */
   2279      1.1  christos 
   2280  1.1.1.5  christos   solib_add (NULL, from_tty, auto_solib_add);
   2281      1.1  christos   sym_addr = 0;
   2282      1.1  christos   if (info->debug_base && solib_svr4_r_map (info) != 0)
   2283      1.1  christos     sym_addr = solib_svr4_r_brk (info);
   2284      1.1  christos 
   2285      1.1  christos   if (sym_addr != 0)
   2286      1.1  christos     {
   2287      1.1  christos       struct obj_section *os;
   2288      1.1  christos 
   2289      1.1  christos       sym_addr = gdbarch_addr_bits_remove
   2290      1.1  christos 	(target_gdbarch (), gdbarch_convert_from_func_ptr_addr (target_gdbarch (),
   2291      1.1  christos 							     sym_addr,
   2292      1.1  christos 							     &current_target));
   2293      1.1  christos 
   2294      1.1  christos       /* On at least some versions of Solaris there's a dynamic relocation
   2295      1.1  christos 	 on _r_debug.r_brk and SYM_ADDR may not be relocated yet, e.g., if
   2296      1.1  christos 	 we get control before the dynamic linker has self-relocated.
   2297      1.1  christos 	 Check if SYM_ADDR is in a known section, if it is assume we can
   2298      1.1  christos 	 trust its value.  This is just a heuristic though, it could go away
   2299      1.1  christos 	 or be replaced if it's getting in the way.
   2300      1.1  christos 
   2301      1.1  christos 	 On ARM we need to know whether the ISA of rtld_db_dlactivity (or
   2302      1.1  christos 	 however it's spelled in your particular system) is ARM or Thumb.
   2303      1.1  christos 	 That knowledge is encoded in the address, if it's Thumb the low bit
   2304      1.1  christos 	 is 1.  However, we've stripped that info above and it's not clear
   2305      1.1  christos 	 what all the consequences are of passing a non-addr_bits_remove'd
   2306      1.1  christos 	 address to svr4_create_solib_event_breakpoints.  The call to
   2307      1.1  christos 	 find_pc_section verifies we know about the address and have some
   2308      1.1  christos 	 hope of computing the right kind of breakpoint to use (via
   2309      1.1  christos 	 symbol info).  It does mean that GDB needs to be pointed at a
   2310      1.1  christos 	 non-stripped version of the dynamic linker in order to obtain
   2311      1.1  christos 	 information it already knows about.  Sigh.  */
   2312      1.1  christos 
   2313      1.1  christos       os = find_pc_section (sym_addr);
   2314      1.1  christos       if (os != NULL)
   2315      1.1  christos 	{
   2316      1.1  christos 	  /* Record the relocated start and end address of the dynamic linker
   2317      1.1  christos 	     text and plt section for svr4_in_dynsym_resolve_code.  */
   2318      1.1  christos 	  bfd *tmp_bfd;
   2319      1.1  christos 	  CORE_ADDR load_addr;
   2320      1.1  christos 
   2321      1.1  christos 	  tmp_bfd = os->objfile->obfd;
   2322      1.1  christos 	  load_addr = ANOFFSET (os->objfile->section_offsets,
   2323      1.1  christos 				SECT_OFF_TEXT (os->objfile));
   2324      1.1  christos 
   2325      1.1  christos 	  interp_sect = bfd_get_section_by_name (tmp_bfd, ".text");
   2326      1.1  christos 	  if (interp_sect)
   2327      1.1  christos 	    {
   2328      1.1  christos 	      info->interp_text_sect_low =
   2329      1.1  christos 		bfd_section_vma (tmp_bfd, interp_sect) + load_addr;
   2330      1.1  christos 	      info->interp_text_sect_high =
   2331      1.1  christos 		info->interp_text_sect_low
   2332      1.1  christos 		+ bfd_section_size (tmp_bfd, interp_sect);
   2333      1.1  christos 	    }
   2334      1.1  christos 	  interp_sect = bfd_get_section_by_name (tmp_bfd, ".plt");
   2335      1.1  christos 	  if (interp_sect)
   2336      1.1  christos 	    {
   2337      1.1  christos 	      info->interp_plt_sect_low =
   2338      1.1  christos 		bfd_section_vma (tmp_bfd, interp_sect) + load_addr;
   2339      1.1  christos 	      info->interp_plt_sect_high =
   2340      1.1  christos 		info->interp_plt_sect_low
   2341      1.1  christos 		+ bfd_section_size (tmp_bfd, interp_sect);
   2342      1.1  christos 	    }
   2343      1.1  christos 
   2344      1.1  christos 	  svr4_create_solib_event_breakpoints (target_gdbarch (), sym_addr);
   2345      1.1  christos 	  return 1;
   2346      1.1  christos 	}
   2347      1.1  christos     }
   2348      1.1  christos 
   2349      1.1  christos   /* Find the program interpreter; if not found, warn the user and drop
   2350      1.1  christos      into the old breakpoint at symbol code.  */
   2351      1.1  christos   interp_name = find_program_interpreter ();
   2352      1.1  christos   if (interp_name)
   2353      1.1  christos     {
   2354      1.1  christos       CORE_ADDR load_addr = 0;
   2355      1.1  christos       int load_addr_found = 0;
   2356      1.1  christos       int loader_found_in_list = 0;
   2357      1.1  christos       struct so_list *so;
   2358      1.1  christos       struct target_ops *tmp_bfd_target;
   2359      1.1  christos 
   2360      1.1  christos       sym_addr = 0;
   2361      1.1  christos 
   2362      1.1  christos       /* Now we need to figure out where the dynamic linker was
   2363      1.1  christos          loaded so that we can load its symbols and place a breakpoint
   2364      1.1  christos          in the dynamic linker itself.
   2365      1.1  christos 
   2366      1.1  christos          This address is stored on the stack.  However, I've been unable
   2367      1.1  christos          to find any magic formula to find it for Solaris (appears to
   2368      1.1  christos          be trivial on GNU/Linux).  Therefore, we have to try an alternate
   2369      1.1  christos          mechanism to find the dynamic linker's base address.  */
   2370      1.1  christos 
   2371  1.1.1.5  christos       gdb_bfd_ref_ptr tmp_bfd;
   2372  1.1.1.3  christos       TRY
   2373      1.1  christos         {
   2374      1.1  christos 	  tmp_bfd = solib_bfd_open (interp_name);
   2375      1.1  christos 	}
   2376  1.1.1.3  christos       CATCH (ex, RETURN_MASK_ALL)
   2377  1.1.1.3  christos 	{
   2378  1.1.1.3  christos 	}
   2379  1.1.1.3  christos       END_CATCH
   2380  1.1.1.3  christos 
   2381      1.1  christos       if (tmp_bfd == NULL)
   2382      1.1  christos 	goto bkpt_at_symbol;
   2383      1.1  christos 
   2384      1.1  christos       /* Now convert the TMP_BFD into a target.  That way target, as
   2385  1.1.1.5  christos          well as BFD operations can be used.  target_bfd_reopen
   2386  1.1.1.5  christos          acquires its own reference.  */
   2387  1.1.1.5  christos       tmp_bfd_target = target_bfd_reopen (tmp_bfd.get ());
   2388      1.1  christos 
   2389      1.1  christos       /* On a running target, we can get the dynamic linker's base
   2390      1.1  christos          address from the shared library table.  */
   2391      1.1  christos       so = master_so_list ();
   2392      1.1  christos       while (so)
   2393      1.1  christos 	{
   2394      1.1  christos 	  if (svr4_same_1 (interp_name, so->so_original_name))
   2395      1.1  christos 	    {
   2396      1.1  christos 	      load_addr_found = 1;
   2397      1.1  christos 	      loader_found_in_list = 1;
   2398  1.1.1.5  christos 	      load_addr = lm_addr_check (so, tmp_bfd.get ());
   2399      1.1  christos 	      break;
   2400      1.1  christos 	    }
   2401      1.1  christos 	  so = so->next;
   2402      1.1  christos 	}
   2403      1.1  christos 
   2404      1.1  christos       /* If we were not able to find the base address of the loader
   2405      1.1  christos          from our so_list, then try using the AT_BASE auxilliary entry.  */
   2406      1.1  christos       if (!load_addr_found)
   2407      1.1  christos         if (target_auxv_search (&current_target, AT_BASE, &load_addr) > 0)
   2408      1.1  christos 	  {
   2409      1.1  christos 	    int addr_bit = gdbarch_addr_bit (target_gdbarch ());
   2410      1.1  christos 
   2411      1.1  christos 	    /* Ensure LOAD_ADDR has proper sign in its possible upper bits so
   2412      1.1  christos 	       that `+ load_addr' will overflow CORE_ADDR width not creating
   2413      1.1  christos 	       invalid addresses like 0x101234567 for 32bit inferiors on 64bit
   2414      1.1  christos 	       GDB.  */
   2415      1.1  christos 
   2416      1.1  christos 	    if (addr_bit < (sizeof (CORE_ADDR) * HOST_CHAR_BIT))
   2417      1.1  christos 	      {
   2418      1.1  christos 		CORE_ADDR space_size = (CORE_ADDR) 1 << addr_bit;
   2419  1.1.1.5  christos 		CORE_ADDR tmp_entry_point = exec_entry_point (tmp_bfd.get (),
   2420      1.1  christos 							      tmp_bfd_target);
   2421      1.1  christos 
   2422      1.1  christos 		gdb_assert (load_addr < space_size);
   2423      1.1  christos 
   2424      1.1  christos 		/* TMP_ENTRY_POINT exceeding SPACE_SIZE would be for prelinked
   2425      1.1  christos 		   64bit ld.so with 32bit executable, it should not happen.  */
   2426      1.1  christos 
   2427      1.1  christos 		if (tmp_entry_point < space_size
   2428      1.1  christos 		    && tmp_entry_point + load_addr >= space_size)
   2429      1.1  christos 		  load_addr -= space_size;
   2430      1.1  christos 	      }
   2431      1.1  christos 
   2432      1.1  christos 	    load_addr_found = 1;
   2433      1.1  christos 	  }
   2434      1.1  christos 
   2435      1.1  christos       /* Otherwise we find the dynamic linker's base address by examining
   2436      1.1  christos 	 the current pc (which should point at the entry point for the
   2437      1.1  christos 	 dynamic linker) and subtracting the offset of the entry point.
   2438      1.1  christos 
   2439      1.1  christos          This is more fragile than the previous approaches, but is a good
   2440      1.1  christos          fallback method because it has actually been working well in
   2441      1.1  christos          most cases.  */
   2442      1.1  christos       if (!load_addr_found)
   2443      1.1  christos 	{
   2444      1.1  christos 	  struct regcache *regcache
   2445      1.1  christos 	    = get_thread_arch_regcache (inferior_ptid, target_gdbarch ());
   2446      1.1  christos 
   2447      1.1  christos 	  load_addr = (regcache_read_pc (regcache)
   2448  1.1.1.5  christos 		       - exec_entry_point (tmp_bfd.get (), tmp_bfd_target));
   2449      1.1  christos 	}
   2450      1.1  christos 
   2451      1.1  christos       if (!loader_found_in_list)
   2452      1.1  christos 	{
   2453      1.1  christos 	  info->debug_loader_name = xstrdup (interp_name);
   2454      1.1  christos 	  info->debug_loader_offset_p = 1;
   2455      1.1  christos 	  info->debug_loader_offset = load_addr;
   2456  1.1.1.5  christos 	  solib_add (NULL, from_tty, auto_solib_add);
   2457      1.1  christos 	}
   2458      1.1  christos 
   2459      1.1  christos       /* Record the relocated start and end address of the dynamic linker
   2460      1.1  christos          text and plt section for svr4_in_dynsym_resolve_code.  */
   2461  1.1.1.5  christos       interp_sect = bfd_get_section_by_name (tmp_bfd.get (), ".text");
   2462      1.1  christos       if (interp_sect)
   2463      1.1  christos 	{
   2464      1.1  christos 	  info->interp_text_sect_low =
   2465  1.1.1.5  christos 	    bfd_section_vma (tmp_bfd.get (), interp_sect) + load_addr;
   2466      1.1  christos 	  info->interp_text_sect_high =
   2467      1.1  christos 	    info->interp_text_sect_low
   2468  1.1.1.5  christos 	    + bfd_section_size (tmp_bfd.get (), interp_sect);
   2469      1.1  christos 	}
   2470  1.1.1.5  christos       interp_sect = bfd_get_section_by_name (tmp_bfd.get (), ".plt");
   2471      1.1  christos       if (interp_sect)
   2472      1.1  christos 	{
   2473      1.1  christos 	  info->interp_plt_sect_low =
   2474  1.1.1.5  christos 	    bfd_section_vma (tmp_bfd.get (), interp_sect) + load_addr;
   2475      1.1  christos 	  info->interp_plt_sect_high =
   2476      1.1  christos 	    info->interp_plt_sect_low
   2477  1.1.1.5  christos 	    + bfd_section_size (tmp_bfd.get (), interp_sect);
   2478      1.1  christos 	}
   2479      1.1  christos 
   2480      1.1  christos       /* Now try to set a breakpoint in the dynamic linker.  */
   2481      1.1  christos       for (bkpt_namep = solib_break_names; *bkpt_namep != NULL; bkpt_namep++)
   2482      1.1  christos 	{
   2483  1.1.1.5  christos 	  sym_addr = gdb_bfd_lookup_symbol (tmp_bfd.get (),
   2484  1.1.1.5  christos 					    cmp_name_and_sec_flags,
   2485  1.1.1.4  christos 					    *bkpt_namep);
   2486      1.1  christos 	  if (sym_addr != 0)
   2487      1.1  christos 	    break;
   2488      1.1  christos 	}
   2489      1.1  christos 
   2490      1.1  christos       if (sym_addr != 0)
   2491      1.1  christos 	/* Convert 'sym_addr' from a function pointer to an address.
   2492      1.1  christos 	   Because we pass tmp_bfd_target instead of the current
   2493      1.1  christos 	   target, this will always produce an unrelocated value.  */
   2494      1.1  christos 	sym_addr = gdbarch_convert_from_func_ptr_addr (target_gdbarch (),
   2495      1.1  christos 						       sym_addr,
   2496      1.1  christos 						       tmp_bfd_target);
   2497      1.1  christos 
   2498      1.1  christos       /* We're done with both the temporary bfd and target.  Closing
   2499      1.1  christos          the target closes the underlying bfd, because it holds the
   2500      1.1  christos          only remaining reference.  */
   2501      1.1  christos       target_close (tmp_bfd_target);
   2502      1.1  christos 
   2503      1.1  christos       if (sym_addr != 0)
   2504      1.1  christos 	{
   2505      1.1  christos 	  svr4_create_solib_event_breakpoints (target_gdbarch (),
   2506      1.1  christos 					       load_addr + sym_addr);
   2507      1.1  christos 	  xfree (interp_name);
   2508      1.1  christos 	  return 1;
   2509      1.1  christos 	}
   2510      1.1  christos 
   2511      1.1  christos       /* For whatever reason we couldn't set a breakpoint in the dynamic
   2512      1.1  christos          linker.  Warn and drop into the old code.  */
   2513      1.1  christos     bkpt_at_symbol:
   2514      1.1  christos       xfree (interp_name);
   2515      1.1  christos       warning (_("Unable to find dynamic linker breakpoint function.\n"
   2516      1.1  christos                "GDB will be unable to debug shared library initializers\n"
   2517      1.1  christos                "and track explicitly loaded dynamic code."));
   2518      1.1  christos     }
   2519      1.1  christos 
   2520      1.1  christos   /* Scan through the lists of symbols, trying to look up the symbol and
   2521      1.1  christos      set a breakpoint there.  Terminate loop when we/if we succeed.  */
   2522      1.1  christos 
   2523      1.1  christos   for (bkpt_namep = solib_break_names; *bkpt_namep != NULL; bkpt_namep++)
   2524      1.1  christos     {
   2525      1.1  christos       msymbol = lookup_minimal_symbol (*bkpt_namep, NULL, symfile_objfile);
   2526  1.1.1.2  christos       if ((msymbol.minsym != NULL)
   2527  1.1.1.2  christos 	  && (BMSYMBOL_VALUE_ADDRESS (msymbol) != 0))
   2528      1.1  christos 	{
   2529  1.1.1.2  christos 	  sym_addr = BMSYMBOL_VALUE_ADDRESS (msymbol);
   2530      1.1  christos 	  sym_addr = gdbarch_convert_from_func_ptr_addr (target_gdbarch (),
   2531      1.1  christos 							 sym_addr,
   2532      1.1  christos 							 &current_target);
   2533      1.1  christos 	  svr4_create_solib_event_breakpoints (target_gdbarch (), sym_addr);
   2534      1.1  christos 	  return 1;
   2535      1.1  christos 	}
   2536      1.1  christos     }
   2537      1.1  christos 
   2538      1.1  christos   if (interp_name != NULL && !current_inferior ()->attach_flag)
   2539      1.1  christos     {
   2540      1.1  christos       for (bkpt_namep = bkpt_names; *bkpt_namep != NULL; bkpt_namep++)
   2541      1.1  christos 	{
   2542      1.1  christos 	  msymbol = lookup_minimal_symbol (*bkpt_namep, NULL, symfile_objfile);
   2543  1.1.1.2  christos 	  if ((msymbol.minsym != NULL)
   2544  1.1.1.2  christos 	      && (BMSYMBOL_VALUE_ADDRESS (msymbol) != 0))
   2545      1.1  christos 	    {
   2546  1.1.1.2  christos 	      sym_addr = BMSYMBOL_VALUE_ADDRESS (msymbol);
   2547      1.1  christos 	      sym_addr = gdbarch_convert_from_func_ptr_addr (target_gdbarch (),
   2548      1.1  christos 							     sym_addr,
   2549      1.1  christos 							     &current_target);
   2550      1.1  christos 	      svr4_create_solib_event_breakpoints (target_gdbarch (), sym_addr);
   2551      1.1  christos 	      return 1;
   2552      1.1  christos 	    }
   2553      1.1  christos 	}
   2554      1.1  christos     }
   2555      1.1  christos   return 0;
   2556      1.1  christos }
   2557      1.1  christos 
   2558      1.1  christos /* Read the ELF program headers from ABFD.  Return the contents and
   2559      1.1  christos    set *PHDRS_SIZE to the size of the program headers.  */
   2560      1.1  christos 
   2561      1.1  christos static gdb_byte *
   2562      1.1  christos read_program_headers_from_bfd (bfd *abfd, int *phdrs_size)
   2563      1.1  christos {
   2564      1.1  christos   Elf_Internal_Ehdr *ehdr;
   2565      1.1  christos   gdb_byte *buf;
   2566      1.1  christos 
   2567      1.1  christos   ehdr = elf_elfheader (abfd);
   2568      1.1  christos 
   2569      1.1  christos   *phdrs_size = ehdr->e_phnum * ehdr->e_phentsize;
   2570      1.1  christos   if (*phdrs_size == 0)
   2571      1.1  christos     return NULL;
   2572      1.1  christos 
   2573  1.1.1.4  christos   buf = (gdb_byte *) xmalloc (*phdrs_size);
   2574      1.1  christos   if (bfd_seek (abfd, ehdr->e_phoff, SEEK_SET) != 0
   2575      1.1  christos       || bfd_bread (buf, *phdrs_size, abfd) != *phdrs_size)
   2576      1.1  christos     {
   2577      1.1  christos       xfree (buf);
   2578      1.1  christos       return NULL;
   2579      1.1  christos     }
   2580      1.1  christos 
   2581      1.1  christos   return buf;
   2582      1.1  christos }
   2583      1.1  christos 
   2584      1.1  christos /* Return 1 and fill *DISPLACEMENTP with detected PIE offset of inferior
   2585      1.1  christos    exec_bfd.  Otherwise return 0.
   2586      1.1  christos 
   2587      1.1  christos    We relocate all of the sections by the same amount.  This
   2588      1.1  christos    behavior is mandated by recent editions of the System V ABI.
   2589      1.1  christos    According to the System V Application Binary Interface,
   2590      1.1  christos    Edition 4.1, page 5-5:
   2591      1.1  christos 
   2592      1.1  christos      ...  Though the system chooses virtual addresses for
   2593      1.1  christos      individual processes, it maintains the segments' relative
   2594      1.1  christos      positions.  Because position-independent code uses relative
   2595      1.1  christos      addressesing between segments, the difference between
   2596      1.1  christos      virtual addresses in memory must match the difference
   2597      1.1  christos      between virtual addresses in the file.  The difference
   2598      1.1  christos      between the virtual address of any segment in memory and
   2599      1.1  christos      the corresponding virtual address in the file is thus a
   2600      1.1  christos      single constant value for any one executable or shared
   2601      1.1  christos      object in a given process.  This difference is the base
   2602      1.1  christos      address.  One use of the base address is to relocate the
   2603      1.1  christos      memory image of the program during dynamic linking.
   2604      1.1  christos 
   2605      1.1  christos    The same language also appears in Edition 4.0 of the System V
   2606      1.1  christos    ABI and is left unspecified in some of the earlier editions.
   2607      1.1  christos 
   2608      1.1  christos    Decide if the objfile needs to be relocated.  As indicated above, we will
   2609      1.1  christos    only be here when execution is stopped.  But during attachment PC can be at
   2610      1.1  christos    arbitrary address therefore regcache_read_pc can be misleading (contrary to
   2611      1.1  christos    the auxv AT_ENTRY value).  Moreover for executable with interpreter section
   2612      1.1  christos    regcache_read_pc would point to the interpreter and not the main executable.
   2613      1.1  christos 
   2614      1.1  christos    So, to summarize, relocations are necessary when the start address obtained
   2615      1.1  christos    from the executable is different from the address in auxv AT_ENTRY entry.
   2616      1.1  christos 
   2617      1.1  christos    [ The astute reader will note that we also test to make sure that
   2618      1.1  christos      the executable in question has the DYNAMIC flag set.  It is my
   2619      1.1  christos      opinion that this test is unnecessary (undesirable even).  It
   2620      1.1  christos      was added to avoid inadvertent relocation of an executable
   2621      1.1  christos      whose e_type member in the ELF header is not ET_DYN.  There may
   2622      1.1  christos      be a time in the future when it is desirable to do relocations
   2623      1.1  christos      on other types of files as well in which case this condition
   2624      1.1  christos      should either be removed or modified to accomodate the new file
   2625      1.1  christos      type.  - Kevin, Nov 2000. ]  */
   2626      1.1  christos 
   2627      1.1  christos static int
   2628      1.1  christos svr4_exec_displacement (CORE_ADDR *displacementp)
   2629      1.1  christos {
   2630      1.1  christos   /* ENTRY_POINT is a possible function descriptor - before
   2631      1.1  christos      a call to gdbarch_convert_from_func_ptr_addr.  */
   2632  1.1.1.3  christos   CORE_ADDR entry_point, exec_displacement;
   2633      1.1  christos 
   2634      1.1  christos   if (exec_bfd == NULL)
   2635      1.1  christos     return 0;
   2636      1.1  christos 
   2637      1.1  christos   /* Therefore for ELF it is ET_EXEC and not ET_DYN.  Both shared libraries
   2638      1.1  christos      being executed themselves and PIE (Position Independent Executable)
   2639      1.1  christos      executables are ET_DYN.  */
   2640      1.1  christos 
   2641      1.1  christos   if ((bfd_get_file_flags (exec_bfd) & DYNAMIC) == 0)
   2642      1.1  christos     return 0;
   2643      1.1  christos 
   2644      1.1  christos   if (target_auxv_search (&current_target, AT_ENTRY, &entry_point) <= 0)
   2645      1.1  christos     return 0;
   2646      1.1  christos 
   2647  1.1.1.3  christos   exec_displacement = entry_point - bfd_get_start_address (exec_bfd);
   2648      1.1  christos 
   2649  1.1.1.3  christos   /* Verify the EXEC_DISPLACEMENT candidate complies with the required page
   2650      1.1  christos      alignment.  It is cheaper than the program headers comparison below.  */
   2651      1.1  christos 
   2652      1.1  christos   if (bfd_get_flavour (exec_bfd) == bfd_target_elf_flavour)
   2653      1.1  christos     {
   2654      1.1  christos       const struct elf_backend_data *elf = get_elf_backend_data (exec_bfd);
   2655      1.1  christos 
   2656      1.1  christos       /* p_align of PT_LOAD segments does not specify any alignment but
   2657      1.1  christos 	 only congruency of addresses:
   2658      1.1  christos 	   p_offset % p_align == p_vaddr % p_align
   2659      1.1  christos 	 Kernel is free to load the executable with lower alignment.  */
   2660      1.1  christos 
   2661  1.1.1.3  christos       if ((exec_displacement & (elf->minpagesize - 1)) != 0)
   2662      1.1  christos 	return 0;
   2663      1.1  christos     }
   2664      1.1  christos 
   2665      1.1  christos   /* Verify that the auxilliary vector describes the same file as exec_bfd, by
   2666      1.1  christos      comparing their program headers.  If the program headers in the auxilliary
   2667      1.1  christos      vector do not match the program headers in the executable, then we are
   2668      1.1  christos      looking at a different file than the one used by the kernel - for
   2669      1.1  christos      instance, "gdb program" connected to "gdbserver :PORT ld.so program".  */
   2670      1.1  christos 
   2671      1.1  christos   if (bfd_get_flavour (exec_bfd) == bfd_target_elf_flavour)
   2672      1.1  christos     {
   2673      1.1  christos       /* Be optimistic and clear OK only if GDB was able to verify the headers
   2674      1.1  christos 	 really do not match.  */
   2675      1.1  christos       int phdrs_size, phdrs2_size, ok = 1;
   2676      1.1  christos       gdb_byte *buf, *buf2;
   2677      1.1  christos       int arch_size;
   2678      1.1  christos 
   2679  1.1.1.4  christos       buf = read_program_header (-1, &phdrs_size, &arch_size, NULL);
   2680      1.1  christos       buf2 = read_program_headers_from_bfd (exec_bfd, &phdrs2_size);
   2681      1.1  christos       if (buf != NULL && buf2 != NULL)
   2682      1.1  christos 	{
   2683      1.1  christos 	  enum bfd_endian byte_order = gdbarch_byte_order (target_gdbarch ());
   2684      1.1  christos 
   2685      1.1  christos 	  /* We are dealing with three different addresses.  EXEC_BFD
   2686      1.1  christos 	     represents current address in on-disk file.  target memory content
   2687      1.1  christos 	     may be different from EXEC_BFD as the file may have been prelinked
   2688      1.1  christos 	     to a different address after the executable has been loaded.
   2689      1.1  christos 	     Moreover the address of placement in target memory can be
   2690      1.1  christos 	     different from what the program headers in target memory say -
   2691      1.1  christos 	     this is the goal of PIE.
   2692      1.1  christos 
   2693      1.1  christos 	     Detected DISPLACEMENT covers both the offsets of PIE placement and
   2694      1.1  christos 	     possible new prelink performed after start of the program.  Here
   2695      1.1  christos 	     relocate BUF and BUF2 just by the EXEC_BFD vs. target memory
   2696      1.1  christos 	     content offset for the verification purpose.  */
   2697      1.1  christos 
   2698      1.1  christos 	  if (phdrs_size != phdrs2_size
   2699      1.1  christos 	      || bfd_get_arch_size (exec_bfd) != arch_size)
   2700      1.1  christos 	    ok = 0;
   2701      1.1  christos 	  else if (arch_size == 32
   2702      1.1  christos 		   && phdrs_size >= sizeof (Elf32_External_Phdr)
   2703      1.1  christos 	           && phdrs_size % sizeof (Elf32_External_Phdr) == 0)
   2704      1.1  christos 	    {
   2705      1.1  christos 	      Elf_Internal_Ehdr *ehdr2 = elf_tdata (exec_bfd)->elf_header;
   2706      1.1  christos 	      Elf_Internal_Phdr *phdr2 = elf_tdata (exec_bfd)->phdr;
   2707      1.1  christos 	      CORE_ADDR displacement = 0;
   2708      1.1  christos 	      int i;
   2709      1.1  christos 
   2710      1.1  christos 	      /* DISPLACEMENT could be found more easily by the difference of
   2711      1.1  christos 		 ehdr2->e_entry.  But we haven't read the ehdr yet, and we
   2712      1.1  christos 		 already have enough information to compute that displacement
   2713      1.1  christos 		 with what we've read.  */
   2714      1.1  christos 
   2715      1.1  christos 	      for (i = 0; i < ehdr2->e_phnum; i++)
   2716      1.1  christos 		if (phdr2[i].p_type == PT_LOAD)
   2717      1.1  christos 		  {
   2718      1.1  christos 		    Elf32_External_Phdr *phdrp;
   2719      1.1  christos 		    gdb_byte *buf_vaddr_p, *buf_paddr_p;
   2720      1.1  christos 		    CORE_ADDR vaddr, paddr;
   2721      1.1  christos 		    CORE_ADDR displacement_vaddr = 0;
   2722      1.1  christos 		    CORE_ADDR displacement_paddr = 0;
   2723      1.1  christos 
   2724      1.1  christos 		    phdrp = &((Elf32_External_Phdr *) buf)[i];
   2725      1.1  christos 		    buf_vaddr_p = (gdb_byte *) &phdrp->p_vaddr;
   2726      1.1  christos 		    buf_paddr_p = (gdb_byte *) &phdrp->p_paddr;
   2727      1.1  christos 
   2728      1.1  christos 		    vaddr = extract_unsigned_integer (buf_vaddr_p, 4,
   2729      1.1  christos 						      byte_order);
   2730      1.1  christos 		    displacement_vaddr = vaddr - phdr2[i].p_vaddr;
   2731      1.1  christos 
   2732      1.1  christos 		    paddr = extract_unsigned_integer (buf_paddr_p, 4,
   2733      1.1  christos 						      byte_order);
   2734      1.1  christos 		    displacement_paddr = paddr - phdr2[i].p_paddr;
   2735      1.1  christos 
   2736      1.1  christos 		    if (displacement_vaddr == displacement_paddr)
   2737      1.1  christos 		      displacement = displacement_vaddr;
   2738      1.1  christos 
   2739      1.1  christos 		    break;
   2740      1.1  christos 		  }
   2741      1.1  christos 
   2742      1.1  christos 	      /* Now compare BUF and BUF2 with optional DISPLACEMENT.  */
   2743      1.1  christos 
   2744      1.1  christos 	      for (i = 0; i < phdrs_size / sizeof (Elf32_External_Phdr); i++)
   2745      1.1  christos 		{
   2746      1.1  christos 		  Elf32_External_Phdr *phdrp;
   2747      1.1  christos 		  Elf32_External_Phdr *phdr2p;
   2748      1.1  christos 		  gdb_byte *buf_vaddr_p, *buf_paddr_p;
   2749      1.1  christos 		  CORE_ADDR vaddr, paddr;
   2750      1.1  christos 		  asection *plt2_asect;
   2751      1.1  christos 
   2752      1.1  christos 		  phdrp = &((Elf32_External_Phdr *) buf)[i];
   2753      1.1  christos 		  buf_vaddr_p = (gdb_byte *) &phdrp->p_vaddr;
   2754      1.1  christos 		  buf_paddr_p = (gdb_byte *) &phdrp->p_paddr;
   2755      1.1  christos 		  phdr2p = &((Elf32_External_Phdr *) buf2)[i];
   2756      1.1  christos 
   2757      1.1  christos 		  /* PT_GNU_STACK is an exception by being never relocated by
   2758      1.1  christos 		     prelink as its addresses are always zero.  */
   2759      1.1  christos 
   2760      1.1  christos 		  if (memcmp (phdrp, phdr2p, sizeof (*phdrp)) == 0)
   2761      1.1  christos 		    continue;
   2762      1.1  christos 
   2763      1.1  christos 		  /* Check also other adjustment combinations - PR 11786.  */
   2764      1.1  christos 
   2765      1.1  christos 		  vaddr = extract_unsigned_integer (buf_vaddr_p, 4,
   2766      1.1  christos 						    byte_order);
   2767      1.1  christos 		  vaddr -= displacement;
   2768      1.1  christos 		  store_unsigned_integer (buf_vaddr_p, 4, byte_order, vaddr);
   2769      1.1  christos 
   2770      1.1  christos 		  paddr = extract_unsigned_integer (buf_paddr_p, 4,
   2771      1.1  christos 						    byte_order);
   2772      1.1  christos 		  paddr -= displacement;
   2773      1.1  christos 		  store_unsigned_integer (buf_paddr_p, 4, byte_order, paddr);
   2774      1.1  christos 
   2775      1.1  christos 		  if (memcmp (phdrp, phdr2p, sizeof (*phdrp)) == 0)
   2776      1.1  christos 		    continue;
   2777      1.1  christos 
   2778      1.1  christos 		  /* Strip modifies the flags and alignment of PT_GNU_RELRO.
   2779      1.1  christos 		     CentOS-5 has problems with filesz, memsz as well.
   2780      1.1  christos 		     See PR 11786.  */
   2781      1.1  christos 		  if (phdr2[i].p_type == PT_GNU_RELRO)
   2782      1.1  christos 		    {
   2783      1.1  christos 		      Elf32_External_Phdr tmp_phdr = *phdrp;
   2784      1.1  christos 		      Elf32_External_Phdr tmp_phdr2 = *phdr2p;
   2785      1.1  christos 
   2786      1.1  christos 		      memset (tmp_phdr.p_filesz, 0, 4);
   2787      1.1  christos 		      memset (tmp_phdr.p_memsz, 0, 4);
   2788      1.1  christos 		      memset (tmp_phdr.p_flags, 0, 4);
   2789      1.1  christos 		      memset (tmp_phdr.p_align, 0, 4);
   2790      1.1  christos 		      memset (tmp_phdr2.p_filesz, 0, 4);
   2791      1.1  christos 		      memset (tmp_phdr2.p_memsz, 0, 4);
   2792      1.1  christos 		      memset (tmp_phdr2.p_flags, 0, 4);
   2793      1.1  christos 		      memset (tmp_phdr2.p_align, 0, 4);
   2794      1.1  christos 
   2795      1.1  christos 		      if (memcmp (&tmp_phdr, &tmp_phdr2, sizeof (tmp_phdr))
   2796      1.1  christos 			  == 0)
   2797      1.1  christos 			continue;
   2798      1.1  christos 		    }
   2799      1.1  christos 
   2800      1.1  christos 		  /* prelink can convert .plt SHT_NOBITS to SHT_PROGBITS.  */
   2801      1.1  christos 		  plt2_asect = bfd_get_section_by_name (exec_bfd, ".plt");
   2802      1.1  christos 		  if (plt2_asect)
   2803      1.1  christos 		    {
   2804      1.1  christos 		      int content2;
   2805      1.1  christos 		      gdb_byte *buf_filesz_p = (gdb_byte *) &phdrp->p_filesz;
   2806      1.1  christos 		      CORE_ADDR filesz;
   2807      1.1  christos 
   2808      1.1  christos 		      content2 = (bfd_get_section_flags (exec_bfd, plt2_asect)
   2809      1.1  christos 				  & SEC_HAS_CONTENTS) != 0;
   2810      1.1  christos 
   2811      1.1  christos 		      filesz = extract_unsigned_integer (buf_filesz_p, 4,
   2812      1.1  christos 							 byte_order);
   2813      1.1  christos 
   2814      1.1  christos 		      /* PLT2_ASECT is from on-disk file (exec_bfd) while
   2815      1.1  christos 			 FILESZ is from the in-memory image.  */
   2816      1.1  christos 		      if (content2)
   2817      1.1  christos 			filesz += bfd_get_section_size (plt2_asect);
   2818      1.1  christos 		      else
   2819      1.1  christos 			filesz -= bfd_get_section_size (plt2_asect);
   2820      1.1  christos 
   2821      1.1  christos 		      store_unsigned_integer (buf_filesz_p, 4, byte_order,
   2822      1.1  christos 					      filesz);
   2823      1.1  christos 
   2824      1.1  christos 		      if (memcmp (phdrp, phdr2p, sizeof (*phdrp)) == 0)
   2825      1.1  christos 			continue;
   2826      1.1  christos 		    }
   2827      1.1  christos 
   2828      1.1  christos 		  ok = 0;
   2829      1.1  christos 		  break;
   2830      1.1  christos 		}
   2831      1.1  christos 	    }
   2832      1.1  christos 	  else if (arch_size == 64
   2833      1.1  christos 		   && phdrs_size >= sizeof (Elf64_External_Phdr)
   2834      1.1  christos 	           && phdrs_size % sizeof (Elf64_External_Phdr) == 0)
   2835      1.1  christos 	    {
   2836      1.1  christos 	      Elf_Internal_Ehdr *ehdr2 = elf_tdata (exec_bfd)->elf_header;
   2837      1.1  christos 	      Elf_Internal_Phdr *phdr2 = elf_tdata (exec_bfd)->phdr;
   2838      1.1  christos 	      CORE_ADDR displacement = 0;
   2839      1.1  christos 	      int i;
   2840      1.1  christos 
   2841      1.1  christos 	      /* DISPLACEMENT could be found more easily by the difference of
   2842      1.1  christos 		 ehdr2->e_entry.  But we haven't read the ehdr yet, and we
   2843      1.1  christos 		 already have enough information to compute that displacement
   2844      1.1  christos 		 with what we've read.  */
   2845      1.1  christos 
   2846      1.1  christos 	      for (i = 0; i < ehdr2->e_phnum; i++)
   2847      1.1  christos 		if (phdr2[i].p_type == PT_LOAD)
   2848      1.1  christos 		  {
   2849      1.1  christos 		    Elf64_External_Phdr *phdrp;
   2850      1.1  christos 		    gdb_byte *buf_vaddr_p, *buf_paddr_p;
   2851      1.1  christos 		    CORE_ADDR vaddr, paddr;
   2852      1.1  christos 		    CORE_ADDR displacement_vaddr = 0;
   2853      1.1  christos 		    CORE_ADDR displacement_paddr = 0;
   2854      1.1  christos 
   2855      1.1  christos 		    phdrp = &((Elf64_External_Phdr *) buf)[i];
   2856      1.1  christos 		    buf_vaddr_p = (gdb_byte *) &phdrp->p_vaddr;
   2857      1.1  christos 		    buf_paddr_p = (gdb_byte *) &phdrp->p_paddr;
   2858      1.1  christos 
   2859      1.1  christos 		    vaddr = extract_unsigned_integer (buf_vaddr_p, 8,
   2860      1.1  christos 						      byte_order);
   2861      1.1  christos 		    displacement_vaddr = vaddr - phdr2[i].p_vaddr;
   2862      1.1  christos 
   2863      1.1  christos 		    paddr = extract_unsigned_integer (buf_paddr_p, 8,
   2864      1.1  christos 						      byte_order);
   2865      1.1  christos 		    displacement_paddr = paddr - phdr2[i].p_paddr;
   2866      1.1  christos 
   2867      1.1  christos 		    if (displacement_vaddr == displacement_paddr)
   2868      1.1  christos 		      displacement = displacement_vaddr;
   2869      1.1  christos 
   2870      1.1  christos 		    break;
   2871      1.1  christos 		  }
   2872      1.1  christos 
   2873      1.1  christos 	      /* Now compare BUF and BUF2 with optional DISPLACEMENT.  */
   2874      1.1  christos 
   2875      1.1  christos 	      for (i = 0; i < phdrs_size / sizeof (Elf64_External_Phdr); i++)
   2876      1.1  christos 		{
   2877      1.1  christos 		  Elf64_External_Phdr *phdrp;
   2878      1.1  christos 		  Elf64_External_Phdr *phdr2p;
   2879      1.1  christos 		  gdb_byte *buf_vaddr_p, *buf_paddr_p;
   2880      1.1  christos 		  CORE_ADDR vaddr, paddr;
   2881      1.1  christos 		  asection *plt2_asect;
   2882      1.1  christos 
   2883      1.1  christos 		  phdrp = &((Elf64_External_Phdr *) buf)[i];
   2884      1.1  christos 		  buf_vaddr_p = (gdb_byte *) &phdrp->p_vaddr;
   2885      1.1  christos 		  buf_paddr_p = (gdb_byte *) &phdrp->p_paddr;
   2886      1.1  christos 		  phdr2p = &((Elf64_External_Phdr *) buf2)[i];
   2887      1.1  christos 
   2888      1.1  christos 		  /* PT_GNU_STACK is an exception by being never relocated by
   2889      1.1  christos 		     prelink as its addresses are always zero.  */
   2890      1.1  christos 
   2891      1.1  christos 		  if (memcmp (phdrp, phdr2p, sizeof (*phdrp)) == 0)
   2892      1.1  christos 		    continue;
   2893      1.1  christos 
   2894      1.1  christos 		  /* Check also other adjustment combinations - PR 11786.  */
   2895      1.1  christos 
   2896      1.1  christos 		  vaddr = extract_unsigned_integer (buf_vaddr_p, 8,
   2897      1.1  christos 						    byte_order);
   2898      1.1  christos 		  vaddr -= displacement;
   2899      1.1  christos 		  store_unsigned_integer (buf_vaddr_p, 8, byte_order, vaddr);
   2900      1.1  christos 
   2901      1.1  christos 		  paddr = extract_unsigned_integer (buf_paddr_p, 8,
   2902      1.1  christos 						    byte_order);
   2903      1.1  christos 		  paddr -= displacement;
   2904      1.1  christos 		  store_unsigned_integer (buf_paddr_p, 8, byte_order, paddr);
   2905      1.1  christos 
   2906      1.1  christos 		  if (memcmp (phdrp, phdr2p, sizeof (*phdrp)) == 0)
   2907      1.1  christos 		    continue;
   2908      1.1  christos 
   2909      1.1  christos 		  /* Strip modifies the flags and alignment of PT_GNU_RELRO.
   2910      1.1  christos 		     CentOS-5 has problems with filesz, memsz as well.
   2911      1.1  christos 		     See PR 11786.  */
   2912      1.1  christos 		  if (phdr2[i].p_type == PT_GNU_RELRO)
   2913      1.1  christos 		    {
   2914      1.1  christos 		      Elf64_External_Phdr tmp_phdr = *phdrp;
   2915      1.1  christos 		      Elf64_External_Phdr tmp_phdr2 = *phdr2p;
   2916      1.1  christos 
   2917      1.1  christos 		      memset (tmp_phdr.p_filesz, 0, 8);
   2918      1.1  christos 		      memset (tmp_phdr.p_memsz, 0, 8);
   2919      1.1  christos 		      memset (tmp_phdr.p_flags, 0, 4);
   2920      1.1  christos 		      memset (tmp_phdr.p_align, 0, 8);
   2921      1.1  christos 		      memset (tmp_phdr2.p_filesz, 0, 8);
   2922      1.1  christos 		      memset (tmp_phdr2.p_memsz, 0, 8);
   2923      1.1  christos 		      memset (tmp_phdr2.p_flags, 0, 4);
   2924      1.1  christos 		      memset (tmp_phdr2.p_align, 0, 8);
   2925      1.1  christos 
   2926      1.1  christos 		      if (memcmp (&tmp_phdr, &tmp_phdr2, sizeof (tmp_phdr))
   2927      1.1  christos 			  == 0)
   2928      1.1  christos 			continue;
   2929      1.1  christos 		    }
   2930      1.1  christos 
   2931      1.1  christos 		  /* prelink can convert .plt SHT_NOBITS to SHT_PROGBITS.  */
   2932      1.1  christos 		  plt2_asect = bfd_get_section_by_name (exec_bfd, ".plt");
   2933      1.1  christos 		  if (plt2_asect)
   2934      1.1  christos 		    {
   2935      1.1  christos 		      int content2;
   2936      1.1  christos 		      gdb_byte *buf_filesz_p = (gdb_byte *) &phdrp->p_filesz;
   2937      1.1  christos 		      CORE_ADDR filesz;
   2938      1.1  christos 
   2939      1.1  christos 		      content2 = (bfd_get_section_flags (exec_bfd, plt2_asect)
   2940      1.1  christos 				  & SEC_HAS_CONTENTS) != 0;
   2941      1.1  christos 
   2942      1.1  christos 		      filesz = extract_unsigned_integer (buf_filesz_p, 8,
   2943      1.1  christos 							 byte_order);
   2944      1.1  christos 
   2945      1.1  christos 		      /* PLT2_ASECT is from on-disk file (exec_bfd) while
   2946      1.1  christos 			 FILESZ is from the in-memory image.  */
   2947      1.1  christos 		      if (content2)
   2948      1.1  christos 			filesz += bfd_get_section_size (plt2_asect);
   2949      1.1  christos 		      else
   2950      1.1  christos 			filesz -= bfd_get_section_size (plt2_asect);
   2951      1.1  christos 
   2952      1.1  christos 		      store_unsigned_integer (buf_filesz_p, 8, byte_order,
   2953      1.1  christos 					      filesz);
   2954      1.1  christos 
   2955      1.1  christos 		      if (memcmp (phdrp, phdr2p, sizeof (*phdrp)) == 0)
   2956      1.1  christos 			continue;
   2957      1.1  christos 		    }
   2958      1.1  christos 
   2959      1.1  christos 		  ok = 0;
   2960      1.1  christos 		  break;
   2961      1.1  christos 		}
   2962      1.1  christos 	    }
   2963      1.1  christos 	  else
   2964      1.1  christos 	    ok = 0;
   2965      1.1  christos 	}
   2966      1.1  christos 
   2967      1.1  christos       xfree (buf);
   2968      1.1  christos       xfree (buf2);
   2969      1.1  christos 
   2970      1.1  christos       if (!ok)
   2971      1.1  christos 	return 0;
   2972      1.1  christos     }
   2973      1.1  christos 
   2974      1.1  christos   if (info_verbose)
   2975      1.1  christos     {
   2976      1.1  christos       /* It can be printed repeatedly as there is no easy way to check
   2977      1.1  christos 	 the executable symbols/file has been already relocated to
   2978      1.1  christos 	 displacement.  */
   2979      1.1  christos 
   2980      1.1  christos       printf_unfiltered (_("Using PIE (Position Independent Executable) "
   2981      1.1  christos 			   "displacement %s for \"%s\".\n"),
   2982  1.1.1.3  christos 			 paddress (target_gdbarch (), exec_displacement),
   2983      1.1  christos 			 bfd_get_filename (exec_bfd));
   2984      1.1  christos     }
   2985      1.1  christos 
   2986  1.1.1.3  christos   *displacementp = exec_displacement;
   2987      1.1  christos   return 1;
   2988      1.1  christos }
   2989      1.1  christos 
   2990      1.1  christos /* Relocate the main executable.  This function should be called upon
   2991      1.1  christos    stopping the inferior process at the entry point to the program.
   2992      1.1  christos    The entry point from BFD is compared to the AT_ENTRY of AUXV and if they are
   2993      1.1  christos    different, the main executable is relocated by the proper amount.  */
   2994      1.1  christos 
   2995      1.1  christos static void
   2996      1.1  christos svr4_relocate_main_executable (void)
   2997      1.1  christos {
   2998      1.1  christos   CORE_ADDR displacement;
   2999      1.1  christos 
   3000      1.1  christos   /* If we are re-running this executable, SYMFILE_OBJFILE->SECTION_OFFSETS
   3001      1.1  christos      probably contains the offsets computed using the PIE displacement
   3002      1.1  christos      from the previous run, which of course are irrelevant for this run.
   3003      1.1  christos      So we need to determine the new PIE displacement and recompute the
   3004      1.1  christos      section offsets accordingly, even if SYMFILE_OBJFILE->SECTION_OFFSETS
   3005      1.1  christos      already contains pre-computed offsets.
   3006      1.1  christos 
   3007      1.1  christos      If we cannot compute the PIE displacement, either:
   3008      1.1  christos 
   3009      1.1  christos        - The executable is not PIE.
   3010      1.1  christos 
   3011      1.1  christos        - SYMFILE_OBJFILE does not match the executable started in the target.
   3012      1.1  christos 	 This can happen for main executable symbols loaded at the host while
   3013      1.1  christos 	 `ld.so --ld-args main-executable' is loaded in the target.
   3014      1.1  christos 
   3015      1.1  christos      Then we leave the section offsets untouched and use them as is for
   3016      1.1  christos      this run.  Either:
   3017      1.1  christos 
   3018      1.1  christos        - These section offsets were properly reset earlier, and thus
   3019      1.1  christos 	 already contain the correct values.  This can happen for instance
   3020      1.1  christos 	 when reconnecting via the remote protocol to a target that supports
   3021      1.1  christos 	 the `qOffsets' packet.
   3022      1.1  christos 
   3023      1.1  christos        - The section offsets were not reset earlier, and the best we can
   3024      1.1  christos 	 hope is that the old offsets are still applicable to the new run.  */
   3025      1.1  christos 
   3026      1.1  christos   if (! svr4_exec_displacement (&displacement))
   3027      1.1  christos     return;
   3028      1.1  christos 
   3029      1.1  christos   /* Even DISPLACEMENT 0 is a valid new difference of in-memory vs. in-file
   3030      1.1  christos      addresses.  */
   3031      1.1  christos 
   3032      1.1  christos   if (symfile_objfile)
   3033      1.1  christos     {
   3034      1.1  christos       struct section_offsets *new_offsets;
   3035      1.1  christos       int i;
   3036      1.1  christos 
   3037  1.1.1.4  christos       new_offsets = XALLOCAVEC (struct section_offsets,
   3038  1.1.1.4  christos 				symfile_objfile->num_sections);
   3039      1.1  christos 
   3040      1.1  christos       for (i = 0; i < symfile_objfile->num_sections; i++)
   3041      1.1  christos 	new_offsets->offsets[i] = displacement;
   3042      1.1  christos 
   3043      1.1  christos       objfile_relocate (symfile_objfile, new_offsets);
   3044      1.1  christos     }
   3045      1.1  christos   else if (exec_bfd)
   3046      1.1  christos     {
   3047      1.1  christos       asection *asect;
   3048      1.1  christos 
   3049      1.1  christos       for (asect = exec_bfd->sections; asect != NULL; asect = asect->next)
   3050      1.1  christos 	exec_set_section_address (bfd_get_filename (exec_bfd), asect->index,
   3051      1.1  christos 				  (bfd_section_vma (exec_bfd, asect)
   3052      1.1  christos 				   + displacement));
   3053      1.1  christos     }
   3054      1.1  christos }
   3055      1.1  christos 
   3056      1.1  christos /* Implement the "create_inferior_hook" target_solib_ops method.
   3057      1.1  christos 
   3058      1.1  christos    For SVR4 executables, this first instruction is either the first
   3059      1.1  christos    instruction in the dynamic linker (for dynamically linked
   3060      1.1  christos    executables) or the instruction at "start" for statically linked
   3061      1.1  christos    executables.  For dynamically linked executables, the system
   3062      1.1  christos    first exec's /lib/libc.so.N, which contains the dynamic linker,
   3063      1.1  christos    and starts it running.  The dynamic linker maps in any needed
   3064      1.1  christos    shared libraries, maps in the actual user executable, and then
   3065      1.1  christos    jumps to "start" in the user executable.
   3066      1.1  christos 
   3067      1.1  christos    We can arrange to cooperate with the dynamic linker to discover the
   3068      1.1  christos    names of shared libraries that are dynamically linked, and the base
   3069      1.1  christos    addresses to which they are linked.
   3070      1.1  christos 
   3071      1.1  christos    This function is responsible for discovering those names and
   3072      1.1  christos    addresses, and saving sufficient information about them to allow
   3073      1.1  christos    their symbols to be read at a later time.  */
   3074      1.1  christos 
   3075      1.1  christos static void
   3076      1.1  christos svr4_solib_create_inferior_hook (int from_tty)
   3077      1.1  christos {
   3078      1.1  christos   struct svr4_info *info;
   3079      1.1  christos 
   3080      1.1  christos   info = get_svr4_info ();
   3081      1.1  christos 
   3082      1.1  christos   /* Clear the probes-based interface's state.  */
   3083      1.1  christos   free_probes_table (info);
   3084      1.1  christos   free_solib_list (info);
   3085      1.1  christos 
   3086      1.1  christos   /* Relocate the main executable if necessary.  */
   3087      1.1  christos   svr4_relocate_main_executable ();
   3088      1.1  christos 
   3089      1.1  christos   /* No point setting a breakpoint in the dynamic linker if we can't
   3090      1.1  christos      hit it (e.g., a core file, or a trace file).  */
   3091      1.1  christos   if (!target_has_execution)
   3092      1.1  christos     return;
   3093      1.1  christos 
   3094      1.1  christos   if (!svr4_have_link_map_offsets ())
   3095      1.1  christos     return;
   3096      1.1  christos 
   3097      1.1  christos   if (!enable_break (info, from_tty))
   3098      1.1  christos     return;
   3099      1.1  christos }
   3100      1.1  christos 
   3101      1.1  christos static void
   3102      1.1  christos svr4_clear_solib (void)
   3103      1.1  christos {
   3104      1.1  christos   struct svr4_info *info;
   3105      1.1  christos 
   3106      1.1  christos   info = get_svr4_info ();
   3107      1.1  christos   info->debug_base = 0;
   3108      1.1  christos   info->debug_loader_offset_p = 0;
   3109      1.1  christos   info->debug_loader_offset = 0;
   3110      1.1  christos   xfree (info->debug_loader_name);
   3111      1.1  christos   info->debug_loader_name = NULL;
   3112      1.1  christos }
   3113      1.1  christos 
   3114      1.1  christos /* Clear any bits of ADDR that wouldn't fit in a target-format
   3115      1.1  christos    data pointer.  "Data pointer" here refers to whatever sort of
   3116      1.1  christos    address the dynamic linker uses to manage its sections.  At the
   3117      1.1  christos    moment, we don't support shared libraries on any processors where
   3118      1.1  christos    code and data pointers are different sizes.
   3119      1.1  christos 
   3120      1.1  christos    This isn't really the right solution.  What we really need here is
   3121      1.1  christos    a way to do arithmetic on CORE_ADDR values that respects the
   3122      1.1  christos    natural pointer/address correspondence.  (For example, on the MIPS,
   3123      1.1  christos    converting a 32-bit pointer to a 64-bit CORE_ADDR requires you to
   3124      1.1  christos    sign-extend the value.  There, simply truncating the bits above
   3125      1.1  christos    gdbarch_ptr_bit, as we do below, is no good.)  This should probably
   3126      1.1  christos    be a new gdbarch method or something.  */
   3127      1.1  christos static CORE_ADDR
   3128      1.1  christos svr4_truncate_ptr (CORE_ADDR addr)
   3129      1.1  christos {
   3130      1.1  christos   if (gdbarch_ptr_bit (target_gdbarch ()) == sizeof (CORE_ADDR) * 8)
   3131      1.1  christos     /* We don't need to truncate anything, and the bit twiddling below
   3132      1.1  christos        will fail due to overflow problems.  */
   3133      1.1  christos     return addr;
   3134      1.1  christos   else
   3135      1.1  christos     return addr & (((CORE_ADDR) 1 << gdbarch_ptr_bit (target_gdbarch ())) - 1);
   3136      1.1  christos }
   3137      1.1  christos 
   3138      1.1  christos 
   3139      1.1  christos static void
   3140      1.1  christos svr4_relocate_section_addresses (struct so_list *so,
   3141      1.1  christos                                  struct target_section *sec)
   3142      1.1  christos {
   3143      1.1  christos   bfd *abfd = sec->the_bfd_section->owner;
   3144      1.1  christos 
   3145      1.1  christos   sec->addr = svr4_truncate_ptr (sec->addr + lm_addr_check (so, abfd));
   3146      1.1  christos   sec->endaddr = svr4_truncate_ptr (sec->endaddr + lm_addr_check (so, abfd));
   3147      1.1  christos }
   3148      1.1  christos 
   3149      1.1  christos 
   3151      1.1  christos /* Architecture-specific operations.  */
   3152      1.1  christos 
   3153      1.1  christos /* Per-architecture data key.  */
   3154      1.1  christos static struct gdbarch_data *solib_svr4_data;
   3155      1.1  christos 
   3156      1.1  christos struct solib_svr4_ops
   3157      1.1  christos {
   3158      1.1  christos   /* Return a description of the layout of `struct link_map'.  */
   3159      1.1  christos   struct link_map_offsets *(*fetch_link_map_offsets)(void);
   3160      1.1  christos };
   3161      1.1  christos 
   3162      1.1  christos /* Return a default for the architecture-specific operations.  */
   3163      1.1  christos 
   3164      1.1  christos static void *
   3165      1.1  christos solib_svr4_init (struct obstack *obstack)
   3166      1.1  christos {
   3167      1.1  christos   struct solib_svr4_ops *ops;
   3168      1.1  christos 
   3169      1.1  christos   ops = OBSTACK_ZALLOC (obstack, struct solib_svr4_ops);
   3170      1.1  christos   ops->fetch_link_map_offsets = NULL;
   3171      1.1  christos   return ops;
   3172      1.1  christos }
   3173      1.1  christos 
   3174      1.1  christos /* Set the architecture-specific `struct link_map_offsets' fetcher for
   3175      1.1  christos    GDBARCH to FLMO.  Also, install SVR4 solib_ops into GDBARCH.  */
   3176      1.1  christos 
   3177      1.1  christos void
   3178      1.1  christos set_solib_svr4_fetch_link_map_offsets (struct gdbarch *gdbarch,
   3179      1.1  christos                                        struct link_map_offsets *(*flmo) (void))
   3180  1.1.1.4  christos {
   3181  1.1.1.4  christos   struct solib_svr4_ops *ops
   3182      1.1  christos     = (struct solib_svr4_ops *) gdbarch_data (gdbarch, solib_svr4_data);
   3183      1.1  christos 
   3184      1.1  christos   ops->fetch_link_map_offsets = flmo;
   3185      1.1  christos 
   3186      1.1  christos   set_solib_ops (gdbarch, &svr4_so_ops);
   3187      1.1  christos }
   3188      1.1  christos 
   3189      1.1  christos /* Fetch a link_map_offsets structure using the architecture-specific
   3190      1.1  christos    `struct link_map_offsets' fetcher.  */
   3191      1.1  christos 
   3192      1.1  christos static struct link_map_offsets *
   3193      1.1  christos svr4_fetch_link_map_offsets (void)
   3194  1.1.1.4  christos {
   3195  1.1.1.4  christos   struct solib_svr4_ops *ops
   3196  1.1.1.4  christos     = (struct solib_svr4_ops *) gdbarch_data (target_gdbarch (),
   3197      1.1  christos 					      solib_svr4_data);
   3198      1.1  christos 
   3199      1.1  christos   gdb_assert (ops->fetch_link_map_offsets);
   3200      1.1  christos   return ops->fetch_link_map_offsets ();
   3201      1.1  christos }
   3202      1.1  christos 
   3203      1.1  christos /* Return 1 if a link map offset fetcher has been defined, 0 otherwise.  */
   3204      1.1  christos 
   3205      1.1  christos static int
   3206      1.1  christos svr4_have_link_map_offsets (void)
   3207  1.1.1.4  christos {
   3208  1.1.1.4  christos   struct solib_svr4_ops *ops
   3209  1.1.1.4  christos     = (struct solib_svr4_ops *) gdbarch_data (target_gdbarch (),
   3210      1.1  christos 					      solib_svr4_data);
   3211      1.1  christos 
   3212      1.1  christos   return (ops->fetch_link_map_offsets != NULL);
   3213      1.1  christos }
   3214      1.1  christos 
   3215      1.1  christos 
   3217      1.1  christos /* Most OS'es that have SVR4-style ELF dynamic libraries define a
   3218      1.1  christos    `struct r_debug' and a `struct link_map' that are binary compatible
   3219      1.1  christos    with the origional SVR4 implementation.  */
   3220      1.1  christos 
   3221      1.1  christos /* Fetch (and possibly build) an appropriate `struct link_map_offsets'
   3222      1.1  christos    for an ILP32 SVR4 system.  */
   3223      1.1  christos 
   3224      1.1  christos struct link_map_offsets *
   3225      1.1  christos svr4_ilp32_fetch_link_map_offsets (void)
   3226      1.1  christos {
   3227      1.1  christos   static struct link_map_offsets lmo;
   3228      1.1  christos   static struct link_map_offsets *lmp = NULL;
   3229      1.1  christos 
   3230      1.1  christos   if (lmp == NULL)
   3231      1.1  christos     {
   3232      1.1  christos       lmp = &lmo;
   3233      1.1  christos 
   3234      1.1  christos       lmo.r_version_offset = 0;
   3235      1.1  christos       lmo.r_version_size = 4;
   3236      1.1  christos       lmo.r_map_offset = 4;
   3237      1.1  christos       lmo.r_brk_offset = 8;
   3238      1.1  christos       lmo.r_ldsomap_offset = 20;
   3239      1.1  christos 
   3240      1.1  christos       /* Everything we need is in the first 20 bytes.  */
   3241      1.1  christos       lmo.link_map_size = 20;
   3242      1.1  christos       lmo.l_addr_offset = 0;
   3243      1.1  christos       lmo.l_name_offset = 4;
   3244      1.1  christos       lmo.l_ld_offset = 8;
   3245      1.1  christos       lmo.l_next_offset = 12;
   3246      1.1  christos       lmo.l_prev_offset = 16;
   3247      1.1  christos     }
   3248      1.1  christos 
   3249      1.1  christos   return lmp;
   3250      1.1  christos }
   3251      1.1  christos 
   3252      1.1  christos /* Fetch (and possibly build) an appropriate `struct link_map_offsets'
   3253      1.1  christos    for an LP64 SVR4 system.  */
   3254      1.1  christos 
   3255      1.1  christos struct link_map_offsets *
   3256      1.1  christos svr4_lp64_fetch_link_map_offsets (void)
   3257      1.1  christos {
   3258      1.1  christos   static struct link_map_offsets lmo;
   3259      1.1  christos   static struct link_map_offsets *lmp = NULL;
   3260      1.1  christos 
   3261      1.1  christos   if (lmp == NULL)
   3262      1.1  christos     {
   3263      1.1  christos       lmp = &lmo;
   3264      1.1  christos 
   3265      1.1  christos       lmo.r_version_offset = 0;
   3266      1.1  christos       lmo.r_version_size = 4;
   3267      1.1  christos       lmo.r_map_offset = 8;
   3268      1.1  christos       lmo.r_brk_offset = 16;
   3269      1.1  christos       lmo.r_ldsomap_offset = 40;
   3270      1.1  christos 
   3271      1.1  christos       /* Everything we need is in the first 40 bytes.  */
   3272      1.1  christos       lmo.link_map_size = 40;
   3273      1.1  christos       lmo.l_addr_offset = 0;
   3274      1.1  christos       lmo.l_name_offset = 8;
   3275      1.1  christos       lmo.l_ld_offset = 16;
   3276      1.1  christos       lmo.l_next_offset = 24;
   3277      1.1  christos       lmo.l_prev_offset = 32;
   3278      1.1  christos     }
   3279      1.1  christos 
   3280      1.1  christos   return lmp;
   3281      1.1  christos }
   3282      1.1  christos 
   3283      1.1  christos 
   3285      1.1  christos struct target_so_ops svr4_so_ops;
   3286      1.1  christos 
   3287      1.1  christos /* Lookup global symbol for ELF DSOs linked with -Bsymbolic.  Those DSOs have a
   3288  1.1.1.4  christos    different rule for symbol lookup.  The lookup begins here in the DSO, not in
   3289  1.1.1.2  christos    the main executable.  */
   3290      1.1  christos 
   3291      1.1  christos static struct block_symbol
   3292      1.1  christos elf_lookup_lib_symbol (struct objfile *objfile,
   3293      1.1  christos 		       const char *name,
   3294      1.1  christos 		       const domain_enum domain)
   3295      1.1  christos {
   3296      1.1  christos   bfd *abfd;
   3297      1.1  christos 
   3298      1.1  christos   if (objfile == symfile_objfile)
   3299      1.1  christos     abfd = exec_bfd;
   3300      1.1  christos   else
   3301      1.1  christos     {
   3302      1.1  christos       /* OBJFILE should have been passed as the non-debug one.  */
   3303      1.1  christos       gdb_assert (objfile->separate_debug_objfile_backlink == NULL);
   3304      1.1  christos 
   3305  1.1.1.4  christos       abfd = objfile->obfd;
   3306  1.1.1.4  christos     }
   3307      1.1  christos 
   3308      1.1  christos   if (abfd == NULL || scan_dyntag (DT_SYMBOLIC, abfd, NULL, NULL) != 1)
   3309      1.1  christos     return (struct block_symbol) {NULL, NULL};
   3310      1.1  christos 
   3311      1.1  christos   return lookup_global_symbol_from_objfile (objfile, name, domain);
   3312      1.1  christos }
   3313      1.1  christos 
   3314      1.1  christos extern initialize_file_ftype _initialize_svr4_solib; /* -Wmissing-prototypes */
   3315      1.1  christos 
   3316      1.1  christos void
   3317      1.1  christos _initialize_svr4_solib (void)
   3318      1.1  christos {
   3319      1.1  christos   solib_svr4_data = gdbarch_data_register_pre_init (solib_svr4_init);
   3320      1.1  christos   solib_svr4_pspace_data
   3321      1.1  christos     = register_program_space_data_with_cleanup (NULL, svr4_pspace_data_cleanup);
   3322      1.1  christos 
   3323      1.1  christos   svr4_so_ops.relocate_section_addresses = svr4_relocate_section_addresses;
   3324      1.1  christos   svr4_so_ops.free_so = svr4_free_so;
   3325      1.1  christos   svr4_so_ops.clear_so = svr4_clear_so;
   3326      1.1  christos   svr4_so_ops.clear_solib = svr4_clear_solib;
   3327      1.1  christos   svr4_so_ops.solib_create_inferior_hook = svr4_solib_create_inferior_hook;
   3328      1.1  christos   svr4_so_ops.current_sos = svr4_current_sos;
   3329      1.1  christos   svr4_so_ops.open_symbol_file_object = open_symbol_file_object;
   3330      1.1  christos   svr4_so_ops.in_dynsym_resolve_code = svr4_in_dynsym_resolve_code;
   3331      1.1  christos   svr4_so_ops.bfd_open = solib_bfd_open;
   3332      1.1  christos   svr4_so_ops.lookup_lib_global_symbol = elf_lookup_lib_symbol;
   3333      1.1  christos   svr4_so_ops.same = svr4_same;
   3334      1.1  christos   svr4_so_ops.keep_data_in_core = svr4_keep_data_in_core;
   3335                      svr4_so_ops.update_breakpoints = svr4_update_solib_event_breakpoints;
   3336                      svr4_so_ops.handle_event = svr4_handle_solib_event;
   3337                    }
   3338