blob: bb2ed8889de9fbec8987474d55826a87d2687389 [file] [log] [blame]
Elliott Hughes8daa0922011-09-11 13:46:25 -07001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Elliott Hugheseac76672012-05-24 21:56:51 -070017#include "jni_internal.h"
Elliott Hughes6a144332012-04-03 13:07:11 -070018#include "nth_caller_visitor.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080019#include "mirror/abstract_method-inl.h"
20#include "mirror/class.h"
21#include "mirror/class_loader.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070022#include "scoped_thread_state_change.h"
Elliott Hughes01158d72011-09-19 19:47:10 -070023#include "thread_list.h"
Elliott Hughes8daa0922011-09-11 13:46:25 -070024
Elliott Hughes8daa0922011-09-11 13:46:25 -070025namespace art {
26
Ian Rogers00f7d0e2012-07-19 15:28:27 -070027static jobject GetThreadStack(JNIEnv* env, jobject peer) {
Ian Rogerscfaa4552012-11-26 21:00:08 -080028 {
Ian Rogers00f7d0e2012-07-19 15:28:27 -070029 ScopedObjectAccess soa(env);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080030 if (soa.Decode<mirror::Object*>(peer) == soa.Self()->GetPeer()) {
Ian Rogerscfaa4552012-11-26 21:00:08 -080031 return soa.Self()->CreateInternalStackTrace(soa);
32 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -070033 }
34 // Suspend thread to build stack trace.
Elliott Hughesf327e072013-01-09 16:01:26 -080035 bool timed_out;
36 Thread* thread = Thread::SuspendForDebugger(peer, true, &timed_out);
Ian Rogers00f7d0e2012-07-19 15:28:27 -070037 if (thread != NULL) {
38 jobject trace;
39 {
40 ScopedObjectAccess soa(env);
41 trace = thread->CreateInternalStackTrace(soa);
42 }
43 // Restart suspended thread.
44 Runtime::Current()->GetThreadList()->Resume(thread, true);
45 return trace;
46 } else {
Elliott Hughesf327e072013-01-09 16:01:26 -080047 if (timed_out) {
Ian Rogers15bf2d32012-08-28 17:33:04 -070048 LOG(ERROR) << "Trying to get thread's stack failed as the thread failed to suspend within a "
49 "generous timeout.";
50 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -070051 return NULL;
52 }
Elliott Hughes01158d72011-09-19 19:47:10 -070053}
54
Ian Rogers306057f2012-11-26 12:45:53 -080055static jint VMStack_fillStackTraceElements(JNIEnv* env, jclass, jobject javaThread,
56 jobjectArray javaSteArray) {
Elliott Hughes01158d72011-09-19 19:47:10 -070057 jobject trace = GetThreadStack(env, javaThread);
58 if (trace == NULL) {
59 return 0;
60 }
61 int32_t depth;
62 Thread::InternalStackTraceToStackTraceElementArray(env, trace, javaSteArray, &depth);
63 return depth;
Elliott Hughes8daa0922011-09-11 13:46:25 -070064}
65
Elliott Hughes6a144332012-04-03 13:07:11 -070066// Returns the defining class loader of the caller's caller.
Elliott Hughes0512f022012-03-15 22:10:52 -070067static jobject VMStack_getCallingClassLoader(JNIEnv* env, jclass) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -070068 ScopedObjectAccess soa(env);
Ian Rogers7a22fa62013-01-23 12:16:16 -080069 NthCallerVisitor visitor(soa.Self(), 2);
Ian Rogers0399dde2012-06-06 17:09:28 -070070 visitor.WalkStack();
Ian Rogers00f7d0e2012-07-19 15:28:27 -070071 return soa.AddLocalReference<jobject>(visitor.caller->GetDeclaringClass()->GetClassLoader());
Elliott Hughes8daa0922011-09-11 13:46:25 -070072}
73
Ian Rogers306057f2012-11-26 12:45:53 -080074static jobject VMStack_getClosestUserClassLoader(JNIEnv* env, jclass, jobject javaBootstrap,
75 jobject javaSystem) {
Ian Rogers0399dde2012-06-06 17:09:28 -070076 struct ClosestUserClassLoaderVisitor : public StackVisitor {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080077 ClosestUserClassLoaderVisitor(Thread* thread, mirror::Object* bootstrap, mirror::Object* system)
Ian Rogers7a22fa62013-01-23 12:16:16 -080078 : StackVisitor(thread, NULL), bootstrap(bootstrap), system(system), class_loader(NULL) {}
Elliott Hughes08fc03a2012-06-26 17:34:00 -070079
Ian Rogers0399dde2012-06-06 17:09:28 -070080 bool VisitFrame() {
Elliott Hughes530fa002012-03-12 11:44:49 -070081 DCHECK(class_loader == NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080082 mirror::Class* c = GetMethod()->GetDeclaringClass();
83 mirror::Object* cl = c->GetClassLoader();
Brian Carlstrom5cb71bb2012-03-09 14:57:37 -080084 if (cl != NULL && cl != bootstrap && cl != system) {
85 class_loader = cl;
Elliott Hughes530fa002012-03-12 11:44:49 -070086 return false;
Brian Carlstrom5cb71bb2012-03-09 14:57:37 -080087 }
Elliott Hughes530fa002012-03-12 11:44:49 -070088 return true;
Brian Carlstrom5cb71bb2012-03-09 14:57:37 -080089 }
Elliott Hughes08fc03a2012-06-26 17:34:00 -070090
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080091 mirror::Object* bootstrap;
92 mirror::Object* system;
93 mirror::Object* class_loader;
Brian Carlstrom5cb71bb2012-03-09 14:57:37 -080094 };
Ian Rogers00f7d0e2012-07-19 15:28:27 -070095 ScopedObjectAccess soa(env);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080096 mirror::Object* bootstrap = soa.Decode<mirror::Object*>(javaBootstrap);
97 mirror::Object* system = soa.Decode<mirror::Object*>(javaSystem);
Ian Rogers7a22fa62013-01-23 12:16:16 -080098 ClosestUserClassLoaderVisitor visitor(soa.Self(), bootstrap, system);
Ian Rogers0399dde2012-06-06 17:09:28 -070099 visitor.WalkStack();
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700100 return soa.AddLocalReference<jobject>(visitor.class_loader);
Elliott Hughes8daa0922011-09-11 13:46:25 -0700101}
102
Elliott Hughes6a144332012-04-03 13:07:11 -0700103// Returns the class of the caller's caller's caller.
Elliott Hughes0512f022012-03-15 22:10:52 -0700104static jclass VMStack_getStackClass2(JNIEnv* env, jclass) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700105 ScopedObjectAccess soa(env);
Ian Rogers7a22fa62013-01-23 12:16:16 -0800106 NthCallerVisitor visitor(soa.Self(), 3);
Ian Rogers0399dde2012-06-06 17:09:28 -0700107 visitor.WalkStack();
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700108 return soa.AddLocalReference<jclass>(visitor.caller->GetDeclaringClass());
Elliott Hughes8daa0922011-09-11 13:46:25 -0700109}
110
Elliott Hughes0512f022012-03-15 22:10:52 -0700111static jobjectArray VMStack_getThreadStackTrace(JNIEnv* env, jclass, jobject javaThread) {
Elliott Hughes01158d72011-09-19 19:47:10 -0700112 jobject trace = GetThreadStack(env, javaThread);
113 if (trace == NULL) {
114 return NULL;
115 }
116 return Thread::InternalStackTraceToStackTraceElementArray(env, trace);
Elliott Hughes8daa0922011-09-11 13:46:25 -0700117}
118
119static JNINativeMethod gMethods[] = {
120 NATIVE_METHOD(VMStack, fillStackTraceElements, "(Ljava/lang/Thread;[Ljava/lang/StackTraceElement;)I"),
121 NATIVE_METHOD(VMStack, getCallingClassLoader, "()Ljava/lang/ClassLoader;"),
Elliott Hughes6bbe8b02011-09-20 13:15:00 -0700122 NATIVE_METHOD(VMStack, getClosestUserClassLoader, "(Ljava/lang/ClassLoader;Ljava/lang/ClassLoader;)Ljava/lang/ClassLoader;"),
Elliott Hughes8daa0922011-09-11 13:46:25 -0700123 NATIVE_METHOD(VMStack, getStackClass2, "()Ljava/lang/Class;"),
124 NATIVE_METHOD(VMStack, getThreadStackTrace, "(Ljava/lang/Thread;)[Ljava/lang/StackTraceElement;"),
125};
126
Elliott Hughes8daa0922011-09-11 13:46:25 -0700127void register_dalvik_system_VMStack(JNIEnv* env) {
Elliott Hugheseac76672012-05-24 21:56:51 -0700128 REGISTER_NATIVE_METHODS("dalvik/system/VMStack");
Elliott Hughes8daa0922011-09-11 13:46:25 -0700129}
130
131} // namespace art