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