hotspot/agent/src/os/linux/ps_core.c
author dsamersoff
Sun, 22 Sep 2013 18:49:09 +0400
changeset 20068 e31661417973
parent 17310 b4118c427cc0
child 20375 9e82f2c36626
permissions -rw-r--r--
7133122: SA throws sun.jvm.hotspot.debugger.UnmappedAddressException when it should not Summary: replace PT_LOAD segment with library segment when necessary Reviewed-by: dholmes, sla
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
20068
e31661417973 7133122: SA throws sun.jvm.hotspot.debugger.UnmappedAddressException when it should not
dsamersoff
parents: 17310
diff changeset
     2
 * Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5341
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5341
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5341
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
#include <jni.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
#include <unistd.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
#include <fcntl.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
#include <string.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
#include <stdlib.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
#include <stddef.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
#include <elf.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
#include <link.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
#include "libproc_impl.h"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
#include "salibelf.h"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
// This file has the libproc implementation to read core files.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
// For live processes, refer to ps_proc.c. Portions of this is adapted
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
// /modelled after Solaris libproc.so (in particular Pcore.c)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
//----------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
// ps_prochandle cleanup helper functions
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
// close all file descriptors
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
static void close_elf_files(struct ps_prochandle* ph) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
   lib_info* lib = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
   // close core file descriptor
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
   if (ph->core->core_fd >= 0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
     close(ph->core->core_fd);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
   // close exec file descriptor
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
   if (ph->core->exec_fd >= 0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
     close(ph->core->exec_fd);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
   // close interp file descriptor
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
   if (ph->core->interp_fd >= 0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
     close(ph->core->interp_fd);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
   // close class share archive file
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
   if (ph->core->classes_jsa_fd >= 0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
     close(ph->core->classes_jsa_fd);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
   // close all library file descriptors
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
   lib = ph->libs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
   while (lib) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
      int fd = lib->fd;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
      if (fd >= 0 && fd != ph->core->exec_fd) close(fd);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
      lib = lib->next;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
// clean all map_info stuff
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
static void destroy_map_info(struct ps_prochandle* ph) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  map_info* map = ph->core->maps;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  while (map) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
     map_info* next = map->next;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
     free(map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
     map = next;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  if (ph->core->map_array) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
     free(ph->core->map_array);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  // Part of the class sharing workaround
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  map = ph->core->class_share_maps;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  while (map) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
     map_info* next = map->next;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
     free(map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
     map = next;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
// ps_prochandle operations
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
static void core_release(struct ps_prochandle* ph) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
   if (ph->core) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
      close_elf_files(ph);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
      destroy_map_info(ph);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
      free(ph->core);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
static map_info* allocate_init_map(int fd, off_t offset, uintptr_t vaddr, size_t memsz) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
   map_info* map;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
   if ( (map = (map_info*) calloc(1, sizeof(map_info))) == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
      print_debug("can't allocate memory for map_info\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
      return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
   // initialize map
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
   map->fd     = fd;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
   map->offset = offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
   map->vaddr  = vaddr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
   map->memsz  = memsz;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
   return map;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
// add map info with given fd, offset, vaddr and memsz
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
static map_info* add_map_info(struct ps_prochandle* ph, int fd, off_t offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
                             uintptr_t vaddr, size_t memsz) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
   map_info* map;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
   if ((map = allocate_init_map(fd, offset, vaddr, memsz)) == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
      return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
   // add this to map list
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
   map->next  = ph->core->maps;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
   ph->core->maps   = map;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
   ph->core->num_maps++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
   return map;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
// Part of the class sharing workaround
15925
6a17dd9e92ac 8009287: [parfait] Uninitialised variable in hotspot/agent/src/os/linux/ps_core.c
sla
parents: 13728
diff changeset
   135
static void add_class_share_map_info(struct ps_prochandle* ph, off_t offset,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
                             uintptr_t vaddr, size_t memsz) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
   map_info* map;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
   if ((map = allocate_init_map(ph->core->classes_jsa_fd,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
                                offset, vaddr, memsz)) == NULL) {
15925
6a17dd9e92ac 8009287: [parfait] Uninitialised variable in hotspot/agent/src/os/linux/ps_core.c
sla
parents: 13728
diff changeset
   140
      return;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
   map->next = ph->core->class_share_maps;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
   ph->core->class_share_maps = map;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
// Return the map_info for the given virtual address.  We keep a sorted
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
// array of pointers in ph->map_array, so we can binary search.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
static map_info* core_lookup(struct ps_prochandle *ph, uintptr_t addr)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
   int mid, lo = 0, hi = ph->core->num_maps - 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
   map_info *mp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
   while (hi - lo > 1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
     mid = (lo + hi) / 2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
      if (addr >= ph->core->map_array[mid]->vaddr)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
         lo = mid;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
      else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
         hi = mid;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
   if (addr < ph->core->map_array[hi]->vaddr)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
      mp = ph->core->map_array[lo];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
   else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
      mp = ph->core->map_array[hi];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
   if (addr >= mp->vaddr && addr < mp->vaddr + mp->memsz)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
      return (mp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
   // Part of the class sharing workaround
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
   // Unfortunately, we have no way of detecting -Xshare state.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
   // Check out the share maps atlast, if we don't find anywhere.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
   // This is done this way so to avoid reading share pages
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
   // ahead of other normal maps. For eg. with -Xshare:off we don't
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
   // want to prefer class sharing data to data from core.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
   mp = ph->core->class_share_maps;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
   if (mp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
      print_debug("can't locate map_info at 0x%lx, trying class share maps\n",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
             addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
   while (mp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
      if (addr >= mp->vaddr && addr < mp->vaddr + mp->memsz) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
         print_debug("located map_info at 0x%lx from class share maps\n",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
                  addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
         return (mp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
      mp = mp->next;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
   print_debug("can't locate map_info at 0x%lx\n", addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
   return (NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
//---------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
// Part of the class sharing workaround:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
//
17310
b4118c427cc0 8005038: remove crufty '_g' support from SA
sla
parents: 15925
diff changeset
   198
// With class sharing, pages are mapped from classes.jsa file.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
// The read-only class sharing pages are mapped as MAP_SHARED,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
// PROT_READ pages. These pages are not dumped into core dump.
17310
b4118c427cc0 8005038: remove crufty '_g' support from SA
sla
parents: 15925
diff changeset
   201
// With this workaround, these pages are read from classes.jsa.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
// FIXME: !HACK ALERT!
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
// The format of sharing achive file header is needed to read shared heap
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
// file mappings. For now, I am hard coding portion of FileMapHeader here.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
// Refer to filemap.hpp.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
// FileMapHeader describes the shared space data in the file to be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
// mapped.  This structure gets written to a file.  It is not a class,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
// so that the compilers don't add any compiler-private data to it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
#define NUM_SHARED_MAPS 4
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
// Refer to FileMapInfo::_current_version in filemap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
#define CURRENT_ARCHIVE_VERSION 1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
struct FileMapHeader {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  int   _magic;              // identify file type.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  int   _version;            // (from enum, above.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  size_t _alignment;         // how shared archive should be aligned
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  struct space_info {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
    int    _file_offset;     // sizeof(this) rounded to vm page size
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
    char*  _base;            // copy-on-write base address
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
    size_t _capacity;        // for validity checking
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
    size_t _used;            // for setting space top on read
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
    // 4991491 NOTICE These are C++ bool's in filemap.hpp and must match up with
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
    // the C type matching the C++ bool type on any given platform. For
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
    // Hotspot on Linux we assume the corresponding C type is char but
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
    // licensees on Linux versions may need to adjust the type of these fields.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
    char   _read_only;       // read only space?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
    char   _allow_exec;      // executable code in space?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12499
diff changeset
   235
  } _space[NUM_SHARED_MAPS];
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  // Ignore the rest of the FileMapHeader. We don't need those fields here.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
1905
059ce1b8f69e 6786948: SA on core file fails on solaris-amd64 if vm started with -XX:+StartAttachListener
swamyv
parents: 670
diff changeset
   240
static bool read_jboolean(struct ps_prochandle* ph, uintptr_t addr, jboolean* pvalue) {
059ce1b8f69e 6786948: SA on core file fails on solaris-amd64 if vm started with -XX:+StartAttachListener
swamyv
parents: 670
diff changeset
   241
   jboolean i;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
   if (ps_pdread(ph, (psaddr_t) addr, &i, sizeof(i)) == PS_OK) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
      *pvalue = i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
   } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
      return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
static bool read_pointer(struct ps_prochandle* ph, uintptr_t addr, uintptr_t* pvalue) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
   uintptr_t uip;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
   if (ps_pdread(ph, (psaddr_t) addr, &uip, sizeof(uip)) == PS_OK) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
      *pvalue = uip;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
   } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
      return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
// used to read strings from debuggee
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
static bool read_string(struct ps_prochandle* ph, uintptr_t addr, char* buf, size_t size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
   size_t i = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
   char  c = ' ';
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
   while (c != '\0') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
     if (ps_pdread(ph, (psaddr_t) addr, &c, sizeof(char)) != PS_OK)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
         return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
      if (i < size - 1)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
         buf[i] = c;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
      else // smaller buffer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
         return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
      i++; addr++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
   buf[i] = '\0';
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
   return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
#define USE_SHARED_SPACES_SYM "UseSharedSpaces"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
// mangled name of Arguments::SharedArchivePath
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
#define SHARED_ARCHIVE_PATH_SYM "_ZN9Arguments17SharedArchivePathE"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
static bool init_classsharing_workaround(struct ps_prochandle* ph) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
   lib_info* lib = ph->libs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
   while (lib != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
      // we are iterating over shared objects from the core dump. look for
17310
b4118c427cc0 8005038: remove crufty '_g' support from SA
sla
parents: 15925
diff changeset
   287
      // libjvm.so.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
      const char *jvm_name = 0;
17310
b4118c427cc0 8005038: remove crufty '_g' support from SA
sla
parents: 15925
diff changeset
   289
      if ((jvm_name = strstr(lib->name, "/libjvm.so")) != 0) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
         char classes_jsa[PATH_MAX];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
         struct FileMapHeader header;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
         size_t n = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
         int fd = -1, m = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
         uintptr_t base = 0, useSharedSpacesAddr = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
         uintptr_t sharedArchivePathAddrAddr = 0, sharedArchivePathAddr = 0;
1905
059ce1b8f69e 6786948: SA on core file fails on solaris-amd64 if vm started with -XX:+StartAttachListener
swamyv
parents: 670
diff changeset
   296
         jboolean useSharedSpaces = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
         map_info* mi = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
         memset(classes_jsa, 0, sizeof(classes_jsa));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
         jvm_name = lib->name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
         useSharedSpacesAddr = lookup_symbol(ph, jvm_name, USE_SHARED_SPACES_SYM);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
         if (useSharedSpacesAddr == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
            print_debug("can't lookup 'UseSharedSpaces' flag\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
            return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
         }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
1905
059ce1b8f69e 6786948: SA on core file fails on solaris-amd64 if vm started with -XX:+StartAttachListener
swamyv
parents: 670
diff changeset
   307
         // Hotspot vm types are not exported to build this library. So
059ce1b8f69e 6786948: SA on core file fails on solaris-amd64 if vm started with -XX:+StartAttachListener
swamyv
parents: 670
diff changeset
   308
         // using equivalent type jboolean to read the value of
059ce1b8f69e 6786948: SA on core file fails on solaris-amd64 if vm started with -XX:+StartAttachListener
swamyv
parents: 670
diff changeset
   309
         // UseSharedSpaces which is same as hotspot type "bool".
059ce1b8f69e 6786948: SA on core file fails on solaris-amd64 if vm started with -XX:+StartAttachListener
swamyv
parents: 670
diff changeset
   310
         if (read_jboolean(ph, useSharedSpacesAddr, &useSharedSpaces) != true) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
            print_debug("can't read the value of 'UseSharedSpaces' flag\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
            return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
         }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
1905
059ce1b8f69e 6786948: SA on core file fails on solaris-amd64 if vm started with -XX:+StartAttachListener
swamyv
parents: 670
diff changeset
   315
         if ((int)useSharedSpaces == 0) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
            print_debug("UseSharedSpaces is false, assuming -Xshare:off!\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
            return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
         }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
         sharedArchivePathAddrAddr = lookup_symbol(ph, jvm_name, SHARED_ARCHIVE_PATH_SYM);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
         if (sharedArchivePathAddrAddr == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
            print_debug("can't lookup shared archive path symbol\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
            return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
         }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
         if (read_pointer(ph, sharedArchivePathAddrAddr, &sharedArchivePathAddr) != true) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
            print_debug("can't read shared archive path pointer\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
            return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
         }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
         if (read_string(ph, sharedArchivePathAddr, classes_jsa, sizeof(classes_jsa)) != true) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
            print_debug("can't read shared archive path value\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
            return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
         }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
         print_debug("looking for %s\n", classes_jsa);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
         // open the class sharing archive file
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
         fd = pathmap_open(classes_jsa);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
         if (fd < 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
            print_debug("can't open %s!\n", classes_jsa);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
            ph->core->classes_jsa_fd = -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
            return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
         } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
            print_debug("opened %s\n", classes_jsa);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
         }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
         // read FileMapHeader from the file
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
         memset(&header, 0, sizeof(struct FileMapHeader));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
         if ((n = read(fd, &header, sizeof(struct FileMapHeader)))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
              != sizeof(struct FileMapHeader)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
            print_debug("can't read shared archive file map header from %s\n", classes_jsa);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
            close(fd);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
            return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
         }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
         // check file magic
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
         if (header._magic != 0xf00baba2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
            print_debug("%s has bad shared archive file magic number 0x%x, expecing 0xf00baba2\n",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
                        classes_jsa, header._magic);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
            close(fd);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
            return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
         }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
         // check version
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
         if (header._version != CURRENT_ARCHIVE_VERSION) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
            print_debug("%s has wrong shared archive file version %d, expecting %d\n",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
                        classes_jsa, header._version, CURRENT_ARCHIVE_VERSION);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
            close(fd);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
            return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
         }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
         ph->core->classes_jsa_fd = fd;
17310
b4118c427cc0 8005038: remove crufty '_g' support from SA
sla
parents: 15925
diff changeset
   373
         // add read-only maps from classes.jsa to the list of maps
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
         for (m = 0; m < NUM_SHARED_MAPS; m++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
            if (header._space[m]._read_only) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
               base = (uintptr_t) header._space[m]._base;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
               // no need to worry about the fractional pages at-the-end.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
               // possible fractional pages are handled by core_read_data.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
               add_class_share_map_info(ph, (off_t) header._space[m]._file_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
                         base, (size_t) header._space[m]._used);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
               print_debug("added a share archive map at 0x%lx\n", base);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
            }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
         }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
         return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
      lib = lib->next;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
   return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
//---------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
// functions to handle map_info
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
// Order mappings based on virtual address.  We use this function as the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
// callback for sorting the array of map_info pointers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
static int core_cmp_mapping(const void *lhsp, const void *rhsp)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
   const map_info *lhs = *((const map_info **)lhsp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
   const map_info *rhs = *((const map_info **)rhsp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
   if (lhs->vaddr == rhs->vaddr)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
      return (0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
   return (lhs->vaddr < rhs->vaddr ? -1 : 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
// we sort map_info by starting virtual address so that we can do
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
// binary search to read from an address.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
static bool sort_map_array(struct ps_prochandle* ph) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
   size_t num_maps = ph->core->num_maps;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
   map_info* map = ph->core->maps;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
   int i = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
   // allocate map_array
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
   map_info** array;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
   if ( (array = (map_info**) malloc(sizeof(map_info*) * num_maps)) == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
      print_debug("can't allocate memory for map array\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
      return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
   // add maps to array
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
   while (map) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
      array[i] = map;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
      i++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
      map = map->next;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
   // sort is called twice. If this is second time, clear map array
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
   if (ph->core->map_array) free(ph->core->map_array);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
   ph->core->map_array = array;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
   // sort the map_info array by base virtual address.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
   qsort(ph->core->map_array, ph->core->num_maps, sizeof (map_info*),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
            core_cmp_mapping);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
   // print map
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
   if (is_debug()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
      int j = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
      print_debug("---- sorted virtual address map ----\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
      for (j = 0; j < ph->core->num_maps; j++) {
12499
b34c7373e4a9 7162063: libsaproc debug print should format size_t correctly on 64bit platform
sla
parents: 12368
diff changeset
   441
        print_debug("base = 0x%lx\tsize = %zu\n", ph->core->map_array[j]->vaddr,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
                                         ph->core->map_array[j]->memsz);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
   return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
#ifndef MIN
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
#define MIN(x, y) (((x) < (y))? (x): (y))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
static bool core_read_data(struct ps_prochandle* ph, uintptr_t addr, char *buf, size_t size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
   ssize_t resid = size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
   int page_size=sysconf(_SC_PAGE_SIZE);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
   while (resid != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
      map_info *mp = core_lookup(ph, addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
      uintptr_t mapoff;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
      ssize_t len, rem;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
      off_t off;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
      int fd;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
      if (mp == NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
         break;  /* No mapping for this address */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
      fd = mp->fd;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
      mapoff = addr - mp->vaddr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
      len = MIN(resid, mp->memsz - mapoff);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
      off = mp->offset + mapoff;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
      if ((len = pread(fd, buf, len, off)) <= 0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
         break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
      resid -= len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
      addr += len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
      buf = (char *)buf + len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
      // mappings always start at page boundary. But, may end in fractional
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
      // page. fill zeros for possible fractional page at the end of a mapping.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
      rem = mp->memsz % page_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
      if (rem > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
         rem = page_size - rem;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
         len = MIN(resid, rem);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
         resid -= len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
         addr += len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
         // we are not assuming 'buf' to be zero initialized.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
         memset(buf, 0, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
         buf += len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
   if (resid) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
      print_debug("core read failed for %d byte(s) @ 0x%lx (%d more bytes)\n",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
              size, addr, resid);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
      return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
   } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
// null implementation for write
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
static bool core_write_data(struct ps_prochandle* ph,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
                             uintptr_t addr, const char *buf , size_t size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
   return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
static bool core_get_lwp_regs(struct ps_prochandle* ph, lwpid_t lwp_id,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
                          struct user_regs_struct* regs) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
   // for core we have cached the lwp regs from NOTE section
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
   thread_info* thr = ph->threads;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
   while (thr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
     if (thr->lwp_id == lwp_id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
       memcpy(regs, &thr->regs, sizeof(struct user_regs_struct));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
       return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
     thr = thr->next;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
   return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
static ps_prochandle_ops core_ops = {
223
5c3b023117d9 6452081: 3/4 Allow for Linux builds with Sun Studio Linux compilers
dcubed
parents: 1
diff changeset
   522
   .release=  core_release,
5c3b023117d9 6452081: 3/4 Allow for Linux builds with Sun Studio Linux compilers
dcubed
parents: 1
diff changeset
   523
   .p_pread=  core_read_data,
5c3b023117d9 6452081: 3/4 Allow for Linux builds with Sun Studio Linux compilers
dcubed
parents: 1
diff changeset
   524
   .p_pwrite= core_write_data,
5c3b023117d9 6452081: 3/4 Allow for Linux builds with Sun Studio Linux compilers
dcubed
parents: 1
diff changeset
   525
   .get_lwp_regs= core_get_lwp_regs
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
// read regs and create thread from NT_PRSTATUS entries from core file
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
static bool core_handle_prstatus(struct ps_prochandle* ph, const char* buf, size_t nbytes) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
   // we have to read prstatus_t from buf
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
   // assert(nbytes == sizeof(prstaus_t), "size mismatch on prstatus_t");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
   prstatus_t* prstat = (prstatus_t*) buf;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
   thread_info* newthr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
   print_debug("got integer regset for lwp %d\n", prstat->pr_pid);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
   // we set pthread_t to -1 for core dump
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
   if((newthr = add_thread_info(ph, (pthread_t) -1,  prstat->pr_pid)) == NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
      return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
   // copy regs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
   memcpy(&newthr->regs, prstat->pr_reg, sizeof(struct user_regs_struct));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
   if (is_debug()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
      print_debug("integer regset\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
#ifdef i386
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
      // print the regset
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
      print_debug("\teax = 0x%x\n", newthr->regs.eax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
      print_debug("\tebx = 0x%x\n", newthr->regs.ebx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
      print_debug("\tecx = 0x%x\n", newthr->regs.ecx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
      print_debug("\tedx = 0x%x\n", newthr->regs.edx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
      print_debug("\tesp = 0x%x\n", newthr->regs.esp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
      print_debug("\tebp = 0x%x\n", newthr->regs.ebp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
      print_debug("\tesi = 0x%x\n", newthr->regs.esi);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
      print_debug("\tedi = 0x%x\n", newthr->regs.edi);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
      print_debug("\teip = 0x%x\n", newthr->regs.eip);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
#if defined(amd64) || defined(x86_64)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
      // print the regset
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
      print_debug("\tr15 = 0x%lx\n", newthr->regs.r15);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
      print_debug("\tr14 = 0x%lx\n", newthr->regs.r14);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
      print_debug("\tr13 = 0x%lx\n", newthr->regs.r13);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
      print_debug("\tr12 = 0x%lx\n", newthr->regs.r12);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
      print_debug("\trbp = 0x%lx\n", newthr->regs.rbp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
      print_debug("\trbx = 0x%lx\n", newthr->regs.rbx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
      print_debug("\tr11 = 0x%lx\n", newthr->regs.r11);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
      print_debug("\tr10 = 0x%lx\n", newthr->regs.r10);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
      print_debug("\tr9 = 0x%lx\n", newthr->regs.r9);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
      print_debug("\tr8 = 0x%lx\n", newthr->regs.r8);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
      print_debug("\trax = 0x%lx\n", newthr->regs.rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
      print_debug("\trcx = 0x%lx\n", newthr->regs.rcx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
      print_debug("\trdx = 0x%lx\n", newthr->regs.rdx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
      print_debug("\trsi = 0x%lx\n", newthr->regs.rsi);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
      print_debug("\trdi = 0x%lx\n", newthr->regs.rdi);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
      print_debug("\torig_rax = 0x%lx\n", newthr->regs.orig_rax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
      print_debug("\trip = 0x%lx\n", newthr->regs.rip);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
      print_debug("\tcs = 0x%lx\n", newthr->regs.cs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
      print_debug("\teflags = 0x%lx\n", newthr->regs.eflags);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
      print_debug("\trsp = 0x%lx\n", newthr->regs.rsp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
      print_debug("\tss = 0x%lx\n", newthr->regs.ss);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
      print_debug("\tfs_base = 0x%lx\n", newthr->regs.fs_base);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
      print_debug("\tgs_base = 0x%lx\n", newthr->regs.gs_base);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
      print_debug("\tds = 0x%lx\n", newthr->regs.ds);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
      print_debug("\tes = 0x%lx\n", newthr->regs.es);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
      print_debug("\tfs = 0x%lx\n", newthr->regs.fs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
      print_debug("\tgs = 0x%lx\n", newthr->regs.gs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
   return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
#define ROUNDUP(x, y)  ((((x)+((y)-1))/(y))*(y))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
// read NT_PRSTATUS entries from core NOTE segment
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
static bool core_handle_note(struct ps_prochandle* ph, ELF_PHDR* note_phdr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
   char* buf = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
   char* p = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
   size_t size = note_phdr->p_filesz;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
   // we are interested in just prstatus entries. we will ignore the rest.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
   // Advance the seek pointer to the start of the PT_NOTE data
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
   if (lseek(ph->core->core_fd, note_phdr->p_offset, SEEK_SET) == (off_t)-1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
      print_debug("failed to lseek to PT_NOTE data\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
      return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
   // Now process the PT_NOTE structures.  Each one is preceded by
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
   // an Elf{32/64}_Nhdr structure describing its type and size.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
   if ( (buf = (char*) malloc(size)) == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
      print_debug("can't allocate memory for reading core notes\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
      goto err;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
   // read notes into buffer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
   if (read(ph->core->core_fd, buf, size) != size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
      print_debug("failed to read notes, core file must have been truncated\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
      goto err;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
   p = buf;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
   while (p < buf + size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
      ELF_NHDR* notep = (ELF_NHDR*) p;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
      char* descdata  = p + sizeof(ELF_NHDR) + ROUNDUP(notep->n_namesz, 4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
      print_debug("Note header with n_type = %d and n_descsz = %u\n",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
                                   notep->n_type, notep->n_descsz);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
      if (notep->n_type == NT_PRSTATUS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
         if (core_handle_prstatus(ph, descdata, notep->n_descsz) != true)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
            return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
      p = descdata + ROUNDUP(notep->n_descsz, 4);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
   free(buf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
   return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
err:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
   if (buf) free(buf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
   return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
// read all segments from core file
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
static bool read_core_segments(struct ps_prochandle* ph, ELF_EHDR* core_ehdr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
   int i = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
   ELF_PHDR* phbuf = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
   ELF_PHDR* core_php = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
   if ((phbuf =  read_program_header_table(ph->core->core_fd, core_ehdr)) == NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
      return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
   /*
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
    * Now iterate through the program headers in the core file.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
    * We're interested in two types of Phdrs: PT_NOTE (which
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
    * contains a set of saved /proc structures), and PT_LOAD (which
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
    * represents a memory mapping from the process's address space).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
    *
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
    * Difference b/w Solaris PT_NOTE and Linux PT_NOTE:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
    *
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
    *     In Solaris there are two PT_NOTE segments the first PT_NOTE (if present)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
    *     contains /proc structs in the pre-2.6 unstructured /proc format. the last
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
    *     PT_NOTE has data in new /proc format.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
    *
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
    *     In Solaris, there is only one pstatus (process status). pstatus contains
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
    *     integer register set among other stuff. For each LWP, we have one lwpstatus
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
    *     entry that has integer regset for that LWP.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
    *
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
    *     Linux threads are actually 'clone'd processes. To support core analysis
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
    *     of "multithreaded" process, Linux creates more than one pstatus (called
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
    *     "prstatus") entry in PT_NOTE. Each prstatus entry has integer regset for one
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
    *     "thread". Please refer to Linux kernel src file 'fs/binfmt_elf.c', in particular
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
    *     function "elf_core_dump".
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
    */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
    for (core_php = phbuf, i = 0; i < core_ehdr->e_phnum; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
      switch (core_php->p_type) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
         case PT_NOTE:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
            if (core_handle_note(ph, core_php) != true) goto err;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
            break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
         case PT_LOAD: {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
            if (core_php->p_filesz != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
               if (add_map_info(ph, ph->core->core_fd, core_php->p_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
                  core_php->p_vaddr, core_php->p_filesz) == NULL) goto err;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
            }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
            break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
         }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
      core_php++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
   free(phbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
   return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
err:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
   free(phbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
   return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
// read segments of a shared object
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
static bool read_lib_segments(struct ps_prochandle* ph, int lib_fd, ELF_EHDR* lib_ehdr, uintptr_t lib_base) {
20068
e31661417973 7133122: SA throws sun.jvm.hotspot.debugger.UnmappedAddressException when it should not
dsamersoff
parents: 17310
diff changeset
   701
  int i = 0;
e31661417973 7133122: SA throws sun.jvm.hotspot.debugger.UnmappedAddressException when it should not
dsamersoff
parents: 17310
diff changeset
   702
  ELF_PHDR* phbuf;
e31661417973 7133122: SA throws sun.jvm.hotspot.debugger.UnmappedAddressException when it should not
dsamersoff
parents: 17310
diff changeset
   703
  ELF_PHDR* lib_php = NULL;
e31661417973 7133122: SA throws sun.jvm.hotspot.debugger.UnmappedAddressException when it should not
dsamersoff
parents: 17310
diff changeset
   704
e31661417973 7133122: SA throws sun.jvm.hotspot.debugger.UnmappedAddressException when it should not
dsamersoff
parents: 17310
diff changeset
   705
  int page_size=sysconf(_SC_PAGE_SIZE);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
20068
e31661417973 7133122: SA throws sun.jvm.hotspot.debugger.UnmappedAddressException when it should not
dsamersoff
parents: 17310
diff changeset
   707
  if ((phbuf = read_program_header_table(lib_fd, lib_ehdr)) == NULL) {
e31661417973 7133122: SA throws sun.jvm.hotspot.debugger.UnmappedAddressException when it should not
dsamersoff
parents: 17310
diff changeset
   708
    return false;
e31661417973 7133122: SA throws sun.jvm.hotspot.debugger.UnmappedAddressException when it should not
dsamersoff
parents: 17310
diff changeset
   709
  }
e31661417973 7133122: SA throws sun.jvm.hotspot.debugger.UnmappedAddressException when it should not
dsamersoff
parents: 17310
diff changeset
   710
e31661417973 7133122: SA throws sun.jvm.hotspot.debugger.UnmappedAddressException when it should not
dsamersoff
parents: 17310
diff changeset
   711
  // we want to process only PT_LOAD segments that are not writable.
e31661417973 7133122: SA throws sun.jvm.hotspot.debugger.UnmappedAddressException when it should not
dsamersoff
parents: 17310
diff changeset
   712
  // i.e., text segments. The read/write/exec (data) segments would
e31661417973 7133122: SA throws sun.jvm.hotspot.debugger.UnmappedAddressException when it should not
dsamersoff
parents: 17310
diff changeset
   713
  // have been already added from core file segments.
e31661417973 7133122: SA throws sun.jvm.hotspot.debugger.UnmappedAddressException when it should not
dsamersoff
parents: 17310
diff changeset
   714
  for (lib_php = phbuf, i = 0; i < lib_ehdr->e_phnum; i++) {
e31661417973 7133122: SA throws sun.jvm.hotspot.debugger.UnmappedAddressException when it should not
dsamersoff
parents: 17310
diff changeset
   715
    if ((lib_php->p_type == PT_LOAD) && !(lib_php->p_flags & PF_W) && (lib_php->p_filesz != 0)) {
e31661417973 7133122: SA throws sun.jvm.hotspot.debugger.UnmappedAddressException when it should not
dsamersoff
parents: 17310
diff changeset
   716
e31661417973 7133122: SA throws sun.jvm.hotspot.debugger.UnmappedAddressException when it should not
dsamersoff
parents: 17310
diff changeset
   717
      uintptr_t target_vaddr = lib_php->p_vaddr + lib_base;
e31661417973 7133122: SA throws sun.jvm.hotspot.debugger.UnmappedAddressException when it should not
dsamersoff
parents: 17310
diff changeset
   718
      map_info *existing_map = core_lookup(ph, target_vaddr);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
20068
e31661417973 7133122: SA throws sun.jvm.hotspot.debugger.UnmappedAddressException when it should not
dsamersoff
parents: 17310
diff changeset
   720
      if (existing_map == NULL){
e31661417973 7133122: SA throws sun.jvm.hotspot.debugger.UnmappedAddressException when it should not
dsamersoff
parents: 17310
diff changeset
   721
        if (add_map_info(ph, lib_fd, lib_php->p_offset,
e31661417973 7133122: SA throws sun.jvm.hotspot.debugger.UnmappedAddressException when it should not
dsamersoff
parents: 17310
diff changeset
   722
                          target_vaddr, lib_php->p_filesz) == NULL) {
e31661417973 7133122: SA throws sun.jvm.hotspot.debugger.UnmappedAddressException when it should not
dsamersoff
parents: 17310
diff changeset
   723
          goto err;
e31661417973 7133122: SA throws sun.jvm.hotspot.debugger.UnmappedAddressException when it should not
dsamersoff
parents: 17310
diff changeset
   724
        }
e31661417973 7133122: SA throws sun.jvm.hotspot.debugger.UnmappedAddressException when it should not
dsamersoff
parents: 17310
diff changeset
   725
      } else {
e31661417973 7133122: SA throws sun.jvm.hotspot.debugger.UnmappedAddressException when it should not
dsamersoff
parents: 17310
diff changeset
   726
        if ((existing_map->memsz != page_size) &&
e31661417973 7133122: SA throws sun.jvm.hotspot.debugger.UnmappedAddressException when it should not
dsamersoff
parents: 17310
diff changeset
   727
            (existing_map->fd != lib_fd) &&
e31661417973 7133122: SA throws sun.jvm.hotspot.debugger.UnmappedAddressException when it should not
dsamersoff
parents: 17310
diff changeset
   728
            (existing_map->memsz != lib_php->p_filesz)){
e31661417973 7133122: SA throws sun.jvm.hotspot.debugger.UnmappedAddressException when it should not
dsamersoff
parents: 17310
diff changeset
   729
e31661417973 7133122: SA throws sun.jvm.hotspot.debugger.UnmappedAddressException when it should not
dsamersoff
parents: 17310
diff changeset
   730
          print_debug("address conflict @ 0x%lx (size = %ld, flags = %d\n)",
e31661417973 7133122: SA throws sun.jvm.hotspot.debugger.UnmappedAddressException when it should not
dsamersoff
parents: 17310
diff changeset
   731
                        target_vaddr, lib_php->p_filesz, lib_php->p_flags);
e31661417973 7133122: SA throws sun.jvm.hotspot.debugger.UnmappedAddressException when it should not
dsamersoff
parents: 17310
diff changeset
   732
          goto err;
e31661417973 7133122: SA throws sun.jvm.hotspot.debugger.UnmappedAddressException when it should not
dsamersoff
parents: 17310
diff changeset
   733
        }
e31661417973 7133122: SA throws sun.jvm.hotspot.debugger.UnmappedAddressException when it should not
dsamersoff
parents: 17310
diff changeset
   734
e31661417973 7133122: SA throws sun.jvm.hotspot.debugger.UnmappedAddressException when it should not
dsamersoff
parents: 17310
diff changeset
   735
        /* replace PT_LOAD segment with library segment */
e31661417973 7133122: SA throws sun.jvm.hotspot.debugger.UnmappedAddressException when it should not
dsamersoff
parents: 17310
diff changeset
   736
        print_debug("overwrote with new address mapping (memsz %ld -> %ld)\n",
e31661417973 7133122: SA throws sun.jvm.hotspot.debugger.UnmappedAddressException when it should not
dsamersoff
parents: 17310
diff changeset
   737
                     existing_map->memsz, lib_php->p_filesz);
e31661417973 7133122: SA throws sun.jvm.hotspot.debugger.UnmappedAddressException when it should not
dsamersoff
parents: 17310
diff changeset
   738
e31661417973 7133122: SA throws sun.jvm.hotspot.debugger.UnmappedAddressException when it should not
dsamersoff
parents: 17310
diff changeset
   739
        existing_map->fd = lib_fd;
e31661417973 7133122: SA throws sun.jvm.hotspot.debugger.UnmappedAddressException when it should not
dsamersoff
parents: 17310
diff changeset
   740
        existing_map->offset = lib_php->p_offset;
e31661417973 7133122: SA throws sun.jvm.hotspot.debugger.UnmappedAddressException when it should not
dsamersoff
parents: 17310
diff changeset
   741
        existing_map->memsz = lib_php->p_filesz;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
      }
20068
e31661417973 7133122: SA throws sun.jvm.hotspot.debugger.UnmappedAddressException when it should not
dsamersoff
parents: 17310
diff changeset
   743
    }
e31661417973 7133122: SA throws sun.jvm.hotspot.debugger.UnmappedAddressException when it should not
dsamersoff
parents: 17310
diff changeset
   744
e31661417973 7133122: SA throws sun.jvm.hotspot.debugger.UnmappedAddressException when it should not
dsamersoff
parents: 17310
diff changeset
   745
    lib_php++;
e31661417973 7133122: SA throws sun.jvm.hotspot.debugger.UnmappedAddressException when it should not
dsamersoff
parents: 17310
diff changeset
   746
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   747
20068
e31661417973 7133122: SA throws sun.jvm.hotspot.debugger.UnmappedAddressException when it should not
dsamersoff
parents: 17310
diff changeset
   748
  free(phbuf);
e31661417973 7133122: SA throws sun.jvm.hotspot.debugger.UnmappedAddressException when it should not
dsamersoff
parents: 17310
diff changeset
   749
  return true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   750
err:
20068
e31661417973 7133122: SA throws sun.jvm.hotspot.debugger.UnmappedAddressException when it should not
dsamersoff
parents: 17310
diff changeset
   751
  free(phbuf);
e31661417973 7133122: SA throws sun.jvm.hotspot.debugger.UnmappedAddressException when it should not
dsamersoff
parents: 17310
diff changeset
   752
  return false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
489c9b5090e2 Initial load
duke
parents:
diff changeset
   755
// process segments from interpreter (ld.so or ld-linux.so)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
static bool read_interp_segments(struct ps_prochandle* ph) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
   ELF_EHDR interp_ehdr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   758
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
   if (read_elf_header(ph->core->interp_fd, &interp_ehdr) != true) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
       print_debug("interpreter is not a valid ELF file\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
       return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   762
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   763
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
   if (read_lib_segments(ph, ph->core->interp_fd, &interp_ehdr, ph->core->ld_base_addr) != true) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
       print_debug("can't read segments of interpreter\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
       return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   767
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
489c9b5090e2 Initial load
duke
parents:
diff changeset
   769
   return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
// process segments of a a.out
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
static bool read_exec_segments(struct ps_prochandle* ph, ELF_EHDR* exec_ehdr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   774
   int i = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   775
   ELF_PHDR* phbuf = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   776
   ELF_PHDR* exec_php = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   777
489c9b5090e2 Initial load
duke
parents:
diff changeset
   778
   if ((phbuf = read_program_header_table(ph->core->exec_fd, exec_ehdr)) == NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   779
      return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   780
489c9b5090e2 Initial load
duke
parents:
diff changeset
   781
   for (exec_php = phbuf, i = 0; i < exec_ehdr->e_phnum; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   782
      switch (exec_php->p_type) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   783
489c9b5090e2 Initial load
duke
parents:
diff changeset
   784
         // add mappings for PT_LOAD segments
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
         case PT_LOAD: {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   786
            // add only non-writable segments of non-zero filesz
489c9b5090e2 Initial load
duke
parents:
diff changeset
   787
            if (!(exec_php->p_flags & PF_W) && exec_php->p_filesz != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   788
               if (add_map_info(ph, ph->core->exec_fd, exec_php->p_offset, exec_php->p_vaddr, exec_php->p_filesz) == NULL) goto err;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
            }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   790
            break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
         }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
         // read the interpreter and it's segments
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
         case PT_INTERP: {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
            char interp_name[BUF_SIZE];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
            pread(ph->core->exec_fd, interp_name, MIN(exec_php->p_filesz, BUF_SIZE), exec_php->p_offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
            print_debug("ELF interpreter %s\n", interp_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
            // read interpreter segments as well
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
            if ((ph->core->interp_fd = pathmap_open(interp_name)) < 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   801
               print_debug("can't open runtime loader\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   802
               goto err;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   803
            }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   804
            break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   805
         }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   806
489c9b5090e2 Initial load
duke
parents:
diff changeset
   807
         // from PT_DYNAMIC we want to read address of first link_map addr
489c9b5090e2 Initial load
duke
parents:
diff changeset
   808
         case PT_DYNAMIC: {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   809
            ph->core->dynamic_addr = exec_php->p_vaddr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   810
            print_debug("address of _DYNAMIC is 0x%lx\n", ph->core->dynamic_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   811
            break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   812
         }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   813
489c9b5090e2 Initial load
duke
parents:
diff changeset
   814
      } // switch
489c9b5090e2 Initial load
duke
parents:
diff changeset
   815
      exec_php++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   816
   } // for
489c9b5090e2 Initial load
duke
parents:
diff changeset
   817
489c9b5090e2 Initial load
duke
parents:
diff changeset
   818
   free(phbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   819
   return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   820
err:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   821
   free(phbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   822
   return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   823
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   824
489c9b5090e2 Initial load
duke
parents:
diff changeset
   825
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
#define FIRST_LINK_MAP_OFFSET offsetof(struct r_debug,  r_map)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   827
#define LD_BASE_OFFSET        offsetof(struct r_debug,  r_ldbase)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   828
#define LINK_MAP_ADDR_OFFSET  offsetof(struct link_map, l_addr)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   829
#define LINK_MAP_NAME_OFFSET  offsetof(struct link_map, l_name)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   830
#define LINK_MAP_NEXT_OFFSET  offsetof(struct link_map, l_next)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   831
489c9b5090e2 Initial load
duke
parents:
diff changeset
   832
// read shared library info from runtime linker's data structures.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   833
// This work is done by librtlb_db in Solaris
489c9b5090e2 Initial load
duke
parents:
diff changeset
   834
static bool read_shared_lib_info(struct ps_prochandle* ph) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   835
   uintptr_t addr = ph->core->dynamic_addr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   836
   uintptr_t debug_base;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   837
   uintptr_t first_link_map_addr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   838
   uintptr_t ld_base_addr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   839
   uintptr_t link_map_addr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   840
   uintptr_t lib_base_diff;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   841
   uintptr_t lib_base;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   842
   uintptr_t lib_name_addr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   843
   char lib_name[BUF_SIZE];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   844
   ELF_DYN dyn;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   845
   ELF_EHDR elf_ehdr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   846
   int lib_fd;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   847
489c9b5090e2 Initial load
duke
parents:
diff changeset
   848
   // _DYNAMIC has information of the form
489c9b5090e2 Initial load
duke
parents:
diff changeset
   849
   //         [tag] [data] [tag] [data] .....
489c9b5090e2 Initial load
duke
parents:
diff changeset
   850
   // Both tag and data are pointer sized.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   851
   // We look for dynamic info with DT_DEBUG. This has shared object info.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   852
   // refer to struct r_debug in link.h
489c9b5090e2 Initial load
duke
parents:
diff changeset
   853
489c9b5090e2 Initial load
duke
parents:
diff changeset
   854
   dyn.d_tag = DT_NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   855
   while (dyn.d_tag != DT_DEBUG) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   856
      if (ps_pdread(ph, (psaddr_t) addr, &dyn, sizeof(ELF_DYN)) != PS_OK) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   857
         print_debug("can't read debug info from _DYNAMIC\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   858
         return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   859
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   860
      addr += sizeof(ELF_DYN);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   861
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   862
489c9b5090e2 Initial load
duke
parents:
diff changeset
   863
   // we have got Dyn entry with DT_DEBUG
489c9b5090e2 Initial load
duke
parents:
diff changeset
   864
   debug_base = dyn.d_un.d_ptr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   865
   // at debug_base we have struct r_debug. This has first link map in r_map field
489c9b5090e2 Initial load
duke
parents:
diff changeset
   866
   if (ps_pdread(ph, (psaddr_t) debug_base + FIRST_LINK_MAP_OFFSET,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   867
                 &first_link_map_addr, sizeof(uintptr_t)) != PS_OK) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   868
      print_debug("can't read first link map address\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   869
      return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   870
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   871
489c9b5090e2 Initial load
duke
parents:
diff changeset
   872
   // read ld_base address from struct r_debug
489c9b5090e2 Initial load
duke
parents:
diff changeset
   873
   if (ps_pdread(ph, (psaddr_t) debug_base + LD_BASE_OFFSET, &ld_base_addr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   874
                 sizeof(uintptr_t)) != PS_OK) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   875
      print_debug("can't read ld base address\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   876
      return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   877
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   878
   ph->core->ld_base_addr = ld_base_addr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   879
489c9b5090e2 Initial load
duke
parents:
diff changeset
   880
   print_debug("interpreter base address is 0x%lx\n", ld_base_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   881
489c9b5090e2 Initial load
duke
parents:
diff changeset
   882
   // now read segments from interp (i.e ld.so or ld-linux.so)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   883
   if (read_interp_segments(ph) != true)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   884
      return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   885
489c9b5090e2 Initial load
duke
parents:
diff changeset
   886
   // after adding interpreter (ld.so) mappings sort again
489c9b5090e2 Initial load
duke
parents:
diff changeset
   887
   if (sort_map_array(ph) != true)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   888
      return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   889
489c9b5090e2 Initial load
duke
parents:
diff changeset
   890
   print_debug("first link map is at 0x%lx\n", first_link_map_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   891
489c9b5090e2 Initial load
duke
parents:
diff changeset
   892
   link_map_addr = first_link_map_addr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   893
   while (link_map_addr != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   894
      // read library base address of the .so. Note that even though <sys/link.h> calls
489c9b5090e2 Initial load
duke
parents:
diff changeset
   895
      // link_map->l_addr as "base address",  this is * not * really base virtual
489c9b5090e2 Initial load
duke
parents:
diff changeset
   896
      // address of the shared object. This is actually the difference b/w the virtual
489c9b5090e2 Initial load
duke
parents:
diff changeset
   897
      // address mentioned in shared object and the actual virtual base where runtime
489c9b5090e2 Initial load
duke
parents:
diff changeset
   898
      // linker loaded it. We use "base diff" in read_lib_segments call below.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   899
489c9b5090e2 Initial load
duke
parents:
diff changeset
   900
      if (ps_pdread(ph, (psaddr_t) link_map_addr + LINK_MAP_ADDR_OFFSET,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   901
                   &lib_base_diff, sizeof(uintptr_t)) != PS_OK) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   902
         print_debug("can't read shared object base address diff\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   903
         return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   904
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   905
489c9b5090e2 Initial load
duke
parents:
diff changeset
   906
      // read address of the name
489c9b5090e2 Initial load
duke
parents:
diff changeset
   907
      if (ps_pdread(ph, (psaddr_t) link_map_addr + LINK_MAP_NAME_OFFSET,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   908
                    &lib_name_addr, sizeof(uintptr_t)) != PS_OK) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   909
         print_debug("can't read address of shared object name\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   910
         return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   911
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   912
489c9b5090e2 Initial load
duke
parents:
diff changeset
   913
      // read name of the shared object
5341
290a02b4adb3 6945219: minor SA fixes
never
parents: 2105
diff changeset
   914
      lib_name[0] = '\0';
290a02b4adb3 6945219: minor SA fixes
never
parents: 2105
diff changeset
   915
      if (lib_name_addr != 0 &&
290a02b4adb3 6945219: minor SA fixes
never
parents: 2105
diff changeset
   916
          read_string(ph, (uintptr_t) lib_name_addr, lib_name, sizeof(lib_name)) != true) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   917
         print_debug("can't read shared object name\n");
5341
290a02b4adb3 6945219: minor SA fixes
never
parents: 2105
diff changeset
   918
         // don't let failure to read the name stop opening the file.  If something is really wrong
290a02b4adb3 6945219: minor SA fixes
never
parents: 2105
diff changeset
   919
         // it will fail later.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   920
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   921
489c9b5090e2 Initial load
duke
parents:
diff changeset
   922
      if (lib_name[0] != '\0') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   923
         // ignore empty lib names
489c9b5090e2 Initial load
duke
parents:
diff changeset
   924
         lib_fd = pathmap_open(lib_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   925
489c9b5090e2 Initial load
duke
parents:
diff changeset
   926
         if (lib_fd < 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   927
            print_debug("can't open shared object %s\n", lib_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   928
            // continue with other libraries...
489c9b5090e2 Initial load
duke
parents:
diff changeset
   929
         } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   930
            if (read_elf_header(lib_fd, &elf_ehdr)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   931
               lib_base = lib_base_diff + find_base_address(lib_fd, &elf_ehdr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   932
               print_debug("reading library %s @ 0x%lx [ 0x%lx ]\n",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   933
                           lib_name, lib_base, lib_base_diff);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   934
               // while adding library mappings we need to use "base difference".
489c9b5090e2 Initial load
duke
parents:
diff changeset
   935
               if (! read_lib_segments(ph, lib_fd, &elf_ehdr, lib_base_diff)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   936
                  print_debug("can't read shared object's segments\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   937
                  close(lib_fd);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   938
                  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   939
               }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   940
               add_lib_info_fd(ph, lib_name, lib_fd, lib_base);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   941
               // Map info is added for the library (lib_name) so
489c9b5090e2 Initial load
duke
parents:
diff changeset
   942
               // we need to re-sort it before calling the p_pdread.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   943
               if (sort_map_array(ph) != true)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   944
                  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   945
            } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   946
               print_debug("can't read ELF header for shared object %s\n", lib_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   947
               close(lib_fd);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   948
               // continue with other libraries...
489c9b5090e2 Initial load
duke
parents:
diff changeset
   949
            }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   950
         }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   951
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   952
489c9b5090e2 Initial load
duke
parents:
diff changeset
   953
      // read next link_map address
489c9b5090e2 Initial load
duke
parents:
diff changeset
   954
      if (ps_pdread(ph, (psaddr_t) link_map_addr + LINK_MAP_NEXT_OFFSET,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   955
                        &link_map_addr, sizeof(uintptr_t)) != PS_OK) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   956
         print_debug("can't read next link in link_map\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   957
         return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   958
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   959
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   960
489c9b5090e2 Initial load
duke
parents:
diff changeset
   961
   return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   962
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   963
489c9b5090e2 Initial load
duke
parents:
diff changeset
   964
// the one and only one exposed stuff from this file
489c9b5090e2 Initial load
duke
parents:
diff changeset
   965
struct ps_prochandle* Pgrab_core(const char* exec_file, const char* core_file) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   966
   ELF_EHDR core_ehdr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   967
   ELF_EHDR exec_ehdr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   968
   ELF_EHDR lib_ehdr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   969
489c9b5090e2 Initial load
duke
parents:
diff changeset
   970
   struct ps_prochandle* ph = (struct ps_prochandle*) calloc(1, sizeof(struct ps_prochandle));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   971
   if (ph == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   972
      print_debug("can't allocate ps_prochandle\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   973
      return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   974
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   975
489c9b5090e2 Initial load
duke
parents:
diff changeset
   976
   if ((ph->core = (struct core_data*) calloc(1, sizeof(struct core_data))) == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   977
      free(ph);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   978
      print_debug("can't allocate ps_prochandle\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   979
      return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   980
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   981
489c9b5090e2 Initial load
duke
parents:
diff changeset
   982
   // initialize ph
489c9b5090e2 Initial load
duke
parents:
diff changeset
   983
   ph->ops = &core_ops;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   984
   ph->core->core_fd   = -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   985
   ph->core->exec_fd   = -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   986
   ph->core->interp_fd = -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   987
489c9b5090e2 Initial load
duke
parents:
diff changeset
   988
   // open the core file
489c9b5090e2 Initial load
duke
parents:
diff changeset
   989
   if ((ph->core->core_fd = open(core_file, O_RDONLY)) < 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   990
      print_debug("can't open core file\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   991
      goto err;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   992
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   993
489c9b5090e2 Initial load
duke
parents:
diff changeset
   994
   // read core file ELF header
489c9b5090e2 Initial load
duke
parents:
diff changeset
   995
   if (read_elf_header(ph->core->core_fd, &core_ehdr) != true || core_ehdr.e_type != ET_CORE) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   996
      print_debug("core file is not a valid ELF ET_CORE file\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   997
      goto err;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   998
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   999
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1000
   if ((ph->core->exec_fd = open(exec_file, O_RDONLY)) < 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1001
      print_debug("can't open executable file\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1002
      goto err;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1003
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1004
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1005
   if (read_elf_header(ph->core->exec_fd, &exec_ehdr) != true || exec_ehdr.e_type != ET_EXEC) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1006
      print_debug("executable file is not a valid ELF ET_EXEC file\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1007
      goto err;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1008
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1009
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1010
   // process core file segments
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1011
   if (read_core_segments(ph, &core_ehdr) != true)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1012
      goto err;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1013
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1014
   // process exec file segments
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1015
   if (read_exec_segments(ph, &exec_ehdr) != true)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1016
      goto err;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1017
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1018
   // exec file is also treated like a shared object for symbol search
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1019
   if (add_lib_info_fd(ph, exec_file, ph->core->exec_fd,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1020
                       (uintptr_t)0 + find_base_address(ph->core->exec_fd, &exec_ehdr)) == NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1021
      goto err;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1022
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1023
   // allocate and sort maps into map_array, we need to do this
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1024
   // here because read_shared_lib_info needs to read from debuggee
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1025
   // address space
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1026
   if (sort_map_array(ph) != true)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1027
      goto err;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1028
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1029
   if (read_shared_lib_info(ph) != true)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1030
      goto err;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1031
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1032
   // sort again because we have added more mappings from shared objects
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1033
   if (sort_map_array(ph) != true)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1034
      goto err;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1035
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1036
   if (init_classsharing_workaround(ph) != true)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1037
      goto err;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1038
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1039
   return ph;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1040
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1041
err:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1042
   Prelease(ph);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1043
   return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1044
}