author | iveresov |
Mon, 20 Nov 2017 19:00:22 -0800 | |
changeset 48007 | ab3959df2115 |
parent 47635 | dfb375d231fb |
child 50818 | e46b9e514479 |
permissions | -rw-r--r-- |
10739 | 1 |
/* |
46630
75aa3e39d02c
8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents:
42047
diff
changeset
|
2 |
* Copyright (c) 2002, 2017, Oracle and/or its affiliates. All rights reserved. |
10739 | 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 |
* |
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
20 |
* or visit www.oracle.com if you need additional information or have any |
|
21 |
* questions. |
|
22 |
* |
|
23 |
*/ |
|
24 |
||
25 |
#include <objc/objc-runtime.h> |
|
26 |
#import <Foundation/Foundation.h> |
|
27 |
#import <JavaNativeFoundation/JavaNativeFoundation.h> |
|
42047
72bc0277f889
8160376: DebuggerException: Can't attach symbolicator to the process
dsamersoff
parents:
35217
diff
changeset
|
28 |
#import <JavaRuntimeSupport/JavaRuntimeSupport.h> |
10739 | 29 |
|
25065
fbb17c582d13
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23480
diff
changeset
|
30 |
#include <jni.h> |
10739 | 31 |
|
32 |
#import <mach/mach.h> |
|
33 |
#import <mach/mach_types.h> |
|
34 |
#import <sys/sysctl.h> |
|
13873 | 35 |
#import <stdio.h> |
36 |
#import <stdarg.h> |
|
10739 | 37 |
#import <stdlib.h> |
13873 | 38 |
#import <strings.h> |
39 |
#import <dlfcn.h> |
|
40 |
#import <limits.h> |
|
41 |
#import <errno.h> |
|
15738
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
42 |
#import <sys/types.h> |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
43 |
#import <sys/ptrace.h> |
16351 | 44 |
#include "libproc_impl.h" |
10739 | 45 |
|
16351 | 46 |
#define UNSUPPORTED_ARCH "Unsupported architecture!" |
47 |
||
48 |
#if defined(x86_64) && !defined(amd64) |
|
49 |
#define amd64 1 |
|
50 |
#endif |
|
51 |
||
52 |
#if amd64 |
|
53 |
#include "sun_jvm_hotspot_debugger_amd64_AMD64ThreadContext.h" |
|
54 |
#else |
|
55 |
#error UNSUPPORTED_ARCH |
|
56 |
#endif |
|
10739 | 57 |
|
58 |
static jfieldID symbolicatorID = 0; // set in _init0 |
|
59 |
static jfieldID taskID = 0; // set in _init0 |
|
60 |
||
16351 | 61 |
static jfieldID p_ps_prochandle_ID = 0; |
62 |
static jfieldID loadObjectList_ID = 0; |
|
63 |
static jmethodID listAdd_ID = 0; |
|
64 |
||
65 |
static jmethodID createClosestSymbol_ID = 0; |
|
66 |
static jmethodID createLoadObject_ID = 0; |
|
67 |
static jmethodID getJavaThreadsInfo_ID = 0; |
|
68 |
||
69 |
// indicator if thread id (lwpid_t) was set |
|
70 |
static bool _threads_filled = false; |
|
71 |
||
10739 | 72 |
static void putSymbolicator(JNIEnv *env, jobject this_obj, id symbolicator) { |
73 |
(*env)->SetLongField(env, this_obj, symbolicatorID, (jlong)(intptr_t)symbolicator); |
|
74 |
} |
|
75 |
||
76 |
static id getSymbolicator(JNIEnv *env, jobject this_obj) { |
|
77 |
jlong ptr = (*env)->GetLongField(env, this_obj, symbolicatorID); |
|
78 |
return (id)(intptr_t)ptr; |
|
79 |
} |
|
80 |
||
81 |
static void putTask(JNIEnv *env, jobject this_obj, task_t task) { |
|
82 |
(*env)->SetLongField(env, this_obj, taskID, (jlong)task); |
|
83 |
} |
|
84 |
||
85 |
static task_t getTask(JNIEnv *env, jobject this_obj) { |
|
86 |
jlong ptr = (*env)->GetLongField(env, this_obj, taskID); |
|
87 |
return (task_t)ptr; |
|
88 |
} |
|
89 |
||
90 |
#define CHECK_EXCEPTION_(value) if ((*env)->ExceptionOccurred(env)) { return value; } |
|
91 |
#define CHECK_EXCEPTION if ((*env)->ExceptionOccurred(env)) { return;} |
|
92 |
#define THROW_NEW_DEBUGGER_EXCEPTION_(str, value) { throw_new_debugger_exception(env, str); return value; } |
|
93 |
#define THROW_NEW_DEBUGGER_EXCEPTION(str) { throw_new_debugger_exception(env, str); return;} |
|
13873 | 94 |
#define CHECK_EXCEPTION_CLEAR if ((*env)->ExceptionOccurred(env)) { (*env)->ExceptionClear(env); } |
95 |
#define CHECK_EXCEPTION_CLEAR_VOID if ((*env)->ExceptionOccurred(env)) { (*env)->ExceptionClear(env); return; } |
|
96 |
#define CHECK_EXCEPTION_CLEAR_(value) if ((*env)->ExceptionOccurred(env)) { (*env)->ExceptionClear(env); return value; } |
|
10739 | 97 |
|
98 |
static void throw_new_debugger_exception(JNIEnv* env, const char* errMsg) { |
|
23480
f00b06ce57c5
8034034: [parfait] JNI exc. pending in hotspot/agent/src/os/bsd/MacosxDebuggerLocal.m
ccheung
parents:
17088
diff
changeset
|
99 |
jclass exceptionClass = (*env)->FindClass(env, "sun/jvm/hotspot/debugger/DebuggerException"); |
f00b06ce57c5
8034034: [parfait] JNI exc. pending in hotspot/agent/src/os/bsd/MacosxDebuggerLocal.m
ccheung
parents:
17088
diff
changeset
|
100 |
CHECK_EXCEPTION; |
f00b06ce57c5
8034034: [parfait] JNI exc. pending in hotspot/agent/src/os/bsd/MacosxDebuggerLocal.m
ccheung
parents:
17088
diff
changeset
|
101 |
(*env)->ThrowNew(env, exceptionClass, errMsg); |
10739 | 102 |
} |
103 |
||
16351 | 104 |
static struct ps_prochandle* get_proc_handle(JNIEnv* env, jobject this_obj) { |
105 |
jlong ptr = (*env)->GetLongField(env, this_obj, p_ps_prochandle_ID); |
|
106 |
return (struct ps_prochandle*)(intptr_t)ptr; |
|
107 |
} |
|
108 |
||
10739 | 109 |
#if defined(__i386__) |
110 |
#define hsdb_thread_state_t x86_thread_state32_t |
|
111 |
#define hsdb_float_state_t x86_float_state32_t |
|
112 |
#define HSDB_THREAD_STATE x86_THREAD_STATE32 |
|
113 |
#define HSDB_FLOAT_STATE x86_FLOAT_STATE32 |
|
114 |
#define HSDB_THREAD_STATE_COUNT x86_THREAD_STATE32_COUNT |
|
115 |
#define HSDB_FLOAT_STATE_COUNT x86_FLOAT_STATE32_COUNT |
|
116 |
#elif defined(__x86_64__) |
|
117 |
#define hsdb_thread_state_t x86_thread_state64_t |
|
118 |
#define hsdb_float_state_t x86_float_state64_t |
|
119 |
#define HSDB_THREAD_STATE x86_THREAD_STATE64 |
|
120 |
#define HSDB_FLOAT_STATE x86_FLOAT_STATE64 |
|
121 |
#define HSDB_THREAD_STATE_COUNT x86_THREAD_STATE64_COUNT |
|
122 |
#define HSDB_FLOAT_STATE_COUNT x86_FLOAT_STATE64_COUNT |
|
123 |
#else |
|
16351 | 124 |
#error UNSUPPORTED_ARCH |
10739 | 125 |
#endif |
126 |
||
127 |
/* |
|
128 |
* Class: sun_jvm_hotspot_debugger_bsd_BsdDebuggerLocal |
|
129 |
* Method: init0 |
|
130 |
* Signature: ()V |
|
131 |
*/ |
|
15593
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
132 |
JNIEXPORT void JNICALL |
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
133 |
Java_sun_jvm_hotspot_debugger_bsd_BsdDebuggerLocal_init0(JNIEnv *env, jclass cls) { |
10739 | 134 |
symbolicatorID = (*env)->GetFieldID(env, cls, "symbolicator", "J"); |
23480
f00b06ce57c5
8034034: [parfait] JNI exc. pending in hotspot/agent/src/os/bsd/MacosxDebuggerLocal.m
ccheung
parents:
17088
diff
changeset
|
135 |
CHECK_EXCEPTION; |
10739 | 136 |
taskID = (*env)->GetFieldID(env, cls, "task", "J"); |
137 |
CHECK_EXCEPTION; |
|
16351 | 138 |
|
139 |
// for core file |
|
140 |
p_ps_prochandle_ID = (*env)->GetFieldID(env, cls, "p_ps_prochandle", "J"); |
|
141 |
CHECK_EXCEPTION; |
|
142 |
loadObjectList_ID = (*env)->GetFieldID(env, cls, "loadObjectList", "Ljava/util/List;"); |
|
143 |
CHECK_EXCEPTION; |
|
144 |
||
145 |
// methods we use |
|
146 |
createClosestSymbol_ID = (*env)->GetMethodID(env, cls, "createClosestSymbol", |
|
147 |
"(Ljava/lang/String;J)Lsun/jvm/hotspot/debugger/cdbg/ClosestSymbol;"); |
|
148 |
CHECK_EXCEPTION; |
|
149 |
createLoadObject_ID = (*env)->GetMethodID(env, cls, "createLoadObject", |
|
150 |
"(Ljava/lang/String;JJ)Lsun/jvm/hotspot/debugger/cdbg/LoadObject;"); |
|
151 |
CHECK_EXCEPTION; |
|
152 |
||
153 |
// java.util.List method we call |
|
154 |
jclass listClass = (*env)->FindClass(env, "java/util/List"); |
|
155 |
CHECK_EXCEPTION; |
|
156 |
listAdd_ID = (*env)->GetMethodID(env, listClass, "add", "(Ljava/lang/Object;)Z"); |
|
157 |
CHECK_EXCEPTION; |
|
158 |
getJavaThreadsInfo_ID = (*env)->GetMethodID(env, cls, "getJavaThreadsInfo", |
|
159 |
"()[J"); |
|
160 |
CHECK_EXCEPTION; |
|
161 |
||
162 |
init_libproc(getenv("LIBSAPROC_DEBUG") != NULL); |
|
163 |
} |
|
164 |
||
165 |
JNIEXPORT jint JNICALL Java_sun_jvm_hotspot_debugger_bsd_BsdDebuggerLocal_getAddressSize |
|
166 |
(JNIEnv *env, jclass cls) |
|
167 |
{ |
|
168 |
#ifdef _LP64 |
|
169 |
return 8; |
|
170 |
#else |
|
171 |
#error UNSUPPORTED_ARCH |
|
172 |
#endif |
|
173 |
} |
|
174 |
||
175 |
/** called by Java_sun_jvm_hotspot_debugger_bsd_BsdDebuggerLocal_lookupByName0 */ |
|
176 |
jlong lookupByNameIncore( |
|
177 |
JNIEnv *env, struct ps_prochandle *ph, jobject this_obj, jstring objectName, jstring symbolName) |
|
178 |
{ |
|
179 |
const char *objectName_cstr, *symbolName_cstr; |
|
180 |
jlong addr; |
|
181 |
jboolean isCopy; |
|
182 |
objectName_cstr = NULL; |
|
183 |
if (objectName != NULL) { |
|
184 |
objectName_cstr = (*env)->GetStringUTFChars(env, objectName, &isCopy); |
|
185 |
CHECK_EXCEPTION_(0); |
|
186 |
} |
|
187 |
symbolName_cstr = (*env)->GetStringUTFChars(env, symbolName, &isCopy); |
|
188 |
CHECK_EXCEPTION_(0); |
|
189 |
||
190 |
print_debug("look for %s \n", symbolName_cstr); |
|
191 |
addr = (jlong) lookup_symbol(ph, objectName_cstr, symbolName_cstr); |
|
192 |
||
193 |
if (objectName_cstr != NULL) { |
|
194 |
(*env)->ReleaseStringUTFChars(env, objectName, objectName_cstr); |
|
195 |
} |
|
196 |
(*env)->ReleaseStringUTFChars(env, symbolName, symbolName_cstr); |
|
197 |
return addr; |
|
10739 | 198 |
} |
199 |
||
200 |
/* |
|
201 |
* Class: sun_jvm_hotspot_debugger_bsd_BsdDebuggerLocal |
|
202 |
* Method: lookupByName0 |
|
203 |
* Signature: (Ljava/lang/String;Ljava/lang/String;)J |
|
204 |
*/ |
|
15593
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
205 |
JNIEXPORT jlong JNICALL |
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
206 |
Java_sun_jvm_hotspot_debugger_bsd_BsdDebuggerLocal_lookupByName0( |
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
207 |
JNIEnv *env, jobject this_obj, |
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
208 |
jstring objectName, jstring symbolName) |
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
209 |
{ |
16351 | 210 |
struct ps_prochandle* ph = get_proc_handle(env, this_obj); |
17084
41fd7e2a5853
8013466: SA crashes when attaching to a process on OS X
sla
parents:
16351
diff
changeset
|
211 |
if (ph != NULL && ph->core != NULL) { |
16351 | 212 |
return lookupByNameIncore(env, ph, this_obj, objectName, symbolName); |
213 |
} |
|
214 |
||
10739 | 215 |
jlong address = 0; |
216 |
||
217 |
JNF_COCOA_ENTER(env); |
|
218 |
NSString *symbolNameString = JNFJavaToNSString(env, symbolName); |
|
219 |
||
16351 | 220 |
print_debug("lookupInProcess called for %s\n", [symbolNameString UTF8String]); |
10739 | 221 |
|
222 |
id symbolicator = getSymbolicator(env, this_obj); |
|
223 |
if (symbolicator != nil) { |
|
224 |
uint64_t (*dynamicCall)(id, SEL, NSString *) = (uint64_t (*)(id, SEL, NSString *))&objc_msgSend; |
|
225 |
address = (jlong) dynamicCall(symbolicator, @selector(addressForSymbol:), symbolNameString); |
|
226 |
} |
|
227 |
||
16351 | 228 |
print_debug("address of symbol %s = %llx\n", [symbolNameString UTF8String], address); |
10739 | 229 |
JNF_COCOA_EXIT(env); |
230 |
||
231 |
return address; |
|
232 |
} |
|
233 |
||
234 |
/* |
|
235 |
* Class: sun_jvm_hotspot_debugger_bsd_BsdDebuggerLocal |
|
16351 | 236 |
* Method: lookupByAddress0 |
237 |
* Signature: (J)Lsun/jvm/hotspot/debugger/cdbg/ClosestSymbol; |
|
238 |
*/ |
|
239 |
JNIEXPORT jobject JNICALL Java_sun_jvm_hotspot_debugger_bsd_BsdDebuggerLocal_lookupByAddress0 |
|
240 |
(JNIEnv *env, jobject this_obj, jlong addr) { |
|
241 |
uintptr_t offset; |
|
242 |
const char* sym = NULL; |
|
23480
f00b06ce57c5
8034034: [parfait] JNI exc. pending in hotspot/agent/src/os/bsd/MacosxDebuggerLocal.m
ccheung
parents:
17088
diff
changeset
|
243 |
jstring sym_string; |
16351 | 244 |
|
245 |
struct ps_prochandle* ph = get_proc_handle(env, this_obj); |
|
17084
41fd7e2a5853
8013466: SA crashes when attaching to a process on OS X
sla
parents:
16351
diff
changeset
|
246 |
if (ph != NULL && ph->core != NULL) { |
41fd7e2a5853
8013466: SA crashes when attaching to a process on OS X
sla
parents:
16351
diff
changeset
|
247 |
sym = symbol_for_pc(ph, (uintptr_t) addr, &offset); |
41fd7e2a5853
8013466: SA crashes when attaching to a process on OS X
sla
parents:
16351
diff
changeset
|
248 |
if (sym == NULL) return 0; |
23480
f00b06ce57c5
8034034: [parfait] JNI exc. pending in hotspot/agent/src/os/bsd/MacosxDebuggerLocal.m
ccheung
parents:
17088
diff
changeset
|
249 |
sym_string = (*env)->NewStringUTF(env, sym); |
f00b06ce57c5
8034034: [parfait] JNI exc. pending in hotspot/agent/src/os/bsd/MacosxDebuggerLocal.m
ccheung
parents:
17088
diff
changeset
|
250 |
CHECK_EXCEPTION_(0); |
17084
41fd7e2a5853
8013466: SA crashes when attaching to a process on OS X
sla
parents:
16351
diff
changeset
|
251 |
return (*env)->CallObjectMethod(env, this_obj, createClosestSymbol_ID, |
23480
f00b06ce57c5
8034034: [parfait] JNI exc. pending in hotspot/agent/src/os/bsd/MacosxDebuggerLocal.m
ccheung
parents:
17088
diff
changeset
|
252 |
sym_string, (jlong)offset); |
17084
41fd7e2a5853
8013466: SA crashes when attaching to a process on OS X
sla
parents:
16351
diff
changeset
|
253 |
} |
41fd7e2a5853
8013466: SA crashes when attaching to a process on OS X
sla
parents:
16351
diff
changeset
|
254 |
return 0; |
16351 | 255 |
} |
256 |
||
257 |
/** called from Java_sun_jvm_hotspot_debugger_bsd_BsdDebuggerLocal_readBytesFromProcess0 */ |
|
258 |
jbyteArray readBytesFromCore( |
|
259 |
JNIEnv *env, struct ps_prochandle *ph, jobject this_obj, jlong addr, jlong numBytes) |
|
260 |
{ |
|
261 |
jboolean isCopy; |
|
262 |
jbyteArray array; |
|
263 |
jbyte *bufPtr; |
|
264 |
ps_err_e err; |
|
265 |
||
266 |
array = (*env)->NewByteArray(env, numBytes); |
|
267 |
CHECK_EXCEPTION_(0); |
|
268 |
bufPtr = (*env)->GetByteArrayElements(env, array, &isCopy); |
|
269 |
CHECK_EXCEPTION_(0); |
|
270 |
||
271 |
err = ps_pread(ph, (psaddr_t) (uintptr_t)addr, bufPtr, numBytes); |
|
272 |
(*env)->ReleaseByteArrayElements(env, array, bufPtr, 0); |
|
273 |
return (err == PS_OK)? array : 0; |
|
274 |
} |
|
275 |
||
276 |
/* |
|
277 |
* Class: sun_jvm_hotspot_debugger_bsd_BsdDebuggerLocal |
|
10739 | 278 |
* Method: readBytesFromProcess0 |
279 |
* Signature: (JJ)Lsun/jvm/hotspot/debugger/ReadResult; |
|
280 |
*/ |
|
15593
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
281 |
JNIEXPORT jbyteArray JNICALL |
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
282 |
Java_sun_jvm_hotspot_debugger_bsd_BsdDebuggerLocal_readBytesFromProcess0( |
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
283 |
JNIEnv *env, jobject this_obj, |
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
284 |
jlong addr, jlong numBytes) |
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
285 |
{ |
16351 | 286 |
print_debug("readBytesFromProcess called. addr = %llx numBytes = %lld\n", addr, numBytes); |
10739 | 287 |
|
288 |
// must allocate storage instead of using former parameter buf |
|
289 |
jbyteArray array; |
|
16351 | 290 |
|
291 |
struct ps_prochandle* ph = get_proc_handle(env, this_obj); |
|
17084
41fd7e2a5853
8013466: SA crashes when attaching to a process on OS X
sla
parents:
16351
diff
changeset
|
292 |
if (ph != NULL && ph->core != NULL) { |
16351 | 293 |
return readBytesFromCore(env, ph, this_obj, addr, numBytes); |
294 |
} |
|
10739 | 295 |
|
296 |
array = (*env)->NewByteArray(env, numBytes); |
|
297 |
CHECK_EXCEPTION_(0); |
|
298 |
||
299 |
unsigned long alignedAddress; |
|
15868
861a1da183b8
8008327: [parfait] Unitialized variable in hotspot/agent/src/os/bsd/MacosxDebuggerLocal.m
morris
parents:
15738
diff
changeset
|
300 |
unsigned long alignedLength = 0; |
10739 | 301 |
kern_return_t result; |
302 |
vm_offset_t *pages; |
|
303 |
int *mapped; |
|
304 |
long pageCount; |
|
305 |
uint byteCount; |
|
306 |
int i; |
|
307 |
unsigned long remaining; |
|
308 |
||
309 |
alignedAddress = trunc_page(addr); |
|
310 |
if (addr != alignedAddress) { |
|
311 |
alignedLength += addr - alignedAddress; |
|
312 |
} |
|
313 |
alignedLength = round_page(numBytes); |
|
314 |
pageCount = alignedLength/vm_page_size; |
|
315 |
||
316 |
// Allocate storage for pages and flags. |
|
317 |
pages = malloc(pageCount * sizeof(vm_offset_t)); |
|
318 |
mapped = calloc(pageCount, sizeof(int)); |
|
319 |
||
320 |
task_t gTask = getTask(env, this_obj); |
|
321 |
// Try to read each of the pages. |
|
322 |
for (i = 0; i < pageCount; i++) { |
|
323 |
result = vm_read(gTask, alignedAddress + i*vm_page_size, vm_page_size, |
|
324 |
&pages[i], &byteCount); |
|
325 |
mapped[i] = (result == KERN_SUCCESS); |
|
326 |
// assume all failures are unmapped pages |
|
327 |
} |
|
328 |
||
16351 | 329 |
print_debug("%ld pages\n", pageCount); |
10739 | 330 |
|
331 |
remaining = numBytes; |
|
332 |
||
333 |
for (i = 0; i < pageCount; i++) { |
|
334 |
unsigned long len = vm_page_size; |
|
335 |
unsigned long start = 0; |
|
336 |
||
337 |
if (i == 0) { |
|
338 |
start = addr - alignedAddress; |
|
339 |
len = vm_page_size - start; |
|
340 |
} |
|
341 |
||
342 |
if (i == (pageCount - 1)) { |
|
343 |
len = remaining; |
|
344 |
} |
|
345 |
||
346 |
if (mapped[i]) { |
|
16351 | 347 |
print_debug("page %d mapped (len %ld start %ld)\n", i, len, start); |
10739 | 348 |
(*env)->SetByteArrayRegion(env, array, 0, len, ((jbyte *) pages[i] + start)); |
349 |
vm_deallocate(mach_task_self(), pages[i], vm_page_size); |
|
350 |
} |
|
351 |
||
352 |
remaining -= len; |
|
353 |
} |
|
354 |
||
355 |
free (pages); |
|
356 |
free (mapped); |
|
357 |
return array; |
|
358 |
} |
|
359 |
||
16351 | 360 |
/** Only used for core file reading, set thread_id for threads which is got after core file parsed. |
361 |
* Thread context is available in Mach-O core file but thread id is not. We can get thread id |
|
362 |
* from Threads which store all java threads information when they are created. Here we can identify |
|
363 |
* them as java threads by checking if a thread's rsp or rbp within a java thread's stack. |
|
364 |
* Note Macosx uses unique_thread_id which is different from other platforms though printed ids |
|
365 |
* are still pthread id. Function BsdDebuggerLocal.getJavaThreadsInfo returns an array of long |
|
366 |
* integers to host all java threads' id, stack_start, stack_end as: |
|
367 |
* [uid0, stack_start0, stack_end0, uid1, stack_start1, stack_end1, ...] |
|
368 |
* |
|
369 |
* The work cannot be done at init0 since Threads is not available yet(VM not initialized yet). |
|
370 |
* This function should be called only once if succeeded |
|
371 |
*/ |
|
372 |
bool fill_java_threads(JNIEnv* env, jobject this_obj, struct ps_prochandle* ph) { |
|
373 |
int n = 0, i = 0, j; |
|
374 |
struct reg regs; |
|
375 |
||
376 |
jlongArray thrinfos = (*env)->CallObjectMethod(env, this_obj, getJavaThreadsInfo_ID); |
|
377 |
CHECK_EXCEPTION_(false); |
|
378 |
int len = (int)(*env)->GetArrayLength(env, thrinfos); |
|
379 |
uint64_t* cinfos = (uint64_t *)(*env)->GetLongArrayElements(env, thrinfos, NULL); |
|
380 |
CHECK_EXCEPTION_(false); |
|
381 |
n = get_num_threads(ph); |
|
382 |
print_debug("fill_java_threads called, num_of_thread = %d\n", n); |
|
383 |
for (i = 0; i < n; i++) { |
|
384 |
if (!get_nth_lwp_regs(ph, i, ®s)) { |
|
385 |
print_debug("Could not get regs of thread %d, already set!\n", i); |
|
386 |
return false; |
|
387 |
} |
|
388 |
for (j = 0; j < len; j += 3) { |
|
389 |
lwpid_t uid = cinfos[j]; |
|
390 |
uint64_t beg = cinfos[j + 1]; |
|
391 |
uint64_t end = cinfos[j + 2]; |
|
392 |
if ((regs.r_rsp < end && regs.r_rsp >= beg) || |
|
393 |
(regs.r_rbp < end && regs.r_rbp >= beg)) { |
|
394 |
set_lwp_id(ph, i, uid); |
|
395 |
break; |
|
396 |
} |
|
397 |
} |
|
398 |
} |
|
399 |
(*env)->ReleaseLongArrayElements(env, thrinfos, (jlong*)cinfos, 0); |
|
400 |
CHECK_EXCEPTION_(false); |
|
401 |
return true; |
|
402 |
} |
|
403 |
||
404 |
/* For core file only, called from |
|
405 |
* Java_sun_jvm_hotspot_debugger_bsd_BsdDebuggerLocal_getThreadIntegerRegisterSet0 |
|
406 |
*/ |
|
17084
41fd7e2a5853
8013466: SA crashes when attaching to a process on OS X
sla
parents:
16351
diff
changeset
|
407 |
jlongArray getThreadIntegerRegisterSetFromCore(JNIEnv *env, jobject this_obj, long lwp_id, struct ps_prochandle* ph) { |
16351 | 408 |
if (!_threads_filled) { |
17084
41fd7e2a5853
8013466: SA crashes when attaching to a process on OS X
sla
parents:
16351
diff
changeset
|
409 |
if (!fill_java_threads(env, this_obj, ph)) { |
16351 | 410 |
throw_new_debugger_exception(env, "Failed to fill in threads"); |
411 |
return 0; |
|
412 |
} else { |
|
413 |
_threads_filled = true; |
|
414 |
} |
|
415 |
} |
|
416 |
||
417 |
struct reg gregs; |
|
418 |
jboolean isCopy; |
|
419 |
jlongArray array; |
|
420 |
jlong *regs; |
|
421 |
||
422 |
if (get_lwp_regs(ph, lwp_id, &gregs) != true) { |
|
423 |
THROW_NEW_DEBUGGER_EXCEPTION_("get_thread_regs failed for a lwp", 0); |
|
424 |
} |
|
425 |
||
426 |
#undef NPRGREG |
|
427 |
#undef REG_INDEX |
|
428 |
#if amd64 |
|
429 |
#define NPRGREG sun_jvm_hotspot_debugger_amd64_AMD64ThreadContext_NPRGREG |
|
430 |
#define REG_INDEX(reg) sun_jvm_hotspot_debugger_amd64_AMD64ThreadContext_##reg |
|
431 |
||
432 |
array = (*env)->NewLongArray(env, NPRGREG); |
|
433 |
CHECK_EXCEPTION_(0); |
|
434 |
regs = (*env)->GetLongArrayElements(env, array, &isCopy); |
|
435 |
||
436 |
regs[REG_INDEX(R15)] = gregs.r_r15; |
|
437 |
regs[REG_INDEX(R14)] = gregs.r_r14; |
|
438 |
regs[REG_INDEX(R13)] = gregs.r_r13; |
|
439 |
regs[REG_INDEX(R12)] = gregs.r_r12; |
|
440 |
regs[REG_INDEX(RBP)] = gregs.r_rbp; |
|
441 |
regs[REG_INDEX(RBX)] = gregs.r_rbx; |
|
442 |
regs[REG_INDEX(R11)] = gregs.r_r11; |
|
443 |
regs[REG_INDEX(R10)] = gregs.r_r10; |
|
444 |
regs[REG_INDEX(R9)] = gregs.r_r9; |
|
445 |
regs[REG_INDEX(R8)] = gregs.r_r8; |
|
446 |
regs[REG_INDEX(RAX)] = gregs.r_rax; |
|
447 |
regs[REG_INDEX(RCX)] = gregs.r_rcx; |
|
448 |
regs[REG_INDEX(RDX)] = gregs.r_rdx; |
|
449 |
regs[REG_INDEX(RSI)] = gregs.r_rsi; |
|
450 |
regs[REG_INDEX(RDI)] = gregs.r_rdi; |
|
451 |
regs[REG_INDEX(RIP)] = gregs.r_rip; |
|
452 |
regs[REG_INDEX(CS)] = gregs.r_cs; |
|
453 |
regs[REG_INDEX(RSP)] = gregs.r_rsp; |
|
454 |
regs[REG_INDEX(SS)] = gregs.r_ss; |
|
455 |
regs[REG_INDEX(FSBASE)] = 0; |
|
456 |
regs[REG_INDEX(GSBASE)] = 0; |
|
457 |
regs[REG_INDEX(DS)] = gregs.r_ds; |
|
458 |
regs[REG_INDEX(ES)] = gregs.r_es; |
|
459 |
regs[REG_INDEX(FS)] = gregs.r_fs; |
|
460 |
regs[REG_INDEX(GS)] = gregs.r_gs; |
|
461 |
regs[REG_INDEX(TRAPNO)] = gregs.r_trapno; |
|
462 |
regs[REG_INDEX(RFL)] = gregs.r_rflags; |
|
463 |
||
464 |
#endif /* amd64 */ |
|
465 |
(*env)->ReleaseLongArrayElements(env, array, regs, JNI_COMMIT); |
|
466 |
return array; |
|
467 |
} |
|
15593
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
468 |
|
10739 | 469 |
/* |
15593
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
470 |
* Lookup the thread_t that corresponds to the given thread_id. |
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
471 |
* The thread_id should be the result from calling thread_info() with THREAD_IDENTIFIER_INFO |
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
472 |
* and reading the m_ident_info.thread_id returned. |
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
473 |
* The returned thread_t is the mach send right to the kernel port for the corresponding thread. |
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
474 |
* |
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
475 |
* We cannot simply use the OSThread._thread_id field in the JVM. This is set to ::mach_thread_self() |
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
476 |
* in the VM, but that thread port is not valid for a remote debugger to access the thread. |
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
477 |
*/ |
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
478 |
thread_t |
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
479 |
lookupThreadFromThreadId(task_t task, jlong thread_id) { |
16351 | 480 |
print_debug("lookupThreadFromThreadId thread_id=0x%llx\n", thread_id); |
15593
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
481 |
|
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
482 |
thread_array_t thread_list = NULL; |
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
483 |
mach_msg_type_number_t thread_list_count = 0; |
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
484 |
thread_t result_thread = 0; |
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
485 |
int i; |
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
486 |
|
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
487 |
// get the list of all the send rights |
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
488 |
kern_return_t result = task_threads(task, &thread_list, &thread_list_count); |
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
489 |
if (result != KERN_SUCCESS) { |
16351 | 490 |
print_debug("task_threads returned 0x%x\n", result); |
15593
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
491 |
return 0; |
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
492 |
} |
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
493 |
|
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
494 |
for(i = 0 ; i < thread_list_count; i++) { |
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
495 |
thread_identifier_info_data_t m_ident_info; |
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
496 |
mach_msg_type_number_t count = THREAD_IDENTIFIER_INFO_COUNT; |
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
497 |
|
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
498 |
// get the THREAD_IDENTIFIER_INFO for the send right |
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
499 |
result = thread_info(thread_list[i], THREAD_IDENTIFIER_INFO, (thread_info_t) &m_ident_info, &count); |
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
500 |
if (result != KERN_SUCCESS) { |
16351 | 501 |
print_debug("thread_info returned 0x%x\n", result); |
15593
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
502 |
break; |
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
503 |
} |
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
504 |
|
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
505 |
// if this is the one we're looking for, return the send right |
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
506 |
if (thread_id == m_ident_info.thread_id) |
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
507 |
{ |
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
508 |
result_thread = thread_list[i]; |
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
509 |
break; |
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
510 |
} |
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
511 |
} |
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
512 |
|
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
513 |
vm_size_t thread_list_size = (vm_size_t) (thread_list_count * sizeof (thread_t)); |
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
514 |
vm_deallocate(mach_task_self(), (vm_address_t) thread_list, thread_list_count); |
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
515 |
|
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
516 |
return result_thread; |
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
517 |
} |
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
518 |
|
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
519 |
|
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
520 |
/* |
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
521 |
* Class: sun_jvm_hotspot_debugger_bsd_BsdDebuggerLocal |
10739 | 522 |
* Method: getThreadIntegerRegisterSet0 |
15593
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
523 |
* Signature: (J)[J |
10739 | 524 |
*/ |
15593
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
525 |
JNIEXPORT jlongArray JNICALL |
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
526 |
Java_sun_jvm_hotspot_debugger_bsd_BsdDebuggerLocal_getThreadIntegerRegisterSet0( |
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
527 |
JNIEnv *env, jobject this_obj, |
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
528 |
jlong thread_id) |
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
529 |
{ |
16351 | 530 |
print_debug("getThreadRegisterSet0 called\n"); |
531 |
||
532 |
struct ps_prochandle* ph = get_proc_handle(env, this_obj); |
|
17084
41fd7e2a5853
8013466: SA crashes when attaching to a process on OS X
sla
parents:
16351
diff
changeset
|
533 |
if (ph != NULL && ph->core != NULL) { |
41fd7e2a5853
8013466: SA crashes when attaching to a process on OS X
sla
parents:
16351
diff
changeset
|
534 |
return getThreadIntegerRegisterSetFromCore(env, this_obj, thread_id, ph); |
16351 | 535 |
} |
10739 | 536 |
|
537 |
kern_return_t result; |
|
538 |
thread_t tid; |
|
539 |
mach_msg_type_number_t count = HSDB_THREAD_STATE_COUNT; |
|
540 |
hsdb_thread_state_t state; |
|
541 |
jlongArray registerArray; |
|
542 |
jlong *primitiveArray; |
|
15593
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
543 |
task_t gTask = getTask(env, this_obj); |
10739 | 544 |
|
15593
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
545 |
tid = lookupThreadFromThreadId(gTask, thread_id); |
10739 | 546 |
|
547 |
result = thread_get_state(tid, HSDB_THREAD_STATE, (thread_state_t)&state, &count); |
|
548 |
||
549 |
if (result != KERN_SUCCESS) { |
|
16351 | 550 |
print_error("getregs: thread_get_state(%d) failed (%d)\n", tid, result); |
10739 | 551 |
return NULL; |
552 |
} |
|
553 |
||
16351 | 554 |
#if amd64 |
555 |
#define NPRGREG sun_jvm_hotspot_debugger_amd64_AMD64ThreadContext_NPRGREG |
|
556 |
#undef REG_INDEX |
|
557 |
#define REG_INDEX(reg) sun_jvm_hotspot_debugger_amd64_AMD64ThreadContext_##reg |
|
558 |
||
559 |
// 64 bit |
|
560 |
print_debug("Getting threads for a 64-bit process\n"); |
|
561 |
registerArray = (*env)->NewLongArray(env, NPRGREG); |
|
562 |
CHECK_EXCEPTION_(0); |
|
563 |
primitiveArray = (*env)->GetLongArrayElements(env, registerArray, NULL); |
|
10739 | 564 |
|
16351 | 565 |
primitiveArray[REG_INDEX(R15)] = state.__r15; |
566 |
primitiveArray[REG_INDEX(R14)] = state.__r14; |
|
567 |
primitiveArray[REG_INDEX(R13)] = state.__r13; |
|
568 |
primitiveArray[REG_INDEX(R12)] = state.__r12; |
|
569 |
primitiveArray[REG_INDEX(R11)] = state.__r11; |
|
570 |
primitiveArray[REG_INDEX(R10)] = state.__r10; |
|
571 |
primitiveArray[REG_INDEX(R9)] = state.__r9; |
|
572 |
primitiveArray[REG_INDEX(R8)] = state.__r8; |
|
573 |
primitiveArray[REG_INDEX(RDI)] = state.__rdi; |
|
574 |
primitiveArray[REG_INDEX(RSI)] = state.__rsi; |
|
575 |
primitiveArray[REG_INDEX(RBP)] = state.__rbp; |
|
576 |
primitiveArray[REG_INDEX(RBX)] = state.__rbx; |
|
577 |
primitiveArray[REG_INDEX(RDX)] = state.__rdx; |
|
578 |
primitiveArray[REG_INDEX(RCX)] = state.__rcx; |
|
579 |
primitiveArray[REG_INDEX(RAX)] = state.__rax; |
|
580 |
primitiveArray[REG_INDEX(TRAPNO)] = 0; // trapno, not used |
|
581 |
primitiveArray[REG_INDEX(ERR)] = 0; // err, not used |
|
582 |
primitiveArray[REG_INDEX(RIP)] = state.__rip; |
|
583 |
primitiveArray[REG_INDEX(CS)] = state.__cs; |
|
584 |
primitiveArray[REG_INDEX(RFL)] = state.__rflags; |
|
585 |
primitiveArray[REG_INDEX(RSP)] = state.__rsp; |
|
586 |
primitiveArray[REG_INDEX(SS)] = 0; // We don't have SS |
|
587 |
primitiveArray[REG_INDEX(FS)] = state.__fs; |
|
588 |
primitiveArray[REG_INDEX(GS)] = state.__gs; |
|
589 |
primitiveArray[REG_INDEX(ES)] = 0; |
|
590 |
primitiveArray[REG_INDEX(DS)] = 0; |
|
591 |
primitiveArray[REG_INDEX(FSBASE)] = 0; |
|
592 |
primitiveArray[REG_INDEX(GSBASE)] = 0; |
|
593 |
print_debug("set registers\n"); |
|
10739 | 594 |
|
16351 | 595 |
(*env)->ReleaseLongArrayElements(env, registerArray, primitiveArray, 0); |
10739 | 596 |
|
597 |
#else |
|
16351 | 598 |
#error UNSUPPORTED_ARCH |
599 |
#endif /* amd64 */ |
|
10739 | 600 |
|
601 |
return registerArray; |
|
602 |
} |
|
603 |
||
604 |
/* |
|
15593
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
605 |
* Class: sun_jvm_hotspot_debugger_bsd_BsdDebuggerLocal |
10739 | 606 |
* Method: translateTID0 |
607 |
* Signature: (I)I |
|
608 |
*/ |
|
609 |
JNIEXPORT jint JNICALL |
|
15593
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
610 |
Java_sun_jvm_hotspot_debugger_macosx_MacOSXDebuggerLocal_translateTID0( |
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
611 |
JNIEnv *env, jobject this_obj, jint tid) |
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
612 |
{ |
16351 | 613 |
print_debug("translateTID0 called on tid = 0x%x\n", (int)tid); |
10739 | 614 |
|
615 |
kern_return_t result; |
|
616 |
thread_t foreign_tid, usable_tid; |
|
617 |
mach_msg_type_name_t type; |
|
15593
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
618 |
|
10739 | 619 |
foreign_tid = tid; |
620 |
||
621 |
task_t gTask = getTask(env, this_obj); |
|
622 |
result = mach_port_extract_right(gTask, foreign_tid, |
|
623 |
MACH_MSG_TYPE_COPY_SEND, |
|
624 |
&usable_tid, &type); |
|
625 |
if (result != KERN_SUCCESS) |
|
626 |
return -1; |
|
627 |
||
16351 | 628 |
print_debug("translateTID0: 0x%x -> 0x%x\n", foreign_tid, usable_tid); |
10739 | 629 |
|
630 |
return (jint) usable_tid; |
|
631 |
} |
|
632 |
||
15738
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
633 |
|
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
634 |
static bool ptrace_continue(pid_t pid, int signal) { |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
635 |
// pass the signal to the process so we don't swallow it |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
636 |
int res; |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
637 |
if ((res = ptrace(PT_CONTINUE, pid, (caddr_t)1, signal)) < 0) { |
16351 | 638 |
print_error("attach: ptrace(PT_CONTINUE, %d) failed with %d\n", pid, res); |
15738
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
639 |
return false; |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
640 |
} |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
641 |
return true; |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
642 |
} |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
643 |
|
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
644 |
// waits until the ATTACH has stopped the process |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
645 |
// by signal SIGSTOP |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
646 |
static bool ptrace_waitpid(pid_t pid) { |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
647 |
int ret; |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
648 |
int status; |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
649 |
while (true) { |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
650 |
// Wait for debuggee to stop. |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
651 |
ret = waitpid(pid, &status, 0); |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
652 |
if (ret >= 0) { |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
653 |
if (WIFSTOPPED(status)) { |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
654 |
// Any signal will stop the thread, make sure it is SIGSTOP. Otherwise SIGSTOP |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
655 |
// will still be pending and delivered when the process is DETACHED and the process |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
656 |
// will go to sleep. |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
657 |
if (WSTOPSIG(status) == SIGSTOP) { |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
658 |
// Debuggee stopped by SIGSTOP. |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
659 |
return true; |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
660 |
} |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
661 |
if (!ptrace_continue(pid, WSTOPSIG(status))) { |
16351 | 662 |
print_error("attach: Failed to correctly attach to VM. VM might HANG! [PTRACE_CONT failed, stopped by %d]\n", WSTOPSIG(status)); |
15738
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
663 |
return false; |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
664 |
} |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
665 |
} else { |
16351 | 666 |
print_error("attach: waitpid(): Child process exited/terminated (status = 0x%x)\n", status); |
15738
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
667 |
return false; |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
668 |
} |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
669 |
} else { |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
670 |
switch (errno) { |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
671 |
case EINTR: |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
672 |
continue; |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
673 |
break; |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
674 |
case ECHILD: |
16351 | 675 |
print_error("attach: waitpid() failed. Child process pid (%d) does not exist \n", pid); |
15738
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
676 |
break; |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
677 |
case EINVAL: |
16351 | 678 |
print_error("attach: waitpid() failed. Invalid options argument.\n"); |
15738
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
679 |
break; |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
680 |
default: |
16351 | 681 |
print_error("attach: waitpid() failed. Unexpected error %d\n",errno); |
15738
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
682 |
break; |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
683 |
} |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
684 |
return false; |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
685 |
} |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
686 |
} |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
687 |
} |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
688 |
|
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
689 |
// attach to a process/thread specified by "pid" |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
690 |
static bool ptrace_attach(pid_t pid) { |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
691 |
int res; |
47635
dfb375d231fb
8184042: several serviceability/sa tests timed out on MacOS X
jgeorge
parents:
47216
diff
changeset
|
692 |
#ifdef __clang__ |
dfb375d231fb
8184042: several serviceability/sa tests timed out on MacOS X
jgeorge
parents:
47216
diff
changeset
|
693 |
#pragma clang diagnostic push |
dfb375d231fb
8184042: several serviceability/sa tests timed out on MacOS X
jgeorge
parents:
47216
diff
changeset
|
694 |
#pragma clang diagnostic ignored "-Wdeprecated-declarations" |
dfb375d231fb
8184042: several serviceability/sa tests timed out on MacOS X
jgeorge
parents:
47216
diff
changeset
|
695 |
#endif |
dfb375d231fb
8184042: several serviceability/sa tests timed out on MacOS X
jgeorge
parents:
47216
diff
changeset
|
696 |
if ((res = ptrace(PT_ATTACH, pid, 0, 0)) < 0) { |
dfb375d231fb
8184042: several serviceability/sa tests timed out on MacOS X
jgeorge
parents:
47216
diff
changeset
|
697 |
print_error("ptrace(PT_ATTACH, %d) failed with %d\n", pid, res); |
dfb375d231fb
8184042: several serviceability/sa tests timed out on MacOS X
jgeorge
parents:
47216
diff
changeset
|
698 |
#ifdef __clang__ |
dfb375d231fb
8184042: several serviceability/sa tests timed out on MacOS X
jgeorge
parents:
47216
diff
changeset
|
699 |
#pragma clang diagnostic pop |
dfb375d231fb
8184042: several serviceability/sa tests timed out on MacOS X
jgeorge
parents:
47216
diff
changeset
|
700 |
#endif |
15738
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
701 |
return false; |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
702 |
} else { |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
703 |
return ptrace_waitpid(pid); |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
704 |
} |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
705 |
} |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
706 |
|
10739 | 707 |
/* |
708 |
* Class: sun_jvm_hotspot_debugger_bsd_BsdDebuggerLocal |
|
709 |
* Method: attach0 |
|
710 |
* Signature: (I)V |
|
711 |
*/ |
|
16351 | 712 |
JNIEXPORT void JNICALL |
15593
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
713 |
Java_sun_jvm_hotspot_debugger_bsd_BsdDebuggerLocal_attach0__I( |
16351 | 714 |
JNIEnv *env, jobject this_obj, jint jpid) |
15593
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
715 |
{ |
16351 | 716 |
print_debug("attach0 called for jpid=%d\n", (int)jpid); |
717 |
||
10739 | 718 |
JNF_COCOA_ENTER(env); |
16351 | 719 |
|
10739 | 720 |
kern_return_t result; |
721 |
task_t gTask = 0; |
|
722 |
result = task_for_pid(mach_task_self(), jpid, &gTask); |
|
723 |
if (result != KERN_SUCCESS) { |
|
17088
75082f0d93f2
8013364: SA-JDI exceptions caused by lack of permissions on OSX should be more verbose about issue cause
sla
parents:
17084
diff
changeset
|
724 |
print_error("attach: task_for_pid(%d) failed: '%s' (%d)\n", (int)jpid, mach_error_string(result), result); |
75082f0d93f2
8013364: SA-JDI exceptions caused by lack of permissions on OSX should be more verbose about issue cause
sla
parents:
17084
diff
changeset
|
725 |
THROW_NEW_DEBUGGER_EXCEPTION("Can't attach to the process. Could be caused by an incorrect pid or lack of privileges."); |
10739 | 726 |
} |
727 |
putTask(env, this_obj, gTask); |
|
728 |
||
15738
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
729 |
// use ptrace to stop the process |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
730 |
// on os x, ptrace only needs to be called on the process, not the individual threads |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
731 |
if (ptrace_attach(jpid) != true) { |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
732 |
mach_port_deallocate(mach_task_self(), gTask); |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
733 |
THROW_NEW_DEBUGGER_EXCEPTION("Can't attach to the process"); |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
734 |
} |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
735 |
|
10739 | 736 |
id symbolicator = nil; |
737 |
id jrsSymbolicator = objc_lookUpClass("JRSSymbolicator"); |
|
738 |
if (jrsSymbolicator != nil) { |
|
739 |
id (*dynamicCall)(id, SEL, pid_t) = (id (*)(id, SEL, pid_t))&objc_msgSend; |
|
740 |
symbolicator = dynamicCall(jrsSymbolicator, @selector(symbolicatorForPid:), (pid_t)jpid); |
|
741 |
} |
|
742 |
if (symbolicator != nil) { |
|
743 |
CFRetain(symbolicator); // pin symbolicator while in java heap |
|
744 |
} |
|
745 |
||
746 |
putSymbolicator(env, this_obj, symbolicator); |
|
747 |
if (symbolicator == nil) { |
|
748 |
THROW_NEW_DEBUGGER_EXCEPTION("Can't attach symbolicator to the process"); |
|
749 |
} |
|
750 |
||
751 |
JNF_COCOA_EXIT(env); |
|
752 |
} |
|
753 |
||
16351 | 754 |
/** For core file, |
755 |
called from Java_sun_jvm_hotspot_debugger_bsd_BsdDebuggerLocal_attach0__Ljava_lang_String_2Ljava_lang_String_2 */ |
|
756 |
static void fillLoadObjects(JNIEnv* env, jobject this_obj, struct ps_prochandle* ph) { |
|
757 |
int n = 0, i = 0; |
|
758 |
||
759 |
// add load objects |
|
760 |
n = get_num_libs(ph); |
|
761 |
for (i = 0; i < n; i++) { |
|
762 |
uintptr_t base; |
|
763 |
const char* name; |
|
764 |
jobject loadObject; |
|
765 |
jobject loadObjectList; |
|
23480
f00b06ce57c5
8034034: [parfait] JNI exc. pending in hotspot/agent/src/os/bsd/MacosxDebuggerLocal.m
ccheung
parents:
17088
diff
changeset
|
766 |
jstring nameString; |
16351 | 767 |
|
768 |
base = get_lib_base(ph, i); |
|
769 |
name = get_lib_name(ph, i); |
|
23480
f00b06ce57c5
8034034: [parfait] JNI exc. pending in hotspot/agent/src/os/bsd/MacosxDebuggerLocal.m
ccheung
parents:
17088
diff
changeset
|
770 |
nameString = (*env)->NewStringUTF(env, name); |
f00b06ce57c5
8034034: [parfait] JNI exc. pending in hotspot/agent/src/os/bsd/MacosxDebuggerLocal.m
ccheung
parents:
17088
diff
changeset
|
771 |
CHECK_EXCEPTION; |
16351 | 772 |
loadObject = (*env)->CallObjectMethod(env, this_obj, createLoadObject_ID, |
23480
f00b06ce57c5
8034034: [parfait] JNI exc. pending in hotspot/agent/src/os/bsd/MacosxDebuggerLocal.m
ccheung
parents:
17088
diff
changeset
|
773 |
nameString, (jlong)0, (jlong)base); |
16351 | 774 |
CHECK_EXCEPTION; |
775 |
loadObjectList = (*env)->GetObjectField(env, this_obj, loadObjectList_ID); |
|
776 |
CHECK_EXCEPTION; |
|
777 |
(*env)->CallBooleanMethod(env, loadObjectList, listAdd_ID, loadObject); |
|
778 |
CHECK_EXCEPTION; |
|
779 |
} |
|
780 |
} |
|
781 |
||
782 |
/* |
|
783 |
* Class: sun_jvm_hotspot_debugger_bsd_BsdDebuggerLocal |
|
784 |
* Method: attach0 |
|
785 |
* Signature: (Ljava/lang/String;Ljava/lang/String;)V |
|
786 |
*/ |
|
787 |
JNIEXPORT void JNICALL |
|
788 |
Java_sun_jvm_hotspot_debugger_bsd_BsdDebuggerLocal_attach0__Ljava_lang_String_2Ljava_lang_String_2( |
|
789 |
JNIEnv *env, jobject this_obj, jstring execName, jstring coreName) |
|
790 |
{ |
|
791 |
const char *execName_cstr; |
|
792 |
const char *coreName_cstr; |
|
793 |
jboolean isCopy; |
|
794 |
struct ps_prochandle* ph; |
|
795 |
||
796 |
execName_cstr = (*env)->GetStringUTFChars(env, execName, &isCopy); |
|
797 |
CHECK_EXCEPTION; |
|
798 |
coreName_cstr = (*env)->GetStringUTFChars(env, coreName, &isCopy); |
|
799 |
CHECK_EXCEPTION; |
|
800 |
||
801 |
print_debug("attach: %s %s\n", execName_cstr, coreName_cstr); |
|
802 |
||
803 |
if ( (ph = Pgrab_core(execName_cstr, coreName_cstr)) == NULL) { |
|
804 |
(*env)->ReleaseStringUTFChars(env, execName, execName_cstr); |
|
805 |
(*env)->ReleaseStringUTFChars(env, coreName, coreName_cstr); |
|
806 |
THROW_NEW_DEBUGGER_EXCEPTION("Can't attach to the core file"); |
|
807 |
} |
|
808 |
(*env)->SetLongField(env, this_obj, p_ps_prochandle_ID, (jlong)(intptr_t)ph); |
|
809 |
(*env)->ReleaseStringUTFChars(env, execName, execName_cstr); |
|
810 |
(*env)->ReleaseStringUTFChars(env, coreName, coreName_cstr); |
|
811 |
fillLoadObjects(env, this_obj, ph); |
|
812 |
} |
|
813 |
||
10739 | 814 |
/* |
815 |
* Class: sun_jvm_hotspot_debugger_bsd_BsdDebuggerLocal |
|
816 |
* Method: detach0 |
|
817 |
* Signature: ()V |
|
818 |
*/ |
|
16351 | 819 |
JNIEXPORT void JNICALL |
15593
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
820 |
Java_sun_jvm_hotspot_debugger_bsd_BsdDebuggerLocal_detach0( |
16351 | 821 |
JNIEnv *env, jobject this_obj) |
15593
860cf6c70c06
8006423: SA: NullPointerException in sun.jvm.hotspot.debugger.bsd.BsdThread.getContext(BsdThread.java:67)
sla
parents:
13873
diff
changeset
|
822 |
{ |
16351 | 823 |
print_debug("detach0 called\n"); |
824 |
struct ps_prochandle* ph = get_proc_handle(env, this_obj); |
|
825 |
if (ph != NULL && ph->core != NULL) { |
|
826 |
Prelease(ph); |
|
827 |
return; |
|
828 |
} |
|
10739 | 829 |
JNF_COCOA_ENTER(env); |
830 |
task_t gTask = getTask(env, this_obj); |
|
15738
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
831 |
|
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
832 |
// detach from the ptraced process causing it to resume execution |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
833 |
int pid; |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
834 |
kern_return_t k_res; |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
835 |
k_res = pid_for_task(gTask, &pid); |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
836 |
if (k_res != KERN_SUCCESS) { |
16351 | 837 |
print_error("detach: pid_for_task(%d) failed (%d)\n", pid, k_res); |
15738
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
838 |
} |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
839 |
else { |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
840 |
int res = ptrace(PT_DETACH, pid, 0, 0); |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
841 |
if (res < 0) { |
16351 | 842 |
print_error("detach: ptrace(PT_DETACH, %d) failed (%d)\n", pid, res); |
15738
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
843 |
} |
fb4662f9df5b
8008102: SA on OS X does not stop the attached process
sla
parents:
15593
diff
changeset
|
844 |
} |
16351 | 845 |
|
10739 | 846 |
mach_port_deallocate(mach_task_self(), gTask); |
847 |
id symbolicator = getSymbolicator(env, this_obj); |
|
848 |
if (symbolicator != nil) { |
|
849 |
CFRelease(symbolicator); |
|
850 |
} |
|
851 |
JNF_COCOA_EXIT(env); |
|
852 |
} |