blob: f1f4a03861826b79bc52009701464da0dc5ac117 [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
Elliott Hughes872d4ec2011-10-21 17:07:15 -070017#include <stdlib.h>
18#include <string.h>
19#include <unistd.h>
Ian Rogers700a4022014-05-19 16:49:03 -070020#include <memory>
Elliott Hughesa96836a2013-01-17 12:27:49 -080021#include <string>
22
Elliott Hughes07ed66b2012-12-12 18:34:25 -080023#include "atomic.h"
Ian Rogers43b2e0f2014-01-30 16:58:39 -080024#include "base/hex_dump.h"
Elliott Hughes07ed66b2012-12-12 18:34:25 -080025#include "base/logging.h"
26#include "base/macros.h"
Elliott Hughese222ee02012-12-13 14:41:43 -080027#include "base/stringprintf.h"
Elliott Hughes07ed66b2012-12-12 18:34:25 -080028#include "debugger.h"
29#include "jdwp/jdwp_constants.h"
30#include "jdwp/jdwp_event.h"
31#include "jdwp/jdwp_expand_buf.h"
32#include "jdwp/jdwp_priv.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080033#include "runtime.h"
Mathieu Chartierf1d666e2015-09-03 16:13:34 -070034#include "scoped_thread_state_change.h"
Ian Rogers693ff612013-02-01 10:56:12 -080035#include "thread-inl.h"
Vladimir Marko80afd022015-05-19 18:08:00 +010036#include "utils.h"
Elliott Hughes07ed66b2012-12-12 18:34:25 -080037
Elliott Hughes872d4ec2011-10-21 17:07:15 -070038namespace art {
39
40namespace JDWP {
41
Elliott Hughes4b9702c2013-02-20 18:13:24 -080042std::string DescribeField(const FieldId& field_id) {
Mathieu Chartierd3ed9a32015-04-10 14:23:35 -070043 return StringPrintf("%#" PRIx64 " (%s)", field_id, Dbg::GetFieldName(field_id).c_str());
Elliott Hughesa96836a2013-01-17 12:27:49 -080044}
45
Elliott Hughes4b9702c2013-02-20 18:13:24 -080046std::string DescribeMethod(const MethodId& method_id) {
Mathieu Chartierd3ed9a32015-04-10 14:23:35 -070047 return StringPrintf("%#" PRIx64 " (%s)", method_id, Dbg::GetMethodName(method_id).c_str());
Elliott Hughesa96836a2013-01-17 12:27:49 -080048}
49
Elliott Hughes4b9702c2013-02-20 18:13:24 -080050std::string DescribeRefTypeId(const RefTypeId& ref_type_id) {
Elliott Hughesa96836a2013-01-17 12:27:49 -080051 std::string signature("unknown");
Ian Rogersfc0e94b2013-09-23 23:51:32 -070052 Dbg::GetSignature(ref_type_id, &signature);
Ian Rogersd9e4e0c2014-01-23 20:11:40 -080053 return StringPrintf("%#" PRIx64 " (%s)", ref_type_id, signature.c_str());
Elliott Hughes872d4ec2011-10-21 17:07:15 -070054}
55
Elliott Hughes4993bbc2013-01-10 15:41:25 -080056static JdwpError WriteTaggedObject(ExpandBuf* reply, ObjectId object_id)
Mathieu Chartier90443472015-07-16 20:32:27 -070057 SHARED_REQUIRES(Locks::mutator_lock_) {
Elliott Hughes4993bbc2013-01-10 15:41:25 -080058 uint8_t tag;
Ian Rogersc0542af2014-09-03 16:16:56 -070059 JdwpError rc = Dbg::GetObjectTag(object_id, &tag);
Elliott Hughes4993bbc2013-01-10 15:41:25 -080060 if (rc == ERR_NONE) {
61 expandBufAdd1(reply, tag);
62 expandBufAddObjectId(reply, object_id);
63 }
64 return rc;
65}
66
Elliott Hughes0cbaff52013-01-16 15:28:01 -080067static JdwpError WriteTaggedObjectList(ExpandBuf* reply, const std::vector<ObjectId>& objects)
Mathieu Chartier90443472015-07-16 20:32:27 -070068 SHARED_REQUIRES(Locks::mutator_lock_) {
Elliott Hughes0cbaff52013-01-16 15:28:01 -080069 expandBufAdd4BE(reply, objects.size());
70 for (size_t i = 0; i < objects.size(); ++i) {
71 JdwpError rc = WriteTaggedObject(reply, objects[i]);
72 if (rc != ERR_NONE) {
73 return rc;
74 }
75 }
76 return ERR_NONE;
77}
78
Elliott Hughes872d4ec2011-10-21 17:07:15 -070079/*
80 * Common code for *_InvokeMethod requests.
81 *
Elliott Hughes74847412012-06-20 18:10:21 -070082 * If "is_constructor" is set, this returns "object_id" rather than the
Elliott Hughes872d4ec2011-10-21 17:07:15 -070083 * expected-to-be-void return value of the called function.
84 */
Sebastien Hertzcbc50642015-06-01 17:33:12 +020085static JdwpError RequestInvoke(JdwpState*, Request* request,
Sebastien Hertz1558b572015-02-25 15:05:59 +010086 ObjectId thread_id, ObjectId object_id,
87 RefTypeId class_id, MethodId method_id, bool is_constructor)
Mathieu Chartier90443472015-07-16 20:32:27 -070088 SHARED_REQUIRES(Locks::mutator_lock_) {
Elliott Hughes74847412012-06-20 18:10:21 -070089 CHECK(!is_constructor || object_id != 0);
Elliott Hughes872d4ec2011-10-21 17:07:15 -070090
Ian Rogersc0542af2014-09-03 16:16:56 -070091 int32_t arg_count = request->ReadSigned32("argument count");
Elliott Hughes872d4ec2011-10-21 17:07:15 -070092
Ian Rogersd9e4e0c2014-01-23 20:11:40 -080093 VLOG(jdwp) << StringPrintf(" --> thread_id=%#" PRIx64 " object_id=%#" PRIx64,
94 thread_id, object_id);
Mathieu Chartierd3ed9a32015-04-10 14:23:35 -070095 VLOG(jdwp) << StringPrintf(" class_id=%#" PRIx64 " method_id=%#" PRIx64 " %s.%s",
96 class_id, method_id, Dbg::GetClassName(class_id).c_str(),
Elliott Hughesa96836a2013-01-17 12:27:49 -080097 Dbg::GetMethodName(method_id).c_str());
Elliott Hughes45651fd2012-02-21 15:48:20 -080098 VLOG(jdwp) << StringPrintf(" %d args:", arg_count);
Elliott Hughes872d4ec2011-10-21 17:07:15 -070099
Sebastien Hertz7d955652014-10-22 10:57:10 +0200100 std::unique_ptr<JdwpTag[]> argTypes(arg_count > 0 ? new JdwpTag[arg_count] : nullptr);
101 std::unique_ptr<uint64_t[]> argValues(arg_count > 0 ? new uint64_t[arg_count] : nullptr);
Elliott Hughesa96836a2013-01-17 12:27:49 -0800102 for (int32_t i = 0; i < arg_count; ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700103 argTypes[i] = request->ReadTag();
Elliott Hughes45651fd2012-02-21 15:48:20 -0800104 size_t width = Dbg::GetTagWidth(argTypes[i]);
Ian Rogersc0542af2014-09-03 16:16:56 -0700105 argValues[i] = request->ReadValue(width);
Ian Rogersd9e4e0c2014-01-23 20:11:40 -0800106 VLOG(jdwp) << " " << argTypes[i] << StringPrintf("(%zd): %#" PRIx64, width,
107 argValues[i]);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700108 }
109
Ian Rogersc0542af2014-09-03 16:16:56 -0700110 uint32_t options = request->ReadUnsigned32("InvokeOptions bit flags");
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700111 VLOG(jdwp) << StringPrintf(" options=0x%04x%s%s", options,
112 (options & INVOKE_SINGLE_THREADED) ? " (SINGLE_THREADED)" : "",
113 (options & INVOKE_NONVIRTUAL) ? " (NONVIRTUAL)" : "");
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700114
Sebastien Hertzcbc50642015-06-01 17:33:12 +0200115 JDWP::JdwpError error = Dbg::PrepareInvokeMethod(request->GetId(), thread_id, object_id,
116 class_id, method_id, arg_count,
117 argValues.get(), argTypes.get(), options);
118 if (error == JDWP::ERR_NONE) {
119 // We successfully requested the invoke. The event thread now owns the arguments array in its
120 // DebugInvokeReq mailbox.
121 argValues.release();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700122 }
Sebastien Hertzcbc50642015-06-01 17:33:12 +0200123 return error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700124}
125
Ian Rogersc0542af2014-09-03 16:16:56 -0700126static JdwpError VM_Version(JdwpState*, Request*, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -0700127 SHARED_REQUIRES(Locks::mutator_lock_) {
Elliott Hughes927bd292013-01-17 10:40:13 -0800128 // Text information on runtime version.
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700129 std::string version(StringPrintf("Android Runtime %s", Runtime::Current()->GetVersion()));
Elliott Hughes4740cdf2011-12-07 14:07:12 -0800130 expandBufAddUtf8String(pReply, version);
Elliott Hughes927bd292013-01-17 10:40:13 -0800131
132 // JDWP version numbers, major and minor.
133 expandBufAdd4BE(pReply, 1);
134 expandBufAdd4BE(pReply, 6);
135
136 // "java.version".
137 expandBufAddUtf8String(pReply, "1.6.0");
138
139 // "java.vm.name".
140 expandBufAddUtf8String(pReply, "Dalvik");
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700141
142 return ERR_NONE;
143}
144
145/*
146 * Given a class JNI signature (e.g. "Ljava/lang/Error;"), return the
147 * referenceTypeID. We need to send back more than one if the class has
148 * been loaded by multiple class loaders.
149 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700150static JdwpError VM_ClassesBySignature(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -0700151 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700152 std::string classDescriptor(request->ReadUtf8String());
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700153
Elliott Hughes6fa602d2011-12-02 17:54:25 -0800154 std::vector<RefTypeId> ids;
Ian Rogersc0542af2014-09-03 16:16:56 -0700155 Dbg::FindLoadedClassBySignature(classDescriptor.c_str(), &ids);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700156
Elliott Hughes6fa602d2011-12-02 17:54:25 -0800157 expandBufAdd4BE(pReply, ids.size());
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700158
Elliott Hughes6fa602d2011-12-02 17:54:25 -0800159 for (size_t i = 0; i < ids.size(); ++i) {
160 // Get class vs. interface and status flags.
Elliott Hughes436e3722012-02-17 20:01:47 -0800161 JDWP::JdwpTypeTag type_tag;
162 uint32_t class_status;
Sebastien Hertz7d955652014-10-22 10:57:10 +0200163 JDWP::JdwpError status = Dbg::GetClassInfo(ids[i], &type_tag, &class_status, nullptr);
Elliott Hughes436e3722012-02-17 20:01:47 -0800164 if (status != ERR_NONE) {
165 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800166 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700167
Elliott Hughes436e3722012-02-17 20:01:47 -0800168 expandBufAdd1(pReply, type_tag);
Elliott Hughes6fa602d2011-12-02 17:54:25 -0800169 expandBufAddRefTypeId(pReply, ids[i]);
Elliott Hughes436e3722012-02-17 20:01:47 -0800170 expandBufAdd4BE(pReply, class_status);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700171 }
172
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700173 return ERR_NONE;
174}
175
176/*
177 * Handle request for the thread IDs of all running threads.
178 *
179 * We exclude ourselves from the list, because we don't allow ourselves
180 * to be suspended, and that violates some JDWP expectations.
181 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700182static JdwpError VM_AllThreads(JdwpState*, Request*, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -0700183 SHARED_REQUIRES(Locks::mutator_lock_) {
Elliott Hughescaf76542012-06-28 16:08:22 -0700184 std::vector<ObjectId> thread_ids;
Sebastien Hertza06430c2014-09-15 19:21:30 +0200185 Dbg::GetThreads(nullptr /* all thread groups */, &thread_ids);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700186
Elliott Hughescaf76542012-06-28 16:08:22 -0700187 expandBufAdd4BE(pReply, thread_ids.size());
188 for (uint32_t i = 0; i < thread_ids.size(); ++i) {
189 expandBufAddObjectId(pReply, thread_ids[i]);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700190 }
191
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700192 return ERR_NONE;
193}
194
195/*
196 * List all thread groups that do not have a parent.
197 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700198static JdwpError VM_TopLevelThreadGroups(JdwpState*, Request*, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -0700199 SHARED_REQUIRES(Locks::mutator_lock_) {
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700200 /*
201 * TODO: maintain a list of parentless thread groups in the VM.
202 *
203 * For now, just return "system". Application threads are created
204 * in "main", which is a child of "system".
205 */
206 uint32_t groups = 1;
207 expandBufAdd4BE(pReply, groups);
Elliott Hughescaf76542012-06-28 16:08:22 -0700208 ObjectId thread_group_id = Dbg::GetSystemThreadGroupId();
209 expandBufAddObjectId(pReply, thread_group_id);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700210
211 return ERR_NONE;
212}
213
214/*
215 * Respond with the sizes of the basic debugger types.
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700216 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700217static JdwpError VM_IDSizes(JdwpState*, Request*, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -0700218 SHARED_REQUIRES(Locks::mutator_lock_) {
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700219 expandBufAdd4BE(pReply, sizeof(FieldId));
220 expandBufAdd4BE(pReply, sizeof(MethodId));
221 expandBufAdd4BE(pReply, sizeof(ObjectId));
222 expandBufAdd4BE(pReply, sizeof(RefTypeId));
223 expandBufAdd4BE(pReply, sizeof(FrameId));
224 return ERR_NONE;
225}
226
Ian Rogersc0542af2014-09-03 16:16:56 -0700227static JdwpError VM_Dispose(JdwpState*, Request*, ExpandBuf*)
Mathieu Chartier90443472015-07-16 20:32:27 -0700228 SHARED_REQUIRES(Locks::mutator_lock_) {
Sebastien Hertz4e5b2082015-03-24 19:03:40 +0100229 Dbg::Dispose();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700230 return ERR_NONE;
231}
232
233/*
234 * Suspend the execution of the application running in the VM (i.e. suspend
235 * all threads).
236 *
237 * This needs to increment the "suspend count" on all threads.
238 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700239static JdwpError VM_Suspend(JdwpState*, Request*, ExpandBuf*)
Mathieu Chartier90443472015-07-16 20:32:27 -0700240 SHARED_REQUIRES(Locks::mutator_lock_) {
jeffhaoa77f0f62012-12-05 17:19:31 -0800241 Thread* self = Thread::Current();
Mathieu Chartierf1d666e2015-09-03 16:13:34 -0700242 ScopedThreadSuspension sts(self, kWaitingForDebuggerSuspension);
Elliott Hughes475fc232011-10-25 15:00:35 -0700243 Dbg::SuspendVM();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700244 return ERR_NONE;
245}
246
247/*
248 * Resume execution. Decrements the "suspend count" of all threads.
249 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700250static JdwpError VM_Resume(JdwpState*, Request*, ExpandBuf*)
Mathieu Chartier90443472015-07-16 20:32:27 -0700251 SHARED_REQUIRES(Locks::mutator_lock_) {
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700252 Dbg::ResumeVM();
253 return ERR_NONE;
254}
255
Ian Rogersc0542af2014-09-03 16:16:56 -0700256static JdwpError VM_Exit(JdwpState* state, Request* request, ExpandBuf*)
Mathieu Chartier90443472015-07-16 20:32:27 -0700257 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700258 uint32_t exit_status = request->ReadUnsigned32("exit_status");
Elliott Hughes64f574f2013-02-20 14:57:12 -0800259 state->ExitAfterReplying(exit_status);
260 return ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700261}
262
263/*
264 * Create a new string in the VM and return its ID.
265 *
266 * (Ctrl-Shift-I in Eclipse on an array of objects causes it to create the
267 * string "java.util.Arrays".)
268 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700269static JdwpError VM_CreateString(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -0700270 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700271 std::string str(request->ReadUtf8String());
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +0200272 ObjectId string_id;
273 JdwpError status = Dbg::CreateString(str, &string_id);
274 if (status != ERR_NONE) {
275 return status;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700276 }
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +0200277 expandBufAddObjectId(pReply, string_id);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700278 return ERR_NONE;
279}
280
Ian Rogersc0542af2014-09-03 16:16:56 -0700281static JdwpError VM_ClassPaths(JdwpState*, Request*, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -0700282 SHARED_REQUIRES(Locks::mutator_lock_) {
Elliott Hughesa3ae2b72012-02-24 15:10:51 -0800283 expandBufAddUtf8String(pReply, "/");
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700284
Elliott Hughesa3ae2b72012-02-24 15:10:51 -0800285 std::vector<std::string> class_path;
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700286 Split(Runtime::Current()->GetClassPathString(), ':', &class_path);
Elliott Hughesa3ae2b72012-02-24 15:10:51 -0800287 expandBufAdd4BE(pReply, class_path.size());
Sebastien Hertze6c143f2015-01-13 10:10:40 +0100288 for (const std::string& str : class_path) {
289 expandBufAddUtf8String(pReply, str);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700290 }
291
Elliott Hughesa3ae2b72012-02-24 15:10:51 -0800292 std::vector<std::string> boot_class_path;
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700293 Split(Runtime::Current()->GetBootClassPathString(), ':', &boot_class_path);
Elliott Hughesa3ae2b72012-02-24 15:10:51 -0800294 expandBufAdd4BE(pReply, boot_class_path.size());
Sebastien Hertze6c143f2015-01-13 10:10:40 +0100295 for (const std::string& str : boot_class_path) {
296 expandBufAddUtf8String(pReply, str);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700297 }
298
299 return ERR_NONE;
300}
301
Ian Rogersc0542af2014-09-03 16:16:56 -0700302static JdwpError VM_DisposeObjects(JdwpState*, Request* request, ExpandBuf*)
Mathieu Chartier90443472015-07-16 20:32:27 -0700303 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700304 size_t object_count = request->ReadUnsigned32("object_count");
Elliott Hughes64f574f2013-02-20 14:57:12 -0800305 for (size_t i = 0; i < object_count; ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700306 ObjectId object_id = request->ReadObjectId();
307 uint32_t reference_count = request->ReadUnsigned32("reference_count");
Elliott Hughes64f574f2013-02-20 14:57:12 -0800308 Dbg::DisposeObject(object_id, reference_count);
309 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700310 return ERR_NONE;
311}
312
Ian Rogersc0542af2014-09-03 16:16:56 -0700313static JdwpError VM_Capabilities(JdwpState*, Request*, ExpandBuf* reply)
Mathieu Chartier90443472015-07-16 20:32:27 -0700314 SHARED_REQUIRES(Locks::mutator_lock_) {
Sebastien Hertz479fc1e2014-04-04 17:51:34 +0200315 expandBufAdd1(reply, true); // canWatchFieldModification
316 expandBufAdd1(reply, true); // canWatchFieldAccess
Elliott Hughes9777ba22013-01-17 09:04:19 -0800317 expandBufAdd1(reply, true); // canGetBytecodes
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800318 expandBufAdd1(reply, true); // canGetSyntheticAttribute
319 expandBufAdd1(reply, true); // canGetOwnedMonitorInfo
Elliott Hughesf9501702013-01-11 11:22:27 -0800320 expandBufAdd1(reply, true); // canGetCurrentContendedMonitor
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800321 expandBufAdd1(reply, true); // canGetMonitorInfo
322 return ERR_NONE;
323}
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700324
Ian Rogersc0542af2014-09-03 16:16:56 -0700325static JdwpError VM_CapabilitiesNew(JdwpState*, Request* request, ExpandBuf* reply)
Mathieu Chartier90443472015-07-16 20:32:27 -0700326 SHARED_REQUIRES(Locks::mutator_lock_) {
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800327 // The first few capabilities are the same as those reported by the older call.
Sebastien Hertz7d955652014-10-22 10:57:10 +0200328 VM_Capabilities(nullptr, request, reply);
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800329
330 expandBufAdd1(reply, false); // canRedefineClasses
331 expandBufAdd1(reply, false); // canAddMethod
332 expandBufAdd1(reply, false); // canUnrestrictedlyRedefineClasses
333 expandBufAdd1(reply, false); // canPopFrames
Sebastien Hertz5f4e6f52014-04-11 12:07:41 +0200334 expandBufAdd1(reply, true); // canUseInstanceFilters
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800335 expandBufAdd1(reply, false); // canGetSourceDebugExtension
336 expandBufAdd1(reply, false); // canRequestVMDeathEvent
337 expandBufAdd1(reply, false); // canSetDefaultStratum
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800338 expandBufAdd1(reply, true); // 1.6: canGetInstanceInfo
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800339 expandBufAdd1(reply, false); // 1.6: canRequestMonitorEvents
Elliott Hughes734b8c62013-01-11 15:32:45 -0800340 expandBufAdd1(reply, true); // 1.6: canGetMonitorFrameInfo
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800341 expandBufAdd1(reply, false); // 1.6: canUseSourceNameFilters
342 expandBufAdd1(reply, false); // 1.6: canGetConstantPool
343 expandBufAdd1(reply, false); // 1.6: canForceEarlyReturn
344
345 // Fill in reserved22 through reserved32; note count started at 1.
346 for (size_t i = 22; i <= 32; ++i) {
347 expandBufAdd1(reply, false);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700348 }
349 return ERR_NONE;
350}
351
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700352static JdwpError VM_AllClassesImpl(ExpandBuf* pReply, bool descriptor_and_status, bool generic)
Mathieu Chartier90443472015-07-16 20:32:27 -0700353 SHARED_REQUIRES(Locks::mutator_lock_) {
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800354 std::vector<JDWP::RefTypeId> classes;
Ian Rogersc0542af2014-09-03 16:16:56 -0700355 Dbg::GetClassList(&classes);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700356
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800357 expandBufAdd4BE(pReply, classes.size());
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700358
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800359 for (size_t i = 0; i < classes.size(); ++i) {
Elliott Hughesa2155262011-11-16 16:26:58 -0800360 static const char genericSignature[1] = "";
Elliott Hughes436e3722012-02-17 20:01:47 -0800361 JDWP::JdwpTypeTag type_tag;
Elliott Hughesa2155262011-11-16 16:26:58 -0800362 std::string descriptor;
Elliott Hughes436e3722012-02-17 20:01:47 -0800363 uint32_t class_status;
364 JDWP::JdwpError status = Dbg::GetClassInfo(classes[i], &type_tag, &class_status, &descriptor);
365 if (status != ERR_NONE) {
366 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800367 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700368
Elliott Hughes436e3722012-02-17 20:01:47 -0800369 expandBufAdd1(pReply, type_tag);
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800370 expandBufAddRefTypeId(pReply, classes[i]);
Elliott Hughes86964332012-02-15 19:37:42 -0800371 if (descriptor_and_status) {
372 expandBufAddUtf8String(pReply, descriptor);
373 if (generic) {
374 expandBufAddUtf8String(pReply, genericSignature);
375 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800376 expandBufAdd4BE(pReply, class_status);
Elliott Hughes1fe7afb2012-02-13 17:23:03 -0800377 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700378 }
379
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700380 return ERR_NONE;
381}
382
Ian Rogersc0542af2014-09-03 16:16:56 -0700383static JdwpError VM_AllClasses(JdwpState*, Request*, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -0700384 SHARED_REQUIRES(Locks::mutator_lock_) {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -0700385 return VM_AllClassesImpl(pReply, true, false);
Elliott Hughes1fe7afb2012-02-13 17:23:03 -0800386}
387
Ian Rogersc0542af2014-09-03 16:16:56 -0700388static JdwpError VM_AllClassesWithGeneric(JdwpState*, Request*, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -0700389 SHARED_REQUIRES(Locks::mutator_lock_) {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -0700390 return VM_AllClassesImpl(pReply, true, true);
Elliott Hughes1fe7afb2012-02-13 17:23:03 -0800391}
392
Ian Rogersc0542af2014-09-03 16:16:56 -0700393static JdwpError VM_InstanceCounts(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -0700394 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700395 int32_t class_count = request->ReadSigned32("class count");
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800396 if (class_count < 0) {
397 return ERR_ILLEGAL_ARGUMENT;
398 }
399 std::vector<RefTypeId> class_ids;
400 for (int32_t i = 0; i < class_count; ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700401 class_ids.push_back(request->ReadRefTypeId());
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800402 }
403
404 std::vector<uint64_t> counts;
Ian Rogersc0542af2014-09-03 16:16:56 -0700405 JdwpError rc = Dbg::GetInstanceCounts(class_ids, &counts);
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800406 if (rc != ERR_NONE) {
407 return rc;
408 }
409
410 expandBufAdd4BE(pReply, counts.size());
411 for (size_t i = 0; i < counts.size(); ++i) {
412 expandBufAdd8BE(pReply, counts[i]);
413 }
414 return ERR_NONE;
415}
416
Ian Rogersc0542af2014-09-03 16:16:56 -0700417static JdwpError RT_Modifiers(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -0700418 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700419 RefTypeId refTypeId = request->ReadRefTypeId();
Elliott Hughes436e3722012-02-17 20:01:47 -0800420 return Dbg::GetModifiers(refTypeId, pReply);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700421}
422
423/*
424 * Get values from static fields in a reference type.
425 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700426static JdwpError RT_GetValues(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -0700427 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700428 RefTypeId refTypeId = request->ReadRefTypeId();
429 int32_t field_count = request->ReadSigned32("field count");
Elliott Hughes0cf74332012-02-23 23:14:00 -0800430 expandBufAdd4BE(pReply, field_count);
Elliott Hughesa96836a2013-01-17 12:27:49 -0800431 for (int32_t i = 0; i < field_count; ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700432 FieldId fieldId = request->ReadFieldId();
Elliott Hughes0cf74332012-02-23 23:14:00 -0800433 JdwpError status = Dbg::GetStaticFieldValue(refTypeId, fieldId, pReply);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -0800434 if (status != ERR_NONE) {
435 return status;
436 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700437 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700438 return ERR_NONE;
439}
440
441/*
442 * Get the name of the source file in which a reference type was declared.
443 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700444static JdwpError RT_SourceFile(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -0700445 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700446 RefTypeId refTypeId = request->ReadRefTypeId();
Elliott Hughes03181a82011-11-17 17:22:21 -0800447 std::string source_file;
Ian Rogersc0542af2014-09-03 16:16:56 -0700448 JdwpError status = Dbg::GetSourceFile(refTypeId, &source_file);
Elliott Hughes436e3722012-02-17 20:01:47 -0800449 if (status != ERR_NONE) {
450 return status;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700451 }
Elliott Hughes4740cdf2011-12-07 14:07:12 -0800452 expandBufAddUtf8String(pReply, source_file);
Elliott Hughes03181a82011-11-17 17:22:21 -0800453 return ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700454}
455
456/*
457 * Return the current status of the reference type.
458 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700459static JdwpError RT_Status(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -0700460 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700461 RefTypeId refTypeId = request->ReadRefTypeId();
Elliott Hughes436e3722012-02-17 20:01:47 -0800462 JDWP::JdwpTypeTag type_tag;
463 uint32_t class_status;
Sebastien Hertz7d955652014-10-22 10:57:10 +0200464 JDWP::JdwpError status = Dbg::GetClassInfo(refTypeId, &type_tag, &class_status, nullptr);
Elliott Hughes436e3722012-02-17 20:01:47 -0800465 if (status != ERR_NONE) {
466 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800467 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800468 expandBufAdd4BE(pReply, class_status);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700469 return ERR_NONE;
470}
471
472/*
473 * Return interfaces implemented directly by this class.
474 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700475static JdwpError RT_Interfaces(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -0700476 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700477 RefTypeId refTypeId = request->ReadRefTypeId();
Elliott Hughes436e3722012-02-17 20:01:47 -0800478 return Dbg::OutputDeclaredInterfaces(refTypeId, pReply);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700479}
480
481/*
482 * Return the class object corresponding to this type.
483 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700484static JdwpError RT_ClassObject(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -0700485 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700486 RefTypeId refTypeId = request->ReadRefTypeId();
Elliott Hughesa96836a2013-01-17 12:27:49 -0800487 ObjectId class_object_id;
Ian Rogersc0542af2014-09-03 16:16:56 -0700488 JdwpError status = Dbg::GetClassObject(refTypeId, &class_object_id);
Elliott Hughes436e3722012-02-17 20:01:47 -0800489 if (status != ERR_NONE) {
490 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800491 }
Ian Rogersd9e4e0c2014-01-23 20:11:40 -0800492 VLOG(jdwp) << StringPrintf(" --> ObjectId %#" PRIx64, class_object_id);
Elliott Hughesa96836a2013-01-17 12:27:49 -0800493 expandBufAddObjectId(pReply, class_object_id);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700494 return ERR_NONE;
495}
496
497/*
498 * Returns the value of the SourceDebugExtension attribute.
499 *
500 * JDB seems interested, but DEX files don't currently support this.
501 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700502static JdwpError RT_SourceDebugExtension(JdwpState*, Request*, ExpandBuf*)
Mathieu Chartier90443472015-07-16 20:32:27 -0700503 SHARED_REQUIRES(Locks::mutator_lock_) {
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700504 /* referenceTypeId in, string out */
505 return ERR_ABSENT_INFORMATION;
506}
507
Ian Rogersc0542af2014-09-03 16:16:56 -0700508static JdwpError RT_Signature(JdwpState*, Request* request, ExpandBuf* pReply, bool with_generic)
Mathieu Chartier90443472015-07-16 20:32:27 -0700509 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700510 RefTypeId refTypeId = request->ReadRefTypeId();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700511
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800512 std::string signature;
Ian Rogersfc0e94b2013-09-23 23:51:32 -0700513 JdwpError status = Dbg::GetSignature(refTypeId, &signature);
Elliott Hughes98e43f62012-02-24 12:42:35 -0800514 if (status != ERR_NONE) {
515 return status;
516 }
517 expandBufAddUtf8String(pReply, signature);
518 if (with_generic) {
Elliott Hughes0cf74332012-02-23 23:14:00 -0800519 expandBufAddUtf8String(pReply, "");
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700520 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700521 return ERR_NONE;
522}
523
Ian Rogersc0542af2014-09-03 16:16:56 -0700524static JdwpError RT_Signature(JdwpState* state, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -0700525 SHARED_REQUIRES(Locks::mutator_lock_) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -0800526 return RT_Signature(state, request, pReply, false);
Elliott Hughes98e43f62012-02-24 12:42:35 -0800527}
528
Ian Rogersc0542af2014-09-03 16:16:56 -0700529static JdwpError RT_SignatureWithGeneric(JdwpState* state, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -0700530 SHARED_REQUIRES(Locks::mutator_lock_) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -0800531 return RT_Signature(state, request, pReply, true);
Elliott Hughes98e43f62012-02-24 12:42:35 -0800532}
533
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700534/*
535 * Return the instance of java.lang.ClassLoader that loaded the specified
536 * reference type, or null if it was loaded by the system loader.
537 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700538static JdwpError RT_ClassLoader(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -0700539 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700540 RefTypeId refTypeId = request->ReadRefTypeId();
Elliott Hughes436e3722012-02-17 20:01:47 -0800541 return Dbg::GetClassLoader(refTypeId, pReply);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700542}
543
544/*
545 * Given a referenceTypeId, return a block of stuff that describes the
546 * fields declared by a class.
547 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700548static JdwpError RT_FieldsWithGeneric(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -0700549 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700550 RefTypeId refTypeId = request->ReadRefTypeId();
Elliott Hughes436e3722012-02-17 20:01:47 -0800551 return Dbg::OutputDeclaredFields(refTypeId, true, pReply);
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800552}
553
554// Obsolete equivalent of FieldsWithGeneric, without the generic type information.
Ian Rogersc0542af2014-09-03 16:16:56 -0700555static JdwpError RT_Fields(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -0700556 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700557 RefTypeId refTypeId = request->ReadRefTypeId();
Elliott Hughes436e3722012-02-17 20:01:47 -0800558 return Dbg::OutputDeclaredFields(refTypeId, false, pReply);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700559}
560
561/*
562 * Given a referenceTypeID, return a block of goodies describing the
563 * methods declared by a class.
564 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700565static JdwpError RT_MethodsWithGeneric(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -0700566 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700567 RefTypeId refTypeId = request->ReadRefTypeId();
Elliott Hughes436e3722012-02-17 20:01:47 -0800568 return Dbg::OutputDeclaredMethods(refTypeId, true, pReply);
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800569}
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700570
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800571// Obsolete equivalent of MethodsWithGeneric, without the generic type information.
Ian Rogersc0542af2014-09-03 16:16:56 -0700572static JdwpError RT_Methods(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -0700573 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700574 RefTypeId refTypeId = request->ReadRefTypeId();
Elliott Hughes436e3722012-02-17 20:01:47 -0800575 return Dbg::OutputDeclaredMethods(refTypeId, false, pReply);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700576}
577
Ian Rogersc0542af2014-09-03 16:16:56 -0700578static JdwpError RT_Instances(JdwpState*, Request* request, ExpandBuf* reply)
Mathieu Chartier90443472015-07-16 20:32:27 -0700579 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700580 RefTypeId class_id = request->ReadRefTypeId();
581 int32_t max_count = request->ReadSigned32("max count");
Elliott Hughes3b78c942013-01-15 17:35:41 -0800582 if (max_count < 0) {
583 return ERR_ILLEGAL_ARGUMENT;
584 }
585
586 std::vector<ObjectId> instances;
Ian Rogersc0542af2014-09-03 16:16:56 -0700587 JdwpError rc = Dbg::GetInstances(class_id, max_count, &instances);
Elliott Hughes3b78c942013-01-15 17:35:41 -0800588 if (rc != ERR_NONE) {
589 return rc;
590 }
591
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800592 return WriteTaggedObjectList(reply, instances);
Elliott Hughes3b78c942013-01-15 17:35:41 -0800593}
594
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700595/*
596 * Return the immediate superclass of a class.
597 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700598static JdwpError CT_Superclass(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -0700599 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700600 RefTypeId class_id = request->ReadRefTypeId();
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800601 RefTypeId superClassId;
Ian Rogersc0542af2014-09-03 16:16:56 -0700602 JdwpError status = Dbg::GetSuperclass(class_id, &superClassId);
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800603 if (status != ERR_NONE) {
604 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800605 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700606 expandBufAddRefTypeId(pReply, superClassId);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700607 return ERR_NONE;
608}
609
610/*
611 * Set static class values.
612 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700613static JdwpError CT_SetValues(JdwpState* , Request* request, ExpandBuf*)
Mathieu Chartier90443472015-07-16 20:32:27 -0700614 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700615 RefTypeId class_id = request->ReadRefTypeId();
616 int32_t values_count = request->ReadSigned32("values count");
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700617
Elliott Hughesa96836a2013-01-17 12:27:49 -0800618 UNUSED(class_id);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700619
Elliott Hughesa96836a2013-01-17 12:27:49 -0800620 for (int32_t i = 0; i < values_count; ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700621 FieldId fieldId = request->ReadFieldId();
Elliott Hughesaed4be92011-12-02 16:16:23 -0800622 JDWP::JdwpTag fieldTag = Dbg::GetStaticFieldBasicTag(fieldId);
Elliott Hughesdbb40792011-11-18 17:05:22 -0800623 size_t width = Dbg::GetTagWidth(fieldTag);
Ian Rogersc0542af2014-09-03 16:16:56 -0700624 uint64_t value = request->ReadValue(width);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700625
Elliott Hughesa96836a2013-01-17 12:27:49 -0800626 VLOG(jdwp) << " --> field=" << fieldId << " tag=" << fieldTag << " --> " << value;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800627 JdwpError status = Dbg::SetStaticFieldValue(fieldId, value, width);
628 if (status != ERR_NONE) {
629 return status;
630 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700631 }
632
633 return ERR_NONE;
634}
635
636/*
637 * Invoke a static method.
638 *
639 * Example: Eclipse sometimes uses java/lang/Class.forName(String s) on
640 * values in the "variables" display.
641 */
Sebastien Hertzcbc50642015-06-01 17:33:12 +0200642static JdwpError CT_InvokeMethod(JdwpState* state, Request* request,
643 ExpandBuf* pReply ATTRIBUTE_UNUSED)
Mathieu Chartier90443472015-07-16 20:32:27 -0700644 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700645 RefTypeId class_id = request->ReadRefTypeId();
646 ObjectId thread_id = request->ReadThreadId();
647 MethodId method_id = request->ReadMethodId();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700648
Sebastien Hertzcbc50642015-06-01 17:33:12 +0200649 return RequestInvoke(state, request, thread_id, 0, class_id, method_id, false);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700650}
651
652/*
653 * Create a new object of the requested type, and invoke the specified
654 * constructor.
655 *
656 * Example: in IntelliJ, create a watch on "new String(myByteArray)" to
657 * see the contents of a byte[] as a string.
658 */
Sebastien Hertzcbc50642015-06-01 17:33:12 +0200659static JdwpError CT_NewInstance(JdwpState* state, Request* request,
660 ExpandBuf* pReply ATTRIBUTE_UNUSED)
Mathieu Chartier90443472015-07-16 20:32:27 -0700661 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700662 RefTypeId class_id = request->ReadRefTypeId();
663 ObjectId thread_id = request->ReadThreadId();
664 MethodId method_id = request->ReadMethodId();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700665
Elliott Hughes74847412012-06-20 18:10:21 -0700666 ObjectId object_id;
Ian Rogersc0542af2014-09-03 16:16:56 -0700667 JdwpError status = Dbg::CreateObject(class_id, &object_id);
Elliott Hughes436e3722012-02-17 20:01:47 -0800668 if (status != ERR_NONE) {
669 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800670 }
Sebastien Hertzcbc50642015-06-01 17:33:12 +0200671 return RequestInvoke(state, request, thread_id, object_id, class_id, method_id, true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700672}
673
674/*
675 * Create a new array object of the requested type and length.
676 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700677static JdwpError AT_newInstance(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -0700678 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700679 RefTypeId arrayTypeId = request->ReadRefTypeId();
680 int32_t length = request->ReadSigned32("length");
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700681
Elliott Hughes74847412012-06-20 18:10:21 -0700682 ObjectId object_id;
Ian Rogersc0542af2014-09-03 16:16:56 -0700683 JdwpError status = Dbg::CreateArrayObject(arrayTypeId, length, &object_id);
Elliott Hughes436e3722012-02-17 20:01:47 -0800684 if (status != ERR_NONE) {
685 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800686 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700687 expandBufAdd1(pReply, JT_ARRAY);
Elliott Hughes74847412012-06-20 18:10:21 -0700688 expandBufAddObjectId(pReply, object_id);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700689 return ERR_NONE;
690}
691
692/*
693 * Return line number information for the method, if present.
694 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700695static JdwpError M_LineTable(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -0700696 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700697 RefTypeId refTypeId = request->ReadRefTypeId();
698 MethodId method_id = request->ReadMethodId();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700699
Elliott Hughes74847412012-06-20 18:10:21 -0700700 Dbg::OutputLineTable(refTypeId, method_id, pReply);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700701
702 return ERR_NONE;
703}
704
Ian Rogersc0542af2014-09-03 16:16:56 -0700705static JdwpError M_VariableTable(JdwpState*, Request* request, ExpandBuf* pReply,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700706 bool generic)
Mathieu Chartier90443472015-07-16 20:32:27 -0700707 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700708 RefTypeId class_id = request->ReadRefTypeId();
709 MethodId method_id = request->ReadMethodId();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700710
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800711 // We could return ERR_ABSENT_INFORMATION here if the DEX file was built without local variable
712 // information. That will cause Eclipse to make a best-effort attempt at displaying local
713 // variables anonymously. However, the attempt isn't very good, so we're probably better off just
714 // not showing anything.
Elliott Hughes74847412012-06-20 18:10:21 -0700715 Dbg::OutputVariableTable(class_id, method_id, generic, pReply);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700716 return ERR_NONE;
717}
718
Ian Rogersc0542af2014-09-03 16:16:56 -0700719static JdwpError M_VariableTable(JdwpState* state, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -0700720 SHARED_REQUIRES(Locks::mutator_lock_) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -0800721 return M_VariableTable(state, request, pReply, false);
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800722}
723
Ian Rogersc0542af2014-09-03 16:16:56 -0700724static JdwpError M_VariableTableWithGeneric(JdwpState* state, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -0700725 SHARED_REQUIRES(Locks::mutator_lock_) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -0800726 return M_VariableTable(state, request, pReply, true);
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800727}
728
Ian Rogersc0542af2014-09-03 16:16:56 -0700729static JdwpError M_Bytecodes(JdwpState*, Request* request, ExpandBuf* reply)
Mathieu Chartier90443472015-07-16 20:32:27 -0700730 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700731 RefTypeId class_id = request->ReadRefTypeId();
732 MethodId method_id = request->ReadMethodId();
Elliott Hughes9777ba22013-01-17 09:04:19 -0800733
734 std::vector<uint8_t> bytecodes;
Ian Rogersc0542af2014-09-03 16:16:56 -0700735 JdwpError rc = Dbg::GetBytecodes(class_id, method_id, &bytecodes);
Elliott Hughes9777ba22013-01-17 09:04:19 -0800736 if (rc != ERR_NONE) {
737 return rc;
738 }
739
740 expandBufAdd4BE(reply, bytecodes.size());
741 for (size_t i = 0; i < bytecodes.size(); ++i) {
742 expandBufAdd1(reply, bytecodes[i]);
743 }
744
745 return ERR_NONE;
746}
747
Sebastien Hertz0a97fc62015-11-09 12:18:06 +0100748// Default implementation for IDEs relying on this command.
749static JdwpError M_IsObsolete(JdwpState*, Request* request, ExpandBuf* reply)
750 SHARED_REQUIRES(Locks::mutator_lock_) {
751 request->ReadRefTypeId(); // unused reference type ID
752 request->ReadMethodId(); // unused method ID
753 expandBufAdd1(reply, false); // a method is never obsolete.
754 return ERR_NONE;
755}
756
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700757/*
758 * Given an object reference, return the runtime type of the object
759 * (class or array).
760 *
Elliott Hughes74847412012-06-20 18:10:21 -0700761 * This can get called on different things, e.g. thread_id gets
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700762 * passed in here.
763 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700764static JdwpError OR_ReferenceType(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -0700765 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700766 ObjectId object_id = request->ReadObjectId();
Elliott Hughes74847412012-06-20 18:10:21 -0700767 return Dbg::GetReferenceType(object_id, pReply);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700768}
769
770/*
771 * Get values from the fields of an object.
772 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700773static JdwpError OR_GetValues(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -0700774 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700775 ObjectId object_id = request->ReadObjectId();
776 int32_t field_count = request->ReadSigned32("field count");
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700777
Elliott Hughes0cf74332012-02-23 23:14:00 -0800778 expandBufAdd4BE(pReply, field_count);
Elliott Hughesa96836a2013-01-17 12:27:49 -0800779 for (int32_t i = 0; i < field_count; ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700780 FieldId fieldId = request->ReadFieldId();
Elliott Hughes74847412012-06-20 18:10:21 -0700781 JdwpError status = Dbg::GetFieldValue(object_id, fieldId, pReply);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -0800782 if (status != ERR_NONE) {
783 return status;
784 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700785 }
786
787 return ERR_NONE;
788}
789
790/*
791 * Set values in the fields of an object.
792 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700793static JdwpError OR_SetValues(JdwpState*, Request* request, ExpandBuf*)
Mathieu Chartier90443472015-07-16 20:32:27 -0700794 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700795 ObjectId object_id = request->ReadObjectId();
796 int32_t field_count = request->ReadSigned32("field count");
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700797
Elliott Hughesa96836a2013-01-17 12:27:49 -0800798 for (int32_t i = 0; i < field_count; ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700799 FieldId fieldId = request->ReadFieldId();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700800
Elliott Hughesaed4be92011-12-02 16:16:23 -0800801 JDWP::JdwpTag fieldTag = Dbg::GetFieldBasicTag(fieldId);
Elliott Hughesdbb40792011-11-18 17:05:22 -0800802 size_t width = Dbg::GetTagWidth(fieldTag);
Ian Rogersc0542af2014-09-03 16:16:56 -0700803 uint64_t value = request->ReadValue(width);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700804
Elliott Hughes2435a572012-02-17 16:07:41 -0800805 VLOG(jdwp) << " --> fieldId=" << fieldId << " tag=" << fieldTag << "(" << width << ") value=" << value;
Elliott Hughes74847412012-06-20 18:10:21 -0700806 JdwpError status = Dbg::SetFieldValue(object_id, fieldId, value, width);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -0800807 if (status != ERR_NONE) {
808 return status;
809 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700810 }
811
812 return ERR_NONE;
813}
814
Ian Rogersc0542af2014-09-03 16:16:56 -0700815static JdwpError OR_MonitorInfo(JdwpState*, Request* request, ExpandBuf* reply)
Mathieu Chartier90443472015-07-16 20:32:27 -0700816 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700817 ObjectId object_id = request->ReadObjectId();
Elliott Hughesf327e072013-01-09 16:01:26 -0800818 return Dbg::GetMonitorInfo(object_id, reply);
819}
820
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700821/*
822 * Invoke an instance method. The invocation must occur in the specified
823 * thread, which must have been suspended by an event.
824 *
825 * The call is synchronous. All threads in the VM are resumed, unless the
826 * SINGLE_THREADED flag is set.
827 *
828 * If you ask Eclipse to "inspect" an object (or ask JDB to "print" an
829 * object), it will try to invoke the object's toString() function. This
830 * feature becomes crucial when examining ArrayLists with Eclipse.
831 */
Sebastien Hertzcbc50642015-06-01 17:33:12 +0200832static JdwpError OR_InvokeMethod(JdwpState* state, Request* request,
833 ExpandBuf* pReply ATTRIBUTE_UNUSED)
Mathieu Chartier90443472015-07-16 20:32:27 -0700834 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700835 ObjectId object_id = request->ReadObjectId();
836 ObjectId thread_id = request->ReadThreadId();
837 RefTypeId class_id = request->ReadRefTypeId();
838 MethodId method_id = request->ReadMethodId();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700839
Sebastien Hertzcbc50642015-06-01 17:33:12 +0200840 return RequestInvoke(state, request, thread_id, object_id, class_id, method_id, false);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700841}
842
Ian Rogersc0542af2014-09-03 16:16:56 -0700843static JdwpError OR_DisableCollection(JdwpState*, Request* request, ExpandBuf*)
Mathieu Chartier90443472015-07-16 20:32:27 -0700844 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700845 ObjectId object_id = request->ReadObjectId();
Elliott Hughes64f574f2013-02-20 14:57:12 -0800846 return Dbg::DisableCollection(object_id);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700847}
848
Ian Rogersc0542af2014-09-03 16:16:56 -0700849static JdwpError OR_EnableCollection(JdwpState*, Request* request, ExpandBuf*)
Mathieu Chartier90443472015-07-16 20:32:27 -0700850 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700851 ObjectId object_id = request->ReadObjectId();
Elliott Hughes64f574f2013-02-20 14:57:12 -0800852 return Dbg::EnableCollection(object_id);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700853}
854
Ian Rogersc0542af2014-09-03 16:16:56 -0700855static JdwpError OR_IsCollected(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -0700856 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700857 ObjectId object_id = request->ReadObjectId();
Elliott Hughes64f574f2013-02-20 14:57:12 -0800858 bool is_collected;
Ian Rogersc0542af2014-09-03 16:16:56 -0700859 JdwpError rc = Dbg::IsCollected(object_id, &is_collected);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800860 expandBufAdd1(pReply, is_collected ? 1 : 0);
861 return rc;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700862}
863
Ian Rogersc0542af2014-09-03 16:16:56 -0700864static JdwpError OR_ReferringObjects(JdwpState*, Request* request, ExpandBuf* reply)
Mathieu Chartier90443472015-07-16 20:32:27 -0700865 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700866 ObjectId object_id = request->ReadObjectId();
867 int32_t max_count = request->ReadSigned32("max count");
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800868 if (max_count < 0) {
869 return ERR_ILLEGAL_ARGUMENT;
870 }
871
872 std::vector<ObjectId> referring_objects;
Ian Rogersc0542af2014-09-03 16:16:56 -0700873 JdwpError rc = Dbg::GetReferringObjects(object_id, max_count, &referring_objects);
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800874 if (rc != ERR_NONE) {
875 return rc;
876 }
877
878 return WriteTaggedObjectList(reply, referring_objects);
879}
880
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700881/*
882 * Return the string value in a string object.
883 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700884static JdwpError SR_Value(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -0700885 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700886 ObjectId stringObject = request->ReadObjectId();
Sebastien Hertzb0b0b492014-09-15 11:27:27 +0200887 std::string str;
888 JDWP::JdwpError error = Dbg::StringToUtf8(stringObject, &str);
889 if (error != JDWP::ERR_NONE) {
890 return error;
891 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700892
Ian Rogers68b56852014-08-29 20:19:11 -0700893 VLOG(jdwp) << StringPrintf(" --> %s", PrintableString(str.c_str()).c_str());
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700894
Elliott Hughes4740cdf2011-12-07 14:07:12 -0800895 expandBufAddUtf8String(pReply, str);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700896
897 return ERR_NONE;
898}
899
900/*
901 * Return a thread's name.
902 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700903static JdwpError TR_Name(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -0700904 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700905 ObjectId thread_id = request->ReadThreadId();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700906
Elliott Hughesa2e54f62011-11-17 13:01:30 -0800907 std::string name;
Ian Rogersc0542af2014-09-03 16:16:56 -0700908 JdwpError error = Dbg::GetThreadName(thread_id, &name);
Elliott Hughes221229c2013-01-08 18:17:50 -0800909 if (error != ERR_NONE) {
910 return error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700911 }
Ian Rogersd9e4e0c2014-01-23 20:11:40 -0800912 VLOG(jdwp) << StringPrintf(" Name of thread %#" PRIx64 " is \"%s\"", thread_id, name.c_str());
Elliott Hughes4740cdf2011-12-07 14:07:12 -0800913 expandBufAddUtf8String(pReply, name);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700914
915 return ERR_NONE;
916}
917
918/*
919 * Suspend the specified thread.
920 *
921 * It's supposed to remain suspended even if interpreted code wants to
922 * resume it; only the JDI is allowed to resume it.
923 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700924static JdwpError TR_Suspend(JdwpState*, Request* request, ExpandBuf*)
Mathieu Chartier90443472015-07-16 20:32:27 -0700925 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700926 ObjectId thread_id = request->ReadThreadId();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700927
Elliott Hughes74847412012-06-20 18:10:21 -0700928 if (thread_id == Dbg::GetThreadSelfId()) {
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700929 LOG(INFO) << " Warning: ignoring request to suspend self";
930 return ERR_THREAD_NOT_SUSPENDED;
931 }
Elliott Hughesa96836a2013-01-17 12:27:49 -0800932
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700933 Thread* self = Thread::Current();
Mathieu Chartierf1d666e2015-09-03 16:13:34 -0700934 ScopedThreadSuspension sts(self, kWaitingForDebuggerSend);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700935 JdwpError result = Dbg::SuspendThread(thread_id);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700936 return result;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700937}
938
939/*
940 * Resume the specified thread.
941 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700942static JdwpError TR_Resume(JdwpState*, Request* request, ExpandBuf*)
Mathieu Chartier90443472015-07-16 20:32:27 -0700943 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700944 ObjectId thread_id = request->ReadThreadId();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700945
Elliott Hughes74847412012-06-20 18:10:21 -0700946 if (thread_id == Dbg::GetThreadSelfId()) {
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700947 LOG(INFO) << " Warning: ignoring request to resume self";
948 return ERR_NONE;
949 }
Elliott Hughesa96836a2013-01-17 12:27:49 -0800950
Elliott Hughes74847412012-06-20 18:10:21 -0700951 Dbg::ResumeThread(thread_id);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700952 return ERR_NONE;
953}
954
955/*
956 * Return status of specified thread.
957 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700958static JdwpError TR_Status(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -0700959 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700960 ObjectId thread_id = request->ReadThreadId();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700961
Elliott Hughes3d30d9b2011-12-07 17:35:48 -0800962 JDWP::JdwpThreadStatus threadStatus;
963 JDWP::JdwpSuspendStatus suspendStatus;
Elliott Hughes221229c2013-01-08 18:17:50 -0800964 JdwpError error = Dbg::GetThreadStatus(thread_id, &threadStatus, &suspendStatus);
965 if (error != ERR_NONE) {
966 return error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700967 }
968
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800969 VLOG(jdwp) << " --> " << threadStatus << ", " << suspendStatus;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700970
971 expandBufAdd4BE(pReply, threadStatus);
972 expandBufAdd4BE(pReply, suspendStatus);
973
974 return ERR_NONE;
975}
976
977/*
978 * Return the thread group that the specified thread is a member of.
979 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700980static JdwpError TR_ThreadGroup(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -0700981 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700982 ObjectId thread_id = request->ReadThreadId();
Elliott Hughes74847412012-06-20 18:10:21 -0700983 return Dbg::GetThreadGroup(thread_id, pReply);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700984}
985
986/*
987 * Return the current call stack of a suspended thread.
988 *
989 * If the thread isn't suspended, the error code isn't defined, but should
990 * be THREAD_NOT_SUSPENDED.
991 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700992static JdwpError TR_Frames(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -0700993 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700994 ObjectId thread_id = request->ReadThreadId();
995 uint32_t start_frame = request->ReadUnsigned32("start frame");
996 uint32_t length = request->ReadUnsigned32("length");
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700997
Elliott Hughes221229c2013-01-08 18:17:50 -0800998 size_t actual_frame_count;
Ian Rogersc0542af2014-09-03 16:16:56 -0700999 JdwpError error = Dbg::GetThreadFrameCount(thread_id, &actual_frame_count);
Elliott Hughes221229c2013-01-08 18:17:50 -08001000 if (error != ERR_NONE) {
1001 return error;
1002 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001003
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001004 if (actual_frame_count <= 0) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001005 return ERR_THREAD_NOT_SUSPENDED; // 0 means no managed frames (which means "in native").
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001006 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001007
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001008 if (start_frame > actual_frame_count) {
1009 return ERR_INVALID_INDEX;
1010 }
1011 if (length == static_cast<uint32_t>(-1)) {
1012 length = actual_frame_count - start_frame;
1013 }
1014 if (start_frame + length > actual_frame_count) {
1015 return ERR_INVALID_LENGTH;
1016 }
1017
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001018 return Dbg::GetThreadFrames(thread_id, start_frame, length, pReply);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001019}
1020
1021/*
1022 * Returns the #of frames on the specified thread, which must be suspended.
1023 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001024static JdwpError TR_FrameCount(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -07001025 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001026 ObjectId thread_id = request->ReadThreadId();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001027
Elliott Hughes221229c2013-01-08 18:17:50 -08001028 size_t frame_count;
Ian Rogersc0542af2014-09-03 16:16:56 -07001029 JdwpError rc = Dbg::GetThreadFrameCount(thread_id, &frame_count);
Elliott Hughes4993bbc2013-01-10 15:41:25 -08001030 if (rc != ERR_NONE) {
1031 return rc;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001032 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001033 expandBufAdd4BE(pReply, static_cast<uint32_t>(frame_count));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001034
1035 return ERR_NONE;
1036}
1037
Ian Rogersc0542af2014-09-03 16:16:56 -07001038static JdwpError TR_OwnedMonitors(Request* request, ExpandBuf* reply, bool with_stack_depths)
Mathieu Chartier90443472015-07-16 20:32:27 -07001039 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001040 ObjectId thread_id = request->ReadThreadId();
Elliott Hughes4993bbc2013-01-10 15:41:25 -08001041
1042 std::vector<ObjectId> monitors;
Elliott Hughes734b8c62013-01-11 15:32:45 -08001043 std::vector<uint32_t> stack_depths;
Ian Rogersc0542af2014-09-03 16:16:56 -07001044 JdwpError rc = Dbg::GetOwnedMonitors(thread_id, &monitors, &stack_depths);
Elliott Hughes4993bbc2013-01-10 15:41:25 -08001045 if (rc != ERR_NONE) {
1046 return rc;
1047 }
1048
1049 expandBufAdd4BE(reply, monitors.size());
1050 for (size_t i = 0; i < monitors.size(); ++i) {
1051 rc = WriteTaggedObject(reply, monitors[i]);
1052 if (rc != ERR_NONE) {
1053 return rc;
1054 }
Elliott Hughes734b8c62013-01-11 15:32:45 -08001055 if (with_stack_depths) {
1056 expandBufAdd4BE(reply, stack_depths[i]);
1057 }
Elliott Hughes4993bbc2013-01-10 15:41:25 -08001058 }
1059 return ERR_NONE;
1060}
1061
Ian Rogersc0542af2014-09-03 16:16:56 -07001062static JdwpError TR_OwnedMonitors(JdwpState*, Request* request, ExpandBuf* reply)
Mathieu Chartier90443472015-07-16 20:32:27 -07001063 SHARED_REQUIRES(Locks::mutator_lock_) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001064 return TR_OwnedMonitors(request, reply, false);
Elliott Hughes734b8c62013-01-11 15:32:45 -08001065}
1066
Ian Rogersc0542af2014-09-03 16:16:56 -07001067static JdwpError TR_OwnedMonitorsStackDepthInfo(JdwpState*, Request* request, ExpandBuf* reply)
Mathieu Chartier90443472015-07-16 20:32:27 -07001068 SHARED_REQUIRES(Locks::mutator_lock_) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001069 return TR_OwnedMonitors(request, reply, true);
Elliott Hughes734b8c62013-01-11 15:32:45 -08001070}
1071
Ian Rogersc0542af2014-09-03 16:16:56 -07001072static JdwpError TR_CurrentContendedMonitor(JdwpState*, Request* request, ExpandBuf* reply)
Mathieu Chartier90443472015-07-16 20:32:27 -07001073 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001074 ObjectId thread_id = request->ReadThreadId();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001075
Elliott Hughesf9501702013-01-11 11:22:27 -08001076 ObjectId contended_monitor;
Ian Rogersc0542af2014-09-03 16:16:56 -07001077 JdwpError rc = Dbg::GetContendedMonitor(thread_id, &contended_monitor);
Elliott Hughesf9501702013-01-11 11:22:27 -08001078 if (rc != ERR_NONE) {
1079 return rc;
1080 }
1081 return WriteTaggedObject(reply, contended_monitor);
1082}
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001083
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01001084static JdwpError TR_Interrupt(JdwpState*, Request* request, ExpandBuf* reply ATTRIBUTE_UNUSED)
Mathieu Chartier90443472015-07-16 20:32:27 -07001085 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001086 ObjectId thread_id = request->ReadThreadId();
Elliott Hughesf9501702013-01-11 11:22:27 -08001087 return Dbg::Interrupt(thread_id);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001088}
1089
1090/*
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001091 * Return the debug suspend count for the specified thread.
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001092 *
1093 * (The thread *might* still be running -- it might not have examined
1094 * its suspend count recently.)
1095 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001096static JdwpError TR_DebugSuspendCount(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -07001097 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001098 ObjectId thread_id = request->ReadThreadId();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001099 return Dbg::GetThreadDebugSuspendCount(thread_id, pReply);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001100}
1101
1102/*
1103 * Return the name of a thread group.
1104 *
1105 * The Eclipse debugger recognizes "main" and "system" as special.
1106 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001107static JdwpError TGR_Name(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -07001108 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001109 ObjectId thread_group_id = request->ReadThreadGroupId();
Sebastien Hertza06430c2014-09-15 19:21:30 +02001110 return Dbg::GetThreadGroupName(thread_group_id, pReply);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001111}
1112
1113/*
1114 * Returns the thread group -- if any -- that contains the specified
1115 * thread group.
1116 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001117static JdwpError TGR_Parent(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -07001118 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001119 ObjectId thread_group_id = request->ReadThreadGroupId();
Sebastien Hertza06430c2014-09-15 19:21:30 +02001120 return Dbg::GetThreadGroupParent(thread_group_id, pReply);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001121}
1122
1123/*
1124 * Return the active threads and thread groups that are part of the
1125 * specified thread group.
1126 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001127static JdwpError TGR_Children(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -07001128 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001129 ObjectId thread_group_id = request->ReadThreadGroupId();
Sebastien Hertza06430c2014-09-15 19:21:30 +02001130 return Dbg::GetThreadGroupChildren(thread_group_id, pReply);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001131}
1132
1133/*
1134 * Return the #of components in the array.
1135 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001136static JdwpError AR_Length(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -07001137 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001138 ObjectId array_id = request->ReadArrayId();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001139
Ian Rogersc0542af2014-09-03 16:16:56 -07001140 int32_t length;
1141 JdwpError status = Dbg::GetArrayLength(array_id, &length);
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001142 if (status != ERR_NONE) {
1143 return status;
1144 }
Elliott Hughes2435a572012-02-17 16:07:41 -08001145 VLOG(jdwp) << " --> " << length;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001146
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001147 expandBufAdd4BE(pReply, length);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001148
1149 return ERR_NONE;
1150}
1151
1152/*
1153 * Return the values from an array.
1154 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001155static JdwpError AR_GetValues(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -07001156 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001157 ObjectId array_id = request->ReadArrayId();
1158 uint32_t offset = request->ReadUnsigned32("offset");
1159 uint32_t length = request->ReadUnsigned32("length");
Elliott Hughesa96836a2013-01-17 12:27:49 -08001160 return Dbg::OutputArray(array_id, offset, length, pReply);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001161}
1162
1163/*
1164 * Set values in an array.
1165 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001166static JdwpError AR_SetValues(JdwpState*, Request* request, ExpandBuf*)
Mathieu Chartier90443472015-07-16 20:32:27 -07001167 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001168 ObjectId array_id = request->ReadArrayId();
1169 uint32_t offset = request->ReadUnsigned32("offset");
1170 uint32_t count = request->ReadUnsigned32("count");
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001171 return Dbg::SetArrayElements(array_id, offset, count, request);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001172}
1173
Ian Rogersc0542af2014-09-03 16:16:56 -07001174static JdwpError CLR_VisibleClasses(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -07001175 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001176 request->ReadObjectId(); // classLoaderObject
Elliott Hughes86964332012-02-15 19:37:42 -08001177 // TODO: we should only return classes which have the given class loader as a defining or
1178 // initiating loader. The former would be easy; the latter is hard, because we don't have
1179 // any such notion.
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001180 return VM_AllClassesImpl(pReply, false, false);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001181}
1182
Sebastien Hertz358bcaf2015-10-21 16:18:58 +02001183// Delete function class to use std::unique_ptr with JdwpEvent.
1184struct JdwpEventDeleter {
1185 void operator()(JdwpEvent* event) {
1186 EventFree(event);
1187 }
1188};
1189
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001190/*
1191 * Set an event trigger.
1192 *
1193 * Reply with a requestID.
1194 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001195static JdwpError ER_Set(JdwpState* state, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -07001196 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001197 JdwpEventKind event_kind = request->ReadEnum1<JdwpEventKind>("event kind");
1198 JdwpSuspendPolicy suspend_policy = request->ReadEnum1<JdwpSuspendPolicy>("suspend policy");
1199 int32_t modifier_count = request->ReadSigned32("modifier count");
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001200
Elliott Hughesa96836a2013-01-17 12:27:49 -08001201 CHECK_LT(modifier_count, 256); /* reasonableness check */
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001202
Sebastien Hertz358bcaf2015-10-21 16:18:58 +02001203 std::unique_ptr<JDWP::JdwpEvent, JdwpEventDeleter> pEvent(EventAlloc(modifier_count));
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001204 pEvent->eventKind = event_kind;
1205 pEvent->suspend_policy = suspend_policy;
Elliott Hughesa96836a2013-01-17 12:27:49 -08001206 pEvent->modCount = modifier_count;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001207
1208 /*
1209 * Read modifiers. Ordering may be significant (see explanation of Count
1210 * mods in JDWP doc).
1211 */
Elliott Hughesa96836a2013-01-17 12:27:49 -08001212 for (int32_t i = 0; i < modifier_count; ++i) {
Elliott Hughes972a47b2012-02-21 18:16:06 -08001213 JdwpEventMod& mod = pEvent->mods[i];
Ian Rogersc0542af2014-09-03 16:16:56 -07001214 mod.modKind = request->ReadModKind();
Elliott Hughes972a47b2012-02-21 18:16:06 -08001215 switch (mod.modKind) {
Elliott Hughesa96836a2013-01-17 12:27:49 -08001216 case MK_COUNT:
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001217 {
Elliott Hughesa96836a2013-01-17 12:27:49 -08001218 // Report once, when "--count" reaches 0.
Ian Rogersc0542af2014-09-03 16:16:56 -07001219 uint32_t count = request->ReadUnsigned32("count");
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001220 if (count == 0) {
1221 return ERR_INVALID_COUNT;
1222 }
Elliott Hughes972a47b2012-02-21 18:16:06 -08001223 mod.count.count = count;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001224 }
1225 break;
Elliott Hughesa96836a2013-01-17 12:27:49 -08001226 case MK_CONDITIONAL:
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001227 {
Elliott Hughesa96836a2013-01-17 12:27:49 -08001228 // Conditional on expression.
Ian Rogersc0542af2014-09-03 16:16:56 -07001229 uint32_t exprId = request->ReadUnsigned32("expr id");
Elliott Hughes972a47b2012-02-21 18:16:06 -08001230 mod.conditional.exprId = exprId;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001231 }
1232 break;
Elliott Hughesa96836a2013-01-17 12:27:49 -08001233 case MK_THREAD_ONLY:
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001234 {
Elliott Hughesa96836a2013-01-17 12:27:49 -08001235 // Only report events in specified thread.
Ian Rogersc0542af2014-09-03 16:16:56 -07001236 ObjectId thread_id = request->ReadThreadId();
Elliott Hughes74847412012-06-20 18:10:21 -07001237 mod.threadOnly.threadId = thread_id;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001238 }
1239 break;
Elliott Hughesa96836a2013-01-17 12:27:49 -08001240 case MK_CLASS_ONLY:
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001241 {
Elliott Hughesa96836a2013-01-17 12:27:49 -08001242 // For ClassPrepare, MethodEntry.
Ian Rogersc0542af2014-09-03 16:16:56 -07001243 RefTypeId class_id = request->ReadRefTypeId();
Elliott Hughes74847412012-06-20 18:10:21 -07001244 mod.classOnly.refTypeId = class_id;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001245 }
1246 break;
Elliott Hughesa96836a2013-01-17 12:27:49 -08001247 case MK_CLASS_MATCH:
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001248 {
Elliott Hughesa96836a2013-01-17 12:27:49 -08001249 // Restrict events to matching classes.
Elliott Hughes86964332012-02-15 19:37:42 -08001250 // pattern is "java.foo.*", we want "java/foo/*".
Ian Rogersc0542af2014-09-03 16:16:56 -07001251 std::string pattern(request->ReadUtf8String());
Elliott Hughes86964332012-02-15 19:37:42 -08001252 std::replace(pattern.begin(), pattern.end(), '.', '/');
Elliott Hughes972a47b2012-02-21 18:16:06 -08001253 mod.classMatch.classPattern = strdup(pattern.c_str());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001254 }
1255 break;
Elliott Hughesa96836a2013-01-17 12:27:49 -08001256 case MK_CLASS_EXCLUDE:
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001257 {
Elliott Hughesa96836a2013-01-17 12:27:49 -08001258 // Restrict events to non-matching classes.
Elliott Hughes86964332012-02-15 19:37:42 -08001259 // pattern is "java.foo.*", we want "java/foo/*".
Ian Rogersc0542af2014-09-03 16:16:56 -07001260 std::string pattern(request->ReadUtf8String());
Elliott Hughes86964332012-02-15 19:37:42 -08001261 std::replace(pattern.begin(), pattern.end(), '.', '/');
Elliott Hughes972a47b2012-02-21 18:16:06 -08001262 mod.classExclude.classPattern = strdup(pattern.c_str());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001263 }
1264 break;
Elliott Hughesa96836a2013-01-17 12:27:49 -08001265 case MK_LOCATION_ONLY:
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001266 {
Elliott Hughesa96836a2013-01-17 12:27:49 -08001267 // Restrict certain events based on location.
Ian Rogersc0542af2014-09-03 16:16:56 -07001268 JdwpLocation location = request->ReadLocation();
Elliott Hughesa96836a2013-01-17 12:27:49 -08001269 mod.locationOnly.loc = location;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001270 }
1271 break;
Elliott Hughesa96836a2013-01-17 12:27:49 -08001272 case MK_EXCEPTION_ONLY:
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001273 {
Elliott Hughesa96836a2013-01-17 12:27:49 -08001274 // Modifies EK_EXCEPTION events,
Ian Rogersc0542af2014-09-03 16:16:56 -07001275 mod.exceptionOnly.refTypeId = request->ReadRefTypeId(); // null => all exceptions.
1276 mod.exceptionOnly.caught = request->ReadEnum1<uint8_t>("caught");
1277 mod.exceptionOnly.uncaught = request->ReadEnum1<uint8_t>("uncaught");
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001278 }
1279 break;
Elliott Hughesa96836a2013-01-17 12:27:49 -08001280 case MK_FIELD_ONLY:
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001281 {
Elliott Hughesa96836a2013-01-17 12:27:49 -08001282 // For field access/modification events.
Ian Rogersc0542af2014-09-03 16:16:56 -07001283 RefTypeId declaring = request->ReadRefTypeId();
1284 FieldId fieldId = request->ReadFieldId();
Elliott Hughes972a47b2012-02-21 18:16:06 -08001285 mod.fieldOnly.refTypeId = declaring;
1286 mod.fieldOnly.fieldId = fieldId;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001287 }
1288 break;
Elliott Hughesa96836a2013-01-17 12:27:49 -08001289 case MK_STEP:
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001290 {
Elliott Hughesa96836a2013-01-17 12:27:49 -08001291 // For use with EK_SINGLE_STEP.
Ian Rogersc0542af2014-09-03 16:16:56 -07001292 ObjectId thread_id = request->ReadThreadId();
1293 uint32_t size = request->ReadUnsigned32("step size");
1294 uint32_t depth = request->ReadUnsigned32("step depth");
Ian Rogersd9e4e0c2014-01-23 20:11:40 -08001295 VLOG(jdwp) << StringPrintf(" Step: thread=%#" PRIx64, thread_id)
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001296 << " size=" << JdwpStepSize(size) << " depth=" << JdwpStepDepth(depth);
1297
Elliott Hughes74847412012-06-20 18:10:21 -07001298 mod.step.threadId = thread_id;
Elliott Hughes972a47b2012-02-21 18:16:06 -08001299 mod.step.size = size;
1300 mod.step.depth = depth;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001301 }
1302 break;
Elliott Hughesa96836a2013-01-17 12:27:49 -08001303 case MK_INSTANCE_ONLY:
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001304 {
Elliott Hughesa96836a2013-01-17 12:27:49 -08001305 // Report events related to a specific object.
Ian Rogersc0542af2014-09-03 16:16:56 -07001306 ObjectId instance = request->ReadObjectId();
Elliott Hughes972a47b2012-02-21 18:16:06 -08001307 mod.instanceOnly.objectId = instance;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001308 }
1309 break;
1310 default:
Sebastien Hertz6d7839e2014-12-05 10:52:15 +01001311 LOG(WARNING) << "Unsupported modifier " << mod.modKind << " for event " << pEvent->eventKind;
Sebastien Hertz6d7839e2014-12-05 10:52:15 +01001312 return JDWP::ERR_NOT_IMPLEMENTED;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001313 }
1314 }
1315
1316 /*
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001317 * We reply with an integer "requestID".
1318 */
Elliott Hughes376a7a02011-10-24 18:35:55 -07001319 uint32_t requestId = state->NextEventSerial();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001320 expandBufAdd4BE(pReply, requestId);
1321
1322 pEvent->requestId = requestId;
1323
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08001324 VLOG(jdwp) << StringPrintf(" --> event requestId=%#x", requestId);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001325
1326 /* add it to the list */
Sebastien Hertz358bcaf2015-10-21 16:18:58 +02001327 JdwpError err = state->RegisterEvent(pEvent.get());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001328 if (err != ERR_NONE) {
1329 /* registration failed, probably because event is bogus */
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001330 LOG(WARNING) << "WARNING: event request rejected";
Sebastien Hertz358bcaf2015-10-21 16:18:58 +02001331 return err;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001332 }
Sebastien Hertz358bcaf2015-10-21 16:18:58 +02001333 pEvent.release();
1334 return ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001335}
1336
Ian Rogersc0542af2014-09-03 16:16:56 -07001337static JdwpError ER_Clear(JdwpState* state, Request* request, ExpandBuf*)
Mathieu Chartier90443472015-07-16 20:32:27 -07001338 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001339 request->ReadEnum1<JdwpEventKind>("event kind");
1340 uint32_t requestId = request->ReadUnsigned32("request id");
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001341
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001342 // Failure to find an event with a matching ID is a no-op
1343 // and does not return an error.
Elliott Hughes761928d2011-11-16 18:33:03 -08001344 state->UnregisterEventById(requestId);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001345 return ERR_NONE;
1346}
1347
1348/*
1349 * Return the values of arguments and local variables.
1350 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001351static JdwpError SF_GetValues(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -07001352 SHARED_REQUIRES(Locks::mutator_lock_) {
Sebastien Hertz8009f392014-09-01 17:07:11 +02001353 return Dbg::GetLocalValues(request, pReply);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001354}
1355
1356/*
1357 * Set the values of arguments and local variables.
1358 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001359static JdwpError SF_SetValues(JdwpState*, Request* request, ExpandBuf*)
Mathieu Chartier90443472015-07-16 20:32:27 -07001360 SHARED_REQUIRES(Locks::mutator_lock_) {
Sebastien Hertz8009f392014-09-01 17:07:11 +02001361 return Dbg::SetLocalValues(request);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001362}
1363
Ian Rogersc0542af2014-09-03 16:16:56 -07001364static JdwpError SF_ThisObject(JdwpState*, Request* request, ExpandBuf* reply)
Mathieu Chartier90443472015-07-16 20:32:27 -07001365 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001366 ObjectId thread_id = request->ReadThreadId();
1367 FrameId frame_id = request->ReadFrameId();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001368
Elliott Hughes4993bbc2013-01-10 15:41:25 -08001369 ObjectId object_id;
1370 JdwpError rc = Dbg::GetThisObject(thread_id, frame_id, &object_id);
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001371 if (rc != ERR_NONE) {
1372 return rc;
Elliott Hughes546b9862012-06-20 16:06:13 -07001373 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001374
Elliott Hughes4993bbc2013-01-10 15:41:25 -08001375 return WriteTaggedObject(reply, object_id);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001376}
1377
1378/*
1379 * Return the reference type reflected by this class object.
1380 *
1381 * This appears to be required because ReferenceTypeId values are NEVER
1382 * reused, whereas ClassIds can be recycled like any other object. (Either
1383 * that, or I have no idea what this is for.)
1384 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001385static JdwpError COR_ReflectedType(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -07001386 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001387 RefTypeId class_object_id = request->ReadRefTypeId();
Elliott Hughesa96836a2013-01-17 12:27:49 -08001388 return Dbg::GetReflectedType(class_object_id, pReply);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001389}
1390
1391/*
1392 * Handle a DDM packet with a single chunk in it.
1393 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001394static JdwpError DDM_Chunk(JdwpState* state, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -07001395 SHARED_REQUIRES(Locks::mutator_lock_) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001396 state->NotifyDdmsActive();
Sebastien Hertz7d955652014-10-22 10:57:10 +02001397 uint8_t* replyBuf = nullptr;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001398 int replyLen = -1;
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001399 if (Dbg::DdmHandlePacket(request, &replyBuf, &replyLen)) {
1400 // If they want to send something back, we copy it into the buffer.
1401 // TODO: consider altering the JDWP stuff to hold the packet header
1402 // in a separate buffer. That would allow us to writev() DDM traffic
1403 // instead of copying it into the expanding buffer. The reduction in
1404 // heap requirements is probably more valuable than the efficiency.
1405 CHECK_GT(replyLen, 0);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001406 memcpy(expandBufAddSpace(pReply, replyLen), replyBuf, replyLen);
Sebastien Hertz3901bbc2015-08-06 11:37:02 +02001407 delete[] replyBuf;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001408 }
1409 return ERR_NONE;
1410}
1411
1412/*
1413 * Handler map decl.
1414 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001415typedef JdwpError (*JdwpRequestHandler)(JdwpState* state, Request* request, ExpandBuf* reply);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001416
1417struct JdwpHandlerMap {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001418 uint8_t cmdSet;
1419 uint8_t cmd;
1420 JdwpRequestHandler func;
1421 const char* name;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001422};
1423
1424/*
1425 * Map commands to functions.
1426 *
1427 * Command sets 0-63 are incoming requests, 64-127 are outbound requests,
1428 * and 128-256 are vendor-defined.
1429 */
Elliott Hughescb693062013-02-21 09:48:08 -08001430static const JdwpHandlerMap gHandlers[] = {
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001431 /* VirtualMachine command set (1) */
Elliott Hughesf327e072013-01-09 16:01:26 -08001432 { 1, 1, VM_Version, "VirtualMachine.Version" },
1433 { 1, 2, VM_ClassesBySignature, "VirtualMachine.ClassesBySignature" },
1434 { 1, 3, VM_AllClasses, "VirtualMachine.AllClasses" },
1435 { 1, 4, VM_AllThreads, "VirtualMachine.AllThreads" },
1436 { 1, 5, VM_TopLevelThreadGroups, "VirtualMachine.TopLevelThreadGroups" },
1437 { 1, 6, VM_Dispose, "VirtualMachine.Dispose" },
1438 { 1, 7, VM_IDSizes, "VirtualMachine.IDSizes" },
1439 { 1, 8, VM_Suspend, "VirtualMachine.Suspend" },
1440 { 1, 9, VM_Resume, "VirtualMachine.Resume" },
1441 { 1, 10, VM_Exit, "VirtualMachine.Exit" },
1442 { 1, 11, VM_CreateString, "VirtualMachine.CreateString" },
1443 { 1, 12, VM_Capabilities, "VirtualMachine.Capabilities" },
1444 { 1, 13, VM_ClassPaths, "VirtualMachine.ClassPaths" },
1445 { 1, 14, VM_DisposeObjects, "VirtualMachine.DisposeObjects" },
Sebastien Hertz7d955652014-10-22 10:57:10 +02001446 { 1, 15, nullptr, "VirtualMachine.HoldEvents" },
1447 { 1, 16, nullptr, "VirtualMachine.ReleaseEvents" },
Elliott Hughesf327e072013-01-09 16:01:26 -08001448 { 1, 17, VM_CapabilitiesNew, "VirtualMachine.CapabilitiesNew" },
Sebastien Hertz7d955652014-10-22 10:57:10 +02001449 { 1, 18, nullptr, "VirtualMachine.RedefineClasses" },
1450 { 1, 19, nullptr, "VirtualMachine.SetDefaultStratum" },
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001451 { 1, 20, VM_AllClassesWithGeneric, "VirtualMachine.AllClassesWithGeneric" },
Elliott Hughesec0f83d2013-01-15 16:54:08 -08001452 { 1, 21, VM_InstanceCounts, "VirtualMachine.InstanceCounts" },
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001453
1454 /* ReferenceType command set (2) */
Elliott Hughesf327e072013-01-09 16:01:26 -08001455 { 2, 1, RT_Signature, "ReferenceType.Signature" },
1456 { 2, 2, RT_ClassLoader, "ReferenceType.ClassLoader" },
1457 { 2, 3, RT_Modifiers, "ReferenceType.Modifiers" },
1458 { 2, 4, RT_Fields, "ReferenceType.Fields" },
1459 { 2, 5, RT_Methods, "ReferenceType.Methods" },
1460 { 2, 6, RT_GetValues, "ReferenceType.GetValues" },
1461 { 2, 7, RT_SourceFile, "ReferenceType.SourceFile" },
Sebastien Hertz7d955652014-10-22 10:57:10 +02001462 { 2, 8, nullptr, "ReferenceType.NestedTypes" },
Elliott Hughesf327e072013-01-09 16:01:26 -08001463 { 2, 9, RT_Status, "ReferenceType.Status" },
1464 { 2, 10, RT_Interfaces, "ReferenceType.Interfaces" },
1465 { 2, 11, RT_ClassObject, "ReferenceType.ClassObject" },
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001466 { 2, 12, RT_SourceDebugExtension, "ReferenceType.SourceDebugExtension" },
1467 { 2, 13, RT_SignatureWithGeneric, "ReferenceType.SignatureWithGeneric" },
Elliott Hughesf327e072013-01-09 16:01:26 -08001468 { 2, 14, RT_FieldsWithGeneric, "ReferenceType.FieldsWithGeneric" },
1469 { 2, 15, RT_MethodsWithGeneric, "ReferenceType.MethodsWithGeneric" },
Elliott Hughes3b78c942013-01-15 17:35:41 -08001470 { 2, 16, RT_Instances, "ReferenceType.Instances" },
Sebastien Hertz7d955652014-10-22 10:57:10 +02001471 { 2, 17, nullptr, "ReferenceType.ClassFileVersion" },
1472 { 2, 18, nullptr, "ReferenceType.ConstantPool" },
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001473
1474 /* ClassType command set (3) */
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001475 { 3, 1, CT_Superclass, "ClassType.Superclass" },
1476 { 3, 2, CT_SetValues, "ClassType.SetValues" },
1477 { 3, 3, CT_InvokeMethod, "ClassType.InvokeMethod" },
1478 { 3, 4, CT_NewInstance, "ClassType.NewInstance" },
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001479
1480 /* ArrayType command set (4) */
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001481 { 4, 1, AT_newInstance, "ArrayType.NewInstance" },
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001482
1483 /* InterfaceType command set (5) */
1484
1485 /* Method command set (6) */
Elliott Hughesf327e072013-01-09 16:01:26 -08001486 { 6, 1, M_LineTable, "Method.LineTable" },
1487 { 6, 2, M_VariableTable, "Method.VariableTable" },
Elliott Hughes9777ba22013-01-17 09:04:19 -08001488 { 6, 3, M_Bytecodes, "Method.Bytecodes" },
Sebastien Hertz0a97fc62015-11-09 12:18:06 +01001489 { 6, 4, M_IsObsolete, "Method.IsObsolete" },
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001490 { 6, 5, M_VariableTableWithGeneric, "Method.VariableTableWithGeneric" },
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001491
1492 /* Field command set (8) */
1493
1494 /* ObjectReference command set (9) */
Elliott Hughesf327e072013-01-09 16:01:26 -08001495 { 9, 1, OR_ReferenceType, "ObjectReference.ReferenceType" },
1496 { 9, 2, OR_GetValues, "ObjectReference.GetValues" },
1497 { 9, 3, OR_SetValues, "ObjectReference.SetValues" },
Sebastien Hertz7d955652014-10-22 10:57:10 +02001498 { 9, 4, nullptr, "ObjectReference.UNUSED" },
Elliott Hughesf327e072013-01-09 16:01:26 -08001499 { 9, 5, OR_MonitorInfo, "ObjectReference.MonitorInfo" },
1500 { 9, 6, OR_InvokeMethod, "ObjectReference.InvokeMethod" },
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001501 { 9, 7, OR_DisableCollection, "ObjectReference.DisableCollection" },
Elliott Hughesf327e072013-01-09 16:01:26 -08001502 { 9, 8, OR_EnableCollection, "ObjectReference.EnableCollection" },
1503 { 9, 9, OR_IsCollected, "ObjectReference.IsCollected" },
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001504 { 9, 10, OR_ReferringObjects, "ObjectReference.ReferringObjects" },
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001505
1506 /* StringReference command set (10) */
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001507 { 10, 1, SR_Value, "StringReference.Value" },
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001508
1509 /* ThreadReference command set (11) */
Elliott Hughes734b8c62013-01-11 15:32:45 -08001510 { 11, 1, TR_Name, "ThreadReference.Name" },
1511 { 11, 2, TR_Suspend, "ThreadReference.Suspend" },
1512 { 11, 3, TR_Resume, "ThreadReference.Resume" },
1513 { 11, 4, TR_Status, "ThreadReference.Status" },
1514 { 11, 5, TR_ThreadGroup, "ThreadReference.ThreadGroup" },
1515 { 11, 6, TR_Frames, "ThreadReference.Frames" },
1516 { 11, 7, TR_FrameCount, "ThreadReference.FrameCount" },
1517 { 11, 8, TR_OwnedMonitors, "ThreadReference.OwnedMonitors" },
1518 { 11, 9, TR_CurrentContendedMonitor, "ThreadReference.CurrentContendedMonitor" },
Sebastien Hertz7d955652014-10-22 10:57:10 +02001519 { 11, 10, nullptr, "ThreadReference.Stop" },
Elliott Hughes734b8c62013-01-11 15:32:45 -08001520 { 11, 11, TR_Interrupt, "ThreadReference.Interrupt" },
1521 { 11, 12, TR_DebugSuspendCount, "ThreadReference.SuspendCount" },
1522 { 11, 13, TR_OwnedMonitorsStackDepthInfo, "ThreadReference.OwnedMonitorsStackDepthInfo" },
Sebastien Hertz7d955652014-10-22 10:57:10 +02001523 { 11, 14, nullptr, "ThreadReference.ForceEarlyReturn" },
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001524
1525 /* ThreadGroupReference command set (12) */
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001526 { 12, 1, TGR_Name, "ThreadGroupReference.Name" },
1527 { 12, 2, TGR_Parent, "ThreadGroupReference.Parent" },
1528 { 12, 3, TGR_Children, "ThreadGroupReference.Children" },
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001529
1530 /* ArrayReference command set (13) */
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001531 { 13, 1, AR_Length, "ArrayReference.Length" },
1532 { 13, 2, AR_GetValues, "ArrayReference.GetValues" },
1533 { 13, 3, AR_SetValues, "ArrayReference.SetValues" },
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001534
1535 /* ClassLoaderReference command set (14) */
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001536 { 14, 1, CLR_VisibleClasses, "ClassLoaderReference.VisibleClasses" },
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001537
1538 /* EventRequest command set (15) */
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001539 { 15, 1, ER_Set, "EventRequest.Set" },
1540 { 15, 2, ER_Clear, "EventRequest.Clear" },
Sebastien Hertz7d955652014-10-22 10:57:10 +02001541 { 15, 3, nullptr, "EventRequest.ClearAllBreakpoints" },
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001542
1543 /* StackFrame command set (16) */
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001544 { 16, 1, SF_GetValues, "StackFrame.GetValues" },
1545 { 16, 2, SF_SetValues, "StackFrame.SetValues" },
1546 { 16, 3, SF_ThisObject, "StackFrame.ThisObject" },
Sebastien Hertz7d955652014-10-22 10:57:10 +02001547 { 16, 4, nullptr, "StackFrame.PopFrames" },
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001548
1549 /* ClassObjectReference command set (17) */
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001550 { 17, 1, COR_ReflectedType, "ClassObjectReference.ReflectedType" },
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001551
1552 /* Event command set (64) */
Sebastien Hertz7d955652014-10-22 10:57:10 +02001553 { 64, 100, nullptr, "Event.Composite" }, // sent from VM to debugger, never received by VM
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001554
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001555 { 199, 1, DDM_Chunk, "DDM.Chunk" },
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001556};
1557
Ian Rogersc0542af2014-09-03 16:16:56 -07001558static const char* GetCommandName(Request* request) {
Elliott Hughescb693062013-02-21 09:48:08 -08001559 for (size_t i = 0; i < arraysize(gHandlers); ++i) {
Sebastien Hertz7d955652014-10-22 10:57:10 +02001560 if (gHandlers[i].cmdSet == request->GetCommandSet() &&
1561 gHandlers[i].cmd == request->GetCommand()) {
Elliott Hughescb693062013-02-21 09:48:08 -08001562 return gHandlers[i].name;
Elliott Hughesa3c24aa2011-12-07 15:34:09 -08001563 }
1564 }
1565 return "?UNKNOWN?";
1566}
1567
Ian Rogersc0542af2014-09-03 16:16:56 -07001568static std::string DescribeCommand(Request* request) {
Elliott Hughesa3c24aa2011-12-07 15:34:09 -08001569 std::string result;
Elliott Hughes64f574f2013-02-20 14:57:12 -08001570 result += "REQUEST: ";
Elliott Hughescb693062013-02-21 09:48:08 -08001571 result += GetCommandName(request);
Ian Rogersc0542af2014-09-03 16:16:56 -07001572 result += StringPrintf(" (length=%zu id=0x%06x)", request->GetLength(), request->GetId());
Elliott Hughesa3c24aa2011-12-07 15:34:09 -08001573 return result;
1574}
1575
Sebastien Hertzcbc50642015-06-01 17:33:12 +02001576// Returns true if the given command_set and command identify an "invoke" command.
1577static bool IsInvokeCommand(uint8_t command_set, uint8_t command) {
1578 if (command_set == kJDWPClassTypeCmdSet) {
1579 return command == kJDWPClassTypeInvokeMethodCmd || command == kJDWPClassTypeNewInstanceCmd;
1580 } else if (command_set == kJDWPObjectReferenceCmdSet) {
1581 return command == kJDWPObjectReferenceInvokeCmd;
1582 } else {
1583 return false;
1584 }
1585}
1586
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001587/*
Sebastien Hertzcbc50642015-06-01 17:33:12 +02001588 * Process a request from the debugger. The skip_reply flag is set to true to indicate to the
1589 * caller the reply must not be sent to the debugger. This is used for invoke commands where the
1590 * reply is sent by the event thread after completing the invoke.
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001591 *
1592 * On entry, the JDWP thread is in VMWAIT.
1593 */
Sebastien Hertzcbc50642015-06-01 17:33:12 +02001594size_t JdwpState::ProcessRequest(Request* request, ExpandBuf* pReply, bool* skip_reply) {
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001595 JdwpError result = ERR_NONE;
Sebastien Hertzcbc50642015-06-01 17:33:12 +02001596 *skip_reply = false;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001597
Ian Rogersc0542af2014-09-03 16:16:56 -07001598 if (request->GetCommandSet() != kJDWPDdmCmdSet) {
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001599 /*
1600 * Activity from a debugger, not merely ddms. Mark us as having an
1601 * active debugger session, and zero out the last-activity timestamp
1602 * so waitForDebugger() doesn't return if we stall for a bit here.
1603 */
Elliott Hughesa2155262011-11-16 16:26:58 -08001604 Dbg::GoActive();
Ian Rogers37f3c962014-07-17 11:25:30 -07001605 last_activity_time_ms_.StoreSequentiallyConsistent(0);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001606 }
1607
1608 /*
1609 * If a debugger event has fired in another thread, wait until the
Sebastien Hertz2bf93f42015-01-09 18:44:05 +01001610 * initiating thread has suspended itself before processing commands
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001611 * from the debugger. Otherwise we (the JDWP thread) could be told to
1612 * resume the thread before it has suspended.
1613 *
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001614 * Note that we MUST clear the event token before waking the event
1615 * thread up, or risk waiting for the thread to suspend after we've
1616 * told it to resume.
1617 */
Sebastien Hertz2bf93f42015-01-09 18:44:05 +01001618 AcquireJdwpTokenForCommand();
Sebastien Hertz400a3a92014-02-24 14:56:21 +01001619
1620 /*
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001621 * Tell the VM that we're running and shouldn't be interrupted by GC.
1622 * Do this after anything that can stall indefinitely.
1623 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001624 Thread* self = Thread::Current();
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07001625 ScopedObjectAccess soa(self);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001626
1627 expandBufAddSpace(pReply, kJDWPHeaderLen);
1628
Elliott Hughesa3c24aa2011-12-07 15:34:09 -08001629 size_t i;
Elliott Hughescb693062013-02-21 09:48:08 -08001630 for (i = 0; i < arraysize(gHandlers); ++i) {
Sebastien Hertz7d955652014-10-22 10:57:10 +02001631 if (gHandlers[i].cmdSet == request->GetCommandSet() &&
1632 gHandlers[i].cmd == request->GetCommand() &&
1633 gHandlers[i].func != nullptr) {
Elliott Hughescb693062013-02-21 09:48:08 -08001634 VLOG(jdwp) << DescribeCommand(request);
1635 result = (*gHandlers[i].func)(this, request, pReply);
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001636 if (result == ERR_NONE) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001637 request->CheckConsumed();
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001638 }
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001639 self->AssertNoPendingException();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001640 break;
1641 }
1642 }
Elliott Hughescb693062013-02-21 09:48:08 -08001643 if (i == arraysize(gHandlers)) {
1644 LOG(ERROR) << "Command not implemented: " << DescribeCommand(request);
Ian Rogersc0542af2014-09-03 16:16:56 -07001645 LOG(ERROR) << HexDump(request->data(), request->size(), false, "");
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001646 result = ERR_NOT_IMPLEMENTED;
1647 }
1648
Sebastien Hertzcbc50642015-06-01 17:33:12 +02001649 size_t replyLength = 0U;
1650 if (result == ERR_NONE && IsInvokeCommand(request->GetCommandSet(), request->GetCommand())) {
1651 // We successfully request an invoke in the event thread. It will send the reply once the
1652 // invoke completes so we must not send it now.
1653 *skip_reply = true;
1654 } else {
1655 /*
1656 * Set up the reply header.
1657 *
1658 * If we encountered an error, only send the header back.
1659 */
1660 uint8_t* replyBuf = expandBufGetBuffer(pReply);
1661 replyLength = (result == ERR_NONE) ? expandBufGetLength(pReply) : kJDWPHeaderLen;
1662 Set4BE(replyBuf + kJDWPHeaderSizeOffset, replyLength);
1663 Set4BE(replyBuf + kJDWPHeaderIdOffset, request->GetId());
1664 Set1(replyBuf + kJDWPHeaderFlagsOffset, kJDWPFlagReply);
1665 Set2BE(replyBuf + kJDWPHeaderErrorCodeOffset, result);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001666
Sebastien Hertzcbc50642015-06-01 17:33:12 +02001667 CHECK_GT(expandBufGetLength(pReply), 0U) << GetCommandName(request) << " " << request->GetId();
Elliott Hughescb693062013-02-21 09:48:08 -08001668
Sebastien Hertzcbc50642015-06-01 17:33:12 +02001669 size_t respLen = expandBufGetLength(pReply) - kJDWPHeaderLen;
1670 VLOG(jdwp) << "REPLY: " << GetCommandName(request) << " " << result << " (length=" << respLen << ")";
1671 if (false) {
1672 VLOG(jdwp) << HexDump(expandBufGetBuffer(pReply) + kJDWPHeaderLen, respLen, false, "");
1673 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001674 }
1675
Elliott Hughescb693062013-02-21 09:48:08 -08001676 VLOG(jdwp) << "----------";
1677
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001678 /*
1679 * Update last-activity timestamp. We really only need this during
1680 * the initial setup. Only update if this is a non-DDMS packet.
1681 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001682 if (request->GetCommandSet() != kJDWPDdmCmdSet) {
Ian Rogers37f3c962014-07-17 11:25:30 -07001683 last_activity_time_ms_.StoreSequentiallyConsistent(MilliTime());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001684 }
1685
Sebastien Hertz43c8d722014-03-18 12:19:52 +01001686 return replyLength;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001687}
1688
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001689} // namespace JDWP
1690
1691} // namespace art