gdb/solib-ia64-hpux.c - gdb
Global variables defined
Data types defined
Functions defined
Macros defined
Source code
- #include "defs.h"
- #include "ia64-tdep.h"
- #include "ia64-hpux-tdep.h"
- #include "solib-ia64-hpux.h"
- #include "solist.h"
- #include "solib.h"
- #include "target.h"
- #include "gdbtypes.h"
- #include "inferior.h"
- #include "gdbcore.h"
- #include "regcache.h"
- #include "opcode/ia64.h"
- #include "symfile.h"
- #include "objfiles.h"
- #include "elf-bfd.h"
- #define _LOAD_MODULE_DESC_EXT
- #include <sys/ttrace.h>
- #include <dlfcn.h>
- #include <elf.h>
- #include <service_mgr.h>
- #include <crt0.h>
- #define IA64_R32_PSEUDO_REGNUM (IA64_NAT127_REGNUM + 2)
- struct lm_info
- {
-
- struct load_module_desc module_desc;
-
- CORE_ADDR text_start;
-
- CORE_ADDR data_start;
- };
- static struct so_list *so_list_head = NULL;
- static struct so_list *
- new_so_list (char *so_name, struct load_module_desc module_desc)
- {
- struct so_list *new_so;
- new_so = (struct so_list *) XCNEW (struct so_list);
- new_so->lm_info = (struct lm_info *) XCNEW (struct lm_info);
- new_so->lm_info->module_desc = module_desc;
- strncpy (new_so->so_name, so_name, SO_NAME_MAX_PATH_SIZE - 1);
- new_so->so_name[SO_NAME_MAX_PATH_SIZE - 1] = '\0';
- strcpy (new_so->so_original_name, new_so->so_name);
- return new_so;
- }
- static int
- ia64_hpux_at_dld_breakpoint_1_p (ptid_t ptid)
- {
- struct regcache *regcache = get_thread_regcache (ptid);
- CORE_ADDR pc = regcache_read_pc (regcache);
- struct address_space *aspace = get_regcache_aspace (regcache);
- ia64_insn t0, t1, slot[3], template, insn;
- int slotnum;
- bfd_byte bundle[16];
-
- if (breakpoint_inserted_here_p (aspace, pc))
- return 0;
- slotnum = ((long) pc) & 0xf;
- if (slotnum > 2)
- internal_error (__FILE__, __LINE__,
- "invalid slot (%d) for address %s", slotnum,
- paddress (get_regcache_arch (regcache), pc));
- pc -= (pc & 0xf);
- read_memory (pc, bundle, sizeof (bundle));
-
- t0 = bfd_getl64 (bundle);
- t1 = bfd_getl64 (bundle + 8);
- template = (t0 >> 1) & 0xf;
- slot[0] = (t0 >> 5) & 0x1ffffffffffLL;
- slot[1] = ((t0 >> 46) & 0x3ffff) | ((t1 & 0x7fffff) << 18);
- slot[2] = (t1 >> 23) & 0x1ffffffffffLL;
- if (template == 2 && slotnum == 1)
- {
-
- slotnum = 2;
- }
- insn = slot[slotnum];
- return (insn == 0x1c0c9c0
- || insn == 0x3c0c9c0);
- }
- int
- ia64_hpux_at_dld_breakpoint_p (ptid_t ptid)
- {
- volatile struct gdb_exception e;
- ptid_t saved_ptid = inferior_ptid;
- int result = 0;
- inferior_ptid = ptid;
- TRY_CATCH (e, RETURN_MASK_ALL)
- {
- result = ia64_hpux_at_dld_breakpoint_1_p (ptid);
- }
- inferior_ptid = saved_ptid;
- if (e.reason < 0)
- warning (_("error while checking for dld breakpoint: %s"), e.message);
- return result;
- }
- static void
- ia64_hpux_handle_load_event (struct regcache *regcache)
- {
- CORE_ADDR module_desc_addr;
- ULONGEST module_desc_size;
- CORE_ADDR so_path_addr;
- char so_path[PATH_MAX];
- struct load_module_desc module_desc;
- struct so_list *new_so;
-
- regcache_cooked_read_unsigned (regcache, IA64_R32_PSEUDO_REGNUM + 1,
- &module_desc_addr);
- regcache_cooked_read_unsigned (regcache, IA64_R32_PSEUDO_REGNUM + 2,
- &module_desc_size);
- regcache_cooked_read_unsigned (regcache, IA64_R32_PSEUDO_REGNUM + 3,
- &so_path_addr);
- if (module_desc_size != sizeof (struct load_module_desc))
- warning (_("load_module_desc size (%ld) != size returned by kernel (%s)"),
- sizeof (struct load_module_desc),
- pulongest (module_desc_size));
- read_memory_string (so_path_addr, so_path, PATH_MAX);
- read_memory (module_desc_addr, (gdb_byte *) &module_desc,
- sizeof (module_desc));
-
- new_so = new_so_list (so_path, module_desc);
- new_so->next = so_list_head;
- so_list_head = new_so;
- }
- static void
- ia64_hpux_move_pc_to_next_bundle (struct regcache *regcache)
- {
- CORE_ADDR pc = regcache_read_pc (regcache);
- pc -= pc & 0xf;
- pc += 16;
- ia64_write_pc (regcache, pc);
- }
- static void
- ia64_hpux_handle_dld_breakpoint_1 (ptid_t ptid)
- {
- struct regcache *regcache = get_thread_regcache (ptid);
- ULONGEST arg0;
-
- regcache_cooked_read_unsigned (regcache, IA64_R32_PSEUDO_REGNUM, &arg0);
- switch (arg0)
- {
- case BREAK_DE_SVC_LOADED:
-
- break;
- case BREAK_DE_LIB_LOADED:
- ia64_hpux_handle_load_event (regcache);
- solib_add (NULL, 0, ¤t_target, auto_solib_add);
- break;
- case BREAK_DE_LIB_UNLOADED:
- case BREAK_DE_LOAD_COMPLETE:
- case BREAK_DE_BOR:
-
- break;
- }
-
- ia64_hpux_move_pc_to_next_bundle (regcache);
- }
- void
- ia64_hpux_handle_dld_breakpoint (ptid_t ptid)
- {
- volatile struct gdb_exception e;
- ptid_t saved_ptid = inferior_ptid;
- inferior_ptid = ptid;
- TRY_CATCH (e, RETURN_MASK_ALL)
- {
- ia64_hpux_handle_dld_breakpoint_1 (ptid);
- }
- inferior_ptid = saved_ptid;
- if (e.reason < 0)
- warning (_("error detected while handling dld breakpoint: %s"), e.message);
- }
- static void
- ia64_hpux_find_start_vma (bfd *abfd, CORE_ADDR *text_start,
- CORE_ADDR *data_start)
- {
- Elf_Internal_Ehdr *i_ehdrp = elf_elfheader (abfd);
- Elf64_Phdr phdr;
- int i;
- *text_start = 0;
- *data_start = 0;
- if (bfd_seek (abfd, i_ehdrp->e_phoff, SEEK_SET) == -1)
- error (_("invalid program header offset in %s"), abfd->filename);
- for (i = 0; i < i_ehdrp->e_phnum; i++)
- {
- if (bfd_bread (&phdr, sizeof (phdr), abfd) != sizeof (phdr))
- error (_("failed to read segment %d in %s"), i, abfd->filename);
- if (phdr.p_flags & PF_X
- && (*text_start == 0 || phdr.p_vaddr < *text_start))
- *text_start = phdr.p_vaddr;
- if (phdr.p_flags & PF_W
- && (*data_start == 0 || phdr.p_vaddr < *data_start))
- *data_start = phdr.p_vaddr;
- }
- }
- static void
- ia64_hpux_relocate_section_addresses (struct so_list *so,
- struct target_section *sec)
- {
- CORE_ADDR offset = 0;
-
- if (so->lm_info->text_start == 0 && so->lm_info->data_start == 0)
- ia64_hpux_find_start_vma (sec->the_bfd_section->owner,
- &so->lm_info->text_start,
- &so->lm_info->data_start);
-
- if ((so->lm_info->text_start < so->lm_info->data_start
- && sec->addr < so->lm_info->data_start)
- || (so->lm_info->text_start > so->lm_info->data_start
- && sec->addr >= so->lm_info->text_start))
- offset = so->lm_info->module_desc.text_base - so->lm_info->text_start;
- else if ((so->lm_info->text_start < so->lm_info->data_start
- && sec->addr >= so->lm_info->data_start)
- || (so->lm_info->text_start > so->lm_info->data_start
- && sec->addr < so->lm_info->text_start))
- offset = so->lm_info->module_desc.data_base - so->lm_info->data_start;
-
- sec->addr += offset;
- sec->endaddr += offset;
-
- if (so->addr_low == 0 || sec->addr < so->addr_low)
- so->addr_low = sec->addr;
- if (so->addr_high == 0 || sec->endaddr > so->addr_high)
- so->addr_high = sec->endaddr;
- }
- static void
- ia64_hpux_free_so (struct so_list *so)
- {
- xfree (so->lm_info);
- }
- static void
- ia64_hpux_clear_solib (void)
- {
- struct so_list *so;
- while (so_list_head != NULL)
- {
- so = so_list_head;
- so_list_head = so_list_head->next;
- ia64_hpux_free_so (so);
- xfree (so);
- }
- }
- static CORE_ADDR
- ia64_hpux_get_load_info_addr (void)
- {
- struct type *data_ptr_type = builtin_type (target_gdbarch ())->builtin_data_ptr;
- CORE_ADDR addr;
- int status;
-
- status = ttrace (TT_PROC_GET_ARGS, ptid_get_pid (inferior_ptid),
- 0, (uintptr_t) &addr, sizeof (CORE_ADDR), 0);
- if (status == -1 && errno)
- perror_with_name (_("Unable to get argument list"));
- return (read_memory_typed_address (addr + 3 * 8, data_ptr_type));
- }
- struct dld_info
- {
- ULONGEST dld_flags;
- CORE_ADDR load_map;
- };
- static void
- ia64_hpux_read_dynamic_info (struct gdbarch *gdbarch, bfd *abfd,
- asection *dyn_sect, struct dld_info *info)
- {
- int sect_size;
- char *buf;
- char *buf_end;
-
- memset (info, 0, sizeof (struct dld_info));
- sect_size = bfd_section_size (abfd, dyn_sect);
- buf = alloca (sect_size);
- buf_end = buf + sect_size;
- if (bfd_seek (abfd, dyn_sect->filepos, SEEK_SET) != 0
- || bfd_bread (buf, sect_size, abfd) != sect_size)
- error (_("failed to read contents of .dynamic section"));
- for (; buf < buf_end; buf += sizeof (Elf64_Dyn))
- {
- Elf64_Dyn *dynp = (Elf64_Dyn *) buf;
- Elf64_Sxword d_tag;
- d_tag = bfd_h_get_64 (abfd, &dynp->d_tag);
- switch (d_tag)
- {
- case DT_HP_DLD_FLAGS:
- info->dld_flags = bfd_h_get_64 (abfd, &dynp->d_un);
- break;
- case DT_HP_LOAD_MAP:
- {
- CORE_ADDR load_map_addr = bfd_h_get_64 (abfd, &dynp->d_un.d_ptr);
- if (target_read_memory (load_map_addr,
- (gdb_byte *) &info->load_map,
- sizeof (info->load_map)) != 0)
- error (_("failed to read load map at %s"),
- paddress (gdbarch, load_map_addr));
- }
- break;
- }
- }
- }
- static void *
- ia64_hpux_read_tgt_mem (void *buffer, uint64_t ptr, size_t bufsiz, int ident)
- {
- if (target_read_memory (ptr, (gdb_byte *) buffer, bufsiz) != 0)
- return 0;
- else
- return buffer;
- }
- static int
- ia64_hpux_add_so_from_dld_info (struct dld_info info, int so_index)
- {
- struct load_module_desc module_desc;
- uint64_t so_handle;
- char *so_path;
- struct so_list *so;
- so_handle = dlgetmodinfo (so_index, &module_desc, sizeof (module_desc),
- ia64_hpux_read_tgt_mem, 0, info.load_map);
- if (so_handle == 0)
-
- return 0;
- so_path = dlgetname (&module_desc, sizeof (module_desc),
- ia64_hpux_read_tgt_mem, 0, info.load_map);
- if (so_path == NULL)
- {
-
- warning (_("unable to get shared library name, symbols not loaded"));
- return 0;
- }
-
- so = new_so_list (so_path, module_desc);
- so->next = so_list_head;
- so_list_head = so;
- return 1;
- }
- static void
- ia64_hpux_solib_add_after_attach (void)
- {
- bfd *abfd;
- asection *dyn_sect;
- struct dld_info info;
- int i;
- if (symfile_objfile == NULL)
- return;
- abfd = symfile_objfile->obfd;
- dyn_sect = bfd_get_section_by_name (abfd, ".dynamic");
- if (dyn_sect == NULL || bfd_section_size (abfd, dyn_sect) == 0)
- return;
- ia64_hpux_read_dynamic_info (get_objfile_arch (symfile_objfile), abfd,
- dyn_sect, &info);
- if ((info.dld_flags & DT_HP_DEBUG_PRIVATE) == 0)
- {
- warning (_(
- "The shared libraries were not privately mapped; setting a breakpoint\n\
- in a shared library will not work until you rerun the program.\n\
- Use the following command to enable debugging of shared libraries.\n\
- chatr +dbg enable a.out"));
- }
-
- ia64_hpux_add_so_from_dld_info (info, -1);
-
- for (i = 1; ; i++)
- if (!ia64_hpux_add_so_from_dld_info (info, i))
- break;
-
- solib_add (NULL, 1, ¤t_target, auto_solib_add);
- }
- static void
- ia64_hpux_solib_create_inferior_hook (int from_tty)
- {
- CORE_ADDR load_info_addr;
- load_info_t load_info;
-
-
- load_info_addr = ia64_hpux_get_load_info_addr ();
- read_memory (load_info_addr, (gdb_byte *) &load_info, sizeof (load_info));
- load_info.li_flags |= LI_TRACE;
- write_memory (load_info_addr, (gdb_byte *) &load_info, sizeof (load_info));
-
- if (current_inferior ()->attach_flag)
- ia64_hpux_solib_add_after_attach ();
- }
- static void
- ia64_hpux_special_symbol_handling (void)
- {
-
- }
- static struct so_list *
- ia64_hpux_current_sos (void)
- {
-
- struct so_list *new_head = NULL, *prev_new_so = NULL;
- struct so_list *our_so;
- for (our_so = so_list_head; our_so != NULL; our_so = our_so->next)
- {
- struct so_list *new_so;
- new_so = new_so_list (our_so->so_name, our_so->lm_info->module_desc);
- if (prev_new_so != NULL)
- prev_new_so->next = new_so;
- prev_new_so = new_so;
- if (new_head == NULL)
- new_head = new_so;
- }
- return new_head;
- }
- static int
- ia64_hpux_open_symbol_file_object (void *from_ttyp)
- {
- return 0;
- }
- static int
- ia64_hpux_in_dynsym_resolve_code (CORE_ADDR pc)
- {
- return 0;
- }
- CORE_ADDR
- ia64_hpux_get_solib_linkage_addr (CORE_ADDR faddr)
- {
- struct so_list *so = so_list_head;
- while (so != NULL)
- {
- struct load_module_desc module_desc = so->lm_info->module_desc;
- if (module_desc.text_base <= faddr
- && (module_desc.text_base + module_desc.text_size) > faddr)
- return module_desc.linkage_ptr;
- so = so->next;
- }
- return 0;
- }
- static struct target_so_ops *
- ia64_hpux_target_so_ops (void)
- {
- struct target_so_ops *ops = XCNEW (struct target_so_ops);
- ops->relocate_section_addresses = ia64_hpux_relocate_section_addresses;
- ops->free_so = ia64_hpux_free_so;
- ops->clear_solib = ia64_hpux_clear_solib;
- ops->solib_create_inferior_hook = ia64_hpux_solib_create_inferior_hook;
- ops->special_symbol_handling = ia64_hpux_special_symbol_handling;
- ops->current_sos = ia64_hpux_current_sos;
- ops->open_symbol_file_object = ia64_hpux_open_symbol_file_object;
- ops->in_dynsym_resolve_code = ia64_hpux_in_dynsym_resolve_code;
- ops->bfd_open = solib_bfd_open;
- return ops;
- }
- void _initialize_solib_ia64_hpux (void);
- void
- _initialize_solib_ia64_hpux (void)
- {
- ia64_hpux_so_ops = ia64_hpux_target_so_ops ();
- }