blob: 3ad7fc92a280fee28c8b081bfa96dd2377b98df2 [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 Hughesdbb40792011-11-18 17:05:22 -08001231 return -1;
1232 }
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;
2269 return JDWP::TS_ZOMBIE;
2270}
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 Gampe82484902018-11-16 00:47:49 +00002365 struct CountStackDepthVisitor : public StackVisitor {
2366 explicit CountStackDepthVisitor(Thread* thread_in)
2367 : StackVisitor(thread_in, nullptr, StackVisitor::StackWalkKind::kIncludeInlinedFrames),
2368 depth(0) {}
2369
2370 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2371 // annotalysis.
2372 bool VisitFrame() override NO_THREAD_SAFETY_ANALYSIS {
2373 if (!GetMethod()->IsRuntimeMethod()) {
2374 ++depth;
2375 }
2376 return true;
2377 }
2378 size_t depth;
2379 };
2380
2381 CountStackDepthVisitor visitor(thread);
2382 visitor.WalkStack();
2383 return visitor.depth;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002384}
2385
Ian Rogersc0542af2014-09-03 16:16:56 -07002386JDWP::JdwpError Dbg::GetThreadFrameCount(JDWP::ObjectId thread_id, size_t* result) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002387 ScopedObjectAccess soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002388 JDWP::JdwpError error;
2389 *result = 0;
2390 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002391 if (error != JDWP::ERR_NONE) {
2392 return error;
2393 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08002394 if (!IsSuspendedForDebugger(soa, thread)) {
2395 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2396 }
Ian Rogersc0542af2014-09-03 16:16:56 -07002397 *result = GetStackDepth(thread);
Elliott Hughes221229c2013-01-08 18:17:50 -08002398 return JDWP::ERR_NONE;
Elliott Hughes86964332012-02-15 19:37:42 -08002399}
2400
Andreas Gampe82484902018-11-16 00:47:49 +00002401JDWP::JdwpError Dbg::GetThreadFrames(JDWP::ObjectId thread_id, size_t start_frame,
2402 size_t frame_count, JDWP::ExpandBuf* buf) {
2403 class GetFrameVisitor : public StackVisitor {
2404 public:
2405 GetFrameVisitor(Thread* thread, size_t start_frame_in, size_t frame_count_in,
2406 JDWP::ExpandBuf* buf_in)
2407 REQUIRES_SHARED(Locks::mutator_lock_)
2408 : StackVisitor(thread, nullptr, StackVisitor::StackWalkKind::kIncludeInlinedFrames),
2409 depth_(0),
2410 start_frame_(start_frame_in),
2411 frame_count_(frame_count_in),
2412 buf_(buf_in) {
2413 expandBufAdd4BE(buf_, frame_count_);
2414 }
2415
2416 bool VisitFrame() override REQUIRES_SHARED(Locks::mutator_lock_) {
2417 if (GetMethod()->IsRuntimeMethod()) {
2418 return true; // The debugger can't do anything useful with a frame that has no Method*.
2419 }
2420 if (depth_ >= start_frame_ + frame_count_) {
2421 return false;
2422 }
2423 if (depth_ >= start_frame_) {
2424 JDWP::FrameId frame_id(GetFrameId());
2425 JDWP::JdwpLocation location;
2426 SetJdwpLocation(&location, GetMethod(), GetDexPc());
2427 VLOG(jdwp) << StringPrintf(" Frame %3zd: id=%3" PRIu64 " ", depth_, frame_id) << location;
2428 expandBufAdd8BE(buf_, frame_id);
2429 expandBufAddLocation(buf_, location);
2430 }
2431 ++depth_;
2432 return true;
2433 }
2434
2435 private:
2436 size_t depth_;
2437 const size_t start_frame_;
2438 const size_t frame_count_;
2439 JDWP::ExpandBuf* buf_;
2440 };
2441
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002442 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002443 JDWP::JdwpError error;
2444 Thread* thread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08002445 if (error != JDWP::ERR_NONE) {
2446 return error;
2447 }
Elliott Hughesf15f4a02013-01-09 10:09:38 -08002448 if (!IsSuspendedForDebugger(soa, thread)) {
2449 return JDWP::ERR_THREAD_NOT_SUSPENDED;
2450 }
Andreas Gampe82484902018-11-16 00:47:49 +00002451 GetFrameVisitor visitor(thread, start_frame, frame_count, buf);
2452 visitor.WalkStack();
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002453 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002454}
2455
2456JDWP::ObjectId Dbg::GetThreadSelfId() {
Sebastien Hertz6995c602014-09-09 12:10:13 +02002457 return GetThreadId(Thread::Current());
2458}
2459
2460JDWP::ObjectId Dbg::GetThreadId(Thread* thread) {
Mathieu Chartierdbe6f462012-09-25 16:54:50 -07002461 ScopedObjectAccessUnchecked soa(Thread::Current());
Nicolas Geoffraycafa0812017-02-15 18:27:34 +00002462 return gRegistry->Add(thread->GetPeerFromOtherThread());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002463}
2464
Elliott Hughes475fc232011-10-25 15:00:35 -07002465void Dbg::SuspendVM() {
Hiroshi Yamauchi8f95cf32016-04-19 11:14:06 -07002466 // Avoid a deadlock between GC and debugger where GC gets suspended during GC. b/25800335.
2467 gc::ScopedGCCriticalSection gcs(Thread::Current(),
2468 gc::kGcCauseDebugger,
2469 gc::kCollectorTypeDebugger);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002470 Runtime::Current()->GetThreadList()->SuspendAllForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002471}
2472
2473void Dbg::ResumeVM() {
Sebastien Hertz253fa552014-10-14 17:27:15 +02002474 Runtime::Current()->GetThreadList()->ResumeAllForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002475}
2476
Elliott Hughes221229c2013-01-08 18:17:50 -08002477JDWP::JdwpError Dbg::SuspendThread(JDWP::ObjectId thread_id, bool request_suspension) {
Ian Rogersf3d874c2014-07-17 18:52:42 -07002478 Thread* self = Thread::Current();
Ian Rogersc0542af2014-09-03 16:16:56 -07002479 ScopedLocalRef<jobject> peer(self->GetJniEnv(), nullptr);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002480 {
Ian Rogersf3d874c2014-07-17 18:52:42 -07002481 ScopedObjectAccess soa(self);
Ian Rogersc0542af2014-09-03 16:16:56 -07002482 JDWP::JdwpError error;
2483 peer.reset(soa.AddLocalReference<jobject>(gRegistry->Get<mirror::Object*>(thread_id, &error)));
Elliott Hughes4e235312011-12-02 11:34:15 -08002484 }
Ian Rogersc0542af2014-09-03 16:16:56 -07002485 if (peer.get() == nullptr) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002486 return JDWP::ERR_THREAD_NOT_ALIVE;
2487 }
Ian Rogers4ad5cd32014-11-11 23:08:07 -08002488 // Suspend thread to build stack trace.
Elliott Hughesf327e072013-01-09 16:01:26 -08002489 bool timed_out;
Brian Carlstromba32de42014-08-27 23:43:46 -07002490 ThreadList* thread_list = Runtime::Current()->GetThreadList();
Sebastien Hertzcdd798d2017-04-18 18:28:51 +02002491 Thread* thread = thread_list->SuspendThreadByPeer(peer.get(),
2492 request_suspension,
Alex Light46f93402017-06-29 11:59:50 -07002493 SuspendReason::kForDebugger,
Brian Carlstromba32de42014-08-27 23:43:46 -07002494 &timed_out);
Ian Rogersc0542af2014-09-03 16:16:56 -07002495 if (thread != nullptr) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002496 return JDWP::ERR_NONE;
Elliott Hughesf327e072013-01-09 16:01:26 -08002497 } else if (timed_out) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002498 return JDWP::ERR_INTERNAL;
2499 } else {
2500 return JDWP::ERR_THREAD_NOT_ALIVE;
2501 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002502}
2503
Elliott Hughes221229c2013-01-08 18:17:50 -08002504void Dbg::ResumeThread(JDWP::ObjectId thread_id) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002505 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07002506 JDWP::JdwpError error;
2507 mirror::Object* peer = gRegistry->Get<mirror::Object*>(thread_id, &error);
2508 CHECK(peer != nullptr) << error;
jeffhaoa77f0f62012-12-05 17:19:31 -08002509 Thread* thread;
2510 {
2511 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
2512 thread = Thread::FromManagedThread(soa, peer);
2513 }
Ian Rogersc0542af2014-09-03 16:16:56 -07002514 if (thread == nullptr) {
Elliott Hughes4e235312011-12-02 11:34:15 -08002515 LOG(WARNING) << "No such thread for resume: " << peer;
2516 return;
2517 }
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002518 bool needs_resume;
2519 {
Ian Rogers50b35e22012-10-04 10:09:15 -07002520 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Sebastien Hertz70d60272017-04-14 14:18:36 +02002521 needs_resume = thread->GetDebugSuspendCount() > 0;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002522 }
2523 if (needs_resume) {
Alex Light88fd7202017-06-30 08:31:59 -07002524 bool resumed = Runtime::Current()->GetThreadList()->Resume(thread, SuspendReason::kForDebugger);
2525 DCHECK(resumed);
Elliott Hughes546b9862012-06-20 16:06:13 -07002526 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002527}
2528
2529void Dbg::SuspendSelf() {
Elliott Hughes475fc232011-10-25 15:00:35 -07002530 Runtime::Current()->GetThreadList()->SuspendSelfForDebugger();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002531}
2532
Andreas Gampe82484902018-11-16 00:47:49 +00002533struct GetThisVisitor : public StackVisitor {
2534 GetThisVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id_in)
2535 REQUIRES_SHARED(Locks::mutator_lock_)
2536 : StackVisitor(thread, context, StackVisitor::StackWalkKind::kIncludeInlinedFrames),
2537 this_object(nullptr),
2538 frame_id(frame_id_in) {}
2539
2540 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2541 // annotalysis.
2542 bool VisitFrame() override NO_THREAD_SAFETY_ANALYSIS {
2543 if (frame_id != GetFrameId()) {
2544 return true; // continue
2545 } else {
2546 this_object = GetThisObject();
2547 return false;
2548 }
2549 }
2550
2551 mirror::Object* this_object;
2552 JDWP::FrameId frame_id;
2553};
2554
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002555JDWP::JdwpError Dbg::GetThisObject(JDWP::ObjectId thread_id, JDWP::FrameId frame_id,
2556 JDWP::ObjectId* result) {
2557 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz69206392015-04-07 15:54:25 +02002558 JDWP::JdwpError error;
2559 Thread* thread = DecodeThread(soa, thread_id, &error);
2560 if (error != JDWP::ERR_NONE) {
2561 return error;
2562 }
2563 if (!IsSuspendedForDebugger(soa, thread)) {
2564 return JDWP::ERR_THREAD_NOT_SUSPENDED;
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002565 }
Ian Rogers700a4022014-05-19 16:49:03 -07002566 std::unique_ptr<Context> context(Context::Create());
Andreas Gampe82484902018-11-16 00:47:49 +00002567 GetThisVisitor visitor(thread, context.get(), frame_id);
2568 visitor.WalkStack();
2569 *result = gRegistry->Add(visitor.this_object);
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07002570 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002571}
2572
Andreas Gampe82484902018-11-16 00:47:49 +00002573// Walks the stack until we find the frame with the given FrameId.
2574class FindFrameVisitor final : public StackVisitor {
2575 public:
2576 FindFrameVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id)
2577 REQUIRES_SHARED(Locks::mutator_lock_)
2578 : StackVisitor(thread, context, StackVisitor::StackWalkKind::kIncludeInlinedFrames),
2579 frame_id_(frame_id),
2580 error_(JDWP::ERR_INVALID_FRAMEID) {}
2581
2582 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
2583 // annotalysis.
2584 bool VisitFrame() override NO_THREAD_SAFETY_ANALYSIS {
2585 if (GetFrameId() != frame_id_) {
2586 return true; // Not our frame, carry on.
2587 }
2588 ArtMethod* m = GetMethod();
2589 if (m->IsNative()) {
2590 // We can't read/write local value from/into native method.
2591 error_ = JDWP::ERR_OPAQUE_FRAME;
2592 } else {
2593 // We found our frame.
2594 error_ = JDWP::ERR_NONE;
2595 }
2596 return false;
2597 }
2598
2599 JDWP::JdwpError GetError() const {
2600 return error_;
2601 }
2602
2603 private:
2604 const JDWP::FrameId frame_id_;
2605 JDWP::JdwpError error_;
2606
2607 DISALLOW_COPY_AND_ASSIGN(FindFrameVisitor);
2608};
Sebastien Hertz8009f392014-09-01 17:07:11 +02002609
2610JDWP::JdwpError Dbg::GetLocalValues(JDWP::Request* request, JDWP::ExpandBuf* pReply) {
2611 JDWP::ObjectId thread_id = request->ReadThreadId();
2612 JDWP::FrameId frame_id = request->ReadFrameId();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002613
2614 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz69206392015-04-07 15:54:25 +02002615 JDWP::JdwpError error;
2616 Thread* thread = DecodeThread(soa, thread_id, &error);
2617 if (error != JDWP::ERR_NONE) {
2618 return error;
2619 }
2620 if (!IsSuspendedForDebugger(soa, thread)) {
2621 return JDWP::ERR_THREAD_NOT_SUSPENDED;
Elliott Hughes221229c2013-01-08 18:17:50 -08002622 }
Andreas Gampe82484902018-11-16 00:47:49 +00002623 // Find the frame with the given frame_id.
2624 std::unique_ptr<Context> context(Context::Create());
2625 FindFrameVisitor visitor(thread, context.get(), frame_id);
2626 visitor.WalkStack();
2627 if (visitor.GetError() != JDWP::ERR_NONE) {
2628 return visitor.GetError();
2629 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002630
Andreas Gampe82484902018-11-16 00:47:49 +00002631 // Read the values from visitor's context.
2632 int32_t slot_count = request->ReadSigned32("slot count");
2633 expandBufAdd4BE(pReply, slot_count); /* "int values" */
2634 for (int32_t i = 0; i < slot_count; ++i) {
2635 uint32_t slot = request->ReadUnsigned32("slot");
2636 JDWP::JdwpTag reqSigByte = request->ReadTag();
Sebastien Hertz8009f392014-09-01 17:07:11 +02002637
Andreas Gampe82484902018-11-16 00:47:49 +00002638 VLOG(jdwp) << " --> slot " << slot << " " << reqSigByte;
Sebastien Hertz8009f392014-09-01 17:07:11 +02002639
Andreas Gampe82484902018-11-16 00:47:49 +00002640 size_t width = Dbg::GetTagWidth(reqSigByte);
2641 uint8_t* ptr = expandBufAddSpace(pReply, width + 1);
2642 error = Dbg::GetLocalValue(visitor, soa, slot, reqSigByte, ptr, width);
2643 if (error != JDWP::ERR_NONE) {
2644 return error;
2645 }
2646 }
2647 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002648}
2649
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002650constexpr JDWP::JdwpError kStackFrameLocalAccessError = JDWP::ERR_ABSENT_INFORMATION;
2651
2652static std::string GetStackContextAsString(const StackVisitor& visitor)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07002653 REQUIRES_SHARED(Locks::mutator_lock_) {
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002654 return StringPrintf(" at DEX pc 0x%08x in method %s", visitor.GetDexPc(false),
David Sehr709b0702016-10-13 09:12:37 -07002655 ArtMethod::PrettyMethod(visitor.GetMethod()).c_str());
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002656}
2657
2658static JDWP::JdwpError FailGetLocalValue(const StackVisitor& visitor, uint16_t vreg,
2659 JDWP::JdwpTag tag)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07002660 REQUIRES_SHARED(Locks::mutator_lock_) {
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002661 LOG(ERROR) << "Failed to read " << tag << " local from register v" << vreg
2662 << GetStackContextAsString(visitor);
2663 return kStackFrameLocalAccessError;
2664}
2665
Sebastien Hertz8009f392014-09-01 17:07:11 +02002666JDWP::JdwpError Dbg::GetLocalValue(const StackVisitor& visitor, ScopedObjectAccessUnchecked& soa,
2667 int slot, JDWP::JdwpTag tag, uint8_t* buf, size_t width) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07002668 ArtMethod* m = visitor.GetMethod();
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002669 JDWP::JdwpError error = JDWP::ERR_NONE;
2670 uint16_t vreg = DemangleSlot(slot, m, &error);
2671 if (error != JDWP::ERR_NONE) {
2672 return error;
2673 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002674 // TODO: check that the tag is compatible with the actual type of the slot!
Sebastien Hertz8009f392014-09-01 17:07:11 +02002675 switch (tag) {
2676 case JDWP::JT_BOOLEAN: {
2677 CHECK_EQ(width, 1U);
2678 uint32_t intVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002679 if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) {
2680 return FailGetLocalValue(visitor, vreg, tag);
Ian Rogers0399dde2012-06-06 17:09:28 -07002681 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002682 VLOG(jdwp) << "get boolean local " << vreg << " = " << intVal;
2683 JDWP::Set1(buf + 1, intVal != 0);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002684 break;
Ian Rogers0399dde2012-06-06 17:09:28 -07002685 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002686 case JDWP::JT_BYTE: {
2687 CHECK_EQ(width, 1U);
2688 uint32_t intVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002689 if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) {
2690 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002691 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002692 VLOG(jdwp) << "get byte local " << vreg << " = " << intVal;
2693 JDWP::Set1(buf + 1, intVal);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002694 break;
2695 }
2696 case JDWP::JT_SHORT:
2697 case JDWP::JT_CHAR: {
2698 CHECK_EQ(width, 2U);
2699 uint32_t intVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002700 if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) {
2701 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002702 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002703 VLOG(jdwp) << "get short/char local " << vreg << " = " << intVal;
2704 JDWP::Set2BE(buf + 1, intVal);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002705 break;
2706 }
2707 case JDWP::JT_INT: {
2708 CHECK_EQ(width, 4U);
2709 uint32_t intVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002710 if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) {
2711 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002712 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002713 VLOG(jdwp) << "get int local " << vreg << " = " << intVal;
2714 JDWP::Set4BE(buf + 1, intVal);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002715 break;
2716 }
2717 case JDWP::JT_FLOAT: {
2718 CHECK_EQ(width, 4U);
2719 uint32_t intVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002720 if (!visitor.GetVReg(m, vreg, kFloatVReg, &intVal)) {
2721 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002722 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002723 VLOG(jdwp) << "get float local " << vreg << " = " << intVal;
2724 JDWP::Set4BE(buf + 1, intVal);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002725 break;
2726 }
2727 case JDWP::JT_ARRAY:
2728 case JDWP::JT_CLASS_LOADER:
2729 case JDWP::JT_CLASS_OBJECT:
2730 case JDWP::JT_OBJECT:
2731 case JDWP::JT_STRING:
2732 case JDWP::JT_THREAD:
2733 case JDWP::JT_THREAD_GROUP: {
2734 CHECK_EQ(width, sizeof(JDWP::ObjectId));
2735 uint32_t intVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002736 if (!visitor.GetVReg(m, vreg, kReferenceVReg, &intVal)) {
2737 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002738 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002739 mirror::Object* o = reinterpret_cast<mirror::Object*>(intVal);
2740 VLOG(jdwp) << "get " << tag << " object local " << vreg << " = " << o;
2741 if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(o)) {
2742 LOG(FATAL) << StringPrintf("Found invalid object %#" PRIxPTR " in register v%u",
2743 reinterpret_cast<uintptr_t>(o), vreg)
2744 << GetStackContextAsString(visitor);
2745 UNREACHABLE();
2746 }
2747 tag = TagFromObject(soa, o);
2748 JDWP::SetObjectId(buf + 1, gRegistry->Add(o));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002749 break;
2750 }
2751 case JDWP::JT_DOUBLE: {
2752 CHECK_EQ(width, 8U);
2753 uint64_t longVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002754 if (!visitor.GetVRegPair(m, vreg, kDoubleLoVReg, kDoubleHiVReg, &longVal)) {
2755 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002756 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002757 VLOG(jdwp) << "get double local " << vreg << " = " << longVal;
2758 JDWP::Set8BE(buf + 1, longVal);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002759 break;
2760 }
2761 case JDWP::JT_LONG: {
2762 CHECK_EQ(width, 8U);
2763 uint64_t longVal;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002764 if (!visitor.GetVRegPair(m, vreg, kLongLoVReg, kLongHiVReg, &longVal)) {
2765 return FailGetLocalValue(visitor, vreg, tag);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002766 }
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002767 VLOG(jdwp) << "get long local " << vreg << " = " << longVal;
2768 JDWP::Set8BE(buf + 1, longVal);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002769 break;
2770 }
2771 default:
2772 LOG(FATAL) << "Unknown tag " << tag;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002773 UNREACHABLE();
Sebastien Hertz8009f392014-09-01 17:07:11 +02002774 }
Ian Rogers0399dde2012-06-06 17:09:28 -07002775
Sebastien Hertz8009f392014-09-01 17:07:11 +02002776 // Prepend tag, which may have been updated.
2777 JDWP::Set1(buf, tag);
2778 return JDWP::ERR_NONE;
2779}
2780
2781JDWP::JdwpError Dbg::SetLocalValues(JDWP::Request* request) {
2782 JDWP::ObjectId thread_id = request->ReadThreadId();
2783 JDWP::FrameId frame_id = request->ReadFrameId();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07002784
2785 ScopedObjectAccessUnchecked soa(Thread::Current());
Sebastien Hertz69206392015-04-07 15:54:25 +02002786 JDWP::JdwpError error;
2787 Thread* thread = DecodeThread(soa, thread_id, &error);
2788 if (error != JDWP::ERR_NONE) {
2789 return error;
2790 }
2791 if (!IsSuspendedForDebugger(soa, thread)) {
2792 return JDWP::ERR_THREAD_NOT_SUSPENDED;
Elliott Hughes221229c2013-01-08 18:17:50 -08002793 }
Andreas Gampe82484902018-11-16 00:47:49 +00002794 // Find the frame with the given frame_id.
2795 std::unique_ptr<Context> context(Context::Create());
2796 FindFrameVisitor visitor(thread, context.get(), frame_id);
2797 visitor.WalkStack();
2798 if (visitor.GetError() != JDWP::ERR_NONE) {
2799 return visitor.GetError();
2800 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002801
Andreas Gampe82484902018-11-16 00:47:49 +00002802 // Writes the values into visitor's context.
2803 int32_t slot_count = request->ReadSigned32("slot count");
2804 for (int32_t i = 0; i < slot_count; ++i) {
2805 uint32_t slot = request->ReadUnsigned32("slot");
2806 JDWP::JdwpTag sigByte = request->ReadTag();
2807 size_t width = Dbg::GetTagWidth(sigByte);
2808 uint64_t value = request->ReadValue(width);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002809
Andreas Gampe82484902018-11-16 00:47:49 +00002810 VLOG(jdwp) << " --> slot " << slot << " " << sigByte << " " << value;
2811 error = Dbg::SetLocalValue(thread, visitor, slot, sigByte, value, width);
2812 if (error != JDWP::ERR_NONE) {
2813 return error;
2814 }
2815 }
2816 return JDWP::ERR_NONE;
Sebastien Hertz8009f392014-09-01 17:07:11 +02002817}
2818
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002819template<typename T>
2820static JDWP::JdwpError FailSetLocalValue(const StackVisitor& visitor, uint16_t vreg,
2821 JDWP::JdwpTag tag, T value)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07002822 REQUIRES_SHARED(Locks::mutator_lock_) {
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002823 LOG(ERROR) << "Failed to write " << tag << " local " << value
2824 << " (0x" << std::hex << value << ") into register v" << vreg
2825 << GetStackContextAsString(visitor);
2826 return kStackFrameLocalAccessError;
2827}
2828
Mingyao Yang99170c62015-07-06 11:10:37 -07002829JDWP::JdwpError Dbg::SetLocalValue(Thread* thread, StackVisitor& visitor, int slot,
2830 JDWP::JdwpTag tag, uint64_t value, size_t width) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07002831 ArtMethod* m = visitor.GetMethod();
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002832 JDWP::JdwpError error = JDWP::ERR_NONE;
2833 uint16_t vreg = DemangleSlot(slot, m, &error);
2834 if (error != JDWP::ERR_NONE) {
2835 return error;
2836 }
Sebastien Hertz8009f392014-09-01 17:07:11 +02002837 // TODO: check that the tag is compatible with the actual type of the slot!
Sebastien Hertz8009f392014-09-01 17:07:11 +02002838 switch (tag) {
2839 case JDWP::JT_BOOLEAN:
2840 case JDWP::JT_BYTE:
2841 CHECK_EQ(width, 1U);
Mingyao Yang636b9252015-07-31 16:40:24 -07002842 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kIntVReg)) {
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002843 return FailSetLocalValue(visitor, vreg, tag, static_cast<uint32_t>(value));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002844 }
2845 break;
2846 case JDWP::JT_SHORT:
2847 case JDWP::JT_CHAR:
2848 CHECK_EQ(width, 2U);
Mingyao Yang636b9252015-07-31 16:40:24 -07002849 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kIntVReg)) {
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002850 return FailSetLocalValue(visitor, vreg, tag, static_cast<uint32_t>(value));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002851 }
2852 break;
2853 case JDWP::JT_INT:
2854 CHECK_EQ(width, 4U);
Mingyao Yang636b9252015-07-31 16:40:24 -07002855 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kIntVReg)) {
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002856 return FailSetLocalValue(visitor, vreg, tag, static_cast<uint32_t>(value));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002857 }
2858 break;
2859 case JDWP::JT_FLOAT:
2860 CHECK_EQ(width, 4U);
Mingyao Yang636b9252015-07-31 16:40:24 -07002861 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kFloatVReg)) {
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002862 return FailSetLocalValue(visitor, vreg, tag, static_cast<uint32_t>(value));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002863 }
2864 break;
2865 case JDWP::JT_ARRAY:
2866 case JDWP::JT_CLASS_LOADER:
2867 case JDWP::JT_CLASS_OBJECT:
2868 case JDWP::JT_OBJECT:
2869 case JDWP::JT_STRING:
2870 case JDWP::JT_THREAD:
2871 case JDWP::JT_THREAD_GROUP: {
2872 CHECK_EQ(width, sizeof(JDWP::ObjectId));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002873 mirror::Object* o = gRegistry->Get<mirror::Object*>(static_cast<JDWP::ObjectId>(value),
2874 &error);
2875 if (error != JDWP::ERR_NONE) {
2876 VLOG(jdwp) << tag << " object " << o << " is an invalid object";
2877 return JDWP::ERR_INVALID_OBJECT;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002878 }
Mingyao Yang636b9252015-07-31 16:40:24 -07002879 if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(reinterpret_cast<uintptr_t>(o)),
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002880 kReferenceVReg)) {
2881 return FailSetLocalValue(visitor, vreg, tag, reinterpret_cast<uintptr_t>(o));
Sebastien Hertz8009f392014-09-01 17:07:11 +02002882 }
2883 break;
2884 }
2885 case JDWP::JT_DOUBLE: {
2886 CHECK_EQ(width, 8U);
Mingyao Yang636b9252015-07-31 16:40:24 -07002887 if (!visitor.SetVRegPair(m, vreg, value, kDoubleLoVReg, kDoubleHiVReg)) {
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002888 return FailSetLocalValue(visitor, vreg, tag, value);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002889 }
2890 break;
2891 }
2892 case JDWP::JT_LONG: {
2893 CHECK_EQ(width, 8U);
Mingyao Yang636b9252015-07-31 16:40:24 -07002894 if (!visitor.SetVRegPair(m, vreg, value, kLongLoVReg, kLongHiVReg)) {
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002895 return FailSetLocalValue(visitor, vreg, tag, value);
Sebastien Hertz8009f392014-09-01 17:07:11 +02002896 }
2897 break;
2898 }
2899 default:
2900 LOG(FATAL) << "Unknown tag " << tag;
Sebastien Hertzabbabc82015-03-26 08:47:47 +01002901 UNREACHABLE();
Sebastien Hertz8009f392014-09-01 17:07:11 +02002902 }
Mingyao Yang99170c62015-07-06 11:10:37 -07002903
2904 // If we set the local variable in a compiled frame, we need to trigger a deoptimization of
2905 // the stack so we continue execution with the interpreter using the new value(s) of the updated
2906 // local variable(s). To achieve this, we install instrumentation exit stub on each method of the
2907 // thread's stack. The stub will cause the deoptimization to happen.
2908 if (!visitor.IsShadowFrame() && thread->HasDebuggerShadowFrames()) {
2909 Runtime::Current()->GetInstrumentation()->InstrumentThreadStack(thread);
2910 }
2911
Sebastien Hertz8009f392014-09-01 17:07:11 +02002912 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002913}
2914
Mathieu Chartiere401d142015-04-22 13:56:20 -07002915static void SetEventLocation(JDWP::EventLocation* location, ArtMethod* m, uint32_t dex_pc)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07002916 REQUIRES_SHARED(Locks::mutator_lock_) {
Sebastien Hertz6995c602014-09-09 12:10:13 +02002917 DCHECK(location != nullptr);
2918 if (m == nullptr) {
2919 memset(location, 0, sizeof(*location));
2920 } else {
Alex Light97e78032017-06-27 17:51:55 -07002921 location->method = m->GetCanonicalMethod(kRuntimePointerSize);
Sebastien Hertz6995c602014-09-09 12:10:13 +02002922 location->dex_pc = (m->IsNative() || m->IsProxyMethod()) ? static_cast<uint32_t>(-1) : dex_pc;
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002923 }
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002924}
2925
Mathieu Chartiere401d142015-04-22 13:56:20 -07002926void Dbg::PostLocationEvent(ArtMethod* m, int dex_pc, mirror::Object* this_object,
Jeff Hao579b0242013-11-18 13:16:49 -08002927 int event_flags, const JValue* return_value) {
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002928 if (!IsDebuggerActive()) {
2929 return;
2930 }
2931 DCHECK(m != nullptr);
2932 DCHECK_EQ(m->IsStatic(), this_object == nullptr);
Sebastien Hertz6995c602014-09-09 12:10:13 +02002933 JDWP::EventLocation location;
2934 SetEventLocation(&location, m, dex_pc);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08002935
Sebastien Hertzde48aa62015-05-26 11:53:39 +02002936 // We need to be sure no exception is pending when calling JdwpState::PostLocationEvent.
2937 // This is required to be able to call JNI functions to create JDWP ids. To achieve this,
2938 // we temporarily clear the current thread's exception (if any) and will restore it after
2939 // the call.
2940 // Note: the only way to get a pending exception here is to suspend on a move-exception
2941 // instruction.
2942 Thread* const self = Thread::Current();
2943 StackHandleScope<1> hs(self);
2944 Handle<mirror::Throwable> pending_exception(hs.NewHandle(self->GetException()));
2945 self->ClearException();
Andreas Gampefa4333d2017-02-14 11:10:34 -08002946 if (kIsDebugBuild && pending_exception != nullptr) {
Mathieu Chartier808c7a52017-12-15 11:19:33 -08002947 const Instruction& instr = location.method->DexInstructions().InstructionAt(location.dex_pc);
2948 CHECK_EQ(Instruction::MOVE_EXCEPTION, instr.Opcode());
Sebastien Hertzde48aa62015-05-26 11:53:39 +02002949 }
2950
Sebastien Hertz6995c602014-09-09 12:10:13 +02002951 gJdwpState->PostLocationEvent(&location, this_object, event_flags, return_value);
Sebastien Hertzde48aa62015-05-26 11:53:39 +02002952
Andreas Gampefa4333d2017-02-14 11:10:34 -08002953 if (pending_exception != nullptr) {
Sebastien Hertzde48aa62015-05-26 11:53:39 +02002954 self->SetException(pending_exception.Get());
2955 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07002956}
2957
Mathieu Chartiere401d142015-04-22 13:56:20 -07002958void Dbg::PostFieldAccessEvent(ArtMethod* m, int dex_pc,
Mathieu Chartierc7853442015-03-27 14:35:38 -07002959 mirror::Object* this_object, ArtField* f) {
Alex Lighte00ec302017-06-16 08:56:43 -07002960 // TODO We should send events for native methods.
2961 if (!IsDebuggerActive() || m->IsNative()) {
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002962 return;
2963 }
2964 DCHECK(m != nullptr);
2965 DCHECK(f != nullptr);
Sebastien Hertz6995c602014-09-09 12:10:13 +02002966 JDWP::EventLocation location;
2967 SetEventLocation(&location, m, dex_pc);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002968
Sebastien Hertz6995c602014-09-09 12:10:13 +02002969 gJdwpState->PostFieldEvent(&location, f, this_object, nullptr, false);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002970}
2971
Mathieu Chartiere401d142015-04-22 13:56:20 -07002972void Dbg::PostFieldModificationEvent(ArtMethod* m, int dex_pc,
Mathieu Chartierc7853442015-03-27 14:35:38 -07002973 mirror::Object* this_object, ArtField* f,
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002974 const JValue* field_value) {
Alex Lighte00ec302017-06-16 08:56:43 -07002975 // TODO We should send events for native methods.
2976 if (!IsDebuggerActive() || m->IsNative()) {
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002977 return;
2978 }
2979 DCHECK(m != nullptr);
2980 DCHECK(f != nullptr);
2981 DCHECK(field_value != nullptr);
Sebastien Hertz6995c602014-09-09 12:10:13 +02002982 JDWP::EventLocation location;
2983 SetEventLocation(&location, m, dex_pc);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002984
Sebastien Hertz6995c602014-09-09 12:10:13 +02002985 gJdwpState->PostFieldEvent(&location, f, this_object, field_value, true);
Sebastien Hertz3f52eaf2014-04-04 17:50:18 +02002986}
2987
Andreas Gampe82484902018-11-16 00:47:49 +00002988/**
2989 * Finds the location where this exception will be caught. We search until we reach the top
2990 * frame, in which case this exception is considered uncaught.
2991 */
2992class CatchLocationFinder : public StackVisitor {
2993 public:
2994 CatchLocationFinder(Thread* self, const Handle<mirror::Throwable>& exception, Context* context)
2995 REQUIRES_SHARED(Locks::mutator_lock_)
2996 : StackVisitor(self, context, StackVisitor::StackWalkKind::kIncludeInlinedFrames),
2997 exception_(exception),
2998 handle_scope_(self),
2999 this_at_throw_(handle_scope_.NewHandle<mirror::Object>(nullptr)),
3000 catch_method_(nullptr),
3001 throw_method_(nullptr),
3002 catch_dex_pc_(dex::kDexNoIndex),
3003 throw_dex_pc_(dex::kDexNoIndex) {
3004 }
3005
3006 bool VisitFrame() override REQUIRES_SHARED(Locks::mutator_lock_) {
3007 ArtMethod* method = GetMethod();
3008 DCHECK(method != nullptr);
3009 if (method->IsRuntimeMethod()) {
3010 // Ignore callee save method.
3011 DCHECK(method->IsCalleeSaveMethod());
3012 return true;
3013 }
3014
3015 uint32_t dex_pc = GetDexPc();
3016 if (throw_method_ == nullptr) {
3017 // First Java method found. It is either the method that threw the exception,
3018 // or the Java native method that is reporting an exception thrown by
3019 // native code.
3020 this_at_throw_.Assign(GetThisObject());
3021 throw_method_ = method;
3022 throw_dex_pc_ = dex_pc;
3023 }
3024
3025 if (dex_pc != dex::kDexNoIndex) {
3026 StackHandleScope<1> hs(GetThread());
3027 uint32_t found_dex_pc;
3028 Handle<mirror::Class> exception_class(hs.NewHandle(exception_->GetClass()));
3029 bool unused_clear_exception;
3030 found_dex_pc = method->FindCatchBlock(exception_class, dex_pc, &unused_clear_exception);
3031 if (found_dex_pc != dex::kDexNoIndex) {
3032 catch_method_ = method;
3033 catch_dex_pc_ = found_dex_pc;
3034 return false; // End stack walk.
3035 }
3036 }
3037 return true; // Continue stack walk.
3038 }
3039
3040 ArtMethod* GetCatchMethod() REQUIRES_SHARED(Locks::mutator_lock_) {
3041 return catch_method_;
3042 }
3043
3044 ArtMethod* GetThrowMethod() REQUIRES_SHARED(Locks::mutator_lock_) {
3045 return throw_method_;
3046 }
3047
3048 mirror::Object* GetThisAtThrow() REQUIRES_SHARED(Locks::mutator_lock_) {
3049 return this_at_throw_.Get();
3050 }
3051
3052 uint32_t GetCatchDexPc() const {
3053 return catch_dex_pc_;
3054 }
3055
3056 uint32_t GetThrowDexPc() const {
3057 return throw_dex_pc_;
3058 }
3059
3060 private:
3061 const Handle<mirror::Throwable>& exception_;
3062 StackHandleScope<1> handle_scope_;
3063 MutableHandle<mirror::Object> this_at_throw_;
3064 ArtMethod* catch_method_;
3065 ArtMethod* throw_method_;
3066 uint32_t catch_dex_pc_;
3067 uint32_t throw_dex_pc_;
3068
3069 DISALLOW_COPY_AND_ASSIGN(CatchLocationFinder);
3070};
3071
Nicolas Geoffray14691c52015-03-05 10:40:17 +00003072void Dbg::PostException(mirror::Throwable* exception_object) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07003073 if (!IsDebuggerActive()) {
Ian Rogers0ad5bb82011-12-07 10:16:32 -08003074 return;
3075 }
Sebastien Hertz261bc042015-04-08 09:36:07 +02003076 Thread* const self = Thread::Current();
Andreas Gampe82484902018-11-16 00:47:49 +00003077 StackHandleScope<1> handle_scope(self);
Nicolas Geoffray14691c52015-03-05 10:40:17 +00003078 Handle<mirror::Throwable> h_exception(handle_scope.NewHandle(exception_object));
3079 std::unique_ptr<Context> context(Context::Create());
Andreas Gampe82484902018-11-16 00:47:49 +00003080 CatchLocationFinder clf(self, h_exception, context.get());
3081 clf.WalkStack(/* include_transitions= */ false);
Andreas Gampe36f8d222018-10-08 08:13:42 -07003082 JDWP::EventLocation exception_throw_location;
Andreas Gampe82484902018-11-16 00:47:49 +00003083 SetEventLocation(&exception_throw_location, clf.GetThrowMethod(), clf.GetThrowDexPc());
Andreas Gampe36f8d222018-10-08 08:13:42 -07003084 JDWP::EventLocation exception_catch_location;
Andreas Gampe82484902018-11-16 00:47:49 +00003085 SetEventLocation(&exception_catch_location, clf.GetCatchMethod(), clf.GetCatchDexPc());
Andreas Gampe36f8d222018-10-08 08:13:42 -07003086
Andreas Gampe82484902018-11-16 00:47:49 +00003087 gJdwpState->PostException(&exception_throw_location, h_exception.Get(), &exception_catch_location,
3088 clf.GetThisAtThrow());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003089}
3090
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003091void Dbg::PostClassPrepare(mirror::Class* c) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07003092 if (!IsDebuggerActive()) {
Elliott Hughes4740cdf2011-12-07 14:07:12 -08003093 return;
3094 }
Sebastien Hertz6995c602014-09-09 12:10:13 +02003095 gJdwpState->PostClassPrepare(c);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003096}
3097
Ian Rogers62d6c772013-02-27 08:32:07 -08003098void Dbg::UpdateDebugger(Thread* thread, mirror::Object* this_object,
Mathieu Chartiere401d142015-04-22 13:56:20 -07003099 ArtMethod* m, uint32_t dex_pc,
Sebastien Hertz8379b222014-02-24 17:38:15 +01003100 int event_flags, const JValue* return_value) {
Ian Rogers62d6c772013-02-27 08:32:07 -08003101 if (!IsDebuggerActive() || dex_pc == static_cast<uint32_t>(-2) /* fake method exit */) {
Elliott Hughes2aa2e392012-02-17 17:15:43 -08003102 return;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08003103 }
3104
Elliott Hughes86964332012-02-15 19:37:42 -08003105 if (IsBreakpoint(m, dex_pc)) {
3106 event_flags |= kBreakpoint;
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08003107 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08003108
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003109 // If the debugger is single-stepping one of our threads, check to
3110 // see if we're that thread and we've reached a step point.
3111 const SingleStepControl* single_step_control = thread->GetSingleStepControl();
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003112 if (single_step_control != nullptr) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003113 CHECK(!m->IsNative());
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003114 if (single_step_control->GetStepDepth() == JDWP::SD_INTO) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003115 // Step into method calls. We break when the line number
3116 // or method pointer changes. If we're in SS_MIN mode, we
3117 // always stop.
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003118 if (single_step_control->GetMethod() != m) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003119 event_flags |= kSingleStep;
3120 VLOG(jdwp) << "SS new method";
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003121 } else if (single_step_control->GetStepSize() == JDWP::SS_MIN) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003122 event_flags |= kSingleStep;
3123 VLOG(jdwp) << "SS new instruction";
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003124 } else if (single_step_control->ContainsDexPc(dex_pc)) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003125 event_flags |= kSingleStep;
3126 VLOG(jdwp) << "SS new line";
3127 }
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003128 } else if (single_step_control->GetStepDepth() == JDWP::SD_OVER) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003129 // Step over method calls. We break when the line number is
3130 // different and the frame depth is <= the original frame
3131 // depth. (We can't just compare on the method, because we
3132 // might get unrolled past it by an exception, and it's tricky
3133 // to identify recursion.)
3134
3135 int stack_depth = GetStackDepth(thread);
3136
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003137 if (stack_depth < single_step_control->GetStackDepth()) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003138 // Popped up one or more frames, always trigger.
3139 event_flags |= kSingleStep;
3140 VLOG(jdwp) << "SS method pop";
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003141 } else if (stack_depth == single_step_control->GetStackDepth()) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003142 // Same depth, see if we moved.
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003143 if (single_step_control->GetStepSize() == JDWP::SS_MIN) {
Elliott Hughes86964332012-02-15 19:37:42 -08003144 event_flags |= kSingleStep;
3145 VLOG(jdwp) << "SS new instruction";
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003146 } else if (single_step_control->ContainsDexPc(dex_pc)) {
Elliott Hughes2435a572012-02-17 16:07:41 -08003147 event_flags |= kSingleStep;
3148 VLOG(jdwp) << "SS new line";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08003149 }
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003150 }
3151 } else {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003152 CHECK_EQ(single_step_control->GetStepDepth(), JDWP::SD_OUT);
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003153 // Return from the current method. We break when the frame
3154 // depth pops up.
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08003155
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003156 // This differs from the "method exit" break in that it stops
3157 // with the PC at the next instruction in the returned-to
3158 // function, rather than the end of the returning function.
Elliott Hughes86964332012-02-15 19:37:42 -08003159
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003160 int stack_depth = GetStackDepth(thread);
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003161 if (stack_depth < single_step_control->GetStackDepth()) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003162 event_flags |= kSingleStep;
3163 VLOG(jdwp) << "SS method pop";
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08003164 }
3165 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08003166 }
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08003167
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08003168 // If there's something interesting going on, see if it matches one
3169 // of the debugger filters.
3170 if (event_flags != 0) {
Sebastien Hertz8379b222014-02-24 17:38:15 +01003171 Dbg::PostLocationEvent(m, dex_pc, this_object, event_flags, return_value);
Elliott Hughes91bf6cd2012-02-14 17:27:48 -08003172 }
3173}
3174
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003175size_t* Dbg::GetReferenceCounterForEvent(uint32_t instrumentation_event) {
3176 switch (instrumentation_event) {
3177 case instrumentation::Instrumentation::kMethodEntered:
3178 return &method_enter_event_ref_count_;
3179 case instrumentation::Instrumentation::kMethodExited:
3180 return &method_exit_event_ref_count_;
3181 case instrumentation::Instrumentation::kDexPcMoved:
3182 return &dex_pc_change_event_ref_count_;
3183 case instrumentation::Instrumentation::kFieldRead:
3184 return &field_read_event_ref_count_;
3185 case instrumentation::Instrumentation::kFieldWritten:
3186 return &field_write_event_ref_count_;
Alex Light6e1607e2017-08-23 10:06:18 -07003187 case instrumentation::Instrumentation::kExceptionThrown:
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003188 return &exception_catch_event_ref_count_;
3189 default:
3190 return nullptr;
3191 }
3192}
3193
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003194// Process request while all mutator threads are suspended.
3195void Dbg::ProcessDeoptimizationRequest(const DeoptimizationRequest& request) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003196 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003197 switch (request.GetKind()) {
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003198 case DeoptimizationRequest::kNothing:
3199 LOG(WARNING) << "Ignoring empty deoptimization request.";
3200 break;
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003201 case DeoptimizationRequest::kRegisterForEvent:
3202 VLOG(jdwp) << StringPrintf("Add debugger as listener for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003203 request.InstrumentationEvent());
3204 instrumentation->AddListener(&gDebugInstrumentationListener, request.InstrumentationEvent());
3205 instrumentation_events_ |= request.InstrumentationEvent();
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003206 break;
3207 case DeoptimizationRequest::kUnregisterForEvent:
3208 VLOG(jdwp) << StringPrintf("Remove debugger as listener for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003209 request.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003210 instrumentation->RemoveListener(&gDebugInstrumentationListener,
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003211 request.InstrumentationEvent());
3212 instrumentation_events_ &= ~request.InstrumentationEvent();
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003213 break;
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003214 case DeoptimizationRequest::kFullDeoptimization:
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003215 VLOG(jdwp) << "Deoptimize the world ...";
Sebastien Hertz0462c4c2015-04-01 16:34:17 +02003216 instrumentation->DeoptimizeEverything(kDbgInstrumentationKey);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003217 VLOG(jdwp) << "Deoptimize the world DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003218 break;
3219 case DeoptimizationRequest::kFullUndeoptimization:
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003220 VLOG(jdwp) << "Undeoptimize the world ...";
Sebastien Hertz0462c4c2015-04-01 16:34:17 +02003221 instrumentation->UndeoptimizeEverything(kDbgInstrumentationKey);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003222 VLOG(jdwp) << "Undeoptimize the world DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003223 break;
3224 case DeoptimizationRequest::kSelectiveDeoptimization:
David Sehr709b0702016-10-13 09:12:37 -07003225 VLOG(jdwp) << "Deoptimize method " << ArtMethod::PrettyMethod(request.Method()) << " ...";
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003226 instrumentation->Deoptimize(request.Method());
David Sehr709b0702016-10-13 09:12:37 -07003227 VLOG(jdwp) << "Deoptimize method " << ArtMethod::PrettyMethod(request.Method()) << " DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003228 break;
3229 case DeoptimizationRequest::kSelectiveUndeoptimization:
David Sehr709b0702016-10-13 09:12:37 -07003230 VLOG(jdwp) << "Undeoptimize method " << ArtMethod::PrettyMethod(request.Method()) << " ...";
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003231 instrumentation->Undeoptimize(request.Method());
David Sehr709b0702016-10-13 09:12:37 -07003232 VLOG(jdwp) << "Undeoptimize method " << ArtMethod::PrettyMethod(request.Method()) << " DONE";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003233 break;
3234 default:
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003235 LOG(FATAL) << "Unsupported deoptimization request kind " << request.GetKind();
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003236 break;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003237 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003238}
3239
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003240void Dbg::RequestDeoptimization(const DeoptimizationRequest& req) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003241 if (req.GetKind() == DeoptimizationRequest::kNothing) {
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003242 // Nothing to do.
3243 return;
3244 }
Brian Carlstrom306db812014-09-05 13:01:41 -07003245 MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003246 RequestDeoptimizationLocked(req);
3247}
3248
3249void Dbg::RequestDeoptimizationLocked(const DeoptimizationRequest& req) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003250 switch (req.GetKind()) {
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003251 case DeoptimizationRequest::kRegisterForEvent: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003252 DCHECK_NE(req.InstrumentationEvent(), 0u);
3253 size_t* counter = GetReferenceCounterForEvent(req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003254 CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003255 req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003256 if (*counter == 0) {
Sebastien Hertz7d2ae432014-05-15 11:26:34 +02003257 VLOG(jdwp) << StringPrintf("Queue request #%zd to start listening to instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003258 deoptimization_requests_.size(), req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003259 deoptimization_requests_.push_back(req);
3260 }
3261 *counter = *counter + 1;
3262 break;
3263 }
3264 case DeoptimizationRequest::kUnregisterForEvent: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003265 DCHECK_NE(req.InstrumentationEvent(), 0u);
3266 size_t* counter = GetReferenceCounterForEvent(req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003267 CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003268 req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003269 *counter = *counter - 1;
3270 if (*counter == 0) {
Sebastien Hertz7d2ae432014-05-15 11:26:34 +02003271 VLOG(jdwp) << StringPrintf("Queue request #%zd to stop listening to instrumentation event 0x%x",
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003272 deoptimization_requests_.size(), req.InstrumentationEvent());
Sebastien Hertz42cd43f2014-05-13 14:15:41 +02003273 deoptimization_requests_.push_back(req);
3274 }
3275 break;
3276 }
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003277 case DeoptimizationRequest::kFullDeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003278 DCHECK(req.Method() == nullptr);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003279 if (full_deoptimization_event_count_ == 0) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003280 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
3281 << " for full deoptimization";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003282 deoptimization_requests_.push_back(req);
3283 }
3284 ++full_deoptimization_event_count_;
3285 break;
3286 }
3287 case DeoptimizationRequest::kFullUndeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003288 DCHECK(req.Method() == nullptr);
Sebastien Hertze713d932014-05-15 10:48:53 +02003289 DCHECK_GT(full_deoptimization_event_count_, 0U);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003290 --full_deoptimization_event_count_;
3291 if (full_deoptimization_event_count_ == 0) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003292 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
3293 << " for full undeoptimization";
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003294 deoptimization_requests_.push_back(req);
3295 }
3296 break;
3297 }
3298 case DeoptimizationRequest::kSelectiveDeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003299 DCHECK(req.Method() != nullptr);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003300 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
David Sehr709b0702016-10-13 09:12:37 -07003301 << " for deoptimization of " << req.Method()->PrettyMethod();
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003302 deoptimization_requests_.push_back(req);
3303 break;
3304 }
3305 case DeoptimizationRequest::kSelectiveUndeoptimization: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003306 DCHECK(req.Method() != nullptr);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003307 VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size()
David Sehr709b0702016-10-13 09:12:37 -07003308 << " for undeoptimization of " << req.Method()->PrettyMethod();
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003309 deoptimization_requests_.push_back(req);
3310 break;
3311 }
3312 default: {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003313 LOG(FATAL) << "Unknown deoptimization request kind " << req.GetKind();
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003314 break;
3315 }
3316 }
3317}
3318
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003319void Dbg::ManageDeoptimization() {
3320 Thread* const self = Thread::Current();
3321 {
3322 // Avoid suspend/resume if there is no pending request.
Brian Carlstrom306db812014-09-05 13:01:41 -07003323 MutexLock mu(self, *Locks::deoptimization_lock_);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003324 if (deoptimization_requests_.empty()) {
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003325 return;
3326 }
3327 }
3328 CHECK_EQ(self->GetState(), kRunnable);
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07003329 ScopedThreadSuspension sts(self, kWaitingForDeoptimization);
Mathieu Chartieraa516822015-10-02 15:53:37 -07003330 // Required for ProcessDeoptimizationRequest.
3331 gc::ScopedGCCriticalSection gcs(self,
3332 gc::kGcCauseInstrumentation,
3333 gc::kCollectorTypeInstrumentation);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003334 // We need to suspend mutator threads first.
Mathieu Chartier4f55e222015-09-04 13:26:21 -07003335 ScopedSuspendAll ssa(__FUNCTION__);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003336 const ThreadState old_state = self->SetStateUnsafe(kRunnable);
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003337 {
Brian Carlstrom306db812014-09-05 13:01:41 -07003338 MutexLock mu(self, *Locks::deoptimization_lock_);
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003339 size_t req_index = 0;
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003340 for (DeoptimizationRequest& request : deoptimization_requests_) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +01003341 VLOG(jdwp) << "Process deoptimization request #" << req_index++;
Sebastien Hertz4d25df32014-03-21 17:44:46 +01003342 ProcessDeoptimizationRequest(request);
3343 }
3344 deoptimization_requests_.clear();
3345 }
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003346 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003347}
3348
Mathieu Chartiere401d142015-04-22 13:56:20 -07003349static const Breakpoint* FindFirstBreakpointForMethod(ArtMethod* m)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07003350 REQUIRES_SHARED(Locks::mutator_lock_, Locks::breakpoint_lock_) {
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003351 for (Breakpoint& breakpoint : gBreakpoints) {
Alex Light6c8467f2015-11-20 15:03:26 -08003352 if (breakpoint.IsInMethod(m)) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003353 return &breakpoint;
3354 }
3355 }
3356 return nullptr;
3357}
3358
Mathieu Chartiere401d142015-04-22 13:56:20 -07003359bool Dbg::MethodHasAnyBreakpoints(ArtMethod* method) {
Mathieu Chartierd8565452015-03-26 09:41:50 -07003360 ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
3361 return FindFirstBreakpointForMethod(method) != nullptr;
3362}
3363
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003364// Sanity checks all existing breakpoints on the same method.
Mathieu Chartiere401d142015-04-22 13:56:20 -07003365static void SanityCheckExistingBreakpoints(ArtMethod* m,
Sebastien Hertzf3928792014-11-17 19:00:37 +01003366 DeoptimizationRequest::Kind deoptimization_kind)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07003367 REQUIRES_SHARED(Locks::mutator_lock_, Locks::breakpoint_lock_) {
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003368 for (const Breakpoint& breakpoint : gBreakpoints) {
Alex Light6c8467f2015-11-20 15:03:26 -08003369 if (breakpoint.IsInMethod(m)) {
Sebastien Hertzf3928792014-11-17 19:00:37 +01003370 CHECK_EQ(deoptimization_kind, breakpoint.GetDeoptimizationKind());
3371 }
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003372 }
Sebastien Hertzf3928792014-11-17 19:00:37 +01003373 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation();
3374 if (deoptimization_kind == DeoptimizationRequest::kFullDeoptimization) {
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003375 // We should have deoptimized everything but not "selectively" deoptimized this method.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003376 CHECK(instrumentation->AreAllMethodsDeoptimized());
3377 CHECK(!instrumentation->IsDeoptimized(m));
3378 } else if (deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization) {
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003379 // We should have "selectively" deoptimized this method.
3380 // Note: while we have not deoptimized everything for this method, we may have done it for
3381 // another event.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003382 CHECK(instrumentation->IsDeoptimized(m));
3383 } else {
3384 // This method does not require deoptimization.
3385 CHECK_EQ(deoptimization_kind, DeoptimizationRequest::kNothing);
3386 CHECK(!instrumentation->IsDeoptimized(m));
3387 }
3388}
3389
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003390// Returns the deoptimization kind required to set a breakpoint in a method.
3391// If a breakpoint has already been set, we also return the first breakpoint
3392// through the given 'existing_brkpt' pointer.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003393static DeoptimizationRequest::Kind GetRequiredDeoptimizationKind(Thread* self,
Mathieu Chartiere401d142015-04-22 13:56:20 -07003394 ArtMethod* m,
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003395 const Breakpoint** existing_brkpt)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07003396 REQUIRES_SHARED(Locks::mutator_lock_) {
Sebastien Hertzf3928792014-11-17 19:00:37 +01003397 if (!Dbg::RequiresDeoptimization()) {
3398 // We already run in interpreter-only mode so we don't need to deoptimize anything.
3399 VLOG(jdwp) << "No need for deoptimization when fully running with interpreter for method "
David Sehr709b0702016-10-13 09:12:37 -07003400 << ArtMethod::PrettyMethod(m);
Sebastien Hertzf3928792014-11-17 19:00:37 +01003401 return DeoptimizationRequest::kNothing;
3402 }
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003403 const Breakpoint* first_breakpoint;
Sebastien Hertzf3928792014-11-17 19:00:37 +01003404 {
3405 ReaderMutexLock mu(self, *Locks::breakpoint_lock_);
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003406 first_breakpoint = FindFirstBreakpointForMethod(m);
3407 *existing_brkpt = first_breakpoint;
Sebastien Hertzf3928792014-11-17 19:00:37 +01003408 }
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003409
3410 if (first_breakpoint == nullptr) {
Nicolas Geoffray6300fd72016-03-18 09:40:17 +00003411 // There is no breakpoint on this method yet: we need to deoptimize. If this method is default,
3412 // we deoptimize everything; otherwise we deoptimize only this method. We
Alex Light6c8467f2015-11-20 15:03:26 -08003413 // deoptimize with defaults because we do not know everywhere they are used. It is possible some
Nicolas Geoffray6300fd72016-03-18 09:40:17 +00003414 // of the copies could be missed.
Alex Light6c8467f2015-11-20 15:03:26 -08003415 // TODO Deoptimizing on default methods might not be necessary in all cases.
Nicolas Geoffray6300fd72016-03-18 09:40:17 +00003416 bool need_full_deoptimization = m->IsDefault();
Sebastien Hertzf3928792014-11-17 19:00:37 +01003417 if (need_full_deoptimization) {
Nicolas Geoffray6300fd72016-03-18 09:40:17 +00003418 VLOG(jdwp) << "Need full deoptimization because of copying of method "
David Sehr709b0702016-10-13 09:12:37 -07003419 << ArtMethod::PrettyMethod(m);
Sebastien Hertzf3928792014-11-17 19:00:37 +01003420 return DeoptimizationRequest::kFullDeoptimization;
3421 } else {
3422 // We don't need to deoptimize if the method has not been compiled.
Nicolas Geoffraya5891e82015-11-06 14:18:27 +00003423 const bool is_compiled = m->HasAnyCompiledCode();
Sebastien Hertzf3928792014-11-17 19:00:37 +01003424 if (is_compiled) {
David Sehr709b0702016-10-13 09:12:37 -07003425 VLOG(jdwp) << "Need selective deoptimization for compiled method "
3426 << ArtMethod::PrettyMethod(m);
Nicolas Geoffray6300fd72016-03-18 09:40:17 +00003427 return DeoptimizationRequest::kSelectiveDeoptimization;
Sebastien Hertzf3928792014-11-17 19:00:37 +01003428 } else {
3429 // Method is not compiled: we don't need to deoptimize.
David Sehr709b0702016-10-13 09:12:37 -07003430 VLOG(jdwp) << "No need for deoptimization for non-compiled method "
3431 << ArtMethod::PrettyMethod(m);
Sebastien Hertzf3928792014-11-17 19:00:37 +01003432 return DeoptimizationRequest::kNothing;
3433 }
3434 }
3435 } else {
3436 // There is at least one breakpoint for this method: we don't need to deoptimize.
3437 // Let's check that all breakpoints are configured the same way for deoptimization.
3438 VLOG(jdwp) << "Breakpoint already set: no deoptimization is required";
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003439 DeoptimizationRequest::Kind deoptimization_kind = first_breakpoint->GetDeoptimizationKind();
Sebastien Hertzf3928792014-11-17 19:00:37 +01003440 if (kIsDebugBuild) {
3441 ReaderMutexLock mu(self, *Locks::breakpoint_lock_);
3442 SanityCheckExistingBreakpoints(m, deoptimization_kind);
3443 }
3444 return DeoptimizationRequest::kNothing;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003445 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003446}
3447
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003448// Installs a breakpoint at the specified location. Also indicates through the deoptimization
3449// request if we need to deoptimize.
3450void Dbg::WatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) {
3451 Thread* const self = Thread::Current();
Mathieu Chartiere401d142015-04-22 13:56:20 -07003452 ArtMethod* m = FromMethodId(location->method_id);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003453 DCHECK(m != nullptr) << "No method for method id " << location->method_id;
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003454
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003455 const Breakpoint* existing_breakpoint = nullptr;
3456 const DeoptimizationRequest::Kind deoptimization_kind =
3457 GetRequiredDeoptimizationKind(self, m, &existing_breakpoint);
Sebastien Hertzf3928792014-11-17 19:00:37 +01003458 req->SetKind(deoptimization_kind);
3459 if (deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization) {
3460 req->SetMethod(m);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003461 } else {
Sebastien Hertzf3928792014-11-17 19:00:37 +01003462 CHECK(deoptimization_kind == DeoptimizationRequest::kNothing ||
3463 deoptimization_kind == DeoptimizationRequest::kFullDeoptimization);
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003464 req->SetMethod(nullptr);
Sebastien Hertz138dbfc2013-12-04 18:15:25 +01003465 }
3466
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003467 {
3468 WriterMutexLock mu(self, *Locks::breakpoint_lock_);
Sebastien Hertzabe93e02014-12-17 16:35:50 +01003469 // If there is at least one existing breakpoint on the same method, the new breakpoint
3470 // must have the same deoptimization kind than the existing breakpoint(s).
3471 DeoptimizationRequest::Kind breakpoint_deoptimization_kind;
3472 if (existing_breakpoint != nullptr) {
3473 breakpoint_deoptimization_kind = existing_breakpoint->GetDeoptimizationKind();
3474 } else {
3475 breakpoint_deoptimization_kind = deoptimization_kind;
3476 }
3477 gBreakpoints.push_back(Breakpoint(m, location->dex_pc, breakpoint_deoptimization_kind));
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003478 VLOG(jdwp) << "Set breakpoint #" << (gBreakpoints.size() - 1) << ": "
3479 << gBreakpoints[gBreakpoints.size() - 1];
3480 }
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003481}
3482
3483// Uninstalls a breakpoint at the specified location. Also indicates through the deoptimization
3484// request if we need to undeoptimize.
3485void Dbg::UnwatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) {
Sebastien Hertzed2be172014-08-19 15:33:43 +02003486 WriterMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
Mathieu Chartiere401d142015-04-22 13:56:20 -07003487 ArtMethod* m = FromMethodId(location->method_id);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003488 DCHECK(m != nullptr) << "No method for method id " << location->method_id;
Sebastien Hertzf3928792014-11-17 19:00:37 +01003489 DeoptimizationRequest::Kind deoptimization_kind = DeoptimizationRequest::kNothing;
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003490 for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) {
Alex Light6c8467f2015-11-20 15:03:26 -08003491 if (gBreakpoints[i].DexPc() == location->dex_pc && gBreakpoints[i].IsInMethod(m)) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003492 VLOG(jdwp) << "Removed breakpoint #" << i << ": " << gBreakpoints[i];
Sebastien Hertzf3928792014-11-17 19:00:37 +01003493 deoptimization_kind = gBreakpoints[i].GetDeoptimizationKind();
3494 DCHECK_EQ(deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization,
3495 Runtime::Current()->GetInstrumentation()->IsDeoptimized(m));
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003496 gBreakpoints.erase(gBreakpoints.begin() + i);
3497 break;
3498 }
3499 }
3500 const Breakpoint* const existing_breakpoint = FindFirstBreakpointForMethod(m);
3501 if (existing_breakpoint == nullptr) {
3502 // There is no more breakpoint on this method: we need to undeoptimize.
Sebastien Hertzf3928792014-11-17 19:00:37 +01003503 if (deoptimization_kind == DeoptimizationRequest::kFullDeoptimization) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003504 // This method required full deoptimization: we need to undeoptimize everything.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003505 req->SetKind(DeoptimizationRequest::kFullUndeoptimization);
3506 req->SetMethod(nullptr);
Sebastien Hertzf3928792014-11-17 19:00:37 +01003507 } else if (deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization) {
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003508 // This method required selective deoptimization: we need to undeoptimize only that method.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003509 req->SetKind(DeoptimizationRequest::kSelectiveUndeoptimization);
3510 req->SetMethod(m);
Sebastien Hertzf3928792014-11-17 19:00:37 +01003511 } else {
3512 // This method had no need for deoptimization: do nothing.
3513 CHECK_EQ(deoptimization_kind, DeoptimizationRequest::kNothing);
3514 req->SetKind(DeoptimizationRequest::kNothing);
3515 req->SetMethod(nullptr);
Sebastien Hertza76a6d42014-03-20 16:40:17 +01003516 }
3517 } else {
3518 // There is at least one breakpoint for this method: we don't need to undeoptimize.
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07003519 req->SetKind(DeoptimizationRequest::kNothing);
3520 req->SetMethod(nullptr);
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003521 if (kIsDebugBuild) {
Sebastien Hertzf3928792014-11-17 19:00:37 +01003522 SanityCheckExistingBreakpoints(m, deoptimization_kind);
Sebastien Hertz4d1e9ab2014-09-18 16:03:34 +02003523 }
Elliott Hughes86964332012-02-15 19:37:42 -08003524 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003525}
3526
Mathieu Chartiere401d142015-04-22 13:56:20 -07003527bool Dbg::IsForcedInterpreterNeededForCallingImpl(Thread* thread, ArtMethod* m) {
Daniel Mihalyieb076692014-08-22 17:33:31 +02003528 const SingleStepControl* const ssc = thread->GetSingleStepControl();
3529 if (ssc == nullptr) {
3530 // If we are not single-stepping, then we don't have to force interpreter.
3531 return false;
3532 }
3533 if (Runtime::Current()->GetInstrumentation()->InterpretOnly()) {
3534 // If we are in interpreter only mode, then we don't have to force interpreter.
3535 return false;
3536 }
3537
3538 if (!m->IsNative() && !m->IsProxyMethod()) {
3539 // If we want to step into a method, then we have to force interpreter on that call.
3540 if (ssc->GetStepDepth() == JDWP::SD_INTO) {
3541 return true;
3542 }
3543 }
3544 return false;
3545}
3546
Mathieu Chartiere401d142015-04-22 13:56:20 -07003547bool Dbg::IsForcedInterpreterNeededForResolutionImpl(Thread* thread, ArtMethod* m) {
Daniel Mihalyieb076692014-08-22 17:33:31 +02003548 instrumentation::Instrumentation* const instrumentation =
3549 Runtime::Current()->GetInstrumentation();
3550 // If we are in interpreter only mode, then we don't have to force interpreter.
3551 if (instrumentation->InterpretOnly()) {
3552 return false;
3553 }
3554 // We can only interpret pure Java method.
3555 if (m->IsNative() || m->IsProxyMethod()) {
3556 return false;
3557 }
3558 const SingleStepControl* const ssc = thread->GetSingleStepControl();
3559 if (ssc != nullptr) {
3560 // If we want to step into a method, then we have to force interpreter on that call.
3561 if (ssc->GetStepDepth() == JDWP::SD_INTO) {
3562 return true;
3563 }
3564 // If we are stepping out from a static initializer, by issuing a step
3565 // in or step over, that was implicitly invoked by calling a static method,
3566 // then we need to step into that method. Having a lower stack depth than
3567 // the one the single step control has indicates that the step originates
3568 // from the static initializer.
3569 if (ssc->GetStepDepth() != JDWP::SD_OUT &&
3570 ssc->GetStackDepth() > GetStackDepth(thread)) {
3571 return true;
3572 }
3573 }
3574 // There are cases where we have to force interpreter on deoptimized methods,
3575 // because in some cases the call will not be performed by invoking an entry
3576 // point that has been replaced by the deoptimization, but instead by directly
3577 // invoking the compiled code of the method, for example.
3578 return instrumentation->IsDeoptimized(m);
3579}
3580
Mathieu Chartiere401d142015-04-22 13:56:20 -07003581bool Dbg::IsForcedInstrumentationNeededForResolutionImpl(Thread* thread, ArtMethod* m) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -07003582 // The upcall can be null and in that case we don't need to do anything.
Daniel Mihalyieb076692014-08-22 17:33:31 +02003583 if (m == nullptr) {
3584 return false;
3585 }
3586 instrumentation::Instrumentation* const instrumentation =
3587 Runtime::Current()->GetInstrumentation();
3588 // If we are in interpreter only mode, then we don't have to force interpreter.
3589 if (instrumentation->InterpretOnly()) {
3590 return false;
3591 }
3592 // We can only interpret pure Java method.
3593 if (m->IsNative() || m->IsProxyMethod()) {
3594 return false;
3595 }
3596 const SingleStepControl* const ssc = thread->GetSingleStepControl();
3597 if (ssc != nullptr) {
3598 // If we are stepping out from a static initializer, by issuing a step
3599 // out, that was implicitly invoked by calling a static method, then we
3600 // need to step into the caller of that method. Having a lower stack
3601 // depth than the one the single step control has indicates that the
3602 // step originates from the static initializer.
3603 if (ssc->GetStepDepth() == JDWP::SD_OUT &&
3604 ssc->GetStackDepth() > GetStackDepth(thread)) {
3605 return true;
3606 }
3607 }
3608 // If we are returning from a static intializer, that was implicitly
3609 // invoked by calling a static method and the caller is deoptimized,
3610 // then we have to deoptimize the stack without forcing interpreter
3611 // on the static method that was called originally. This problem can
3612 // be solved easily by forcing instrumentation on the called method,
3613 // because the instrumentation exit hook will recognise the need of
3614 // stack deoptimization by calling IsForcedInterpreterNeededForUpcall.
3615 return instrumentation->IsDeoptimized(m);
3616}
3617
Mathieu Chartiere401d142015-04-22 13:56:20 -07003618bool Dbg::IsForcedInterpreterNeededForUpcallImpl(Thread* thread, ArtMethod* m) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -07003619 // The upcall can be null and in that case we don't need to do anything.
Daniel Mihalyieb076692014-08-22 17:33:31 +02003620 if (m == nullptr) {
3621 return false;
3622 }
3623 instrumentation::Instrumentation* const instrumentation =
3624 Runtime::Current()->GetInstrumentation();
3625 // If we are in interpreter only mode, then we don't have to force interpreter.
3626 if (instrumentation->InterpretOnly()) {
3627 return false;
3628 }
3629 // We can only interpret pure Java method.
3630 if (m->IsNative() || m->IsProxyMethod()) {
3631 return false;
3632 }
3633 const SingleStepControl* const ssc = thread->GetSingleStepControl();
3634 if (ssc != nullptr) {
3635 // The debugger is not interested in what is happening under the level
3636 // of the step, thus we only force interpreter when we are not below of
3637 // the step.
3638 if (ssc->GetStackDepth() >= GetStackDepth(thread)) {
3639 return true;
3640 }
3641 }
Mingyao Yang99170c62015-07-06 11:10:37 -07003642 if (thread->HasDebuggerShadowFrames()) {
3643 // We need to deoptimize the stack for the exception handling flow so that
3644 // we don't miss any deoptimization that should be done when there are
3645 // debugger shadow frames.
3646 return true;
3647 }
Daniel Mihalyieb076692014-08-22 17:33:31 +02003648 // We have to require stack deoptimization if the upcall is deoptimized.
3649 return instrumentation->IsDeoptimized(m);
3650}
3651
Andreas Gampe82484902018-11-16 00:47:49 +00003652class NeedsDeoptimizationVisitor : public StackVisitor {
3653 public:
3654 explicit NeedsDeoptimizationVisitor(Thread* self)
3655 REQUIRES_SHARED(Locks::mutator_lock_)
3656 : StackVisitor(self, nullptr, StackVisitor::StackWalkKind::kIncludeInlinedFrames),
3657 needs_deoptimization_(false) {}
3658
3659 bool VisitFrame() override REQUIRES_SHARED(Locks::mutator_lock_) {
3660 // The visitor is meant to be used when handling exception from compiled code only.
3661 CHECK(!IsShadowFrame()) << "We only expect to visit compiled frame: "
3662 << ArtMethod::PrettyMethod(GetMethod());
3663 ArtMethod* method = GetMethod();
3664 if (method == nullptr) {
3665 // We reach an upcall and don't need to deoptimize this part of the stack (ManagedFragment)
3666 // so we can stop the visit.
3667 DCHECK(!needs_deoptimization_);
3668 return false;
3669 }
3670 if (Runtime::Current()->GetInstrumentation()->InterpretOnly()) {
3671 // We found a compiled frame in the stack but instrumentation is set to interpret
3672 // everything: we need to deoptimize.
3673 needs_deoptimization_ = true;
3674 return false;
3675 }
3676 if (Runtime::Current()->GetInstrumentation()->IsDeoptimized(method)) {
3677 // We found a deoptimized method in the stack.
3678 needs_deoptimization_ = true;
3679 return false;
3680 }
3681 ShadowFrame* frame = GetThread()->FindDebuggerShadowFrame(GetFrameId());
3682 if (frame != nullptr) {
3683 // The debugger allocated a ShadowFrame to update a variable in the stack: we need to
3684 // deoptimize the stack to execute (and deallocate) this frame.
3685 needs_deoptimization_ = true;
3686 return false;
3687 }
3688 return true;
3689 }
3690
3691 bool NeedsDeoptimization() const {
3692 return needs_deoptimization_;
3693 }
3694
3695 private:
3696 // Do we need to deoptimize the stack?
3697 bool needs_deoptimization_;
3698
3699 DISALLOW_COPY_AND_ASSIGN(NeedsDeoptimizationVisitor);
3700};
3701
Sebastien Hertz520633b2015-09-08 17:03:36 +02003702// Do we need to deoptimize the stack to handle an exception?
3703bool Dbg::IsForcedInterpreterNeededForExceptionImpl(Thread* thread) {
3704 const SingleStepControl* const ssc = thread->GetSingleStepControl();
3705 if (ssc != nullptr) {
3706 // We deopt to step into the catch handler.
3707 return true;
3708 }
3709 // Deoptimization is required if at least one method in the stack needs it. However we
3710 // skip frames that will be unwound (thus not executed).
Andreas Gampe82484902018-11-16 00:47:49 +00003711 NeedsDeoptimizationVisitor visitor(thread);
3712 visitor.WalkStack(true); // includes upcall.
3713 return visitor.NeedsDeoptimization();
Sebastien Hertz520633b2015-09-08 17:03:36 +02003714}
3715
Jeff Hao449db332013-04-12 18:30:52 -07003716// Scoped utility class to suspend a thread so that we may do tasks such as walk its stack. Doesn't
3717// cause suspension if the thread is the current thread.
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07003718class ScopedDebuggerThreadSuspension {
Jeff Hao449db332013-04-12 18:30:52 -07003719 public:
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07003720 ScopedDebuggerThreadSuspension(Thread* self, JDWP::ObjectId thread_id)
Mathieu Chartier90443472015-07-16 20:32:27 -07003721 REQUIRES(!Locks::thread_list_lock_)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07003722 REQUIRES_SHARED(Locks::mutator_lock_) :
Ian Rogersf3d874c2014-07-17 18:52:42 -07003723 thread_(nullptr),
Jeff Hao449db332013-04-12 18:30:52 -07003724 error_(JDWP::ERR_NONE),
3725 self_suspend_(false),
Ian Rogers33e95662013-05-20 20:29:14 -07003726 other_suspend_(false) {
Jeff Hao449db332013-04-12 18:30:52 -07003727 ScopedObjectAccessUnchecked soa(self);
Sebastien Hertz69206392015-04-07 15:54:25 +02003728 thread_ = DecodeThread(soa, thread_id, &error_);
Jeff Hao449db332013-04-12 18:30:52 -07003729 if (error_ == JDWP::ERR_NONE) {
3730 if (thread_ == soa.Self()) {
3731 self_suspend_ = true;
3732 } else {
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07003733 Thread* suspended_thread;
3734 {
3735 ScopedThreadSuspension sts(self, kWaitingForDebuggerSuspension);
3736 jobject thread_peer = Dbg::GetObjectRegistry()->GetJObject(thread_id);
3737 bool timed_out;
3738 ThreadList* const thread_list = Runtime::Current()->GetThreadList();
Sebastien Hertzcdd798d2017-04-18 18:28:51 +02003739 suspended_thread = thread_list->SuspendThreadByPeer(thread_peer,
Andreas Gampe98ea9d92018-10-19 14:06:15 -07003740 /* request_suspension= */ true,
Alex Light46f93402017-06-29 11:59:50 -07003741 SuspendReason::kForDebugger,
Sebastien Hertzcdd798d2017-04-18 18:28:51 +02003742 &timed_out);
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07003743 }
Ian Rogersf3d874c2014-07-17 18:52:42 -07003744 if (suspended_thread == nullptr) {
Jeff Hao449db332013-04-12 18:30:52 -07003745 // Thread terminated from under us while suspending.
3746 error_ = JDWP::ERR_INVALID_THREAD;
3747 } else {
3748 CHECK_EQ(suspended_thread, thread_);
3749 other_suspend_ = true;
3750 }
3751 }
3752 }
Elliott Hughes2435a572012-02-17 16:07:41 -08003753 }
Elliott Hughes86964332012-02-15 19:37:42 -08003754
Jeff Hao449db332013-04-12 18:30:52 -07003755 Thread* GetThread() const {
3756 return thread_;
3757 }
3758
3759 JDWP::JdwpError GetError() const {
3760 return error_;
3761 }
3762
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07003763 ~ScopedDebuggerThreadSuspension() {
Jeff Hao449db332013-04-12 18:30:52 -07003764 if (other_suspend_) {
Alex Light88fd7202017-06-30 08:31:59 -07003765 bool resumed = Runtime::Current()->GetThreadList()->Resume(thread_,
3766 SuspendReason::kForDebugger);
3767 DCHECK(resumed);
Jeff Hao449db332013-04-12 18:30:52 -07003768 }
3769 }
3770
3771 private:
3772 Thread* thread_;
3773 JDWP::JdwpError error_;
3774 bool self_suspend_;
3775 bool other_suspend_;
3776};
3777
3778JDWP::JdwpError Dbg::ConfigureStep(JDWP::ObjectId thread_id, JDWP::JdwpStepSize step_size,
3779 JDWP::JdwpStepDepth step_depth) {
3780 Thread* self = Thread::Current();
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07003781 ScopedDebuggerThreadSuspension sts(self, thread_id);
Jeff Hao449db332013-04-12 18:30:52 -07003782 if (sts.GetError() != JDWP::ERR_NONE) {
3783 return sts.GetError();
3784 }
3785
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003786 // Work out what ArtMethod* we're in, the current line number, and how deep the stack currently
Elliott Hughes2435a572012-02-17 16:07:41 -08003787 // is for step-out.
Ian Rogers0399dde2012-06-06 17:09:28 -07003788 struct SingleStepStackVisitor : public StackVisitor {
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07003789 explicit SingleStepStackVisitor(Thread* thread) REQUIRES_SHARED(Locks::mutator_lock_)
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +01003790 : StackVisitor(thread, nullptr, StackVisitor::StackWalkKind::kIncludeInlinedFrames),
3791 stack_depth(0),
3792 method(nullptr),
3793 line_number(-1) {}
Ian Rogersca190662012-06-26 15:45:57 -07003794
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003795 // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses
3796 // annotalysis.
Andreas Gampefa6a1b02018-09-07 08:11:55 -07003797 bool VisitFrame() override NO_THREAD_SAFETY_ANALYSIS {
Mathieu Chartiere401d142015-04-22 13:56:20 -07003798 ArtMethod* m = GetMethod();
Ian Rogers0399dde2012-06-06 17:09:28 -07003799 if (!m->IsRuntimeMethod()) {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003800 ++stack_depth;
3801 if (method == nullptr) {
Alex Light73376312017-04-06 10:10:51 -07003802 const DexFile* dex_file = m->GetDexFile();
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003803 method = m;
Alex Light73376312017-04-06 10:10:51 -07003804 if (dex_file != nullptr) {
David Sehr9323e6e2016-09-13 08:58:35 -07003805 line_number = annotations::GetLineNumFromPC(dex_file, m, GetDexPc());
Elliott Hughes2435a572012-02-17 16:07:41 -08003806 }
Elliott Hughes86964332012-02-15 19:37:42 -08003807 }
3808 }
Elliott Hughes530fa002012-03-12 11:44:49 -07003809 return true;
Elliott Hughes86964332012-02-15 19:37:42 -08003810 }
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003811
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003812 int stack_depth;
Mathieu Chartiere401d142015-04-22 13:56:20 -07003813 ArtMethod* method;
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003814 int32_t line_number;
Elliott Hughes86964332012-02-15 19:37:42 -08003815 };
Jeff Hao449db332013-04-12 18:30:52 -07003816
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003817 Thread* const thread = sts.GetThread();
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003818 SingleStepStackVisitor visitor(thread);
Ian Rogers0399dde2012-06-06 17:09:28 -07003819 visitor.WalkStack();
Elliott Hughes86964332012-02-15 19:37:42 -08003820
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003821 // Allocate single step.
Sebastien Hertz1558b572015-02-25 15:05:59 +01003822 SingleStepControl* single_step_control =
3823 new (std::nothrow) SingleStepControl(step_size, step_depth,
3824 visitor.stack_depth, visitor.method);
3825 if (single_step_control == nullptr) {
3826 LOG(ERROR) << "Failed to allocate SingleStepControl";
3827 return JDWP::ERR_OUT_OF_MEMORY;
3828 }
3829
Mathieu Chartiere401d142015-04-22 13:56:20 -07003830 ArtMethod* m = single_step_control->GetMethod();
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003831 const int32_t line_number = visitor.line_number;
Sebastien Hertz52f5f932015-05-28 11:00:57 +02003832 // Note: if the thread is not running Java code (pure native thread), there is no "current"
3833 // method on the stack (and no line number either).
3834 if (m != nullptr && !m->IsNative()) {
David Sehr0225f8e2018-01-31 08:52:24 +00003835 CodeItemDebugInfoAccessor accessor(m->DexInstructionDebugInfo());
Mathieu Chartier3e2e1232018-09-11 12:35:30 -07003836 bool last_pc_valid = false;
3837 uint32_t last_pc = 0u;
3838 // Find the dex_pc values that correspond to the current line, for line-based single-stepping.
3839 accessor.DecodeDebugPositionInfo([&](const DexFile::PositionInfo& entry) {
3840 if (static_cast<int32_t>(entry.line_) == line_number) {
3841 if (!last_pc_valid) {
3842 // Everything from this address until the next line change is ours.
3843 last_pc = entry.address_;
3844 last_pc_valid = true;
3845 }
3846 // Otherwise, if we're already in a valid range for this line,
3847 // just keep going (shouldn't really happen)...
3848 } else if (last_pc_valid) { // and the line number is new
3849 // Add everything from the last entry up until here to the set
3850 for (uint32_t dex_pc = last_pc; dex_pc < entry.address_; ++dex_pc) {
3851 single_step_control->AddDexPc(dex_pc);
3852 }
3853 last_pc_valid = false;
3854 }
3855 return false; // There may be multiple entries for any given line.
3856 });
3857 // If the line number was the last in the position table...
3858 if (last_pc_valid) {
3859 for (uint32_t dex_pc = last_pc; dex_pc < accessor.InsnsSizeInCodeUnits(); ++dex_pc) {
3860 single_step_control->AddDexPc(dex_pc);
3861 }
3862 }
Elliott Hughes3e2e1a22012-02-21 11:33:41 -08003863 }
Elliott Hughes2435a572012-02-17 16:07:41 -08003864
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003865 // Activate single-step in the thread.
3866 thread->ActivateSingleStepControl(single_step_control);
Elliott Hughes86964332012-02-15 19:37:42 -08003867
Elliott Hughes2435a572012-02-17 16:07:41 -08003868 if (VLOG_IS_ON(jdwp)) {
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003869 VLOG(jdwp) << "Single-step thread: " << *thread;
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003870 VLOG(jdwp) << "Single-step step size: " << single_step_control->GetStepSize();
3871 VLOG(jdwp) << "Single-step step depth: " << single_step_control->GetStepDepth();
David Sehr709b0702016-10-13 09:12:37 -07003872 VLOG(jdwp) << "Single-step current method: "
3873 << ArtMethod::PrettyMethod(single_step_control->GetMethod());
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003874 VLOG(jdwp) << "Single-step current line: " << line_number;
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003875 VLOG(jdwp) << "Single-step current stack depth: " << single_step_control->GetStackDepth();
Elliott Hughes2435a572012-02-17 16:07:41 -08003876 VLOG(jdwp) << "Single-step dex_pc values:";
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003877 for (uint32_t dex_pc : single_step_control->GetDexPcs()) {
Sebastien Hertzbb43b432014-04-14 11:59:08 +02003878 VLOG(jdwp) << StringPrintf(" %#x", dex_pc);
Elliott Hughes2435a572012-02-17 16:07:41 -08003879 }
3880 }
3881
3882 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003883}
3884
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003885void Dbg::UnconfigureStep(JDWP::ObjectId thread_id) {
3886 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogersc0542af2014-09-03 16:16:56 -07003887 JDWP::JdwpError error;
3888 Thread* thread = DecodeThread(soa, thread_id, &error);
Sebastien Hertz87118ed2013-11-26 17:57:18 +01003889 if (error == JDWP::ERR_NONE) {
Sebastien Hertz597c4f02015-01-26 17:37:14 +01003890 thread->DeactivateSingleStepControl();
Sebastien Hertz61b7f1b2013-11-15 15:59:30 +01003891 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07003892}
3893
Elliott Hughes45651fd2012-02-21 15:48:20 -08003894static char JdwpTagToShortyChar(JDWP::JdwpTag tag) {
3895 switch (tag) {
3896 default:
3897 LOG(FATAL) << "unknown JDWP tag: " << PrintableChar(tag);
Ian Rogersfc787ec2014-10-09 21:56:44 -07003898 UNREACHABLE();
Elliott Hughes45651fd2012-02-21 15:48:20 -08003899
3900 // Primitives.
3901 case JDWP::JT_BYTE: return 'B';
3902 case JDWP::JT_CHAR: return 'C';
3903 case JDWP::JT_FLOAT: return 'F';
3904 case JDWP::JT_DOUBLE: return 'D';
3905 case JDWP::JT_INT: return 'I';
3906 case JDWP::JT_LONG: return 'J';
3907 case JDWP::JT_SHORT: return 'S';
3908 case JDWP::JT_VOID: return 'V';
3909 case JDWP::JT_BOOLEAN: return 'Z';
3910
3911 // Reference types.
3912 case JDWP::JT_ARRAY:
3913 case JDWP::JT_OBJECT:
3914 case JDWP::JT_STRING:
3915 case JDWP::JT_THREAD:
3916 case JDWP::JT_THREAD_GROUP:
3917 case JDWP::JT_CLASS_LOADER:
3918 case JDWP::JT_CLASS_OBJECT:
3919 return 'L';
3920 }
3921}
3922
Sebastien Hertzcbc50642015-06-01 17:33:12 +02003923JDWP::JdwpError Dbg::PrepareInvokeMethod(uint32_t request_id, JDWP::ObjectId thread_id,
3924 JDWP::ObjectId object_id, JDWP::RefTypeId class_id,
3925 JDWP::MethodId method_id, uint32_t arg_count,
3926 uint64_t arg_values[], JDWP::JdwpTag* arg_types,
3927 uint32_t options) {
3928 Thread* const self = Thread::Current();
3929 CHECK_EQ(self, GetDebugThread()) << "This must be called by the JDWP thread";
Sebastien Hertzd4032e42015-06-12 15:47:34 +02003930 const bool resume_all_threads = ((options & JDWP::INVOKE_SINGLE_THREADED) == 0);
Elliott Hughesd07986f2011-12-06 18:27:45 -08003931
Sebastien Hertzcbc50642015-06-01 17:33:12 +02003932 ThreadList* thread_list = Runtime::Current()->GetThreadList();
Ian Rogersc0542af2014-09-03 16:16:56 -07003933 Thread* targetThread = nullptr;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003934 {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003935 ScopedObjectAccessUnchecked soa(self);
Ian Rogersc0542af2014-09-03 16:16:56 -07003936 JDWP::JdwpError error;
3937 targetThread = DecodeThread(soa, thread_id, &error);
Elliott Hughes221229c2013-01-08 18:17:50 -08003938 if (error != JDWP::ERR_NONE) {
3939 LOG(ERROR) << "InvokeMethod request for invalid thread id " << thread_id;
3940 return error;
Elliott Hughesd07986f2011-12-06 18:27:45 -08003941 }
Sebastien Hertz1558b572015-02-25 15:05:59 +01003942 if (targetThread->GetInvokeReq() != nullptr) {
3943 // Thread is already invoking a method on behalf of the debugger.
3944 LOG(ERROR) << "InvokeMethod request for thread already invoking a method: " << *targetThread;
3945 return JDWP::ERR_ALREADY_INVOKING;
3946 }
3947 if (!targetThread->IsReadyForDebugInvoke()) {
3948 // Thread is not suspended by an event so it cannot invoke a method.
Elliott Hughesd07986f2011-12-06 18:27:45 -08003949 LOG(ERROR) << "InvokeMethod request for thread not stopped by event: " << *targetThread;
3950 return JDWP::ERR_INVALID_THREAD;
3951 }
3952
3953 /*
Sebastien Hertzd4032e42015-06-12 15:47:34 +02003954 * According to the JDWP specs, we are expected to resume all threads (or only the
3955 * target thread) once. So if a thread has been suspended more than once (either by
3956 * the debugger for an event or by the runtime for GC), it will remain suspended before
3957 * the invoke is executed. This means the debugger is responsible to properly resume all
3958 * the threads it has suspended so the target thread can execute the method.
Elliott Hughesd07986f2011-12-06 18:27:45 -08003959 *
Sebastien Hertzd4032e42015-06-12 15:47:34 +02003960 * However, for compatibility reason with older versions of debuggers (like Eclipse), we
3961 * fully resume all threads (by canceling *all* debugger suspensions) when the debugger
3962 * wants us to resume all threads. This is to avoid ending up in deadlock situation.
3963 *
3964 * On the other hand, if we are asked to only resume the target thread, then we follow the
3965 * JDWP specs by resuming that thread only once. This means the thread will remain suspended
3966 * if it has been suspended more than once before the invoke (and again, this is the
3967 * responsibility of the debugger to properly resume that thread before invoking a method).
Elliott Hughesd07986f2011-12-06 18:27:45 -08003968 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003969 int suspend_count;
3970 {
Ian Rogers50b35e22012-10-04 10:09:15 -07003971 MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003972 suspend_count = targetThread->GetSuspendCount();
3973 }
Sebastien Hertzd4032e42015-06-12 15:47:34 +02003974 if (suspend_count > 1 && resume_all_threads) {
3975 // The target thread will remain suspended even after we resume it. Let's emit a warning
3976 // to indicate the invoke won't be executed until the thread is resumed.
3977 LOG(WARNING) << *targetThread << " suspended more than once (suspend count == "
3978 << suspend_count << "). This thread will invoke the method only once "
3979 << "it is fully resumed.";
Elliott Hughesd07986f2011-12-06 18:27:45 -08003980 }
3981
Ian Rogersc0542af2014-09-03 16:16:56 -07003982 mirror::Object* receiver = gRegistry->Get<mirror::Object*>(object_id, &error);
3983 if (error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003984 return JDWP::ERR_INVALID_OBJECT;
3985 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003986
Sebastien Hertz1558b572015-02-25 15:05:59 +01003987 gRegistry->Get<mirror::Object*>(thread_id, &error);
Ian Rogersc0542af2014-09-03 16:16:56 -07003988 if (error != JDWP::ERR_NONE) {
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003989 return JDWP::ERR_INVALID_OBJECT;
3990 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003991
Ian Rogersc0542af2014-09-03 16:16:56 -07003992 mirror::Class* c = DecodeClass(class_id, &error);
3993 if (c == nullptr) {
3994 return error;
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08003995 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08003996
Mathieu Chartiere401d142015-04-22 13:56:20 -07003997 ArtMethod* m = FromMethodId(method_id);
Ian Rogersc0542af2014-09-03 16:16:56 -07003998 if (m->IsStatic() != (receiver == nullptr)) {
Elliott Hughes45651fd2012-02-21 15:48:20 -08003999 return JDWP::ERR_INVALID_METHODID;
4000 }
4001 if (m->IsStatic()) {
4002 if (m->GetDeclaringClass() != c) {
4003 return JDWP::ERR_INVALID_METHODID;
4004 }
4005 } else {
4006 if (!m->GetDeclaringClass()->IsAssignableFrom(c)) {
4007 return JDWP::ERR_INVALID_METHODID;
4008 }
4009 }
4010
4011 // Check the argument list matches the method.
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004012 uint32_t shorty_len = 0;
4013 const char* shorty = m->GetShorty(&shorty_len);
4014 if (shorty_len - 1 != arg_count) {
Elliott Hughes45651fd2012-02-21 15:48:20 -08004015 return JDWP::ERR_ILLEGAL_ARGUMENT;
4016 }
Elliott Hughes09201632013-04-15 15:50:07 -07004017
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004018 {
Mathieu Chartiere401d142015-04-22 13:56:20 -07004019 StackHandleScope<2> hs(soa.Self());
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004020 HandleWrapper<mirror::Object> h_obj(hs.NewHandleWrapper(&receiver));
4021 HandleWrapper<mirror::Class> h_klass(hs.NewHandleWrapper(&c));
4022 const DexFile::TypeList* types = m->GetParameterTypeList();
4023 for (size_t i = 0; i < arg_count; ++i) {
4024 if (shorty[i + 1] != JdwpTagToShortyChar(arg_types[i])) {
Elliott Hughes09201632013-04-15 15:50:07 -07004025 return JDWP::ERR_ILLEGAL_ARGUMENT;
4026 }
4027
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004028 if (shorty[i + 1] == 'L') {
4029 // Did we really get an argument of an appropriate reference type?
Vladimir Markob45528c2017-07-27 14:14:28 +01004030 ObjPtr<mirror::Class> parameter_type =
4031 m->ResolveClassFromTypeIndex(types->GetTypeItem(i).type_idx_);
Ian Rogersc0542af2014-09-03 16:16:56 -07004032 mirror::Object* argument = gRegistry->Get<mirror::Object*>(arg_values[i], &error);
4033 if (error != JDWP::ERR_NONE) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004034 return JDWP::ERR_INVALID_OBJECT;
4035 }
Ian Rogersc0542af2014-09-03 16:16:56 -07004036 if (argument != nullptr && !argument->InstanceOf(parameter_type)) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004037 return JDWP::ERR_ILLEGAL_ARGUMENT;
4038 }
4039
4040 // Turn the on-the-wire ObjectId into a jobject.
4041 jvalue& v = reinterpret_cast<jvalue&>(arg_values[i]);
4042 v.l = gRegistry->GetJObject(arg_values[i]);
4043 }
Elliott Hughes09201632013-04-15 15:50:07 -07004044 }
Elliott Hughes45651fd2012-02-21 15:48:20 -08004045 }
4046
Sebastien Hertz1558b572015-02-25 15:05:59 +01004047 // Allocates a DebugInvokeReq.
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004048 DebugInvokeReq* req = new (std::nothrow) DebugInvokeReq(request_id, thread_id, receiver, c, m,
4049 options, arg_values, arg_count);
4050 if (req == nullptr) {
Sebastien Hertz1558b572015-02-25 15:05:59 +01004051 LOG(ERROR) << "Failed to allocate DebugInvokeReq";
4052 return JDWP::ERR_OUT_OF_MEMORY;
4053 }
4054
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004055 // Attaches the DebugInvokeReq to the target thread so it executes the method when
4056 // it is resumed. Once the invocation completes, the target thread will delete it before
4057 // suspending itself (see ThreadList::SuspendSelfForDebugger).
4058 targetThread->SetDebugInvokeReq(req);
Elliott Hughesd07986f2011-12-06 18:27:45 -08004059 }
4060
4061 // 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 +02004062 // away we're sitting high and dry -- but we must release this before the UndoDebuggerSuspensions
4063 // call.
Sebastien Hertzd4032e42015-06-12 15:47:34 +02004064 if (resume_all_threads) {
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004065 VLOG(jdwp) << " Resuming all threads";
4066 thread_list->UndoDebuggerSuspensions();
4067 } else {
4068 VLOG(jdwp) << " Resuming event thread only";
Alex Light88fd7202017-06-30 08:31:59 -07004069 bool resumed = thread_list->Resume(targetThread, SuspendReason::kForDebugger);
4070 DCHECK(resumed);
Elliott Hughesd07986f2011-12-06 18:27:45 -08004071 }
4072
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004073 return JDWP::ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004074}
4075
4076void Dbg::ExecuteMethod(DebugInvokeReq* pReq) {
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004077 Thread* const self = Thread::Current();
4078 CHECK_NE(self, GetDebugThread()) << "This must be called by the event thread";
4079
4080 ScopedObjectAccess soa(self);
Elliott Hughesd07986f2011-12-06 18:27:45 -08004081
Elliott Hughes81ff3182012-03-23 20:35:56 -07004082 // We can be called while an exception is pending. We need
Elliott Hughesd07986f2011-12-06 18:27:45 -08004083 // to preserve that across the method invocation.
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004084 StackHandleScope<1> hs(soa.Self());
4085 Handle<mirror::Throwable> old_exception = hs.NewHandle(soa.Self()->GetException());
Sebastien Hertz1558b572015-02-25 15:05:59 +01004086 soa.Self()->ClearException();
Elliott Hughesd07986f2011-12-06 18:27:45 -08004087
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004088 // Execute the method then sends reply to the debugger.
4089 ExecuteMethodWithoutPendingException(soa, pReq);
4090
4091 // If an exception was pending before the invoke, restore it now.
Andreas Gampefa4333d2017-02-14 11:10:34 -08004092 if (old_exception != nullptr) {
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004093 soa.Self()->SetException(old_exception.Get());
4094 }
4095}
4096
4097// Helper function: write a variable-width value into the output input buffer.
4098static void WriteValue(JDWP::ExpandBuf* pReply, int width, uint64_t value) {
4099 switch (width) {
4100 case 1:
4101 expandBufAdd1(pReply, value);
4102 break;
4103 case 2:
4104 expandBufAdd2BE(pReply, value);
4105 break;
4106 case 4:
4107 expandBufAdd4BE(pReply, value);
4108 break;
4109 case 8:
4110 expandBufAdd8BE(pReply, value);
4111 break;
4112 default:
4113 LOG(FATAL) << width;
4114 UNREACHABLE();
4115 }
4116}
4117
4118void Dbg::ExecuteMethodWithoutPendingException(ScopedObjectAccess& soa, DebugInvokeReq* pReq) {
4119 soa.Self()->AssertNoPendingException();
4120
Elliott Hughesd07986f2011-12-06 18:27:45 -08004121 // Translate the method through the vtable, unless the debugger wants to suppress it.
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004122 ArtMethod* m = pReq->method;
Andreas Gampe542451c2016-07-26 09:02:02 -07004123 PointerSize image_pointer_size = Runtime::Current()->GetClassLinker()->GetImagePointerSize();
Sebastien Hertz1558b572015-02-25 15:05:59 +01004124 if ((pReq->options & JDWP::INVOKE_NONVIRTUAL) == 0 && pReq->receiver.Read() != nullptr) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07004125 ArtMethod* actual_method =
4126 pReq->klass.Read()->FindVirtualMethodForVirtualOrInterface(m, image_pointer_size);
4127 if (actual_method != m) {
David Sehr709b0702016-10-13 09:12:37 -07004128 VLOG(jdwp) << "ExecuteMethod translated " << ArtMethod::PrettyMethod(m)
4129 << " to " << ArtMethod::PrettyMethod(actual_method);
Mathieu Chartiere401d142015-04-22 13:56:20 -07004130 m = actual_method;
Elliott Hughes45651fd2012-02-21 15:48:20 -08004131 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08004132 }
David Sehr709b0702016-10-13 09:12:37 -07004133 VLOG(jdwp) << "ExecuteMethod " << ArtMethod::PrettyMethod(m)
Sebastien Hertz1558b572015-02-25 15:05:59 +01004134 << " receiver=" << pReq->receiver.Read()
Sebastien Hertzd38667a2013-11-25 15:43:54 +01004135 << " arg_count=" << pReq->arg_count;
Mathieu Chartiere401d142015-04-22 13:56:20 -07004136 CHECK(m != nullptr);
Elliott Hughesd07986f2011-12-06 18:27:45 -08004137
Roland Levillain33d69032015-06-18 18:20:59 +01004138 static_assert(sizeof(jvalue) == sizeof(uint64_t), "jvalue and uint64_t have different sizes.");
Elliott Hughesd07986f2011-12-06 18:27:45 -08004139
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004140 // Invoke the method.
Jeff Hao39b6c242015-05-19 20:30:23 -07004141 ScopedLocalRef<jobject> ref(soa.Env(), soa.AddLocalReference<jobject>(pReq->receiver.Read()));
Andreas Gampe13b27842016-11-07 16:48:23 -08004142 JValue result = InvokeWithJValues(soa, ref.get(), jni::EncodeArtMethod(m),
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004143 reinterpret_cast<jvalue*>(pReq->arg_values.get()));
Elliott Hughesd07986f2011-12-06 18:27:45 -08004144
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004145 // Prepare JDWP ids for the reply.
4146 JDWP::JdwpTag result_tag = BasicTagFromDescriptor(m->GetShorty());
4147 const bool is_object_result = (result_tag == JDWP::JT_OBJECT);
Jeff Hao064d24e2016-08-25 03:52:40 +00004148 StackHandleScope<3> hs(soa.Self());
Sebastien Hertz1558b572015-02-25 15:05:59 +01004149 Handle<mirror::Object> object_result = hs.NewHandle(is_object_result ? result.GetL() : nullptr);
4150 Handle<mirror::Throwable> exception = hs.NewHandle(soa.Self()->GetException());
4151 soa.Self()->ClearException();
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004152
4153 if (!IsDebuggerActive()) {
4154 // The debugger detached: we must not re-suspend threads. We also don't need to fill the reply
4155 // because it won't be sent either.
4156 return;
4157 }
4158
4159 JDWP::ObjectId exceptionObjectId = gRegistry->Add(exception);
4160 uint64_t result_value = 0;
4161 if (exceptionObjectId != 0) {
Sebastien Hertz1558b572015-02-25 15:05:59 +01004162 VLOG(jdwp) << " JDWP invocation returning with exception=" << exception.Get()
4163 << " " << exception->Dump();
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004164 result_value = 0;
Sebastien Hertz1558b572015-02-25 15:05:59 +01004165 } else if (is_object_result) {
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004166 /* if no exception was thrown, examine object result more closely */
Sebastien Hertz1558b572015-02-25 15:05:59 +01004167 JDWP::JdwpTag new_tag = TagFromObject(soa, object_result.Get());
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004168 if (new_tag != result_tag) {
4169 VLOG(jdwp) << " JDWP promoted result from " << result_tag << " to " << new_tag;
4170 result_tag = new_tag;
Elliott Hughesd07986f2011-12-06 18:27:45 -08004171 }
4172
Sebastien Hertz1558b572015-02-25 15:05:59 +01004173 // Register the object in the registry and reference its ObjectId. This ensures
4174 // GC safety and prevents from accessing stale reference if the object is moved.
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004175 result_value = gRegistry->Add(object_result.Get());
Sebastien Hertz1558b572015-02-25 15:05:59 +01004176 } else {
4177 // Primitive result.
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004178 DCHECK(IsPrimitiveTag(result_tag));
4179 result_value = result.GetJ();
4180 }
4181 const bool is_constructor = m->IsConstructor() && !m->IsStatic();
4182 if (is_constructor) {
4183 // If we invoked a constructor (which actually returns void), return the receiver,
4184 // unless we threw, in which case we return null.
Sebastien Hertza3e13772015-11-05 12:09:44 +01004185 DCHECK_EQ(JDWP::JT_VOID, result_tag);
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004186 if (exceptionObjectId == 0) {
Jeff Hao064d24e2016-08-25 03:52:40 +00004187 if (m->GetDeclaringClass()->IsStringClass()) {
4188 // For string constructors, the new string is remapped to the receiver (stored in ref).
4189 Handle<mirror::Object> decoded_ref = hs.NewHandle(soa.Self()->DecodeJObject(ref.get()));
4190 result_value = gRegistry->Add(decoded_ref);
4191 result_tag = TagFromObject(soa, decoded_ref.Get());
4192 } else {
4193 // TODO we could keep the receiver ObjectId in the DebugInvokeReq to avoid looking into the
4194 // object registry.
4195 result_value = GetObjectRegistry()->Add(pReq->receiver.Read());
4196 result_tag = TagFromObject(soa, pReq->receiver.Read());
4197 }
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004198 } else {
4199 result_value = 0;
Sebastien Hertza3e13772015-11-05 12:09:44 +01004200 result_tag = JDWP::JT_OBJECT;
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004201 }
Elliott Hughesd07986f2011-12-06 18:27:45 -08004202 }
4203
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004204 // Suspend other threads if the invoke is not single-threaded.
4205 if ((pReq->options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07004206 ScopedThreadSuspension sts(soa.Self(), kWaitingForDebuggerSuspension);
Hiroshi Yamauchi8f95cf32016-04-19 11:14:06 -07004207 // Avoid a deadlock between GC and debugger where GC gets suspended during GC. b/25800335.
4208 gc::ScopedGCCriticalSection gcs(soa.Self(), gc::kGcCauseDebugger, gc::kCollectorTypeDebugger);
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004209 VLOG(jdwp) << " Suspending all threads";
4210 Runtime::Current()->GetThreadList()->SuspendAllForDebugger();
Sebastien Hertzcbc50642015-06-01 17:33:12 +02004211 }
4212
4213 VLOG(jdwp) << " --> returned " << result_tag
4214 << StringPrintf(" %#" PRIx64 " (except=%#" PRIx64 ")", result_value,
4215 exceptionObjectId);
4216
4217 // Show detailed debug output.
4218 if (result_tag == JDWP::JT_STRING && exceptionObjectId == 0) {
4219 if (result_value != 0) {
4220 if (VLOG_IS_ON(jdwp)) {
4221 std::string result_string;
4222 JDWP::JdwpError error = Dbg::StringToUtf8(result_value, &result_string);
4223 CHECK_EQ(error, JDWP::ERR_NONE);
4224 VLOG(jdwp) << " string '" << result_string << "'";
4225 }
4226 } else {
4227 VLOG(jdwp) << " string (null)";
4228 }
4229 }
4230
4231 // Attach the reply to DebugInvokeReq so it can be sent to the debugger when the event thread
4232 // is ready to suspend.
4233 BuildInvokeReply(pReq->reply, pReq->request_id, result_tag, result_value, exceptionObjectId);
4234}
4235
4236void Dbg::BuildInvokeReply(JDWP::ExpandBuf* pReply, uint32_t request_id, JDWP::JdwpTag result_tag,
4237 uint64_t result_value, JDWP::ObjectId exception) {
4238 // Make room for the JDWP header since we do not know the size of the reply yet.
4239 JDWP::expandBufAddSpace(pReply, kJDWPHeaderLen);
4240
4241 size_t width = GetTagWidth(result_tag);
4242 JDWP::expandBufAdd1(pReply, result_tag);
4243 if (width != 0) {
4244 WriteValue(pReply, width, result_value);
4245 }
4246 JDWP::expandBufAdd1(pReply, JDWP::JT_OBJECT);
4247 JDWP::expandBufAddObjectId(pReply, exception);
4248
4249 // Now we know the size, we can complete the JDWP header.
4250 uint8_t* buf = expandBufGetBuffer(pReply);
4251 JDWP::Set4BE(buf + kJDWPHeaderSizeOffset, expandBufGetLength(pReply));
4252 JDWP::Set4BE(buf + kJDWPHeaderIdOffset, request_id);
4253 JDWP::Set1(buf + kJDWPHeaderFlagsOffset, kJDWPFlagReply); // flags
4254 JDWP::Set2BE(buf + kJDWPHeaderErrorCodeOffset, JDWP::ERR_NONE);
4255}
4256
4257void Dbg::FinishInvokeMethod(DebugInvokeReq* pReq) {
4258 CHECK_NE(Thread::Current(), GetDebugThread()) << "This must be called by the event thread";
4259
4260 JDWP::ExpandBuf* const pReply = pReq->reply;
4261 CHECK(pReply != nullptr) << "No reply attached to DebugInvokeReq";
4262
4263 // We need to prevent other threads (including JDWP thread) from interacting with the debugger
4264 // while we send the reply but are not yet suspended. The JDWP token will be released just before
4265 // we suspend ourself again (see ThreadList::SuspendSelfForDebugger).
4266 gJdwpState->AcquireJdwpTokenForEvent(pReq->thread_id);
4267
4268 // Send the reply unless the debugger detached before the completion of the method.
4269 if (IsDebuggerActive()) {
4270 const size_t replyDataLength = expandBufGetLength(pReply) - kJDWPHeaderLen;
4271 VLOG(jdwp) << StringPrintf("REPLY INVOKE id=0x%06x (length=%zu)",
4272 pReq->request_id, replyDataLength);
4273
4274 gJdwpState->SendRequest(pReply);
4275 } else {
4276 VLOG(jdwp) << "Not sending invoke reply because debugger detached";
Elliott Hughesd07986f2011-12-06 18:27:45 -08004277 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004278}
4279
Alex Light8c2b9292017-11-09 13:21:01 -08004280bool Dbg::DdmHandleChunk(JNIEnv* env,
4281 uint32_t type,
4282 const ArrayRef<const jbyte>& data,
4283 /*out*/uint32_t* out_type,
4284 /*out*/std::vector<uint8_t>* out_data) {
4285 ScopedLocalRef<jbyteArray> dataArray(env, env->NewByteArray(data.size()));
Ian Rogersc0542af2014-09-03 16:16:56 -07004286 if (dataArray.get() == nullptr) {
Alex Light8c2b9292017-11-09 13:21:01 -08004287 LOG(WARNING) << "byte[] allocation failed: " << data.size();
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004288 env->ExceptionClear();
4289 return false;
4290 }
Alex Light8c2b9292017-11-09 13:21:01 -08004291 env->SetByteArrayRegion(dataArray.get(),
4292 0,
4293 data.size(),
4294 reinterpret_cast<const jbyte*>(data.data()));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004295 // Call "private static Chunk dispatch(int type, byte[] data, int offset, int length)".
Alex Light8c2b9292017-11-09 13:21:01 -08004296 ScopedLocalRef<jobject> chunk(
4297 env,
4298 env->CallStaticObjectMethod(
4299 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
4300 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_dispatch,
4301 type, dataArray.get(), 0, data.size()));
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004302 if (env->ExceptionCheck()) {
Alex Light1eeefa62018-03-19 13:47:56 -07004303 Thread* self = Thread::Current();
4304 ScopedObjectAccess soa(self);
4305 LOG(INFO) << StringPrintf("Exception thrown by dispatcher for 0x%08x", type) << std::endl
4306 << self->GetException()->Dump();
4307 self->ClearException();
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004308 return false;
4309 }
4310
Ian Rogersc0542af2014-09-03 16:16:56 -07004311 if (chunk.get() == nullptr) {
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004312 return false;
4313 }
4314
4315 /*
4316 * Pull the pieces out of the chunk. We copy the results into a
4317 * newly-allocated buffer that the caller can free. We don't want to
4318 * continue using the Chunk object because nothing has a reference to it.
4319 *
4320 * We could avoid this by returning type/data/offset/length and having
4321 * the caller be aware of the object lifetime issues, but that
Elliott Hughes81ff3182012-03-23 20:35:56 -07004322 * integrates the JDWP code more tightly into the rest of the runtime, and doesn't work
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004323 * if we have responses for multiple chunks.
4324 *
4325 * So we're pretty much stuck with copying data around multiple times.
4326 */
Alex Light8c2b9292017-11-09 13:21:01 -08004327 ScopedLocalRef<jbyteArray> replyData(
4328 env,
4329 reinterpret_cast<jbyteArray>(
4330 env->GetObjectField(
4331 chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_data)));
4332 jint offset = env->GetIntField(chunk.get(),
4333 WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_offset);
4334 jint length = env->GetIntField(chunk.get(),
4335 WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_length);
4336 *out_type = env->GetIntField(chunk.get(),
4337 WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_type);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004338
Alex Light8c2b9292017-11-09 13:21:01 -08004339 VLOG(jdwp) << StringPrintf("DDM reply: type=0x%08x data=%p offset=%d length=%d",
4340 type,
4341 replyData.get(),
4342 offset,
4343 length);
Alex Light8c2b9292017-11-09 13:21:01 -08004344 out_data->resize(length);
4345 env->GetByteArrayRegion(replyData.get(),
4346 offset,
4347 length,
4348 reinterpret_cast<jbyte*>(out_data->data()));
Alex Light6f2a6342017-12-12 09:55:05 -08004349
Alex Lighte5463a82017-12-12 13:33:28 -08004350 if (env->ExceptionCheck()) {
Alex Light1eeefa62018-03-19 13:47:56 -07004351 Thread* self = Thread::Current();
4352 ScopedObjectAccess soa(self);
Alex Lighte5463a82017-12-12 13:33:28 -08004353 LOG(INFO) << StringPrintf("Exception thrown when reading response data from dispatcher 0x%08x",
Alex Light1eeefa62018-03-19 13:47:56 -07004354 type) << std::endl << self->GetException()->Dump();
4355 self->ClearException();
Alex Lighte5463a82017-12-12 13:33:28 -08004356 return false;
4357 }
4358
Alex Light8c2b9292017-11-09 13:21:01 -08004359 return true;
4360}
4361
4362/*
4363 * "request" contains a full JDWP packet, possibly with multiple chunks. We
4364 * need to process each, accumulate the replies, and ship the whole thing
4365 * back.
4366 *
4367 * Returns "true" if we have a reply. The reply buffer is newly allocated,
4368 * and includes the chunk type/length, followed by the data.
4369 *
4370 * OLD-TODO: we currently assume that the request and reply include a single
4371 * chunk. If this becomes inconvenient we will need to adapt.
4372 */
4373bool Dbg::DdmHandlePacket(JDWP::Request* request, uint8_t** pReplyBuf, int* pReplyLen) {
4374 Thread* self = Thread::Current();
4375 JNIEnv* env = self->GetJniEnv();
4376
4377 uint32_t type = request->ReadUnsigned32("type");
4378 uint32_t length = request->ReadUnsigned32("length");
4379
4380 // Create a byte[] corresponding to 'request'.
4381 size_t request_length = request->size();
4382 // Run through and find all chunks. [Currently just find the first.]
4383 if (length != request_length) {
4384 LOG(WARNING) << StringPrintf("bad chunk found (len=%u pktLen=%zd)", length, request_length);
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004385 return false;
4386 }
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004387
Alex Light8c2b9292017-11-09 13:21:01 -08004388 ArrayRef<const jbyte> data(reinterpret_cast<const jbyte*>(request->data()), request_length);
4389 std::vector<uint8_t> out_data;
4390 uint32_t out_type = 0;
4391 request->Skip(request_length);
Alex Light6f2a6342017-12-12 09:55:05 -08004392 if (!DdmHandleChunk(env, type, data, &out_type, &out_data) || out_data.empty()) {
Alex Light8c2b9292017-11-09 13:21:01 -08004393 return false;
4394 }
4395 const uint32_t kDdmHeaderSize = 8;
4396 *pReplyLen = out_data.size() + kDdmHeaderSize;
4397 *pReplyBuf = new uint8_t[out_data.size() + kDdmHeaderSize];
4398 memcpy((*pReplyBuf) + kDdmHeaderSize, out_data.data(), out_data.size());
4399 JDWP::Set4BE(*pReplyBuf, out_type);
4400 JDWP::Set4BE((*pReplyBuf) + 4, static_cast<uint32_t>(out_data.size()));
4401 VLOG(jdwp)
4402 << StringPrintf("dvmHandleDdm returning type=%.4s", reinterpret_cast<char*>(*pReplyBuf))
4403 << "0x" << std::hex << reinterpret_cast<uintptr_t>(*pReplyBuf) << std::dec
4404 << " len= " << out_data.size();
Elliott Hughesf6a1e1e2011-10-25 16:28:04 -07004405 return true;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004406}
4407
Elliott Hughesa2155262011-11-16 16:26:58 -08004408void Dbg::DdmBroadcast(bool connect) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08004409 VLOG(jdwp) << "Broadcasting DDM " << (connect ? "connect" : "disconnect") << "...";
Elliott Hughes47fce012011-10-25 18:37:19 -07004410
4411 Thread* self = Thread::Current();
Ian Rogers50b35e22012-10-04 10:09:15 -07004412 if (self->GetState() != kRunnable) {
4413 LOG(ERROR) << "DDM broadcast in thread state " << self->GetState();
4414 /* try anyway? */
Elliott Hughes47fce012011-10-25 18:37:19 -07004415 }
4416
4417 JNIEnv* env = self->GetJniEnv();
Elliott Hughes47fce012011-10-25 18:37:19 -07004418 jint event = connect ? 1 /*DdmServer.CONNECTED*/ : 2 /*DdmServer.DISCONNECTED*/;
Elliott Hugheseac76672012-05-24 21:56:51 -07004419 env->CallStaticVoidMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer,
4420 WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_broadcast,
4421 event);
Elliott Hughes47fce012011-10-25 18:37:19 -07004422 if (env->ExceptionCheck()) {
4423 LOG(ERROR) << "DdmServer.broadcast " << event << " failed";
4424 env->ExceptionDescribe();
4425 env->ExceptionClear();
4426 }
4427}
4428
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004429void Dbg::DdmConnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08004430 Dbg::DdmBroadcast(true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004431}
4432
4433void Dbg::DdmDisconnected() {
Elliott Hughesa2155262011-11-16 16:26:58 -08004434 Dbg::DdmBroadcast(false);
Elliott Hughes47fce012011-10-25 18:37:19 -07004435 gDdmThreadNotification = false;
4436}
4437
4438/*
Elliott Hughes82188472011-11-07 18:11:48 -08004439 * Send a notification when a thread starts, stops, or changes its name.
Elliott Hughes47fce012011-10-25 18:37:19 -07004440 *
4441 * Because we broadcast the full set of threads when the notifications are
4442 * first enabled, it's possible for "thread" to be actively executing.
4443 */
Elliott Hughes82188472011-11-07 18:11:48 -08004444void Dbg::DdmSendThreadNotification(Thread* t, uint32_t type) {
Elliott Hughes47fce012011-10-25 18:37:19 -07004445 if (!gDdmThreadNotification) {
4446 return;
4447 }
4448
Alex Light772099a2017-11-21 14:05:04 -08004449 RuntimeCallbacks* cb = Runtime::Current()->GetRuntimeCallbacks();
Elliott Hughes82188472011-11-07 18:11:48 -08004450 if (type == CHUNK_TYPE("THDE")) {
Elliott Hughes47fce012011-10-25 18:37:19 -07004451 uint8_t buf[4];
Ian Rogersd9c4fc92013-10-01 19:45:43 -07004452 JDWP::Set4BE(&buf[0], t->GetThreadId());
Alex Light772099a2017-11-21 14:05:04 -08004453 cb->DdmPublishChunk(CHUNK_TYPE("THDE"), ArrayRef<const uint8_t>(buf));
Elliott Hughes82188472011-11-07 18:11:48 -08004454 } else {
4455 CHECK(type == CHUNK_TYPE("THCR") || type == CHUNK_TYPE("THNM")) << type;
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004456 ScopedObjectAccessUnchecked soa(Thread::Current());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07004457 StackHandleScope<1> hs(soa.Self());
Andreas Gampe08883de2016-11-08 13:20:52 -08004458 Handle<mirror::String> name(hs.NewHandle(t->GetThreadName()));
Andreas Gampefa4333d2017-02-14 11:10:34 -08004459 size_t char_count = (name != nullptr) ? name->GetLength() : 0;
4460 const jchar* chars = (name != nullptr) ? name->GetValue() : nullptr;
4461 bool is_compressed = (name != nullptr) ? name->IsCompressed() : false;
Elliott Hughes82188472011-11-07 18:11:48 -08004462
Elliott Hughes21f32d72011-11-09 17:44:13 -08004463 std::vector<uint8_t> bytes;
Ian Rogersd9c4fc92013-10-01 19:45:43 -07004464 JDWP::Append4BE(bytes, t->GetThreadId());
jessicahandojo3aaa37b2016-07-29 14:46:37 -07004465 if (is_compressed) {
4466 const uint8_t* chars_compressed = name->GetValueCompressed();
4467 JDWP::AppendUtf16CompressedBE(bytes, chars_compressed, char_count);
4468 } else {
4469 JDWP::AppendUtf16BE(bytes, chars, char_count);
4470 }
Elliott Hughes21f32d72011-11-09 17:44:13 -08004471 CHECK_EQ(bytes.size(), char_count*2 + sizeof(uint32_t)*2);
Alex Light772099a2017-11-21 14:05:04 -08004472 cb->DdmPublishChunk(type, ArrayRef<const uint8_t>(bytes));
Elliott Hughes47fce012011-10-25 18:37:19 -07004473 }
4474}
4475
Elliott Hughes47fce012011-10-25 18:37:19 -07004476void Dbg::DdmSetThreadNotification(bool enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004477 // Enable/disable thread notifications.
Elliott Hughes47fce012011-10-25 18:37:19 -07004478 gDdmThreadNotification = enable;
4479 if (enable) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004480 // Suspend the VM then post thread start notifications for all threads. Threads attaching will
4481 // see a suspension in progress and block until that ends. They then post their own start
4482 // notification.
4483 SuspendVM();
4484 std::list<Thread*> threads;
Ian Rogers50b35e22012-10-04 10:09:15 -07004485 Thread* self = Thread::Current();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004486 {
Ian Rogers50b35e22012-10-04 10:09:15 -07004487 MutexLock mu(self, *Locks::thread_list_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004488 threads = Runtime::Current()->GetThreadList()->GetList();
4489 }
4490 {
Ian Rogers50b35e22012-10-04 10:09:15 -07004491 ScopedObjectAccess soa(self);
Mathieu Chartier02e25112013-08-14 16:14:24 -07004492 for (Thread* thread : threads) {
4493 Dbg::DdmSendThreadNotification(thread, CHUNK_TYPE("THCR"));
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004494 }
4495 }
4496 ResumeVM();
Elliott Hughes47fce012011-10-25 18:37:19 -07004497 }
4498}
4499
Elliott Hughesa2155262011-11-16 16:26:58 -08004500void Dbg::PostThreadStartOrStop(Thread* t, uint32_t type) {
Elliott Hughesc0f09332012-03-26 13:27:06 -07004501 if (IsDebuggerActive()) {
Sebastien Hertz6995c602014-09-09 12:10:13 +02004502 gJdwpState->PostThreadChange(t, type == CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07004503 }
Elliott Hughes82188472011-11-07 18:11:48 -08004504 Dbg::DdmSendThreadNotification(t, type);
Elliott Hughes47fce012011-10-25 18:37:19 -07004505}
4506
4507void Dbg::PostThreadStart(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004508 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THCR"));
Elliott Hughes47fce012011-10-25 18:37:19 -07004509}
4510
4511void Dbg::PostThreadDeath(Thread* t) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004512 Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THDE"));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07004513}
4514
Mathieu Chartierad466ad2015-01-08 16:28:08 -08004515JDWP::JdwpState* Dbg::GetJdwpState() {
4516 return gJdwpState;
4517}
4518
Elliott Hughes767a1472011-10-26 18:49:02 -07004519int Dbg::DdmHandleHpifChunk(HpifWhen when) {
4520 if (when == HPIF_WHEN_NOW) {
Elliott Hughes7162ad92011-10-27 14:08:42 -07004521 DdmSendHeapInfo(when);
Elliott Hughes767a1472011-10-26 18:49:02 -07004522 return true;
4523 }
4524
4525 if (when != HPIF_WHEN_NEVER && when != HPIF_WHEN_NEXT_GC && when != HPIF_WHEN_EVERY_GC) {
4526 LOG(ERROR) << "invalid HpifWhen value: " << static_cast<int>(when);
4527 return false;
4528 }
4529
4530 gDdmHpifWhen = when;
4531 return true;
4532}
4533
4534bool Dbg::DdmHandleHpsgNhsgChunk(Dbg::HpsgWhen when, Dbg::HpsgWhat what, bool native) {
4535 if (when != HPSG_WHEN_NEVER && when != HPSG_WHEN_EVERY_GC) {
4536 LOG(ERROR) << "invalid HpsgWhen value: " << static_cast<int>(when);
4537 return false;
4538 }
4539
4540 if (what != HPSG_WHAT_MERGED_OBJECTS && what != HPSG_WHAT_DISTINCT_OBJECTS) {
4541 LOG(ERROR) << "invalid HpsgWhat value: " << static_cast<int>(what);
4542 return false;
4543 }
4544
4545 if (native) {
4546 gDdmNhsgWhen = when;
4547 gDdmNhsgWhat = what;
4548 } else {
4549 gDdmHpsgWhen = when;
4550 gDdmHpsgWhat = what;
4551 }
4552 return true;
4553}
4554
Elliott Hughes7162ad92011-10-27 14:08:42 -07004555void Dbg::DdmSendHeapInfo(HpifWhen reason) {
4556 // If there's a one-shot 'when', reset it.
4557 if (reason == gDdmHpifWhen) {
4558 if (gDdmHpifWhen == HPIF_WHEN_NEXT_GC) {
4559 gDdmHpifWhen = HPIF_WHEN_NEVER;
4560 }
4561 }
4562
4563 /*
4564 * Chunk HPIF (client --> server)
4565 *
4566 * Heap Info. General information about the heap,
4567 * suitable for a summary display.
4568 *
4569 * [u4]: number of heaps
4570 *
4571 * For each heap:
4572 * [u4]: heap ID
4573 * [u8]: timestamp in ms since Unix epoch
4574 * [u1]: capture reason (same as 'when' value from server)
4575 * [u4]: max heap size in bytes (-Xmx)
4576 * [u4]: current heap size in bytes
4577 * [u4]: current number of bytes allocated
4578 * [u4]: current number of objects allocated
4579 */
4580 uint8_t heap_count = 1;
Ian Rogers1d54e732013-05-02 21:10:01 -07004581 gc::Heap* heap = Runtime::Current()->GetHeap();
Elliott Hughes21f32d72011-11-09 17:44:13 -08004582 std::vector<uint8_t> bytes;
Elliott Hughes545a0642011-11-08 19:10:03 -08004583 JDWP::Append4BE(bytes, heap_count);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004584 JDWP::Append4BE(bytes, 1); // Heap id (bogus; we only have one heap).
Elliott Hughes545a0642011-11-08 19:10:03 -08004585 JDWP::Append8BE(bytes, MilliTime());
4586 JDWP::Append1BE(bytes, reason);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004587 JDWP::Append4BE(bytes, heap->GetMaxMemory()); // Max allowed heap size in bytes.
4588 JDWP::Append4BE(bytes, heap->GetTotalMemory()); // Current heap size in bytes.
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08004589 JDWP::Append4BE(bytes, heap->GetBytesAllocated());
4590 JDWP::Append4BE(bytes, heap->GetObjectsAllocated());
Elliott Hughes21f32d72011-11-09 17:44:13 -08004591 CHECK_EQ(bytes.size(), 4U + (heap_count * (4 + 8 + 1 + 4 + 4 + 4 + 4)));
Alex Light772099a2017-11-21 14:05:04 -08004592 Runtime::Current()->GetRuntimeCallbacks()->DdmPublishChunk(CHUNK_TYPE("HPIF"),
4593 ArrayRef<const uint8_t>(bytes));
Elliott Hughes767a1472011-10-26 18:49:02 -07004594}
4595
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004596enum HpsgSolidity {
4597 SOLIDITY_FREE = 0,
4598 SOLIDITY_HARD = 1,
4599 SOLIDITY_SOFT = 2,
4600 SOLIDITY_WEAK = 3,
4601 SOLIDITY_PHANTOM = 4,
4602 SOLIDITY_FINALIZABLE = 5,
4603 SOLIDITY_SWEEP = 6,
4604};
4605
4606enum HpsgKind {
4607 KIND_OBJECT = 0,
4608 KIND_CLASS_OBJECT = 1,
4609 KIND_ARRAY_1 = 2,
4610 KIND_ARRAY_2 = 3,
4611 KIND_ARRAY_4 = 4,
4612 KIND_ARRAY_8 = 5,
4613 KIND_UNKNOWN = 6,
4614 KIND_NATIVE = 7,
4615};
4616
4617#define HPSG_PARTIAL (1<<7)
4618#define HPSG_STATE(solidity, kind) ((uint8_t)((((kind) & 0x7) << 3) | ((solidity) & 0x7)))
4619
Ian Rogers30fab402012-01-23 15:43:46 -08004620class HeapChunkContext {
4621 public:
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004622 // Maximum chunk size. Obtain this from the formula:
4623 // (((maximum_heap_size / ALLOCATION_UNIT_SIZE) + 255) / 256) * 2
4624 HeapChunkContext(bool merge, bool native)
Ian Rogers30fab402012-01-23 15:43:46 -08004625 : buf_(16384 - 16),
4626 type_(0),
Mathieu Chartier36dab362014-07-30 14:59:56 -07004627 chunk_overhead_(0) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004628 Reset();
4629 if (native) {
Ian Rogers30fab402012-01-23 15:43:46 -08004630 type_ = CHUNK_TYPE("NHSG");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004631 } else {
Ian Rogers30fab402012-01-23 15:43:46 -08004632 type_ = merge ? CHUNK_TYPE("HPSG") : CHUNK_TYPE("HPSO");
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004633 }
4634 }
4635
4636 ~HeapChunkContext() {
Ian Rogers30fab402012-01-23 15:43:46 -08004637 if (p_ > &buf_[0]) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004638 Flush();
4639 }
4640 }
4641
Mathieu Chartier36dab362014-07-30 14:59:56 -07004642 void SetChunkOverhead(size_t chunk_overhead) {
4643 chunk_overhead_ = chunk_overhead;
4644 }
4645
4646 void ResetStartOfNextChunk() {
4647 startOfNextMemoryChunk_ = nullptr;
4648 }
4649
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004650 void EnsureHeader(const void* chunk_ptr) {
Ian Rogers30fab402012-01-23 15:43:46 -08004651 if (!needHeader_) {
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004652 return;
4653 }
4654
4655 // Start a new HPSx chunk.
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004656 JDWP::Write4BE(&p_, 1); // Heap id (bogus; we only have one heap).
4657 JDWP::Write1BE(&p_, 8); // Size of allocation unit, in bytes.
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004658
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004659 JDWP::Write4BE(&p_, reinterpret_cast<uintptr_t>(chunk_ptr)); // virtual address of segment start.
4660 JDWP::Write4BE(&p_, 0); // offset of this piece (relative to the virtual address).
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004661 // [u4]: length of piece, in allocation units
4662 // 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 -08004663 pieceLenField_ = p_;
4664 JDWP::Write4BE(&p_, 0x55555555);
4665 needHeader_ = false;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004666 }
4667
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07004668 void Flush() REQUIRES_SHARED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004669 if (pieceLenField_ == nullptr) {
Ian Rogersd636b062013-01-18 17:51:18 -08004670 // Flush immediately post Reset (maybe back-to-back Flush). Ignore.
4671 CHECK(needHeader_);
4672 return;
4673 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004674 // Patch the "length of piece" field.
Ian Rogers30fab402012-01-23 15:43:46 -08004675 CHECK_LE(&buf_[0], pieceLenField_);
4676 CHECK_LE(pieceLenField_, p_);
4677 JDWP::Set4BE(pieceLenField_, totalAllocationUnits_);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004678
Alex Light772099a2017-11-21 14:05:04 -08004679 ArrayRef<const uint8_t> out(&buf_[0], p_ - &buf_[0]);
4680 Runtime::Current()->GetRuntimeCallbacks()->DdmPublishChunk(type_, out);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004681 Reset();
4682 }
4683
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004684 static void HeapChunkJavaCallback(void* start, void* end, size_t used_bytes, void* arg)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07004685 REQUIRES_SHARED(Locks::heap_bitmap_lock_,
Ian Rogersb726dcb2012-09-05 08:57:23 -07004686 Locks::mutator_lock_) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004687 reinterpret_cast<HeapChunkContext*>(arg)->HeapChunkJavaCallback(start, end, used_bytes);
4688 }
4689
4690 static void HeapChunkNativeCallback(void* start, void* end, size_t used_bytes, void* arg)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07004691 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004692 reinterpret_cast<HeapChunkContext*>(arg)->HeapChunkNativeCallback(start, end, used_bytes);
Elliott Hughesa2155262011-11-16 16:26:58 -08004693 }
4694
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004695 private:
Elliott Hughesa2155262011-11-16 16:26:58 -08004696 enum { ALLOCATION_UNIT_SIZE = 8 };
4697
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004698 void Reset() {
Ian Rogers30fab402012-01-23 15:43:46 -08004699 p_ = &buf_[0];
Mathieu Chartier36dab362014-07-30 14:59:56 -07004700 ResetStartOfNextChunk();
Ian Rogers30fab402012-01-23 15:43:46 -08004701 totalAllocationUnits_ = 0;
4702 needHeader_ = true;
Ian Rogersc0542af2014-09-03 16:16:56 -07004703 pieceLenField_ = nullptr;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004704 }
4705
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004706 bool IsNative() const {
4707 return type_ == CHUNK_TYPE("NHSG");
4708 }
4709
4710 // Returns true if the object is not an empty chunk.
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07004711 bool ProcessRecord(void* start, size_t used_bytes) REQUIRES_SHARED(Locks::mutator_lock_) {
Ian Rogers30fab402012-01-23 15:43:46 -08004712 // Note: heap call backs cannot manipulate the heap upon which they are crawling, care is taken
4713 // in the following code not to allocate memory, by ensuring buf_ is of the correct size
Ian Rogers15bf2d32012-08-28 17:33:04 -07004714 if (used_bytes == 0) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004715 if (start == nullptr) {
4716 // Reset for start of new heap.
4717 startOfNextMemoryChunk_ = nullptr;
4718 Flush();
4719 }
4720 // Only process in use memory so that free region information
4721 // also includes dlmalloc book keeping.
4722 return false;
Elliott Hughesa2155262011-11-16 16:26:58 -08004723 }
Ian Rogersc0542af2014-09-03 16:16:56 -07004724 if (startOfNextMemoryChunk_ != nullptr) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004725 // Transmit any pending free memory. Native free memory of over kMaxFreeLen could be because
4726 // of the use of mmaps, so don't report. If not free memory then start a new segment.
4727 bool flush = true;
4728 if (start > startOfNextMemoryChunk_) {
4729 const size_t kMaxFreeLen = 2 * kPageSize;
4730 void* free_start = startOfNextMemoryChunk_;
4731 void* free_end = start;
4732 const size_t free_len =
4733 reinterpret_cast<uintptr_t>(free_end) - reinterpret_cast<uintptr_t>(free_start);
4734 if (!IsNative() || free_len < kMaxFreeLen) {
4735 AppendChunk(HPSG_STATE(SOLIDITY_FREE, 0), free_start, free_len, IsNative());
4736 flush = false;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004737 }
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004738 }
4739 if (flush) {
4740 startOfNextMemoryChunk_ = nullptr;
4741 Flush();
4742 }
Ian Rogers15bf2d32012-08-28 17:33:04 -07004743 }
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004744 return true;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004745 }
Elliott Hughesa2155262011-11-16 16:26:58 -08004746
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004747 void HeapChunkNativeCallback(void* start, void* /*end*/, size_t used_bytes)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07004748 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004749 if (ProcessRecord(start, used_bytes)) {
4750 uint8_t state = ExamineNativeObject(start);
Andreas Gampe98ea9d92018-10-19 14:06:15 -07004751 AppendChunk(state, start, used_bytes + chunk_overhead_, /*is_native=*/ true);
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004752 startOfNextMemoryChunk_ = reinterpret_cast<char*>(start) + used_bytes + chunk_overhead_;
4753 }
4754 }
4755
4756 void HeapChunkJavaCallback(void* start, void* /*end*/, size_t used_bytes)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07004757 REQUIRES_SHARED(Locks::heap_bitmap_lock_, Locks::mutator_lock_) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004758 if (ProcessRecord(start, used_bytes)) {
4759 // Determine the type of this chunk.
4760 // OLD-TODO: if context.merge, see if this chunk is different from the last chunk.
4761 // If it's the same, we should combine them.
4762 uint8_t state = ExamineJavaObject(reinterpret_cast<mirror::Object*>(start));
Andreas Gampe98ea9d92018-10-19 14:06:15 -07004763 AppendChunk(state, start, used_bytes + chunk_overhead_, /*is_native=*/ false);
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004764 startOfNextMemoryChunk_ = reinterpret_cast<char*>(start) + used_bytes + chunk_overhead_;
4765 }
4766 }
4767
4768 void AppendChunk(uint8_t state, void* ptr, size_t length, bool is_native)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07004769 REQUIRES_SHARED(Locks::mutator_lock_) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004770 // Make sure there's enough room left in the buffer.
4771 // We need to use two bytes for every fractional 256 allocation units used by the chunk plus
4772 // 17 bytes for any header.
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004773 const size_t needed = ((RoundUp(length / ALLOCATION_UNIT_SIZE, 256) / 256) * 2) + 17;
4774 size_t byte_left = &buf_.back() - p_;
4775 if (byte_left < needed) {
4776 if (is_native) {
Pavel Vyssotski7522c742014-12-08 13:38:26 +06004777 // Cannot trigger memory allocation while walking native heap.
Pavel Vyssotski7522c742014-12-08 13:38:26 +06004778 return;
4779 }
Ian Rogers15bf2d32012-08-28 17:33:04 -07004780 Flush();
4781 }
4782
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004783 byte_left = &buf_.back() - p_;
4784 if (byte_left < needed) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004785 LOG(WARNING) << "Chunk is too big to transmit (chunk_len=" << length << ", "
4786 << needed << " bytes)";
4787 return;
4788 }
4789 EnsureHeader(ptr);
Elliott Hughesa2155262011-11-16 16:26:58 -08004790 // Write out the chunk description.
Ian Rogers15bf2d32012-08-28 17:33:04 -07004791 length /= ALLOCATION_UNIT_SIZE; // Convert to allocation units.
4792 totalAllocationUnits_ += length;
4793 while (length > 256) {
Ian Rogers30fab402012-01-23 15:43:46 -08004794 *p_++ = state | HPSG_PARTIAL;
4795 *p_++ = 255; // length - 1
Ian Rogers15bf2d32012-08-28 17:33:04 -07004796 length -= 256;
Elliott Hughesa2155262011-11-16 16:26:58 -08004797 }
Ian Rogers30fab402012-01-23 15:43:46 -08004798 *p_++ = state;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004799 *p_++ = length - 1;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004800 }
4801
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07004802 uint8_t ExamineNativeObject(const void* p) REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004803 return p == nullptr ? HPSG_STATE(SOLIDITY_FREE, 0) : HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
4804 }
4805
4806 uint8_t ExamineJavaObject(mirror::Object* o)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07004807 REQUIRES_SHARED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07004808 if (o == nullptr) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004809 return HPSG_STATE(SOLIDITY_FREE, 0);
4810 }
Elliott Hughesa2155262011-11-16 16:26:58 -08004811 // It's an allocated chunk. Figure out what it is.
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004812 gc::Heap* heap = Runtime::Current()->GetHeap();
4813 if (!heap->IsLiveObjectLocked(o)) {
4814 LOG(ERROR) << "Invalid object in managed heap: " << o;
Elliott Hughesa2155262011-11-16 16:26:58 -08004815 return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE);
4816 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08004817 mirror::Class* c = o->GetClass();
Ian Rogersc0542af2014-09-03 16:16:56 -07004818 if (c == nullptr) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004819 // The object was probably just created but hasn't been initialized yet.
4820 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
4821 }
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004822 if (!heap->IsValidObjectAddress(c)) {
Ian Rogers15bf2d32012-08-28 17:33:04 -07004823 LOG(ERROR) << "Invalid class for managed heap object: " << o << " " << c;
Elliott Hughesa2155262011-11-16 16:26:58 -08004824 return HPSG_STATE(SOLIDITY_HARD, KIND_UNKNOWN);
4825 }
Mathieu Chartierf26e1b32015-01-29 10:47:10 -08004826 if (c->GetClass() == nullptr) {
4827 LOG(ERROR) << "Null class of class " << c << " for object " << o;
4828 return HPSG_STATE(SOLIDITY_HARD, KIND_UNKNOWN);
4829 }
Elliott Hughesa2155262011-11-16 16:26:58 -08004830 if (c->IsClassClass()) {
4831 return HPSG_STATE(SOLIDITY_HARD, KIND_CLASS_OBJECT);
4832 }
Elliott Hughesa2155262011-11-16 16:26:58 -08004833 if (c->IsArrayClass()) {
Elliott Hughesa2155262011-11-16 16:26:58 -08004834 switch (c->GetComponentSize()) {
4835 case 1: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_1);
4836 case 2: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_2);
4837 case 4: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4);
4838 case 8: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_8);
4839 }
4840 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004841 return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT);
4842 }
4843
Ian Rogers30fab402012-01-23 15:43:46 -08004844 std::vector<uint8_t> buf_;
4845 uint8_t* p_;
4846 uint8_t* pieceLenField_;
Ian Rogers15bf2d32012-08-28 17:33:04 -07004847 void* startOfNextMemoryChunk_;
Ian Rogers30fab402012-01-23 15:43:46 -08004848 size_t totalAllocationUnits_;
4849 uint32_t type_;
Ian Rogers30fab402012-01-23 15:43:46 -08004850 bool needHeader_;
Mathieu Chartier36dab362014-07-30 14:59:56 -07004851 size_t chunk_overhead_;
Ian Rogers30fab402012-01-23 15:43:46 -08004852
Elliott Hughesa2155262011-11-16 16:26:58 -08004853 DISALLOW_COPY_AND_ASSIGN(HeapChunkContext);
4854};
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004855
4856void Dbg::DdmSendHeapSegments(bool native) {
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004857 Dbg::HpsgWhen when = native ? gDdmNhsgWhen : gDdmHpsgWhen;
4858 Dbg::HpsgWhat what = native ? gDdmNhsgWhat : gDdmHpsgWhat;
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004859 if (when == HPSG_WHEN_NEVER) {
4860 return;
4861 }
Alex Light772099a2017-11-21 14:05:04 -08004862 RuntimeCallbacks* cb = Runtime::Current()->GetRuntimeCallbacks();
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004863 // Figure out what kind of chunks we'll be sending.
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004864 CHECK(what == HPSG_WHAT_MERGED_OBJECTS || what == HPSG_WHAT_DISTINCT_OBJECTS)
4865 << static_cast<int>(what);
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004866
4867 // First, send a heap start chunk.
4868 uint8_t heap_id[4];
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004869 JDWP::Set4BE(&heap_id[0], 1); // Heap id (bogus; we only have one heap).
Alex Light772099a2017-11-21 14:05:04 -08004870 cb->DdmPublishChunk(native ? CHUNK_TYPE("NHST") : CHUNK_TYPE("HPST"),
4871 ArrayRef<const uint8_t>(heap_id));
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004872 Thread* self = Thread::Current();
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004873 Locks::mutator_lock_->AssertSharedHeld(self);
Hiroshi Yamauchicf58d4a2013-09-26 14:21:22 -07004874
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004875 // Send a series of heap segment chunks.
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004876 HeapChunkContext context(what == HPSG_WHAT_MERGED_OBJECTS, native);
Andreas Gampe0c183382017-07-13 22:26:24 -07004877 auto bump_pointer_space_visitor = [&](mirror::Object* obj)
4878 REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(Locks::heap_bitmap_lock_) {
4879 const size_t size = RoundUp(obj->SizeOf(), kObjectAlignment);
4880 HeapChunkContext::HeapChunkJavaCallback(
4881 obj, reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(obj) + size), size, &context);
4882 };
Elliott Hughesa2155262011-11-16 16:26:58 -08004883 if (native) {
Dimitry Ivanove6465bc2015-12-14 18:55:02 -08004884 UNIMPLEMENTED(WARNING) << "Native heap inspection is not supported";
Elliott Hughesa2155262011-11-16 16:26:58 -08004885 } else {
Ian Rogers1d54e732013-05-02 21:10:01 -07004886 gc::Heap* heap = Runtime::Current()->GetHeap();
Mathieu Chartier36dab362014-07-30 14:59:56 -07004887 for (const auto& space : heap->GetContinuousSpaces()) {
4888 if (space->IsDlMallocSpace()) {
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004889 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004890 // dlmalloc's chunk header is 2 * sizeof(size_t), but if the previous chunk is in use for an
4891 // allocation then the first sizeof(size_t) may belong to it.
4892 context.SetChunkOverhead(sizeof(size_t));
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004893 space->AsDlMallocSpace()->Walk(HeapChunkContext::HeapChunkJavaCallback, &context);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004894 } else if (space->IsRosAllocSpace()) {
4895 context.SetChunkOverhead(0);
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004896 // Need to acquire the mutator lock before the heap bitmap lock with exclusive access since
4897 // RosAlloc's internal logic doesn't know to release and reacquire the heap bitmap lock.
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07004898 ScopedThreadSuspension sts(self, kSuspended);
Mathieu Chartier4f55e222015-09-04 13:26:21 -07004899 ScopedSuspendAll ssa(__FUNCTION__);
4900 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
4901 space->AsRosAllocSpace()->Walk(HeapChunkContext::HeapChunkJavaCallback, &context);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004902 } else if (space->IsBumpPointerSpace()) {
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004903 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004904 context.SetChunkOverhead(0);
Andreas Gampe0c183382017-07-13 22:26:24 -07004905 space->AsBumpPointerSpace()->Walk(bump_pointer_space_visitor);
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004906 HeapChunkContext::HeapChunkJavaCallback(nullptr, nullptr, 0, &context);
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -08004907 } else if (space->IsRegionSpace()) {
4908 heap->IncrementDisableMovingGC(self);
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07004909 {
4910 ScopedThreadSuspension sts(self, kSuspended);
Mathieu Chartier4f55e222015-09-04 13:26:21 -07004911 ScopedSuspendAll ssa(__FUNCTION__);
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07004912 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
4913 context.SetChunkOverhead(0);
Andreas Gampe0c183382017-07-13 22:26:24 -07004914 space->AsRegionSpace()->Walk(bump_pointer_space_visitor);
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07004915 HeapChunkContext::HeapChunkJavaCallback(nullptr, nullptr, 0, &context);
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07004916 }
Hiroshi Yamauchi2cd334a2015-01-09 14:03:35 -08004917 heap->DecrementDisableMovingGC(self);
Mathieu Chartier36dab362014-07-30 14:59:56 -07004918 } else {
4919 UNIMPLEMENTED(WARNING) << "Not counting objects in space " << *space;
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07004920 }
Mathieu Chartier36dab362014-07-30 14:59:56 -07004921 context.ResetStartOfNextChunk();
Mathieu Chartierb062fdd2012-07-03 09:51:48 -07004922 }
Mathieu Chartier4c69d7f2014-10-10 12:45:50 -07004923 ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_);
Mathieu Chartiere0f0cb32012-08-28 11:26:00 -07004924 // Walk the large objects, these are not in the AllocSpace.
Mathieu Chartier36dab362014-07-30 14:59:56 -07004925 context.SetChunkOverhead(0);
Mathieu Chartierbc689b72014-12-14 17:01:31 -08004926 heap->GetLargeObjectsSpace()->Walk(HeapChunkContext::HeapChunkJavaCallback, &context);
Elliott Hughesa2155262011-11-16 16:26:58 -08004927 }
Elliott Hughes6a5bd492011-10-28 14:33:57 -07004928
4929 // Finally, send a heap end chunk.
Alex Light772099a2017-11-21 14:05:04 -08004930 cb->DdmPublishChunk(native ? CHUNK_TYPE("NHEN") : CHUNK_TYPE("HPEN"),
4931 ArrayRef<const uint8_t>(heap_id));
Elliott Hughes767a1472011-10-26 18:49:02 -07004932}
4933
Brian Carlstrom306db812014-09-05 13:01:41 -07004934void Dbg::SetAllocTrackingEnabled(bool enable) {
Man Cao8c2ff642015-05-27 17:25:30 -07004935 gc::AllocRecordObjectMap::SetAllocTrackingEnabled(enable);
Elliott Hughes545a0642011-11-08 19:10:03 -08004936}
4937
4938void Dbg::DumpRecentAllocations() {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07004939 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom306db812014-09-05 13:01:41 -07004940 MutexLock mu(soa.Self(), *Locks::alloc_tracker_lock_);
Man Cao8c2ff642015-05-27 17:25:30 -07004941 if (!Runtime::Current()->GetHeap()->IsAllocTrackingEnabled()) {
Elliott Hughes545a0642011-11-08 19:10:03 -08004942 LOG(INFO) << "Not recording tracked allocations";
4943 return;
4944 }
Man Cao8c2ff642015-05-27 17:25:30 -07004945 gc::AllocRecordObjectMap* records = Runtime::Current()->GetHeap()->GetAllocationRecords();
4946 CHECK(records != nullptr);
Elliott Hughes545a0642011-11-08 19:10:03 -08004947
Man Cao1ed11b92015-06-11 22:47:35 -07004948 const uint16_t capped_count = CappedAllocRecordCount(records->GetRecentAllocationSize());
Brian Carlstrom306db812014-09-05 13:01:41 -07004949 uint16_t count = capped_count;
Elliott Hughes545a0642011-11-08 19:10:03 -08004950
Man Cao8c2ff642015-05-27 17:25:30 -07004951 LOG(INFO) << "Tracked allocations, (count=" << count << ")";
4952 for (auto it = records->RBegin(), end = records->REnd();
4953 count > 0 && it != end; count--, it++) {
Mathieu Chartier458b1052016-03-29 14:02:55 -07004954 const gc::AllocRecord* record = &it->second;
Elliott Hughes545a0642011-11-08 19:10:03 -08004955
Man Cao8c2ff642015-05-27 17:25:30 -07004956 LOG(INFO) << StringPrintf(" Thread %-2d %6zd bytes ", record->GetTid(), record->ByteCount())
David Sehr709b0702016-10-13 09:12:37 -07004957 << mirror::Class::PrettyClass(record->GetClass());
Elliott Hughes545a0642011-11-08 19:10:03 -08004958
Man Cao8c2ff642015-05-27 17:25:30 -07004959 for (size_t stack_frame = 0, depth = record->GetDepth(); stack_frame < depth; ++stack_frame) {
4960 const gc::AllocRecordStackTraceElement& stack_element = record->StackElement(stack_frame);
4961 ArtMethod* m = stack_element.GetMethod();
David Sehr709b0702016-10-13 09:12:37 -07004962 LOG(INFO) << " " << ArtMethod::PrettyMethod(m) << " line "
4963 << stack_element.ComputeLineNumber();
Elliott Hughes545a0642011-11-08 19:10:03 -08004964 }
4965
4966 // pause periodically to help logcat catch up
4967 if ((count % 5) == 0) {
4968 usleep(40000);
4969 }
Elliott Hughes545a0642011-11-08 19:10:03 -08004970 }
4971}
4972
4973class StringTable {
Andreas Gampe2eeb01a2017-07-07 14:09:46 -07004974 private:
4975 struct Entry {
Andreas Gampe84eadb22017-07-07 15:08:01 -07004976 explicit Entry(const char* data_in)
4977 : data(data_in), hash(ComputeModifiedUtf8Hash(data_in)), index(0) {
4978 }
Andreas Gampe2eeb01a2017-07-07 14:09:46 -07004979 Entry(const Entry& entry) = default;
4980 Entry(Entry&& entry) = default;
4981
4982 // Pointer to the actual string data.
4983 const char* data;
Andreas Gampe84eadb22017-07-07 15:08:01 -07004984
4985 // The hash of the data.
4986 const uint32_t hash;
4987
Andreas Gampe2eeb01a2017-07-07 14:09:46 -07004988 // The index. This will be filled in on Finish and is not part of the ordering, so mark it
4989 // mutable.
4990 mutable uint32_t index;
4991
Andreas Gampe84eadb22017-07-07 15:08:01 -07004992 bool operator==(const Entry& other) const {
4993 return strcmp(data, other.data) == 0;
4994 }
4995 };
4996 struct EntryHash {
4997 size_t operator()(const Entry& entry) const {
4998 return entry.hash;
Andreas Gampe2eeb01a2017-07-07 14:09:46 -07004999 }
5000 };
5001
Elliott Hughes545a0642011-11-08 19:10:03 -08005002 public:
Andreas Gampe2eeb01a2017-07-07 14:09:46 -07005003 StringTable() : finished_(false) {
Elliott Hughes545a0642011-11-08 19:10:03 -08005004 }
5005
Andreas Gampef774a4e2017-07-06 22:15:18 -07005006 void Add(const char* str, bool copy_string) {
Andreas Gampe2eeb01a2017-07-07 14:09:46 -07005007 DCHECK(!finished_);
Andreas Gampef774a4e2017-07-06 22:15:18 -07005008 if (UNLIKELY(copy_string)) {
5009 // Check whether it's already there.
Andreas Gampe2eeb01a2017-07-07 14:09:46 -07005010 Entry entry(str);
5011 if (table_.find(entry) != table_.end()) {
Andreas Gampef774a4e2017-07-06 22:15:18 -07005012 return;
5013 }
Mathieu Chartier4345c462014-06-27 10:20:14 -07005014
Andreas Gampef774a4e2017-07-06 22:15:18 -07005015 // Make a copy.
5016 size_t str_len = strlen(str);
5017 char* copy = new char[str_len + 1];
5018 strlcpy(copy, str, str_len + 1);
5019 string_backup_.emplace_back(copy);
5020 str = copy;
5021 }
Andreas Gampe2eeb01a2017-07-07 14:09:46 -07005022 Entry entry(str);
5023 table_.insert(entry);
5024 }
5025
5026 // Update all entries and give them an index. Note that this is likely not the insertion order,
5027 // as the set will with high likelihood reorder elements. Thus, Add must not be called after
5028 // Finish, and Finish must be called before IndexOf. In that case, WriteTo will walk in
5029 // the same order as Finish, and indices will agree. The order invariant, as well as indices,
5030 // are enforced through debug checks.
5031 void Finish() {
5032 DCHECK(!finished_);
5033 finished_ = true;
5034 uint32_t index = 0;
5035 for (auto& entry : table_) {
5036 entry.index = index;
5037 ++index;
5038 }
Elliott Hughes545a0642011-11-08 19:10:03 -08005039 }
5040
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07005041 size_t IndexOf(const char* s) const {
Andreas Gampe2eeb01a2017-07-07 14:09:46 -07005042 DCHECK(finished_);
5043 Entry entry(s);
5044 auto it = table_.find(entry);
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07005045 if (it == table_.end()) {
5046 LOG(FATAL) << "IndexOf(\"" << s << "\") failed";
5047 }
Andreas Gampe2eeb01a2017-07-07 14:09:46 -07005048 return it->index;
Elliott Hughes545a0642011-11-08 19:10:03 -08005049 }
5050
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07005051 size_t Size() const {
Elliott Hughes545a0642011-11-08 19:10:03 -08005052 return table_.size();
5053 }
5054
Elliott Hughesa8f93cb2012-06-08 17:08:48 -07005055 void WriteTo(std::vector<uint8_t>& bytes) const {
Andreas Gampe2eeb01a2017-07-07 14:09:46 -07005056 DCHECK(finished_);
5057 uint32_t cur_index = 0;
5058 for (const auto& entry : table_) {
5059 DCHECK_EQ(cur_index++, entry.index);
5060
5061 size_t s_len = CountModifiedUtf8Chars(entry.data);
Christopher Ferris8a354052015-04-24 17:23:53 -07005062 std::unique_ptr<uint16_t[]> s_utf16(new uint16_t[s_len]);
Andreas Gampe2eeb01a2017-07-07 14:09:46 -07005063 ConvertModifiedUtf8ToUtf16(s_utf16.get(), entry.data);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08005064 JDWP::AppendUtf16BE(bytes, s_utf16.get(), s_len);
Elliott Hughes545a0642011-11-08 19:10:03 -08005065 }
5066 }
5067
5068 private:
Andreas Gampe84eadb22017-07-07 15:08:01 -07005069 std::unordered_set<Entry, EntryHash> table_;
Andreas Gampef774a4e2017-07-06 22:15:18 -07005070 std::vector<std::unique_ptr<char[]>> string_backup_;
Andreas Gampe2eeb01a2017-07-07 14:09:46 -07005071
5072 bool finished_;
5073
Elliott Hughes545a0642011-11-08 19:10:03 -08005074 DISALLOW_COPY_AND_ASSIGN(StringTable);
5075};
5076
Mathieu Chartiere401d142015-04-22 13:56:20 -07005077static const char* GetMethodSourceFile(ArtMethod* method)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07005078 REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07005079 DCHECK(method != nullptr);
5080 const char* source_file = method->GetDeclaringClassSourceFile();
Sebastien Hertz280286a2014-04-28 09:26:50 +02005081 return (source_file != nullptr) ? source_file : "";
5082}
5083
Elliott Hughes545a0642011-11-08 19:10:03 -08005084/*
5085 * The data we send to DDMS contains everything we have recorded.
5086 *
5087 * Message header (all values big-endian):
5088 * (1b) message header len (to allow future expansion); includes itself
5089 * (1b) entry header len
5090 * (1b) stack frame len
5091 * (2b) number of entries
5092 * (4b) offset to string table from start of message
5093 * (2b) number of class name strings
5094 * (2b) number of method name strings
5095 * (2b) number of source file name strings
5096 * For each entry:
5097 * (4b) total allocation size
Elliott Hughes221229c2013-01-08 18:17:50 -08005098 * (2b) thread id
Elliott Hughes545a0642011-11-08 19:10:03 -08005099 * (2b) allocated object's class name index
5100 * (1b) stack depth
5101 * For each stack frame:
5102 * (2b) method's class name
5103 * (2b) method name
5104 * (2b) method source file
5105 * (2b) line number, clipped to 32767; -2 if native; -1 if no source
5106 * (xb) class name strings
5107 * (xb) method name strings
5108 * (xb) source file strings
5109 *
5110 * As with other DDM traffic, strings are sent as a 4-byte length
5111 * followed by UTF-16 data.
5112 *
5113 * We send up 16-bit unsigned indexes into string tables. In theory there
Brian Carlstrom306db812014-09-05 13:01:41 -07005114 * can be (kMaxAllocRecordStackDepth * alloc_record_max_) unique strings in
Elliott Hughes545a0642011-11-08 19:10:03 -08005115 * each table, but in practice there should be far fewer.
5116 *
5117 * The chief reason for using a string table here is to keep the size of
5118 * the DDMS message to a minimum. This is partly to make the protocol
5119 * efficient, but also because we have to form the whole thing up all at
5120 * once in a memory buffer.
5121 *
5122 * We use separate string tables for class names, method names, and source
5123 * files to keep the indexes small. There will generally be no overlap
5124 * between the contents of these tables.
5125 */
5126jbyteArray Dbg::GetRecentAllocations() {
Ian Rogerscf7f1912014-10-22 22:06:39 -07005127 if ((false)) {
Elliott Hughes545a0642011-11-08 19:10:03 -08005128 DumpRecentAllocations();
5129 }
5130
Ian Rogers50b35e22012-10-04 10:09:15 -07005131 Thread* self = Thread::Current();
Elliott Hughes545a0642011-11-08 19:10:03 -08005132 std::vector<uint8_t> bytes;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07005133 {
Brian Carlstrom306db812014-09-05 13:01:41 -07005134 MutexLock mu(self, *Locks::alloc_tracker_lock_);
Man Cao8c2ff642015-05-27 17:25:30 -07005135 gc::AllocRecordObjectMap* records = Runtime::Current()->GetHeap()->GetAllocationRecords();
5136 // In case this method is called when allocation tracker is disabled,
5137 // we should still send some data back.
5138 gc::AllocRecordObjectMap dummy;
5139 if (records == nullptr) {
5140 CHECK(!Runtime::Current()->GetHeap()->IsAllocTrackingEnabled());
5141 records = &dummy;
5142 }
Man Cao41656de2015-07-06 18:53:15 -07005143 // We don't need to wait on the condition variable records->new_record_condition_, because this
5144 // function only reads the class objects, which are already marked so it doesn't change their
5145 // reachability.
Man Cao8c2ff642015-05-27 17:25:30 -07005146
Mathieu Chartier46e811b2013-07-10 17:09:14 -07005147 //
5148 // Part 1: generate string tables.
5149 //
5150 StringTable class_names;
5151 StringTable method_names;
5152 StringTable filenames;
Elliott Hughes545a0642011-11-08 19:10:03 -08005153
Andreas Gampeff29cee2017-07-07 11:11:15 -07005154 VLOG(jdwp) << "Collecting StringTables.";
5155
Man Cao1ed11b92015-06-11 22:47:35 -07005156 const uint16_t capped_count = CappedAllocRecordCount(records->GetRecentAllocationSize());
Brian Carlstrom306db812014-09-05 13:01:41 -07005157 uint16_t count = capped_count;
Andreas Gamped0fc7682017-07-07 14:03:08 -07005158 size_t alloc_byte_count = 0;
Man Cao8c2ff642015-05-27 17:25:30 -07005159 for (auto it = records->RBegin(), end = records->REnd();
5160 count > 0 && it != end; count--, it++) {
Mathieu Chartier458b1052016-03-29 14:02:55 -07005161 const gc::AllocRecord* record = &it->second;
Ian Rogers1ff3c982014-08-12 02:30:58 -07005162 std::string temp;
Andreas Gampef774a4e2017-07-06 22:15:18 -07005163 const char* class_descr = record->GetClassDescriptor(&temp);
5164 class_names.Add(class_descr, !temp.empty());
Andreas Gamped0fc7682017-07-07 14:03:08 -07005165
5166 // Size + tid + class name index + stack depth.
5167 alloc_byte_count += 4u + 2u + 2u + 1u;
5168
Man Cao8c2ff642015-05-27 17:25:30 -07005169 for (size_t i = 0, depth = record->GetDepth(); i < depth; i++) {
5170 ArtMethod* m = record->StackElement(i).GetMethod();
Andreas Gampef774a4e2017-07-06 22:15:18 -07005171 class_names.Add(m->GetDeclaringClassDescriptor(), false);
5172 method_names.Add(m->GetName(), false);
5173 filenames.Add(GetMethodSourceFile(m), false);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07005174 }
Andreas Gamped0fc7682017-07-07 14:03:08 -07005175
5176 // Depth * (class index + method name index + file name index + line number).
5177 alloc_byte_count += record->GetDepth() * (2u + 2u + 2u + 2u);
Elliott Hughes545a0642011-11-08 19:10:03 -08005178 }
5179
Andreas Gampe2eeb01a2017-07-07 14:09:46 -07005180 class_names.Finish();
5181 method_names.Finish();
5182 filenames.Finish();
Andreas Gampeff29cee2017-07-07 11:11:15 -07005183 VLOG(jdwp) << "Done collecting StringTables:" << std::endl
5184 << " ClassNames: " << class_names.Size() << std::endl
5185 << " MethodNames: " << method_names.Size() << std::endl
5186 << " Filenames: " << filenames.Size();
5187
Man Cao8c2ff642015-05-27 17:25:30 -07005188 LOG(INFO) << "recent allocation records: " << capped_count;
5189 LOG(INFO) << "allocation records all objects: " << records->Size();
Mathieu Chartier46e811b2013-07-10 17:09:14 -07005190
5191 //
5192 // Part 2: Generate the output and store it in the buffer.
5193 //
5194
5195 // (1b) message header len (to allow future expansion); includes itself
5196 // (1b) entry header len
5197 // (1b) stack frame len
5198 const int kMessageHeaderLen = 15;
5199 const int kEntryHeaderLen = 9;
5200 const int kStackFrameLen = 8;
5201 JDWP::Append1BE(bytes, kMessageHeaderLen);
5202 JDWP::Append1BE(bytes, kEntryHeaderLen);
5203 JDWP::Append1BE(bytes, kStackFrameLen);
5204
5205 // (2b) number of entries
5206 // (4b) offset to string table from start of message
5207 // (2b) number of class name strings
5208 // (2b) number of method name strings
5209 // (2b) number of source file name strings
Brian Carlstrom306db812014-09-05 13:01:41 -07005210 JDWP::Append2BE(bytes, capped_count);
Mathieu Chartier46e811b2013-07-10 17:09:14 -07005211 size_t string_table_offset = bytes.size();
Brian Carlstrom7934ac22013-07-26 10:54:15 -07005212 JDWP::Append4BE(bytes, 0); // We'll patch this later...
Mathieu Chartier46e811b2013-07-10 17:09:14 -07005213 JDWP::Append2BE(bytes, class_names.Size());
5214 JDWP::Append2BE(bytes, method_names.Size());
5215 JDWP::Append2BE(bytes, filenames.Size());
5216
Andreas Gampeff29cee2017-07-07 11:11:15 -07005217 VLOG(jdwp) << "Dumping allocations with stacks";
5218
Andreas Gamped0fc7682017-07-07 14:03:08 -07005219 // Enlarge the vector for the allocation data.
5220 size_t reserve_size = bytes.size() + alloc_byte_count;
5221 bytes.reserve(reserve_size);
5222
Ian Rogers1ff3c982014-08-12 02:30:58 -07005223 std::string temp;
Man Cao8c2ff642015-05-27 17:25:30 -07005224 count = capped_count;
5225 // The last "count" number of allocation records in "records" are the most recent "count" number
5226 // of allocations. Reverse iterate to get them. The most recent allocation is sent first.
5227 for (auto it = records->RBegin(), end = records->REnd();
5228 count > 0 && it != end; count--, it++) {
Mathieu Chartier46e811b2013-07-10 17:09:14 -07005229 // For each entry:
5230 // (4b) total allocation size
5231 // (2b) thread id
5232 // (2b) allocated object's class name index
5233 // (1b) stack depth
Mathieu Chartier458b1052016-03-29 14:02:55 -07005234 const gc::AllocRecord* record = &it->second;
Mathieu Chartier46e811b2013-07-10 17:09:14 -07005235 size_t stack_depth = record->GetDepth();
Mathieu Chartierf8322842014-05-16 10:59:25 -07005236 size_t allocated_object_class_name_index =
Man Cao41656de2015-07-06 18:53:15 -07005237 class_names.IndexOf(record->GetClassDescriptor(&temp));
Hiroshi Yamauchib5a9e3d2014-06-09 12:11:20 -07005238 JDWP::Append4BE(bytes, record->ByteCount());
Man Cao8c2ff642015-05-27 17:25:30 -07005239 JDWP::Append2BE(bytes, static_cast<uint16_t>(record->GetTid()));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07005240 JDWP::Append2BE(bytes, allocated_object_class_name_index);
5241 JDWP::Append1BE(bytes, stack_depth);
5242
Mathieu Chartier46e811b2013-07-10 17:09:14 -07005243 for (size_t stack_frame = 0; stack_frame < stack_depth; ++stack_frame) {
5244 // For each stack frame:
5245 // (2b) method's class name
5246 // (2b) method name
5247 // (2b) method source file
5248 // (2b) line number, clipped to 32767; -2 if native; -1 if no source
Man Cao8c2ff642015-05-27 17:25:30 -07005249 ArtMethod* m = record->StackElement(stack_frame).GetMethod();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07005250 size_t class_name_index = class_names.IndexOf(m->GetDeclaringClassDescriptor());
5251 size_t method_name_index = method_names.IndexOf(m->GetName());
5252 size_t file_name_index = filenames.IndexOf(GetMethodSourceFile(m));
Mathieu Chartier46e811b2013-07-10 17:09:14 -07005253 JDWP::Append2BE(bytes, class_name_index);
5254 JDWP::Append2BE(bytes, method_name_index);
5255 JDWP::Append2BE(bytes, file_name_index);
Man Cao8c2ff642015-05-27 17:25:30 -07005256 JDWP::Append2BE(bytes, record->StackElement(stack_frame).ComputeLineNumber());
Mathieu Chartier46e811b2013-07-10 17:09:14 -07005257 }
Mathieu Chartier46e811b2013-07-10 17:09:14 -07005258 }
5259
Andreas Gamped0fc7682017-07-07 14:03:08 -07005260 CHECK_EQ(bytes.size(), reserve_size);
Andreas Gampeff29cee2017-07-07 11:11:15 -07005261 VLOG(jdwp) << "Dumping tables.";
5262
Mathieu Chartier46e811b2013-07-10 17:09:14 -07005263 // (xb) class name strings
5264 // (xb) method name strings
5265 // (xb) source file strings
5266 JDWP::Set4BE(&bytes[string_table_offset], bytes.size());
5267 class_names.WriteTo(bytes);
5268 method_names.WriteTo(bytes);
5269 filenames.WriteTo(bytes);
Andreas Gampeff29cee2017-07-07 11:11:15 -07005270
5271 VLOG(jdwp) << "GetRecentAllocations: data created. " << bytes.size();
Elliott Hughes545a0642011-11-08 19:10:03 -08005272 }
Ian Rogers50b35e22012-10-04 10:09:15 -07005273 JNIEnv* env = self->GetJniEnv();
Elliott Hughes545a0642011-11-08 19:10:03 -08005274 jbyteArray result = env->NewByteArray(bytes.size());
Ian Rogersc0542af2014-09-03 16:16:56 -07005275 if (result != nullptr) {
Elliott Hughes545a0642011-11-08 19:10:03 -08005276 env->SetByteArrayRegion(result, 0, bytes.size(), reinterpret_cast<const jbyte*>(&bytes[0]));
5277 }
5278 return result;
5279}
5280
Mathieu Chartiere401d142015-04-22 13:56:20 -07005281ArtMethod* DeoptimizationRequest::Method() const {
Andreas Gampe13b27842016-11-07 16:48:23 -08005282 return jni::DecodeArtMethod(method_);
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07005283}
5284
Mathieu Chartiere401d142015-04-22 13:56:20 -07005285void DeoptimizationRequest::SetMethod(ArtMethod* m) {
Andreas Gampe13b27842016-11-07 16:48:23 -08005286 method_ = jni::EncodeArtMethod(m);
Hiroshi Yamauchi0ec17d22014-07-07 13:07:08 -07005287}
5288
Mathieu Chartiera6b1ead2015-10-06 10:32:38 -07005289void Dbg::VisitRoots(RootVisitor* visitor) {
5290 // Visit breakpoint roots, used to prevent unloading of methods with breakpoints.
5291 ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
5292 BufferedRootVisitor<128> root_visitor(visitor, RootInfo(kRootVMInternal));
5293 for (Breakpoint& breakpoint : gBreakpoints) {
Andreas Gampe542451c2016-07-26 09:02:02 -07005294 breakpoint.Method()->VisitRoots(root_visitor, kRuntimePointerSize);
Mathieu Chartiera6b1ead2015-10-06 10:32:38 -07005295 }
5296}
5297
Andreas Gampe04bbb5b2017-01-19 17:49:03 +00005298void Dbg::DbgThreadLifecycleCallback::ThreadStart(Thread* self) {
5299 Dbg::PostThreadStart(self);
5300}
5301
5302void Dbg::DbgThreadLifecycleCallback::ThreadDeath(Thread* self) {
5303 Dbg::PostThreadDeath(self);
5304}
5305
Andreas Gampe0f01b582017-01-18 15:22:37 -08005306void Dbg::DbgClassLoadCallback::ClassLoad(Handle<mirror::Class> klass ATTRIBUTE_UNUSED) {
5307 // Ignore ClassLoad;
5308}
5309void Dbg::DbgClassLoadCallback::ClassPrepare(Handle<mirror::Class> temp_klass ATTRIBUTE_UNUSED,
5310 Handle<mirror::Class> klass) {
5311 Dbg::PostClassPrepare(klass.Get());
5312}
5313
Elliott Hughes872d4ec2011-10-21 17:07:15 -07005314} // namespace art