Andreas Gampe | 3c252f0 | 2016-10-27 18:25:17 -0700 | [diff] [blame] | 1 | /* Copyright (C) 2016 The Android Open Source Project |
| 2 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
| 3 | * |
| 4 | * This file implements interfaces from the file jvmti.h. This implementation |
| 5 | * is licensed under the same terms as the file jvmti.h. The |
| 6 | * copyright and license information for the file jvmti.h follows. |
| 7 | * |
| 8 | * Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights reserved. |
| 9 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
| 10 | * |
| 11 | * This code is free software; you can redistribute it and/or modify it |
| 12 | * under the terms of the GNU General Public License version 2 only, as |
| 13 | * published by the Free Software Foundation. Oracle designates this |
| 14 | * particular file as subject to the "Classpath" exception as provided |
| 15 | * by Oracle in the LICENSE file that accompanied this code. |
| 16 | * |
| 17 | * This code is distributed in the hope that it will be useful, but WITHOUT |
| 18 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 19 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
| 20 | * version 2 for more details (a copy is included in the LICENSE file that |
| 21 | * accompanied this code). |
| 22 | * |
| 23 | * You should have received a copy of the GNU General Public License version |
| 24 | * 2 along with this work; if not, write to the Free Software Foundation, |
| 25 | * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
| 26 | * |
| 27 | * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
| 28 | * or visit www.oracle.com if you need additional information or have any |
| 29 | * questions. |
| 30 | */ |
| 31 | |
| 32 | #include "ti_method.h" |
| 33 | |
Alex Light | e2ddce3 | 2019-05-22 17:08:35 +0000 | [diff] [blame] | 34 | #include <initializer_list> |
Andreas Gampe | 49fc60e | 2017-08-24 13:19:59 -0700 | [diff] [blame] | 35 | #include <type_traits> |
Alex Light | e2ddce3 | 2019-05-22 17:08:35 +0000 | [diff] [blame] | 36 | #include <variant> |
Andreas Gampe | 49fc60e | 2017-08-24 13:19:59 -0700 | [diff] [blame] | 37 | |
Alex Light | e2ddce3 | 2019-05-22 17:08:35 +0000 | [diff] [blame] | 38 | #include "android-base/macros.h" |
Andreas Gampe | e5d2398 | 2019-01-08 10:34:26 -0800 | [diff] [blame] | 39 | #include "arch/context.h" |
Andreas Gampe | 3c252f0 | 2016-10-27 18:25:17 -0700 | [diff] [blame] | 40 | #include "art_jvmti.h" |
| 41 | #include "art_method-inl.h" |
| 42 | #include "base/enums.h" |
Alex Light | e2ddce3 | 2019-05-22 17:08:35 +0000 | [diff] [blame] | 43 | #include "base/globals.h" |
| 44 | #include "base/macros.h" |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 45 | #include "base/mutex-inl.h" |
Alex Light | a4cdd36 | 2019-04-18 09:17:10 -0700 | [diff] [blame] | 46 | #include "deopt_manager.h" |
David Sehr | 9e734c7 | 2018-01-04 17:56:19 -0800 | [diff] [blame] | 47 | #include "dex/code_item_accessors-inl.h" |
Alex Light | e2ddce3 | 2019-05-22 17:08:35 +0000 | [diff] [blame] | 48 | #include "dex/code_item_accessors.h" |
David Sehr | 9e734c7 | 2018-01-04 17:56:19 -0800 | [diff] [blame] | 49 | #include "dex/dex_file_annotations.h" |
| 50 | #include "dex/dex_file_types.h" |
Alex Light | e2ddce3 | 2019-05-22 17:08:35 +0000 | [diff] [blame] | 51 | #include "dex/dex_instruction.h" |
| 52 | #include "dex/dex_instruction_iterator.h" |
David Sehr | 8c0961f | 2018-01-23 16:11:38 -0800 | [diff] [blame] | 53 | #include "dex/modifiers.h" |
Alex Light | e2ddce3 | 2019-05-22 17:08:35 +0000 | [diff] [blame] | 54 | #include "dex/primitive.h" |
Alex Light | d78ddec | 2017-04-18 15:20:38 -0700 | [diff] [blame] | 55 | #include "events-inl.h" |
Alex Light | 318afe6 | 2018-03-22 16:50:10 -0700 | [diff] [blame] | 56 | #include "gc_root-inl.h" |
Alex Light | e2ddce3 | 2019-05-22 17:08:35 +0000 | [diff] [blame] | 57 | #include "handle.h" |
Alex Light | 0a5ec3d | 2017-07-25 16:50:26 -0700 | [diff] [blame] | 58 | #include "jit/jit.h" |
Vladimir Marko | a3ad0cd | 2018-05-04 10:06:38 +0100 | [diff] [blame] | 59 | #include "jni/jni_internal.h" |
Alex Light | e2ddce3 | 2019-05-22 17:08:35 +0000 | [diff] [blame] | 60 | #include "jvmti.h" |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 61 | #include "mirror/class-inl.h" |
| 62 | #include "mirror/class_loader.h" |
| 63 | #include "mirror/object-inl.h" |
Andreas Gampe | 27dfa05 | 2017-02-16 15:04:36 -0800 | [diff] [blame] | 64 | #include "mirror/object_array-inl.h" |
Andreas Gampe | 373a9b5 | 2017-10-18 09:01:57 -0700 | [diff] [blame] | 65 | #include "nativehelper/scoped_local_ref.h" |
Nicolas Geoffray | 58cc1cb | 2017-11-20 13:27:29 +0000 | [diff] [blame] | 66 | #include "oat_file.h" |
Alex Light | a4cdd36 | 2019-04-18 09:17:10 -0700 | [diff] [blame] | 67 | #include "obj_ptr.h" |
Alex Light | b096c91 | 2019-09-25 13:33:06 -0700 | [diff] [blame] | 68 | #include "runtime.h" |
Alex Light | d78ddec | 2017-04-18 15:20:38 -0700 | [diff] [blame] | 69 | #include "runtime_callbacks.h" |
Andreas Gampe | 3c252f0 | 2016-10-27 18:25:17 -0700 | [diff] [blame] | 70 | #include "scoped_thread_state_change-inl.h" |
Alex Light | e2ddce3 | 2019-05-22 17:08:35 +0000 | [diff] [blame] | 71 | #include "scoped_thread_state_change.h" |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 72 | #include "stack.h" |
Andreas Gampe | b486a98 | 2017-06-01 13:45:54 -0700 | [diff] [blame] | 73 | #include "thread-current-inl.h" |
Alex Light | a4cdd36 | 2019-04-18 09:17:10 -0700 | [diff] [blame] | 74 | #include "thread.h" |
Alex Light | d78ddec | 2017-04-18 15:20:38 -0700 | [diff] [blame] | 75 | #include "thread_list.h" |
Alex Light | e2ddce3 | 2019-05-22 17:08:35 +0000 | [diff] [blame] | 76 | #include "ti_logging.h" |
Alex Light | e814f9d | 2017-07-31 16:14:39 -0700 | [diff] [blame] | 77 | #include "ti_stack.h" |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 78 | #include "ti_thread.h" |
Alex Light | 0af8cde | 2017-04-20 13:35:05 -0700 | [diff] [blame] | 79 | #include "ti_phase.h" |
Alex Light | e2ddce3 | 2019-05-22 17:08:35 +0000 | [diff] [blame] | 80 | #include "verifier/register_line-inl.h" |
| 81 | #include "verifier/reg_type-inl.h" |
| 82 | #include "verifier/method_verifier-inl.h" |
Andreas Gampe | 3c252f0 | 2016-10-27 18:25:17 -0700 | [diff] [blame] | 83 | |
| 84 | namespace openjdkjvmti { |
| 85 | |
Alex Light | d78ddec | 2017-04-18 15:20:38 -0700 | [diff] [blame] | 86 | struct TiMethodCallback : public art::MethodCallback { |
| 87 | void RegisterNativeMethod(art::ArtMethod* method, |
| 88 | const void* cur_method, |
| 89 | /*out*/void** new_method) |
Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 90 | override REQUIRES_SHARED(art::Locks::mutator_lock_) { |
Alex Light | d78ddec | 2017-04-18 15:20:38 -0700 | [diff] [blame] | 91 | if (event_handler->IsEventEnabledAnywhere(ArtJvmtiEvent::kNativeMethodBind)) { |
| 92 | art::Thread* thread = art::Thread::Current(); |
Alex Light | 0af8cde | 2017-04-20 13:35:05 -0700 | [diff] [blame] | 93 | art::JNIEnvExt* jnienv = thread->GetJniEnv(); |
Alex Light | d78ddec | 2017-04-18 15:20:38 -0700 | [diff] [blame] | 94 | ScopedLocalRef<jthread> thread_jni( |
Alex Light | 0af8cde | 2017-04-20 13:35:05 -0700 | [diff] [blame] | 95 | jnienv, PhaseUtil::IsLivePhase() ? jnienv->AddLocalReference<jthread>(thread->GetPeer()) |
| 96 | : nullptr); |
Alex Light | 79d6c80 | 2019-06-27 15:50:11 +0000 | [diff] [blame] | 97 | jmethodID method_id = art::jni::EncodeArtMethod(method); |
Alex Light | d78ddec | 2017-04-18 15:20:38 -0700 | [diff] [blame] | 98 | art::ScopedThreadSuspension sts(thread, art::ThreadState::kNative); |
| 99 | event_handler->DispatchEvent<ArtJvmtiEvent::kNativeMethodBind>( |
| 100 | thread, |
Alex Light | 0af8cde | 2017-04-20 13:35:05 -0700 | [diff] [blame] | 101 | static_cast<JNIEnv*>(jnienv), |
Alex Light | d78ddec | 2017-04-18 15:20:38 -0700 | [diff] [blame] | 102 | thread_jni.get(), |
Alex Light | 79d6c80 | 2019-06-27 15:50:11 +0000 | [diff] [blame] | 103 | method_id, |
Alex Light | d78ddec | 2017-04-18 15:20:38 -0700 | [diff] [blame] | 104 | const_cast<void*>(cur_method), |
| 105 | new_method); |
| 106 | } |
| 107 | } |
| 108 | |
| 109 | EventHandler* event_handler = nullptr; |
| 110 | }; |
| 111 | |
| 112 | TiMethodCallback gMethodCallback; |
| 113 | |
| 114 | void MethodUtil::Register(EventHandler* handler) { |
| 115 | gMethodCallback.event_handler = handler; |
| 116 | art::ScopedThreadStateChange stsc(art::Thread::Current(), |
| 117 | art::ThreadState::kWaitingForDebuggerToAttach); |
| 118 | art::ScopedSuspendAll ssa("Add method callback"); |
Alex Light | 2161193 | 2017-09-26 13:07:39 -0700 | [diff] [blame] | 119 | art::RuntimeCallbacks* callbacks = art::Runtime::Current()->GetRuntimeCallbacks(); |
| 120 | callbacks->AddMethodCallback(&gMethodCallback); |
Alex Light | d78ddec | 2017-04-18 15:20:38 -0700 | [diff] [blame] | 121 | } |
| 122 | |
| 123 | void MethodUtil::Unregister() { |
| 124 | art::ScopedThreadStateChange stsc(art::Thread::Current(), |
| 125 | art::ThreadState::kWaitingForDebuggerToAttach); |
| 126 | art::ScopedSuspendAll ssa("Remove method callback"); |
Alex Light | 2161193 | 2017-09-26 13:07:39 -0700 | [diff] [blame] | 127 | art::RuntimeCallbacks* callbacks = art::Runtime::Current()->GetRuntimeCallbacks(); |
| 128 | callbacks->RemoveMethodCallback(&gMethodCallback); |
Alex Light | d78ddec | 2017-04-18 15:20:38 -0700 | [diff] [blame] | 129 | } |
| 130 | |
Alex Light | 4c17428 | 2017-07-05 10:18:18 -0700 | [diff] [blame] | 131 | jvmtiError MethodUtil::GetBytecodes(jvmtiEnv* env, |
| 132 | jmethodID method, |
| 133 | jint* size_ptr, |
| 134 | unsigned char** bytecode_ptr) { |
| 135 | if (method == nullptr) { |
| 136 | return ERR(INVALID_METHODID); |
| 137 | } |
| 138 | art::ArtMethod* art_method = art::jni::DecodeArtMethod(method); |
| 139 | |
| 140 | if (art_method->IsNative()) { |
| 141 | return ERR(NATIVE_METHOD); |
| 142 | } |
| 143 | |
| 144 | if (size_ptr == nullptr || bytecode_ptr == nullptr) { |
| 145 | return ERR(NULL_POINTER); |
| 146 | } |
| 147 | |
| 148 | art::ScopedObjectAccess soa(art::Thread::Current()); |
David Sehr | 0225f8e | 2018-01-31 08:52:24 +0000 | [diff] [blame] | 149 | art::CodeItemInstructionAccessor accessor(art_method->DexInstructions()); |
Mathieu Chartier | 808c7a5 | 2017-12-15 11:19:33 -0800 | [diff] [blame] | 150 | if (!accessor.HasCodeItem()) { |
Alex Light | 4c17428 | 2017-07-05 10:18:18 -0700 | [diff] [blame] | 151 | *size_ptr = 0; |
| 152 | *bytecode_ptr = nullptr; |
| 153 | return OK; |
| 154 | } |
| 155 | // 2 bytes per instruction for dex code. |
Mathieu Chartier | 808c7a5 | 2017-12-15 11:19:33 -0800 | [diff] [blame] | 156 | *size_ptr = accessor.InsnsSizeInCodeUnits() * 2; |
Alex Light | 4c17428 | 2017-07-05 10:18:18 -0700 | [diff] [blame] | 157 | jvmtiError err = env->Allocate(*size_ptr, bytecode_ptr); |
| 158 | if (err != OK) { |
| 159 | return err; |
| 160 | } |
Mathieu Chartier | 808c7a5 | 2017-12-15 11:19:33 -0800 | [diff] [blame] | 161 | memcpy(*bytecode_ptr, accessor.Insns(), *size_ptr); |
Alex Light | 4c17428 | 2017-07-05 10:18:18 -0700 | [diff] [blame] | 162 | return OK; |
| 163 | } |
| 164 | |
Andreas Gampe | f71832e | 2017-01-09 11:38:04 -0800 | [diff] [blame] | 165 | jvmtiError MethodUtil::GetArgumentsSize(jvmtiEnv* env ATTRIBUTE_UNUSED, |
| 166 | jmethodID method, |
| 167 | jint* size_ptr) { |
| 168 | if (method == nullptr) { |
| 169 | return ERR(INVALID_METHODID); |
| 170 | } |
| 171 | art::ArtMethod* art_method = art::jni::DecodeArtMethod(method); |
| 172 | |
| 173 | if (art_method->IsNative()) { |
| 174 | return ERR(NATIVE_METHOD); |
| 175 | } |
| 176 | |
| 177 | if (size_ptr == nullptr) { |
| 178 | return ERR(NULL_POINTER); |
| 179 | } |
| 180 | |
| 181 | art::ScopedObjectAccess soa(art::Thread::Current()); |
| 182 | if (art_method->IsProxyMethod() || art_method->IsAbstract()) { |
Andreas Gampe | e1f79b6 | 2017-04-12 21:11:28 -0700 | [diff] [blame] | 183 | // Use the shorty. |
| 184 | art::ArtMethod* base_method = art_method->GetInterfaceMethodIfProxy(art::kRuntimePointerSize); |
| 185 | size_t arg_count = art::ArtMethod::NumArgRegisters(base_method->GetShorty()); |
| 186 | if (!base_method->IsStatic()) { |
| 187 | arg_count++; |
| 188 | } |
| 189 | *size_ptr = static_cast<jint>(arg_count); |
Andreas Gampe | f71832e | 2017-01-09 11:38:04 -0800 | [diff] [blame] | 190 | return ERR(NONE); |
| 191 | } |
| 192 | |
| 193 | DCHECK_NE(art_method->GetCodeItemOffset(), 0u); |
David Sehr | 0225f8e | 2018-01-31 08:52:24 +0000 | [diff] [blame] | 194 | *size_ptr = art_method->DexInstructionData().InsSize(); |
Andreas Gampe | f71832e | 2017-01-09 11:38:04 -0800 | [diff] [blame] | 195 | |
| 196 | return ERR(NONE); |
| 197 | } |
| 198 | |
Alex Light | ce68cc6 | 2017-07-26 10:30:38 -0700 | [diff] [blame] | 199 | jvmtiError MethodUtil::GetLocalVariableTable(jvmtiEnv* env, |
| 200 | jmethodID method, |
| 201 | jint* entry_count_ptr, |
| 202 | jvmtiLocalVariableEntry** table_ptr) { |
| 203 | if (method == nullptr) { |
| 204 | return ERR(INVALID_METHODID); |
| 205 | } |
| 206 | art::ArtMethod* art_method = art::jni::DecodeArtMethod(method); |
| 207 | |
| 208 | if (art_method->IsNative()) { |
| 209 | return ERR(NATIVE_METHOD); |
| 210 | } |
| 211 | |
| 212 | if (entry_count_ptr == nullptr || table_ptr == nullptr) { |
| 213 | return ERR(NULL_POINTER); |
| 214 | } |
| 215 | |
| 216 | art::ScopedObjectAccess soa(art::Thread::Current()); |
Mathieu Chartier | 31f4c9f | 2017-12-08 15:46:11 -0800 | [diff] [blame] | 217 | |
| 218 | const art::DexFile* const dex_file = art_method->GetDexFile(); |
| 219 | if (dex_file == nullptr) { |
| 220 | return ERR(ABSENT_INFORMATION); |
| 221 | } |
| 222 | |
| 223 | // TODO HasCodeItem == false means that the method is abstract (or native, but we check that |
Alex Light | ce68cc6 | 2017-07-26 10:30:38 -0700 | [diff] [blame] | 224 | // earlier). We should check what is returned by the RI in this situation since it's not clear |
| 225 | // what the appropriate return value is from the spec. |
David Sehr | 0225f8e | 2018-01-31 08:52:24 +0000 | [diff] [blame] | 226 | art::CodeItemDebugInfoAccessor accessor(art_method->DexInstructionDebugInfo()); |
Mathieu Chartier | 31f4c9f | 2017-12-08 15:46:11 -0800 | [diff] [blame] | 227 | if (!accessor.HasCodeItem()) { |
Alex Light | ce68cc6 | 2017-07-26 10:30:38 -0700 | [diff] [blame] | 228 | return ERR(ABSENT_INFORMATION); |
| 229 | } |
| 230 | |
Mathieu Chartier | e5afbf3 | 2018-09-12 17:51:54 -0700 | [diff] [blame] | 231 | std::vector<jvmtiLocalVariableEntry> variables; |
| 232 | jvmtiError err = OK; |
Alex Light | ce68cc6 | 2017-07-26 10:30:38 -0700 | [diff] [blame] | 233 | |
Mathieu Chartier | e5afbf3 | 2018-09-12 17:51:54 -0700 | [diff] [blame] | 234 | auto release = [&](jint* out_entry_count_ptr, jvmtiLocalVariableEntry** out_table_ptr) { |
| 235 | jlong table_size = sizeof(jvmtiLocalVariableEntry) * variables.size(); |
| 236 | if (err != OK || |
| 237 | (err = env->Allocate(table_size, |
| 238 | reinterpret_cast<unsigned char**>(out_table_ptr))) != OK) { |
| 239 | for (jvmtiLocalVariableEntry& e : variables) { |
| 240 | env->Deallocate(reinterpret_cast<unsigned char*>(e.name)); |
| 241 | env->Deallocate(reinterpret_cast<unsigned char*>(e.signature)); |
| 242 | env->Deallocate(reinterpret_cast<unsigned char*>(e.generic_signature)); |
| 243 | } |
| 244 | return err; |
Alex Light | ce68cc6 | 2017-07-26 10:30:38 -0700 | [diff] [blame] | 245 | } |
Mathieu Chartier | e5afbf3 | 2018-09-12 17:51:54 -0700 | [diff] [blame] | 246 | *out_entry_count_ptr = variables.size(); |
| 247 | memcpy(*out_table_ptr, variables.data(), table_size); |
| 248 | return OK; |
Alex Light | ce68cc6 | 2017-07-26 10:30:38 -0700 | [diff] [blame] | 249 | }; |
| 250 | |
Mathieu Chartier | e5afbf3 | 2018-09-12 17:51:54 -0700 | [diff] [blame] | 251 | auto visitor = [&](const art::DexFile::LocalInfo& entry) { |
| 252 | if (err != OK) { |
| 253 | return; |
| 254 | } |
| 255 | JvmtiUniquePtr<char[]> name_str = CopyString(env, entry.name_, &err); |
| 256 | if (err != OK) { |
| 257 | return; |
| 258 | } |
| 259 | JvmtiUniquePtr<char[]> sig_str = CopyString(env, entry.descriptor_, &err); |
| 260 | if (err != OK) { |
| 261 | return; |
| 262 | } |
| 263 | JvmtiUniquePtr<char[]> generic_sig_str = CopyString(env, entry.signature_, &err); |
| 264 | if (err != OK) { |
| 265 | return; |
| 266 | } |
| 267 | variables.push_back({ |
| 268 | .start_location = static_cast<jlocation>(entry.start_address_), |
| 269 | .length = static_cast<jint>(entry.end_address_ - entry.start_address_), |
| 270 | .name = name_str.release(), |
| 271 | .signature = sig_str.release(), |
| 272 | .generic_signature = generic_sig_str.release(), |
| 273 | .slot = entry.reg_, |
| 274 | }); |
| 275 | }; |
| 276 | |
Mathieu Chartier | 808c7a5 | 2017-12-15 11:19:33 -0800 | [diff] [blame] | 277 | if (!accessor.DecodeDebugLocalInfo(art_method->IsStatic(), |
| 278 | art_method->GetDexMethodIndex(), |
Mathieu Chartier | e5afbf3 | 2018-09-12 17:51:54 -0700 | [diff] [blame] | 279 | visitor)) { |
Alex Light | ce68cc6 | 2017-07-26 10:30:38 -0700 | [diff] [blame] | 280 | // Something went wrong with decoding the debug information. It might as well not be there. |
| 281 | return ERR(ABSENT_INFORMATION); |
Alex Light | ce68cc6 | 2017-07-26 10:30:38 -0700 | [diff] [blame] | 282 | } |
Mathieu Chartier | e5afbf3 | 2018-09-12 17:51:54 -0700 | [diff] [blame] | 283 | return release(entry_count_ptr, table_ptr); |
Alex Light | ce68cc6 | 2017-07-26 10:30:38 -0700 | [diff] [blame] | 284 | } |
| 285 | |
Andreas Gampe | f71832e | 2017-01-09 11:38:04 -0800 | [diff] [blame] | 286 | jvmtiError MethodUtil::GetMaxLocals(jvmtiEnv* env ATTRIBUTE_UNUSED, |
| 287 | jmethodID method, |
| 288 | jint* max_ptr) { |
| 289 | if (method == nullptr) { |
| 290 | return ERR(INVALID_METHODID); |
| 291 | } |
| 292 | art::ArtMethod* art_method = art::jni::DecodeArtMethod(method); |
| 293 | |
| 294 | if (art_method->IsNative()) { |
| 295 | return ERR(NATIVE_METHOD); |
| 296 | } |
| 297 | |
| 298 | if (max_ptr == nullptr) { |
| 299 | return ERR(NULL_POINTER); |
| 300 | } |
| 301 | |
| 302 | art::ScopedObjectAccess soa(art::Thread::Current()); |
| 303 | if (art_method->IsProxyMethod() || art_method->IsAbstract()) { |
| 304 | // This isn't specified as an error case, so return 0. |
| 305 | *max_ptr = 0; |
| 306 | return ERR(NONE); |
| 307 | } |
| 308 | |
| 309 | DCHECK_NE(art_method->GetCodeItemOffset(), 0u); |
David Sehr | 0225f8e | 2018-01-31 08:52:24 +0000 | [diff] [blame] | 310 | *max_ptr = art_method->DexInstructionData().RegistersSize(); |
Andreas Gampe | f71832e | 2017-01-09 11:38:04 -0800 | [diff] [blame] | 311 | |
| 312 | return ERR(NONE); |
| 313 | } |
| 314 | |
Andreas Gampe | 3c252f0 | 2016-10-27 18:25:17 -0700 | [diff] [blame] | 315 | jvmtiError MethodUtil::GetMethodName(jvmtiEnv* env, |
| 316 | jmethodID method, |
| 317 | char** name_ptr, |
| 318 | char** signature_ptr, |
| 319 | char** generic_ptr) { |
| 320 | art::ScopedObjectAccess soa(art::Thread::Current()); |
Andreas Gampe | 13b2784 | 2016-11-07 16:48:23 -0800 | [diff] [blame] | 321 | art::ArtMethod* art_method = art::jni::DecodeArtMethod(method); |
Andreas Gampe | 3c252f0 | 2016-10-27 18:25:17 -0700 | [diff] [blame] | 322 | art_method = art_method->GetInterfaceMethodIfProxy(art::kRuntimePointerSize); |
| 323 | |
Andreas Gampe | 5471141 | 2017-02-21 12:41:43 -0800 | [diff] [blame] | 324 | JvmtiUniquePtr<char[]> name_copy; |
Andreas Gampe | 3c252f0 | 2016-10-27 18:25:17 -0700 | [diff] [blame] | 325 | if (name_ptr != nullptr) { |
| 326 | const char* method_name = art_method->GetName(); |
| 327 | if (method_name == nullptr) { |
| 328 | method_name = "<error>"; |
| 329 | } |
Andreas Gampe | 5471141 | 2017-02-21 12:41:43 -0800 | [diff] [blame] | 330 | jvmtiError ret; |
| 331 | name_copy = CopyString(env, method_name, &ret); |
| 332 | if (name_copy == nullptr) { |
Andreas Gampe | 3c252f0 | 2016-10-27 18:25:17 -0700 | [diff] [blame] | 333 | return ret; |
| 334 | } |
Andreas Gampe | 5471141 | 2017-02-21 12:41:43 -0800 | [diff] [blame] | 335 | *name_ptr = name_copy.get(); |
Andreas Gampe | 3c252f0 | 2016-10-27 18:25:17 -0700 | [diff] [blame] | 336 | } |
| 337 | |
Andreas Gampe | 5471141 | 2017-02-21 12:41:43 -0800 | [diff] [blame] | 338 | JvmtiUniquePtr<char[]> signature_copy; |
Andreas Gampe | 3c252f0 | 2016-10-27 18:25:17 -0700 | [diff] [blame] | 339 | if (signature_ptr != nullptr) { |
| 340 | const art::Signature sig = art_method->GetSignature(); |
| 341 | std::string str = sig.ToString(); |
Andreas Gampe | 5471141 | 2017-02-21 12:41:43 -0800 | [diff] [blame] | 342 | jvmtiError ret; |
| 343 | signature_copy = CopyString(env, str.c_str(), &ret); |
| 344 | if (signature_copy == nullptr) { |
Andreas Gampe | 3c252f0 | 2016-10-27 18:25:17 -0700 | [diff] [blame] | 345 | return ret; |
| 346 | } |
Andreas Gampe | 5471141 | 2017-02-21 12:41:43 -0800 | [diff] [blame] | 347 | *signature_ptr = signature_copy.get(); |
Andreas Gampe | 3c252f0 | 2016-10-27 18:25:17 -0700 | [diff] [blame] | 348 | } |
| 349 | |
Andreas Gampe | 862bdd8 | 2016-11-18 13:31:13 -0800 | [diff] [blame] | 350 | if (generic_ptr != nullptr) { |
| 351 | *generic_ptr = nullptr; |
Andreas Gampe | 27dfa05 | 2017-02-16 15:04:36 -0800 | [diff] [blame] | 352 | if (!art_method->GetDeclaringClass()->IsProxyClass()) { |
Vladimir Marko | acb906d | 2018-05-30 10:23:49 +0100 | [diff] [blame] | 353 | art::ObjPtr<art::mirror::ObjectArray<art::mirror::String>> str_array = |
Andreas Gampe | 27dfa05 | 2017-02-16 15:04:36 -0800 | [diff] [blame] | 354 | art::annotations::GetSignatureAnnotationForMethod(art_method); |
| 355 | if (str_array != nullptr) { |
| 356 | std::ostringstream oss; |
| 357 | for (int32_t i = 0; i != str_array->GetLength(); ++i) { |
| 358 | oss << str_array->Get(i)->ToModifiedUtf8(); |
| 359 | } |
| 360 | std::string output_string = oss.str(); |
Andreas Gampe | 5471141 | 2017-02-21 12:41:43 -0800 | [diff] [blame] | 361 | jvmtiError ret; |
| 362 | JvmtiUniquePtr<char[]> generic_copy = CopyString(env, output_string.c_str(), &ret); |
| 363 | if (generic_copy == nullptr) { |
Andreas Gampe | 27dfa05 | 2017-02-16 15:04:36 -0800 | [diff] [blame] | 364 | return ret; |
| 365 | } |
Andreas Gampe | 5471141 | 2017-02-21 12:41:43 -0800 | [diff] [blame] | 366 | *generic_ptr = generic_copy.release(); |
Andreas Gampe | 27dfa05 | 2017-02-16 15:04:36 -0800 | [diff] [blame] | 367 | } else if (soa.Self()->IsExceptionPending()) { |
| 368 | // TODO: Should we report an error here? |
| 369 | soa.Self()->ClearException(); |
| 370 | } |
| 371 | } |
Andreas Gampe | 862bdd8 | 2016-11-18 13:31:13 -0800 | [diff] [blame] | 372 | } |
Andreas Gampe | 3c252f0 | 2016-10-27 18:25:17 -0700 | [diff] [blame] | 373 | |
| 374 | // Everything is fine, release the buffers. |
| 375 | name_copy.release(); |
| 376 | signature_copy.release(); |
| 377 | |
| 378 | return ERR(NONE); |
| 379 | } |
| 380 | |
Andreas Gampe | 368a208 | 2016-10-28 17:33:13 -0700 | [diff] [blame] | 381 | jvmtiError MethodUtil::GetMethodDeclaringClass(jvmtiEnv* env ATTRIBUTE_UNUSED, |
| 382 | jmethodID method, |
| 383 | jclass* declaring_class_ptr) { |
| 384 | if (declaring_class_ptr == nullptr) { |
| 385 | return ERR(NULL_POINTER); |
| 386 | } |
| 387 | |
Andreas Gampe | 13b2784 | 2016-11-07 16:48:23 -0800 | [diff] [blame] | 388 | art::ArtMethod* art_method = art::jni::DecodeArtMethod(method); |
Andreas Gampe | 368a208 | 2016-10-28 17:33:13 -0700 | [diff] [blame] | 389 | // Note: No GetInterfaceMethodIfProxy, we want to actual class. |
| 390 | |
Andreas Gampe | 13b2784 | 2016-11-07 16:48:23 -0800 | [diff] [blame] | 391 | art::ScopedObjectAccess soa(art::Thread::Current()); |
Vladimir Marko | d93e374 | 2018-07-18 10:58:13 +0100 | [diff] [blame] | 392 | art::ObjPtr<art::mirror::Class> klass = art_method->GetDeclaringClass(); |
Andreas Gampe | 368a208 | 2016-10-28 17:33:13 -0700 | [diff] [blame] | 393 | *declaring_class_ptr = soa.AddLocalReference<jclass>(klass); |
| 394 | |
| 395 | return ERR(NONE); |
| 396 | } |
| 397 | |
Andreas Gampe | f71832e | 2017-01-09 11:38:04 -0800 | [diff] [blame] | 398 | jvmtiError MethodUtil::GetMethodLocation(jvmtiEnv* env ATTRIBUTE_UNUSED, |
| 399 | jmethodID method, |
| 400 | jlocation* start_location_ptr, |
| 401 | jlocation* end_location_ptr) { |
| 402 | if (method == nullptr) { |
| 403 | return ERR(INVALID_METHODID); |
| 404 | } |
| 405 | art::ArtMethod* art_method = art::jni::DecodeArtMethod(method); |
| 406 | |
| 407 | if (art_method->IsNative()) { |
| 408 | return ERR(NATIVE_METHOD); |
| 409 | } |
| 410 | |
| 411 | if (start_location_ptr == nullptr || end_location_ptr == nullptr) { |
| 412 | return ERR(NULL_POINTER); |
| 413 | } |
| 414 | |
| 415 | art::ScopedObjectAccess soa(art::Thread::Current()); |
| 416 | if (art_method->IsProxyMethod() || art_method->IsAbstract()) { |
Andreas Gampe | e1f79b6 | 2017-04-12 21:11:28 -0700 | [diff] [blame] | 417 | // This isn't specified as an error case, so return -1/-1 as the RI does. |
| 418 | *start_location_ptr = -1; |
| 419 | *end_location_ptr = -1; |
Andreas Gampe | f71832e | 2017-01-09 11:38:04 -0800 | [diff] [blame] | 420 | return ERR(NONE); |
| 421 | } |
| 422 | |
| 423 | DCHECK_NE(art_method->GetCodeItemOffset(), 0u); |
| 424 | *start_location_ptr = 0; |
Mathieu Chartier | 808c7a5 | 2017-12-15 11:19:33 -0800 | [diff] [blame] | 425 | *end_location_ptr = art_method->DexInstructions().InsnsSizeInCodeUnits() - 1; |
Andreas Gampe | f71832e | 2017-01-09 11:38:04 -0800 | [diff] [blame] | 426 | |
| 427 | return ERR(NONE); |
| 428 | } |
| 429 | |
Andreas Gampe | 36bcd4f | 2016-10-28 18:07:18 -0700 | [diff] [blame] | 430 | jvmtiError MethodUtil::GetMethodModifiers(jvmtiEnv* env ATTRIBUTE_UNUSED, |
| 431 | jmethodID method, |
| 432 | jint* modifiers_ptr) { |
| 433 | if (modifiers_ptr == nullptr) { |
| 434 | return ERR(NULL_POINTER); |
| 435 | } |
| 436 | |
Andreas Gampe | 13b2784 | 2016-11-07 16:48:23 -0800 | [diff] [blame] | 437 | art::ArtMethod* art_method = art::jni::DecodeArtMethod(method); |
Andreas Gampe | 36bcd4f | 2016-10-28 18:07:18 -0700 | [diff] [blame] | 438 | uint32_t modifiers = art_method->GetAccessFlags(); |
| 439 | |
| 440 | // Note: Keep this code in sync with Executable.fixMethodFlags. |
| 441 | if ((modifiers & art::kAccAbstract) != 0) { |
| 442 | modifiers &= ~art::kAccNative; |
| 443 | } |
| 444 | modifiers &= ~art::kAccSynchronized; |
| 445 | if ((modifiers & art::kAccDeclaredSynchronized) != 0) { |
| 446 | modifiers |= art::kAccSynchronized; |
| 447 | } |
| 448 | modifiers &= art::kAccJavaFlagsMask; |
| 449 | |
| 450 | *modifiers_ptr = modifiers; |
| 451 | return ERR(NONE); |
| 452 | } |
| 453 | |
Andreas Gampe | da3e561 | 2016-12-13 19:00:53 -0800 | [diff] [blame] | 454 | jvmtiError MethodUtil::GetLineNumberTable(jvmtiEnv* env, |
| 455 | jmethodID method, |
| 456 | jint* entry_count_ptr, |
| 457 | jvmtiLineNumberEntry** table_ptr) { |
| 458 | if (method == nullptr) { |
| 459 | return ERR(NULL_POINTER); |
| 460 | } |
| 461 | art::ArtMethod* art_method = art::jni::DecodeArtMethod(method); |
| 462 | DCHECK(!art_method->IsRuntimeMethod()); |
| 463 | |
Mathieu Chartier | 31f4c9f | 2017-12-08 15:46:11 -0800 | [diff] [blame] | 464 | art::CodeItemDebugInfoAccessor accessor; |
Andreas Gampe | da3e561 | 2016-12-13 19:00:53 -0800 | [diff] [blame] | 465 | const art::DexFile* dex_file; |
| 466 | { |
| 467 | art::ScopedObjectAccess soa(art::Thread::Current()); |
| 468 | |
| 469 | if (art_method->IsProxyMethod()) { |
| 470 | return ERR(ABSENT_INFORMATION); |
| 471 | } |
| 472 | if (art_method->IsNative()) { |
| 473 | return ERR(NATIVE_METHOD); |
| 474 | } |
| 475 | if (entry_count_ptr == nullptr || table_ptr == nullptr) { |
| 476 | return ERR(NULL_POINTER); |
| 477 | } |
| 478 | |
David Sehr | 0225f8e | 2018-01-31 08:52:24 +0000 | [diff] [blame] | 479 | accessor = art::CodeItemDebugInfoAccessor(art_method->DexInstructionDebugInfo()); |
Andreas Gampe | da3e561 | 2016-12-13 19:00:53 -0800 | [diff] [blame] | 480 | dex_file = art_method->GetDexFile(); |
Mathieu Chartier | 31f4c9f | 2017-12-08 15:46:11 -0800 | [diff] [blame] | 481 | DCHECK(accessor.HasCodeItem()) << art_method->PrettyMethod() << " " << dex_file->GetLocation(); |
Andreas Gampe | da3e561 | 2016-12-13 19:00:53 -0800 | [diff] [blame] | 482 | } |
| 483 | |
Mathieu Chartier | 3e2e123 | 2018-09-11 12:35:30 -0700 | [diff] [blame] | 484 | std::vector<jvmtiLineNumberEntry> context; |
| 485 | bool success = accessor.DecodeDebugPositionInfo([&](const art::DexFile::PositionInfo& entry) { |
| 486 | context.push_back({static_cast<jlocation>(entry.address_), static_cast<jint>(entry.line_)}); |
| 487 | return false; |
| 488 | }); |
Andreas Gampe | da3e561 | 2016-12-13 19:00:53 -0800 | [diff] [blame] | 489 | if (!success) { |
| 490 | return ERR(ABSENT_INFORMATION); |
| 491 | } |
| 492 | |
| 493 | unsigned char* data; |
| 494 | jlong mem_size = context.size() * sizeof(jvmtiLineNumberEntry); |
| 495 | jvmtiError alloc_error = env->Allocate(mem_size, &data); |
| 496 | if (alloc_error != ERR(NONE)) { |
| 497 | return alloc_error; |
| 498 | } |
| 499 | *table_ptr = reinterpret_cast<jvmtiLineNumberEntry*>(data); |
| 500 | memcpy(*table_ptr, context.data(), mem_size); |
| 501 | *entry_count_ptr = static_cast<jint>(context.size()); |
| 502 | |
| 503 | return ERR(NONE); |
| 504 | } |
| 505 | |
Andreas Gampe | fdeef52 | 2017-01-09 14:40:25 -0800 | [diff] [blame] | 506 | template <typename T> |
| 507 | static jvmtiError IsMethodT(jvmtiEnv* env ATTRIBUTE_UNUSED, |
| 508 | jmethodID method, |
| 509 | T test, |
| 510 | jboolean* is_t_ptr) { |
| 511 | if (method == nullptr) { |
| 512 | return ERR(INVALID_METHODID); |
| 513 | } |
| 514 | if (is_t_ptr == nullptr) { |
| 515 | return ERR(NULL_POINTER); |
| 516 | } |
| 517 | |
| 518 | art::ArtMethod* art_method = art::jni::DecodeArtMethod(method); |
| 519 | *is_t_ptr = test(art_method) ? JNI_TRUE : JNI_FALSE; |
| 520 | |
| 521 | return ERR(NONE); |
| 522 | } |
| 523 | |
| 524 | jvmtiError MethodUtil::IsMethodNative(jvmtiEnv* env, jmethodID m, jboolean* is_native_ptr) { |
| 525 | auto test = [](art::ArtMethod* method) { |
| 526 | return method->IsNative(); |
| 527 | }; |
| 528 | return IsMethodT(env, m, test, is_native_ptr); |
| 529 | } |
| 530 | |
| 531 | jvmtiError MethodUtil::IsMethodObsolete(jvmtiEnv* env, jmethodID m, jboolean* is_obsolete_ptr) { |
| 532 | auto test = [](art::ArtMethod* method) { |
| 533 | return method->IsObsolete(); |
| 534 | }; |
| 535 | return IsMethodT(env, m, test, is_obsolete_ptr); |
| 536 | } |
| 537 | |
| 538 | jvmtiError MethodUtil::IsMethodSynthetic(jvmtiEnv* env, jmethodID m, jboolean* is_synthetic_ptr) { |
| 539 | auto test = [](art::ArtMethod* method) { |
| 540 | return method->IsSynthetic(); |
| 541 | }; |
| 542 | return IsMethodT(env, m, test, is_synthetic_ptr); |
| 543 | } |
| 544 | |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 545 | class CommonLocalVariableClosure : public art::Closure { |
| 546 | public: |
Alex Light | e2ddce3 | 2019-05-22 17:08:35 +0000 | [diff] [blame] | 547 | // The verifier isn't always able to be as specific as the local-variable-table. We can only get |
| 548 | // 32-bit, 64-bit or reference. |
| 549 | enum class VerifierPrimitiveType { |
| 550 | k32BitValue, // float, int, short, char, boolean, byte |
| 551 | k64BitValue, // double, long |
| 552 | kReferenceValue, // Object |
| 553 | kZeroValue, // null or zero constant. Might be either k32BitValue or kReferenceValue |
| 554 | }; |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 555 | |
Alex Light | e2ddce3 | 2019-05-22 17:08:35 +0000 | [diff] [blame] | 556 | using SlotType = std::variant<art::Primitive::Type, VerifierPrimitiveType>; |
| 557 | |
| 558 | CommonLocalVariableClosure(jvmtiEnv* jvmti, jint depth, jint slot) |
| 559 | : jvmti_(jvmti), result_(ERR(INTERNAL)), depth_(depth), slot_(slot) {} |
| 560 | |
| 561 | void Run(art::Thread* self) override REQUIRES_SHARED(art::Locks::mutator_lock_) { |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 562 | art::Locks::mutator_lock_->AssertSharedHeld(art::Thread::Current()); |
Alex Light | a4cdd36 | 2019-04-18 09:17:10 -0700 | [diff] [blame] | 563 | bool needs_instrument; |
| 564 | { |
| 565 | art::ScopedAssertNoThreadSuspension sants("CommonLocalVariableClosure::Run"); |
| 566 | std::unique_ptr<art::Context> context(art::Context::Create()); |
| 567 | FindFrameAtDepthVisitor visitor(self, context.get(), depth_); |
| 568 | visitor.WalkStack(); |
| 569 | if (!visitor.FoundFrame()) { |
| 570 | // Must have been a bad depth. |
| 571 | result_ = ERR(NO_MORE_FRAMES); |
| 572 | return; |
| 573 | } |
| 574 | art::ArtMethod* method = visitor.GetMethod(); |
| 575 | // Native and 'art' proxy methods don't have registers. |
| 576 | if (method->IsNative() || method->IsProxyMethod()) { |
| 577 | // TODO It might be useful to fake up support for get at least on proxy frames. |
| 578 | result_ = ERR(OPAQUE_FRAME); |
| 579 | return; |
Alex Light | 6045bc2 | 2019-05-22 08:33:30 -0700 | [diff] [blame] | 580 | } else if (slot_ >= method->DexInstructionData().RegistersSize() || slot_ < 0) { |
Alex Light | a4cdd36 | 2019-04-18 09:17:10 -0700 | [diff] [blame] | 581 | result_ = ERR(INVALID_SLOT); |
| 582 | return; |
| 583 | } |
| 584 | needs_instrument = !visitor.IsShadowFrame(); |
| 585 | uint32_t pc = visitor.GetDexPc(/*abort_on_failure=*/false); |
| 586 | if (pc == art::dex::kDexNoIndex) { |
| 587 | // Cannot figure out current PC. |
| 588 | result_ = ERR(OPAQUE_FRAME); |
| 589 | return; |
| 590 | } |
| 591 | std::string descriptor; |
Alex Light | e2ddce3 | 2019-05-22 17:08:35 +0000 | [diff] [blame] | 592 | SlotType slot_type{ art::Primitive::kPrimVoid }; |
Alex Light | a4cdd36 | 2019-04-18 09:17:10 -0700 | [diff] [blame] | 593 | jvmtiError err = GetSlotType(method, pc, &descriptor, &slot_type); |
| 594 | if (err != OK) { |
| 595 | result_ = err; |
| 596 | return; |
| 597 | } |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 598 | |
Alex Light | a4cdd36 | 2019-04-18 09:17:10 -0700 | [diff] [blame] | 599 | err = GetTypeError(method, slot_type, descriptor); |
| 600 | if (err != OK) { |
| 601 | result_ = err; |
| 602 | return; |
| 603 | } |
| 604 | result_ = Execute(method, visitor); |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 605 | } |
Alex Light | 0a5ec3d | 2017-07-25 16:50:26 -0700 | [diff] [blame] | 606 | if (needs_instrument) { |
Alex Light | a4cdd36 | 2019-04-18 09:17:10 -0700 | [diff] [blame] | 607 | DeoptManager::Get()->DeoptimizeThread(self); |
Alex Light | 0a5ec3d | 2017-07-25 16:50:26 -0700 | [diff] [blame] | 608 | } |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 609 | } |
| 610 | |
Alex Light | 318afe6 | 2018-03-22 16:50:10 -0700 | [diff] [blame] | 611 | virtual jvmtiError GetResult() { |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 612 | return result_; |
| 613 | } |
| 614 | |
| 615 | protected: |
| 616 | virtual jvmtiError Execute(art::ArtMethod* method, art::StackVisitor& visitor) |
Alex Light | 318afe6 | 2018-03-22 16:50:10 -0700 | [diff] [blame] | 617 | REQUIRES_SHARED(art::Locks::mutator_lock_) = 0; |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 618 | virtual jvmtiError GetTypeError(art::ArtMethod* method, |
Alex Light | e2ddce3 | 2019-05-22 17:08:35 +0000 | [diff] [blame] | 619 | SlotType type, |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 620 | const std::string& descriptor) |
Alex Light | 318afe6 | 2018-03-22 16:50:10 -0700 | [diff] [blame] | 621 | REQUIRES_SHARED(art::Locks::mutator_lock_) = 0; |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 622 | |
| 623 | jvmtiError GetSlotType(art::ArtMethod* method, |
| 624 | uint32_t dex_pc, |
| 625 | /*out*/std::string* descriptor, |
Alex Light | e2ddce3 | 2019-05-22 17:08:35 +0000 | [diff] [blame] | 626 | /*out*/SlotType* type) |
| 627 | REQUIRES_SHARED(art::Locks::mutator_lock_); |
| 628 | |
| 629 | jvmtiError InferSlotTypeFromVerifier(art::ArtMethod* method, |
| 630 | uint32_t dex_pc, |
| 631 | /*out*/ std::string* descriptor, |
| 632 | /*out*/ SlotType* type) |
| 633 | REQUIRES_SHARED(art::Locks::mutator_lock_) { |
| 634 | art::Thread* self = art::Thread::Current(); |
| 635 | art::StackHandleScope<2> hs(self); |
| 636 | std::unique_ptr<art::verifier::MethodVerifier> verifier( |
| 637 | art::verifier::MethodVerifier::CalculateVerificationInfo( |
| 638 | self, |
| 639 | method, |
| 640 | hs.NewHandle(method->GetDexCache()), |
| 641 | hs.NewHandle(method->GetDeclaringClass()->GetClassLoader()))); |
| 642 | if (verifier == nullptr) { |
| 643 | JVMTI_LOG(WARNING, jvmti_) << "Unable to extract verification information from " |
| 644 | << method->PrettyMethod() << " due to hard verification failures! " |
| 645 | << "How did this method even get loaded!"; |
| 646 | return ERR(INTERNAL); |
| 647 | } |
| 648 | art::verifier::RegisterLine* line = verifier->GetRegLine(dex_pc); |
| 649 | if (line == nullptr) { |
| 650 | JVMTI_LOG(WARNING, jvmti_) << "Unable to determine register line at dex-pc " << dex_pc |
| 651 | << " for method " << method->PrettyMethod(); |
Mathieu Chartier | 31f4c9f | 2017-12-08 15:46:11 -0800 | [diff] [blame] | 652 | return ERR(OPAQUE_FRAME); |
| 653 | } |
Alex Light | e2ddce3 | 2019-05-22 17:08:35 +0000 | [diff] [blame] | 654 | const art::verifier::RegType& rt = line->GetRegisterType(verifier.get(), slot_); |
| 655 | if (rt.IsUndefined()) { |
| 656 | return ERR(INVALID_SLOT); |
| 657 | } else if (rt.IsNonZeroReferenceTypes() || rt.IsNull()) { |
| 658 | *descriptor = (rt.HasClass() ? rt.GetDescriptor() : "Ljava/lang/Object;"); |
| 659 | *type = VerifierPrimitiveType::kReferenceValue; |
| 660 | return OK; |
| 661 | } else if (rt.IsZero()) { |
| 662 | *descriptor = "I"; |
| 663 | *type = VerifierPrimitiveType::kZeroValue; |
| 664 | return OK; |
| 665 | } else if (rt.IsCategory1Types()) { |
| 666 | *descriptor = "I"; |
| 667 | *type = VerifierPrimitiveType::k32BitValue; |
| 668 | return OK; |
| 669 | } else if (rt.IsCategory2Types() && rt.IsLowHalf()) { |
| 670 | *descriptor = "J"; |
| 671 | *type = VerifierPrimitiveType::k64BitValue; |
| 672 | return OK; |
| 673 | } else { |
| 674 | // The slot doesn't have a type. Must not be valid here. |
David Srbecky | 99cbfb5 | 2019-05-22 11:39:45 +0000 | [diff] [blame] | 675 | return ERR(INVALID_SLOT); |
Alex Light | e48fd0b | 2019-05-20 10:04:44 -0700 | [diff] [blame] | 676 | } |
| 677 | } |
| 678 | |
Alex Light | e2ddce3 | 2019-05-22 17:08:35 +0000 | [diff] [blame] | 679 | constexpr VerifierPrimitiveType SquashType(SlotType t) { |
| 680 | if (std::holds_alternative<art::Primitive::Type>(t)) { |
| 681 | switch (std::get<art::Primitive::Type>(t)) { |
| 682 | // 32-bit primitives |
| 683 | case art::Primitive::kPrimByte: |
| 684 | case art::Primitive::kPrimChar: |
| 685 | case art::Primitive::kPrimInt: |
| 686 | case art::Primitive::kPrimShort: |
| 687 | case art::Primitive::kPrimBoolean: |
| 688 | case art::Primitive::kPrimFloat: |
| 689 | return VerifierPrimitiveType::k32BitValue; |
| 690 | // 64-bit primitives |
| 691 | case art::Primitive::kPrimLong: |
| 692 | case art::Primitive::kPrimDouble: |
| 693 | return VerifierPrimitiveType::k64BitValue; |
| 694 | case art::Primitive::kPrimNot: |
| 695 | return VerifierPrimitiveType::kReferenceValue; |
| 696 | case art::Primitive::kPrimVoid: |
| 697 | LOG(FATAL) << "Got kPrimVoid"; |
| 698 | UNREACHABLE(); |
| 699 | } |
| 700 | } else { |
| 701 | return std::get<VerifierPrimitiveType>(t); |
| 702 | } |
| 703 | } |
| 704 | |
| 705 | jvmtiEnv* jvmti_; |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 706 | jvmtiError result_; |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 707 | jint depth_; |
| 708 | jint slot_; |
Alex Light | e2ddce3 | 2019-05-22 17:08:35 +0000 | [diff] [blame] | 709 | |
| 710 | private: |
| 711 | DISALLOW_COPY_AND_ASSIGN(CommonLocalVariableClosure); |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 712 | }; |
| 713 | |
Alex Light | e2ddce3 | 2019-05-22 17:08:35 +0000 | [diff] [blame] | 714 | std::ostream& operator<<(std::ostream& os, |
| 715 | CommonLocalVariableClosure::VerifierPrimitiveType state) { |
| 716 | switch (state) { |
| 717 | case CommonLocalVariableClosure::VerifierPrimitiveType::k32BitValue: |
| 718 | return os << "32BitValue"; |
| 719 | case CommonLocalVariableClosure::VerifierPrimitiveType::k64BitValue: |
| 720 | return os << "64BitValue"; |
| 721 | case CommonLocalVariableClosure::VerifierPrimitiveType::kReferenceValue: |
| 722 | return os << "ReferenceValue"; |
| 723 | case CommonLocalVariableClosure::VerifierPrimitiveType::kZeroValue: |
| 724 | return os << "ZeroValue"; |
| 725 | } |
| 726 | } |
| 727 | |
| 728 | std::ostream& operator<<(std::ostream& os, CommonLocalVariableClosure::SlotType state) { |
| 729 | if (std::holds_alternative<art::Primitive::Type>(state)) { |
| 730 | return os << "Primitive::Type[" << std::get<art::Primitive::Type>(state) << "]"; |
| 731 | } else { |
| 732 | return os << "VerifierPrimitiveType[" |
| 733 | << std::get<CommonLocalVariableClosure::VerifierPrimitiveType>(state) << "]"; |
| 734 | } |
| 735 | } |
| 736 | |
| 737 | jvmtiError CommonLocalVariableClosure::GetSlotType(art::ArtMethod* method, |
| 738 | uint32_t dex_pc, |
| 739 | /*out*/ std::string* descriptor, |
| 740 | /*out*/ SlotType* type) { |
| 741 | const art::DexFile* dex_file = method->GetDexFile(); |
| 742 | if (dex_file == nullptr) { |
| 743 | return ERR(OPAQUE_FRAME); |
| 744 | } |
| 745 | art::CodeItemDebugInfoAccessor accessor(method->DexInstructionDebugInfo()); |
| 746 | if (!accessor.HasCodeItem()) { |
| 747 | return ERR(OPAQUE_FRAME); |
| 748 | } |
| 749 | bool found = false; |
| 750 | *type = art::Primitive::kPrimVoid; |
| 751 | descriptor->clear(); |
| 752 | auto visitor = [&](const art::DexFile::LocalInfo& entry) { |
| 753 | if (!found && entry.start_address_ <= dex_pc && entry.end_address_ > dex_pc && |
| 754 | entry.reg_ == slot_) { |
| 755 | found = true; |
| 756 | *type = art::Primitive::GetType(entry.descriptor_[0]); |
| 757 | *descriptor = entry.descriptor_; |
| 758 | } |
| 759 | }; |
| 760 | if (!accessor.DecodeDebugLocalInfo(method->IsStatic(), method->GetDexMethodIndex(), visitor) || |
| 761 | !found) { |
| 762 | // Something went wrong with decoding the debug information. It might as well not be there. |
| 763 | // Try to find the type with the verifier. |
| 764 | // TODO This is very slow. |
| 765 | return InferSlotTypeFromVerifier(method, dex_pc, descriptor, type); |
| 766 | } else if (art::kIsDebugBuild) { |
| 767 | std::string type_unused; |
| 768 | SlotType verifier_type{ art::Primitive::kPrimVoid }; |
| 769 | DCHECK_EQ(InferSlotTypeFromVerifier(method, dex_pc, &type_unused, &verifier_type), OK) |
| 770 | << method->PrettyMethod() << " failed to verify!"; |
| 771 | if (*type == SlotType{ art::Primitive::kPrimNot }) { |
| 772 | // We cannot distinguish between a constant 0 and a null reference so we return that it is a |
| 773 | // 32bit value (Due to the way references are read by the interpreter this is safe even if |
| 774 | // it's modified, the value will remain null). This is not ideal since it prevents modifying |
| 775 | // locals in some circumstances but generally is not a big deal (since one can just modify it |
| 776 | // later once it's been determined to be a reference by a later instruction). |
| 777 | DCHECK(verifier_type == SlotType { VerifierPrimitiveType::kZeroValue } || |
| 778 | verifier_type == SlotType { VerifierPrimitiveType::kReferenceValue }) |
| 779 | << "Verifier disagrees on type of slot! debug: " << *type |
| 780 | << " verifier: " << verifier_type; |
| 781 | } else if (verifier_type == SlotType { VerifierPrimitiveType::kZeroValue }) { |
| 782 | DCHECK(VerifierPrimitiveType::k32BitValue == SquashType(*type) || |
| 783 | VerifierPrimitiveType::kReferenceValue == SquashType(*type)) |
| 784 | << "Verifier disagrees on type of slot! debug: " << *type |
| 785 | << " verifier: " << verifier_type; |
| 786 | } else { |
| 787 | DCHECK_EQ(SquashType(verifier_type), SquashType(*type)) |
| 788 | << "Verifier disagrees on type of slot! debug: " << *type |
| 789 | << " verifier: " << verifier_type; |
| 790 | } |
| 791 | } |
| 792 | return OK; |
| 793 | } |
| 794 | |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 795 | class GetLocalVariableClosure : public CommonLocalVariableClosure { |
| 796 | public: |
Alex Light | e2ddce3 | 2019-05-22 17:08:35 +0000 | [diff] [blame] | 797 | GetLocalVariableClosure(jvmtiEnv* jvmti, |
| 798 | jint depth, |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 799 | jint slot, |
| 800 | art::Primitive::Type type, |
| 801 | jvalue* val) |
Alex Light | e2ddce3 | 2019-05-22 17:08:35 +0000 | [diff] [blame] | 802 | : CommonLocalVariableClosure(jvmti, depth, slot), |
Alex Light | 318afe6 | 2018-03-22 16:50:10 -0700 | [diff] [blame] | 803 | type_(type), |
| 804 | val_(val), |
| 805 | obj_val_(nullptr) {} |
| 806 | |
Andreas Gampe | fa6a1b0 | 2018-09-07 08:11:55 -0700 | [diff] [blame] | 807 | jvmtiError GetResult() override REQUIRES_SHARED(art::Locks::mutator_lock_) { |
Alex Light | 318afe6 | 2018-03-22 16:50:10 -0700 | [diff] [blame] | 808 | if (result_ == OK && type_ == art::Primitive::kPrimNot) { |
Alex Light | a4cdd36 | 2019-04-18 09:17:10 -0700 | [diff] [blame] | 809 | if (obj_val_ == nullptr) { |
| 810 | val_->l = nullptr; |
| 811 | } else { |
| 812 | art::JNIEnvExt* jni = art::Thread::Current()->GetJniEnv(); |
| 813 | val_->l = static_cast<JNIEnv*>(jni)->NewLocalRef(obj_val_); |
| 814 | jni->DeleteGlobalRef(obj_val_); |
| 815 | obj_val_ = nullptr; |
| 816 | } |
Alex Light | 318afe6 | 2018-03-22 16:50:10 -0700 | [diff] [blame] | 817 | } |
| 818 | return CommonLocalVariableClosure::GetResult(); |
| 819 | } |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 820 | |
| 821 | protected: |
Alex Light | e2ddce3 | 2019-05-22 17:08:35 +0000 | [diff] [blame] | 822 | jvmtiError |
| 823 | GetTypeError(art::ArtMethod* method, SlotType slot_type, const std::string& descriptor) override |
| 824 | REQUIRES_SHARED(art::Locks::mutator_lock_) { |
| 825 | jvmtiError res = GetTypeErrorInner(method, slot_type, descriptor); |
| 826 | if (res == ERR(TYPE_MISMATCH)) { |
| 827 | JVMTI_LOG(INFO, jvmti_) << "Unable to Get local variable in slot " << slot_ << ". Expected" |
| 828 | << " slot to be of type compatible with " << SlotType { type_ } |
| 829 | << " but slot is " << slot_type; |
| 830 | } else if (res != OK) { |
| 831 | JVMTI_LOG(INFO, jvmti_) << "Unable to get local variable in slot " << slot_ << "."; |
| 832 | } |
| 833 | return res; |
| 834 | } |
| 835 | |
| 836 | jvmtiError GetTypeErrorInner(art::ArtMethod* method ATTRIBUTE_UNUSED, |
| 837 | SlotType slot_type, |
| 838 | const std::string& descriptor ATTRIBUTE_UNUSED) |
| 839 | REQUIRES_SHARED(art::Locks::mutator_lock_) { |
| 840 | switch (type_) { |
David Srbecky | 99cbfb5 | 2019-05-22 11:39:45 +0000 | [diff] [blame] | 841 | case art::Primitive::kPrimFloat: |
Alex Light | e2ddce3 | 2019-05-22 17:08:35 +0000 | [diff] [blame] | 842 | case art::Primitive::kPrimInt: { |
| 843 | if (std::holds_alternative<VerifierPrimitiveType>(slot_type)) { |
| 844 | return (slot_type == SlotType { VerifierPrimitiveType::k32BitValue } || |
| 845 | slot_type == SlotType { VerifierPrimitiveType::kZeroValue }) |
| 846 | ? OK |
| 847 | : ERR(TYPE_MISMATCH); |
| 848 | } else if (type_ == art::Primitive::kPrimFloat || |
| 849 | slot_type == SlotType { art::Primitive::kPrimFloat }) { |
| 850 | // Check that we are actually a float. |
| 851 | return (SlotType { type_ } == slot_type) ? OK : ERR(TYPE_MISMATCH); |
| 852 | } else { |
| 853 | // Some smaller int type. |
| 854 | return SquashType(slot_type) == SquashType(SlotType { type_ }) ? OK : ERR(TYPE_MISMATCH); |
| 855 | } |
| 856 | } |
| 857 | case art::Primitive::kPrimLong: |
| 858 | case art::Primitive::kPrimDouble: { |
| 859 | // todo |
| 860 | if (std::holds_alternative<VerifierPrimitiveType>(slot_type)) { |
| 861 | return (slot_type == SlotType { VerifierPrimitiveType::k64BitValue }) |
| 862 | ? OK |
| 863 | : ERR(TYPE_MISMATCH); |
| 864 | } else { |
| 865 | return slot_type == SlotType { type_ } ? OK : ERR(TYPE_MISMATCH); |
| 866 | } |
| 867 | } |
David Srbecky | 99cbfb5 | 2019-05-22 11:39:45 +0000 | [diff] [blame] | 868 | case art::Primitive::kPrimNot: |
Alex Light | e2ddce3 | 2019-05-22 17:08:35 +0000 | [diff] [blame] | 869 | return (SquashType(slot_type) == VerifierPrimitiveType::kReferenceValue || |
| 870 | SquashType(slot_type) == VerifierPrimitiveType::kZeroValue) |
| 871 | ? OK |
| 872 | : ERR(TYPE_MISMATCH); |
| 873 | case art::Primitive::kPrimShort: |
| 874 | case art::Primitive::kPrimChar: |
| 875 | case art::Primitive::kPrimByte: |
| 876 | case art::Primitive::kPrimBoolean: |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 877 | case art::Primitive::kPrimVoid: |
| 878 | LOG(FATAL) << "Unexpected primitive type " << slot_type; |
| 879 | UNREACHABLE(); |
| 880 | } |
| 881 | } |
| 882 | |
| 883 | jvmtiError Execute(art::ArtMethod* method, art::StackVisitor& visitor) |
Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 884 | override REQUIRES_SHARED(art::Locks::mutator_lock_) { |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 885 | switch (type_) { |
| 886 | case art::Primitive::kPrimNot: { |
| 887 | uint32_t ptr_val; |
| 888 | if (!visitor.GetVReg(method, |
| 889 | static_cast<uint16_t>(slot_), |
| 890 | art::kReferenceVReg, |
| 891 | &ptr_val)) { |
| 892 | return ERR(OPAQUE_FRAME); |
| 893 | } |
Alex Light | a4cdd36 | 2019-04-18 09:17:10 -0700 | [diff] [blame] | 894 | art::ObjPtr<art::mirror::Object> obj(reinterpret_cast<art::mirror::Object*>(ptr_val)); |
Alex Light | b096c91 | 2019-09-25 13:33:06 -0700 | [diff] [blame] | 895 | obj_val_ = art::Runtime::Current()->GetJavaVM()->AddGlobalRef(art::Thread::Current(), obj); |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 896 | break; |
| 897 | } |
| 898 | case art::Primitive::kPrimInt: |
| 899 | case art::Primitive::kPrimFloat: { |
| 900 | if (!visitor.GetVReg(method, |
| 901 | static_cast<uint16_t>(slot_), |
| 902 | type_ == art::Primitive::kPrimFloat ? art::kFloatVReg : art::kIntVReg, |
| 903 | reinterpret_cast<uint32_t*>(&val_->i))) { |
| 904 | return ERR(OPAQUE_FRAME); |
| 905 | } |
| 906 | break; |
| 907 | } |
| 908 | case art::Primitive::kPrimDouble: |
| 909 | case art::Primitive::kPrimLong: { |
| 910 | auto lo_type = type_ == art::Primitive::kPrimLong ? art::kLongLoVReg : art::kDoubleLoVReg; |
| 911 | auto high_type = type_ == art::Primitive::kPrimLong ? art::kLongHiVReg : art::kDoubleHiVReg; |
| 912 | if (!visitor.GetVRegPair(method, |
| 913 | static_cast<uint16_t>(slot_), |
| 914 | lo_type, |
| 915 | high_type, |
| 916 | reinterpret_cast<uint64_t*>(&val_->j))) { |
| 917 | return ERR(OPAQUE_FRAME); |
| 918 | } |
| 919 | break; |
| 920 | } |
| 921 | default: { |
| 922 | LOG(FATAL) << "unexpected register type " << type_; |
| 923 | UNREACHABLE(); |
| 924 | } |
| 925 | } |
| 926 | return OK; |
| 927 | } |
| 928 | |
| 929 | private: |
| 930 | art::Primitive::Type type_; |
| 931 | jvalue* val_; |
Alex Light | a4cdd36 | 2019-04-18 09:17:10 -0700 | [diff] [blame] | 932 | // A global reference to the return value. We use the global reference to safely transfer the |
| 933 | // value between threads. |
| 934 | jobject obj_val_; |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 935 | }; |
| 936 | |
Alex Light | e2ddce3 | 2019-05-22 17:08:35 +0000 | [diff] [blame] | 937 | jvmtiError MethodUtil::GetLocalVariableGeneric(jvmtiEnv* env, |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 938 | jthread thread, |
| 939 | jint depth, |
| 940 | jint slot, |
| 941 | art::Primitive::Type type, |
| 942 | jvalue* val) { |
| 943 | if (depth < 0) { |
| 944 | return ERR(ILLEGAL_ARGUMENT); |
| 945 | } |
| 946 | art::Thread* self = art::Thread::Current(); |
| 947 | art::ScopedObjectAccess soa(self); |
Alex Light | b1e31a8 | 2017-10-04 16:57:36 -0700 | [diff] [blame] | 948 | art::Locks::thread_list_lock_->ExclusiveLock(self); |
Alex Light | 7ddc23d | 2017-09-22 15:33:41 -0700 | [diff] [blame] | 949 | art::Thread* target = nullptr; |
| 950 | jvmtiError err = ERR(INTERNAL); |
| 951 | if (!ThreadUtil::GetAliveNativeThread(thread, soa, &target, &err)) { |
Alex Light | b1e31a8 | 2017-10-04 16:57:36 -0700 | [diff] [blame] | 952 | art::Locks::thread_list_lock_->ExclusiveUnlock(self); |
Alex Light | 7ddc23d | 2017-09-22 15:33:41 -0700 | [diff] [blame] | 953 | return err; |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 954 | } |
Alex Light | e2ddce3 | 2019-05-22 17:08:35 +0000 | [diff] [blame] | 955 | GetLocalVariableClosure c(env, depth, slot, type, val); |
Alex Light | a4cdd36 | 2019-04-18 09:17:10 -0700 | [diff] [blame] | 956 | // RequestSynchronousCheckpoint releases the thread_list_lock_ as a part of its execution. |
| 957 | if (!target->RequestSynchronousCheckpoint(&c)) { |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 958 | return ERR(THREAD_NOT_ALIVE); |
| 959 | } else { |
| 960 | return c.GetResult(); |
| 961 | } |
| 962 | } |
| 963 | |
| 964 | class SetLocalVariableClosure : public CommonLocalVariableClosure { |
| 965 | public: |
Alex Light | e2ddce3 | 2019-05-22 17:08:35 +0000 | [diff] [blame] | 966 | SetLocalVariableClosure(jvmtiEnv* jvmti, |
| 967 | art::Thread* caller, |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 968 | jint depth, |
| 969 | jint slot, |
| 970 | art::Primitive::Type type, |
| 971 | jvalue val) |
Alex Light | e2ddce3 | 2019-05-22 17:08:35 +0000 | [diff] [blame] | 972 | : CommonLocalVariableClosure(jvmti, depth, slot), caller_(caller), type_(type), val_(val) {} |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 973 | |
| 974 | protected: |
Alex Light | e2ddce3 | 2019-05-22 17:08:35 +0000 | [diff] [blame] | 975 | jvmtiError |
| 976 | GetTypeError(art::ArtMethod* method, SlotType slot_type, const std::string& descriptor) override |
| 977 | REQUIRES_SHARED(art::Locks::mutator_lock_) { |
| 978 | jvmtiError res = GetTypeErrorInner(method, slot_type, descriptor); |
| 979 | if (res != OK) { |
| 980 | if (res == ERR(TYPE_MISMATCH)) { |
| 981 | std::ostringstream desc_exp; |
| 982 | std::ostringstream desc_set; |
| 983 | if (type_ == art::Primitive::kPrimNot) { |
| 984 | desc_exp << " (type: " << descriptor << ")"; |
| 985 | art::ObjPtr<art::mirror::Object> new_val(art::Thread::Current()->DecodeJObject(val_.l)); |
| 986 | desc_set << " (type: " |
| 987 | << (new_val.IsNull() ? "NULL" : new_val->GetClass()->PrettyDescriptor()) << ")"; |
| 988 | } |
| 989 | JVMTI_LOG(INFO, jvmti_) << "Unable to Set local variable in slot " << slot_ << ". Expected" |
| 990 | << " slot to be of type compatible with " << SlotType{ type_ } |
| 991 | << desc_set.str() << " but slot is " << slot_type << desc_exp.str(); |
| 992 | } else { |
| 993 | JVMTI_LOG(INFO, jvmti_) << "Unable to set local variable in slot " << slot_ << ". " |
| 994 | << err_.str(); |
| 995 | } |
| 996 | } |
| 997 | return res; |
| 998 | } |
| 999 | |
| 1000 | jvmtiError |
| 1001 | GetTypeErrorInner(art::ArtMethod* method, SlotType slot_type, const std::string& descriptor) |
| 1002 | REQUIRES_SHARED(art::Locks::mutator_lock_) { |
| 1003 | switch (SquashType(SlotType{ type_ })) { |
| 1004 | case VerifierPrimitiveType::k32BitValue: { |
| 1005 | if (slot_type == SlotType{ VerifierPrimitiveType::kZeroValue }) { |
| 1006 | if (val_.i == 0) { |
| 1007 | return OK; |
| 1008 | } else { |
| 1009 | err_ << "Cannot determine if slot " << slot_ << " is a null reference or 32bit " |
| 1010 | << "constant. Cannot allow writing to slot."; |
| 1011 | return ERR(INTERNAL); |
| 1012 | } |
| 1013 | } else if (SquashType(slot_type) != VerifierPrimitiveType::k32BitValue) { |
| 1014 | return ERR(TYPE_MISMATCH); |
| 1015 | } else if (slot_type == SlotType { VerifierPrimitiveType::k32BitValue } || |
| 1016 | slot_type == SlotType { type_ }) { |
| 1017 | return OK; |
| 1018 | } else if (type_ == art::Primitive::kPrimFloat || |
| 1019 | slot_type == SlotType { art::Primitive::kPrimFloat }) { |
| 1020 | // we should have hit the get == type_ above |
| 1021 | return ERR(TYPE_MISMATCH); |
| 1022 | } else { |
| 1023 | // Some smaller type then int. |
| 1024 | return OK; |
| 1025 | } |
| 1026 | } |
| 1027 | case VerifierPrimitiveType::k64BitValue: { |
| 1028 | if (slot_type == SlotType { VerifierPrimitiveType::k64BitValue } || |
| 1029 | slot_type == SlotType { type_ }) { |
| 1030 | return OK; |
| 1031 | } else { |
| 1032 | return ERR(TYPE_MISMATCH); |
| 1033 | } |
| 1034 | } |
| 1035 | case VerifierPrimitiveType::kReferenceValue: { |
| 1036 | if (SquashType(slot_type) != VerifierPrimitiveType::kReferenceValue && |
| 1037 | SquashType(slot_type) != VerifierPrimitiveType::kZeroValue) { |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 1038 | return ERR(TYPE_MISMATCH); |
| 1039 | } else if (val_.l == nullptr) { |
| 1040 | return OK; |
Alex Light | e2ddce3 | 2019-05-22 17:08:35 +0000 | [diff] [blame] | 1041 | } else if (slot_type == SlotType { VerifierPrimitiveType::kZeroValue }) { |
| 1042 | err_ << "Cannot determine if slot " << slot_ << " is a null " |
| 1043 | << "reference or 32bit constant. Cannot allow writing to slot."; |
| 1044 | return ERR(INTERNAL); |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 1045 | } else { |
| 1046 | art::ClassLinker* cl = art::Runtime::Current()->GetClassLinker(); |
Alex Light | e2ddce3 | 2019-05-22 17:08:35 +0000 | [diff] [blame] | 1047 | art::ObjPtr<art::mirror::Class> set_class = caller_->DecodeJObject(val_.l)->GetClass(); |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 1048 | art::ObjPtr<art::mirror::ClassLoader> loader = |
| 1049 | method->GetDeclaringClass()->GetClassLoader(); |
| 1050 | art::ObjPtr<art::mirror::Class> slot_class = |
| 1051 | cl->LookupClass(caller_, descriptor.c_str(), loader); |
Alex Light | e2ddce3 | 2019-05-22 17:08:35 +0000 | [diff] [blame] | 1052 | DCHECK(!slot_class.IsNull()) << descriptor << " slot: " << slot_type; |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 1053 | return slot_class->IsAssignableFrom(set_class) ? OK : ERR(TYPE_MISMATCH); |
| 1054 | } |
| 1055 | } |
Alex Light | e2ddce3 | 2019-05-22 17:08:35 +0000 | [diff] [blame] | 1056 | case VerifierPrimitiveType::kZeroValue: { |
| 1057 | LOG(FATAL) << "Illegal result from SquashType of art::Primitive::Type " << type_; |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 1058 | UNREACHABLE(); |
Alex Light | e2ddce3 | 2019-05-22 17:08:35 +0000 | [diff] [blame] | 1059 | } |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 1060 | } |
| 1061 | } |
| 1062 | |
| 1063 | jvmtiError Execute(art::ArtMethod* method, art::StackVisitor& visitor) |
Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 1064 | override REQUIRES_SHARED(art::Locks::mutator_lock_) { |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 1065 | switch (type_) { |
| 1066 | case art::Primitive::kPrimNot: { |
Vladimir Marko | 439d126 | 2019-04-12 14:45:07 +0100 | [diff] [blame] | 1067 | if (!visitor.SetVRegReference(method, |
| 1068 | static_cast<uint16_t>(slot_), |
| 1069 | caller_->DecodeJObject(val_.l))) { |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 1070 | return ERR(OPAQUE_FRAME); |
| 1071 | } |
| 1072 | break; |
| 1073 | } |
| 1074 | case art::Primitive::kPrimInt: |
| 1075 | case art::Primitive::kPrimFloat: { |
| 1076 | if (!visitor.SetVReg(method, |
| 1077 | static_cast<uint16_t>(slot_), |
| 1078 | static_cast<uint32_t>(val_.i), |
| 1079 | type_ == art::Primitive::kPrimFloat ? art::kFloatVReg |
| 1080 | : art::kIntVReg)) { |
| 1081 | return ERR(OPAQUE_FRAME); |
| 1082 | } |
| 1083 | break; |
| 1084 | } |
| 1085 | case art::Primitive::kPrimDouble: |
| 1086 | case art::Primitive::kPrimLong: { |
| 1087 | auto lo_type = type_ == art::Primitive::kPrimLong ? art::kLongLoVReg : art::kDoubleLoVReg; |
| 1088 | auto high_type = type_ == art::Primitive::kPrimLong ? art::kLongHiVReg : art::kDoubleHiVReg; |
| 1089 | if (!visitor.SetVRegPair(method, |
| 1090 | static_cast<uint16_t>(slot_), |
| 1091 | static_cast<uint64_t>(val_.j), |
| 1092 | lo_type, |
| 1093 | high_type)) { |
| 1094 | return ERR(OPAQUE_FRAME); |
| 1095 | } |
| 1096 | break; |
| 1097 | } |
| 1098 | default: { |
| 1099 | LOG(FATAL) << "unexpected register type " << type_; |
| 1100 | UNREACHABLE(); |
| 1101 | } |
| 1102 | } |
| 1103 | return OK; |
| 1104 | } |
| 1105 | |
| 1106 | private: |
Alex Light | 318afe6 | 2018-03-22 16:50:10 -0700 | [diff] [blame] | 1107 | art::Thread* caller_; |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 1108 | art::Primitive::Type type_; |
| 1109 | jvalue val_; |
Alex Light | e2ddce3 | 2019-05-22 17:08:35 +0000 | [diff] [blame] | 1110 | std::ostringstream err_; |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 1111 | }; |
| 1112 | |
Alex Light | e2ddce3 | 2019-05-22 17:08:35 +0000 | [diff] [blame] | 1113 | jvmtiError MethodUtil::SetLocalVariableGeneric(jvmtiEnv* env, |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 1114 | jthread thread, |
| 1115 | jint depth, |
| 1116 | jint slot, |
| 1117 | art::Primitive::Type type, |
| 1118 | jvalue val) { |
| 1119 | if (depth < 0) { |
| 1120 | return ERR(ILLEGAL_ARGUMENT); |
| 1121 | } |
Alex Light | f285863 | 2018-04-02 11:28:50 -0700 | [diff] [blame] | 1122 | // Make sure that we know not to do any OSR anymore. |
| 1123 | // TODO We should really keep track of this at the Frame granularity. |
| 1124 | DeoptManager::Get()->SetLocalsUpdated(); |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 1125 | art::Thread* self = art::Thread::Current(); |
| 1126 | art::ScopedObjectAccess soa(self); |
Alex Light | b1e31a8 | 2017-10-04 16:57:36 -0700 | [diff] [blame] | 1127 | art::Locks::thread_list_lock_->ExclusiveLock(self); |
Alex Light | 7ddc23d | 2017-09-22 15:33:41 -0700 | [diff] [blame] | 1128 | art::Thread* target = nullptr; |
| 1129 | jvmtiError err = ERR(INTERNAL); |
| 1130 | if (!ThreadUtil::GetAliveNativeThread(thread, soa, &target, &err)) { |
Alex Light | b1e31a8 | 2017-10-04 16:57:36 -0700 | [diff] [blame] | 1131 | art::Locks::thread_list_lock_->ExclusiveUnlock(self); |
Alex Light | 7ddc23d | 2017-09-22 15:33:41 -0700 | [diff] [blame] | 1132 | return err; |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 1133 | } |
Alex Light | e2ddce3 | 2019-05-22 17:08:35 +0000 | [diff] [blame] | 1134 | SetLocalVariableClosure c(env, self, depth, slot, type, val); |
Alex Light | b1e31a8 | 2017-10-04 16:57:36 -0700 | [diff] [blame] | 1135 | // RequestSynchronousCheckpoint releases the thread_list_lock_ as a part of its execution. |
Alex Light | 318afe6 | 2018-03-22 16:50:10 -0700 | [diff] [blame] | 1136 | if (!target->RequestSynchronousCheckpoint(&c)) { |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 1137 | return ERR(THREAD_NOT_ALIVE); |
| 1138 | } else { |
| 1139 | return c.GetResult(); |
| 1140 | } |
| 1141 | } |
| 1142 | |
| 1143 | class GetLocalInstanceClosure : public art::Closure { |
| 1144 | public: |
Alex Light | 318afe6 | 2018-03-22 16:50:10 -0700 | [diff] [blame] | 1145 | explicit GetLocalInstanceClosure(jint depth) |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 1146 | : result_(ERR(INTERNAL)), |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 1147 | depth_(depth), |
Alex Light | 318afe6 | 2018-03-22 16:50:10 -0700 | [diff] [blame] | 1148 | val_(nullptr) {} |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 1149 | |
Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 1150 | void Run(art::Thread* self) override REQUIRES(art::Locks::mutator_lock_) { |
Alex Light | 318afe6 | 2018-03-22 16:50:10 -0700 | [diff] [blame] | 1151 | art::ScopedAssertNoThreadSuspension sants("GetLocalInstanceClosure::Run"); |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 1152 | art::Locks::mutator_lock_->AssertSharedHeld(art::Thread::Current()); |
| 1153 | std::unique_ptr<art::Context> context(art::Context::Create()); |
| 1154 | FindFrameAtDepthVisitor visitor(self, context.get(), depth_); |
| 1155 | visitor.WalkStack(); |
| 1156 | if (!visitor.FoundFrame()) { |
| 1157 | // Must have been a bad depth. |
| 1158 | result_ = ERR(NO_MORE_FRAMES); |
| 1159 | return; |
| 1160 | } |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 1161 | result_ = OK; |
Alex Light | 318afe6 | 2018-03-22 16:50:10 -0700 | [diff] [blame] | 1162 | val_ = art::GcRoot<art::mirror::Object>(visitor.GetThisObject()); |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 1163 | } |
| 1164 | |
Alex Light | 318afe6 | 2018-03-22 16:50:10 -0700 | [diff] [blame] | 1165 | jvmtiError GetResult(jobject* data_out) REQUIRES_SHARED(art::Locks::mutator_lock_) { |
| 1166 | if (result_ == OK) { |
| 1167 | *data_out = val_.IsNull() |
| 1168 | ? nullptr |
| 1169 | : art::Thread::Current()->GetJniEnv()->AddLocalReference<jobject>(val_.Read()); |
| 1170 | } |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 1171 | return result_; |
| 1172 | } |
| 1173 | |
| 1174 | private: |
| 1175 | jvmtiError result_; |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 1176 | jint depth_; |
Alex Light | 318afe6 | 2018-03-22 16:50:10 -0700 | [diff] [blame] | 1177 | art::GcRoot<art::mirror::Object> val_; |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 1178 | }; |
| 1179 | |
| 1180 | jvmtiError MethodUtil::GetLocalInstance(jvmtiEnv* env ATTRIBUTE_UNUSED, |
| 1181 | jthread thread, |
| 1182 | jint depth, |
| 1183 | jobject* data) { |
| 1184 | if (depth < 0) { |
| 1185 | return ERR(ILLEGAL_ARGUMENT); |
| 1186 | } |
| 1187 | art::Thread* self = art::Thread::Current(); |
| 1188 | art::ScopedObjectAccess soa(self); |
Alex Light | b1e31a8 | 2017-10-04 16:57:36 -0700 | [diff] [blame] | 1189 | art::Locks::thread_list_lock_->ExclusiveLock(self); |
Alex Light | 7ddc23d | 2017-09-22 15:33:41 -0700 | [diff] [blame] | 1190 | art::Thread* target = nullptr; |
| 1191 | jvmtiError err = ERR(INTERNAL); |
| 1192 | if (!ThreadUtil::GetAliveNativeThread(thread, soa, &target, &err)) { |
Alex Light | b1e31a8 | 2017-10-04 16:57:36 -0700 | [diff] [blame] | 1193 | art::Locks::thread_list_lock_->ExclusiveUnlock(self); |
Alex Light | 7ddc23d | 2017-09-22 15:33:41 -0700 | [diff] [blame] | 1194 | return err; |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 1195 | } |
Alex Light | 318afe6 | 2018-03-22 16:50:10 -0700 | [diff] [blame] | 1196 | art::ScopedAssertNoThreadSuspension sants("Performing GetLocalInstance"); |
| 1197 | GetLocalInstanceClosure c(depth); |
| 1198 | // RequestSynchronousCheckpoint releases the thread_list_lock_ as a part of its execution. We |
| 1199 | // need to avoid suspending as we wait for the checkpoint to occur since we are (potentially) |
| 1200 | // transfering a GcRoot across threads. |
| 1201 | if (!target->RequestSynchronousCheckpoint(&c, art::ThreadState::kRunnable)) { |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 1202 | return ERR(THREAD_NOT_ALIVE); |
| 1203 | } else { |
Alex Light | 318afe6 | 2018-03-22 16:50:10 -0700 | [diff] [blame] | 1204 | return c.GetResult(data); |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 1205 | } |
| 1206 | } |
| 1207 | |
| 1208 | #define FOR_JVMTI_JVALUE_TYPES(fn) \ |
| 1209 | fn(jint, art::Primitive::kPrimInt, i) \ |
| 1210 | fn(jlong, art::Primitive::kPrimLong, j) \ |
| 1211 | fn(jfloat, art::Primitive::kPrimFloat, f) \ |
| 1212 | fn(jdouble, art::Primitive::kPrimDouble, d) \ |
| 1213 | fn(jobject, art::Primitive::kPrimNot, l) |
| 1214 | |
| 1215 | namespace impl { |
| 1216 | |
| 1217 | template<typename T> void WriteJvalue(T, jvalue*); |
| 1218 | template<typename T> void ReadJvalue(jvalue, T*); |
| 1219 | template<typename T> art::Primitive::Type GetJNIType(); |
| 1220 | |
| 1221 | #define JNI_TYPE_CHAR(type, prim, id) \ |
| 1222 | template<> art::Primitive::Type GetJNIType<type>() { \ |
| 1223 | return prim; \ |
| 1224 | } |
| 1225 | |
| 1226 | FOR_JVMTI_JVALUE_TYPES(JNI_TYPE_CHAR); |
| 1227 | |
| 1228 | #undef JNI_TYPE_CHAR |
| 1229 | |
Andreas Gampe | 49fc60e | 2017-08-24 13:19:59 -0700 | [diff] [blame] | 1230 | #define RW_JVALUE(srctype, prim, id) \ |
| 1231 | template<> void ReadJvalue<srctype>(jvalue in, std::add_pointer<srctype>::type out) { \ |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 1232 | *out = in.id; \ |
| 1233 | } \ |
Andreas Gampe | 49fc60e | 2017-08-24 13:19:59 -0700 | [diff] [blame] | 1234 | template<> void WriteJvalue<srctype>(srctype in, jvalue* out) { \ |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 1235 | out->id = in; \ |
| 1236 | } |
| 1237 | |
| 1238 | FOR_JVMTI_JVALUE_TYPES(RW_JVALUE); |
| 1239 | |
| 1240 | #undef RW_JVALUE |
| 1241 | |
| 1242 | } // namespace impl |
| 1243 | |
| 1244 | template<typename T> |
| 1245 | jvmtiError MethodUtil::SetLocalVariable(jvmtiEnv* env, |
| 1246 | jthread thread, |
| 1247 | jint depth, |
| 1248 | jint slot, |
| 1249 | T data) { |
| 1250 | jvalue v = {.j = 0}; |
| 1251 | art::Primitive::Type type = impl::GetJNIType<T>(); |
| 1252 | impl::WriteJvalue(data, &v); |
| 1253 | return SetLocalVariableGeneric(env, thread, depth, slot, type, v); |
| 1254 | } |
| 1255 | |
| 1256 | template<typename T> |
| 1257 | jvmtiError MethodUtil::GetLocalVariable(jvmtiEnv* env, |
| 1258 | jthread thread, |
| 1259 | jint depth, |
| 1260 | jint slot, |
| 1261 | T* data) { |
| 1262 | if (data == nullptr) { |
| 1263 | return ERR(NULL_POINTER); |
| 1264 | } |
| 1265 | jvalue v = {.j = 0}; |
| 1266 | art::Primitive::Type type = impl::GetJNIType<T>(); |
| 1267 | jvmtiError err = GetLocalVariableGeneric(env, thread, depth, slot, type, &v); |
| 1268 | if (err != OK) { |
| 1269 | return err; |
| 1270 | } else { |
| 1271 | impl::ReadJvalue(v, data); |
| 1272 | return OK; |
| 1273 | } |
| 1274 | } |
| 1275 | |
Andreas Gampe | 49fc60e | 2017-08-24 13:19:59 -0700 | [diff] [blame] | 1276 | #define GET_SET_LV(srctype, prim, id) \ |
| 1277 | template jvmtiError MethodUtil::GetLocalVariable<srctype>(jvmtiEnv*, \ |
| 1278 | jthread, \ |
| 1279 | jint, \ |
| 1280 | jint, \ |
| 1281 | std::add_pointer<srctype>::type); \ |
| 1282 | template jvmtiError MethodUtil::SetLocalVariable<srctype>(jvmtiEnv*, \ |
| 1283 | jthread, \ |
| 1284 | jint, \ |
| 1285 | jint, \ |
| 1286 | srctype); |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 1287 | |
| 1288 | FOR_JVMTI_JVALUE_TYPES(GET_SET_LV); |
| 1289 | |
| 1290 | #undef GET_SET_LV |
| 1291 | |
| 1292 | #undef FOR_JVMTI_JVALUE_TYPES |
| 1293 | |
Andreas Gampe | 3c252f0 | 2016-10-27 18:25:17 -0700 | [diff] [blame] | 1294 | } // namespace openjdkjvmti |