blob: 80140b3aa12c614ba7a510bd47faa1d4f814fb8e [file] [log] [blame]
Elliott Hughes872d4ec2011-10-21 17:07:15 -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
17#include "debugger.h"
18
Elliott Hughes3bb81562011-10-21 18:52:59 -070019#include <sys/uio.h>
20
Alex Light8c2b9292017-11-09 13:21:01 -080021#include <functional>
Andreas Gampef774a4e2017-07-06 22:15:18 -070022#include <memory>
Elliott Hughes545a0642011-11-08 19:10:03 -080023#include <set>
Andreas Gampef774a4e2017-07-06 22:15:18 -070024#include <vector>
Elliott Hughes545a0642011-11-08 19:10:03 -080025
Andreas Gampe46ee31b2016-12-14 10:11:49 -080026#include "android-base/stringprintf.h"
27
Ian Rogers166db042013-07-26 12:05:57 -070028#include "arch/context.h"
Mathieu Chartierc7853442015-03-27 14:35:38 -070029#include "art_field-inl.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070030#include "art_method-inl.h"
Andreas Gampe542451c2016-07-26 09:02:02 -070031#include "base/enums.h"
David Sehr67bf42e2018-02-26 16:43:04 -080032#include "base/safe_map.h"
Andreas Gampef774a4e2017-07-06 22:15:18 -070033#include "base/strlcpy.h"
Vladimir Marko80afd022015-05-19 18:08:00 +010034#include "base/time_utils.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080035#include "class_linker-inl.h"
Steven Morelande431e272017-07-18 16:53:49 -070036#include "class_linker.h"
David Sehrb2ec9f52018-02-21 13:20:31 -080037#include "dex/descriptors_names.h"
David Sehr9e734c72018-01-04 17:56:19 -080038#include "dex/dex_file-inl.h"
39#include "dex/dex_file_annotations.h"
40#include "dex/dex_file_types.h"
41#include "dex/dex_instruction.h"
David Sehr0225f8e2018-01-31 08:52:24 +000042#include "dex/utf.h"
Mingyao Yang6ea1a0e2016-01-29 12:12:49 -080043#include "entrypoints/runtime_asm_entrypoints.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070044#include "gc/accounting/card_table-inl.h"
Man Cao8c2ff642015-05-27 17:25:30 -070045#include "gc/allocation_record.h"
Andreas Gampe94c589d2017-12-27 12:43:01 -080046#include "gc/gc_cause.h"
Mathieu Chartieraa516822015-10-02 15:53:37 -070047#include "gc/scoped_gc_critical_section.h"
Andreas Gampe0c183382017-07-13 22:26:24 -070048#include "gc/space/bump_pointer_space-walk-inl.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070049#include "gc/space/large_object_space.h"
50#include "gc/space/space-inl.h"
Andreas Gampe513061a2017-06-01 09:17:34 -070051#include "handle_scope-inl.h"
Sebastien Hertzcbc50642015-06-01 17:33:12 +020052#include "jdwp/jdwp_priv.h"
Elliott Hughes64f574f2013-02-20 14:57:12 -080053#include "jdwp/object_registry.h"
Vladimir Markoa3ad0cd2018-05-04 10:06:38 +010054#include "jni/jni_internal.h"
Mathieu Chartier28bd2e42016-10-04 13:54:57 -070055#include "jvalue-inl.h"
Andreas Gampe8e0f0432018-10-24 13:38:03 -070056#include "mirror/array-alloc-inl.h"
Andreas Gampe70f5fd02018-10-24 19:58:37 -070057#include "mirror/class-alloc-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080058#include "mirror/class-inl.h"
Steven Morelande431e272017-07-18 16:53:49 -070059#include "mirror/class.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080060#include "mirror/class_loader.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080061#include "mirror/object-inl.h"
62#include "mirror/object_array-inl.h"
Andreas Gampefd63bbf2018-10-29 12:55:35 -070063#include "mirror/string-alloc-inl.h"
Ian Rogersb0fa5dc2014-04-28 16:47:08 -070064#include "mirror/string-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080065#include "mirror/throwable.h"
Andreas Gampe373a9b52017-10-18 09:01:57 -070066#include "nativehelper/scoped_local_ref.h"
67#include "nativehelper/scoped_primitive_array.h"
Nicolas Geoffray58cc1cb2017-11-20 13:27:29 +000068#include "oat_file.h"
Mathieu Chartier3398c782016-09-30 10:27:43 -070069#include "obj_ptr-inl.h"
Ian Rogers53b8b092014-03-13 23:45:53 -070070#include "reflection.h"
David Srbecky28f6cff2018-10-16 15:07:28 +010071#include "runtime-inl.h"
Mathieu Chartier0795f232016-09-27 18:43:30 -070072#include "scoped_thread_state_change-inl.h"
Andreas Gampe513061a2017-06-01 09:17:34 -070073#include "stack.h"
Elliott Hughes475fc232011-10-25 15:00:35 -070074#include "thread_list.h"
Elliott Hugheseac76672012-05-24 21:56:51 -070075#include "well_known_classes.h"
Elliott Hughes475fc232011-10-25 15:00:35 -070076
Elliott Hughes872d4ec2011-10-21 17:07:15 -070077namespace art {
78
Andreas Gampe46ee31b2016-12-14 10:11:49 -080079using android::base::StringPrintf;
80
Sebastien Hertz0462c4c2015-04-01 16:34:17 +020081// The key identifying the debugger to update instrumentation.
82static constexpr const char* kDbgInstrumentationKey = "Debugger";
83
Man Cao8c2ff642015-05-27 17:25:30 -070084// Limit alloc_record_count to the 2BE value (64k-1) that is the limit of the current protocol.
Brian Carlstrom306db812014-09-05 13:01:41 -070085static uint16_t CappedAllocRecordCount(size_t alloc_record_count) {
Man Cao1ed11b92015-06-11 22:47:35 -070086 const size_t cap = 0xffff;
Man Cao8c2ff642015-05-27 17:25:30 -070087 if (alloc_record_count > cap) {
88 return cap;
Brian Carlstrom306db812014-09-05 13:01:41 -070089 }
90 return alloc_record_count;
91}
Elliott Hughes475fc232011-10-25 15:00:35 -070092
Mathieu Chartier41af5e52015-10-28 11:10:46 -070093class Breakpoint : public ValueObject {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -070094 public:
Mathieu Chartier41af5e52015-10-28 11:10:46 -070095 Breakpoint(ArtMethod* method, uint32_t dex_pc, DeoptimizationRequest::Kind deoptimization_kind)
Alex Light97e78032017-06-27 17:51:55 -070096 : method_(method->GetCanonicalMethod(kRuntimePointerSize)),
Mathieu Chartier41af5e52015-10-28 11:10:46 -070097 dex_pc_(dex_pc),
98 deoptimization_kind_(deoptimization_kind) {
Sebastien Hertzf3928792014-11-17 19:00:37 +010099 CHECK(deoptimization_kind_ == DeoptimizationRequest::kNothing ||
100 deoptimization_kind_ == DeoptimizationRequest::kSelectiveDeoptimization ||
101 deoptimization_kind_ == DeoptimizationRequest::kFullDeoptimization);
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700102 }
103
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700104 Breakpoint(const Breakpoint& other) REQUIRES_SHARED(Locks::mutator_lock_)
Mathieu Chartier41af5e52015-10-28 11:10:46 -0700105 : method_(other.method_),
106 dex_pc_(other.dex_pc_),
107 deoptimization_kind_(other.deoptimization_kind_) {}
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700108
Mathieu Chartier41af5e52015-10-28 11:10:46 -0700109 // Method() is called from root visiting, do not use ScopedObjectAccess here or it can cause
110 // GC to deadlock if another thread tries to call SuspendAll while the GC is in a runnable state.
111 ArtMethod* Method() const {
112 return method_;
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700113 }
114
115 uint32_t DexPc() const {
116 return dex_pc_;
117 }
118
Sebastien Hertzf3928792014-11-17 19:00:37 +0100119 DeoptimizationRequest::Kind GetDeoptimizationKind() const {
120 return deoptimization_kind_;
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700121 }
122
Alex Light6c8467f2015-11-20 15:03:26 -0800123 // Returns true if the method of this breakpoint and the passed in method should be considered the
124 // same. That is, they are either the same method or they are copied from the same method.
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700125 bool IsInMethod(ArtMethod* m) const REQUIRES_SHARED(Locks::mutator_lock_) {
Alex Light97e78032017-06-27 17:51:55 -0700126 return method_ == m->GetCanonicalMethod(kRuntimePointerSize);
Alex Light6c8467f2015-11-20 15:03:26 -0800127 }
128
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700129 private:
Sebastien Hertza76a6d42014-03-20 16:40:17 +0100130 // The location of this breakpoint.
Mathieu Chartier41af5e52015-10-28 11:10:46 -0700131 ArtMethod* method_;
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -0700132 uint32_t dex_pc_;
Sebastien Hertza76a6d42014-03-20 16:40:17 +0100133
134 // Indicates whether breakpoint needs full deoptimization or selective deoptimization.
Sebastien Hertzf3928792014-11-17 19:00:37 +0100135 DeoptimizationRequest::Kind deoptimization_kind_;
Elliott Hughes86964332012-02-15 19:37:42 -0800136};
137
Sebastien Hertzed2be172014-08-19 15:33:43 +0200138static std::ostream& operator<<(std::ostream& os, const Breakpoint& rhs)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700139 REQUIRES_SHARED(Locks::mutator_lock_) {
David Sehr709b0702016-10-13 09:12:37 -0700140 os << StringPrintf("Breakpoint[%s @%#x]", ArtMethod::PrettyMethod(rhs.Method()).c_str(),
141 rhs.DexPc());
Elliott Hughes86964332012-02-15 19:37:42 -0800142 return os;
143}
144
Roland Levillainbbc6e7e2018-08-24 16:58:47 +0100145class DebugInstrumentationListener final : public instrumentation::InstrumentationListener {
Ian Rogers62d6c772013-02-27 08:32:07 -0800146 public:
147 DebugInstrumentationListener() {}
148 virtual ~DebugInstrumentationListener() {}
149
Alex Lightd7661582017-05-01 13:48:16 -0700150 void MethodEntered(Thread* thread,
151 Handle<mirror::Object> this_object,
152 ArtMethod* method,
Sebastien Hertz9d6bf692015-04-10 12:12:33 +0200153 uint32_t dex_pc)
Roland Levillainbbc6e7e2018-08-24 16:58:47 +0100154 override REQUIRES_SHARED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800155 if (method->IsNative()) {
156 // TODO: post location events is a suspension point and native method entry stubs aren't.
157 return;
158 }
Sebastien Hertz9d6bf692015-04-10 12:12:33 +0200159 if (IsListeningToDexPcMoved()) {
160 // We also listen to kDexPcMoved instrumentation event so we know the DexPcMoved method is
161 // going to be called right after us. To avoid sending JDWP events twice for this location,
162 // we report the event in DexPcMoved. However, we must remind this is method entry so we
163 // send the METHOD_ENTRY event. And we can also group it with other events for this location
164 // like BREAKPOINT or SINGLE_STEP (or even METHOD_EXIT if this is a RETURN instruction).
165 thread->SetDebugMethodEntry();
166 } else if (IsListeningToMethodExit() && IsReturn(method, dex_pc)) {
167 // We also listen to kMethodExited instrumentation event and the current instruction is a
168 // RETURN so we know the MethodExited method is going to be called right after us. To avoid
169 // sending JDWP events twice for this location, we report the event(s) in MethodExited.
170 // However, we must remind this is method entry so we send the METHOD_ENTRY event. And we can
171 // also group it with other events for this location like BREAKPOINT or SINGLE_STEP.
172 thread->SetDebugMethodEntry();
173 } else {
Alex Lightd7661582017-05-01 13:48:16 -0700174 Dbg::UpdateDebugger(thread, this_object.Get(), method, 0, Dbg::kMethodEntry, nullptr);
Sebastien Hertz9d6bf692015-04-10 12:12:33 +0200175 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800176 }
177
Alex Lightd7661582017-05-01 13:48:16 -0700178 void MethodExited(Thread* thread,
179 Handle<mirror::Object> this_object,
180 ArtMethod* method,
181 uint32_t dex_pc,
182 const JValue& return_value)
Roland Levillainbbc6e7e2018-08-24 16:58:47 +0100183 override REQUIRES_SHARED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800184 if (method->IsNative()) {
185 // TODO: post location events is a suspension point and native method entry stubs aren't.
186 return;
187 }
Sebastien Hertz9d6bf692015-04-10 12:12:33 +0200188 uint32_t events = Dbg::kMethodExit;
189 if (thread->IsDebugMethodEntry()) {
190 // It is also the method entry.
191 DCHECK(IsReturn(method, dex_pc));
192 events |= Dbg::kMethodEntry;
193 thread->ClearDebugMethodEntry();
194 }
Alex Lightd7661582017-05-01 13:48:16 -0700195 Dbg::UpdateDebugger(thread, this_object.Get(), method, dex_pc, events, &return_value);
Ian Rogers62d6c772013-02-27 08:32:07 -0800196 }
197
Alex Lightd7661582017-05-01 13:48:16 -0700198 void MethodUnwind(Thread* thread ATTRIBUTE_UNUSED,
199 Handle<mirror::Object> this_object ATTRIBUTE_UNUSED,
200 ArtMethod* method,
201 uint32_t dex_pc)
Roland Levillainbbc6e7e2018-08-24 16:58:47 +0100202 override REQUIRES_SHARED(Locks::mutator_lock_) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800203 // We're not recorded to listen to this kind of event, so complain.
David Sehr709b0702016-10-13 09:12:37 -0700204 LOG(ERROR) << "Unexpected method unwind event in debugger " << ArtMethod::PrettyMethod(method)
Sebastien Hertz51db44a2013-11-19 10:00:29 +0100205 << " " << dex_pc;
Ian Rogers62d6c772013-02-27 08:32:07 -0800206 }
207
Alex Lightd7661582017-05-01 13:48:16 -0700208 void DexPcMoved(Thread* thread,
209 Handle<mirror::Object> this_object,
210 ArtMethod* method,
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200211 uint32_t new_dex_pc)
Roland Levillainbbc6e7e2018-08-24 16:58:47 +0100212 override REQUIRES_SHARED(Locks::mutator_lock_) {
Sebastien Hertz9d6bf692015-04-10 12:12:33 +0200213 if (IsListeningToMethodExit() && IsReturn(method, new_dex_pc)) {
214 // We also listen to kMethodExited instrumentation event and the current instruction is a
215 // RETURN so we know the MethodExited method is going to be called right after us. Like in
216 // MethodEntered, we delegate event reporting to MethodExited.
217 // Besides, if this RETURN instruction is the only one in the method, we can send multiple
218 // JDWP events in the same packet: METHOD_ENTRY, METHOD_EXIT, BREAKPOINT and/or SINGLE_STEP.
219 // Therefore, we must not clear the debug method entry flag here.
220 } else {
221 uint32_t events = 0;
222 if (thread->IsDebugMethodEntry()) {
223 // It is also the method entry.
224 events = Dbg::kMethodEntry;
225 thread->ClearDebugMethodEntry();
226 }
Alex Lightd7661582017-05-01 13:48:16 -0700227 Dbg::UpdateDebugger(thread, this_object.Get(), method, new_dex_pc, events, nullptr);
Sebastien Hertz9d6bf692015-04-10 12:12:33 +0200228 }
Ian Rogers62d6c772013-02-27 08:32:07 -0800229 }
230
Alex Lightd7661582017-05-01 13:48:16 -0700231 void FieldRead(Thread* thread ATTRIBUTE_UNUSED,
232 Handle<mirror::Object> this_object,
233 ArtMethod* method,
234 uint32_t dex_pc,
235 ArtField* field)
Roland Levillainbbc6e7e2018-08-24 16:58:47 +0100236 override REQUIRES_SHARED(Locks::mutator_lock_) {
Alex Lightd7661582017-05-01 13:48:16 -0700237 Dbg::PostFieldAccessEvent(method, dex_pc, this_object.Get(), field);
Ian Rogers62d6c772013-02-27 08:32:07 -0800238 }
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200239
Alex Lightd7661582017-05-01 13:48:16 -0700240 void FieldWritten(Thread* thread ATTRIBUTE_UNUSED,
241 Handle<mirror::Object> this_object,
242 ArtMethod* method,
243 uint32_t dex_pc,
244 ArtField* field,
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700245 const JValue& field_value)
Roland Levillainbbc6e7e2018-08-24 16:58:47 +0100246 override REQUIRES_SHARED(Locks::mutator_lock_) {
Alex Lightd7661582017-05-01 13:48:16 -0700247 Dbg::PostFieldModificationEvent(method, dex_pc, this_object.Get(), field, &field_value);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200248 }
249
Alex Light6e1607e2017-08-23 10:06:18 -0700250 void ExceptionThrown(Thread* thread ATTRIBUTE_UNUSED,
Alex Lightd7661582017-05-01 13:48:16 -0700251 Handle<mirror::Throwable> exception_object)
Roland Levillainbbc6e7e2018-08-24 16:58:47 +0100252 override REQUIRES_SHARED(Locks::mutator_lock_) {
Alex Lightd7661582017-05-01 13:48:16 -0700253 Dbg::PostException(exception_object.Get());
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200254 }
255
Nicolas Geoffray81f0f952016-01-20 16:25:19 +0000256 // We only care about branches in the Jit.
257 void Branch(Thread* /*thread*/, ArtMethod* method, uint32_t dex_pc, int32_t dex_pc_offset)
Roland Levillainbbc6e7e2018-08-24 16:58:47 +0100258 override REQUIRES_SHARED(Locks::mutator_lock_) {
David Sehr709b0702016-10-13 09:12:37 -0700259 LOG(ERROR) << "Unexpected branch event in debugger " << ArtMethod::PrettyMethod(method)
Nicolas Geoffray81f0f952016-01-20 16:25:19 +0000260 << " " << dex_pc << ", " << dex_pc_offset;
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800261 }
262
Alex Light798eab02017-08-23 12:54:53 -0700263 // TODO Might be worth it to post ExceptionCatch event.
264 void ExceptionHandled(Thread* thread ATTRIBUTE_UNUSED,
Roland Levillainbbc6e7e2018-08-24 16:58:47 +0100265 Handle<mirror::Throwable> throwable ATTRIBUTE_UNUSED) override {
Alex Light798eab02017-08-23 12:54:53 -0700266 LOG(ERROR) << "Unexpected exception handled event in debugger";
267 }
268
Alex Light05f47742017-09-14 00:34:44 +0000269 // TODO Might be worth it to implement this.
270 void WatchedFramePop(Thread* thread ATTRIBUTE_UNUSED,
Roland Levillainbbc6e7e2018-08-24 16:58:47 +0100271 const ShadowFrame& frame ATTRIBUTE_UNUSED) override {
Alex Light05f47742017-09-14 00:34:44 +0000272 LOG(ERROR) << "Unexpected WatchedFramePop event in debugger";
273 }
Alex Light798eab02017-08-23 12:54:53 -0700274
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200275 private:
Mathieu Chartier808c7a52017-12-15 11:19:33 -0800276 static bool IsReturn(ArtMethod* method, uint32_t dex_pc) REQUIRES_SHARED(Locks::mutator_lock_) {
277 return method->DexInstructions().InstructionAt(dex_pc).IsReturn();
Sebastien Hertz9d6bf692015-04-10 12:12:33 +0200278 }
279
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700280 static bool IsListeningToDexPcMoved() REQUIRES_SHARED(Locks::mutator_lock_) {
Sebastien Hertz9d6bf692015-04-10 12:12:33 +0200281 return IsListeningTo(instrumentation::Instrumentation::kDexPcMoved);
282 }
283
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700284 static bool IsListeningToMethodExit() REQUIRES_SHARED(Locks::mutator_lock_) {
Sebastien Hertz9d6bf692015-04-10 12:12:33 +0200285 return IsListeningTo(instrumentation::Instrumentation::kMethodExited);
286 }
287
288 static bool IsListeningTo(instrumentation::Instrumentation::InstrumentationEvent event)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700289 REQUIRES_SHARED(Locks::mutator_lock_) {
Sebastien Hertz9d6bf692015-04-10 12:12:33 +0200290 return (Dbg::GetInstrumentationEvents() & event) != 0;
291 }
292
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +0200293 DISALLOW_COPY_AND_ASSIGN(DebugInstrumentationListener);
Ian Rogers62d6c772013-02-27 08:32:07 -0800294} gDebugInstrumentationListener;
295
Elliott Hughes4ffd3132011-10-24 12:06:42 -0700296// JDWP is allowed unless the Zygote forbids it.
297static bool gJdwpAllowed = true;
298
Elliott Hughesc0f09332012-03-26 13:27:06 -0700299// Was there a -Xrunjdwp or -agentlib:jdwp= argument on the command line?
Elliott Hughes3bb81562011-10-21 18:52:59 -0700300static bool gJdwpConfigured = false;
301
Sebastien Hertzb3b173b2015-02-06 09:16:32 +0100302// JDWP options for debugging. Only valid if IsJdwpConfigured() is true.
303static JDWP::JdwpOptions gJdwpOptions;
304
Elliott Hughes3bb81562011-10-21 18:52:59 -0700305// Runtime JDWP state.
Ian Rogersc0542af2014-09-03 16:16:56 -0700306static JDWP::JdwpState* gJdwpState = nullptr;
Elliott Hughes3bb81562011-10-21 18:52:59 -0700307static bool gDebuggerConnected; // debugger or DDMS is connected.
Elliott Hughes3bb81562011-10-21 18:52:59 -0700308
Elliott Hughes47fce012011-10-25 18:37:19 -0700309static bool gDdmThreadNotification = false;
310
Elliott Hughes767a1472011-10-26 18:49:02 -0700311// DDMS GC-related settings.
312static Dbg::HpifWhen gDdmHpifWhen = Dbg::HPIF_WHEN_NEVER;
313static Dbg::HpsgWhen gDdmHpsgWhen = Dbg::HPSG_WHEN_NEVER;
314static Dbg::HpsgWhat gDdmHpsgWhat;
315static Dbg::HpsgWhen gDdmNhsgWhen = Dbg::HPSG_WHEN_NEVER;
316static Dbg::HpsgWhat gDdmNhsgWhat;
317
Daniel Mihalyieb076692014-08-22 17:33:31 +0200318bool Dbg::gDebuggerActive = false;
Sebastien Hertz4e5b2082015-03-24 19:03:40 +0100319bool Dbg::gDisposed = false;
Sebastien Hertz6995c602014-09-09 12:10:13 +0200320ObjectRegistry* Dbg::gRegistry = nullptr;
Alex Light21611932017-09-26 13:07:39 -0700321DebuggerActiveMethodInspectionCallback Dbg::gDebugActiveCallback;
Alex Light8c2b9292017-11-09 13:21:01 -0800322DebuggerDdmCallback Dbg::gDebugDdmCallback;
Alex Light40320712017-12-14 11:52:04 -0800323InternalDebuggerControlCallback Dbg::gDebuggerControlCallback;
Elliott Hughes475fc232011-10-25 15:00:35 -0700324
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100325// Deoptimization support.
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100326std::vector<DeoptimizationRequest> Dbg::deoptimization_requests_;
327size_t Dbg::full_deoptimization_event_count_ = 0;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100328
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200329// Instrumentation event reference counters.
330size_t Dbg::dex_pc_change_event_ref_count_ = 0;
331size_t Dbg::method_enter_event_ref_count_ = 0;
332size_t Dbg::method_exit_event_ref_count_ = 0;
333size_t Dbg::field_read_event_ref_count_ = 0;
334size_t Dbg::field_write_event_ref_count_ = 0;
335size_t Dbg::exception_catch_event_ref_count_ = 0;
336uint32_t Dbg::instrumentation_events_ = 0;
337
Andreas Gampe04bbb5b2017-01-19 17:49:03 +0000338Dbg::DbgThreadLifecycleCallback Dbg::thread_lifecycle_callback_;
Andreas Gampe0f01b582017-01-18 15:22:37 -0800339Dbg::DbgClassLoadCallback Dbg::class_load_callback_;
Andreas Gampe04bbb5b2017-01-19 17:49:03 +0000340
Alex Light8c2b9292017-11-09 13:21:01 -0800341void DebuggerDdmCallback::DdmPublishChunk(uint32_t type, const ArrayRef<const uint8_t>& data) {
Alex Light772099a2017-11-21 14:05:04 -0800342 if (gJdwpState == nullptr) {
343 VLOG(jdwp) << "Debugger thread not active, ignoring DDM send: " << type;
344 } else {
345 iovec vec[1];
346 vec[0].iov_base = reinterpret_cast<void*>(const_cast<uint8_t*>(data.data()));
347 vec[0].iov_len = data.size();
348 gJdwpState->DdmSendChunkV(type, vec, 1);
349 }
Alex Light8c2b9292017-11-09 13:21:01 -0800350}
351
Alex Light21611932017-09-26 13:07:39 -0700352bool DebuggerActiveMethodInspectionCallback::IsMethodBeingInspected(ArtMethod* m ATTRIBUTE_UNUSED) {
353 return Dbg::IsDebuggerActive();
354}
355
Alex Light0fa17862017-10-24 13:43:05 -0700356bool DebuggerActiveMethodInspectionCallback::IsMethodSafeToJit(ArtMethod* m) {
357 return !Dbg::MethodHasAnyBreakpoints(m);
358}
359
Alex Lightf2858632018-04-02 11:28:50 -0700360bool DebuggerActiveMethodInspectionCallback::MethodNeedsDebugVersion(
361 ArtMethod* m ATTRIBUTE_UNUSED) {
362 return Dbg::IsDebuggerActive();
363}
364
Alex Light40320712017-12-14 11:52:04 -0800365void InternalDebuggerControlCallback::StartDebugger() {
366 // Release the mutator lock.
367 ScopedThreadStateChange stsc(art::Thread::Current(), kNative);
368 Dbg::StartJdwp();
369}
370
371void InternalDebuggerControlCallback::StopDebugger() {
372 Dbg::StopJdwp();
373}
374
375bool InternalDebuggerControlCallback::IsDebuggerConfigured() {
376 return Dbg::IsJdwpConfigured();
377}
378
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100379// Breakpoints.
jeffhao09bfc6a2012-12-11 18:11:43 -0800380static std::vector<Breakpoint> gBreakpoints GUARDED_BY(Locks::breakpoint_lock_);
Elliott Hughes86964332012-02-15 19:37:42 -0800381
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700382void DebugInvokeReq::VisitRoots(RootVisitor* visitor, const RootInfo& root_info) {
383 receiver.VisitRootIfNonNull(visitor, root_info); // null for static method call.
384 klass.VisitRoot(visitor, root_info);
Mathieu Chartier3b05e9b2014-03-25 09:29:43 -0700385}
386
Sebastien Hertz597c4f02015-01-26 17:37:14 +0100387void SingleStepControl::AddDexPc(uint32_t dex_pc) {
388 dex_pcs_.insert(dex_pc);
Sebastien Hertzbb43b432014-04-14 11:59:08 +0200389}
390
Sebastien Hertz597c4f02015-01-26 17:37:14 +0100391bool SingleStepControl::ContainsDexPc(uint32_t dex_pc) const {
392 return dex_pcs_.find(dex_pc) == dex_pcs_.end();
Sebastien Hertzbb43b432014-04-14 11:59:08 +0200393}
394
Alex Light6c8467f2015-11-20 15:03:26 -0800395static bool IsBreakpoint(ArtMethod* m, uint32_t dex_pc)
Mathieu Chartier90443472015-07-16 20:32:27 -0700396 REQUIRES(!Locks::breakpoint_lock_)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700397 REQUIRES_SHARED(Locks::mutator_lock_) {
Sebastien Hertzed2be172014-08-19 15:33:43 +0200398 ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100399 for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) {
Alex Light6c8467f2015-11-20 15:03:26 -0800400 if (gBreakpoints[i].DexPc() == dex_pc && gBreakpoints[i].IsInMethod(m)) {
Elliott Hughes86964332012-02-15 19:37:42 -0800401 VLOG(jdwp) << "Hit breakpoint #" << i << ": " << gBreakpoints[i];
402 return true;
403 }
404 }
405 return false;
406}
407
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100408static bool IsSuspendedForDebugger(ScopedObjectAccessUnchecked& soa, Thread* thread)
Mathieu Chartier90443472015-07-16 20:32:27 -0700409 REQUIRES(!Locks::thread_suspend_count_lock_) {
Elliott Hughes9e0c1752013-01-09 14:02:58 -0800410 MutexLock mu(soa.Self(), *Locks::thread_suspend_count_lock_);
411 // A thread may be suspended for GC; in this code, we really want to know whether
412 // there's a debugger suspension active.
413 return thread->IsSuspended() && thread->GetDebugSuspendCount() > 0;
414}
415
Ian Rogersc0542af2014-09-03 16:16:56 -0700416static mirror::Array* DecodeNonNullArray(JDWP::RefTypeId id, JDWP::JdwpError* error)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700417 REQUIRES_SHARED(Locks::mutator_lock_) {
Sebastien Hertz6995c602014-09-09 12:10:13 +0200418 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(id, error);
Ian Rogersc0542af2014-09-03 16:16:56 -0700419 if (o == nullptr) {
420 *error = JDWP::ERR_INVALID_OBJECT;
421 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800422 }
423 if (!o->IsArrayInstance()) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700424 *error = JDWP::ERR_INVALID_ARRAY;
425 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800426 }
Ian Rogersc0542af2014-09-03 16:16:56 -0700427 *error = JDWP::ERR_NONE;
Elliott Hughes436e3722012-02-17 20:01:47 -0800428 return o->AsArray();
429}
430
Ian Rogersc0542af2014-09-03 16:16:56 -0700431static mirror::Class* DecodeClass(JDWP::RefTypeId id, JDWP::JdwpError* error)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700432 REQUIRES_SHARED(Locks::mutator_lock_) {
Sebastien Hertz6995c602014-09-09 12:10:13 +0200433 mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(id, error);
Ian Rogersc0542af2014-09-03 16:16:56 -0700434 if (o == nullptr) {
435 *error = JDWP::ERR_INVALID_OBJECT;
436 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800437 }
438 if (!o->IsClass()) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700439 *error = JDWP::ERR_INVALID_CLASS;
440 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800441 }
Ian Rogersc0542af2014-09-03 16:16:56 -0700442 *error = JDWP::ERR_NONE;
Elliott Hughes436e3722012-02-17 20:01:47 -0800443 return o->AsClass();
444}
445
Ian Rogersc0542af2014-09-03 16:16:56 -0700446static Thread* DecodeThread(ScopedObjectAccessUnchecked& soa, JDWP::ObjectId thread_id,
447 JDWP::JdwpError* error)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700448 REQUIRES_SHARED(Locks::mutator_lock_)
Mathieu Chartier90443472015-07-16 20:32:27 -0700449 REQUIRES(!Locks::thread_list_lock_, !Locks::thread_suspend_count_lock_) {
Sebastien Hertz6995c602014-09-09 12:10:13 +0200450 mirror::Object* thread_peer = Dbg::GetObjectRegistry()->Get<mirror::Object*>(thread_id, error);
Ian Rogersc0542af2014-09-03 16:16:56 -0700451 if (thread_peer == nullptr) {
Elliott Hughes221229c2013-01-08 18:17:50 -0800452 // This isn't even an object.
Ian Rogersc0542af2014-09-03 16:16:56 -0700453 *error = JDWP::ERR_INVALID_OBJECT;
454 return nullptr;
Elliott Hughes436e3722012-02-17 20:01:47 -0800455 }
Elliott Hughes221229c2013-01-08 18:17:50 -0800456
Mathieu Chartier0795f232016-09-27 18:43:30 -0700457 ObjPtr<mirror::Class> java_lang_Thread =
458 soa.Decode<mirror::Class>(WellKnownClasses::java_lang_Thread);
Elliott Hughes221229c2013-01-08 18:17:50 -0800459 if (!java_lang_Thread->IsAssignableFrom(thread_peer->GetClass())) {
460 // This isn't a thread.
Ian Rogersc0542af2014-09-03 16:16:56 -0700461 *error = JDWP::ERR_INVALID_THREAD;
462 return nullptr;
Elliott Hughes221229c2013-01-08 18:17:50 -0800463 }
464
Sebastien Hertz69206392015-04-07 15:54:25 +0200465 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
Ian Rogersc0542af2014-09-03 16:16:56 -0700466 Thread* thread = Thread::FromManagedThread(soa, thread_peer);
467 // If thread is null then this a java.lang.Thread without a Thread*. Must be a un-started or a
468 // zombie.
469 *error = (thread == nullptr) ? JDWP::ERR_THREAD_NOT_ALIVE : JDWP::ERR_NONE;
470 return thread;
Elliott Hughes436e3722012-02-17 20:01:47 -0800471}
472
Elliott Hughes24437992011-11-30 14:49:33 -0800473static JDWP::JdwpTag BasicTagFromDescriptor(const char* descriptor) {
474 // JDWP deliberately uses the descriptor characters' ASCII values for its enum.
475 // Note that by "basic" we mean that we don't get more specific than JT_OBJECT.
476 return static_cast<JDWP::JdwpTag>(descriptor[0]);
477}
478
Ian Rogers1ff3c982014-08-12 02:30:58 -0700479static JDWP::JdwpTag BasicTagFromClass(mirror::Class* klass)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700480 REQUIRES_SHARED(Locks::mutator_lock_) {
Ian Rogers1ff3c982014-08-12 02:30:58 -0700481 std::string temp;
482 const char* descriptor = klass->GetDescriptor(&temp);
483 return BasicTagFromDescriptor(descriptor);
484}
485
Ian Rogers98379392014-02-24 16:53:16 -0800486static JDWP::JdwpTag TagFromClass(const ScopedObjectAccessUnchecked& soa, mirror::Class* c)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700487 REQUIRES_SHARED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700488 CHECK(c != nullptr);
Elliott Hughes24437992011-11-30 14:49:33 -0800489 if (c->IsArrayClass()) {
490 return JDWP::JT_ARRAY;
491 }
Elliott Hughes24437992011-11-30 14:49:33 -0800492 if (c->IsStringClass()) {
493 return JDWP::JT_STRING;
Elliott Hughes24437992011-11-30 14:49:33 -0800494 }
Ian Rogers98379392014-02-24 16:53:16 -0800495 if (c->IsClassClass()) {
496 return JDWP::JT_CLASS_OBJECT;
497 }
498 {
Mathieu Chartier0795f232016-09-27 18:43:30 -0700499 ObjPtr<mirror::Class> thread_class =
500 soa.Decode<mirror::Class>(WellKnownClasses::java_lang_Thread);
Ian Rogers98379392014-02-24 16:53:16 -0800501 if (thread_class->IsAssignableFrom(c)) {
502 return JDWP::JT_THREAD;
503 }
504 }
505 {
Mathieu Chartier0795f232016-09-27 18:43:30 -0700506 ObjPtr<mirror::Class> thread_group_class =
507 soa.Decode<mirror::Class>(WellKnownClasses::java_lang_ThreadGroup);
Ian Rogers98379392014-02-24 16:53:16 -0800508 if (thread_group_class->IsAssignableFrom(c)) {
509 return JDWP::JT_THREAD_GROUP;
510 }
511 }
512 {
Mathieu Chartier0795f232016-09-27 18:43:30 -0700513 ObjPtr<mirror::Class> class_loader_class =
514 soa.Decode<mirror::Class>(WellKnownClasses::java_lang_ClassLoader);
Ian Rogers98379392014-02-24 16:53:16 -0800515 if (class_loader_class->IsAssignableFrom(c)) {
516 return JDWP::JT_CLASS_LOADER;
517 }
518 }
519 return JDWP::JT_OBJECT;
Elliott Hughes24437992011-11-30 14:49:33 -0800520}
521
522/*
523 * Objects declared to hold Object might actually hold a more specific
524 * type. The debugger may take a special interest in these (e.g. it
525 * wants to display the contents of Strings), so we want to return an
526 * appropriate tag.
527 *
528 * Null objects are tagged JT_OBJECT.
529 */
Sebastien Hertz6995c602014-09-09 12:10:13 +0200530JDWP::JdwpTag Dbg::TagFromObject(const ScopedObjectAccessUnchecked& soa, mirror::Object* o) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700531 return (o == nullptr) ? JDWP::JT_OBJECT : TagFromClass(soa, o->GetClass());
Elliott Hughes24437992011-11-30 14:49:33 -0800532}
533
534static bool IsPrimitiveTag(JDWP::JdwpTag tag) {
535 switch (tag) {
536 case JDWP::JT_BOOLEAN:
537 case JDWP::JT_BYTE:
538 case JDWP::JT_CHAR:
539 case JDWP::JT_FLOAT:
540 case JDWP::JT_DOUBLE:
541 case JDWP::JT_INT:
542 case JDWP::JT_LONG:
543 case JDWP::JT_SHORT:
544 case JDWP::JT_VOID:
545 return true;
546 default:
547 return false;
548 }
549}
550
Sebastien Hertzb3b173b2015-02-06 09:16:32 +0100551void Dbg::StartJdwp() {
Elliott Hughesc0f09332012-03-26 13:27:06 -0700552 if (!gJdwpAllowed || !IsJdwpConfigured()) {
Elliott Hughes376a7a02011-10-24 18:35:55 -0700553 // No JDWP for you!
554 return;
555 }
556
Ian Rogers719d1a32014-03-06 12:13:39 -0800557 CHECK(gRegistry == nullptr);
Elliott Hughes475fc232011-10-25 15:00:35 -0700558 gRegistry = new ObjectRegistry;
559
Alex Light8c2b9292017-11-09 13:21:01 -0800560 {
561 // Setup the Ddm listener
562 ScopedObjectAccess soa(Thread::Current());
563 Runtime::Current()->GetRuntimeCallbacks()->AddDdmCallback(&gDebugDdmCallback);
564 }
565
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700566 // Init JDWP if the debugger is enabled. This may connect out to a
567 // debugger, passively listen for a debugger, or block waiting for a
568 // debugger.
Sebastien Hertzb3b173b2015-02-06 09:16:32 +0100569 gJdwpState = JDWP::JdwpState::Create(&gJdwpOptions);
Ian Rogersc0542af2014-09-03 16:16:56 -0700570 if (gJdwpState == nullptr) {
Elliott Hughesf8a2df72011-12-01 12:19:54 -0800571 // We probably failed because some other process has the port already, which means that
572 // if we don't abort the user is likely to think they're talking to us when they're actually
573 // talking to that other process.
Elliott Hughes3d30d9b2011-12-07 17:35:48 -0800574 LOG(FATAL) << "Debugger thread failed to initialize";
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700575 }
576
577 // If a debugger has already attached, send the "welcome" message.
578 // This may cause us to suspend all threads.
Elliott Hughes376a7a02011-10-24 18:35:55 -0700579 if (gJdwpState->IsActive()) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700580 ScopedObjectAccess soa(Thread::Current());
Sebastien Hertz7d955652014-10-22 10:57:10 +0200581 gJdwpState->PostVMStart();
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700582 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700583}
584
Elliott Hughesd1cc8362011-10-24 16:58:50 -0700585void Dbg::StopJdwp() {
Sebastien Hertzc6345ef2014-08-18 19:26:39 +0200586 // Post VM_DEATH event before the JDWP connection is closed (either by the JDWP thread or the
587 // destruction of gJdwpState).
588 if (gJdwpState != nullptr && gJdwpState->IsActive()) {
589 gJdwpState->PostVMDeath();
590 }
Sebastien Hertz0376e6b2014-02-06 18:12:59 +0100591 // Prevent the JDWP thread from processing JDWP incoming packets after we close the connection.
Sebastien Hertz4e5b2082015-03-24 19:03:40 +0100592 Dispose();
Elliott Hughes376a7a02011-10-24 18:35:55 -0700593 delete gJdwpState;
Ian Rogers719d1a32014-03-06 12:13:39 -0800594 gJdwpState = nullptr;
Elliott Hughes475fc232011-10-25 15:00:35 -0700595 delete gRegistry;
Ian Rogers719d1a32014-03-06 12:13:39 -0800596 gRegistry = nullptr;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700597}
598
Elliott Hughes767a1472011-10-26 18:49:02 -0700599void Dbg::GcDidFinish() {
600 if (gDdmHpifWhen != HPIF_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700601 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700602 VLOG(jdwp) << "Sending heap info to DDM";
Elliott Hughes7162ad92011-10-27 14:08:42 -0700603 DdmSendHeapInfo(gDdmHpifWhen);
Elliott Hughes767a1472011-10-26 18:49:02 -0700604 }
605 if (gDdmHpsgWhen != HPSG_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700606 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700607 VLOG(jdwp) << "Dumping heap to DDM";
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700608 DdmSendHeapSegments(false);
Elliott Hughes767a1472011-10-26 18:49:02 -0700609 }
610 if (gDdmNhsgWhen != HPSG_WHEN_NEVER) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700611 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700612 VLOG(jdwp) << "Dumping native heap to DDM";
Elliott Hughes6a5bd492011-10-28 14:33:57 -0700613 DdmSendHeapSegments(true);
Elliott Hughes767a1472011-10-26 18:49:02 -0700614 }
615}
616
Elliott Hughes4ffd3132011-10-24 12:06:42 -0700617void Dbg::SetJdwpAllowed(bool allowed) {
618 gJdwpAllowed = allowed;
619}
620
Leonard Mosescueb842212016-10-06 17:26:36 -0700621bool Dbg::IsJdwpAllowed() {
622 return gJdwpAllowed;
623}
624
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700625DebugInvokeReq* Dbg::GetInvokeReq() {
Elliott Hughes475fc232011-10-25 15:00:35 -0700626 return Thread::Current()->GetInvokeReq();
627}
628
629Thread* Dbg::GetDebugThread() {
Ian Rogersc0542af2014-09-03 16:16:56 -0700630 return (gJdwpState != nullptr) ? gJdwpState->GetDebugThread() : nullptr;
Elliott Hughes475fc232011-10-25 15:00:35 -0700631}
632
633void Dbg::ClearWaitForEventThread() {
Sebastien Hertz2bf93f42015-01-09 18:44:05 +0100634 gJdwpState->ReleaseJdwpTokenForEvent();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700635}
636
637void Dbg::Connected() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700638 CHECK(!gDebuggerConnected);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800639 VLOG(jdwp) << "JDWP has attached";
Elliott Hughes3bb81562011-10-21 18:52:59 -0700640 gDebuggerConnected = true;
Elliott Hughes86964332012-02-15 19:37:42 -0800641 gDisposed = false;
642}
643
Sebastien Hertzf3928792014-11-17 19:00:37 +0100644bool Dbg::RequiresDeoptimization() {
645 // We don't need deoptimization if everything runs with interpreter after
646 // enabling -Xint mode.
647 return !Runtime::Current()->GetInstrumentation()->IsForcedInterpretOnly();
648}
649
Elliott Hughesa2155262011-11-16 16:26:58 -0800650void Dbg::GoActive() {
651 // Enable all debugging features, including scans for breakpoints.
652 // This is a no-op if we're already active.
653 // Only called from the JDWP handler thread.
Daniel Mihalyieb076692014-08-22 17:33:31 +0200654 if (IsDebuggerActive()) {
Elliott Hughesa2155262011-11-16 16:26:58 -0800655 return;
656 }
657
Mathieu Chartieraa516822015-10-02 15:53:37 -0700658 Thread* const self = Thread::Current();
Elliott Hughesc0f09332012-03-26 13:27:06 -0700659 {
660 // TODO: dalvik only warned if there were breakpoints left over. clear in Dbg::Disconnected?
Mathieu Chartieraa516822015-10-02 15:53:37 -0700661 ReaderMutexLock mu(self, *Locks::breakpoint_lock_);
Elliott Hughesc0f09332012-03-26 13:27:06 -0700662 CHECK_EQ(gBreakpoints.size(), 0U);
663 }
Elliott Hughesa2155262011-11-16 16:26:58 -0800664
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100665 {
Mathieu Chartieraa516822015-10-02 15:53:37 -0700666 MutexLock mu(self, *Locks::deoptimization_lock_);
Sebastien Hertz4d25df32014-03-21 17:44:46 +0100667 CHECK_EQ(deoptimization_requests_.size(), 0U);
668 CHECK_EQ(full_deoptimization_event_count_, 0U);
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200669 CHECK_EQ(dex_pc_change_event_ref_count_, 0U);
670 CHECK_EQ(method_enter_event_ref_count_, 0U);
671 CHECK_EQ(method_exit_event_ref_count_, 0U);
672 CHECK_EQ(field_read_event_ref_count_, 0U);
673 CHECK_EQ(field_write_event_ref_count_, 0U);
674 CHECK_EQ(exception_catch_event_ref_count_, 0U);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100675 }
676
Ian Rogers62d6c772013-02-27 08:32:07 -0800677 Runtime* runtime = Runtime::Current();
Nicolas Geoffray433b79a2017-01-30 20:54:45 +0000678 // Best effort deoptimization if the runtime is non-Java debuggable. This happens when
679 // ro.debuggable is set, but the application is not debuggable, or when a standalone
680 // dalvikvm invocation is not passed the debuggable option (-Xcompiler-option --debuggable).
681 //
682 // The performance cost of this is non-negligible during native-debugging due to the
David Srbeckyf4480162016-03-16 00:06:24 +0000683 // forced JIT, so we keep the AOT code in that case in exchange for limited native debugging.
Nicolas Geoffray433b79a2017-01-30 20:54:45 +0000684 if (!runtime->IsJavaDebuggable() &&
685 !runtime->GetInstrumentation()->IsForcedInterpretOnly() &&
686 !runtime->IsNativeDebuggable()) {
687 runtime->DeoptimizeBootImage();
Mingyao Yang6ea1a0e2016-01-29 12:12:49 -0800688 }
689
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700690 ScopedSuspendAll ssa(__FUNCTION__);
Sebastien Hertzf3928792014-11-17 19:00:37 +0100691 if (RequiresDeoptimization()) {
692 runtime->GetInstrumentation()->EnableDeoptimization();
693 }
Sebastien Hertz42cd43f2014-05-13 14:15:41 +0200694 instrumentation_events_ = 0;
David Srbecky28f6cff2018-10-16 15:07:28 +0100695 Runtime::DoAndMaybeSwitchInterpreter([=](){ gDebuggerActive = true; });
Alex Light21611932017-09-26 13:07:39 -0700696 Runtime::Current()->GetRuntimeCallbacks()->AddMethodInspectionCallback(&gDebugActiveCallback);
Ian Rogers62d6c772013-02-27 08:32:07 -0800697 LOG(INFO) << "Debugger is active";
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700698}
699
700void Dbg::Disconnected() {
Elliott Hughes234ab152011-10-26 14:02:26 -0700701 CHECK(gDebuggerConnected);
702
Elliott Hughesc0f09332012-03-26 13:27:06 -0700703 LOG(INFO) << "Debugger is no longer active";
Elliott Hughes234ab152011-10-26 14:02:26 -0700704
Hiroshi Yamauchi98810e32016-05-24 14:55:40 -0700705 // Suspend all threads and exclusively acquire the mutator lock. Remove the debugger as a listener
Ian Rogers62d6c772013-02-27 08:32:07 -0800706 // and clear the object registry.
707 Runtime* runtime = Runtime::Current();
Ian Rogers62d6c772013-02-27 08:32:07 -0800708 Thread* self = Thread::Current();
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700709 {
Mathieu Chartieraa516822015-10-02 15:53:37 -0700710 // Required for DisableDeoptimization.
711 gc::ScopedGCCriticalSection gcs(self,
712 gc::kGcCauseInstrumentation,
713 gc::kCollectorTypeInstrumentation);
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700714 ScopedSuspendAll ssa(__FUNCTION__);
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700715 // Debugger may not be active at this point.
716 if (IsDebuggerActive()) {
717 {
718 // Since we're going to disable deoptimization, we clear the deoptimization requests queue.
719 // This prevents us from having any pending deoptimization request when the debugger attaches
720 // to us again while no event has been requested yet.
Mathieu Chartiera6b1ead2015-10-06 10:32:38 -0700721 MutexLock mu(self, *Locks::deoptimization_lock_);
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700722 deoptimization_requests_.clear();
723 full_deoptimization_event_count_ = 0U;
724 }
725 if (instrumentation_events_ != 0) {
726 runtime->GetInstrumentation()->RemoveListener(&gDebugInstrumentationListener,
727 instrumentation_events_);
728 instrumentation_events_ = 0;
729 }
730 if (RequiresDeoptimization()) {
731 runtime->GetInstrumentation()->DisableDeoptimization(kDbgInstrumentationKey);
732 }
David Srbecky28f6cff2018-10-16 15:07:28 +0100733 Runtime::DoAndMaybeSwitchInterpreter([=](){ gDebuggerActive = false; });
Alex Light21611932017-09-26 13:07:39 -0700734 Runtime::Current()->GetRuntimeCallbacks()->RemoveMethodInspectionCallback(
735 &gDebugActiveCallback);
Sebastien Hertzaaea7342014-02-25 15:10:04 +0100736 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +0100737 }
Sebastien Hertz55f65342015-01-13 22:48:34 +0100738
739 {
740 ScopedObjectAccess soa(self);
741 gRegistry->Clear();
742 }
743
744 gDebuggerConnected = false;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700745}
746
Sebastien Hertzb3b173b2015-02-06 09:16:32 +0100747void Dbg::ConfigureJdwp(const JDWP::JdwpOptions& jdwp_options) {
748 CHECK_NE(jdwp_options.transport, JDWP::kJdwpTransportUnknown);
749 gJdwpOptions = jdwp_options;
750 gJdwpConfigured = true;
Alex Light40320712017-12-14 11:52:04 -0800751 Runtime::Current()->GetRuntimeCallbacks()->AddDebuggerControlCallback(&gDebuggerControlCallback);
Sebastien Hertzb3b173b2015-02-06 09:16:32 +0100752}
753
Elliott Hughesc0f09332012-03-26 13:27:06 -0700754bool Dbg::IsJdwpConfigured() {
Elliott Hughes3bb81562011-10-21 18:52:59 -0700755 return gJdwpConfigured;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700756}
757
758int64_t Dbg::LastDebuggerActivity() {
Elliott Hughesca951522011-12-05 12:01:32 -0800759 return gJdwpState->LastDebuggerActivity();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700760}
761
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700762void Dbg::UndoDebuggerSuspensions() {
Elliott Hughes234ab152011-10-26 14:02:26 -0700763 Runtime::Current()->GetThreadList()->UndoDebuggerSuspensions();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700764}
765
Elliott Hughes88d63092013-01-09 09:55:54 -0800766std::string Dbg::GetClassName(JDWP::RefTypeId class_id) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700767 JDWP::JdwpError error;
768 mirror::Object* o = gRegistry->Get<mirror::Object*>(class_id, &error);
769 if (o == nullptr) {
770 if (error == JDWP::ERR_NONE) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700771 return "null";
Ian Rogersc0542af2014-09-03 16:16:56 -0700772 } else {
773 return StringPrintf("invalid object %p", reinterpret_cast<void*>(class_id));
774 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800775 }
776 if (!o->IsClass()) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700777 return StringPrintf("non-class %p", o); // This is only used for debugging output anyway.
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800778 }
Sebastien Hertz6995c602014-09-09 12:10:13 +0200779 return GetClassName(o->AsClass());
780}
781
782std::string Dbg::GetClassName(mirror::Class* klass) {
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +0200783 if (klass == nullptr) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700784 return "null";
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +0200785 }
Ian Rogers1ff3c982014-08-12 02:30:58 -0700786 std::string temp;
Sebastien Hertz6995c602014-09-09 12:10:13 +0200787 return DescriptorToName(klass->GetDescriptor(&temp));
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700788}
789
Ian Rogersc0542af2014-09-03 16:16:56 -0700790JDWP::JdwpError Dbg::GetClassObject(JDWP::RefTypeId id, JDWP::ObjectId* class_object_id) {
Elliott Hughes436e3722012-02-17 20:01:47 -0800791 JDWP::JdwpError status;
Ian Rogersc0542af2014-09-03 16:16:56 -0700792 mirror::Class* c = DecodeClass(id, &status);
793 if (c == nullptr) {
794 *class_object_id = 0;
Elliott Hughes436e3722012-02-17 20:01:47 -0800795 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800796 }
Ian Rogersc0542af2014-09-03 16:16:56 -0700797 *class_object_id = gRegistry->Add(c);
Elliott Hughes436e3722012-02-17 20:01:47 -0800798 return JDWP::ERR_NONE;
Elliott Hughes86964332012-02-15 19:37:42 -0800799}
800
Ian Rogersc0542af2014-09-03 16:16:56 -0700801JDWP::JdwpError Dbg::GetSuperclass(JDWP::RefTypeId id, JDWP::RefTypeId* superclass_id) {
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800802 JDWP::JdwpError status;
Ian Rogersc0542af2014-09-03 16:16:56 -0700803 mirror::Class* c = DecodeClass(id, &status);
804 if (c == nullptr) {
805 *superclass_id = 0;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800806 return status;
807 }
808 if (c->IsInterface()) {
809 // http://code.google.com/p/android/issues/detail?id=20856
Ian Rogersc0542af2014-09-03 16:16:56 -0700810 *superclass_id = 0;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800811 } else {
Ian Rogersc0542af2014-09-03 16:16:56 -0700812 *superclass_id = gRegistry->Add(c->GetSuperClass());
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800813 }
814 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700815}
816
Elliott Hughes436e3722012-02-17 20:01:47 -0800817JDWP::JdwpError Dbg::GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700818 JDWP::JdwpError error;
Andreas Gampe7929a482015-12-30 19:33:49 -0800819 mirror::Class* c = DecodeClass(id, &error);
820 if (c == nullptr) {
821 return error;
Elliott Hughes436e3722012-02-17 20:01:47 -0800822 }
Andreas Gampe7929a482015-12-30 19:33:49 -0800823 expandBufAddObjectId(pReply, gRegistry->Add(c->GetClassLoader()));
Elliott Hughes436e3722012-02-17 20:01:47 -0800824 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700825}
826
Elliott Hughes436e3722012-02-17 20:01:47 -0800827JDWP::JdwpError Dbg::GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700828 JDWP::JdwpError error;
829 mirror::Class* c = DecodeClass(id, &error);
830 if (c == nullptr) {
831 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800832 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800833
834 uint32_t access_flags = c->GetAccessFlags() & kAccJavaFlagsMask;
835
Yevgeny Roubande34eea2014-02-15 01:06:03 +0700836 // Set ACC_SUPER. Dex files don't contain this flag but only classes are supposed to have it set,
837 // not interfaces.
Elliott Hughes436e3722012-02-17 20:01:47 -0800838 // Class.getModifiers doesn't return it, but JDWP does, so we set it here.
Yevgeny Roubande34eea2014-02-15 01:06:03 +0700839 if ((access_flags & kAccInterface) == 0) {
840 access_flags |= kAccSuper;
841 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800842
843 expandBufAdd4BE(pReply, access_flags);
844
845 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700846}
847
Ian Rogersc0542af2014-09-03 16:16:56 -0700848JDWP::JdwpError Dbg::GetMonitorInfo(JDWP::ObjectId object_id, JDWP::ExpandBuf* reply) {
849 JDWP::JdwpError error;
850 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
851 if (o == nullptr) {
Elliott Hughesf327e072013-01-09 16:01:26 -0800852 return JDWP::ERR_INVALID_OBJECT;
853 }
854
855 // Ensure all threads are suspended while we read objects' lock words.
856 Thread* self = Thread::Current();
Sebastien Hertz54263242014-03-19 18:16:50 +0100857 CHECK_EQ(self->GetState(), kRunnable);
Elliott Hughesf327e072013-01-09 16:01:26 -0800858
Mathieu Chartierf1d666e2015-09-03 16:13:34 -0700859 MonitorInfo monitor_info;
860 {
861 ScopedThreadSuspension sts(self, kSuspended);
Mathieu Chartier4f55e222015-09-04 13:26:21 -0700862 ScopedSuspendAll ssa(__FUNCTION__);
Mathieu Chartierf1d666e2015-09-03 16:13:34 -0700863 monitor_info = MonitorInfo(o);
Mathieu Chartierf1d666e2015-09-03 16:13:34 -0700864 }
Ian Rogersc0542af2014-09-03 16:16:56 -0700865 if (monitor_info.owner_ != nullptr) {
Nicolas Geoffraycafa0812017-02-15 18:27:34 +0000866 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.owner_->GetPeerFromOtherThread()));
Elliott Hughesf327e072013-01-09 16:01:26 -0800867 } else {
Ian Rogersc0542af2014-09-03 16:16:56 -0700868 expandBufAddObjectId(reply, gRegistry->Add(nullptr));
Elliott Hughesf327e072013-01-09 16:01:26 -0800869 }
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700870 expandBufAdd4BE(reply, monitor_info.entry_count_);
871 expandBufAdd4BE(reply, monitor_info.waiters_.size());
872 for (size_t i = 0; i < monitor_info.waiters_.size(); ++i) {
Nicolas Geoffraycafa0812017-02-15 18:27:34 +0000873 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.waiters_[i]->GetPeerFromOtherThread()));
Elliott Hughesf327e072013-01-09 16:01:26 -0800874 }
875 return JDWP::ERR_NONE;
876}
877
Elliott Hughes734b8c62013-01-11 15:32:45 -0800878JDWP::JdwpError Dbg::GetOwnedMonitors(JDWP::ObjectId thread_id,
Ian Rogersc0542af2014-09-03 16:16:56 -0700879 std::vector<JDWP::ObjectId>* monitors,
880 std::vector<uint32_t>* stack_depths) {
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800881 struct OwnedMonitorVisitor : public StackVisitor {
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700882 OwnedMonitorVisitor(Thread* thread, Context* context,
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700883 std::vector<JDWP::ObjectId>* monitor_vector,
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700884 std::vector<uint32_t>* stack_depth_vector)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700885 REQUIRES_SHARED(Locks::mutator_lock_)
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +0100886 : StackVisitor(thread, context, StackVisitor::StackWalkKind::kIncludeInlinedFrames),
887 current_stack_depth(0),
888 monitors(monitor_vector),
889 stack_depths(stack_depth_vector) {}
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800890
891 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
892 // annotalysis.
Andreas Gampefa6a1b02018-09-07 08:11:55 -0700893 bool VisitFrame() override NO_THREAD_SAFETY_ANALYSIS {
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800894 if (!GetMethod()->IsRuntimeMethod()) {
895 Monitor::VisitLocks(this, AppendOwnedMonitors, this);
Elliott Hughes734b8c62013-01-11 15:32:45 -0800896 ++current_stack_depth;
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800897 }
898 return true;
899 }
900
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700901 static void AppendOwnedMonitors(mirror::Object* owned_monitor, void* arg)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700902 REQUIRES_SHARED(Locks::mutator_lock_) {
Ian Rogers7a22fa62013-01-23 12:16:16 -0800903 OwnedMonitorVisitor* visitor = reinterpret_cast<OwnedMonitorVisitor*>(arg);
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700904 visitor->monitors->push_back(gRegistry->Add(owned_monitor));
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700905 visitor->stack_depths->push_back(visitor->current_stack_depth);
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800906 }
907
Elliott Hughes734b8c62013-01-11 15:32:45 -0800908 size_t current_stack_depth;
Ian Rogersc0542af2014-09-03 16:16:56 -0700909 std::vector<JDWP::ObjectId>* const monitors;
910 std::vector<uint32_t>* const stack_depths;
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800911 };
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800912
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700913 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz69206392015-04-07 15:54:25 +0200914 JDWP::JdwpError error;
915 Thread* thread = DecodeThread(soa, thread_id, &error);
916 if (thread == nullptr) {
917 return error;
918 }
919 if (!IsSuspendedForDebugger(soa, thread)) {
920 return JDWP::ERR_THREAD_NOT_SUSPENDED;
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700921 }
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700922 std::unique_ptr<Context> context(Context::Create());
Ian Rogersc0542af2014-09-03 16:16:56 -0700923 OwnedMonitorVisitor visitor(thread, context.get(), monitors, stack_depths);
Hiroshi Yamauchicc8c5c52014-06-13 15:08:05 -0700924 visitor.WalkStack();
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800925 return JDWP::ERR_NONE;
926}
927
Sebastien Hertz52d131d2014-03-13 16:17:40 +0100928JDWP::JdwpError Dbg::GetContendedMonitor(JDWP::ObjectId thread_id,
Ian Rogersc0542af2014-09-03 16:16:56 -0700929 JDWP::ObjectId* contended_monitor) {
Elliott Hughesf9501702013-01-11 11:22:27 -0800930 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -0700931 *contended_monitor = 0;
Sebastien Hertz69206392015-04-07 15:54:25 +0200932 JDWP::JdwpError error;
933 Thread* thread = DecodeThread(soa, thread_id, &error);
934 if (thread == nullptr) {
935 return error;
Elliott Hughesf9501702013-01-11 11:22:27 -0800936 }
Sebastien Hertz69206392015-04-07 15:54:25 +0200937 if (!IsSuspendedForDebugger(soa, thread)) {
938 return JDWP::ERR_THREAD_NOT_SUSPENDED;
939 }
940 mirror::Object* contended_monitor_obj = Monitor::GetContendedMonitor(thread);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -0700941 // Add() requires the thread_list_lock_ not held to avoid the lock
942 // level violation.
Ian Rogersc0542af2014-09-03 16:16:56 -0700943 *contended_monitor = gRegistry->Add(contended_monitor_obj);
Elliott Hughesf9501702013-01-11 11:22:27 -0800944 return JDWP::ERR_NONE;
945}
946
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800947JDWP::JdwpError Dbg::GetInstanceCounts(const std::vector<JDWP::RefTypeId>& class_ids,
Ian Rogersc0542af2014-09-03 16:16:56 -0700948 std::vector<uint64_t>* counts) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800949 gc::Heap* heap = Runtime::Current()->GetHeap();
Andreas Gampe98ea9d92018-10-19 14:06:15 -0700950 heap->CollectGarbage(/* clear_soft_references= */ false, gc::GcCause::kGcCauseDebugger);
Mathieu Chartiere8a3c572016-10-11 16:52:17 -0700951 VariableSizedHandleScope hs(Thread::Current());
Mathieu Chartier9d156d52016-10-06 17:44:26 -0700952 std::vector<Handle<mirror::Class>> classes;
Ian Rogersc0542af2014-09-03 16:16:56 -0700953 counts->clear();
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800954 for (size_t i = 0; i < class_ids.size(); ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700955 JDWP::JdwpError error;
Mathieu Chartier9d156d52016-10-06 17:44:26 -0700956 ObjPtr<mirror::Class> c = DecodeClass(class_ids[i], &error);
Ian Rogersc0542af2014-09-03 16:16:56 -0700957 if (c == nullptr) {
958 return error;
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800959 }
Mathieu Chartier9d156d52016-10-06 17:44:26 -0700960 classes.push_back(hs.NewHandle(c));
Ian Rogersc0542af2014-09-03 16:16:56 -0700961 counts->push_back(0);
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800962 }
Ian Rogersc0542af2014-09-03 16:16:56 -0700963 heap->CountInstances(classes, false, &(*counts)[0]);
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800964 return JDWP::ERR_NONE;
965}
966
Ian Rogersc0542af2014-09-03 16:16:56 -0700967JDWP::JdwpError Dbg::GetInstances(JDWP::RefTypeId class_id, int32_t max_count,
968 std::vector<JDWP::ObjectId>* instances) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800969 gc::Heap* heap = Runtime::Current()->GetHeap();
970 // We only want reachable instances, so do a GC.
Andreas Gampe98ea9d92018-10-19 14:06:15 -0700971 heap->CollectGarbage(/* clear_soft_references= */ false, gc::GcCause::kGcCauseDebugger);
Ian Rogersc0542af2014-09-03 16:16:56 -0700972 JDWP::JdwpError error;
Mathieu Chartier9d156d52016-10-06 17:44:26 -0700973 ObjPtr<mirror::Class> c = DecodeClass(class_id, &error);
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800974 if (c == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700975 return error;
Elliott Hughes3b78c942013-01-15 17:35:41 -0800976 }
Mathieu Chartier2d855952016-10-12 19:37:59 -0700977 VariableSizedHandleScope hs(Thread::Current());
978 std::vector<Handle<mirror::Object>> raw_instances;
Richard Uhler660be6f2017-11-22 16:12:29 +0000979 Runtime::Current()->GetHeap()->GetInstances(hs,
980 hs.NewHandle(c),
Andreas Gampe98ea9d92018-10-19 14:06:15 -0700981 /* use_is_assignable_from= */ false,
Richard Uhler660be6f2017-11-22 16:12:29 +0000982 max_count,
983 raw_instances);
Elliott Hughes3b78c942013-01-15 17:35:41 -0800984 for (size_t i = 0; i < raw_instances.size(); ++i) {
Mathieu Chartier2d855952016-10-12 19:37:59 -0700985 instances->push_back(gRegistry->Add(raw_instances[i].Get()));
Elliott Hughes3b78c942013-01-15 17:35:41 -0800986 }
987 return JDWP::ERR_NONE;
988}
989
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800990JDWP::JdwpError Dbg::GetReferringObjects(JDWP::ObjectId object_id, int32_t max_count,
Ian Rogersc0542af2014-09-03 16:16:56 -0700991 std::vector<JDWP::ObjectId>* referring_objects) {
Mathieu Chartier412c7fc2014-02-07 12:18:39 -0800992 gc::Heap* heap = Runtime::Current()->GetHeap();
Andreas Gampe98ea9d92018-10-19 14:06:15 -0700993 heap->CollectGarbage(/* clear_soft_references= */ false, gc::GcCause::kGcCauseDebugger);
Ian Rogersc0542af2014-09-03 16:16:56 -0700994 JDWP::JdwpError error;
Mathieu Chartier9d156d52016-10-06 17:44:26 -0700995 ObjPtr<mirror::Object> o = gRegistry->Get<mirror::Object*>(object_id, &error);
Ian Rogersc0542af2014-09-03 16:16:56 -0700996 if (o == nullptr) {
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800997 return JDWP::ERR_INVALID_OBJECT;
998 }
Mathieu Chartieraea9bfb2016-10-12 19:19:56 -0700999 VariableSizedHandleScope hs(Thread::Current());
1000 std::vector<Handle<mirror::Object>> raw_instances;
1001 heap->GetReferringObjects(hs, hs.NewHandle(o), max_count, raw_instances);
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001002 for (size_t i = 0; i < raw_instances.size(); ++i) {
Mathieu Chartieraea9bfb2016-10-12 19:19:56 -07001003 referring_objects->push_back(gRegistry->Add(raw_instances[i].Get()));
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001004 }
1005 return JDWP::ERR_NONE;
1006}
1007
Ian Rogersc0542af2014-09-03 16:16:56 -07001008JDWP::JdwpError Dbg::DisableCollection(JDWP::ObjectId object_id) {
1009 JDWP::JdwpError error;
1010 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
1011 if (o == nullptr) {
Sebastien Hertze96060a2013-12-11 12:06:28 +01001012 return JDWP::ERR_INVALID_OBJECT;
1013 }
Elliott Hughes64f574f2013-02-20 14:57:12 -08001014 gRegistry->DisableCollection(object_id);
1015 return JDWP::ERR_NONE;
1016}
1017
Ian Rogersc0542af2014-09-03 16:16:56 -07001018JDWP::JdwpError Dbg::EnableCollection(JDWP::ObjectId object_id) {
1019 JDWP::JdwpError error;
1020 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
Sebastien Hertze96060a2013-12-11 12:06:28 +01001021 // Unlike DisableCollection, JDWP specs do not state an invalid object causes an error. The RI
1022 // also ignores these cases and never return an error. However it's not obvious why this command
1023 // should behave differently from DisableCollection and IsCollected commands. So let's be more
1024 // strict and return an error if this happens.
Ian Rogersc0542af2014-09-03 16:16:56 -07001025 if (o == nullptr) {
Sebastien Hertze96060a2013-12-11 12:06:28 +01001026 return JDWP::ERR_INVALID_OBJECT;
1027 }
Elliott Hughes64f574f2013-02-20 14:57:12 -08001028 gRegistry->EnableCollection(object_id);
1029 return JDWP::ERR_NONE;
1030}
1031
Ian Rogersc0542af2014-09-03 16:16:56 -07001032JDWP::JdwpError Dbg::IsCollected(JDWP::ObjectId object_id, bool* is_collected) {
1033 *is_collected = true;
Sebastien Hertz65637eb2014-01-10 17:40:02 +01001034 if (object_id == 0) {
1035 // Null object id is invalid.
Sebastien Hertze96060a2013-12-11 12:06:28 +01001036 return JDWP::ERR_INVALID_OBJECT;
1037 }
Sebastien Hertz65637eb2014-01-10 17:40:02 +01001038 // JDWP specs state an INVALID_OBJECT error is returned if the object ID is not valid. However
1039 // the RI seems to ignore this and assume object has been collected.
Ian Rogersc0542af2014-09-03 16:16:56 -07001040 JDWP::JdwpError error;
1041 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
1042 if (o != nullptr) {
1043 *is_collected = gRegistry->IsCollected(object_id);
Sebastien Hertz65637eb2014-01-10 17:40:02 +01001044 }
Elliott Hughes64f574f2013-02-20 14:57:12 -08001045 return JDWP::ERR_NONE;
1046}
1047
Ian Rogersc0542af2014-09-03 16:16:56 -07001048void Dbg::DisposeObject(JDWP::ObjectId object_id, uint32_t reference_count) {
Elliott Hughes64f574f2013-02-20 14:57:12 -08001049 gRegistry->DisposeObject(object_id, reference_count);
1050}
1051
Mathieu Chartier3398c782016-09-30 10:27:43 -07001052JDWP::JdwpTypeTag Dbg::GetTypeTag(ObjPtr<mirror::Class> klass) {
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001053 DCHECK(klass != nullptr);
1054 if (klass->IsArrayClass()) {
1055 return JDWP::TT_ARRAY;
1056 } else if (klass->IsInterface()) {
1057 return JDWP::TT_INTERFACE;
1058 } else {
1059 return JDWP::TT_CLASS;
1060 }
1061}
1062
Elliott Hughes88d63092013-01-09 09:55:54 -08001063JDWP::JdwpError Dbg::GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001064 JDWP::JdwpError error;
1065 mirror::Class* c = DecodeClass(class_id, &error);
1066 if (c == nullptr) {
1067 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001068 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001069
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001070 JDWP::JdwpTypeTag type_tag = GetTypeTag(c);
1071 expandBufAdd1(pReply, type_tag);
Elliott Hughes88d63092013-01-09 09:55:54 -08001072 expandBufAddRefTypeId(pReply, class_id);
Elliott Hughes436e3722012-02-17 20:01:47 -08001073 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001074}
1075
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001076// Get the complete list of reference classes (i.e. all classes except
1077// the primitive types).
1078// Returns a newly-allocated buffer full of RefTypeId values.
1079class ClassListCreator : public ClassVisitor {
1080 public:
1081 explicit ClassListCreator(std::vector<JDWP::RefTypeId>* classes) : classes_(classes) {}
1082
Roland Levillainbbc6e7e2018-08-24 16:58:47 +01001083 bool operator()(ObjPtr<mirror::Class> c) override REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001084 if (!c->IsPrimitive()) {
1085 classes_->push_back(Dbg::GetObjectRegistry()->AddRefType(c));
1086 }
1087 return true;
1088 }
1089
1090 private:
1091 std::vector<JDWP::RefTypeId>* const classes_;
1092};
1093
Ian Rogersc0542af2014-09-03 16:16:56 -07001094void Dbg::GetClassList(std::vector<JDWP::RefTypeId>* classes) {
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001095 ClassListCreator clc(classes);
Mathieu Chartiere0671ce2015-07-28 17:23:28 -07001096 Runtime::Current()->GetClassLinker()->VisitClassesWithoutClassesLock(&clc);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001097}
1098
Ian Rogers1ff3c982014-08-12 02:30:58 -07001099JDWP::JdwpError Dbg::GetClassInfo(JDWP::RefTypeId class_id, JDWP::JdwpTypeTag* pTypeTag,
1100 uint32_t* pStatus, std::string* pDescriptor) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001101 JDWP::JdwpError error;
1102 mirror::Class* c = DecodeClass(class_id, &error);
1103 if (c == nullptr) {
1104 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001105 }
1106
Elliott Hughesa2155262011-11-16 16:26:58 -08001107 if (c->IsArrayClass()) {
1108 *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED;
1109 *pTypeTag = JDWP::TT_ARRAY;
1110 } else {
1111 if (c->IsErroneous()) {
1112 *pStatus = JDWP::CS_ERROR;
1113 } else {
1114 *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED | JDWP::CS_INITIALIZED;
1115 }
1116 *pTypeTag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS;
1117 }
1118
Ian Rogersc0542af2014-09-03 16:16:56 -07001119 if (pDescriptor != nullptr) {
Ian Rogers1ff3c982014-08-12 02:30:58 -07001120 std::string temp;
1121 *pDescriptor = c->GetDescriptor(&temp);
Elliott Hughesa2155262011-11-16 16:26:58 -08001122 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001123 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001124}
1125
Ian Rogersc0542af2014-09-03 16:16:56 -07001126void Dbg::FindLoadedClassBySignature(const char* descriptor, std::vector<JDWP::RefTypeId>* ids) {
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001127 std::vector<ObjPtr<mirror::Class>> classes;
Igor Murashkinb1d8c312015-08-04 11:18:43 -07001128 Runtime::Current()->GetClassLinker()->LookupClasses(descriptor, classes);
Ian Rogersc0542af2014-09-03 16:16:56 -07001129 ids->clear();
Mathieu Chartier28357fa2016-10-18 16:27:40 -07001130 for (ObjPtr<mirror::Class> c : classes) {
1131 ids->push_back(gRegistry->Add(c));
Elliott Hughes6fa602d2011-12-02 17:54:25 -08001132 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001133}
1134
Ian Rogersc0542af2014-09-03 16:16:56 -07001135JDWP::JdwpError Dbg::GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply) {
1136 JDWP::JdwpError error;
1137 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
1138 if (o == nullptr) {
Elliott Hughes2435a572012-02-17 16:07:41 -08001139 return JDWP::ERR_INVALID_OBJECT;
Elliott Hughes499c5132011-11-17 14:55:11 -08001140 }
Elliott Hughes2435a572012-02-17 16:07:41 -08001141
Sebastien Hertz4d8fd492014-03-28 16:29:41 +01001142 JDWP::JdwpTypeTag type_tag = GetTypeTag(o->GetClass());
Elliott Hughes64f574f2013-02-20 14:57:12 -08001143 JDWP::RefTypeId type_id = gRegistry->AddRefType(o->GetClass());
Elliott Hughes2435a572012-02-17 16:07:41 -08001144
1145 expandBufAdd1(pReply, type_tag);
1146 expandBufAddRefTypeId(pReply, type_id);
1147
1148 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001149}
1150
Ian Rogersfc0e94b2013-09-23 23:51:32 -07001151JDWP::JdwpError Dbg::GetSignature(JDWP::RefTypeId class_id, std::string* signature) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001152 JDWP::JdwpError error;
1153 mirror::Class* c = DecodeClass(class_id, &error);
1154 if (c == nullptr) {
1155 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001156 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07001157 std::string temp;
1158 *signature = c->GetDescriptor(&temp);
Elliott Hughes1fe7afb2012-02-13 17:23:03 -08001159 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001160}
1161
Orion Hodson77d8a1c2017-04-24 14:53:19 +01001162JDWP::JdwpError Dbg::GetSourceDebugExtension(JDWP::RefTypeId class_id,
1163 std::string* extension_data) {
1164 JDWP::JdwpError error;
1165 mirror::Class* c = DecodeClass(class_id, &error);
1166 if (c == nullptr) {
1167 return error;
1168 }
1169 StackHandleScope<1> hs(Thread::Current());
1170 Handle<mirror::Class> klass(hs.NewHandle(c));
1171 const char* data = annotations::GetSourceDebugExtension(klass);
1172 if (data == nullptr) {
1173 return JDWP::ERR_ABSENT_INFORMATION;
1174 }
1175 *extension_data = data;
1176 return JDWP::ERR_NONE;
1177}
1178
Ian Rogersc0542af2014-09-03 16:16:56 -07001179JDWP::JdwpError Dbg::GetSourceFile(JDWP::RefTypeId class_id, std::string* result) {
1180 JDWP::JdwpError error;
1181 mirror::Class* c = DecodeClass(class_id, &error);
Sebastien Hertz4206eb52014-06-05 10:15:45 +02001182 if (c == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001183 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001184 }
Sebastien Hertz4206eb52014-06-05 10:15:45 +02001185 const char* source_file = c->GetSourceFile();
1186 if (source_file == nullptr) {
Sebastien Hertzb7054ba2014-03-13 11:52:31 +01001187 return JDWP::ERR_ABSENT_INFORMATION;
1188 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001189 *result = source_file;
Elliott Hughes436e3722012-02-17 20:01:47 -08001190 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001191}
1192
Ian Rogersc0542af2014-09-03 16:16:56 -07001193JDWP::JdwpError Dbg::GetObjectTag(JDWP::ObjectId object_id, uint8_t* tag) {
Ian Rogers98379392014-02-24 16:53:16 -08001194 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07001195 JDWP::JdwpError error;
1196 mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error);
1197 if (error != JDWP::ERR_NONE) {
1198 *tag = JDWP::JT_VOID;
1199 return error;
Elliott Hughes546b9862012-06-20 16:06:13 -07001200 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001201 *tag = TagFromObject(soa, o);
Elliott Hughes546b9862012-06-20 16:06:13 -07001202 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001203}
1204
Elliott Hughesaed4be92011-12-02 16:16:23 -08001205size_t Dbg::GetTagWidth(JDWP::JdwpTag tag) {
Elliott Hughesdbb40792011-11-18 17:05:22 -08001206 switch (tag) {
1207 case JDWP::JT_VOID:
1208 return 0;
1209 case JDWP::JT_BYTE:
1210 case JDWP::JT_BOOLEAN:
1211 return 1;
1212 case JDWP::JT_CHAR:
1213 case JDWP::JT_SHORT:
1214 return 2;
1215 case JDWP::JT_FLOAT:
1216 case JDWP::JT_INT:
1217 return 4;
1218 case JDWP::JT_ARRAY:
1219 case JDWP::JT_OBJECT:
1220 case JDWP::JT_STRING:
1221 case JDWP::JT_THREAD:
1222 case JDWP::JT_THREAD_GROUP:
1223 case JDWP::JT_CLASS_LOADER:
1224 case JDWP::JT_CLASS_OBJECT:
1225 return sizeof(JDWP::ObjectId);
1226 case JDWP::JT_DOUBLE:
1227 case JDWP::JT_LONG:
1228 return 8;
1229 default:
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08001230 LOG(FATAL) << "Unknown tag " << tag;
Elliott Hughesc1896c92018-11-29 11:33:18 -08001231 UNREACHABLE();
Elliott Hughesdbb40792011-11-18 17:05:22 -08001232 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001233}
1234
Ian Rogersc0542af2014-09-03 16:16:56 -07001235JDWP::JdwpError Dbg::GetArrayLength(JDWP::ObjectId array_id, int32_t* length) {
1236 JDWP::JdwpError error;
1237 mirror::Array* a = DecodeNonNullArray(array_id, &error);
1238 if (a == nullptr) {
1239 return error;
Elliott Hughes24437992011-11-30 14:49:33 -08001240 }
Ian Rogersc0542af2014-09-03 16:16:56 -07001241 *length = a->GetLength();
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001242 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001243}
1244
Elliott Hughes88d63092013-01-09 09:55:54 -08001245JDWP::JdwpError Dbg::OutputArray(JDWP::ObjectId array_id, int offset, int count, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001246 JDWP::JdwpError error;
1247 mirror::Array* a = DecodeNonNullArray(array_id, &error);
Ian Rogers98379392014-02-24 16:53:16 -08001248 if (a == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001249 return error;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001250 }
Elliott Hughes24437992011-11-30 14:49:33 -08001251
1252 if (offset < 0 || count < 0 || offset > a->GetLength() || a->GetLength() - offset < count) {
1253 LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001254 return JDWP::ERR_INVALID_LENGTH;
Elliott Hughes24437992011-11-30 14:49:33 -08001255 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07001256 JDWP::JdwpTag element_tag = BasicTagFromClass(a->GetClass()->GetComponentType());
1257 expandBufAdd1(pReply, element_tag);
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001258 expandBufAdd4BE(pReply, count);
1259
Ian Rogers1ff3c982014-08-12 02:30:58 -07001260 if (IsPrimitiveTag(element_tag)) {
1261 size_t width = GetTagWidth(element_tag);
Elliott Hughes24437992011-11-30 14:49:33 -08001262 uint8_t* dst = expandBufAddSpace(pReply, count * width);
1263 if (width == 8) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001264 const uint64_t* src8 = reinterpret_cast<uint64_t*>(a->GetRawData(sizeof(uint64_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001265 for (int i = 0; i < count; ++i) JDWP::Write8BE(&dst, src8[offset + i]);
1266 } else if (width == 4) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001267 const uint32_t* src4 = reinterpret_cast<uint32_t*>(a->GetRawData(sizeof(uint32_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001268 for (int i = 0; i < count; ++i) JDWP::Write4BE(&dst, src4[offset + i]);
1269 } else if (width == 2) {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001270 const uint16_t* src2 = reinterpret_cast<uint16_t*>(a->GetRawData(sizeof(uint16_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001271 for (int i = 0; i < count; ++i) JDWP::Write2BE(&dst, src2[offset + i]);
1272 } else {
Ian Rogersef7d42f2014-01-06 12:55:46 -08001273 const uint8_t* src = reinterpret_cast<uint8_t*>(a->GetRawData(sizeof(uint8_t), 0));
Elliott Hughes24437992011-11-30 14:49:33 -08001274 memcpy(dst, &src[offset * width], count * width);
1275 }
1276 } else {
Ian Rogers98379392014-02-24 16:53:16 -08001277 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001278 mirror::ObjectArray<mirror::Object>* oa = a->AsObjectArray<mirror::Object>();
Elliott Hughes24437992011-11-30 14:49:33 -08001279 for (int i = 0; i < count; ++i) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001280 mirror::Object* element = oa->Get(offset + i);
Ian Rogers98379392014-02-24 16:53:16 -08001281 JDWP::JdwpTag specific_tag = (element != nullptr) ? TagFromObject(soa, element)
Ian Rogers1ff3c982014-08-12 02:30:58 -07001282 : element_tag;
Elliott Hughes24437992011-11-30 14:49:33 -08001283 expandBufAdd1(pReply, specific_tag);
1284 expandBufAddObjectId(pReply, gRegistry->Add(element));
1285 }
1286 }
1287
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001288 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001289}
1290
Ian Rogersef7d42f2014-01-06 12:55:46 -08001291template <typename T>
Ian Rogersc0542af2014-09-03 16:16:56 -07001292static void CopyArrayData(mirror::Array* a, JDWP::Request* src, int offset, int count)
Ian Rogersef7d42f2014-01-06 12:55:46 -08001293 NO_THREAD_SAFETY_ANALYSIS {
1294 // TODO: fix when annotalysis correctly handles non-member functions.
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001295 DCHECK(a->GetClass()->IsPrimitiveArray());
1296
Ian Rogersef7d42f2014-01-06 12:55:46 -08001297 T* dst = reinterpret_cast<T*>(a->GetRawData(sizeof(T), offset));
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001298 for (int i = 0; i < count; ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001299 *dst++ = src->ReadValue(sizeof(T));
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001300 }
1301}
1302
Elliott Hughes88d63092013-01-09 09:55:54 -08001303JDWP::JdwpError Dbg::SetArrayElements(JDWP::ObjectId array_id, int offset, int count,
Ian Rogersc0542af2014-09-03 16:16:56 -07001304 JDWP::Request* request) {
1305 JDWP::JdwpError error;
1306 mirror::Array* dst = DecodeNonNullArray(array_id, &error);
1307 if (dst == nullptr) {
1308 return error;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001309 }
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001310
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001311 if (offset < 0 || count < 0 || offset > dst->GetLength() || dst->GetLength() - offset < count) {
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001312 LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001313 return JDWP::ERR_INVALID_LENGTH;
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001314 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07001315 JDWP::JdwpTag element_tag = BasicTagFromClass(dst->GetClass()->GetComponentType());
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001316
Ian Rogers1ff3c982014-08-12 02:30:58 -07001317 if (IsPrimitiveTag(element_tag)) {
1318 size_t width = GetTagWidth(element_tag);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001319 if (width == 8) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001320 CopyArrayData<uint64_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001321 } else if (width == 4) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001322 CopyArrayData<uint32_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001323 } else if (width == 2) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001324 CopyArrayData<uint16_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001325 } else {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001326 CopyArrayData<uint8_t>(dst, request, offset, count);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001327 }
1328 } else {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001329 mirror::ObjectArray<mirror::Object>* oa = dst->AsObjectArray<mirror::Object>();
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001330 for (int i = 0; i < count; ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001331 JDWP::ObjectId id = request->ReadObjectId();
Ian Rogersc0542af2014-09-03 16:16:56 -07001332 mirror::Object* o = gRegistry->Get<mirror::Object*>(id, &error);
1333 if (error != JDWP::ERR_NONE) {
1334 return error;
Elliott Hughes436e3722012-02-17 20:01:47 -08001335 }
Sebastien Hertz2e1c16d2015-08-28 11:57:49 +02001336 // Check if the object's type is compatible with the array's type.
1337 if (o != nullptr && !o->InstanceOf(oa->GetClass()->GetComponentType())) {
1338 return JDWP::ERR_TYPE_MISMATCH;
1339 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +01001340 oa->Set<false>(offset + i, o);
Elliott Hughesf03b8f62011-12-02 14:26:25 -08001341 }
1342 }
1343
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001344 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001345}
1346
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001347JDWP::JdwpError Dbg::CreateString(const std::string& str, JDWP::ObjectId* new_string_id) {
1348 Thread* self = Thread::Current();
1349 mirror::String* new_string = mirror::String::AllocFromModifiedUtf8(self, str.c_str());
1350 if (new_string == nullptr) {
1351 DCHECK(self->IsExceptionPending());
1352 self->ClearException();
1353 LOG(ERROR) << "Could not allocate string";
1354 *new_string_id = 0;
1355 return JDWP::ERR_OUT_OF_MEMORY;
1356 }
1357 *new_string_id = gRegistry->Add(new_string);
1358 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001359}
1360
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001361JDWP::JdwpError Dbg::CreateObject(JDWP::RefTypeId class_id, JDWP::ObjectId* new_object_id) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001362 JDWP::JdwpError error;
1363 mirror::Class* c = DecodeClass(class_id, &error);
1364 if (c == nullptr) {
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001365 *new_object_id = 0;
Ian Rogersc0542af2014-09-03 16:16:56 -07001366 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001367 }
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001368 Thread* self = Thread::Current();
Mathieu Chartier28bd2e42016-10-04 13:54:57 -07001369 ObjPtr<mirror::Object> new_object;
Sebastien Hertz56d5e502015-11-03 17:38:35 +01001370 if (c->IsStringClass()) {
1371 // Special case for java.lang.String.
1372 gc::AllocatorType allocator_type = Runtime::Current()->GetHeap()->GetCurrentAllocator();
jessicahandojo3aaa37b2016-07-29 14:46:37 -07001373 new_object = mirror::String::AllocEmptyString<true>(self, allocator_type);
Sebastien Hertz56d5e502015-11-03 17:38:35 +01001374 } else {
1375 new_object = c->AllocObject(self);
1376 }
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001377 if (new_object == nullptr) {
1378 DCHECK(self->IsExceptionPending());
1379 self->ClearException();
David Sehr709b0702016-10-13 09:12:37 -07001380 LOG(ERROR) << "Could not allocate object of type " << mirror::Class::PrettyDescriptor(c);
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001381 *new_object_id = 0;
1382 return JDWP::ERR_OUT_OF_MEMORY;
1383 }
Vladimir Markobcf17522018-06-01 13:14:32 +01001384 *new_object_id = gRegistry->Add(new_object);
Elliott Hughes436e3722012-02-17 20:01:47 -08001385 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001386}
1387
Elliott Hughesbf13d362011-12-08 15:51:37 -08001388/*
1389 * Used by Eclipse's "Display" view to evaluate "new byte[5]" to get "(byte[]) [0, 0, 0, 0, 0]".
1390 */
Elliott Hughes88d63092013-01-09 09:55:54 -08001391JDWP::JdwpError Dbg::CreateArrayObject(JDWP::RefTypeId array_class_id, uint32_t length,
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001392 JDWP::ObjectId* new_array_id) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001393 JDWP::JdwpError error;
1394 mirror::Class* c = DecodeClass(array_class_id, &error);
1395 if (c == nullptr) {
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001396 *new_array_id = 0;
Ian Rogersc0542af2014-09-03 16:16:56 -07001397 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001398 }
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001399 Thread* self = Thread::Current();
Vladimir Markobcf17522018-06-01 13:14:32 +01001400 gc::AllocatorType allocator_type = Runtime::Current()->GetHeap()->GetCurrentAllocator();
1401 ObjPtr<mirror::Array> new_array =
1402 mirror::Array::Alloc<true>(self, c, length, c->GetComponentSizeShift(), allocator_type);
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001403 if (new_array == nullptr) {
1404 DCHECK(self->IsExceptionPending());
1405 self->ClearException();
David Sehr709b0702016-10-13 09:12:37 -07001406 LOG(ERROR) << "Could not allocate array of type " << mirror::Class::PrettyDescriptor(c);
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001407 *new_array_id = 0;
1408 return JDWP::ERR_OUT_OF_MEMORY;
1409 }
1410 *new_array_id = gRegistry->Add(new_array);
Elliott Hughes436e3722012-02-17 20:01:47 -08001411 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001412}
1413
Mathieu Chartierc7853442015-03-27 14:35:38 -07001414JDWP::FieldId Dbg::ToFieldId(const ArtField* f) {
Elliott Hughes03181a82011-11-17 17:22:21 -08001415 return static_cast<JDWP::FieldId>(reinterpret_cast<uintptr_t>(f));
Elliott Hughes03181a82011-11-17 17:22:21 -08001416}
1417
Alex Light6c8467f2015-11-20 15:03:26 -08001418static JDWP::MethodId ToMethodId(ArtMethod* m)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001419 REQUIRES_SHARED(Locks::mutator_lock_) {
Alex Light97e78032017-06-27 17:51:55 -07001420 return static_cast<JDWP::MethodId>(
1421 reinterpret_cast<uintptr_t>(m->GetCanonicalMethod(kRuntimePointerSize)));
Elliott Hughes03181a82011-11-17 17:22:21 -08001422}
1423
Mathieu Chartierc7853442015-03-27 14:35:38 -07001424static ArtField* FromFieldId(JDWP::FieldId fid)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001425 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierc7853442015-03-27 14:35:38 -07001426 return reinterpret_cast<ArtField*>(static_cast<uintptr_t>(fid));
Elliott Hughesaed4be92011-12-02 16:16:23 -08001427}
1428
Mathieu Chartiere401d142015-04-22 13:56:20 -07001429static ArtMethod* FromMethodId(JDWP::MethodId mid)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001430 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07001431 return reinterpret_cast<ArtMethod*>(static_cast<uintptr_t>(mid));
Elliott Hughes03181a82011-11-17 17:22:21 -08001432}
1433
Sebastien Hertz6995c602014-09-09 12:10:13 +02001434bool Dbg::MatchThread(JDWP::ObjectId expected_thread_id, Thread* event_thread) {
1435 CHECK(event_thread != nullptr);
1436 JDWP::JdwpError error;
Mathieu Chartiere401d142015-04-22 13:56:20 -07001437 mirror::Object* expected_thread_peer = gRegistry->Get<mirror::Object*>(
1438 expected_thread_id, &error);
Nicolas Geoffraycafa0812017-02-15 18:27:34 +00001439 return expected_thread_peer == event_thread->GetPeerFromOtherThread();
Sebastien Hertz6995c602014-09-09 12:10:13 +02001440}
1441
1442bool Dbg::MatchLocation(const JDWP::JdwpLocation& expected_location,
1443 const JDWP::EventLocation& event_location) {
1444 if (expected_location.dex_pc != event_location.dex_pc) {
1445 return false;
1446 }
Mathieu Chartiere401d142015-04-22 13:56:20 -07001447 ArtMethod* m = FromMethodId(expected_location.method_id);
Sebastien Hertz6995c602014-09-09 12:10:13 +02001448 return m == event_location.method;
1449}
1450
Mathieu Chartier3398c782016-09-30 10:27:43 -07001451bool Dbg::MatchType(ObjPtr<mirror::Class> event_class, JDWP::RefTypeId class_id) {
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001452 if (event_class == nullptr) {
1453 return false;
1454 }
Sebastien Hertz6995c602014-09-09 12:10:13 +02001455 JDWP::JdwpError error;
Mathieu Chartier3398c782016-09-30 10:27:43 -07001456 ObjPtr<mirror::Class> expected_class = DecodeClass(class_id, &error);
Sebastien Hertz6995c602014-09-09 12:10:13 +02001457 CHECK(expected_class != nullptr);
1458 return expected_class->IsAssignableFrom(event_class);
1459}
1460
1461bool Dbg::MatchField(JDWP::RefTypeId expected_type_id, JDWP::FieldId expected_field_id,
Mathieu Chartierc7853442015-03-27 14:35:38 -07001462 ArtField* event_field) {
1463 ArtField* expected_field = FromFieldId(expected_field_id);
Sebastien Hertz6995c602014-09-09 12:10:13 +02001464 if (expected_field != event_field) {
1465 return false;
1466 }
1467 return Dbg::MatchType(event_field->GetDeclaringClass(), expected_type_id);
1468}
1469
1470bool Dbg::MatchInstance(JDWP::ObjectId expected_instance_id, mirror::Object* event_instance) {
1471 JDWP::JdwpError error;
1472 mirror::Object* modifier_instance = gRegistry->Get<mirror::Object*>(expected_instance_id, &error);
1473 return modifier_instance == event_instance;
1474}
1475
Mathieu Chartier90443472015-07-16 20:32:27 -07001476void Dbg::SetJdwpLocation(JDWP::JdwpLocation* location, ArtMethod* m, uint32_t dex_pc) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001477 if (m == nullptr) {
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001478 memset(location, 0, sizeof(*location));
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001479 } else {
Vladimir Markod93e3742018-07-18 10:58:13 +01001480 ObjPtr<mirror::Class> c = m->GetDeclaringClass();
Ian Rogersc0542af2014-09-03 16:16:56 -07001481 location->type_tag = GetTypeTag(c);
1482 location->class_id = gRegistry->AddRefType(c);
Alex Light73376312017-04-06 10:10:51 -07001483 // The RI Seems to return 0 for all obsolete methods. For compatibility we shall do the same.
1484 location->method_id = m->IsObsolete() ? 0 : ToMethodId(m);
Ian Rogersc0542af2014-09-03 16:16:56 -07001485 location->dex_pc = (m->IsNative() || m->IsProxyMethod()) ? static_cast<uint64_t>(-1) : dex_pc;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08001486 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08001487}
1488
Ian Rogersc0542af2014-09-03 16:16:56 -07001489std::string Dbg::GetMethodName(JDWP::MethodId method_id) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07001490 ArtMethod* m = FromMethodId(method_id);
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001491 if (m == nullptr) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -07001492 return "null";
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001493 }
Andreas Gampe542451c2016-07-26 09:02:02 -07001494 return m->GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetName();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001495}
1496
Alex Light73376312017-04-06 10:10:51 -07001497bool Dbg::IsMethodObsolete(JDWP::MethodId method_id) {
1498 ArtMethod* m = FromMethodId(method_id);
1499 if (m == nullptr) {
1500 // NB Since we return 0 as MID for obsolete methods we want to default to true here.
1501 return true;
1502 }
1503 return m->IsObsolete();
1504}
1505
Ian Rogersc0542af2014-09-03 16:16:56 -07001506std::string Dbg::GetFieldName(JDWP::FieldId field_id) {
Mathieu Chartierc7853442015-03-27 14:35:38 -07001507 ArtField* f = FromFieldId(field_id);
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001508 if (f == nullptr) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -07001509 return "null";
Sebastien Hertza9aa0ff2014-09-19 12:07:51 +02001510 }
1511 return f->GetName();
Elliott Hughesa96836a2013-01-17 12:27:49 -08001512}
1513
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001514/*
1515 * Augment the access flags for synthetic methods and fields by setting
1516 * the (as described by the spec) "0xf0000000 bit". Also, strip out any
1517 * flags not specified by the Java programming language.
1518 */
1519static uint32_t MangleAccessFlags(uint32_t accessFlags) {
1520 accessFlags &= kAccJavaFlagsMask;
1521 if ((accessFlags & kAccSynthetic) != 0) {
1522 accessFlags |= 0xf0000000;
1523 }
1524 return accessFlags;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001525}
1526
Elliott Hughesdbb40792011-11-18 17:05:22 -08001527/*
Jeff Haob7cefc72013-11-14 14:51:09 -08001528 * Circularly shifts registers so that arguments come first. Debuggers
1529 * expect slots to begin with arguments, but dex code places them at
1530 * the end.
Elliott Hughesdbb40792011-11-18 17:05:22 -08001531 */
Mathieu Chartiere401d142015-04-22 13:56:20 -07001532static uint16_t MangleSlot(uint16_t slot, ArtMethod* m)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001533 REQUIRES_SHARED(Locks::mutator_lock_) {
David Sehr0225f8e2018-01-31 08:52:24 +00001534 CodeItemDataAccessor accessor(m->DexInstructionData());
Mathieu Chartier808c7a52017-12-15 11:19:33 -08001535 if (!accessor.HasCodeItem()) {
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001536 // We should not get here for a method without code (native, proxy or abstract). Log it and
1537 // return the slot as is since all registers are arguments.
David Sehr709b0702016-10-13 09:12:37 -07001538 LOG(WARNING) << "Trying to mangle slot for method without code " << m->PrettyMethod();
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001539 return slot;
1540 }
Mathieu Chartier808c7a52017-12-15 11:19:33 -08001541 uint16_t ins_size = accessor.InsSize();
1542 uint16_t locals_size = accessor.RegistersSize() - ins_size;
Jeff Haob7cefc72013-11-14 14:51:09 -08001543 if (slot >= locals_size) {
1544 return slot - locals_size;
1545 } else {
1546 return slot + ins_size;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001547 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001548}
1549
Sebastien Hertzaef0c912016-08-08 10:20:28 +02001550static size_t GetMethodNumArgRegistersIncludingThis(ArtMethod* method)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001551 REQUIRES_SHARED(Locks::mutator_lock_) {
Sebastien Hertzaef0c912016-08-08 10:20:28 +02001552 uint32_t num_registers = ArtMethod::NumArgRegisters(method->GetShorty());
1553 if (!method->IsStatic()) {
1554 ++num_registers;
1555 }
1556 return num_registers;
1557}
1558
Jeff Haob7cefc72013-11-14 14:51:09 -08001559/*
1560 * Circularly shifts registers so that arguments come last. Reverts
1561 * slots to dex style argument placement.
1562 */
Mathieu Chartiere401d142015-04-22 13:56:20 -07001563static uint16_t DemangleSlot(uint16_t slot, ArtMethod* m, JDWP::JdwpError* error)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001564 REQUIRES_SHARED(Locks::mutator_lock_) {
David Sehr0225f8e2018-01-31 08:52:24 +00001565 CodeItemDataAccessor accessor(m->DexInstructionData());
Mathieu Chartier808c7a52017-12-15 11:19:33 -08001566 if (!accessor.HasCodeItem()) {
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001567 // We should not get here for a method without code (native, proxy or abstract). Log it and
1568 // return the slot as is since all registers are arguments.
David Sehr709b0702016-10-13 09:12:37 -07001569 LOG(WARNING) << "Trying to demangle slot for method without code "
1570 << m->PrettyMethod();
Sebastien Hertzaef0c912016-08-08 10:20:28 +02001571 uint16_t vreg_count = GetMethodNumArgRegistersIncludingThis(m);
Sebastien Hertzabbabc82015-03-26 08:47:47 +01001572 if (slot < vreg_count) {
1573 *error = JDWP::ERR_NONE;
1574 return slot;
1575 }
Jeff Haob7cefc72013-11-14 14:51:09 -08001576 } else {
Mathieu Chartier808c7a52017-12-15 11:19:33 -08001577 if (slot < accessor.RegistersSize()) {
1578 uint16_t ins_size = accessor.InsSize();
1579 uint16_t locals_size = accessor.RegistersSize() - ins_size;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01001580 *error = JDWP::ERR_NONE;
1581 return (slot < ins_size) ? slot + locals_size : slot - ins_size;
1582 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001583 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01001584
1585 // Slot is invalid in the method.
David Sehr709b0702016-10-13 09:12:37 -07001586 LOG(ERROR) << "Invalid local slot " << slot << " for method " << m->PrettyMethod();
Sebastien Hertzabbabc82015-03-26 08:47:47 +01001587 *error = JDWP::ERR_INVALID_SLOT;
1588 return DexFile::kDexNoIndex16;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001589}
1590
Mathieu Chartier90443472015-07-16 20:32:27 -07001591JDWP::JdwpError Dbg::OutputDeclaredFields(JDWP::RefTypeId class_id, bool with_generic,
1592 JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001593 JDWP::JdwpError error;
1594 mirror::Class* c = DecodeClass(class_id, &error);
1595 if (c == nullptr) {
1596 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001597 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001598
1599 size_t instance_field_count = c->NumInstanceFields();
1600 size_t static_field_count = c->NumStaticFields();
1601
1602 expandBufAdd4BE(pReply, instance_field_count + static_field_count);
1603
1604 for (size_t i = 0; i < instance_field_count + static_field_count; ++i) {
Mathieu Chartier90443472015-07-16 20:32:27 -07001605 ArtField* f = (i < instance_field_count) ? c->GetInstanceField(i) :
1606 c->GetStaticField(i - instance_field_count);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001607 expandBufAddFieldId(pReply, ToFieldId(f));
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001608 expandBufAddUtf8String(pReply, f->GetName());
1609 expandBufAddUtf8String(pReply, f->GetTypeDescriptor());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001610 if (with_generic) {
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001611 static const char genericSignature[1] = "";
1612 expandBufAddUtf8String(pReply, genericSignature);
1613 }
1614 expandBufAdd4BE(pReply, MangleAccessFlags(f->GetAccessFlags()));
1615 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001616 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001617}
1618
Elliott Hughes88d63092013-01-09 09:55:54 -08001619JDWP::JdwpError Dbg::OutputDeclaredMethods(JDWP::RefTypeId class_id, bool with_generic,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001620 JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001621 JDWP::JdwpError error;
1622 mirror::Class* c = DecodeClass(class_id, &error);
1623 if (c == nullptr) {
1624 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001625 }
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001626
Alex Light51a64d52015-12-17 13:55:59 -08001627 expandBufAdd4BE(pReply, c->NumMethods());
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001628
Mathieu Chartiere401d142015-04-22 13:56:20 -07001629 auto* cl = Runtime::Current()->GetClassLinker();
1630 auto ptr_size = cl->GetImagePointerSize();
Alex Light51a64d52015-12-17 13:55:59 -08001631 for (ArtMethod& m : c->GetMethods(ptr_size)) {
1632 expandBufAddMethodId(pReply, ToMethodId(&m));
Andreas Gampe542451c2016-07-26 09:02:02 -07001633 expandBufAddUtf8String(pReply, m.GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetName());
1634 expandBufAddUtf8String(
1635 pReply, m.GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetSignature().ToString());
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001636 if (with_generic) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07001637 const char* generic_signature = "";
1638 expandBufAddUtf8String(pReply, generic_signature);
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001639 }
Alex Light51a64d52015-12-17 13:55:59 -08001640 expandBufAdd4BE(pReply, MangleAccessFlags(m.GetAccessFlags()));
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001641 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001642 return JDWP::ERR_NONE;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001643}
1644
Elliott Hughes88d63092013-01-09 09:55:54 -08001645JDWP::JdwpError Dbg::OutputDeclaredInterfaces(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001646 JDWP::JdwpError error;
Mathieu Chartierf8322842014-05-16 10:59:25 -07001647 Thread* self = Thread::Current();
Vladimir Marko19a4d372016-12-08 14:41:46 +00001648 ObjPtr<mirror::Class> c = DecodeClass(class_id, &error);
1649 if (c == nullptr) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001650 return error;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -08001651 }
Mathieu Chartierf8322842014-05-16 10:59:25 -07001652 size_t interface_count = c->NumDirectInterfaces();
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001653 expandBufAdd4BE(pReply, interface_count);
1654 for (size_t i = 0; i < interface_count; ++i) {
Vladimir Marko19a4d372016-12-08 14:41:46 +00001655 ObjPtr<mirror::Class> interface = mirror::Class::GetDirectInterface(self, c, i);
1656 DCHECK(interface != nullptr);
1657 expandBufAddRefTypeId(pReply, gRegistry->AddRefType(interface));
Elliott Hughesa2e54f62011-11-17 13:01:30 -08001658 }
Elliott Hughes436e3722012-02-17 20:01:47 -08001659 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001660}
1661
Ian Rogersc0542af2014-09-03 16:16:56 -07001662void Dbg::OutputLineTable(JDWP::RefTypeId, JDWP::MethodId method_id, JDWP::ExpandBuf* pReply) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07001663 ArtMethod* m = FromMethodId(method_id);
David Sehr0225f8e2018-01-31 08:52:24 +00001664 CodeItemDebugInfoAccessor accessor(m->DexInstructionDebugInfo());
Elliott Hughes03181a82011-11-17 17:22:21 -08001665 uint64_t start, end;
Mathieu Chartier31f4c9f2017-12-08 15:46:11 -08001666 if (!accessor.HasCodeItem()) {
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001667 DCHECK(m->IsNative() || m->IsProxyMethod());
Elliott Hughes03181a82011-11-17 17:22:21 -08001668 start = -1;
1669 end = -1;
1670 } else {
1671 start = 0;
jeffhao14f0db92012-12-14 17:50:42 -08001672 // Return the index of the last instruction
Mathieu Chartier31f4c9f2017-12-08 15:46:11 -08001673 end = accessor.InsnsSizeInCodeUnits() - 1;
Elliott Hughes03181a82011-11-17 17:22:21 -08001674 }
1675
1676 expandBufAdd8BE(pReply, start);
1677 expandBufAdd8BE(pReply, end);
1678
1679 // Add numLines later
1680 size_t numLinesOffset = expandBufGetLength(pReply);
1681 expandBufAdd4BE(pReply, 0);
1682
Mathieu Chartier3e2e1232018-09-11 12:35:30 -07001683 int numItems = 0;
1684 accessor.DecodeDebugPositionInfo([&](const DexFile::PositionInfo& entry) {
1685 expandBufAdd8BE(pReply, entry.address_);
1686 expandBufAdd4BE(pReply, entry.line_);
1687 numItems++;
1688 return false;
1689 });
Elliott Hughes03181a82011-11-17 17:22:21 -08001690
Mathieu Chartier3e2e1232018-09-11 12:35:30 -07001691 JDWP::Set4BE(expandBufGetBuffer(pReply) + numLinesOffset, numItems);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001692}
1693
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001694void Dbg::OutputVariableTable(JDWP::RefTypeId, JDWP::MethodId method_id, bool with_generic,
1695 JDWP::ExpandBuf* pReply) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07001696 ArtMethod* m = FromMethodId(method_id);
David Sehr0225f8e2018-01-31 08:52:24 +00001697 CodeItemDebugInfoAccessor accessor(m->DexInstructionDebugInfo());
Elliott Hughesdbb40792011-11-18 17:05:22 -08001698
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001699 // arg_count considers doubles and longs to take 2 units.
1700 // variable_count considers everything to take 1 unit.
Sebastien Hertzaef0c912016-08-08 10:20:28 +02001701 expandBufAdd4BE(pReply, GetMethodNumArgRegistersIncludingThis(m));
Elliott Hughesdbb40792011-11-18 17:05:22 -08001702
Elliott Hughesc5b734a2011-12-01 17:20:58 -08001703 // We don't know the total number of variables yet, so leave a blank and update it later.
1704 size_t variable_count_offset = expandBufGetLength(pReply);
Elliott Hughesdbb40792011-11-18 17:05:22 -08001705 expandBufAdd4BE(pReply, 0);
1706
Mathieu Chartiere5afbf32018-09-12 17:51:54 -07001707 size_t variable_count = 0;
Elliott Hughesdbb40792011-11-18 17:05:22 -08001708
Mathieu Chartier31f4c9f2017-12-08 15:46:11 -08001709 if (accessor.HasCodeItem()) {
Mathieu Chartiere5afbf32018-09-12 17:51:54 -07001710 accessor.DecodeDebugLocalInfo(m->IsStatic(),
1711 m->GetDexMethodIndex(),
1712 [&](const DexFile::LocalInfo& entry)
1713 REQUIRES_SHARED(Locks::mutator_lock_) {
1714 uint16_t slot = entry.reg_;
1715 VLOG(jdwp) << StringPrintf(" %2zd: %d(%d) '%s' '%s' '%s' actual slot=%d mangled slot=%d",
1716 variable_count,
1717 entry.start_address_,
1718 entry.end_address_ - entry.start_address_,
1719 entry.name_,
1720 entry.descriptor_, entry.signature_,
1721 slot,
1722 MangleSlot(slot, m));
1723
1724 slot = MangleSlot(slot, m);
1725
1726 expandBufAdd8BE(pReply, entry.start_address_);
1727 expandBufAddUtf8String(pReply, entry.name_);
1728 expandBufAddUtf8String(pReply, entry.descriptor_);
1729 if (with_generic) {
1730 expandBufAddUtf8String(pReply, entry.signature_);
1731 }
1732 expandBufAdd4BE(pReply, entry.end_address_- entry.start_address_);
1733 expandBufAdd4BE(pReply, slot);
1734
1735 ++variable_count;
1736 });
Sebastien Hertzcb19ebf2014-03-11 15:26:35 +01001737 }
Elliott Hughesdbb40792011-11-18 17:05:22 -08001738
Mathieu Chartiere5afbf32018-09-12 17:51:54 -07001739 JDWP::Set4BE(expandBufGetBuffer(pReply) + variable_count_offset, variable_count);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001740}
1741
Jeff Hao579b0242013-11-18 13:16:49 -08001742void Dbg::OutputMethodReturnValue(JDWP::MethodId method_id, const JValue* return_value,
1743 JDWP::ExpandBuf* pReply) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07001744 ArtMethod* m = FromMethodId(method_id);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07001745 JDWP::JdwpTag tag = BasicTagFromDescriptor(m->GetShorty());
Jeff Hao579b0242013-11-18 13:16:49 -08001746 OutputJValue(tag, return_value, pReply);
1747}
1748
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02001749void Dbg::OutputFieldValue(JDWP::FieldId field_id, const JValue* field_value,
1750 JDWP::ExpandBuf* pReply) {
Mathieu Chartierc7853442015-03-27 14:35:38 -07001751 ArtField* f = FromFieldId(field_id);
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001752 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor());
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02001753 OutputJValue(tag, field_value, pReply);
1754}
1755
Elliott Hughes9777ba22013-01-17 09:04:19 -08001756JDWP::JdwpError Dbg::GetBytecodes(JDWP::RefTypeId, JDWP::MethodId method_id,
Ian Rogersc0542af2014-09-03 16:16:56 -07001757 std::vector<uint8_t>* bytecodes) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07001758 ArtMethod* m = FromMethodId(method_id);
Ian Rogersc0542af2014-09-03 16:16:56 -07001759 if (m == nullptr) {
Elliott Hughes9777ba22013-01-17 09:04:19 -08001760 return JDWP::ERR_INVALID_METHODID;
1761 }
David Sehr0225f8e2018-01-31 08:52:24 +00001762 CodeItemDataAccessor accessor(m->DexInstructionData());
Mathieu Chartier808c7a52017-12-15 11:19:33 -08001763 size_t byte_count = accessor.InsnsSizeInCodeUnits() * 2;
1764 const uint8_t* begin = reinterpret_cast<const uint8_t*>(accessor.Insns());
Elliott Hughes9777ba22013-01-17 09:04:19 -08001765 const uint8_t* end = begin + byte_count;
1766 for (const uint8_t* p = begin; p != end; ++p) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001767 bytecodes->push_back(*p);
Elliott Hughes9777ba22013-01-17 09:04:19 -08001768 }
1769 return JDWP::ERR_NONE;
1770}
1771
Elliott Hughes88d63092013-01-09 09:55:54 -08001772JDWP::JdwpTag Dbg::GetFieldBasicTag(JDWP::FieldId field_id) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001773 return BasicTagFromDescriptor(FromFieldId(field_id)->GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001774}
1775
Elliott Hughes88d63092013-01-09 09:55:54 -08001776JDWP::JdwpTag Dbg::GetStaticFieldBasicTag(JDWP::FieldId field_id) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001777 return BasicTagFromDescriptor(FromFieldId(field_id)->GetTypeDescriptor());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001778}
1779
Sebastien Hertz05c26b32015-06-11 18:42:58 +02001780static JValue GetArtFieldValue(ArtField* f, mirror::Object* o)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001781 REQUIRES_SHARED(Locks::mutator_lock_) {
Sebastien Hertz05c26b32015-06-11 18:42:58 +02001782 Primitive::Type fieldType = f->GetTypeAsPrimitiveType();
1783 JValue field_value;
1784 switch (fieldType) {
1785 case Primitive::kPrimBoolean:
1786 field_value.SetZ(f->GetBoolean(o));
1787 return field_value;
1788
1789 case Primitive::kPrimByte:
1790 field_value.SetB(f->GetByte(o));
1791 return field_value;
1792
1793 case Primitive::kPrimChar:
1794 field_value.SetC(f->GetChar(o));
1795 return field_value;
1796
1797 case Primitive::kPrimShort:
1798 field_value.SetS(f->GetShort(o));
1799 return field_value;
1800
1801 case Primitive::kPrimInt:
1802 case Primitive::kPrimFloat:
1803 // Int and Float must be treated as 32-bit values in JDWP.
1804 field_value.SetI(f->GetInt(o));
1805 return field_value;
1806
1807 case Primitive::kPrimLong:
1808 case Primitive::kPrimDouble:
1809 // Long and Double must be treated as 64-bit values in JDWP.
1810 field_value.SetJ(f->GetLong(o));
1811 return field_value;
1812
1813 case Primitive::kPrimNot:
Vladimir Markobcf17522018-06-01 13:14:32 +01001814 field_value.SetL(f->GetObject(o));
Sebastien Hertz05c26b32015-06-11 18:42:58 +02001815 return field_value;
1816
1817 case Primitive::kPrimVoid:
1818 LOG(FATAL) << "Attempt to read from field of type 'void'";
1819 UNREACHABLE();
1820 }
1821 LOG(FATAL) << "Attempt to read from field of unknown type";
1822 UNREACHABLE();
1823}
1824
Elliott Hughes88d63092013-01-09 09:55:54 -08001825static JDWP::JdwpError GetFieldValueImpl(JDWP::RefTypeId ref_type_id, JDWP::ObjectId object_id,
1826 JDWP::FieldId field_id, JDWP::ExpandBuf* pReply,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001827 bool is_static)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001828 REQUIRES_SHARED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001829 JDWP::JdwpError error;
1830 mirror::Class* c = DecodeClass(ref_type_id, &error);
1831 if (ref_type_id != 0 && c == nullptr) {
1832 return error;
Elliott Hughes0cf74332012-02-23 23:14:00 -08001833 }
1834
Jeff Haode19a252016-09-14 15:56:35 -07001835 Thread* self = Thread::Current();
1836 StackHandleScope<2> hs(self);
1837 MutableHandle<mirror::Object>
1838 o(hs.NewHandle(Dbg::GetObjectRegistry()->Get<mirror::Object*>(object_id, &error)));
Andreas Gampefa4333d2017-02-14 11:10:34 -08001839 if ((!is_static && o == nullptr) || error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001840 return JDWP::ERR_INVALID_OBJECT;
1841 }
Mathieu Chartierc7853442015-03-27 14:35:38 -07001842 ArtField* f = FromFieldId(field_id);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001843
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001844 mirror::Class* receiver_class = c;
Andreas Gampefa4333d2017-02-14 11:10:34 -08001845 if (receiver_class == nullptr && o != nullptr) {
Elliott Hughes0cf74332012-02-23 23:14:00 -08001846 receiver_class = o->GetClass();
1847 }
Jeff Haode19a252016-09-14 15:56:35 -07001848
Mathieu Chartier2cebb242015-04-21 16:50:40 -07001849 // TODO: should we give up now if receiver_class is null?
Ian Rogersc0542af2014-09-03 16:16:56 -07001850 if (receiver_class != nullptr && !f->GetDeclaringClass()->IsAssignableFrom(receiver_class)) {
David Sehr709b0702016-10-13 09:12:37 -07001851 LOG(INFO) << "ERR_INVALID_FIELDID: " << f->PrettyField() << " "
1852 << receiver_class->PrettyClass();
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001853 return JDWP::ERR_INVALID_FIELDID;
1854 }
Elliott Hughesaed4be92011-12-02 16:16:23 -08001855
Jeff Haode19a252016-09-14 15:56:35 -07001856 // Ensure the field's class is initialized.
1857 Handle<mirror::Class> klass(hs.NewHandle(f->GetDeclaringClass()));
1858 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(self, klass, true, false)) {
David Sehr709b0702016-10-13 09:12:37 -07001859 LOG(WARNING) << "Not able to initialize class for SetValues: "
1860 << mirror::Class::PrettyClass(klass.Get());
Jeff Haode19a252016-09-14 15:56:35 -07001861 }
1862
Elliott Hughes0cf74332012-02-23 23:14:00 -08001863 // The RI only enforces the static/non-static mismatch in one direction.
1864 // TODO: should we change the tests and check both?
1865 if (is_static) {
1866 if (!f->IsStatic()) {
1867 return JDWP::ERR_INVALID_FIELDID;
1868 }
1869 } else {
1870 if (f->IsStatic()) {
Sebastien Hertz05c26b32015-06-11 18:42:58 +02001871 LOG(WARNING) << "Ignoring non-nullptr receiver for ObjectReference.GetValues"
David Sehr709b0702016-10-13 09:12:37 -07001872 << " on static field " << f->PrettyField();
Elliott Hughes0cf74332012-02-23 23:14:00 -08001873 }
1874 }
jeffhao0dfbb7e2012-11-28 15:26:03 -08001875 if (f->IsStatic()) {
Jeff Haode19a252016-09-14 15:56:35 -07001876 o.Assign(f->GetDeclaringClass());
jeffhao0dfbb7e2012-11-28 15:26:03 -08001877 }
Elliott Hughes0cf74332012-02-23 23:14:00 -08001878
Jeff Haode19a252016-09-14 15:56:35 -07001879 JValue field_value(GetArtFieldValue(f, o.Get()));
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07001880 JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor());
Jeff Hao579b0242013-11-18 13:16:49 -08001881 Dbg::OutputJValue(tag, &field_value, pReply);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001882 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001883}
1884
Elliott Hughes88d63092013-01-09 09:55:54 -08001885JDWP::JdwpError Dbg::GetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001886 JDWP::ExpandBuf* pReply) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001887 return GetFieldValueImpl(0, object_id, field_id, pReply, false);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001888}
1889
Ian Rogersc0542af2014-09-03 16:16:56 -07001890JDWP::JdwpError Dbg::GetStaticFieldValue(JDWP::RefTypeId ref_type_id, JDWP::FieldId field_id,
1891 JDWP::ExpandBuf* pReply) {
Elliott Hughes88d63092013-01-09 09:55:54 -08001892 return GetFieldValueImpl(ref_type_id, 0, field_id, pReply, true);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001893}
1894
Sebastien Hertz05c26b32015-06-11 18:42:58 +02001895static JDWP::JdwpError SetArtFieldValue(ArtField* f, mirror::Object* o, uint64_t value, int width)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001896 REQUIRES_SHARED(Locks::mutator_lock_) {
Sebastien Hertz05c26b32015-06-11 18:42:58 +02001897 Primitive::Type fieldType = f->GetTypeAsPrimitiveType();
1898 // Debugging only happens at runtime so we know we are not running in a transaction.
1899 static constexpr bool kNoTransactionMode = false;
1900 switch (fieldType) {
1901 case Primitive::kPrimBoolean:
1902 CHECK_EQ(width, 1);
1903 f->SetBoolean<kNoTransactionMode>(o, static_cast<uint8_t>(value));
1904 return JDWP::ERR_NONE;
1905
1906 case Primitive::kPrimByte:
1907 CHECK_EQ(width, 1);
1908 f->SetByte<kNoTransactionMode>(o, static_cast<uint8_t>(value));
1909 return JDWP::ERR_NONE;
1910
1911 case Primitive::kPrimChar:
1912 CHECK_EQ(width, 2);
1913 f->SetChar<kNoTransactionMode>(o, static_cast<uint16_t>(value));
1914 return JDWP::ERR_NONE;
1915
1916 case Primitive::kPrimShort:
1917 CHECK_EQ(width, 2);
1918 f->SetShort<kNoTransactionMode>(o, static_cast<int16_t>(value));
1919 return JDWP::ERR_NONE;
1920
1921 case Primitive::kPrimInt:
1922 case Primitive::kPrimFloat:
1923 CHECK_EQ(width, 4);
1924 // Int and Float must be treated as 32-bit values in JDWP.
1925 f->SetInt<kNoTransactionMode>(o, static_cast<int32_t>(value));
1926 return JDWP::ERR_NONE;
1927
1928 case Primitive::kPrimLong:
1929 case Primitive::kPrimDouble:
1930 CHECK_EQ(width, 8);
1931 // Long and Double must be treated as 64-bit values in JDWP.
1932 f->SetLong<kNoTransactionMode>(o, value);
1933 return JDWP::ERR_NONE;
1934
1935 case Primitive::kPrimNot: {
1936 JDWP::JdwpError error;
1937 mirror::Object* v = Dbg::GetObjectRegistry()->Get<mirror::Object*>(value, &error);
1938 if (error != JDWP::ERR_NONE) {
1939 return JDWP::ERR_INVALID_OBJECT;
1940 }
1941 if (v != nullptr) {
Mathieu Chartier3398c782016-09-30 10:27:43 -07001942 ObjPtr<mirror::Class> field_type;
Sebastien Hertz05c26b32015-06-11 18:42:58 +02001943 {
1944 StackHandleScope<2> hs(Thread::Current());
1945 HandleWrapper<mirror::Object> h_v(hs.NewHandleWrapper(&v));
1946 HandleWrapper<mirror::Object> h_o(hs.NewHandleWrapper(&o));
Vladimir Marko4098a7a2017-11-06 16:00:51 +00001947 field_type = f->ResolveType();
Sebastien Hertz05c26b32015-06-11 18:42:58 +02001948 }
1949 if (!field_type->IsAssignableFrom(v->GetClass())) {
1950 return JDWP::ERR_INVALID_OBJECT;
1951 }
1952 }
1953 f->SetObject<kNoTransactionMode>(o, v);
1954 return JDWP::ERR_NONE;
1955 }
1956
1957 case Primitive::kPrimVoid:
1958 LOG(FATAL) << "Attempt to write to field of type 'void'";
1959 UNREACHABLE();
1960 }
1961 LOG(FATAL) << "Attempt to write to field of unknown type";
1962 UNREACHABLE();
1963}
1964
Elliott Hughes88d63092013-01-09 09:55:54 -08001965static JDWP::JdwpError SetFieldValueImpl(JDWP::ObjectId object_id, JDWP::FieldId field_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001966 uint64_t value, int width, bool is_static)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001967 REQUIRES_SHARED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001968 JDWP::JdwpError error;
Jeff Haode19a252016-09-14 15:56:35 -07001969 Thread* self = Thread::Current();
1970 StackHandleScope<2> hs(self);
1971 MutableHandle<mirror::Object>
1972 o(hs.NewHandle(Dbg::GetObjectRegistry()->Get<mirror::Object*>(object_id, &error)));
Andreas Gampefa4333d2017-02-14 11:10:34 -08001973 if ((!is_static && o == nullptr) || error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001974 return JDWP::ERR_INVALID_OBJECT;
1975 }
Mathieu Chartierc7853442015-03-27 14:35:38 -07001976 ArtField* f = FromFieldId(field_id);
Elliott Hughes0cf74332012-02-23 23:14:00 -08001977
Jeff Haode19a252016-09-14 15:56:35 -07001978 // Ensure the field's class is initialized.
1979 Handle<mirror::Class> klass(hs.NewHandle(f->GetDeclaringClass()));
1980 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(self, klass, true, false)) {
David Sehr709b0702016-10-13 09:12:37 -07001981 LOG(WARNING) << "Not able to initialize class for SetValues: "
1982 << mirror::Class::PrettyClass(klass.Get());
Jeff Haode19a252016-09-14 15:56:35 -07001983 }
1984
Elliott Hughes0cf74332012-02-23 23:14:00 -08001985 // The RI only enforces the static/non-static mismatch in one direction.
1986 // TODO: should we change the tests and check both?
1987 if (is_static) {
1988 if (!f->IsStatic()) {
1989 return JDWP::ERR_INVALID_FIELDID;
1990 }
1991 } else {
1992 if (f->IsStatic()) {
Sebastien Hertz05c26b32015-06-11 18:42:58 +02001993 LOG(WARNING) << "Ignoring non-nullptr receiver for ObjectReference.SetValues"
David Sehr709b0702016-10-13 09:12:37 -07001994 << " on static field " << f->PrettyField();
Elliott Hughes0cf74332012-02-23 23:14:00 -08001995 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001996 }
jeffhao0dfbb7e2012-11-28 15:26:03 -08001997 if (f->IsStatic()) {
Jeff Haode19a252016-09-14 15:56:35 -07001998 o.Assign(f->GetDeclaringClass());
jeffhao0dfbb7e2012-11-28 15:26:03 -08001999 }
Jeff Haode19a252016-09-14 15:56:35 -07002000 return SetArtFieldValue(f, o.Get(), value, width);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002001}
2002
Elliott Hughes88d63092013-01-09 09:55:54 -08002003JDWP::JdwpError Dbg::SetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id, uint64_t value,
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002004 int width) {
Elliott Hughes88d63092013-01-09 09:55:54 -08002005 return SetFieldValueImpl(object_id, field_id, value, width, false);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002006}
2007
Elliott Hughes88d63092013-01-09 09:55:54 -08002008JDWP::JdwpError Dbg::SetStaticFieldValue(JDWP::FieldId field_id, uint64_t value, int width) {
2009 return SetFieldValueImpl(0, field_id, value, width, true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002010}
2011
Sebastien Hertzb0b0b492014-09-15 11:27:27 +02002012JDWP::JdwpError Dbg::StringToUtf8(JDWP::ObjectId string_id, std::string* str) {
Ian Rogersc0542af2014-09-03 16:16:56 -07002013 JDWP::JdwpError error;
Sebastien Hertzb0b0b492014-09-15 11:27:27 +02002014 mirror::Object* obj = gRegistry->Get<mirror::Object*>(string_id, &error);
2015 if (error != JDWP::ERR_NONE) {
2016 return error;
2017 }
2018 if (obj == nullptr) {
2019 return JDWP::ERR_INVALID_OBJECT;
2020 }
2021 {
2022 ScopedObjectAccessUnchecked soa(Thread::Current());
Mathieu Chartier0795f232016-09-27 18:43:30 -07002023 ObjPtr<mirror::Class> java_lang_String =
2024 soa.Decode<mirror::Class>(WellKnownClasses::java_lang_String);
Sebastien Hertzb0b0b492014-09-15 11:27:27 +02002025 if (!java_lang_String->IsAssignableFrom(obj->GetClass())) {
2026 // This isn't a string.
2027 return JDWP::ERR_INVALID_STRING;
2028 }
2029 }
2030 *str = obj->AsString()->ToModifiedUtf8();
2031 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002032}
2033
Jeff Hao579b0242013-11-18 13:16:49 -08002034void Dbg::OutputJValue(JDWP::JdwpTag tag, const JValue* return_value, JDWP::ExpandBuf* pReply) {
2035 if (IsPrimitiveTag(tag)) {
2036 expandBufAdd1(pReply, tag);
2037 if (tag == JDWP::JT_BOOLEAN || tag == JDWP::JT_BYTE) {
2038 expandBufAdd1(pReply, return_value->GetI());
2039 } else if (tag == JDWP::JT_CHAR || tag == JDWP::JT_SHORT) {
2040 expandBufAdd2BE(pReply, return_value->GetI());
2041 } else if (tag == JDWP::JT_FLOAT || tag == JDWP::JT_INT) {
2042 expandBufAdd4BE(pReply, return_value->GetI());
2043 } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) {
2044 expandBufAdd8BE(pReply, return_value->GetJ());
2045 } else {
2046 CHECK_EQ(tag, JDWP::JT_VOID);
2047 }
2048 } else {
Ian Rogers98379392014-02-24 16:53:16 -08002049 ScopedObjectAccessUnchecked soa(Thread::Current());
Jeff Hao579b0242013-11-18 13:16:49 -08002050 mirror::Object* value = return_value->GetL();
Ian Rogers98379392014-02-24 16:53:16 -08002051 expandBufAdd1(pReply, TagFromObject(soa, value));
Jeff Hao579b0242013-11-18 13:16:49 -08002052 expandBufAddObjectId(pReply, gRegistry->Add(value));
2053 }
2054}
2055
Ian Rogersc0542af2014-09-03 16:16:56 -07002056JDWP::JdwpError Dbg::GetThreadName(JDWP::ObjectId thread_id, std::string* name) {
jeffhaoa77f0f62012-12-05 17:19:31 -08002057 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002058 JDWP::JdwpError error;
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01002059 DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002060 if (error != JDWP::ERR_NONE && error != JDWP::ERR_THREAD_NOT_ALIVE) {
2061 return error;
Elliott Hughesa2e54f62011-11-17 13:01:30 -08002062 }
Elliott Hughes221229c2013-01-08 18:17:50 -08002063
2064 // We still need to report the zombie threads' names, so we can't just call Thread::GetThreadName.
Ian Rogersc0542af2014-09-03 16:16:56 -07002065 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id, &error);
2066 CHECK(thread_object != nullptr) << error;
Mathieu Chartierc7853442015-03-27 14:35:38 -07002067 ArtField* java_lang_Thread_name_field =
Andreas Gampe08883de2016-11-08 13:20:52 -08002068 jni::DecodeArtField(WellKnownClasses::java_lang_Thread_name);
Mathieu Chartierf8ac97f2016-10-05 15:56:52 -07002069 ObjPtr<mirror::String> s(java_lang_Thread_name_field->GetObject(thread_object)->AsString());
Ian Rogersc0542af2014-09-03 16:16:56 -07002070 if (s != nullptr) {
2071 *name = s->ToModifiedUtf8();
Elliott Hughes221229c2013-01-08 18:17:50 -08002072 }
2073 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002074}
2075
Elliott Hughes221229c2013-01-08 18:17:50 -08002076JDWP::JdwpError Dbg::GetThreadGroup(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
Sebastien Hertza06430c2014-09-15 19:21:30 +02002077 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002078 JDWP::JdwpError error;
2079 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id, &error);
2080 if (error != JDWP::ERR_NONE) {
Elliott Hughes2435a572012-02-17 16:07:41 -08002081 return JDWP::ERR_INVALID_OBJECT;
2082 }
Mathieu Chartier268764d2016-09-13 12:09:38 -07002083 ScopedAssertNoThreadSuspension ants("Debugger: GetThreadGroup");
Elliott Hughes2435a572012-02-17 16:07:41 -08002084 // Okay, so it's an object, but is it actually a thread?
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01002085 DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002086 if (error == JDWP::ERR_THREAD_NOT_ALIVE) {
2087 // Zombie threads are in the null group.
2088 expandBufAddObjectId(pReply, JDWP::ObjectId(0));
Sebastien Hertz52d131d2014-03-13 16:17:40 +01002089 error = JDWP::ERR_NONE;
2090 } else if (error == JDWP::ERR_NONE) {
Mathieu Chartier0795f232016-09-27 18:43:30 -07002091 ObjPtr<mirror::Class> c = soa.Decode<mirror::Class>(WellKnownClasses::java_lang_Thread);
Sebastien Hertz52d131d2014-03-13 16:17:40 +01002092 CHECK(c != nullptr);
Andreas Gampe08883de2016-11-08 13:20:52 -08002093 ArtField* f = jni::DecodeArtField(WellKnownClasses::java_lang_Thread_group);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07002094 CHECK(f != nullptr);
Mathieu Chartier3398c782016-09-30 10:27:43 -07002095 ObjPtr<mirror::Object> group = f->GetObject(thread_object);
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07002096 CHECK(group != nullptr);
Sebastien Hertz52d131d2014-03-13 16:17:40 +01002097 JDWP::ObjectId thread_group_id = gRegistry->Add(group);
2098 expandBufAddObjectId(pReply, thread_group_id);
Elliott Hughes221229c2013-01-08 18:17:50 -08002099 }
Sebastien Hertz52d131d2014-03-13 16:17:40 +01002100 return error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002101}
2102
Sebastien Hertza06430c2014-09-15 19:21:30 +02002103static mirror::Object* DecodeThreadGroup(ScopedObjectAccessUnchecked& soa,
2104 JDWP::ObjectId thread_group_id, JDWP::JdwpError* error)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07002105 REQUIRES_SHARED(Locks::mutator_lock_) {
Sebastien Hertz6995c602014-09-09 12:10:13 +02002106 mirror::Object* thread_group = Dbg::GetObjectRegistry()->Get<mirror::Object*>(thread_group_id,
2107 error);
Sebastien Hertza06430c2014-09-15 19:21:30 +02002108 if (*error != JDWP::ERR_NONE) {
2109 return nullptr;
2110 }
2111 if (thread_group == nullptr) {
2112 *error = JDWP::ERR_INVALID_OBJECT;
2113 return nullptr;
2114 }
Mathieu Chartier0795f232016-09-27 18:43:30 -07002115 ObjPtr<mirror::Class> c =
2116 soa.Decode<mirror::Class>(WellKnownClasses::java_lang_ThreadGroup);
Ian Rogers98379392014-02-24 16:53:16 -08002117 CHECK(c != nullptr);
Sebastien Hertza06430c2014-09-15 19:21:30 +02002118 if (!c->IsAssignableFrom(thread_group->GetClass())) {
2119 // This is not a java.lang.ThreadGroup.
2120 *error = JDWP::ERR_INVALID_THREAD_GROUP;
2121 return nullptr;
2122 }
2123 *error = JDWP::ERR_NONE;
2124 return thread_group;
2125}
2126
2127JDWP::JdwpError Dbg::GetThreadGroupName(JDWP::ObjectId thread_group_id, JDWP::ExpandBuf* pReply) {
2128 ScopedObjectAccessUnchecked soa(Thread::Current());
2129 JDWP::JdwpError error;
2130 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error);
2131 if (error != JDWP::ERR_NONE) {
2132 return error;
2133 }
Mathieu Chartier268764d2016-09-13 12:09:38 -07002134 ScopedAssertNoThreadSuspension ants("Debugger: GetThreadGroupName");
Andreas Gampe08883de2016-11-08 13:20:52 -08002135 ArtField* f = jni::DecodeArtField(WellKnownClasses::java_lang_ThreadGroup_name);
Ian Rogersc0542af2014-09-03 16:16:56 -07002136 CHECK(f != nullptr);
Mathieu Chartier3398c782016-09-30 10:27:43 -07002137 ObjPtr<mirror::String> s = f->GetObject(thread_group)->AsString();
Sebastien Hertza06430c2014-09-15 19:21:30 +02002138
2139 std::string thread_group_name(s->ToModifiedUtf8());
2140 expandBufAddUtf8String(pReply, thread_group_name);
2141 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002142}
2143
Sebastien Hertza06430c2014-09-15 19:21:30 +02002144JDWP::JdwpError Dbg::GetThreadGroupParent(JDWP::ObjectId thread_group_id, JDWP::ExpandBuf* pReply) {
Ian Rogers98379392014-02-24 16:53:16 -08002145 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002146 JDWP::JdwpError error;
Sebastien Hertza06430c2014-09-15 19:21:30 +02002147 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error);
2148 if (error != JDWP::ERR_NONE) {
2149 return error;
2150 }
Mathieu Chartier3398c782016-09-30 10:27:43 -07002151 ObjPtr<mirror::Object> parent;
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07002152 {
Mathieu Chartier268764d2016-09-13 12:09:38 -07002153 ScopedAssertNoThreadSuspension ants("Debugger: GetThreadGroupParent");
Andreas Gampe08883de2016-11-08 13:20:52 -08002154 ArtField* f = jni::DecodeArtField(WellKnownClasses::java_lang_ThreadGroup_parent);
Mathieu Chartier2d5f39e2014-09-19 17:52:37 -07002155 CHECK(f != nullptr);
2156 parent = f->GetObject(thread_group);
2157 }
Sebastien Hertza06430c2014-09-15 19:21:30 +02002158 JDWP::ObjectId parent_group_id = gRegistry->Add(parent);
2159 expandBufAddObjectId(pReply, parent_group_id);
2160 return JDWP::ERR_NONE;
2161}
2162
Andreas Gampe08883de2016-11-08 13:20:52 -08002163static void GetChildThreadGroups(mirror::Object* thread_group,
Sebastien Hertza06430c2014-09-15 19:21:30 +02002164 std::vector<JDWP::ObjectId>* child_thread_group_ids)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07002165 REQUIRES_SHARED(Locks::mutator_lock_) {
Sebastien Hertza06430c2014-09-15 19:21:30 +02002166 CHECK(thread_group != nullptr);
2167
Przemyslaw Szczepaniak464595f2015-11-24 11:59:59 +00002168 // Get the int "ngroups" count of this thread group...
Andreas Gampe08883de2016-11-08 13:20:52 -08002169 ArtField* ngroups_field = jni::DecodeArtField(WellKnownClasses::java_lang_ThreadGroup_ngroups);
Przemyslaw Szczepaniak464595f2015-11-24 11:59:59 +00002170 CHECK(ngroups_field != nullptr);
2171 const int32_t size = ngroups_field->GetInt(thread_group);
2172 if (size == 0) {
2173 return;
Sebastien Hertze49e1952014-10-13 11:27:13 +02002174 }
Sebastien Hertza06430c2014-09-15 19:21:30 +02002175
Przemyslaw Szczepaniak464595f2015-11-24 11:59:59 +00002176 // Get the ThreadGroup[] "groups" out of this thread group...
Andreas Gampe08883de2016-11-08 13:20:52 -08002177 ArtField* groups_field = jni::DecodeArtField(WellKnownClasses::java_lang_ThreadGroup_groups);
Mathieu Chartier3398c782016-09-30 10:27:43 -07002178 ObjPtr<mirror::Object> groups_array = groups_field->GetObject(thread_group);
Przemyslaw Szczepaniak464595f2015-11-24 11:59:59 +00002179
2180 CHECK(groups_array != nullptr);
2181 CHECK(groups_array->IsObjectArray());
2182
Mathieu Chartier3398c782016-09-30 10:27:43 -07002183 ObjPtr<mirror::ObjectArray<mirror::Object>> groups_array_as_array =
Przemyslaw Szczepaniak464595f2015-11-24 11:59:59 +00002184 groups_array->AsObjectArray<mirror::Object>();
Sebastien Hertza06430c2014-09-15 19:21:30 +02002185
2186 // Copy the first 'size' elements out of the array into the result.
Sebastien Hertz6995c602014-09-09 12:10:13 +02002187 ObjectRegistry* registry = Dbg::GetObjectRegistry();
Sebastien Hertza06430c2014-09-15 19:21:30 +02002188 for (int32_t i = 0; i < size; ++i) {
Przemyslaw Szczepaniak464595f2015-11-24 11:59:59 +00002189 child_thread_group_ids->push_back(registry->Add(groups_array_as_array->Get(i)));
Sebastien Hertza06430c2014-09-15 19:21:30 +02002190 }
2191}
2192
2193JDWP::JdwpError Dbg::GetThreadGroupChildren(JDWP::ObjectId thread_group_id,
2194 JDWP::ExpandBuf* pReply) {
2195 ScopedObjectAccessUnchecked soa(Thread::Current());
2196 JDWP::JdwpError error;
2197 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error);
2198 if (error != JDWP::ERR_NONE) {
2199 return error;
2200 }
2201
2202 // Add child threads.
2203 {
2204 std::vector<JDWP::ObjectId> child_thread_ids;
2205 GetThreads(thread_group, &child_thread_ids);
2206 expandBufAdd4BE(pReply, child_thread_ids.size());
2207 for (JDWP::ObjectId child_thread_id : child_thread_ids) {
2208 expandBufAddObjectId(pReply, child_thread_id);
2209 }
2210 }
2211
2212 // Add child thread groups.
2213 {
2214 std::vector<JDWP::ObjectId> child_thread_groups_ids;
Andreas Gampe08883de2016-11-08 13:20:52 -08002215 GetChildThreadGroups(thread_group, &child_thread_groups_ids);
Sebastien Hertza06430c2014-09-15 19:21:30 +02002216 expandBufAdd4BE(pReply, child_thread_groups_ids.size());
2217 for (JDWP::ObjectId child_thread_group_id : child_thread_groups_ids) {
2218 expandBufAddObjectId(pReply, child_thread_group_id);
2219 }
2220 }
2221
2222 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002223}
2224
2225JDWP::ObjectId Dbg::GetSystemThreadGroupId() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002226 ScopedObjectAccessUnchecked soa(Thread::Current());
Andreas Gampe08883de2016-11-08 13:20:52 -08002227 ArtField* f = jni::DecodeArtField(WellKnownClasses::java_lang_ThreadGroup_systemThreadGroup);
Mathieu Chartier3398c782016-09-30 10:27:43 -07002228 ObjPtr<mirror::Object> group = f->GetObject(f->GetDeclaringClass());
Ian Rogers365c1022012-06-22 15:05:28 -07002229 return gRegistry->Add(group);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002230}
2231
Jeff Hao920af3e2013-08-28 15:46:38 -07002232JDWP::JdwpThreadStatus Dbg::ToJdwpThreadStatus(ThreadState state) {
2233 switch (state) {
2234 case kBlocked:
2235 return JDWP::TS_MONITOR;
2236 case kNative:
2237 case kRunnable:
2238 case kSuspended:
2239 return JDWP::TS_RUNNING;
2240 case kSleeping:
2241 return JDWP::TS_SLEEPING;
2242 case kStarting:
2243 case kTerminated:
2244 return JDWP::TS_ZOMBIE;
2245 case kTimedWaiting:
Alex Light77fee872017-09-05 14:51:49 -07002246 case kWaitingForTaskProcessor:
2247 case kWaitingForLockInflation:
Sebastien Hertzbae182c2013-12-17 10:42:03 +01002248 case kWaitingForCheckPointsToRun:
Jeff Hao920af3e2013-08-28 15:46:38 -07002249 case kWaitingForDebuggerSend:
2250 case kWaitingForDebuggerSuspension:
2251 case kWaitingForDebuggerToAttach:
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01002252 case kWaitingForDeoptimization:
Jeff Hao920af3e2013-08-28 15:46:38 -07002253 case kWaitingForGcToComplete:
Mathieu Chartierb43390c2015-05-12 10:47:11 -07002254 case kWaitingForGetObjectsAllocated:
Jeff Hao920af3e2013-08-28 15:46:38 -07002255 case kWaitingForJniOnLoad:
Sebastien Hertzbae182c2013-12-17 10:42:03 +01002256 case kWaitingForMethodTracingStart:
Jeff Hao920af3e2013-08-28 15:46:38 -07002257 case kWaitingForSignalCatcherOutput:
Hiroshi Yamauchi0c8c3032015-01-16 16:54:35 -08002258 case kWaitingForVisitObjects:
Jeff Hao920af3e2013-08-28 15:46:38 -07002259 case kWaitingInMainDebuggerLoop:
2260 case kWaitingInMainSignalCatcherLoop:
2261 case kWaitingPerformingGc:
Mathieu Chartier90ef3db2015-08-04 15:19:41 -07002262 case kWaitingWeakGcRootRead:
Hiroshi Yamauchi76f55b02015-08-21 16:10:39 -07002263 case kWaitingForGcThreadFlip:
Jeff Hao920af3e2013-08-28 15:46:38 -07002264 case kWaiting:
2265 return JDWP::TS_WAIT;
2266 // Don't add a 'default' here so the compiler can spot incompatible enum changes.
2267 }
2268 LOG(FATAL) << "Unknown thread state: " << state;
Elliott Hughesc1896c92018-11-29 11:33:18 -08002269 UNREACHABLE();
Jeff Hao920af3e2013-08-28 15:46:38 -07002270}
2271
Sebastien Hertz52d131d2014-03-13 16:17:40 +01002272JDWP::JdwpError Dbg::GetThreadStatus(JDWP::ObjectId thread_id, JDWP::JdwpThreadStatus* pThreadStatus,
2273 JDWP::JdwpSuspendStatus* pSuspendStatus) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002274 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes499c5132011-11-17 14:55:11 -08002275
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002276 *pSuspendStatus = JDWP::SUSPEND_STATUS_NOT_SUSPENDED;
2277
Ian Rogersc0542af2014-09-03 16:16:56 -07002278 JDWP::JdwpError error;
2279 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002280 if (error != JDWP::ERR_NONE) {
2281 if (error == JDWP::ERR_THREAD_NOT_ALIVE) {
2282 *pThreadStatus = JDWP::TS_ZOMBIE;
Elliott Hughes221229c2013-01-08 18:17:50 -08002283 return JDWP::ERR_NONE;
2284 }
2285 return error;
Elliott Hughes499c5132011-11-17 14:55:11 -08002286 }
2287
Elliott Hughes9e0c1752013-01-09 14:02:58 -08002288 if (IsSuspendedForDebugger(soa, thread)) {
2289 *pSuspendStatus = JDWP::SUSPEND_STATUS_SUSPENDED;
Elliott Hughes499c5132011-11-17 14:55:11 -08002290 }
2291
Jeff Hao920af3e2013-08-28 15:46:38 -07002292 *pThreadStatus = ToJdwpThreadStatus(thread->GetState());
Elliott Hughes221229c2013-01-08 18:17:50 -08002293 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002294}
2295
Elliott Hughes221229c2013-01-08 18:17:50 -08002296JDWP::JdwpError Dbg::GetThreadDebugSuspendCount(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002297 ScopedObjectAccess soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002298 JDWP::JdwpError error;
2299 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002300 if (error != JDWP::ERR_NONE) {
2301 return error;
Elliott Hughes2435a572012-02-17 16:07:41 -08002302 }
Ian Rogers50b35e22012-10-04 10:09:15 -07002303 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002304 expandBufAdd4BE(pReply, thread->GetDebugSuspendCount());
Elliott Hughes2435a572012-02-17 16:07:41 -08002305 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002306}
2307
Elliott Hughesf9501702013-01-11 11:22:27 -08002308JDWP::JdwpError Dbg::Interrupt(JDWP::ObjectId thread_id) {
2309 ScopedObjectAccess soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002310 JDWP::JdwpError error;
2311 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughesf9501702013-01-11 11:22:27 -08002312 if (error != JDWP::ERR_NONE) {
2313 return error;
2314 }
Ian Rogersdd7624d2014-03-14 17:43:00 -07002315 thread->Interrupt(soa.Self());
Elliott Hughesf9501702013-01-11 11:22:27 -08002316 return JDWP::ERR_NONE;
2317}
2318
Andreas Gampe08883de2016-11-08 13:20:52 -08002319static bool IsInDesiredThreadGroup(mirror::Object* desired_thread_group, mirror::Object* peer)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07002320 REQUIRES_SHARED(Locks::mutator_lock_) {
Sebastien Hertz070f7322014-09-09 12:08:49 +02002321 // Do we want threads from all thread groups?
2322 if (desired_thread_group == nullptr) {
2323 return true;
2324 }
Andreas Gampe08883de2016-11-08 13:20:52 -08002325 ArtField* thread_group_field = jni::DecodeArtField(WellKnownClasses::java_lang_Thread_group);
Sebastien Hertz070f7322014-09-09 12:08:49 +02002326 DCHECK(thread_group_field != nullptr);
Mathieu Chartier3398c782016-09-30 10:27:43 -07002327 ObjPtr<mirror::Object> group = thread_group_field->GetObject(peer);
Sebastien Hertz070f7322014-09-09 12:08:49 +02002328 return (group == desired_thread_group);
2329}
2330
Sebastien Hertza06430c2014-09-15 19:21:30 +02002331void Dbg::GetThreads(mirror::Object* thread_group, std::vector<JDWP::ObjectId>* thread_ids) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002332 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz070f7322014-09-09 12:08:49 +02002333 std::list<Thread*> all_threads_list;
2334 {
2335 MutexLock mu(Thread::Current(), *Locks::thread_list_lock_);
2336 all_threads_list = Runtime::Current()->GetThreadList()->GetList();
2337 }
2338 for (Thread* t : all_threads_list) {
2339 if (t == Dbg::GetDebugThread()) {
2340 // Skip the JDWP thread. Some debuggers get bent out of shape when they can't suspend and
2341 // query all threads, so it's easier if we just don't tell them about this thread.
2342 continue;
2343 }
2344 if (t->IsStillStarting()) {
2345 // This thread is being started (and has been registered in the thread list). However, it is
2346 // not completely started yet so we must ignore it.
2347 continue;
2348 }
Nicolas Geoffraycafa0812017-02-15 18:27:34 +00002349 mirror::Object* peer = t->GetPeerFromOtherThread();
Sebastien Hertz070f7322014-09-09 12:08:49 +02002350 if (peer == nullptr) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -07002351 // peer might be null if the thread is still starting up. We can't tell the debugger about
Sebastien Hertz070f7322014-09-09 12:08:49 +02002352 // this thread yet.
2353 // TODO: if we identified threads to the debugger by their Thread*
2354 // rather than their peer's mirror::Object*, we could fix this.
2355 // Doing so might help us report ZOMBIE threads too.
2356 continue;
2357 }
Andreas Gampe08883de2016-11-08 13:20:52 -08002358 if (IsInDesiredThreadGroup(thread_group, peer)) {
Sebastien Hertz070f7322014-09-09 12:08:49 +02002359 thread_ids->push_back(gRegistry->Add(peer));
2360 }
2361 }
Elliott Hughescaf76542012-06-28 16:08:22 -07002362}
Elliott Hughesa2155262011-11-16 16:26:58 -08002363
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07002364static int GetStackDepth(Thread* thread) REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampec7d878d2018-11-19 18:42:06 +00002365 size_t depth = 0u;
2366 StackVisitor::WalkStack(
2367 [&depth](const StackVisitor* visitor) REQUIRES_SHARED(Locks::mutator_lock_) {
2368 if (!visitor->GetMethod()->IsRuntimeMethod()) {
2369 ++depth;
2370 }
2371 return true;
2372 },
2373 thread,
2374 /* context= */ nullptr,
2375 StackVisitor::StackWalkKind::kIncludeInlinedFrames);
2376 return depth;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002377}
2378
Ian Rogersc0542af2014-09-03 16:16:56 -07002379JDWP::JdwpError Dbg::GetThreadFrameCount(JDWP::ObjectId thread_id, size_t* result) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002380 ScopedObjectAccess soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002381 JDWP::JdwpError error;
2382 *result = 0;
2383 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002384 if (error != JDWP::ERR_NONE) {
2385 return error;
2386 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08002387 if (!IsSuspendedForDebugger(soa, thread)) {
2388 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2389 }
Ian Rogersc0542af2014-09-03 16:16:56 -07002390 *result = GetStackDepth(thread);
Elliott Hughes221229c2013-01-08 18:17:50 -08002391 return JDWP::ERR_NONE;
Elliott Hughes86964332012-02-15 19:37:42 -08002392}
2393
Andreas Gampec7d878d2018-11-19 18:42:06 +00002394JDWP::JdwpError Dbg::GetThreadFrames(JDWP::ObjectId thread_id,
2395 const size_t start_frame,
2396 const size_t frame_count,
2397 JDWP::ExpandBuf* buf) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002398 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002399 JDWP::JdwpError error;
2400 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002401 if (error != JDWP::ERR_NONE) {
2402 return error;
2403 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08002404 if (!IsSuspendedForDebugger(soa, thread)) {
2405 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2406 }
Andreas Gampec7d878d2018-11-19 18:42:06 +00002407
2408 expandBufAdd4BE(buf, frame_count);
2409
2410 size_t depth = 0u;
2411 StackVisitor::WalkStack(
2412 [&](StackVisitor* visitor) REQUIRES_SHARED(Locks::mutator_lock_) {
2413 if (visitor->GetMethod()->IsRuntimeMethod()) {
2414 return true; // The debugger can't do anything useful with a frame that has no Method*.
2415 }
2416 if (depth >= start_frame + frame_count) {
2417 return false;
2418 }
2419 if (depth >= start_frame) {
2420 JDWP::FrameId frame_id(visitor->GetFrameId());
2421 JDWP::JdwpLocation location;
2422 SetJdwpLocation(&location, visitor->GetMethod(), visitor->GetDexPc());
2423 VLOG(jdwp)
2424 << StringPrintf(" Frame %3zd: id=%3" PRIu64 " ", depth, frame_id) << location;
2425 expandBufAdd8BE(buf, frame_id);
2426 expandBufAddLocation(buf, location);
2427 }
2428 ++depth;
2429 return true;
2430 },
2431 thread,
2432 /* context= */ nullptr,
2433 StackVisitor::StackWalkKind::kIncludeInlinedFrames);
2434
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002435 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002436}
2437
2438JDWP::ObjectId Dbg::GetThreadSelfId() {
Sebastien Hertz6995c602014-09-09 12:10:13 +02002439 return GetThreadId(Thread::Current());
2440}
2441
2442JDWP::ObjectId Dbg::GetThreadId(Thread* thread) {
Mathieu Chartierdbe6f462012-09-25 16:54:50 -07002443 ScopedObjectAccessUnchecked soa(Thread::Current());
Nicolas Geoffraycafa0812017-02-15 18:27:34 +00002444 return gRegistry->Add(thread->GetPeerFromOtherThread());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002445}
2446
Elliott Hughes475fc232011-10-25 15:00:35 -07002447void Dbg::SuspendVM() {
Hiroshi Yamauchi8f95cf32016-04-19 11:14:06 -07002448 // Avoid a deadlock between GC and debugger where GC gets suspended during GC. b/25800335.
2449 gc::ScopedGCCriticalSection gcs(Thread::Current(),
2450 gc::kGcCauseDebugger,
2451 gc::kCollectorTypeDebugger);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002452 Runtime::Current()->GetThreadList()->SuspendAllForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002453}
2454
2455void Dbg::ResumeVM() {
Sebastien Hertz253fa552014-10-14 17:27:15 +02002456 Runtime::Current()->GetThreadList()->ResumeAllForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002457}
2458
Elliott Hughes221229c2013-01-08 18:17:50 -08002459JDWP::JdwpError Dbg::SuspendThread(JDWP::ObjectId thread_id, bool request_suspension) {
Ian Rogersf3d874c2014-07-17 18:52:42 -07002460 Thread* self = Thread::Current();
Ian Rogersc0542af2014-09-03 16:16:56 -07002461 ScopedLocalRef<jobject> peer(self->GetJniEnv(), nullptr);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002462 {
Ian Rogersf3d874c2014-07-17 18:52:42 -07002463 ScopedObjectAccess soa(self);
Ian Rogersc0542af2014-09-03 16:16:56 -07002464 JDWP::JdwpError error;
2465 peer.reset(soa.AddLocalReference<jobject>(gRegistry->Get<mirror::Object*>(thread_id, &error)));
Elliott Hughes4e235312011-12-02 11:34:15 -08002466 }
Ian Rogersc0542af2014-09-03 16:16:56 -07002467 if (peer.get() == nullptr) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002468 return JDWP::ERR_THREAD_NOT_ALIVE;
2469 }
Ian Rogers4ad5cd32014-11-11 23:08:07 -08002470 // Suspend thread to build stack trace.
Elliott Hughesf327e072013-01-09 16:01:26 -08002471 bool timed_out;
Brian Carlstromba32de42014-08-27 23:43:46 -07002472 ThreadList* thread_list = Runtime::Current()->GetThreadList();
Sebastien Hertzcdd798d2017-04-18 18:28:51 +02002473 Thread* thread = thread_list->SuspendThreadByPeer(peer.get(),
2474 request_suspension,
Alex Light46f93402017-06-29 11:59:50 -07002475 SuspendReason::kForDebugger,
Brian Carlstromba32de42014-08-27 23:43:46 -07002476 &timed_out);
Ian Rogersc0542af2014-09-03 16:16:56 -07002477 if (thread != nullptr) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002478 return JDWP::ERR_NONE;
Elliott Hughesf327e072013-01-09 16:01:26 -08002479 } else if (timed_out) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002480 return JDWP::ERR_INTERNAL;
2481 } else {
2482 return JDWP::ERR_THREAD_NOT_ALIVE;
2483 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002484}
2485
Elliott Hughes221229c2013-01-08 18:17:50 -08002486void Dbg::ResumeThread(JDWP::ObjectId thread_id) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002487 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002488 JDWP::JdwpError error;
2489 mirror::Object* peer = gRegistry->Get<mirror::Object*>(thread_id, &error);
2490 CHECK(peer != nullptr) << error;
jeffhaoa77f0f62012-12-05 17:19:31 -08002491 Thread* thread;
2492 {
2493 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2494 thread = Thread::FromManagedThread(soa, peer);
2495 }
Ian Rogersc0542af2014-09-03 16:16:56 -07002496 if (thread == nullptr) {
Elliott Hughes4e235312011-12-02 11:34:15 -08002497 LOG(WARNING) << "No such thread for resume: " << peer;
2498 return;
2499 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002500 bool needs_resume;
2501 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002502 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Sebastien Hertz70d60272017-04-14 14:18:36 +02002503 needs_resume = thread->GetDebugSuspendCount() > 0;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002504 }
2505 if (needs_resume) {
Alex Light88fd7202017-06-30 08:31:59 -07002506 bool resumed = Runtime::Current()->GetThreadList()->Resume(thread, SuspendReason::kForDebugger);
2507 DCHECK(resumed);
Elliott Hughes546b9862012-06-20 16:06:13 -07002508 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002509}
2510
2511void Dbg::SuspendSelf() {
Elliott Hughes475fc232011-10-25 15:00:35 -07002512 Runtime::Current()->GetThreadList()->SuspendSelfForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002513}
2514
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002515JDWP::JdwpError Dbg::GetThisObject(JDWP::ObjectId thread_id, JDWP::FrameId frame_id,
2516 JDWP::ObjectId* result) {
2517 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz69206392015-04-07 15:54:25 +02002518 JDWP::JdwpError error;
2519 Thread* thread = DecodeThread(soa, thread_id, &error);
2520 if (error != JDWP::ERR_NONE) {
2521 return error;
2522 }
2523 if (!IsSuspendedForDebugger(soa, thread)) {
2524 return JDWP::ERR_THREAD_NOT_SUSPENDED;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002525 }
Ian Rogers700a4022014-05-19 16:49:03 -07002526 std::unique_ptr<Context> context(Context::Create());
Andreas Gampec7d878d2018-11-19 18:42:06 +00002527 mirror::Object* this_object = nullptr;
2528 StackVisitor::WalkStack(
2529 [&](art::StackVisitor* stack_visitor) REQUIRES_SHARED(Locks::mutator_lock_) {
2530 if (frame_id != stack_visitor->GetFrameId()) {
2531 return true; // continue
2532 } else {
2533 this_object = stack_visitor->GetThisObject();
2534 return false;
2535 }
2536 },
2537 thread,
2538 context.get(),
2539 art::StackVisitor::StackWalkKind::kIncludeInlinedFrames);
2540 *result = gRegistry->Add(this_object);
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002541 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002542}
2543
Andreas Gampec7d878d2018-11-19 18:42:06 +00002544template <typename FrameHandler>
2545static JDWP::JdwpError FindAndHandleNonNativeFrame(Thread* thread,
2546 JDWP::FrameId frame_id,
2547 const FrameHandler& handler)
2548 REQUIRES_SHARED(Locks::mutator_lock_) {
2549 JDWP::JdwpError result = JDWP::ERR_INVALID_FRAMEID;
2550 std::unique_ptr<Context> context(Context::Create());
2551 StackVisitor::WalkStack(
2552 [&](art::StackVisitor* stack_visitor) REQUIRES_SHARED(Locks::mutator_lock_) {
2553 if (stack_visitor->GetFrameId() != frame_id) {
2554 return true; // Not our frame, carry on.
2555 }
2556 ArtMethod* m = stack_visitor->GetMethod();
2557 if (m->IsNative()) {
2558 // We can't read/write local value from/into native method.
2559 result = JDWP::ERR_OPAQUE_FRAME;
2560 } else {
2561 // We found our frame.
2562 result = handler(stack_visitor);
2563 }
2564 return false;
2565 },
2566 thread,
2567 context.get(),
2568 art::StackVisitor::StackWalkKind::kIncludeInlinedFrames);
2569 return result;
2570}
Sebastien Hertz8009f392014-09-01 17:07:11 +02002571
2572JDWP::JdwpError Dbg::GetLocalValues(JDWP::Request* request, JDWP::ExpandBuf* pReply) {
2573 JDWP::ObjectId thread_id = request->ReadThreadId();
2574 JDWP::FrameId frame_id = request->ReadFrameId();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002575
2576 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz69206392015-04-07 15:54:25 +02002577 JDWP::JdwpError error;
2578 Thread* thread = DecodeThread(soa, thread_id, &error);
2579 if (error != JDWP::ERR_NONE) {
2580 return error;
2581 }
2582 if (!IsSuspendedForDebugger(soa, thread)) {
2583 return JDWP::ERR_THREAD_NOT_SUSPENDED;
Elliott Hughes221229c2013-01-08 18:17:50 -08002584 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002585
Andreas Gampec7d878d2018-11-19 18:42:06 +00002586 return FindAndHandleNonNativeFrame(
2587 thread,
2588 frame_id,
2589 [&](art::StackVisitor* stack_visitor) REQUIRES_SHARED(Locks::mutator_lock_) {
2590 // Read the values from visitor's context.
2591 int32_t slot_count = request->ReadSigned32("slot count");
2592 expandBufAdd4BE(pReply, slot_count); /* "int values" */
2593 for (int32_t i = 0; i < slot_count; ++i) {
2594 uint32_t slot = request->ReadUnsigned32("slot");
2595 JDWP::JdwpTag reqSigByte = request->ReadTag();
Sebastien Hertz8009f392014-09-01 17:07:11 +02002596
Andreas Gampec7d878d2018-11-19 18:42:06 +00002597 VLOG(jdwp) << " --> slot " << slot << " " << reqSigByte;
Sebastien Hertz8009f392014-09-01 17:07:11 +02002598
Andreas Gampec7d878d2018-11-19 18:42:06 +00002599 size_t width = Dbg::GetTagWidth(reqSigByte);
2600 uint8_t* ptr = expandBufAddSpace(pReply, width + 1);
2601 error = Dbg::GetLocalValue(*stack_visitor, soa, slot, reqSigByte, ptr, width);
2602 if (error != JDWP::ERR_NONE) {
2603 return error;
2604 }
2605 }
2606 return JDWP::ERR_NONE;
2607 });
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002608}
2609
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002610constexpr JDWP::JdwpError kStackFrameLocalAccessError = JDWP::ERR_ABSENT_INFORMATION;
2611
2612static std::string GetStackContextAsString(const StackVisitor& visitor)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07002613 REQUIRES_SHARED(Locks::mutator_lock_) {
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002614 return StringPrintf(" at DEX pc 0x%08x in method %s", visitor.GetDexPc(false),
David Sehr709b0702016-10-13 09:12:37 -07002615 ArtMethod::PrettyMethod(visitor.GetMethod()).c_str());
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002616}
2617
2618static JDWP::JdwpError FailGetLocalValue(const StackVisitor& visitor, uint16_t vreg,
2619 JDWP::JdwpTag tag)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07002620 REQUIRES_SHARED(Locks::mutator_lock_) {
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002621 LOG(ERROR) << "Failed to read " << tag << " local from register v" << vreg
2622 << GetStackContextAsString(visitor);
2623 return kStackFrameLocalAccessError;
2624}
2625
Sebastien Hertz8009f392014-09-01 17:07:11 +02002626JDWP::JdwpError Dbg::GetLocalValue(const StackVisitor& visitor, ScopedObjectAccessUnchecked& soa,
2627 int slot, JDWP::JdwpTag tag, uint8_t* buf, size_t width) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07002628 ArtMethod* m = visitor.GetMethod();
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002629 JDWP::JdwpError error = JDWP::ERR_NONE;
2630 uint16_t vreg = DemangleSlot(slot, m, &error);
2631 if (error != JDWP::ERR_NONE) {
2632 return error;
2633 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002634 // TODO: check that the tag is compatible with the actual type of the slot!
Sebastien Hertz8009f392014-09-01 17:07:11 +02002635 switch (tag) {
2636 case JDWP::JT_BOOLEAN: {
2637 CHECK_EQ(width, 1U);
2638 uint32_t intVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002639 if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) {
2640 return FailGetLocalValue(visitor, vreg, tag);
Ian Rogers0399dde2012-06-06 17:09:28 -07002641 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002642 VLOG(jdwp) << "get boolean local " << vreg << " = " << intVal;
2643 JDWP::Set1(buf + 1, intVal != 0);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002644 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002645 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002646 case JDWP::JT_BYTE: {
2647 CHECK_EQ(width, 1U);
2648 uint32_t intVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002649 if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) {
2650 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002651 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002652 VLOG(jdwp) << "get byte local " << vreg << " = " << intVal;
2653 JDWP::Set1(buf + 1, intVal);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002654 break;
2655 }
2656 case JDWP::JT_SHORT:
2657 case JDWP::JT_CHAR: {
2658 CHECK_EQ(width, 2U);
2659 uint32_t intVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002660 if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) {
2661 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002662 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002663 VLOG(jdwp) << "get short/char local " << vreg << " = " << intVal;
2664 JDWP::Set2BE(buf + 1, intVal);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002665 break;
2666 }
2667 case JDWP::JT_INT: {
2668 CHECK_EQ(width, 4U);
2669 uint32_t intVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002670 if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) {
2671 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002672 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002673 VLOG(jdwp) << "get int local " << vreg << " = " << intVal;
2674 JDWP::Set4BE(buf + 1, intVal);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002675 break;
2676 }
2677 case JDWP::JT_FLOAT: {
2678 CHECK_EQ(width, 4U);
2679 uint32_t intVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002680 if (!visitor.GetVReg(m, vreg, kFloatVReg, &intVal)) {
2681 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002682 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002683 VLOG(jdwp) << "get float local " << vreg << " = " << intVal;
2684 JDWP::Set4BE(buf + 1, intVal);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002685 break;
2686 }
2687 case JDWP::JT_ARRAY:
2688 case JDWP::JT_CLASS_LOADER:
2689 case JDWP::JT_CLASS_OBJECT:
2690 case JDWP::JT_OBJECT:
2691 case JDWP::JT_STRING:
2692 case JDWP::JT_THREAD:
2693 case JDWP::JT_THREAD_GROUP: {
2694 CHECK_EQ(width, sizeof(JDWP::ObjectId));
2695 uint32_t intVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002696 if (!visitor.GetVReg(m, vreg, kReferenceVReg, &intVal)) {
2697 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002698 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002699 mirror::Object* o = reinterpret_cast<mirror::Object*>(intVal);
2700 VLOG(jdwp) << "get " << tag << " object local " << vreg << " = " << o;
2701 if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(o)) {
2702 LOG(FATAL) << StringPrintf("Found invalid object %#" PRIxPTR " in register v%u",
2703 reinterpret_cast<uintptr_t>(o), vreg)
2704 << GetStackContextAsString(visitor);
2705 UNREACHABLE();
2706 }
2707 tag = TagFromObject(soa, o);
2708 JDWP::SetObjectId(buf + 1, gRegistry->Add(o));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002709 break;
2710 }
2711 case JDWP::JT_DOUBLE: {
2712 CHECK_EQ(width, 8U);
2713 uint64_t longVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002714 if (!visitor.GetVRegPair(m, vreg, kDoubleLoVReg, kDoubleHiVReg, &longVal)) {
2715 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002716 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002717 VLOG(jdwp) << "get double local " << vreg << " = " << longVal;
2718 JDWP::Set8BE(buf + 1, longVal);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002719 break;
2720 }
2721 case JDWP::JT_LONG: {
2722 CHECK_EQ(width, 8U);
2723 uint64_t longVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002724 if (!visitor.GetVRegPair(m, vreg, kLongLoVReg, kLongHiVReg, &longVal)) {
2725 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002726 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002727 VLOG(jdwp) << "get long local " << vreg << " = " << longVal;
2728 JDWP::Set8BE(buf + 1, longVal);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002729 break;
2730 }
2731 default:
2732 LOG(FATAL) << "Unknown tag " << tag;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002733 UNREACHABLE();
Sebastien Hertz8009f392014-09-01 17:07:11 +02002734 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002735
Sebastien Hertz8009f392014-09-01 17:07:11 +02002736 // Prepend tag, which may have been updated.
2737 JDWP::Set1(buf, tag);
2738 return JDWP::ERR_NONE;
2739}
2740
2741JDWP::JdwpError Dbg::SetLocalValues(JDWP::Request* request) {
2742 JDWP::ObjectId thread_id = request->ReadThreadId();
2743 JDWP::FrameId frame_id = request->ReadFrameId();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002744
2745 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz69206392015-04-07 15:54:25 +02002746 JDWP::JdwpError error;
2747 Thread* thread = DecodeThread(soa, thread_id, &error);
2748 if (error != JDWP::ERR_NONE) {
2749 return error;
2750 }
2751 if (!IsSuspendedForDebugger(soa, thread)) {
2752 return JDWP::ERR_THREAD_NOT_SUSPENDED;
Elliott Hughes221229c2013-01-08 18:17:50 -08002753 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002754
Andreas Gampec7d878d2018-11-19 18:42:06 +00002755 return FindAndHandleNonNativeFrame(
2756 thread,
2757 frame_id,
2758 [&](art::StackVisitor* stack_visitor) REQUIRES_SHARED(Locks::mutator_lock_) {
2759 // Writes the values into visitor's context.
2760 int32_t slot_count = request->ReadSigned32("slot count");
2761 for (int32_t i = 0; i < slot_count; ++i) {
2762 uint32_t slot = request->ReadUnsigned32("slot");
2763 JDWP::JdwpTag sigByte = request->ReadTag();
2764 size_t width = Dbg::GetTagWidth(sigByte);
2765 uint64_t value = request->ReadValue(width);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002766
Andreas Gampec7d878d2018-11-19 18:42:06 +00002767 VLOG(jdwp) << " --> slot " << slot << " " << sigByte << " " << value;
2768 error = Dbg::SetLocalValue(thread, *stack_visitor, slot, sigByte, value, width);
2769 if (error != JDWP::ERR_NONE) {
2770 return error;
2771 }
2772 }
2773 return JDWP::ERR_NONE;
2774 });
Sebastien Hertz8009f392014-09-01 17:07:11 +02002775}
2776
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002777template<typename T>
2778static JDWP::JdwpError FailSetLocalValue(const StackVisitor& visitor, uint16_t vreg,
2779 JDWP::JdwpTag tag, T value)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07002780 REQUIRES_SHARED(Locks::mutator_lock_) {
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002781 LOG(ERROR) << "Failed to write " << tag << " local " << value
2782 << " (0x" << std::hex << value << ") into register v" << vreg
2783 << GetStackContextAsString(visitor);
2784 return kStackFrameLocalAccessError;
2785}
2786
Mingyao Yang99170c62015-07-06 11:10:37 -07002787JDWP::JdwpError Dbg::SetLocalValue(Thread* thread, StackVisitor& visitor, int slot,
2788 JDWP::JdwpTag tag, uint64_t value, size_t width) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07002789 ArtMethod* m = visitor.GetMethod();
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002790 JDWP::JdwpError error = JDWP::ERR_NONE;
2791 uint16_t vreg = DemangleSlot(slot, m, &error);
2792 if (error != JDWP::ERR_NONE) {
2793 return error;
2794 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002795 // TODO: check that the tag is compatible with the actual type of the slot!
Sebastien Hertz8009f392014-09-01 17:07:11 +02002796 switch (tag) {
2797 case JDWP::JT_BOOLEAN:
2798 case JDWP::JT_BYTE:
2799 CHECK_EQ(width, 1U);
Mingyao Yang636b9252015-07-31 16:40:24 -07002800 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kIntVReg)) {
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002801 return FailSetLocalValue(visitor, vreg, tag, static_cast<uint32_t>(value));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002802 }
2803 break;
2804 case JDWP::JT_SHORT:
2805 case JDWP::JT_CHAR:
2806 CHECK_EQ(width, 2U);
Mingyao Yang636b9252015-07-31 16:40:24 -07002807 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kIntVReg)) {
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002808 return FailSetLocalValue(visitor, vreg, tag, static_cast<uint32_t>(value));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002809 }
2810 break;
2811 case JDWP::JT_INT:
2812 CHECK_EQ(width, 4U);
Mingyao Yang636b9252015-07-31 16:40:24 -07002813 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kIntVReg)) {
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002814 return FailSetLocalValue(visitor, vreg, tag, static_cast<uint32_t>(value));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002815 }
2816 break;
2817 case JDWP::JT_FLOAT:
2818 CHECK_EQ(width, 4U);
Mingyao Yang636b9252015-07-31 16:40:24 -07002819 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kFloatVReg)) {
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002820 return FailSetLocalValue(visitor, vreg, tag, static_cast<uint32_t>(value));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002821 }
2822 break;
2823 case JDWP::JT_ARRAY:
2824 case JDWP::JT_CLASS_LOADER:
2825 case JDWP::JT_CLASS_OBJECT:
2826 case JDWP::JT_OBJECT:
2827 case JDWP::JT_STRING:
2828 case JDWP::JT_THREAD:
2829 case JDWP::JT_THREAD_GROUP: {
2830 CHECK_EQ(width, sizeof(JDWP::ObjectId));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002831 mirror::Object* o = gRegistry->Get<mirror::Object*>(static_cast<JDWP::ObjectId>(value),
2832 &error);
2833 if (error != JDWP::ERR_NONE) {
2834 VLOG(jdwp) << tag << " object " << o << " is an invalid object";
2835 return JDWP::ERR_INVALID_OBJECT;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002836 }
Mingyao Yang636b9252015-07-31 16:40:24 -07002837 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(reinterpret_cast<uintptr_t>(o)),
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002838 kReferenceVReg)) {
2839 return FailSetLocalValue(visitor, vreg, tag, reinterpret_cast<uintptr_t>(o));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002840 }
2841 break;
2842 }
2843 case JDWP::JT_DOUBLE: {
2844 CHECK_EQ(width, 8U);
Mingyao Yang636b9252015-07-31 16:40:24 -07002845 if (!visitor.SetVRegPair(m, vreg, value, kDoubleLoVReg, kDoubleHiVReg)) {
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002846 return FailSetLocalValue(visitor, vreg, tag, value);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002847 }
2848 break;
2849 }
2850 case JDWP::JT_LONG: {
2851 CHECK_EQ(width, 8U);
Mingyao Yang636b9252015-07-31 16:40:24 -07002852 if (!visitor.SetVRegPair(m, vreg, value, kLongLoVReg, kLongHiVReg)) {
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002853 return FailSetLocalValue(visitor, vreg, tag, value);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002854 }
2855 break;
2856 }
2857 default:
2858 LOG(FATAL) << "Unknown tag " << tag;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002859 UNREACHABLE();
Sebastien Hertz8009f392014-09-01 17:07:11 +02002860 }
Mingyao Yang99170c62015-07-06 11:10:37 -07002861
2862 // If we set the local variable in a compiled frame, we need to trigger a deoptimization of
2863 // the stack so we continue execution with the interpreter using the new value(s) of the updated
2864 // local variable(s). To achieve this, we install instrumentation exit stub on each method of the
2865 // thread's stack. The stub will cause the deoptimization to happen.
2866 if (!visitor.IsShadowFrame() && thread->HasDebuggerShadowFrames()) {
2867 Runtime::Current()->GetInstrumentation()->InstrumentThreadStack(thread);
2868 }
2869
Sebastien Hertz8009f392014-09-01 17:07:11 +02002870 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002871}
2872
Mathieu Chartiere401d142015-04-22 13:56:20 -07002873static void SetEventLocation(JDWP::EventLocation* location, ArtMethod* m, uint32_t dex_pc)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07002874 REQUIRES_SHARED(Locks::mutator_lock_) {
Sebastien Hertz6995c602014-09-09 12:10:13 +02002875 DCHECK(location != nullptr);
2876 if (m == nullptr) {
2877 memset(location, 0, sizeof(*location));
2878 } else {
Alex Light97e78032017-06-27 17:51:55 -07002879 location->method = m->GetCanonicalMethod(kRuntimePointerSize);
Sebastien Hertz6995c602014-09-09 12:10:13 +02002880 location->dex_pc = (m->IsNative() || m->IsProxyMethod()) ? static_cast<uint32_t>(-1) : dex_pc;
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002881 }
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002882}
2883
Mathieu Chartiere401d142015-04-22 13:56:20 -07002884void Dbg::PostLocationEvent(ArtMethod* m, int dex_pc, mirror::Object* this_object,
Jeff Hao579b0242013-11-18 13:16:49 -08002885 int event_flags, const JValue* return_value) {
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002886 if (!IsDebuggerActive()) {
2887 return;
2888 }
2889 DCHECK(m != nullptr);
2890 DCHECK_EQ(m->IsStatic(), this_object == nullptr);
Sebastien Hertz6995c602014-09-09 12:10:13 +02002891 JDWP::EventLocation location;
2892 SetEventLocation(&location, m, dex_pc);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002893
Sebastien Hertzde48aa62015-05-26 11:53:39 +02002894 // We need to be sure no exception is pending when calling JdwpState::PostLocationEvent.
2895 // This is required to be able to call JNI functions to create JDWP ids. To achieve this,
2896 // we temporarily clear the current thread's exception (if any) and will restore it after
2897 // the call.
2898 // Note: the only way to get a pending exception here is to suspend on a move-exception
2899 // instruction.
2900 Thread* const self = Thread::Current();
2901 StackHandleScope<1> hs(self);
2902 Handle<mirror::Throwable> pending_exception(hs.NewHandle(self->GetException()));
2903 self->ClearException();
Andreas Gampefa4333d2017-02-14 11:10:34 -08002904 if (kIsDebugBuild && pending_exception != nullptr) {
Mathieu Chartier808c7a52017-12-15 11:19:33 -08002905 const Instruction& instr = location.method->DexInstructions().InstructionAt(location.dex_pc);
2906 CHECK_EQ(Instruction::MOVE_EXCEPTION, instr.Opcode());
Sebastien Hertzde48aa62015-05-26 11:53:39 +02002907 }
2908
Sebastien Hertz6995c602014-09-09 12:10:13 +02002909 gJdwpState->PostLocationEvent(&location, this_object, event_flags, return_value);
Sebastien Hertzde48aa62015-05-26 11:53:39 +02002910
Andreas Gampefa4333d2017-02-14 11:10:34 -08002911 if (pending_exception != nullptr) {
Sebastien Hertzde48aa62015-05-26 11:53:39 +02002912 self->SetException(pending_exception.Get());
2913 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002914}
2915
Mathieu Chartiere401d142015-04-22 13:56:20 -07002916void Dbg::PostFieldAccessEvent(ArtMethod* m, int dex_pc,
Mathieu Chartierc7853442015-03-27 14:35:38 -07002917 mirror::Object* this_object, ArtField* f) {
Alex Lighte00ec302017-06-16 08:56:43 -07002918 // TODO We should send events for native methods.
2919 if (!IsDebuggerActive() || m->IsNative()) {
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002920 return;
2921 }
2922 DCHECK(m != nullptr);
2923 DCHECK(f != nullptr);
Sebastien Hertz6995c602014-09-09 12:10:13 +02002924 JDWP::EventLocation location;
2925 SetEventLocation(&location, m, dex_pc);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002926
Sebastien Hertz6995c602014-09-09 12:10:13 +02002927 gJdwpState->PostFieldEvent(&location, f, this_object, nullptr, false);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002928}
2929
Mathieu Chartiere401d142015-04-22 13:56:20 -07002930void Dbg::PostFieldModificationEvent(ArtMethod* m, int dex_pc,
Mathieu Chartierc7853442015-03-27 14:35:38 -07002931 mirror::Object* this_object, ArtField* f,
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002932 const JValue* field_value) {
Alex Lighte00ec302017-06-16 08:56:43 -07002933 // TODO We should send events for native methods.
2934 if (!IsDebuggerActive() || m->IsNative()) {
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002935 return;
2936 }
2937 DCHECK(m != nullptr);
2938 DCHECK(f != nullptr);
2939 DCHECK(field_value != nullptr);
Sebastien Hertz6995c602014-09-09 12:10:13 +02002940 JDWP::EventLocation location;
2941 SetEventLocation(&location, m, dex_pc);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002942
Sebastien Hertz6995c602014-09-09 12:10:13 +02002943 gJdwpState->PostFieldEvent(&location, f, this_object, field_value, true);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002944}
2945
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002946void Dbg::PostException(mirror::Throwable* exception_object) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07002947 if (!IsDebuggerActive()) {
Ian Rogers0ad5bb82011-12-07 10:16:32 -08002948 return;
2949 }
Sebastien Hertz261bc042015-04-08 09:36:07 +02002950 Thread* const self = Thread::Current();
Andreas Gampec7d878d2018-11-19 18:42:06 +00002951 StackHandleScope<2> handle_scope(self);
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002952 Handle<mirror::Throwable> h_exception(handle_scope.NewHandle(exception_object));
Andreas Gampec7d878d2018-11-19 18:42:06 +00002953 MutableHandle<mirror::Object> this_at_throw = handle_scope.NewHandle<mirror::Object>(nullptr);
Nicolas Geoffray14691c52015-03-05 10:40:17 +00002954 std::unique_ptr<Context> context(Context::Create());
Andreas Gampe3d477f32018-11-16 16:40:45 +00002955
Andreas Gampec7d878d2018-11-19 18:42:06 +00002956 ArtMethod* catch_method = nullptr;
2957 ArtMethod* throw_method = nullptr;
2958 uint32_t catch_dex_pc = dex::kDexNoIndex;
2959 uint32_t throw_dex_pc = dex::kDexNoIndex;
2960 StackVisitor::WalkStack(
2961 /**
2962 * Finds the location where this exception will be caught. We search until we reach the top
2963 * frame, in which case this exception is considered uncaught.
2964 */
2965 [&](const art::StackVisitor* stack_visitor) REQUIRES_SHARED(Locks::mutator_lock_) {
2966 ArtMethod* method = stack_visitor->GetMethod();
2967 DCHECK(method != nullptr);
2968 if (method->IsRuntimeMethod()) {
2969 // Ignore callee save method.
2970 DCHECK(method->IsCalleeSaveMethod());
2971 return true;
2972 }
2973
2974 uint32_t dex_pc = stack_visitor->GetDexPc();
2975 if (throw_method == nullptr) {
2976 // First Java method found. It is either the method that threw the exception,
2977 // or the Java native method that is reporting an exception thrown by
2978 // native code.
2979 this_at_throw.Assign(stack_visitor->GetThisObject());
2980 throw_method = method;
2981 throw_dex_pc = dex_pc;
2982 }
2983
2984 if (dex_pc != dex::kDexNoIndex) {
2985 StackHandleScope<1> hs(stack_visitor->GetThread());
2986 uint32_t found_dex_pc;
2987 Handle<mirror::Class> exception_class(hs.NewHandle(h_exception->GetClass()));
2988 bool unused_clear_exception;
2989 found_dex_pc = method->FindCatchBlock(exception_class, dex_pc, &unused_clear_exception);
2990 if (found_dex_pc != dex::kDexNoIndex) {
2991 catch_method = method;
2992 catch_dex_pc = found_dex_pc;
2993 return false; // End stack walk.
2994 }
2995 }
2996 return true; // Continue stack walk.
2997 },
2998 self,
2999 context.get(),
3000 art::StackVisitor::StackWalkKind::kIncludeInlinedFrames);
3001
3002 JDWP::EventLocation exception_throw_location;
3003 SetEventLocation(&exception_throw_location, throw_method, throw_dex_pc);
3004 JDWP::EventLocation exception_catch_location;
3005 SetEventLocation(&exception_catch_location, catch_method, catch_dex_pc);
3006
3007 gJdwpState->PostException(&exception_throw_location,
3008 h_exception.Get(),
3009 &exception_catch_location,
3010 this_at_throw.Get());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003011}
3012
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003013void Dbg::PostClassPrepare(mirror::Class* c) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07003014 if (!IsDebuggerActive()) {
Elliott Hughes4740cdf2011-12-07 14:07:12 -08003015 return;
3016 }
Sebastien Hertz6995c602014-09-09 12:10:13 +02003017 gJdwpState->PostClassPrepare(c);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003018}
3019
Ian Rogers62d6c772013-02-27 08:32:07 -08003020void Dbg::UpdateDebugger(Thread* thread, mirror::Object* this_object,
Mathieu Chartiere401d142015-04-22 13:56:20 -07003021 ArtMethod* m, uint32_t dex_pc,
Sebastien Hertz8379b222014-02-24 17:38:15 +01003022 int event_flags, const JValue* return_value) {
Ian Rogers62d6c772013-02-27 08:32:07 -08003023 if (!IsDebuggerActive() || dex_pc == static_cast<uint32_t>(-2) /* fake method exit */) {
Elliott Hughes2aa2e392012-02-17 17:15:43 -08003024 return;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08003025 }
3026
Elliott Hughes86964332012-02-15 19:37:42 -08003027 if (IsBreakpoint(m, dex_pc)) {
3028 event_flags |= kBreakpoint;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08003029 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08003030
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003031 // If the debugger is single-stepping one of our threads, check to
3032 // see if we're that thread and we've reached a step point.
3033 const SingleStepControl* single_step_control = thread->GetSingleStepControl();
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003034 if (single_step_control != nullptr) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003035 CHECK(!m->IsNative());
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003036 if (single_step_control->GetStepDepth() == JDWP::SD_INTO) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003037 // Step into method calls. We break when the line number
3038 // or method pointer changes. If we're in SS_MIN mode, we
3039 // always stop.
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003040 if (single_step_control->GetMethod() != m) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003041 event_flags |= kSingleStep;
3042 VLOG(jdwp) << "SS new method";
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003043 } else if (single_step_control->GetStepSize() == JDWP::SS_MIN) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003044 event_flags |= kSingleStep;
3045 VLOG(jdwp) << "SS new instruction";
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003046 } else if (single_step_control->ContainsDexPc(dex_pc)) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003047 event_flags |= kSingleStep;
3048 VLOG(jdwp) << "SS new line";
3049 }
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003050 } else if (single_step_control->GetStepDepth() == JDWP::SD_OVER) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003051 // Step over method calls. We break when the line number is
3052 // different and the frame depth is <= the original frame
3053 // depth. (We can't just compare on the method, because we
3054 // might get unrolled past it by an exception, and it's tricky
3055 // to identify recursion.)
3056
3057 int stack_depth = GetStackDepth(thread);
3058
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003059 if (stack_depth < single_step_control->GetStackDepth()) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003060 // Popped up one or more frames, always trigger.
3061 event_flags |= kSingleStep;
3062 VLOG(jdwp) << "SS method pop";
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003063 } else if (stack_depth == single_step_control->GetStackDepth()) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003064 // Same depth, see if we moved.
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003065 if (single_step_control->GetStepSize() == JDWP::SS_MIN) {
Elliott Hughes86964332012-02-15 19:37:42 -08003066 event_flags |= kSingleStep;
3067 VLOG(jdwp) << "SS new instruction";
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003068 } else if (single_step_control->ContainsDexPc(dex_pc)) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003069 event_flags |= kSingleStep;
3070 VLOG(jdwp) << "SS new line";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08003071 }
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003072 }
3073 } else {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003074 CHECK_EQ(single_step_control->GetStepDepth(), JDWP::SD_OUT);
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003075 // Return from the current method. We break when the frame
3076 // depth pops up.
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08003077
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003078 // This differs from the "method exit" break in that it stops
3079 // with the PC at the next instruction in the returned-to
3080 // function, rather than the end of the returning function.
Elliott Hughes86964332012-02-15 19:37:42 -08003081
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003082 int stack_depth = GetStackDepth(thread);
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003083 if (stack_depth < single_step_control->GetStackDepth()) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003084 event_flags |= kSingleStep;
3085 VLOG(jdwp) << "SS method pop";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08003086 }
3087 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08003088 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08003089
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08003090 // If there's something interesting going on, see if it matches one
3091 // of the debugger filters.
3092 if (event_flags != 0) {
Sebastien Hertz8379b222014-02-24 17:38:15 +01003093 Dbg::PostLocationEvent(m, dex_pc, this_object, event_flags, return_value);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08003094 }
3095}
3096
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003097size_t* Dbg::GetReferenceCounterForEvent(uint32_t instrumentation_event) {
3098 switch (instrumentation_event) {
3099 case instrumentation::Instrumentation::kMethodEntered:
3100 return &method_enter_event_ref_count_;
3101 case instrumentation::Instrumentation::kMethodExited:
3102 return &method_exit_event_ref_count_;
3103 case instrumentation::Instrumentation::kDexPcMoved:
3104 return &dex_pc_change_event_ref_count_;
3105 case instrumentation::Instrumentation::kFieldRead:
3106 return &field_read_event_ref_count_;
3107 case instrumentation::Instrumentation::kFieldWritten:
3108 return &field_write_event_ref_count_;
Alex Light6e1607e2017-08-23 10:06:18 -07003109 case instrumentation::Instrumentation::kExceptionThrown:
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003110 return &exception_catch_event_ref_count_;
3111 default:
3112 return nullptr;
3113 }
3114}
3115
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003116// Process request while all mutator threads are suspended.
3117void Dbg::ProcessDeoptimizationRequest(const DeoptimizationRequest& request) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003118 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003119 switch (request.GetKind()) {
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003120 case DeoptimizationRequest::kNothing:
3121 LOG(WARNING) << "Ignoring empty deoptimization request.";
3122 break;
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003123 case DeoptimizationRequest::kRegisterForEvent:
3124 VLOG(jdwp) << StringPrintf("Add debugger as listener for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003125 request.InstrumentationEvent());
3126 instrumentation->AddListener(&gDebugInstrumentationListener, request.InstrumentationEvent());
3127 instrumentation_events_ |= request.InstrumentationEvent();
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003128 break;
3129 case DeoptimizationRequest::kUnregisterForEvent:
3130 VLOG(jdwp) << StringPrintf("Remove debugger as listener for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003131 request.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003132 instrumentation->RemoveListener(&gDebugInstrumentationListener,
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003133 request.InstrumentationEvent());
3134 instrumentation_events_ &= ~request.InstrumentationEvent();
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003135 break;
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003136 case DeoptimizationRequest::kFullDeoptimization:
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003137 VLOG(jdwp) << "Deoptimize the world ...";
Sebastien Hertz0462c4c2015-04-01 16:34:17 +02003138 instrumentation->DeoptimizeEverything(kDbgInstrumentationKey);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003139 VLOG(jdwp) << "Deoptimize the world DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003140 break;
3141 case DeoptimizationRequest::kFullUndeoptimization:
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003142 VLOG(jdwp) << "Undeoptimize the world ...";
Sebastien Hertz0462c4c2015-04-01 16:34:17 +02003143 instrumentation->UndeoptimizeEverything(kDbgInstrumentationKey);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003144 VLOG(jdwp) << "Undeoptimize the world DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003145 break;
3146 case DeoptimizationRequest::kSelectiveDeoptimization:
David Sehr709b0702016-10-13 09:12:37 -07003147 VLOG(jdwp) << "Deoptimize method " << ArtMethod::PrettyMethod(request.Method()) << " ...";
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003148 instrumentation->Deoptimize(request.Method());
David Sehr709b0702016-10-13 09:12:37 -07003149 VLOG(jdwp) << "Deoptimize method " << ArtMethod::PrettyMethod(request.Method()) << " DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003150 break;
3151 case DeoptimizationRequest::kSelectiveUndeoptimization:
David Sehr709b0702016-10-13 09:12:37 -07003152 VLOG(jdwp) << "Undeoptimize method " << ArtMethod::PrettyMethod(request.Method()) << " ...";
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003153 instrumentation->Undeoptimize(request.Method());
David Sehr709b0702016-10-13 09:12:37 -07003154 VLOG(jdwp) << "Undeoptimize method " << ArtMethod::PrettyMethod(request.Method()) << " DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003155 break;
3156 default:
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003157 LOG(FATAL) << "Unsupported deoptimization request kind " << request.GetKind();
Elliott Hughesc1896c92018-11-29 11:33:18 -08003158 UNREACHABLE();
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003159 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003160}
3161
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003162void Dbg::RequestDeoptimization(const DeoptimizationRequest& req) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003163 if (req.GetKind() == DeoptimizationRequest::kNothing) {
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003164 // Nothing to do.
3165 return;
3166 }
Brian Carlstrom306db812014-09-05 13:01:41 -07003167 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003168 RequestDeoptimizationLocked(req);
3169}
3170
3171void Dbg::RequestDeoptimizationLocked(const DeoptimizationRequest& req) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003172 switch (req.GetKind()) {
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003173 case DeoptimizationRequest::kRegisterForEvent: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003174 DCHECK_NE(req.InstrumentationEvent(), 0u);
3175 size_t* counter = GetReferenceCounterForEvent(req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003176 CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003177 req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003178 if (*counter == 0) {
Sebastien Hertz7d2ae432014-05-15 11:26:34 +02003179 VLOG(jdwp) << StringPrintf("Queue request #%zd to start listening to instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003180 deoptimization_requests_.size(), req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003181 deoptimization_requests_.push_back(req);
3182 }
3183 *counter = *counter + 1;
3184 break;
3185 }
3186 case DeoptimizationRequest::kUnregisterForEvent: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003187 DCHECK_NE(req.InstrumentationEvent(), 0u);
3188 size_t* counter = GetReferenceCounterForEvent(req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003189 CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003190 req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003191 *counter = *counter - 1;
3192 if (*counter == 0) {
Sebastien Hertz7d2ae432014-05-15 11:26:34 +02003193 VLOG(jdwp) << StringPrintf("Queue request #%zd to stop listening to instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003194 deoptimization_requests_.size(), req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003195 deoptimization_requests_.push_back(req);
3196 }
3197 break;
3198 }
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003199 case DeoptimizationRequest::kFullDeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003200 DCHECK(req.Method() == nullptr);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003201 if (full_deoptimization_event_count_ == 0) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003202 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
3203 << " for full deoptimization";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003204 deoptimization_requests_.push_back(req);
3205 }
3206 ++full_deoptimization_event_count_;
3207 break;
3208 }
3209 case DeoptimizationRequest::kFullUndeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003210 DCHECK(req.Method() == nullptr);
Sebastien Hertze713d932014-05-15 10:48:53 +02003211 DCHECK_GT(full_deoptimization_event_count_, 0U);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003212 --full_deoptimization_event_count_;
3213 if (full_deoptimization_event_count_ == 0) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003214 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
3215 << " for full undeoptimization";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003216 deoptimization_requests_.push_back(req);
3217 }
3218 break;
3219 }
3220 case DeoptimizationRequest::kSelectiveDeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003221 DCHECK(req.Method() != nullptr);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003222 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
David Sehr709b0702016-10-13 09:12:37 -07003223 << " for deoptimization of " << req.Method()->PrettyMethod();
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003224 deoptimization_requests_.push_back(req);
3225 break;
3226 }
3227 case DeoptimizationRequest::kSelectiveUndeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003228 DCHECK(req.Method() != nullptr);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003229 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
David Sehr709b0702016-10-13 09:12:37 -07003230 << " for undeoptimization of " << req.Method()->PrettyMethod();
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003231 deoptimization_requests_.push_back(req);
3232 break;
3233 }
3234 default: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003235 LOG(FATAL) << "Unknown deoptimization request kind " << req.GetKind();
Elliott Hughesc1896c92018-11-29 11:33:18 -08003236 UNREACHABLE();
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003237 }
3238 }
3239}
3240
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003241void Dbg::ManageDeoptimization() {
3242 Thread* const self = Thread::Current();
3243 {
3244 // Avoid suspend/resume if there is no pending request.
Brian Carlstrom306db812014-09-05 13:01:41 -07003245 MutexLock mu(self, *Locks::deoptimization_lock_);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003246 if (deoptimization_requests_.empty()) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003247 return;
3248 }
3249 }
3250 CHECK_EQ(self->GetState(), kRunnable);
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07003251 ScopedThreadSuspension sts(self, kWaitingForDeoptimization);
Mathieu Chartieraa516822015-10-02 15:53:37 -07003252 // Required for ProcessDeoptimizationRequest.
3253 gc::ScopedGCCriticalSection gcs(self,
3254 gc::kGcCauseInstrumentation,
3255 gc::kCollectorTypeInstrumentation);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003256 // We need to suspend mutator threads first.
Mathieu Chartier4f55e222015-09-04 13:26:21 -07003257 ScopedSuspendAll ssa(__FUNCTION__);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003258 const ThreadState old_state = self->SetStateUnsafe(kRunnable);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003259 {
Brian Carlstrom306db812014-09-05 13:01:41 -07003260 MutexLock mu(self, *Locks::deoptimization_lock_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003261 size_t req_index = 0;
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003262 for (DeoptimizationRequest& request : deoptimization_requests_) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003263 VLOG(jdwp) << "Process deoptimization request #" << req_index++;
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003264 ProcessDeoptimizationRequest(request);
3265 }
3266 deoptimization_requests_.clear();
3267 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003268 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003269}
3270
Mathieu Chartiere401d142015-04-22 13:56:20 -07003271static const Breakpoint* FindFirstBreakpointForMethod(ArtMethod* m)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07003272 REQUIRES_SHARED(Locks::mutator_lock_, Locks::breakpoint_lock_) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003273 for (Breakpoint& breakpoint : gBreakpoints) {
Alex Light6c8467f2015-11-20 15:03:26 -08003274 if (breakpoint.IsInMethod(m)) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003275 return &breakpoint;
3276 }
3277 }
3278 return nullptr;
3279}
3280
Mathieu Chartiere401d142015-04-22 13:56:20 -07003281bool Dbg::MethodHasAnyBreakpoints(ArtMethod* method) {
Mathieu Chartierd8565452015-03-26 09:41:50 -07003282 ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
3283 return FindFirstBreakpointForMethod(method) != nullptr;
3284}
3285
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003286// Sanity checks all existing breakpoints on the same method.
Mathieu Chartiere401d142015-04-22 13:56:20 -07003287static void SanityCheckExistingBreakpoints(ArtMethod* m,
Sebastien Hertzf3928792014-11-17 19:00:37 +01003288 DeoptimizationRequest::Kind deoptimization_kind)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07003289 REQUIRES_SHARED(Locks::mutator_lock_, Locks::breakpoint_lock_) {
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003290 for (const Breakpoint& breakpoint : gBreakpoints) {
Alex Light6c8467f2015-11-20 15:03:26 -08003291 if (breakpoint.IsInMethod(m)) {
Sebastien Hertzf3928792014-11-17 19:00:37 +01003292 CHECK_EQ(deoptimization_kind, breakpoint.GetDeoptimizationKind());
3293 }
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003294 }
Sebastien Hertzf3928792014-11-17 19:00:37 +01003295 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
3296 if (deoptimization_kind == DeoptimizationRequest::kFullDeoptimization) {
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003297 // We should have deoptimized everything but not "selectively" deoptimized this method.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003298 CHECK(instrumentation->AreAllMethodsDeoptimized());
3299 CHECK(!instrumentation->IsDeoptimized(m));
3300 } else if (deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization) {
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003301 // We should have "selectively" deoptimized this method.
3302 // Note: while we have not deoptimized everything for this method, we may have done it for
3303 // another event.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003304 CHECK(instrumentation->IsDeoptimized(m));
3305 } else {
3306 // This method does not require deoptimization.
3307 CHECK_EQ(deoptimization_kind, DeoptimizationRequest::kNothing);
3308 CHECK(!instrumentation->IsDeoptimized(m));
3309 }
3310}
3311
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003312// Returns the deoptimization kind required to set a breakpoint in a method.
3313// If a breakpoint has already been set, we also return the first breakpoint
3314// through the given 'existing_brkpt' pointer.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003315static DeoptimizationRequest::Kind GetRequiredDeoptimizationKind(Thread* self,
Mathieu Chartiere401d142015-04-22 13:56:20 -07003316 ArtMethod* m,
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003317 const Breakpoint** existing_brkpt)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07003318 REQUIRES_SHARED(Locks::mutator_lock_) {
Sebastien Hertzf3928792014-11-17 19:00:37 +01003319 if (!Dbg::RequiresDeoptimization()) {
3320 // We already run in interpreter-only mode so we don't need to deoptimize anything.
3321 VLOG(jdwp) << "No need for deoptimization when fully running with interpreter for method "
David Sehr709b0702016-10-13 09:12:37 -07003322 << ArtMethod::PrettyMethod(m);
Sebastien Hertzf3928792014-11-17 19:00:37 +01003323 return DeoptimizationRequest::kNothing;
3324 }
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003325 const Breakpoint* first_breakpoint;
Sebastien Hertzf3928792014-11-17 19:00:37 +01003326 {
3327 ReaderMutexLock mu(self, *Locks::breakpoint_lock_);
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003328 first_breakpoint = FindFirstBreakpointForMethod(m);
3329 *existing_brkpt = first_breakpoint;
Sebastien Hertzf3928792014-11-17 19:00:37 +01003330 }
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003331
3332 if (first_breakpoint == nullptr) {
Nicolas Geoffray6300fd72016-03-18 09:40:17 +00003333 // There is no breakpoint on this method yet: we need to deoptimize. If this method is default,
3334 // we deoptimize everything; otherwise we deoptimize only this method. We
Alex Light6c8467f2015-11-20 15:03:26 -08003335 // deoptimize with defaults because we do not know everywhere they are used. It is possible some
Nicolas Geoffray6300fd72016-03-18 09:40:17 +00003336 // of the copies could be missed.
Alex Light6c8467f2015-11-20 15:03:26 -08003337 // TODO Deoptimizing on default methods might not be necessary in all cases.
Nicolas Geoffray6300fd72016-03-18 09:40:17 +00003338 bool need_full_deoptimization = m->IsDefault();
Sebastien Hertzf3928792014-11-17 19:00:37 +01003339 if (need_full_deoptimization) {
Nicolas Geoffray6300fd72016-03-18 09:40:17 +00003340 VLOG(jdwp) << "Need full deoptimization because of copying of method "
David Sehr709b0702016-10-13 09:12:37 -07003341 << ArtMethod::PrettyMethod(m);
Sebastien Hertzf3928792014-11-17 19:00:37 +01003342 return DeoptimizationRequest::kFullDeoptimization;
3343 } else {
3344 // We don't need to deoptimize if the method has not been compiled.
Nicolas Geoffraya5891e82015-11-06 14:18:27 +00003345 const bool is_compiled = m->HasAnyCompiledCode();
Sebastien Hertzf3928792014-11-17 19:00:37 +01003346 if (is_compiled) {
David Sehr709b0702016-10-13 09:12:37 -07003347 VLOG(jdwp) << "Need selective deoptimization for compiled method "
3348 << ArtMethod::PrettyMethod(m);
Nicolas Geoffray6300fd72016-03-18 09:40:17 +00003349 return DeoptimizationRequest::kSelectiveDeoptimization;
Sebastien Hertzf3928792014-11-17 19:00:37 +01003350 } else {
3351 // Method is not compiled: we don't need to deoptimize.
David Sehr709b0702016-10-13 09:12:37 -07003352 VLOG(jdwp) << "No need for deoptimization for non-compiled method "
3353 << ArtMethod::PrettyMethod(m);
Sebastien Hertzf3928792014-11-17 19:00:37 +01003354 return DeoptimizationRequest::kNothing;
3355 }
3356 }
3357 } else {
3358 // There is at least one breakpoint for this method: we don't need to deoptimize.
3359 // Let's check that all breakpoints are configured the same way for deoptimization.
3360 VLOG(jdwp) << "Breakpoint already set: no deoptimization is required";
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003361 DeoptimizationRequest::Kind deoptimization_kind = first_breakpoint->GetDeoptimizationKind();
Sebastien Hertzf3928792014-11-17 19:00:37 +01003362 if (kIsDebugBuild) {
3363 ReaderMutexLock mu(self, *Locks::breakpoint_lock_);
3364 SanityCheckExistingBreakpoints(m, deoptimization_kind);
3365 }
3366 return DeoptimizationRequest::kNothing;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003367 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003368}
3369
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003370// Installs a breakpoint at the specified location. Also indicates through the deoptimization
3371// request if we need to deoptimize.
3372void Dbg::WatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) {
3373 Thread* const self = Thread::Current();
Mathieu Chartiere401d142015-04-22 13:56:20 -07003374 ArtMethod* m = FromMethodId(location->method_id);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003375 DCHECK(m != nullptr) << "No method for method id " << location->method_id;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003376
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003377 const Breakpoint* existing_breakpoint = nullptr;
3378 const DeoptimizationRequest::Kind deoptimization_kind =
3379 GetRequiredDeoptimizationKind(self, m, &existing_breakpoint);
Sebastien Hertzf3928792014-11-17 19:00:37 +01003380 req->SetKind(deoptimization_kind);
3381 if (deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization) {
3382 req->SetMethod(m);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003383 } else {
Sebastien Hertzf3928792014-11-17 19:00:37 +01003384 CHECK(deoptimization_kind == DeoptimizationRequest::kNothing ||
3385 deoptimization_kind == DeoptimizationRequest::kFullDeoptimization);
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003386 req->SetMethod(nullptr);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003387 }
3388
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003389 {
3390 WriterMutexLock mu(self, *Locks::breakpoint_lock_);
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003391 // If there is at least one existing breakpoint on the same method, the new breakpoint
3392 // must have the same deoptimization kind than the existing breakpoint(s).
3393 DeoptimizationRequest::Kind breakpoint_deoptimization_kind;
3394 if (existing_breakpoint != nullptr) {
3395 breakpoint_deoptimization_kind = existing_breakpoint->GetDeoptimizationKind();
3396 } else {
3397 breakpoint_deoptimization_kind = deoptimization_kind;
3398 }
3399 gBreakpoints.push_back(Breakpoint(m, location->dex_pc, breakpoint_deoptimization_kind));
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003400 VLOG(jdwp) << "Set breakpoint #" << (gBreakpoints.size() - 1) << ": "
3401 << gBreakpoints[gBreakpoints.size() - 1];
3402 }
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003403}
3404
3405// Uninstalls a breakpoint at the specified location. Also indicates through the deoptimization
3406// request if we need to undeoptimize.
3407void Dbg::UnwatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) {
Sebastien Hertzed2be172014-08-19 15:33:43 +02003408 WriterMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Mathieu Chartiere401d142015-04-22 13:56:20 -07003409 ArtMethod* m = FromMethodId(location->method_id);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003410 DCHECK(m != nullptr) << "No method for method id " << location->method_id;
Sebastien Hertzf3928792014-11-17 19:00:37 +01003411 DeoptimizationRequest::Kind deoptimization_kind = DeoptimizationRequest::kNothing;
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003412 for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) {
Alex Light6c8467f2015-11-20 15:03:26 -08003413 if (gBreakpoints[i].DexPc() == location->dex_pc && gBreakpoints[i].IsInMethod(m)) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003414 VLOG(jdwp) << "Removed breakpoint #" << i << ": " << gBreakpoints[i];
Sebastien Hertzf3928792014-11-17 19:00:37 +01003415 deoptimization_kind = gBreakpoints[i].GetDeoptimizationKind();
3416 DCHECK_EQ(deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization,
3417 Runtime::Current()->GetInstrumentation()->IsDeoptimized(m));
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003418 gBreakpoints.erase(gBreakpoints.begin() + i);
3419 break;
3420 }
3421 }
3422 const Breakpoint* const existing_breakpoint = FindFirstBreakpointForMethod(m);
3423 if (existing_breakpoint == nullptr) {
3424 // There is no more breakpoint on this method: we need to undeoptimize.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003425 if (deoptimization_kind == DeoptimizationRequest::kFullDeoptimization) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003426 // This method required full deoptimization: we need to undeoptimize everything.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003427 req->SetKind(DeoptimizationRequest::kFullUndeoptimization);
3428 req->SetMethod(nullptr);
Sebastien Hertzf3928792014-11-17 19:00:37 +01003429 } else if (deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003430 // This method required selective deoptimization: we need to undeoptimize only that method.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003431 req->SetKind(DeoptimizationRequest::kSelectiveUndeoptimization);
3432 req->SetMethod(m);
Sebastien Hertzf3928792014-11-17 19:00:37 +01003433 } else {
3434 // This method had no need for deoptimization: do nothing.
3435 CHECK_EQ(deoptimization_kind, DeoptimizationRequest::kNothing);
3436 req->SetKind(DeoptimizationRequest::kNothing);
3437 req->SetMethod(nullptr);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003438 }
3439 } else {
3440 // There is at least one breakpoint for this method: we don't need to undeoptimize.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003441 req->SetKind(DeoptimizationRequest::kNothing);
3442 req->SetMethod(nullptr);
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003443 if (kIsDebugBuild) {
Sebastien Hertzf3928792014-11-17 19:00:37 +01003444 SanityCheckExistingBreakpoints(m, deoptimization_kind);
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003445 }
Elliott Hughes86964332012-02-15 19:37:42 -08003446 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003447}
3448
Mathieu Chartiere401d142015-04-22 13:56:20 -07003449bool Dbg::IsForcedInterpreterNeededForCallingImpl(Thread* thread, ArtMethod* m) {
Daniel Mihalyieb076692014-08-22 17:33:31 +02003450 const SingleStepControl* const ssc = thread->GetSingleStepControl();
3451 if (ssc == nullptr) {
3452 // If we are not single-stepping, then we don't have to force interpreter.
3453 return false;
3454 }
3455 if (Runtime::Current()->GetInstrumentation()->InterpretOnly()) {
3456 // If we are in interpreter only mode, then we don't have to force interpreter.
3457 return false;
3458 }
3459
3460 if (!m->IsNative() && !m->IsProxyMethod()) {
3461 // If we want to step into a method, then we have to force interpreter on that call.
3462 if (ssc->GetStepDepth() == JDWP::SD_INTO) {
3463 return true;
3464 }
3465 }
3466 return false;
3467}
3468
Mathieu Chartiere401d142015-04-22 13:56:20 -07003469bool Dbg::IsForcedInterpreterNeededForResolutionImpl(Thread* thread, ArtMethod* m) {
Daniel Mihalyieb076692014-08-22 17:33:31 +02003470 instrumentation::Instrumentation* const instrumentation =
3471 Runtime::Current()->GetInstrumentation();
3472 // If we are in interpreter only mode, then we don't have to force interpreter.
3473 if (instrumentation->InterpretOnly()) {
3474 return false;
3475 }
3476 // We can only interpret pure Java method.
3477 if (m->IsNative() || m->IsProxyMethod()) {
3478 return false;
3479 }
3480 const SingleStepControl* const ssc = thread->GetSingleStepControl();
3481 if (ssc != nullptr) {
3482 // If we want to step into a method, then we have to force interpreter on that call.
3483 if (ssc->GetStepDepth() == JDWP::SD_INTO) {
3484 return true;
3485 }
3486 // If we are stepping out from a static initializer, by issuing a step
3487 // in or step over, that was implicitly invoked by calling a static method,
3488 // then we need to step into that method. Having a lower stack depth than
3489 // the one the single step control has indicates that the step originates
3490 // from the static initializer.
3491 if (ssc->GetStepDepth() != JDWP::SD_OUT &&
3492 ssc->GetStackDepth() > GetStackDepth(thread)) {
3493 return true;
3494 }
3495 }
3496 // There are cases where we have to force interpreter on deoptimized methods,
3497 // because in some cases the call will not be performed by invoking an entry
3498 // point that has been replaced by the deoptimization, but instead by directly
3499 // invoking the compiled code of the method, for example.
3500 return instrumentation->IsDeoptimized(m);
3501}
3502
Mathieu Chartiere401d142015-04-22 13:56:20 -07003503bool Dbg::IsForcedInstrumentationNeededForResolutionImpl(Thread* thread, ArtMethod* m) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -07003504 // The upcall can be null and in that case we don't need to do anything.
Daniel Mihalyieb076692014-08-22 17:33:31 +02003505 if (m == nullptr) {
3506 return false;
3507 }
3508 instrumentation::Instrumentation* const instrumentation =
3509 Runtime::Current()->GetInstrumentation();
3510 // If we are in interpreter only mode, then we don't have to force interpreter.
3511 if (instrumentation->InterpretOnly()) {
3512 return false;
3513 }
3514 // We can only interpret pure Java method.
3515 if (m->IsNative() || m->IsProxyMethod()) {
3516 return false;
3517 }
3518 const SingleStepControl* const ssc = thread->GetSingleStepControl();
3519 if (ssc != nullptr) {
3520 // If we are stepping out from a static initializer, by issuing a step
3521 // out, that was implicitly invoked by calling a static method, then we
3522 // need to step into the caller of that method. Having a lower stack
3523 // depth than the one the single step control has indicates that the
3524 // step originates from the static initializer.
3525 if (ssc->GetStepDepth() == JDWP::SD_OUT &&
3526 ssc->GetStackDepth() > GetStackDepth(thread)) {
3527 return true;
3528 }
3529 }
3530 // If we are returning from a static intializer, that was implicitly
3531 // invoked by calling a static method and the caller is deoptimized,
3532 // then we have to deoptimize the stack without forcing interpreter
3533 // on the static method that was called originally. This problem can
3534 // be solved easily by forcing instrumentation on the called method,
3535 // because the instrumentation exit hook will recognise the need of
3536 // stack deoptimization by calling IsForcedInterpreterNeededForUpcall.
3537 return instrumentation->IsDeoptimized(m);
3538}
3539
Mathieu Chartiere401d142015-04-22 13:56:20 -07003540bool Dbg::IsForcedInterpreterNeededForUpcallImpl(Thread* thread, ArtMethod* m) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -07003541 // The upcall can be null and in that case we don't need to do anything.
Daniel Mihalyieb076692014-08-22 17:33:31 +02003542 if (m == nullptr) {
3543 return false;
3544 }
3545 instrumentation::Instrumentation* const instrumentation =
3546 Runtime::Current()->GetInstrumentation();
3547 // If we are in interpreter only mode, then we don't have to force interpreter.
3548 if (instrumentation->InterpretOnly()) {
3549 return false;
3550 }
3551 // We can only interpret pure Java method.
3552 if (m->IsNative() || m->IsProxyMethod()) {
3553 return false;
3554 }
3555 const SingleStepControl* const ssc = thread->GetSingleStepControl();
3556 if (ssc != nullptr) {
3557 // The debugger is not interested in what is happening under the level
3558 // of the step, thus we only force interpreter when we are not below of
3559 // the step.
3560 if (ssc->GetStackDepth() >= GetStackDepth(thread)) {
3561 return true;
3562 }
3563 }
Mingyao Yang99170c62015-07-06 11:10:37 -07003564 if (thread->HasDebuggerShadowFrames()) {
3565 // We need to deoptimize the stack for the exception handling flow so that
3566 // we don't miss any deoptimization that should be done when there are
3567 // debugger shadow frames.
3568 return true;
3569 }
Daniel Mihalyieb076692014-08-22 17:33:31 +02003570 // We have to require stack deoptimization if the upcall is deoptimized.
3571 return instrumentation->IsDeoptimized(m);
3572}
3573
Sebastien Hertz520633b2015-09-08 17:03:36 +02003574// Do we need to deoptimize the stack to handle an exception?
3575bool Dbg::IsForcedInterpreterNeededForExceptionImpl(Thread* thread) {
3576 const SingleStepControl* const ssc = thread->GetSingleStepControl();
3577 if (ssc != nullptr) {
3578 // We deopt to step into the catch handler.
3579 return true;
3580 }
3581 // Deoptimization is required if at least one method in the stack needs it. However we
3582 // skip frames that will be unwound (thus not executed).
Andreas Gampec7d878d2018-11-19 18:42:06 +00003583 bool needs_deoptimization = false;
3584 StackVisitor::WalkStack(
3585 [&](art::StackVisitor* visitor) REQUIRES_SHARED(Locks::mutator_lock_) {
3586 // The visitor is meant to be used when handling exception from compiled code only.
3587 CHECK(!visitor->IsShadowFrame()) << "We only expect to visit compiled frame: "
3588 << ArtMethod::PrettyMethod(visitor->GetMethod());
3589 ArtMethod* method = visitor->GetMethod();
3590 if (method == nullptr) {
3591 // We reach an upcall and don't need to deoptimize this part of the stack (ManagedFragment)
3592 // so we can stop the visit.
3593 DCHECK(!needs_deoptimization);
3594 return false;
3595 }
3596 if (Runtime::Current()->GetInstrumentation()->InterpretOnly()) {
3597 // We found a compiled frame in the stack but instrumentation is set to interpret
3598 // everything: we need to deoptimize.
3599 needs_deoptimization = true;
3600 return false;
3601 }
3602 if (Runtime::Current()->GetInstrumentation()->IsDeoptimized(method)) {
3603 // We found a deoptimized method in the stack.
3604 needs_deoptimization = true;
3605 return false;
3606 }
3607 ShadowFrame* frame = visitor->GetThread()->FindDebuggerShadowFrame(visitor->GetFrameId());
3608 if (frame != nullptr) {
3609 // The debugger allocated a ShadowFrame to update a variable in the stack: we need to
3610 // deoptimize the stack to execute (and deallocate) this frame.
3611 needs_deoptimization = true;
3612 return false;
3613 }
3614 return true;
3615 },
3616 thread,
3617 /* context= */ nullptr,
3618 art::StackVisitor::StackWalkKind::kIncludeInlinedFrames,
3619 /* check_suspended */ true,
3620 /* include_transitions */ true);
3621 return needs_deoptimization;
Sebastien Hertz520633b2015-09-08 17:03:36 +02003622}
3623
Jeff Hao449db332013-04-12 18:30:52 -07003624// Scoped utility class to suspend a thread so that we may do tasks such as walk its stack. Doesn't
3625// cause suspension if the thread is the current thread.
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07003626class ScopedDebuggerThreadSuspension {
Jeff Hao449db332013-04-12 18:30:52 -07003627 public:
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07003628 ScopedDebuggerThreadSuspension(Thread* self, JDWP::ObjectId thread_id)
Mathieu Chartier90443472015-07-16 20:32:27 -07003629 REQUIRES(!Locks::thread_list_lock_)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07003630 REQUIRES_SHARED(Locks::mutator_lock_) :
Ian Rogersf3d874c2014-07-17 18:52:42 -07003631 thread_(nullptr),
Jeff Hao449db332013-04-12 18:30:52 -07003632 error_(JDWP::ERR_NONE),
3633 self_suspend_(false),
Ian Rogers33e95662013-05-20 20:29:14 -07003634 other_suspend_(false) {
Jeff Hao449db332013-04-12 18:30:52 -07003635 ScopedObjectAccessUnchecked soa(self);
Sebastien Hertz69206392015-04-07 15:54:25 +02003636 thread_ = DecodeThread(soa, thread_id, &error_);
Jeff Hao449db332013-04-12 18:30:52 -07003637 if (error_ == JDWP::ERR_NONE) {
3638 if (thread_ == soa.Self()) {
3639 self_suspend_ = true;
3640 } else {
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07003641 Thread* suspended_thread;
3642 {
3643 ScopedThreadSuspension sts(self, kWaitingForDebuggerSuspension);
3644 jobject thread_peer = Dbg::GetObjectRegistry()->GetJObject(thread_id);
3645 bool timed_out;
3646 ThreadList* const thread_list = Runtime::Current()->GetThreadList();
Sebastien Hertzcdd798d2017-04-18 18:28:51 +02003647 suspended_thread = thread_list->SuspendThreadByPeer(thread_peer,
Andreas Gampe98ea9d92018-10-19 14:06:15 -07003648 /* request_suspension= */ true,
Alex Light46f93402017-06-29 11:59:50 -07003649 SuspendReason::kForDebugger,
Sebastien Hertzcdd798d2017-04-18 18:28:51 +02003650 &timed_out);
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07003651 }
Ian Rogersf3d874c2014-07-17 18:52:42 -07003652 if (suspended_thread == nullptr) {
Jeff Hao449db332013-04-12 18:30:52 -07003653 // Thread terminated from under us while suspending.
3654 error_ = JDWP::ERR_INVALID_THREAD;
3655 } else {
3656 CHECK_EQ(suspended_thread, thread_);
3657 other_suspend_ = true;
3658 }
3659 }
3660 }
Elliott Hughes2435a572012-02-17 16:07:41 -08003661 }
Elliott Hughes86964332012-02-15 19:37:42 -08003662
Jeff Hao449db332013-04-12 18:30:52 -07003663 Thread* GetThread() const {
3664 return thread_;
3665 }
3666
3667 JDWP::JdwpError GetError() const {
3668 return error_;
3669 }
3670
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07003671 ~ScopedDebuggerThreadSuspension() {
Jeff Hao449db332013-04-12 18:30:52 -07003672 if (other_suspend_) {
Alex Light88fd7202017-06-30 08:31:59 -07003673 bool resumed = Runtime::Current()->GetThreadList()->Resume(thread_,
3674 SuspendReason::kForDebugger);
3675 DCHECK(resumed);
Jeff Hao449db332013-04-12 18:30:52 -07003676 }
3677 }
3678
3679 private:
3680 Thread* thread_;
3681 JDWP::JdwpError error_;
3682 bool self_suspend_;
3683 bool other_suspend_;
3684};
3685
3686JDWP::JdwpError Dbg::ConfigureStep(JDWP::ObjectId thread_id, JDWP::JdwpStepSize step_size,
3687 JDWP::JdwpStepDepth step_depth) {
3688 Thread* self = Thread::Current();
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07003689 ScopedDebuggerThreadSuspension sts(self, thread_id);
Jeff Hao449db332013-04-12 18:30:52 -07003690 if (sts.GetError() != JDWP::ERR_NONE) {
3691 return sts.GetError();
3692 }
3693
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003694 // Work out what ArtMethod* we're in, the current line number, and how deep the stack currently
Elliott Hughes2435a572012-02-17 16:07:41 -08003695 // is for step-out.
Ian Rogers0399dde2012-06-06 17:09:28 -07003696 struct SingleStepStackVisitor : public StackVisitor {
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07003697 explicit SingleStepStackVisitor(Thread* thread) REQUIRES_SHARED(Locks::mutator_lock_)
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +01003698 : StackVisitor(thread, nullptr, StackVisitor::StackWalkKind::kIncludeInlinedFrames),
3699 stack_depth(0),
3700 method(nullptr),
3701 line_number(-1) {}
Ian Rogersca190662012-06-26 15:45:57 -07003702
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003703 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
3704 // annotalysis.
Andreas Gampefa6a1b02018-09-07 08:11:55 -07003705 bool VisitFrame() override NO_THREAD_SAFETY_ANALYSIS {
Mathieu Chartiere401d142015-04-22 13:56:20 -07003706 ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07003707 if (!m->IsRuntimeMethod()) {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003708 ++stack_depth;
3709 if (method == nullptr) {
Alex Light73376312017-04-06 10:10:51 -07003710 const DexFile* dex_file = m->GetDexFile();
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003711 method = m;
Alex Light73376312017-04-06 10:10:51 -07003712 if (dex_file != nullptr) {
David Sehr9323e6e2016-09-13 08:58:35 -07003713 line_number = annotations::GetLineNumFromPC(dex_file, m, GetDexPc());
Elliott Hughes2435a572012-02-17 16:07:41 -08003714 }
Elliott Hughes86964332012-02-15 19:37:42 -08003715 }
3716 }
Elliott Hughes530fa002012-03-12 11:44:49 -07003717 return true;
Elliott Hughes86964332012-02-15 19:37:42 -08003718 }
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003719
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003720 int stack_depth;
Mathieu Chartiere401d142015-04-22 13:56:20 -07003721 ArtMethod* method;
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003722 int32_t line_number;
Elliott Hughes86964332012-02-15 19:37:42 -08003723 };
Jeff Hao449db332013-04-12 18:30:52 -07003724
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003725 Thread* const thread = sts.GetThread();
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003726 SingleStepStackVisitor visitor(thread);
Ian Rogers0399dde2012-06-06 17:09:28 -07003727 visitor.WalkStack();
Elliott Hughes86964332012-02-15 19:37:42 -08003728
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003729 // Allocate single step.
Sebastien Hertz1558b572015-02-25 15:05:59 +01003730 SingleStepControl* single_step_control =
3731 new (std::nothrow) SingleStepControl(step_size, step_depth,
3732 visitor.stack_depth, visitor.method);
3733 if (single_step_control == nullptr) {
3734 LOG(ERROR) << "Failed to allocate SingleStepControl";
3735 return JDWP::ERR_OUT_OF_MEMORY;
3736 }
3737
Mathieu Chartiere401d142015-04-22 13:56:20 -07003738 ArtMethod* m = single_step_control->GetMethod();
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003739 const int32_t line_number = visitor.line_number;
Sebastien Hertz52f5f932015-05-28 11:00:57 +02003740 // Note: if the thread is not running Java code (pure native thread), there is no "current"
3741 // method on the stack (and no line number either).
3742 if (m != nullptr && !m->IsNative()) {
David Sehr0225f8e2018-01-31 08:52:24 +00003743 CodeItemDebugInfoAccessor accessor(m->DexInstructionDebugInfo());
Mathieu Chartier3e2e1232018-09-11 12:35:30 -07003744 bool last_pc_valid = false;
3745 uint32_t last_pc = 0u;
3746 // Find the dex_pc values that correspond to the current line, for line-based single-stepping.
3747 accessor.DecodeDebugPositionInfo([&](const DexFile::PositionInfo& entry) {
3748 if (static_cast<int32_t>(entry.line_) == line_number) {
3749 if (!last_pc_valid) {
3750 // Everything from this address until the next line change is ours.
3751 last_pc = entry.address_;
3752 last_pc_valid = true;
3753 }
3754 // Otherwise, if we're already in a valid range for this line,
3755 // just keep going (shouldn't really happen)...
3756 } else if (last_pc_valid) { // and the line number is new
3757 // Add everything from the last entry up until here to the set
3758 for (uint32_t dex_pc = last_pc; dex_pc < entry.address_; ++dex_pc) {
3759 single_step_control->AddDexPc(dex_pc);
3760 }
3761 last_pc_valid = false;
3762 }
3763 return false; // There may be multiple entries for any given line.
3764 });
3765 // If the line number was the last in the position table...
3766 if (last_pc_valid) {
3767 for (uint32_t dex_pc = last_pc; dex_pc < accessor.InsnsSizeInCodeUnits(); ++dex_pc) {
3768 single_step_control->AddDexPc(dex_pc);
3769 }
3770 }
Elliott Hughes3e2e1a22012-02-21 11:33:41 -08003771 }
Elliott Hughes2435a572012-02-17 16:07:41 -08003772
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003773 // Activate single-step in the thread.
3774 thread->ActivateSingleStepControl(single_step_control);
Elliott Hughes86964332012-02-15 19:37:42 -08003775
Elliott Hughes2435a572012-02-17 16:07:41 -08003776 if (VLOG_IS_ON(jdwp)) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003777 VLOG(jdwp) << "Single-step thread: " << *thread;
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003778 VLOG(jdwp) << "Single-step step size: " << single_step_control->GetStepSize();
3779 VLOG(jdwp) << "Single-step step depth: " << single_step_control->GetStepDepth();
David Sehr709b0702016-10-13 09:12:37 -07003780 VLOG(jdwp) << "Single-step current method: "
3781 << ArtMethod::PrettyMethod(single_step_control->GetMethod());
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003782 VLOG(jdwp) << "Single-step current line: " << line_number;
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003783 VLOG(jdwp) << "Single-step current stack depth: " << single_step_control->GetStackDepth();
Elliott Hughes2435a572012-02-17 16:07:41 -08003784 VLOG(jdwp) << "Single-step dex_pc values:";
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003785 for (uint32_t dex_pc : single_step_control->GetDexPcs()) {
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003786 VLOG(jdwp) << StringPrintf(" %#x", dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003787 }
3788 }
3789
3790 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003791}
3792
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003793void Dbg::UnconfigureStep(JDWP::ObjectId thread_id) {
3794 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07003795 JDWP::JdwpError error;
3796 Thread* thread = DecodeThread(soa, thread_id, &error);
Sebastien Hertz87118ed2013-11-26 17:57:18 +01003797 if (error == JDWP::ERR_NONE) {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003798 thread->DeactivateSingleStepControl();
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003799 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003800}
3801
Elliott Hughes45651fd2012-02-21 15:48:20 -08003802static char JdwpTagToShortyChar(JDWP::JdwpTag tag) {
3803 switch (tag) {
3804 default:
3805 LOG(FATAL) << "unknown JDWP tag: " << PrintableChar(tag);
Ian Rogersfc787ec2014-10-09 21:56:44 -07003806 UNREACHABLE();
Elliott Hughes45651fd2012-02-21 15:48:20 -08003807
3808 // Primitives.
3809 case JDWP::JT_BYTE: return 'B';
3810 case JDWP::JT_CHAR: return 'C';
3811 case JDWP::JT_FLOAT: return 'F';
3812 case JDWP::JT_DOUBLE: return 'D';
3813 case JDWP::JT_INT: return 'I';
3814 case JDWP::JT_LONG: return 'J';
3815 case JDWP::JT_SHORT: return 'S';
3816 case JDWP::JT_VOID: return 'V';
3817 case JDWP::JT_BOOLEAN: return 'Z';
3818
3819 // Reference types.
3820 case JDWP::JT_ARRAY:
3821 case JDWP::JT_OBJECT:
3822 case JDWP::JT_STRING:
3823 case JDWP::JT_THREAD:
3824 case JDWP::JT_THREAD_GROUP:
3825 case JDWP::JT_CLASS_LOADER:
3826 case JDWP::JT_CLASS_OBJECT:
3827 return 'L';
3828 }
3829}
3830
Sebastien Hertzcbc50642015-06-01 17:33:12 +02003831JDWP::JdwpError Dbg::PrepareInvokeMethod(uint32_t request_id, JDWP::ObjectId thread_id,
3832 JDWP::ObjectId object_id, JDWP::RefTypeId class_id,
3833 JDWP::MethodId method_id, uint32_t arg_count,
3834 uint64_t arg_values[], JDWP::JdwpTag* arg_types,
3835 uint32_t options) {
3836 Thread* const self = Thread::Current();
3837 CHECK_EQ(self, GetDebugThread()) << "This must be called by the JDWP thread";
Sebastien Hertzd4032e42015-06-12 15:47:34 +02003838 const bool resume_all_threads = ((options & JDWP::INVOKE_SINGLE_THREADED) == 0);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003839
Sebastien Hertzcbc50642015-06-01 17:33:12 +02003840 ThreadList* thread_list = Runtime::Current()->GetThreadList();
Ian Rogersc0542af2014-09-03 16:16:56 -07003841 Thread* targetThread = nullptr;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003842 {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003843 ScopedObjectAccessUnchecked soa(self);
Ian Rogersc0542af2014-09-03 16:16:56 -07003844 JDWP::JdwpError error;
3845 targetThread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08003846 if (error != JDWP::ERR_NONE) {
3847 LOG(ERROR) << "InvokeMethod request for invalid thread id " << thread_id;
3848 return error;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003849 }
Sebastien Hertz1558b572015-02-25 15:05:59 +01003850 if (targetThread->GetInvokeReq() != nullptr) {
3851 // Thread is already invoking a method on behalf of the debugger.
3852 LOG(ERROR) << "InvokeMethod request for thread already invoking a method: " << *targetThread;
3853 return JDWP::ERR_ALREADY_INVOKING;
3854 }
3855 if (!targetThread->IsReadyForDebugInvoke()) {
3856 // Thread is not suspended by an event so it cannot invoke a method.
Elliott Hughesd07986f2011-12-06 18:27:45 -08003857 LOG(ERROR) << "InvokeMethod request for thread not stopped by event: " << *targetThread;
3858 return JDWP::ERR_INVALID_THREAD;
3859 }
3860
3861 /*
Sebastien Hertzd4032e42015-06-12 15:47:34 +02003862 * According to the JDWP specs, we are expected to resume all threads (or only the
3863 * target thread) once. So if a thread has been suspended more than once (either by
3864 * the debugger for an event or by the runtime for GC), it will remain suspended before
3865 * the invoke is executed. This means the debugger is responsible to properly resume all
3866 * the threads it has suspended so the target thread can execute the method.
Elliott Hughesd07986f2011-12-06 18:27:45 -08003867 *
Sebastien Hertzd4032e42015-06-12 15:47:34 +02003868 * However, for compatibility reason with older versions of debuggers (like Eclipse), we
3869 * fully resume all threads (by canceling *all* debugger suspensions) when the debugger
3870 * wants us to resume all threads. This is to avoid ending up in deadlock situation.
3871 *
3872 * On the other hand, if we are asked to only resume the target thread, then we follow the
3873 * JDWP specs by resuming that thread only once. This means the thread will remain suspended
3874 * if it has been suspended more than once before the invoke (and again, this is the
3875 * responsibility of the debugger to properly resume that thread before invoking a method).
Elliott Hughesd07986f2011-12-06 18:27:45 -08003876 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003877 int suspend_count;
3878 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003879 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003880 suspend_count = targetThread->GetSuspendCount();
3881 }
Sebastien Hertzd4032e42015-06-12 15:47:34 +02003882 if (suspend_count > 1 && resume_all_threads) {
3883 // The target thread will remain suspended even after we resume it. Let's emit a warning
3884 // to indicate the invoke won't be executed until the thread is resumed.
3885 LOG(WARNING) << *targetThread << " suspended more than once (suspend count == "
3886 << suspend_count << "). This thread will invoke the method only once "
3887 << "it is fully resumed.";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003888 }
3889
Ian Rogersc0542af2014-09-03 16:16:56 -07003890 mirror::Object* receiver = gRegistry->Get<mirror::Object*>(object_id, &error);
3891 if (error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003892 return JDWP::ERR_INVALID_OBJECT;
3893 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003894
Sebastien Hertz1558b572015-02-25 15:05:59 +01003895 gRegistry->Get<mirror::Object*>(thread_id, &error);
Ian Rogersc0542af2014-09-03 16:16:56 -07003896 if (error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003897 return JDWP::ERR_INVALID_OBJECT;
3898 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003899
Ian Rogersc0542af2014-09-03 16:16:56 -07003900 mirror::Class* c = DecodeClass(class_id, &error);
3901 if (c == nullptr) {
3902 return error;
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003903 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003904
Mathieu Chartiere401d142015-04-22 13:56:20 -07003905 ArtMethod* m = FromMethodId(method_id);
Ian Rogersc0542af2014-09-03 16:16:56 -07003906 if (m->IsStatic() != (receiver == nullptr)) {
Elliott Hughes45651fd2012-02-21 15:48:20 -08003907 return JDWP::ERR_INVALID_METHODID;
3908 }
3909 if (m->IsStatic()) {
3910 if (m->GetDeclaringClass() != c) {
3911 return JDWP::ERR_INVALID_METHODID;
3912 }
3913 } else {
3914 if (!m->GetDeclaringClass()->IsAssignableFrom(c)) {
3915 return JDWP::ERR_INVALID_METHODID;
3916 }
3917 }
3918
3919 // Check the argument list matches the method.
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003920 uint32_t shorty_len = 0;
3921 const char* shorty = m->GetShorty(&shorty_len);
3922 if (shorty_len - 1 != arg_count) {
Elliott Hughes45651fd2012-02-21 15:48:20 -08003923 return JDWP::ERR_ILLEGAL_ARGUMENT;
3924 }
Elliott Hughes09201632013-04-15 15:50:07 -07003925
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003926 {
Mathieu Chartiere401d142015-04-22 13:56:20 -07003927 StackHandleScope<2> hs(soa.Self());
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003928 HandleWrapper<mirror::Object> h_obj(hs.NewHandleWrapper(&receiver));
3929 HandleWrapper<mirror::Class> h_klass(hs.NewHandleWrapper(&c));
3930 const DexFile::TypeList* types = m->GetParameterTypeList();
3931 for (size_t i = 0; i < arg_count; ++i) {
3932 if (shorty[i + 1] != JdwpTagToShortyChar(arg_types[i])) {
Elliott Hughes09201632013-04-15 15:50:07 -07003933 return JDWP::ERR_ILLEGAL_ARGUMENT;
3934 }
3935
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003936 if (shorty[i + 1] == 'L') {
3937 // Did we really get an argument of an appropriate reference type?
Vladimir Markob45528c2017-07-27 14:14:28 +01003938 ObjPtr<mirror::Class> parameter_type =
3939 m->ResolveClassFromTypeIndex(types->GetTypeItem(i).type_idx_);
Ian Rogersc0542af2014-09-03 16:16:56 -07003940 mirror::Object* argument = gRegistry->Get<mirror::Object*>(arg_values[i], &error);
3941 if (error != JDWP::ERR_NONE) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003942 return JDWP::ERR_INVALID_OBJECT;
3943 }
Ian Rogersc0542af2014-09-03 16:16:56 -07003944 if (argument != nullptr && !argument->InstanceOf(parameter_type)) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003945 return JDWP::ERR_ILLEGAL_ARGUMENT;
3946 }
3947
3948 // Turn the on-the-wire ObjectId into a jobject.
3949 jvalue& v = reinterpret_cast<jvalue&>(arg_values[i]);
3950 v.l = gRegistry->GetJObject(arg_values[i]);
3951 }
Elliott Hughes09201632013-04-15 15:50:07 -07003952 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003953 }
3954
Sebastien Hertz1558b572015-02-25 15:05:59 +01003955 // Allocates a DebugInvokeReq.
Sebastien Hertzcbc50642015-06-01 17:33:12 +02003956 DebugInvokeReq* req = new (std::nothrow) DebugInvokeReq(request_id, thread_id, receiver, c, m,
3957 options, arg_values, arg_count);
3958 if (req == nullptr) {
Sebastien Hertz1558b572015-02-25 15:05:59 +01003959 LOG(ERROR) << "Failed to allocate DebugInvokeReq";
3960 return JDWP::ERR_OUT_OF_MEMORY;
3961 }
3962
Sebastien Hertzcbc50642015-06-01 17:33:12 +02003963 // Attaches the DebugInvokeReq to the target thread so it executes the method when
3964 // it is resumed. Once the invocation completes, the target thread will delete it before
3965 // suspending itself (see ThreadList::SuspendSelfForDebugger).
3966 targetThread->SetDebugInvokeReq(req);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003967 }
3968
3969 // The fact that we've released the thread list lock is a bit risky --- if the thread goes
Sebastien Hertzcbc50642015-06-01 17:33:12 +02003970 // away we're sitting high and dry -- but we must release this before the UndoDebuggerSuspensions
3971 // call.
Sebastien Hertzd4032e42015-06-12 15:47:34 +02003972 if (resume_all_threads) {
Sebastien Hertzcbc50642015-06-01 17:33:12 +02003973 VLOG(jdwp) << " Resuming all threads";
3974 thread_list->UndoDebuggerSuspensions();
3975 } else {
3976 VLOG(jdwp) << " Resuming event thread only";
Alex Light88fd7202017-06-30 08:31:59 -07003977 bool resumed = thread_list->Resume(targetThread, SuspendReason::kForDebugger);
3978 DCHECK(resumed);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003979 }
3980
Sebastien Hertzcbc50642015-06-01 17:33:12 +02003981 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003982}
3983
3984void Dbg::ExecuteMethod(DebugInvokeReq* pReq) {
Sebastien Hertzcbc50642015-06-01 17:33:12 +02003985 Thread* const self = Thread::Current();
3986 CHECK_NE(self, GetDebugThread()) << "This must be called by the event thread";
3987
3988 ScopedObjectAccess soa(self);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003989
Elliott Hughes81ff3182012-03-23 20:35:56 -07003990 // We can be called while an exception is pending. We need
Elliott Hughesd07986f2011-12-06 18:27:45 -08003991 // to preserve that across the method invocation.
Sebastien Hertzcbc50642015-06-01 17:33:12 +02003992 StackHandleScope<1> hs(soa.Self());
3993 Handle<mirror::Throwable> old_exception = hs.NewHandle(soa.Self()->GetException());
Sebastien Hertz1558b572015-02-25 15:05:59 +01003994 soa.Self()->ClearException();
Elliott Hughesd07986f2011-12-06 18:27:45 -08003995
Sebastien Hertzcbc50642015-06-01 17:33:12 +02003996 // Execute the method then sends reply to the debugger.
3997 ExecuteMethodWithoutPendingException(soa, pReq);
3998
3999 // If an exception was pending before the invoke, restore it now.
Andreas Gampefa4333d2017-02-14 11:10:34 -08004000 if (old_exception != nullptr) {
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004001 soa.Self()->SetException(old_exception.Get());
4002 }
4003}
4004
4005// Helper function: write a variable-width value into the output input buffer.
4006static void WriteValue(JDWP::ExpandBuf* pReply, int width, uint64_t value) {
4007 switch (width) {
4008 case 1:
4009 expandBufAdd1(pReply, value);
4010 break;
4011 case 2:
4012 expandBufAdd2BE(pReply, value);
4013 break;
4014 case 4:
4015 expandBufAdd4BE(pReply, value);
4016 break;
4017 case 8:
4018 expandBufAdd8BE(pReply, value);
4019 break;
4020 default:
4021 LOG(FATAL) << width;
4022 UNREACHABLE();
4023 }
4024}
4025
4026void Dbg::ExecuteMethodWithoutPendingException(ScopedObjectAccess& soa, DebugInvokeReq* pReq) {
4027 soa.Self()->AssertNoPendingException();
4028
Elliott Hughesd07986f2011-12-06 18:27:45 -08004029 // Translate the method through the vtable, unless the debugger wants to suppress it.
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004030 ArtMethod* m = pReq->method;
Andreas Gampe542451c2016-07-26 09:02:02 -07004031 PointerSize image_pointer_size = Runtime::Current()->GetClassLinker()->GetImagePointerSize();
Sebastien Hertz1558b572015-02-25 15:05:59 +01004032 if ((pReq->options & JDWP::INVOKE_NONVIRTUAL) == 0 && pReq->receiver.Read() != nullptr) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07004033 ArtMethod* actual_method =
4034 pReq->klass.Read()->FindVirtualMethodForVirtualOrInterface(m, image_pointer_size);
4035 if (actual_method != m) {
David Sehr709b0702016-10-13 09:12:37 -07004036 VLOG(jdwp) << "ExecuteMethod translated " << ArtMethod::PrettyMethod(m)
4037 << " to " << ArtMethod::PrettyMethod(actual_method);
Mathieu Chartiere401d142015-04-22 13:56:20 -07004038 m = actual_method;
Elliott Hughes45651fd2012-02-21 15:48:20 -08004039 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08004040 }
David Sehr709b0702016-10-13 09:12:37 -07004041 VLOG(jdwp) << "ExecuteMethod " << ArtMethod::PrettyMethod(m)
Sebastien Hertz1558b572015-02-25 15:05:59 +01004042 << " receiver=" << pReq->receiver.Read()
Sebastien Hertzd38667a2013-11-25 15:43:54 +01004043 << " arg_count=" << pReq->arg_count;
Mathieu Chartiere401d142015-04-22 13:56:20 -07004044 CHECK(m != nullptr);
Elliott Hughesd07986f2011-12-06 18:27:45 -08004045
Roland Levillain33d69032015-06-18 18:20:59 +01004046 static_assert(sizeof(jvalue) == sizeof(uint64_t), "jvalue and uint64_t have different sizes.");
Elliott Hughesd07986f2011-12-06 18:27:45 -08004047
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004048 // Invoke the method.
Jeff Hao39b6c242015-05-19 20:30:23 -07004049 ScopedLocalRef<jobject> ref(soa.Env(), soa.AddLocalReference<jobject>(pReq->receiver.Read()));
Andreas Gampe13b27842016-11-07 16:48:23 -08004050 JValue result = InvokeWithJValues(soa, ref.get(), jni::EncodeArtMethod(m),
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004051 reinterpret_cast<jvalue*>(pReq->arg_values.get()));
Elliott Hughesd07986f2011-12-06 18:27:45 -08004052
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004053 // Prepare JDWP ids for the reply.
4054 JDWP::JdwpTag result_tag = BasicTagFromDescriptor(m->GetShorty());
4055 const bool is_object_result = (result_tag == JDWP::JT_OBJECT);
Jeff Hao064d24e2016-08-25 03:52:40 +00004056 StackHandleScope<3> hs(soa.Self());
Sebastien Hertz1558b572015-02-25 15:05:59 +01004057 Handle<mirror::Object> object_result = hs.NewHandle(is_object_result ? result.GetL() : nullptr);
4058 Handle<mirror::Throwable> exception = hs.NewHandle(soa.Self()->GetException());
4059 soa.Self()->ClearException();
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004060
4061 if (!IsDebuggerActive()) {
4062 // The debugger detached: we must not re-suspend threads. We also don't need to fill the reply
4063 // because it won't be sent either.
4064 return;
4065 }
4066
4067 JDWP::ObjectId exceptionObjectId = gRegistry->Add(exception);
4068 uint64_t result_value = 0;
4069 if (exceptionObjectId != 0) {
Sebastien Hertz1558b572015-02-25 15:05:59 +01004070 VLOG(jdwp) << " JDWP invocation returning with exception=" << exception.Get()
4071 << " " << exception->Dump();
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004072 result_value = 0;
Sebastien Hertz1558b572015-02-25 15:05:59 +01004073 } else if (is_object_result) {
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004074 /* if no exception was thrown, examine object result more closely */
Sebastien Hertz1558b572015-02-25 15:05:59 +01004075 JDWP::JdwpTag new_tag = TagFromObject(soa, object_result.Get());
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004076 if (new_tag != result_tag) {
4077 VLOG(jdwp) << " JDWP promoted result from " << result_tag << " to " << new_tag;
4078 result_tag = new_tag;
Elliott Hughesd07986f2011-12-06 18:27:45 -08004079 }
4080
Sebastien Hertz1558b572015-02-25 15:05:59 +01004081 // Register the object in the registry and reference its ObjectId. This ensures
4082 // GC safety and prevents from accessing stale reference if the object is moved.
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004083 result_value = gRegistry->Add(object_result.Get());
Sebastien Hertz1558b572015-02-25 15:05:59 +01004084 } else {
4085 // Primitive result.
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004086 DCHECK(IsPrimitiveTag(result_tag));
4087 result_value = result.GetJ();
4088 }
4089 const bool is_constructor = m->IsConstructor() && !m->IsStatic();
4090 if (is_constructor) {
4091 // If we invoked a constructor (which actually returns void), return the receiver,
4092 // unless we threw, in which case we return null.
Sebastien Hertza3e13772015-11-05 12:09:44 +01004093 DCHECK_EQ(JDWP::JT_VOID, result_tag);
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004094 if (exceptionObjectId == 0) {
Jeff Hao064d24e2016-08-25 03:52:40 +00004095 if (m->GetDeclaringClass()->IsStringClass()) {
4096 // For string constructors, the new string is remapped to the receiver (stored in ref).
4097 Handle<mirror::Object> decoded_ref = hs.NewHandle(soa.Self()->DecodeJObject(ref.get()));
4098 result_value = gRegistry->Add(decoded_ref);
4099 result_tag = TagFromObject(soa, decoded_ref.Get());
4100 } else {
4101 // TODO we could keep the receiver ObjectId in the DebugInvokeReq to avoid looking into the
4102 // object registry.
4103 result_value = GetObjectRegistry()->Add(pReq->receiver.Read());
4104 result_tag = TagFromObject(soa, pReq->receiver.Read());
4105 }
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004106 } else {
4107 result_value = 0;
Sebastien Hertza3e13772015-11-05 12:09:44 +01004108 result_tag = JDWP::JT_OBJECT;
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004109 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08004110 }
4111
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004112 // Suspend other threads if the invoke is not single-threaded.
4113 if ((pReq->options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07004114 ScopedThreadSuspension sts(soa.Self(), kWaitingForDebuggerSuspension);
Hiroshi Yamauchi8f95cf32016-04-19 11:14:06 -07004115 // Avoid a deadlock between GC and debugger where GC gets suspended during GC. b/25800335.
4116 gc::ScopedGCCriticalSection gcs(soa.Self(), gc::kGcCauseDebugger, gc::kCollectorTypeDebugger);
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004117 VLOG(jdwp) << " Suspending all threads";
4118 Runtime::Current()->GetThreadList()->SuspendAllForDebugger();
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004119 }
4120
4121 VLOG(jdwp) << " --> returned " << result_tag
4122 << StringPrintf(" %#" PRIx64 " (except=%#" PRIx64 ")", result_value,
4123 exceptionObjectId);
4124
4125 // Show detailed debug output.
4126 if (result_tag == JDWP::JT_STRING && exceptionObjectId == 0) {
4127 if (result_value != 0) {
4128 if (VLOG_IS_ON(jdwp)) {
4129 std::string result_string;
4130 JDWP::JdwpError error = Dbg::StringToUtf8(result_value, &result_string);
4131 CHECK_EQ(error, JDWP::ERR_NONE);
4132 VLOG(jdwp) << " string '" << result_string << "'";
4133 }
4134 } else {
4135 VLOG(jdwp) << " string (null)";
4136 }
4137 }
4138
4139 // Attach the reply to DebugInvokeReq so it can be sent to the debugger when the event thread
4140 // is ready to suspend.
4141 BuildInvokeReply(pReq->reply, pReq->request_id, result_tag, result_value, exceptionObjectId);
4142}
4143
4144void Dbg::BuildInvokeReply(JDWP::ExpandBuf* pReply, uint32_t request_id, JDWP::JdwpTag result_tag,
4145 uint64_t result_value, JDWP::ObjectId exception) {
4146 // Make room for the JDWP header since we do not know the size of the reply yet.
4147 JDWP::expandBufAddSpace(pReply, kJDWPHeaderLen);
4148
4149 size_t width = GetTagWidth(result_tag);
4150 JDWP::expandBufAdd1(pReply, result_tag);
4151 if (width != 0) {
4152 WriteValue(pReply, width, result_value);
4153 }
4154 JDWP::expandBufAdd1(pReply, JDWP::JT_OBJECT);
4155 JDWP::expandBufAddObjectId(pReply, exception);
4156
4157 // Now we know the size, we can complete the JDWP header.
4158 uint8_t* buf = expandBufGetBuffer(pReply);
4159 JDWP::Set4BE(buf + kJDWPHeaderSizeOffset, expandBufGetLength(pReply));
4160 JDWP::Set4BE(buf + kJDWPHeaderIdOffset, request_id);
4161 JDWP::Set1(buf + kJDWPHeaderFlagsOffset, kJDWPFlagReply); // flags
4162 JDWP::Set2BE(buf + kJDWPHeaderErrorCodeOffset, JDWP::ERR_NONE);
4163}
4164
4165void Dbg::FinishInvokeMethod(DebugInvokeReq* pReq) {
4166 CHECK_NE(Thread::Current(), GetDebugThread()) << "This must be called by the event thread";
4167
4168 JDWP::ExpandBuf* const pReply = pReq->reply;
4169 CHECK(pReply != nullptr) << "No reply attached to DebugInvokeReq";
4170
4171 // We need to prevent other threads (including JDWP thread) from interacting with the debugger
4172 // while we send the reply but are not yet suspended. The JDWP token will be released just before
4173 // we suspend ourself again (see ThreadList::SuspendSelfForDebugger).
4174 gJdwpState->AcquireJdwpTokenForEvent(pReq->thread_id);
4175
4176 // Send the reply unless the debugger detached before the completion of the method.
4177 if (IsDebuggerActive()) {
4178 const size_t replyDataLength = expandBufGetLength(pReply) - kJDWPHeaderLen;
4179 VLOG(jdwp) << StringPrintf("REPLY INVOKE id=0x%06x (length=%zu)",
4180 pReq->request_id, replyDataLength);
4181
4182 gJdwpState->SendRequest(pReply);
4183 } else {
4184 VLOG(jdwp) << "Not sending invoke reply because debugger detached";
Elliott Hughesd07986f2011-12-06 18:27:45 -08004185 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004186}
4187
Alex Light8c2b9292017-11-09 13:21:01 -08004188bool Dbg::DdmHandleChunk(JNIEnv* env,
4189 uint32_t type,
4190 const ArrayRef<const jbyte>& data,
4191 /*out*/uint32_t* out_type,
4192 /*out*/std::vector<uint8_t>* out_data) {
4193 ScopedLocalRef<jbyteArray> dataArray(env, env->NewByteArray(data.size()));
Ian Rogersc0542af2014-09-03 16:16:56 -07004194 if (dataArray.get() == nullptr) {
Alex Light8c2b9292017-11-09 13:21:01 -08004195 LOG(WARNING) << "byte[] allocation failed: " << data.size();
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004196 env->ExceptionClear();
4197 return false;
4198 }
Alex Light8c2b9292017-11-09 13:21:01 -08004199 env->SetByteArrayRegion(dataArray.get(),
4200 0,
4201 data.size(),
4202 reinterpret_cast<const jbyte*>(data.data()));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004203 // Call "private static Chunk dispatch(int type, byte[] data, int offset, int length)".
Alex Light8c2b9292017-11-09 13:21:01 -08004204 ScopedLocalRef<jobject> chunk(
4205 env,
4206 env->CallStaticObjectMethod(
4207 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
4208 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_dispatch,
4209 type, dataArray.get(), 0, data.size()));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004210 if (env->ExceptionCheck()) {
Alex Light1eeefa62018-03-19 13:47:56 -07004211 Thread* self = Thread::Current();
4212 ScopedObjectAccess soa(self);
4213 LOG(INFO) << StringPrintf("Exception thrown by dispatcher for 0x%08x", type) << std::endl
4214 << self->GetException()->Dump();
4215 self->ClearException();
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004216 return false;
4217 }
4218
Ian Rogersc0542af2014-09-03 16:16:56 -07004219 if (chunk.get() == nullptr) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004220 return false;
4221 }
4222
4223 /*
4224 * Pull the pieces out of the chunk. We copy the results into a
4225 * newly-allocated buffer that the caller can free. We don't want to
4226 * continue using the Chunk object because nothing has a reference to it.
4227 *
4228 * We could avoid this by returning type/data/offset/length and having
4229 * the caller be aware of the object lifetime issues, but that
Elliott Hughes81ff3182012-03-23 20:35:56 -07004230 * integrates the JDWP code more tightly into the rest of the runtime, and doesn't work
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004231 * if we have responses for multiple chunks.
4232 *
4233 * So we're pretty much stuck with copying data around multiple times.
4234 */
Alex Light8c2b9292017-11-09 13:21:01 -08004235 ScopedLocalRef<jbyteArray> replyData(
4236 env,
4237 reinterpret_cast<jbyteArray>(
4238 env->GetObjectField(
4239 chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_data)));
4240 jint offset = env->GetIntField(chunk.get(),
4241 WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_offset);
4242 jint length = env->GetIntField(chunk.get(),
4243 WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_length);
4244 *out_type = env->GetIntField(chunk.get(),
4245 WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_type);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004246
Alex Light8c2b9292017-11-09 13:21:01 -08004247 VLOG(jdwp) << StringPrintf("DDM reply: type=0x%08x data=%p offset=%d length=%d",
4248 type,
4249 replyData.get(),
4250 offset,
4251 length);
Alex Light8c2b9292017-11-09 13:21:01 -08004252 out_data->resize(length);
4253 env->GetByteArrayRegion(replyData.get(),
4254 offset,
4255 length,
4256 reinterpret_cast<jbyte*>(out_data->data()));
Alex Light6f2a6342017-12-12 09:55:05 -08004257
Alex Lighte5463a82017-12-12 13:33:28 -08004258 if (env->ExceptionCheck()) {
Alex Light1eeefa62018-03-19 13:47:56 -07004259 Thread* self = Thread::Current();
4260 ScopedObjectAccess soa(self);
Alex Lighte5463a82017-12-12 13:33:28 -08004261 LOG(INFO) << StringPrintf("Exception thrown when reading response data from dispatcher 0x%08x",
Alex Light1eeefa62018-03-19 13:47:56 -07004262 type) << std::endl << self->GetException()->Dump();
4263 self->ClearException();
Alex Lighte5463a82017-12-12 13:33:28 -08004264 return false;
4265 }
4266
Alex Light8c2b9292017-11-09 13:21:01 -08004267 return true;
4268}
4269
4270/*
4271 * "request" contains a full JDWP packet, possibly with multiple chunks. We
4272 * need to process each, accumulate the replies, and ship the whole thing
4273 * back.
4274 *
4275 * Returns "true" if we have a reply. The reply buffer is newly allocated,
4276 * and includes the chunk type/length, followed by the data.
4277 *
4278 * OLD-TODO: we currently assume that the request and reply include a single
4279 * chunk. If this becomes inconvenient we will need to adapt.
4280 */
4281bool Dbg::DdmHandlePacket(JDWP::Request* request, uint8_t** pReplyBuf, int* pReplyLen) {
4282 Thread* self = Thread::Current();
4283 JNIEnv* env = self->GetJniEnv();
4284
4285 uint32_t type = request->ReadUnsigned32("type");
4286 uint32_t length = request->ReadUnsigned32("length");
4287
4288 // Create a byte[] corresponding to 'request'.
4289 size_t request_length = request->size();
4290 // Run through and find all chunks. [Currently just find the first.]
4291 if (length != request_length) {
4292 LOG(WARNING) << StringPrintf("bad chunk found (len=%u pktLen=%zd)", length, request_length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004293 return false;
4294 }
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004295
Alex Light8c2b9292017-11-09 13:21:01 -08004296 ArrayRef<const jbyte> data(reinterpret_cast<const jbyte*>(request->data()), request_length);
4297 std::vector<uint8_t> out_data;
4298 uint32_t out_type = 0;
4299 request->Skip(request_length);
Alex Light6f2a6342017-12-12 09:55:05 -08004300 if (!DdmHandleChunk(env, type, data, &out_type, &out_data) || out_data.empty()) {
Alex Light8c2b9292017-11-09 13:21:01 -08004301 return false;
4302 }
4303 const uint32_t kDdmHeaderSize = 8;
4304 *pReplyLen = out_data.size() + kDdmHeaderSize;
4305 *pReplyBuf = new uint8_t[out_data.size() + kDdmHeaderSize];
4306 memcpy((*pReplyBuf) + kDdmHeaderSize, out_data.data(), out_data.size());
4307 JDWP::Set4BE(*pReplyBuf, out_type);
4308 JDWP::Set4BE((*pReplyBuf) + 4, static_cast<uint32_t>(out_data.size()));
4309 VLOG(jdwp)
4310 << StringPrintf("dvmHandleDdm returning type=%.4s", reinterpret_cast<char*>(*pReplyBuf))
4311 << "0x" << std::hex << reinterpret_cast<uintptr_t>(*pReplyBuf) << std::dec
4312 << " len= " << out_data.size();
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004313 return true;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004314}
4315
Elliott Hughesa2155262011-11-16 16:26:58 -08004316void Dbg::DdmBroadcast(bool connect) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08004317 VLOG(jdwp) << "Broadcasting DDM " << (connect ? "connect" : "disconnect") << "...";
Elliott Hughes47fce012011-10-25 18:37:19 -07004318
4319 Thread* self = Thread::Current();
Ian Rogers50b35e22012-10-04 10:09:15 -07004320 if (self->GetState() != kRunnable) {
4321 LOG(ERROR) << "DDM broadcast in thread state " << self->GetState();
4322 /* try anyway? */
Elliott Hughes47fce012011-10-25 18:37:19 -07004323 }
4324
4325 JNIEnv* env = self->GetJniEnv();
Elliott Hughes47fce012011-10-25 18:37:19 -07004326 jint event = connect ? 1 /*DdmServer.CONNECTED*/ : 2 /*DdmServer.DISCONNECTED*/;
Elliott Hugheseac76672012-05-24 21:56:51 -07004327 env->CallStaticVoidMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
4328 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_broadcast,
4329 event);
Elliott Hughes47fce012011-10-25 18:37:19 -07004330 if (env->ExceptionCheck()) {
4331 LOG(ERROR) << "DdmServer.broadcast " << event << " failed";
4332 env->ExceptionDescribe();
4333 env->ExceptionClear();
4334 }
4335}
4336
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004337void Dbg::DdmConnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08004338 Dbg::DdmBroadcast(true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004339}
4340
4341void Dbg::DdmDisconnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08004342 Dbg::DdmBroadcast(false);
Elliott Hughes47fce012011-10-25 18:37:19 -07004343 gDdmThreadNotification = false;
4344}
4345
4346/*
Elliott Hughes82188472011-11-07 18:11:48 -08004347 * Send a notification when a thread starts, stops, or changes its name.
Elliott Hughes47fce012011-10-25 18:37:19 -07004348 *
4349 * Because we broadcast the full set of threads when the notifications are
4350 * first enabled, it's possible for "thread" to be actively executing.
4351 */
Elliott Hughes82188472011-11-07 18:11:48 -08004352void Dbg::DdmSendThreadNotification(Thread* t, uint32_t type) {
Elliott Hughes47fce012011-10-25 18:37:19 -07004353 if (!gDdmThreadNotification) {
4354 return;
4355 }
4356
Alex Light772099a2017-11-21 14:05:04 -08004357 RuntimeCallbacks* cb = Runtime::Current()->GetRuntimeCallbacks();
Elliott Hughes82188472011-11-07 18:11:48 -08004358 if (type == CHUNK_TYPE("THDE")) {
Elliott Hughes47fce012011-10-25 18:37:19 -07004359 uint8_t buf[4];
Ian Rogersd9c4fc92013-10-01 19:45:43 -07004360 JDWP::Set4BE(&buf[0], t->GetThreadId());
Alex Light772099a2017-11-21 14:05:04 -08004361 cb->DdmPublishChunk(CHUNK_TYPE("THDE"), ArrayRef<const uint8_t>(buf));
Elliott Hughes82188472011-11-07 18:11:48 -08004362 } else {
4363 CHECK(type == CHUNK_TYPE("THCR") || type == CHUNK_TYPE("THNM")) << type;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004364 ScopedObjectAccessUnchecked soa(Thread::Current());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004365 StackHandleScope<1> hs(soa.Self());
Andreas Gampe08883de2016-11-08 13:20:52 -08004366 Handle<mirror::String> name(hs.NewHandle(t->GetThreadName()));
Andreas Gampefa4333d2017-02-14 11:10:34 -08004367 size_t char_count = (name != nullptr) ? name->GetLength() : 0;
4368 const jchar* chars = (name != nullptr) ? name->GetValue() : nullptr;
4369 bool is_compressed = (name != nullptr) ? name->IsCompressed() : false;
Elliott Hughes82188472011-11-07 18:11:48 -08004370
Elliott Hughes21f32d72011-11-09 17:44:13 -08004371 std::vector<uint8_t> bytes;
Ian Rogersd9c4fc92013-10-01 19:45:43 -07004372 JDWP::Append4BE(bytes, t->GetThreadId());
jessicahandojo3aaa37b2016-07-29 14:46:37 -07004373 if (is_compressed) {
4374 const uint8_t* chars_compressed = name->GetValueCompressed();
4375 JDWP::AppendUtf16CompressedBE(bytes, chars_compressed, char_count);
4376 } else {
4377 JDWP::AppendUtf16BE(bytes, chars, char_count);
4378 }
Elliott Hughes21f32d72011-11-09 17:44:13 -08004379 CHECK_EQ(bytes.size(), char_count*2 + sizeof(uint32_t)*2);
Alex Light772099a2017-11-21 14:05:04 -08004380 cb->DdmPublishChunk(type, ArrayRef<const uint8_t>(bytes));
Elliott Hughes47fce012011-10-25 18:37:19 -07004381 }
4382}
4383
Elliott Hughes47fce012011-10-25 18:37:19 -07004384void Dbg::DdmSetThreadNotification(bool enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004385 // Enable/disable thread notifications.
Elliott Hughes47fce012011-10-25 18:37:19 -07004386 gDdmThreadNotification = enable;
4387 if (enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004388 // Suspend the VM then post thread start notifications for all threads. Threads attaching will
4389 // see a suspension in progress and block until that ends. They then post their own start
4390 // notification.
4391 SuspendVM();
4392 std::list<Thread*> threads;
Ian Rogers50b35e22012-10-04 10:09:15 -07004393 Thread* self = Thread::Current();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004394 {
Ian Rogers50b35e22012-10-04 10:09:15 -07004395 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004396 threads = Runtime::Current()->GetThreadList()->GetList();
4397 }
4398 {
Ian Rogers50b35e22012-10-04 10:09:15 -07004399 ScopedObjectAccess soa(self);
Mathieu Chartier02e25112013-08-14 16:14:24 -07004400 for (Thread* thread : threads) {
4401 Dbg::DdmSendThreadNotification(thread, CHUNK_TYPE("THCR"));
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004402 }
4403 }
4404 ResumeVM();
Elliott Hughes47fce012011-10-25 18:37:19 -07004405 }
4406}
4407
Elliott Hughesa2155262011-11-16 16:26:58 -08004408void Dbg::PostThreadStartOrStop(Thread* t, uint32_t type) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07004409 if (IsDebuggerActive()) {
Sebastien Hertz6995c602014-09-09 12:10:13 +02004410 gJdwpState->PostThreadChange(t, type == CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07004411 }
Elliott Hughes82188472011-11-07 18:11:48 -08004412 Dbg::DdmSendThreadNotification(t, type);
Elliott Hughes47fce012011-10-25 18:37:19 -07004413}
4414
4415void Dbg::PostThreadStart(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004416 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07004417}
4418
4419void Dbg::PostThreadDeath(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004420 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THDE"));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004421}
4422
Mathieu Chartierad466ad2015-01-08 16:28:08 -08004423JDWP::JdwpState* Dbg::GetJdwpState() {
4424 return gJdwpState;
4425}
4426
Elliott Hughes767a1472011-10-26 18:49:02 -07004427int Dbg::DdmHandleHpifChunk(HpifWhen when) {
4428 if (when == HPIF_WHEN_NOW) {
Elliott Hughes7162ad92011-10-27 14:08:42 -07004429 DdmSendHeapInfo(when);
Elliott Hughes767a1472011-10-26 18:49:02 -07004430 return true;
4431 }
4432
4433 if (when != HPIF_WHEN_NEVER && when != HPIF_WHEN_NEXT_GC && when != HPIF_WHEN_EVERY_GC) {
4434 LOG(ERROR) << "invalid HpifWhen value: " << static_cast<int>(when);
4435 return false;
4436 }
4437
4438 gDdmHpifWhen = when;
4439 return true;
4440}
4441
4442bool Dbg::DdmHandleHpsgNhsgChunk(Dbg::HpsgWhen when, Dbg::HpsgWhat what, bool native) {
4443 if (when != HPSG_WHEN_NEVER && when != HPSG_WHEN_EVERY_GC) {
4444 LOG(ERROR) << "invalid HpsgWhen value: " << static_cast<int>(when);
4445 return false;
4446 }
4447
4448 if (what != HPSG_WHAT_MERGED_OBJECTS && what != HPSG_WHAT_DISTINCT_OBJECTS) {
4449 LOG(ERROR) << "invalid HpsgWhat value: " << static_cast<int>(what);
4450 return false;
4451 }
4452
4453 if (native) {
4454 gDdmNhsgWhen = when;
4455 gDdmNhsgWhat = what;
4456 } else {
4457 gDdmHpsgWhen = when;
4458 gDdmHpsgWhat = what;
4459 }
4460 return true;
4461}
4462
Elliott Hughes7162ad92011-10-27 14:08:42 -07004463void Dbg::DdmSendHeapInfo(HpifWhen reason) {
4464 // If there's a one-shot 'when', reset it.
4465 if (reason == gDdmHpifWhen) {
4466 if (gDdmHpifWhen == HPIF_WHEN_NEXT_GC) {
4467 gDdmHpifWhen = HPIF_WHEN_NEVER;
4468 }
4469 }
4470
4471 /*
4472 * Chunk HPIF (client --> server)
4473 *
4474 * Heap Info. General information about the heap,
4475 * suitable for a summary display.
4476 *
4477 * [u4]: number of heaps
4478 *
4479 * For each heap:
4480 * [u4]: heap ID
4481 * [u8]: timestamp in ms since Unix epoch
4482 * [u1]: capture reason (same as 'when' value from server)
4483 * [u4]: max heap size in bytes (-Xmx)
4484 * [u4]: current heap size in bytes
4485 * [u4]: current number of bytes allocated
4486 * [u4]: current number of objects allocated
4487 */
4488 uint8_t heap_count = 1;
Ian Rogers1d54e732013-05-02 21:10:01 -07004489 gc::Heap* heap = Runtime::Current()->GetHeap();
Elliott Hughes21f32d72011-11-09 17:44:13 -08004490 std::vector<uint8_t> bytes;
Elliott Hughes545a0642011-11-08 19:10:03 -08004491 JDWP::Append4BE(bytes, heap_count);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004492 JDWP::Append4BE(bytes, 1); // Heap id (bogus; we only have one heap).
Elliott Hughes545a0642011-11-08 19:10:03 -08004493 JDWP::Append8BE(bytes, MilliTime());
4494 JDWP::Append1BE(bytes, reason);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004495 JDWP::Append4BE(bytes, heap->GetMaxMemory()); // Max allowed heap size in bytes.
4496 JDWP::Append4BE(bytes, heap->GetTotalMemory()); // Current heap size in bytes.
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08004497 JDWP::Append4BE(bytes, heap->GetBytesAllocated());
4498 JDWP::Append4BE(bytes, heap->GetObjectsAllocated());
Elliott Hughes21f32d72011-11-09 17:44:13 -08004499 CHECK_EQ(bytes.size(), 4U + (heap_count * (4 + 8 + 1 + 4 + 4 + 4 + 4)));
Alex Light772099a2017-11-21 14:05:04 -08004500 Runtime::Current()->GetRuntimeCallbacks()->DdmPublishChunk(CHUNK_TYPE("HPIF"),
4501 ArrayRef<const uint8_t>(bytes));
Elliott Hughes767a1472011-10-26 18:49:02 -07004502}
4503
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004504enum HpsgSolidity {
4505 SOLIDITY_FREE = 0,
4506 SOLIDITY_HARD = 1,
4507 SOLIDITY_SOFT = 2,
4508 SOLIDITY_WEAK = 3,
4509 SOLIDITY_PHANTOM = 4,
4510 SOLIDITY_FINALIZABLE = 5,
4511 SOLIDITY_SWEEP = 6,
4512};
4513
4514enum HpsgKind {
4515 KIND_OBJECT = 0,
4516 KIND_CLASS_OBJECT = 1,
4517 KIND_ARRAY_1 = 2,
4518 KIND_ARRAY_2 = 3,
4519 KIND_ARRAY_4 = 4,
4520 KIND_ARRAY_8 = 5,
4521 KIND_UNKNOWN = 6,
4522 KIND_NATIVE = 7,
4523};
4524
4525#define HPSG_PARTIAL (1<<7)
4526#define HPSG_STATE(solidity, kind) ((uint8_t)((((kind) & 0x7) << 3) | ((solidity) & 0x7)))
4527
Ian Rogers30fab402012-01-23 15:43:46 -08004528class HeapChunkContext {
4529 public:
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004530 // Maximum chunk size. Obtain this from the formula:
4531 // (((maximum_heap_size / ALLOCATION_UNIT_SIZE) + 255) / 256) * 2
4532 HeapChunkContext(bool merge, bool native)
Ian Rogers30fab402012-01-23 15:43:46 -08004533 : buf_(16384 - 16),
4534 type_(0),
Mathieu Chartier36dab362014-07-30 14:59:56 -07004535 chunk_overhead_(0) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004536 Reset();
4537 if (native) {
Ian Rogers30fab402012-01-23 15:43:46 -08004538 type_ = CHUNK_TYPE("NHSG");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004539 } else {
Ian Rogers30fab402012-01-23 15:43:46 -08004540 type_ = merge ? CHUNK_TYPE("HPSG") : CHUNK_TYPE("HPSO");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004541 }
4542 }
4543
4544 ~HeapChunkContext() {
Ian Rogers30fab402012-01-23 15:43:46 -08004545 if (p_ > &buf_[0]) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004546 Flush();
4547 }
4548 }
4549
Mathieu Chartier36dab362014-07-30 14:59:56 -07004550 void SetChunkOverhead(size_t chunk_overhead) {
4551 chunk_overhead_ = chunk_overhead;
4552 }
4553
4554 void ResetStartOfNextChunk() {
4555 startOfNextMemoryChunk_ = nullptr;
4556 }
4557
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004558 void EnsureHeader(const void* chunk_ptr) {
Ian Rogers30fab402012-01-23 15:43:46 -08004559 if (!needHeader_) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004560 return;
4561 }
4562
4563 // Start a new HPSx chunk.
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004564 JDWP::Write4BE(&p_, 1); // Heap id (bogus; we only have one heap).
4565 JDWP::Write1BE(&p_, 8); // Size of allocation unit, in bytes.
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004566
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004567 JDWP::Write4BE(&p_, reinterpret_cast<uintptr_t>(chunk_ptr)); // virtual address of segment start.
4568 JDWP::Write4BE(&p_, 0); // offset of this piece (relative to the virtual address).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004569 // [u4]: length of piece, in allocation units
4570 // We won't know this until we're done, so save the offset and stuff in a dummy value.
Ian Rogers30fab402012-01-23 15:43:46 -08004571 pieceLenField_ = p_;
4572 JDWP::Write4BE(&p_, 0x55555555);
4573 needHeader_ = false;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004574 }
4575
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07004576 void Flush() REQUIRES_SHARED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004577 if (pieceLenField_ == nullptr) {
Ian Rogersd636b062013-01-18 17:51:18 -08004578 // Flush immediately post Reset (maybe back-to-back Flush). Ignore.
4579 CHECK(needHeader_);
4580 return;
4581 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004582 // Patch the "length of piece" field.
Ian Rogers30fab402012-01-23 15:43:46 -08004583 CHECK_LE(&buf_[0], pieceLenField_);
4584 CHECK_LE(pieceLenField_, p_);
4585 JDWP::Set4BE(pieceLenField_, totalAllocationUnits_);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004586
Alex Light772099a2017-11-21 14:05:04 -08004587 ArrayRef<const uint8_t> out(&buf_[0], p_ - &buf_[0]);
4588 Runtime::Current()->GetRuntimeCallbacks()->DdmPublishChunk(type_, out);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004589 Reset();
4590 }
4591
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004592 static void HeapChunkJavaCallback(void* start, void* end, size_t used_bytes, void* arg)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07004593 REQUIRES_SHARED(Locks::heap_bitmap_lock_,
Ian Rogersb726dcb2012-09-05 08:57:23 -07004594 Locks::mutator_lock_) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004595 reinterpret_cast<HeapChunkContext*>(arg)->HeapChunkJavaCallback(start, end, used_bytes);
4596 }
4597
4598 static void HeapChunkNativeCallback(void* start, void* end, size_t used_bytes, void* arg)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07004599 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004600 reinterpret_cast<HeapChunkContext*>(arg)->HeapChunkNativeCallback(start, end, used_bytes);
Elliott Hughesa2155262011-11-16 16:26:58 -08004601 }
4602
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004603 private:
Elliott Hughesa2155262011-11-16 16:26:58 -08004604 enum { ALLOCATION_UNIT_SIZE = 8 };
4605
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004606 void Reset() {
Ian Rogers30fab402012-01-23 15:43:46 -08004607 p_ = &buf_[0];
Mathieu Chartier36dab362014-07-30 14:59:56 -07004608 ResetStartOfNextChunk();
Ian Rogers30fab402012-01-23 15:43:46 -08004609 totalAllocationUnits_ = 0;
4610 needHeader_ = true;
Ian Rogersc0542af2014-09-03 16:16:56 -07004611 pieceLenField_ = nullptr;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004612 }
4613
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004614 bool IsNative() const {
4615 return type_ == CHUNK_TYPE("NHSG");
4616 }
4617
4618 // Returns true if the object is not an empty chunk.
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07004619 bool ProcessRecord(void* start, size_t used_bytes) REQUIRES_SHARED(Locks::mutator_lock_) {
Ian Rogers30fab402012-01-23 15:43:46 -08004620 // Note: heap call backs cannot manipulate the heap upon which they are crawling, care is taken
4621 // in the following code not to allocate memory, by ensuring buf_ is of the correct size
Ian Rogers15bf2d32012-08-28 17:33:04 -07004622 if (used_bytes == 0) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004623 if (start == nullptr) {
4624 // Reset for start of new heap.
4625 startOfNextMemoryChunk_ = nullptr;
4626 Flush();
4627 }
4628 // Only process in use memory so that free region information
4629 // also includes dlmalloc book keeping.
4630 return false;
Elliott Hughesa2155262011-11-16 16:26:58 -08004631 }
Ian Rogersc0542af2014-09-03 16:16:56 -07004632 if (startOfNextMemoryChunk_ != nullptr) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004633 // Transmit any pending free memory. Native free memory of over kMaxFreeLen could be because
4634 // of the use of mmaps, so don't report. If not free memory then start a new segment.
4635 bool flush = true;
4636 if (start > startOfNextMemoryChunk_) {
4637 const size_t kMaxFreeLen = 2 * kPageSize;
4638 void* free_start = startOfNextMemoryChunk_;
4639 void* free_end = start;
4640 const size_t free_len =
4641 reinterpret_cast<uintptr_t>(free_end) - reinterpret_cast<uintptr_t>(free_start);
4642 if (!IsNative() || free_len < kMaxFreeLen) {
4643 AppendChunk(HPSG_STATE(SOLIDITY_FREE, 0), free_start, free_len, IsNative());
4644 flush = false;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004645 }
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004646 }
4647 if (flush) {
4648 startOfNextMemoryChunk_ = nullptr;
4649 Flush();
4650 }
Ian Rogers15bf2d32012-08-28 17:33:04 -07004651 }
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004652 return true;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004653 }
Elliott Hughesa2155262011-11-16 16:26:58 -08004654
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004655 void HeapChunkNativeCallback(void* start, void* /*end*/, size_t used_bytes)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07004656 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004657 if (ProcessRecord(start, used_bytes)) {
4658 uint8_t state = ExamineNativeObject(start);
Andreas Gampe98ea9d92018-10-19 14:06:15 -07004659 AppendChunk(state, start, used_bytes + chunk_overhead_, /*is_native=*/ true);
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004660 startOfNextMemoryChunk_ = reinterpret_cast<char*>(start) + used_bytes + chunk_overhead_;
4661 }
4662 }
4663
4664 void HeapChunkJavaCallback(void* start, void* /*end*/, size_t used_bytes)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07004665 REQUIRES_SHARED(Locks::heap_bitmap_lock_, Locks::mutator_lock_) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004666 if (ProcessRecord(start, used_bytes)) {
4667 // Determine the type of this chunk.
4668 // OLD-TODO: if context.merge, see if this chunk is different from the last chunk.
4669 // If it's the same, we should combine them.
4670 uint8_t state = ExamineJavaObject(reinterpret_cast<mirror::Object*>(start));
Andreas Gampe98ea9d92018-10-19 14:06:15 -07004671 AppendChunk(state, start, used_bytes + chunk_overhead_, /*is_native=*/ false);
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004672 startOfNextMemoryChunk_ = reinterpret_cast<char*>(start) + used_bytes + chunk_overhead_;
4673 }
4674 }
4675
4676 void AppendChunk(uint8_t state, void* ptr, size_t length, bool is_native)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07004677 REQUIRES_SHARED(Locks::mutator_lock_) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004678 // Make sure there's enough room left in the buffer.
4679 // We need to use two bytes for every fractional 256 allocation units used by the chunk plus
4680 // 17 bytes for any header.
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004681 const size_t needed = ((RoundUp(length / ALLOCATION_UNIT_SIZE, 256) / 256) * 2) + 17;
4682 size_t byte_left = &buf_.back() - p_;
4683 if (byte_left < needed) {
4684 if (is_native) {
Pavel Vyssotski7522c742014-12-08 13:38:26 +06004685 // Cannot trigger memory allocation while walking native heap.
Pavel Vyssotski7522c742014-12-08 13:38:26 +06004686 return;
4687 }
Ian Rogers15bf2d32012-08-28 17:33:04 -07004688 Flush();
4689 }
4690
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004691 byte_left = &buf_.back() - p_;
4692 if (byte_left < needed) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004693 LOG(WARNING) << "Chunk is too big to transmit (chunk_len=" << length << ", "
4694 << needed << " bytes)";
4695 return;
4696 }
4697 EnsureHeader(ptr);
Elliott Hughesa2155262011-11-16 16:26:58 -08004698 // Write out the chunk description.
Ian Rogers15bf2d32012-08-28 17:33:04 -07004699 length /= ALLOCATION_UNIT_SIZE; // Convert to allocation units.
4700 totalAllocationUnits_ += length;
4701 while (length > 256) {
Ian Rogers30fab402012-01-23 15:43:46 -08004702 *p_++ = state | HPSG_PARTIAL;
4703 *p_++ = 255; // length - 1
Ian Rogers15bf2d32012-08-28 17:33:04 -07004704 length -= 256;
Elliott Hughesa2155262011-11-16 16:26:58 -08004705 }
Ian Rogers30fab402012-01-23 15:43:46 -08004706 *p_++ = state;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004707 *p_++ = length - 1;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004708 }
4709
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07004710 uint8_t ExamineNativeObject(const void* p) REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004711 return p == nullptr ? HPSG_STATE(SOLIDITY_FREE, 0) : HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
4712 }
4713
4714 uint8_t ExamineJavaObject(mirror::Object* o)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07004715 REQUIRES_SHARED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004716 if (o == nullptr) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004717 return HPSG_STATE(SOLIDITY_FREE, 0);
4718 }
Elliott Hughesa2155262011-11-16 16:26:58 -08004719 // It's an allocated chunk. Figure out what it is.
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004720 gc::Heap* heap = Runtime::Current()->GetHeap();
4721 if (!heap->IsLiveObjectLocked(o)) {
4722 LOG(ERROR) << "Invalid object in managed heap: " << o;
Elliott Hughesa2155262011-11-16 16:26:58 -08004723 return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
4724 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08004725 mirror::Class* c = o->GetClass();
Ian Rogersc0542af2014-09-03 16:16:56 -07004726 if (c == nullptr) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004727 // The object was probably just created but hasn't been initialized yet.
4728 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
4729 }
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004730 if (!heap->IsValidObjectAddress(c)) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004731 LOG(ERROR) << "Invalid class for managed heap object: " << o << " " << c;
Elliott Hughesa2155262011-11-16 16:26:58 -08004732 return HPSG_STATE(SOLIDITY_HARD, KIND_UNKNOWN);
4733 }
Mathieu Chartierf26e1b32015-01-29 10:47:10 -08004734 if (c->GetClass() == nullptr) {
4735 LOG(ERROR) << "Null class of class " << c << " for object " << o;
4736 return HPSG_STATE(SOLIDITY_HARD, KIND_UNKNOWN);
4737 }
Elliott Hughesa2155262011-11-16 16:26:58 -08004738 if (c->IsClassClass()) {
4739 return HPSG_STATE(SOLIDITY_HARD, KIND_CLASS_OBJECT);
4740 }
Elliott Hughesa2155262011-11-16 16:26:58 -08004741 if (c->IsArrayClass()) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004742 switch (c->GetComponentSize()) {
4743 case 1: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_1);
4744 case 2: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_2);
4745 case 4: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4);
4746 case 8: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_8);
4747 }
4748 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004749 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
4750 }
4751
Ian Rogers30fab402012-01-23 15:43:46 -08004752 std::vector<uint8_t> buf_;
4753 uint8_t* p_;
4754 uint8_t* pieceLenField_;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004755 void* startOfNextMemoryChunk_;
Ian Rogers30fab402012-01-23 15:43:46 -08004756 size_t totalAllocationUnits_;
4757 uint32_t type_;
Ian Rogers30fab402012-01-23 15:43:46 -08004758 bool needHeader_;
Mathieu Chartier36dab362014-07-30 14:59:56 -07004759 size_t chunk_overhead_;
Ian Rogers30fab402012-01-23 15:43:46 -08004760
Elliott Hughesa2155262011-11-16 16:26:58 -08004761 DISALLOW_COPY_AND_ASSIGN(HeapChunkContext);
4762};
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004763
4764void Dbg::DdmSendHeapSegments(bool native) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004765 Dbg::HpsgWhen when = native ? gDdmNhsgWhen : gDdmHpsgWhen;
4766 Dbg::HpsgWhat what = native ? gDdmNhsgWhat : gDdmHpsgWhat;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004767 if (when == HPSG_WHEN_NEVER) {
4768 return;
4769 }
Alex Light772099a2017-11-21 14:05:04 -08004770 RuntimeCallbacks* cb = Runtime::Current()->GetRuntimeCallbacks();
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004771 // Figure out what kind of chunks we'll be sending.
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004772 CHECK(what == HPSG_WHAT_MERGED_OBJECTS || what == HPSG_WHAT_DISTINCT_OBJECTS)
4773 << static_cast<int>(what);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004774
4775 // First, send a heap start chunk.
4776 uint8_t heap_id[4];
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004777 JDWP::Set4BE(&heap_id[0], 1); // Heap id (bogus; we only have one heap).
Alex Light772099a2017-11-21 14:05:04 -08004778 cb->DdmPublishChunk(native ? CHUNK_TYPE("NHST") : CHUNK_TYPE("HPST"),
4779 ArrayRef<const uint8_t>(heap_id));
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004780 Thread* self = Thread::Current();
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004781 Locks::mutator_lock_->AssertSharedHeld(self);
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004782
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004783 // Send a series of heap segment chunks.
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004784 HeapChunkContext context(what == HPSG_WHAT_MERGED_OBJECTS, native);
Andreas Gampe0c183382017-07-13 22:26:24 -07004785 auto bump_pointer_space_visitor = [&](mirror::Object* obj)
4786 REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(Locks::heap_bitmap_lock_) {
4787 const size_t size = RoundUp(obj->SizeOf(), kObjectAlignment);
4788 HeapChunkContext::HeapChunkJavaCallback(
4789 obj, reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(obj) + size), size, &context);
4790 };
Elliott Hughesa2155262011-11-16 16:26:58 -08004791 if (native) {
Dimitry Ivanove6465bc2015-12-14 18:55:02 -08004792 UNIMPLEMENTED(WARNING) << "Native heap inspection is not supported";
Elliott Hughesa2155262011-11-16 16:26:58 -08004793 } else {
Ian Rogers1d54e732013-05-02 21:10:01 -07004794 gc::Heap* heap = Runtime::Current()->GetHeap();
Mathieu Chartier36dab362014-07-30 14:59:56 -07004795 for (const auto& space : heap->GetContinuousSpaces()) {
4796 if (space->IsDlMallocSpace()) {
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004797 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004798 // dlmalloc's chunk header is 2 * sizeof(size_t), but if the previous chunk is in use for an
4799 // allocation then the first sizeof(size_t) may belong to it.
4800 context.SetChunkOverhead(sizeof(size_t));
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004801 space->AsDlMallocSpace()->Walk(HeapChunkContext::HeapChunkJavaCallback, &context);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004802 } else if (space->IsRosAllocSpace()) {
4803 context.SetChunkOverhead(0);
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004804 // Need to acquire the mutator lock before the heap bitmap lock with exclusive access since
4805 // RosAlloc's internal logic doesn't know to release and reacquire the heap bitmap lock.
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07004806 ScopedThreadSuspension sts(self, kSuspended);
Mathieu Chartier4f55e222015-09-04 13:26:21 -07004807 ScopedSuspendAll ssa(__FUNCTION__);
4808 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
4809 space->AsRosAllocSpace()->Walk(HeapChunkContext::HeapChunkJavaCallback, &context);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004810 } else if (space->IsBumpPointerSpace()) {
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004811 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004812 context.SetChunkOverhead(0);
Andreas Gampe0c183382017-07-13 22:26:24 -07004813 space->AsBumpPointerSpace()->Walk(bump_pointer_space_visitor);
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004814 HeapChunkContext::HeapChunkJavaCallback(nullptr, nullptr, 0, &context);
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -08004815 } else if (space->IsRegionSpace()) {
4816 heap->IncrementDisableMovingGC(self);
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07004817 {
4818 ScopedThreadSuspension sts(self, kSuspended);
Mathieu Chartier4f55e222015-09-04 13:26:21 -07004819 ScopedSuspendAll ssa(__FUNCTION__);
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07004820 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
4821 context.SetChunkOverhead(0);
Andreas Gampe0c183382017-07-13 22:26:24 -07004822 space->AsRegionSpace()->Walk(bump_pointer_space_visitor);
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07004823 HeapChunkContext::HeapChunkJavaCallback(nullptr, nullptr, 0, &context);
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07004824 }
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -08004825 heap->DecrementDisableMovingGC(self);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004826 } else {
4827 UNIMPLEMENTED(WARNING) << "Not counting objects in space " << *space;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07004828 }
Mathieu Chartier36dab362014-07-30 14:59:56 -07004829 context.ResetStartOfNextChunk();
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07004830 }
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004831 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07004832 // Walk the large objects, these are not in the AllocSpace.
Mathieu Chartier36dab362014-07-30 14:59:56 -07004833 context.SetChunkOverhead(0);
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004834 heap->GetLargeObjectsSpace()->Walk(HeapChunkContext::HeapChunkJavaCallback, &context);
Elliott Hughesa2155262011-11-16 16:26:58 -08004835 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004836
4837 // Finally, send a heap end chunk.
Alex Light772099a2017-11-21 14:05:04 -08004838 cb->DdmPublishChunk(native ? CHUNK_TYPE("NHEN") : CHUNK_TYPE("HPEN"),
4839 ArrayRef<const uint8_t>(heap_id));
Elliott Hughes767a1472011-10-26 18:49:02 -07004840}
4841
Brian Carlstrom306db812014-09-05 13:01:41 -07004842void Dbg::SetAllocTrackingEnabled(bool enable) {
Man Cao8c2ff642015-05-27 17:25:30 -07004843 gc::AllocRecordObjectMap::SetAllocTrackingEnabled(enable);
Elliott Hughes545a0642011-11-08 19:10:03 -08004844}
4845
4846void Dbg::DumpRecentAllocations() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004847 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom306db812014-09-05 13:01:41 -07004848 MutexLock mu(soa.Self(), *Locks::alloc_tracker_lock_);
Man Cao8c2ff642015-05-27 17:25:30 -07004849 if (!Runtime::Current()->GetHeap()->IsAllocTrackingEnabled()) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004850 LOG(INFO) << "Not recording tracked allocations";
4851 return;
4852 }
Man Cao8c2ff642015-05-27 17:25:30 -07004853 gc::AllocRecordObjectMap* records = Runtime::Current()->GetHeap()->GetAllocationRecords();
4854 CHECK(records != nullptr);
Elliott Hughes545a0642011-11-08 19:10:03 -08004855
Man Cao1ed11b92015-06-11 22:47:35 -07004856 const uint16_t capped_count = CappedAllocRecordCount(records->GetRecentAllocationSize());
Brian Carlstrom306db812014-09-05 13:01:41 -07004857 uint16_t count = capped_count;
Elliott Hughes545a0642011-11-08 19:10:03 -08004858
Man Cao8c2ff642015-05-27 17:25:30 -07004859 LOG(INFO) << "Tracked allocations, (count=" << count << ")";
4860 for (auto it = records->RBegin(), end = records->REnd();
4861 count > 0 && it != end; count--, it++) {
Mathieu Chartier458b1052016-03-29 14:02:55 -07004862 const gc::AllocRecord* record = &it->second;
Elliott Hughes545a0642011-11-08 19:10:03 -08004863
Man Cao8c2ff642015-05-27 17:25:30 -07004864 LOG(INFO) << StringPrintf(" Thread %-2d %6zd bytes ", record->GetTid(), record->ByteCount())
David Sehr709b0702016-10-13 09:12:37 -07004865 << mirror::Class::PrettyClass(record->GetClass());
Elliott Hughes545a0642011-11-08 19:10:03 -08004866
Man Cao8c2ff642015-05-27 17:25:30 -07004867 for (size_t stack_frame = 0, depth = record->GetDepth(); stack_frame < depth; ++stack_frame) {
4868 const gc::AllocRecordStackTraceElement& stack_element = record->StackElement(stack_frame);
4869 ArtMethod* m = stack_element.GetMethod();
David Sehr709b0702016-10-13 09:12:37 -07004870 LOG(INFO) << " " << ArtMethod::PrettyMethod(m) << " line "
4871 << stack_element.ComputeLineNumber();
Elliott Hughes545a0642011-11-08 19:10:03 -08004872 }
4873
4874 // pause periodically to help logcat catch up
4875 if ((count % 5) == 0) {
4876 usleep(40000);
4877 }
Elliott Hughes545a0642011-11-08 19:10:03 -08004878 }
4879}
4880
4881class StringTable {
Andreas Gampe2eeb01a2017-07-07 14:09:46 -07004882 private:
4883 struct Entry {
Andreas Gampe84eadb22017-07-07 15:08:01 -07004884 explicit Entry(const char* data_in)
4885 : data(data_in), hash(ComputeModifiedUtf8Hash(data_in)), index(0) {
4886 }
Andreas Gampe2eeb01a2017-07-07 14:09:46 -07004887 Entry(const Entry& entry) = default;
4888 Entry(Entry&& entry) = default;
4889
4890 // Pointer to the actual string data.
4891 const char* data;
Andreas Gampe84eadb22017-07-07 15:08:01 -07004892
4893 // The hash of the data.
4894 const uint32_t hash;
4895
Andreas Gampe2eeb01a2017-07-07 14:09:46 -07004896 // The index. This will be filled in on Finish and is not part of the ordering, so mark it
4897 // mutable.
4898 mutable uint32_t index;
4899
Andreas Gampe84eadb22017-07-07 15:08:01 -07004900 bool operator==(const Entry& other) const {
4901 return strcmp(data, other.data) == 0;
4902 }
4903 };
4904 struct EntryHash {
4905 size_t operator()(const Entry& entry) const {
4906 return entry.hash;
Andreas Gampe2eeb01a2017-07-07 14:09:46 -07004907 }
4908 };
4909
Elliott Hughes545a0642011-11-08 19:10:03 -08004910 public:
Andreas Gampe2eeb01a2017-07-07 14:09:46 -07004911 StringTable() : finished_(false) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004912 }
4913
Andreas Gampef774a4e2017-07-06 22:15:18 -07004914 void Add(const char* str, bool copy_string) {
Andreas Gampe2eeb01a2017-07-07 14:09:46 -07004915 DCHECK(!finished_);
Andreas Gampef774a4e2017-07-06 22:15:18 -07004916 if (UNLIKELY(copy_string)) {
4917 // Check whether it's already there.
Andreas Gampe2eeb01a2017-07-07 14:09:46 -07004918 Entry entry(str);
4919 if (table_.find(entry) != table_.end()) {
Andreas Gampef774a4e2017-07-06 22:15:18 -07004920 return;
4921 }
Mathieu Chartier4345c462014-06-27 10:20:14 -07004922
Andreas Gampef774a4e2017-07-06 22:15:18 -07004923 // Make a copy.
4924 size_t str_len = strlen(str);
4925 char* copy = new char[str_len + 1];
4926 strlcpy(copy, str, str_len + 1);
4927 string_backup_.emplace_back(copy);
4928 str = copy;
4929 }
Andreas Gampe2eeb01a2017-07-07 14:09:46 -07004930 Entry entry(str);
4931 table_.insert(entry);
4932 }
4933
4934 // Update all entries and give them an index. Note that this is likely not the insertion order,
4935 // as the set will with high likelihood reorder elements. Thus, Add must not be called after
4936 // Finish, and Finish must be called before IndexOf. In that case, WriteTo will walk in
4937 // the same order as Finish, and indices will agree. The order invariant, as well as indices,
4938 // are enforced through debug checks.
4939 void Finish() {
4940 DCHECK(!finished_);
4941 finished_ = true;
4942 uint32_t index = 0;
4943 for (auto& entry : table_) {
4944 entry.index = index;
4945 ++index;
4946 }
Elliott Hughes545a0642011-11-08 19:10:03 -08004947 }
4948
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004949 size_t IndexOf(const char* s) const {
Andreas Gampe2eeb01a2017-07-07 14:09:46 -07004950 DCHECK(finished_);
4951 Entry entry(s);
4952 auto it = table_.find(entry);
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004953 if (it == table_.end()) {
4954 LOG(FATAL) << "IndexOf(\"" << s << "\") failed";
4955 }
Andreas Gampe2eeb01a2017-07-07 14:09:46 -07004956 return it->index;
Elliott Hughes545a0642011-11-08 19:10:03 -08004957 }
4958
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004959 size_t Size() const {
Elliott Hughes545a0642011-11-08 19:10:03 -08004960 return table_.size();
4961 }
4962
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07004963 void WriteTo(std::vector<uint8_t>& bytes) const {
Andreas Gampe2eeb01a2017-07-07 14:09:46 -07004964 DCHECK(finished_);
4965 uint32_t cur_index = 0;
4966 for (const auto& entry : table_) {
4967 DCHECK_EQ(cur_index++, entry.index);
4968
4969 size_t s_len = CountModifiedUtf8Chars(entry.data);
Christopher Ferris8a354052015-04-24 17:23:53 -07004970 std::unique_ptr<uint16_t[]> s_utf16(new uint16_t[s_len]);
Andreas Gampe2eeb01a2017-07-07 14:09:46 -07004971 ConvertModifiedUtf8ToUtf16(s_utf16.get(), entry.data);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08004972 JDWP::AppendUtf16BE(bytes, s_utf16.get(), s_len);
Elliott Hughes545a0642011-11-08 19:10:03 -08004973 }
4974 }
4975
4976 private:
Andreas Gampe84eadb22017-07-07 15:08:01 -07004977 std::unordered_set<Entry, EntryHash> table_;
Andreas Gampef774a4e2017-07-06 22:15:18 -07004978 std::vector<std::unique_ptr<char[]>> string_backup_;
Andreas Gampe2eeb01a2017-07-07 14:09:46 -07004979
4980 bool finished_;
4981
Elliott Hughes545a0642011-11-08 19:10:03 -08004982 DISALLOW_COPY_AND_ASSIGN(StringTable);
4983};
4984
Mathieu Chartiere401d142015-04-22 13:56:20 -07004985static const char* GetMethodSourceFile(ArtMethod* method)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07004986 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004987 DCHECK(method != nullptr);
4988 const char* source_file = method->GetDeclaringClassSourceFile();
Sebastien Hertz280286a2014-04-28 09:26:50 +02004989 return (source_file != nullptr) ? source_file : "";
4990}
4991
Elliott Hughes545a0642011-11-08 19:10:03 -08004992/*
4993 * The data we send to DDMS contains everything we have recorded.
4994 *
4995 * Message header (all values big-endian):
4996 * (1b) message header len (to allow future expansion); includes itself
4997 * (1b) entry header len
4998 * (1b) stack frame len
4999 * (2b) number of entries
5000 * (4b) offset to string table from start of message
5001 * (2b) number of class name strings
5002 * (2b) number of method name strings
5003 * (2b) number of source file name strings
5004 * For each entry:
5005 * (4b) total allocation size
Elliott Hughes221229c2013-01-08 18:17:50 -08005006 * (2b) thread id
Elliott Hughes545a0642011-11-08 19:10:03 -08005007 * (2b) allocated object's class name index
5008 * (1b) stack depth
5009 * For each stack frame:
5010 * (2b) method's class name
5011 * (2b) method name
5012 * (2b) method source file
5013 * (2b) line number, clipped to 32767; -2 if native; -1 if no source
5014 * (xb) class name strings
5015 * (xb) method name strings
5016 * (xb) source file strings
5017 *
5018 * As with other DDM traffic, strings are sent as a 4-byte length
5019 * followed by UTF-16 data.
5020 *
5021 * We send up 16-bit unsigned indexes into string tables. In theory there
Brian Carlstrom306db812014-09-05 13:01:41 -07005022 * can be (kMaxAllocRecordStackDepth * alloc_record_max_) unique strings in
Elliott Hughes545a0642011-11-08 19:10:03 -08005023 * each table, but in practice there should be far fewer.
5024 *
5025 * The chief reason for using a string table here is to keep the size of
5026 * the DDMS message to a minimum. This is partly to make the protocol
5027 * efficient, but also because we have to form the whole thing up all at
5028 * once in a memory buffer.
5029 *
5030 * We use separate string tables for class names, method names, and source
5031 * files to keep the indexes small. There will generally be no overlap
5032 * between the contents of these tables.
5033 */
5034jbyteArray Dbg::GetRecentAllocations() {
Ian Rogerscf7f1912014-10-22 22:06:39 -07005035 if ((false)) {
Elliott Hughes545a0642011-11-08 19:10:03 -08005036 DumpRecentAllocations();
5037 }
5038
Ian Rogers50b35e22012-10-04 10:09:15 -07005039 Thread* self = Thread::Current();
Elliott Hughes545a0642011-11-08 19:10:03 -08005040 std::vector<uint8_t> bytes;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07005041 {
Brian Carlstrom306db812014-09-05 13:01:41 -07005042 MutexLock mu(self, *Locks::alloc_tracker_lock_);
Man Cao8c2ff642015-05-27 17:25:30 -07005043 gc::AllocRecordObjectMap* records = Runtime::Current()->GetHeap()->GetAllocationRecords();
5044 // In case this method is called when allocation tracker is disabled,
5045 // we should still send some data back.
5046 gc::AllocRecordObjectMap dummy;
5047 if (records == nullptr) {
5048 CHECK(!Runtime::Current()->GetHeap()->IsAllocTrackingEnabled());
5049 records = &dummy;
5050 }
Man Cao41656de2015-07-06 18:53:15 -07005051 // We don't need to wait on the condition variable records->new_record_condition_, because this
5052 // function only reads the class objects, which are already marked so it doesn't change their
5053 // reachability.
Man Cao8c2ff642015-05-27 17:25:30 -07005054
Mathieu Chartier46e811b2013-07-10 17:09:14 -07005055 //
5056 // Part 1: generate string tables.
5057 //
5058 StringTable class_names;
5059 StringTable method_names;
5060 StringTable filenames;
Elliott Hughes545a0642011-11-08 19:10:03 -08005061
Andreas Gampeff29cee2017-07-07 11:11:15 -07005062 VLOG(jdwp) << "Collecting StringTables.";
5063
Man Cao1ed11b92015-06-11 22:47:35 -07005064 const uint16_t capped_count = CappedAllocRecordCount(records->GetRecentAllocationSize());
Brian Carlstrom306db812014-09-05 13:01:41 -07005065 uint16_t count = capped_count;
Andreas Gamped0fc7682017-07-07 14:03:08 -07005066 size_t alloc_byte_count = 0;
Man Cao8c2ff642015-05-27 17:25:30 -07005067 for (auto it = records->RBegin(), end = records->REnd();
5068 count > 0 && it != end; count--, it++) {
Mathieu Chartier458b1052016-03-29 14:02:55 -07005069 const gc::AllocRecord* record = &it->second;
Ian Rogers1ff3c982014-08-12 02:30:58 -07005070 std::string temp;
Andreas Gampef774a4e2017-07-06 22:15:18 -07005071 const char* class_descr = record->GetClassDescriptor(&temp);
5072 class_names.Add(class_descr, !temp.empty());
Andreas Gamped0fc7682017-07-07 14:03:08 -07005073
5074 // Size + tid + class name index + stack depth.
5075 alloc_byte_count += 4u + 2u + 2u + 1u;
5076
Man Cao8c2ff642015-05-27 17:25:30 -07005077 for (size_t i = 0, depth = record->GetDepth(); i < depth; i++) {
5078 ArtMethod* m = record->StackElement(i).GetMethod();
Andreas Gampef774a4e2017-07-06 22:15:18 -07005079 class_names.Add(m->GetDeclaringClassDescriptor(), false);
5080 method_names.Add(m->GetName(), false);
5081 filenames.Add(GetMethodSourceFile(m), false);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07005082 }
Andreas Gamped0fc7682017-07-07 14:03:08 -07005083
5084 // Depth * (class index + method name index + file name index + line number).
5085 alloc_byte_count += record->GetDepth() * (2u + 2u + 2u + 2u);
Elliott Hughes545a0642011-11-08 19:10:03 -08005086 }
5087
Andreas Gampe2eeb01a2017-07-07 14:09:46 -07005088 class_names.Finish();
5089 method_names.Finish();
5090 filenames.Finish();
Andreas Gampeff29cee2017-07-07 11:11:15 -07005091 VLOG(jdwp) << "Done collecting StringTables:" << std::endl
5092 << " ClassNames: " << class_names.Size() << std::endl
5093 << " MethodNames: " << method_names.Size() << std::endl
5094 << " Filenames: " << filenames.Size();
5095
Man Cao8c2ff642015-05-27 17:25:30 -07005096 LOG(INFO) << "recent allocation records: " << capped_count;
5097 LOG(INFO) << "allocation records all objects: " << records->Size();
Mathieu Chartier46e811b2013-07-10 17:09:14 -07005098
5099 //
5100 // Part 2: Generate the output and store it in the buffer.
5101 //
5102
5103 // (1b) message header len (to allow future expansion); includes itself
5104 // (1b) entry header len
5105 // (1b) stack frame len
5106 const int kMessageHeaderLen = 15;
5107 const int kEntryHeaderLen = 9;
5108 const int kStackFrameLen = 8;
5109 JDWP::Append1BE(bytes, kMessageHeaderLen);
5110 JDWP::Append1BE(bytes, kEntryHeaderLen);
5111 JDWP::Append1BE(bytes, kStackFrameLen);
5112
5113 // (2b) number of entries
5114 // (4b) offset to string table from start of message
5115 // (2b) number of class name strings
5116 // (2b) number of method name strings
5117 // (2b) number of source file name strings
Brian Carlstrom306db812014-09-05 13:01:41 -07005118 JDWP::Append2BE(bytes, capped_count);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07005119 size_t string_table_offset = bytes.size();
Brian Carlstrom7934ac22013-07-26 10:54:15 -07005120 JDWP::Append4BE(bytes, 0); // We'll patch this later...
Mathieu Chartier46e811b2013-07-10 17:09:14 -07005121 JDWP::Append2BE(bytes, class_names.Size());
5122 JDWP::Append2BE(bytes, method_names.Size());
5123 JDWP::Append2BE(bytes, filenames.Size());
5124
Andreas Gampeff29cee2017-07-07 11:11:15 -07005125 VLOG(jdwp) << "Dumping allocations with stacks";
5126
Andreas Gamped0fc7682017-07-07 14:03:08 -07005127 // Enlarge the vector for the allocation data.
5128 size_t reserve_size = bytes.size() + alloc_byte_count;
5129 bytes.reserve(reserve_size);
5130
Ian Rogers1ff3c982014-08-12 02:30:58 -07005131 std::string temp;
Man Cao8c2ff642015-05-27 17:25:30 -07005132 count = capped_count;
5133 // The last "count" number of allocation records in "records" are the most recent "count" number
5134 // of allocations. Reverse iterate to get them. The most recent allocation is sent first.
5135 for (auto it = records->RBegin(), end = records->REnd();
5136 count > 0 && it != end; count--, it++) {
Mathieu Chartier46e811b2013-07-10 17:09:14 -07005137 // For each entry:
5138 // (4b) total allocation size
5139 // (2b) thread id
5140 // (2b) allocated object's class name index
5141 // (1b) stack depth
Mathieu Chartier458b1052016-03-29 14:02:55 -07005142 const gc::AllocRecord* record = &it->second;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07005143 size_t stack_depth = record->GetDepth();
Mathieu Chartierf8322842014-05-16 10:59:25 -07005144 size_t allocated_object_class_name_index =
Man Cao41656de2015-07-06 18:53:15 -07005145 class_names.IndexOf(record->GetClassDescriptor(&temp));
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07005146 JDWP::Append4BE(bytes, record->ByteCount());
Man Cao8c2ff642015-05-27 17:25:30 -07005147 JDWP::Append2BE(bytes, static_cast<uint16_t>(record->GetTid()));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07005148 JDWP::Append2BE(bytes, allocated_object_class_name_index);
5149 JDWP::Append1BE(bytes, stack_depth);
5150
Mathieu Chartier46e811b2013-07-10 17:09:14 -07005151 for (size_t stack_frame = 0; stack_frame < stack_depth; ++stack_frame) {
5152 // For each stack frame:
5153 // (2b) method's class name
5154 // (2b) method name
5155 // (2b) method source file
5156 // (2b) line number, clipped to 32767; -2 if native; -1 if no source
Man Cao8c2ff642015-05-27 17:25:30 -07005157 ArtMethod* m = record->StackElement(stack_frame).GetMethod();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07005158 size_t class_name_index = class_names.IndexOf(m->GetDeclaringClassDescriptor());
5159 size_t method_name_index = method_names.IndexOf(m->GetName());
5160 size_t file_name_index = filenames.IndexOf(GetMethodSourceFile(m));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07005161 JDWP::Append2BE(bytes, class_name_index);
5162 JDWP::Append2BE(bytes, method_name_index);
5163 JDWP::Append2BE(bytes, file_name_index);
Man Cao8c2ff642015-05-27 17:25:30 -07005164 JDWP::Append2BE(bytes, record->StackElement(stack_frame).ComputeLineNumber());
Mathieu Chartier46e811b2013-07-10 17:09:14 -07005165 }
Mathieu Chartier46e811b2013-07-10 17:09:14 -07005166 }
5167
Andreas Gamped0fc7682017-07-07 14:03:08 -07005168 CHECK_EQ(bytes.size(), reserve_size);
Andreas Gampeff29cee2017-07-07 11:11:15 -07005169 VLOG(jdwp) << "Dumping tables.";
5170
Mathieu Chartier46e811b2013-07-10 17:09:14 -07005171 // (xb) class name strings
5172 // (xb) method name strings
5173 // (xb) source file strings
5174 JDWP::Set4BE(&bytes[string_table_offset], bytes.size());
5175 class_names.WriteTo(bytes);
5176 method_names.WriteTo(bytes);
5177 filenames.WriteTo(bytes);
Andreas Gampeff29cee2017-07-07 11:11:15 -07005178
5179 VLOG(jdwp) << "GetRecentAllocations: data created. " << bytes.size();
Elliott Hughes545a0642011-11-08 19:10:03 -08005180 }
Ian Rogers50b35e22012-10-04 10:09:15 -07005181 JNIEnv* env = self->GetJniEnv();
Elliott Hughes545a0642011-11-08 19:10:03 -08005182 jbyteArray result = env->NewByteArray(bytes.size());
Ian Rogersc0542af2014-09-03 16:16:56 -07005183 if (result != nullptr) {
Elliott Hughes545a0642011-11-08 19:10:03 -08005184 env->SetByteArrayRegion(result, 0, bytes.size(), reinterpret_cast<const jbyte*>(&bytes[0]));
5185 }
5186 return result;
5187}
5188
Mathieu Chartiere401d142015-04-22 13:56:20 -07005189ArtMethod* DeoptimizationRequest::Method() const {
Andreas Gampe13b27842016-11-07 16:48:23 -08005190 return jni::DecodeArtMethod(method_);
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07005191}
5192
Mathieu Chartiere401d142015-04-22 13:56:20 -07005193void DeoptimizationRequest::SetMethod(ArtMethod* m) {
Andreas Gampe13b27842016-11-07 16:48:23 -08005194 method_ = jni::EncodeArtMethod(m);
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07005195}
5196
Mathieu Chartiera6b1ead2015-10-06 10:32:38 -07005197void Dbg::VisitRoots(RootVisitor* visitor) {
5198 // Visit breakpoint roots, used to prevent unloading of methods with breakpoints.
5199 ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
5200 BufferedRootVisitor<128> root_visitor(visitor, RootInfo(kRootVMInternal));
5201 for (Breakpoint& breakpoint : gBreakpoints) {
Andreas Gampe542451c2016-07-26 09:02:02 -07005202 breakpoint.Method()->VisitRoots(root_visitor, kRuntimePointerSize);
Mathieu Chartiera6b1ead2015-10-06 10:32:38 -07005203 }
5204}
5205
Andreas Gampe04bbb5b2017-01-19 17:49:03 +00005206void Dbg::DbgThreadLifecycleCallback::ThreadStart(Thread* self) {
5207 Dbg::PostThreadStart(self);
5208}
5209
5210void Dbg::DbgThreadLifecycleCallback::ThreadDeath(Thread* self) {
5211 Dbg::PostThreadDeath(self);
5212}
5213
Andreas Gampe0f01b582017-01-18 15:22:37 -08005214void Dbg::DbgClassLoadCallback::ClassLoad(Handle<mirror::Class> klass ATTRIBUTE_UNUSED) {
5215 // Ignore ClassLoad;
5216}
5217void Dbg::DbgClassLoadCallback::ClassPrepare(Handle<mirror::Class> temp_klass ATTRIBUTE_UNUSED,
5218 Handle<mirror::Class> klass) {
5219 Dbg::PostClassPrepare(klass.Get());
5220}
5221
Elliott Hughes872d4ec2011-10-21 17:07:15 -07005222} // namespace art