blob: df6936bf0129cefcffcc56b76c8284e08d745c30 [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
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700748/*
749 * Given an object reference, return the runtime type of the object
750 * (class or array).
751 *
Elliott Hughes74847412012-06-20 18:10:21 -0700752 * This can get called on different things, e.g. thread_id gets
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700753 * passed in here.
754 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700755static JdwpError OR_ReferenceType(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -0700756 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700757 ObjectId object_id = request->ReadObjectId();
Elliott Hughes74847412012-06-20 18:10:21 -0700758 return Dbg::GetReferenceType(object_id, pReply);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700759}
760
761/*
762 * Get values from the fields of an object.
763 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700764static JdwpError OR_GetValues(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();
767 int32_t field_count = request->ReadSigned32("field count");
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700768
Elliott Hughes0cf74332012-02-23 23:14:00 -0800769 expandBufAdd4BE(pReply, field_count);
Elliott Hughesa96836a2013-01-17 12:27:49 -0800770 for (int32_t i = 0; i < field_count; ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700771 FieldId fieldId = request->ReadFieldId();
Elliott Hughes74847412012-06-20 18:10:21 -0700772 JdwpError status = Dbg::GetFieldValue(object_id, fieldId, pReply);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -0800773 if (status != ERR_NONE) {
774 return status;
775 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700776 }
777
778 return ERR_NONE;
779}
780
781/*
782 * Set values in the fields of an object.
783 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700784static JdwpError OR_SetValues(JdwpState*, Request* request, ExpandBuf*)
Mathieu Chartier90443472015-07-16 20:32:27 -0700785 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700786 ObjectId object_id = request->ReadObjectId();
787 int32_t field_count = request->ReadSigned32("field count");
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700788
Elliott Hughesa96836a2013-01-17 12:27:49 -0800789 for (int32_t i = 0; i < field_count; ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700790 FieldId fieldId = request->ReadFieldId();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700791
Elliott Hughesaed4be92011-12-02 16:16:23 -0800792 JDWP::JdwpTag fieldTag = Dbg::GetFieldBasicTag(fieldId);
Elliott Hughesdbb40792011-11-18 17:05:22 -0800793 size_t width = Dbg::GetTagWidth(fieldTag);
Ian Rogersc0542af2014-09-03 16:16:56 -0700794 uint64_t value = request->ReadValue(width);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700795
Elliott Hughes2435a572012-02-17 16:07:41 -0800796 VLOG(jdwp) << " --> fieldId=" << fieldId << " tag=" << fieldTag << "(" << width << ") value=" << value;
Elliott Hughes74847412012-06-20 18:10:21 -0700797 JdwpError status = Dbg::SetFieldValue(object_id, fieldId, value, width);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -0800798 if (status != ERR_NONE) {
799 return status;
800 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700801 }
802
803 return ERR_NONE;
804}
805
Ian Rogersc0542af2014-09-03 16:16:56 -0700806static JdwpError OR_MonitorInfo(JdwpState*, Request* request, ExpandBuf* reply)
Mathieu Chartier90443472015-07-16 20:32:27 -0700807 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700808 ObjectId object_id = request->ReadObjectId();
Elliott Hughesf327e072013-01-09 16:01:26 -0800809 return Dbg::GetMonitorInfo(object_id, reply);
810}
811
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700812/*
813 * Invoke an instance method. The invocation must occur in the specified
814 * thread, which must have been suspended by an event.
815 *
816 * The call is synchronous. All threads in the VM are resumed, unless the
817 * SINGLE_THREADED flag is set.
818 *
819 * If you ask Eclipse to "inspect" an object (or ask JDB to "print" an
820 * object), it will try to invoke the object's toString() function. This
821 * feature becomes crucial when examining ArrayLists with Eclipse.
822 */
Sebastien Hertzcbc50642015-06-01 17:33:12 +0200823static JdwpError OR_InvokeMethod(JdwpState* state, Request* request,
824 ExpandBuf* pReply ATTRIBUTE_UNUSED)
Mathieu Chartier90443472015-07-16 20:32:27 -0700825 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700826 ObjectId object_id = request->ReadObjectId();
827 ObjectId thread_id = request->ReadThreadId();
828 RefTypeId class_id = request->ReadRefTypeId();
829 MethodId method_id = request->ReadMethodId();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700830
Sebastien Hertzcbc50642015-06-01 17:33:12 +0200831 return RequestInvoke(state, request, thread_id, object_id, class_id, method_id, false);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700832}
833
Ian Rogersc0542af2014-09-03 16:16:56 -0700834static JdwpError OR_DisableCollection(JdwpState*, Request* request, ExpandBuf*)
Mathieu Chartier90443472015-07-16 20:32:27 -0700835 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700836 ObjectId object_id = request->ReadObjectId();
Elliott Hughes64f574f2013-02-20 14:57:12 -0800837 return Dbg::DisableCollection(object_id);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700838}
839
Ian Rogersc0542af2014-09-03 16:16:56 -0700840static JdwpError OR_EnableCollection(JdwpState*, Request* request, ExpandBuf*)
Mathieu Chartier90443472015-07-16 20:32:27 -0700841 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700842 ObjectId object_id = request->ReadObjectId();
Elliott Hughes64f574f2013-02-20 14:57:12 -0800843 return Dbg::EnableCollection(object_id);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700844}
845
Ian Rogersc0542af2014-09-03 16:16:56 -0700846static JdwpError OR_IsCollected(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -0700847 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700848 ObjectId object_id = request->ReadObjectId();
Elliott Hughes64f574f2013-02-20 14:57:12 -0800849 bool is_collected;
Ian Rogersc0542af2014-09-03 16:16:56 -0700850 JdwpError rc = Dbg::IsCollected(object_id, &is_collected);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800851 expandBufAdd1(pReply, is_collected ? 1 : 0);
852 return rc;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700853}
854
Ian Rogersc0542af2014-09-03 16:16:56 -0700855static JdwpError OR_ReferringObjects(JdwpState*, Request* request, ExpandBuf* reply)
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();
858 int32_t max_count = request->ReadSigned32("max count");
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800859 if (max_count < 0) {
860 return ERR_ILLEGAL_ARGUMENT;
861 }
862
863 std::vector<ObjectId> referring_objects;
Ian Rogersc0542af2014-09-03 16:16:56 -0700864 JdwpError rc = Dbg::GetReferringObjects(object_id, max_count, &referring_objects);
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800865 if (rc != ERR_NONE) {
866 return rc;
867 }
868
869 return WriteTaggedObjectList(reply, referring_objects);
870}
871
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700872/*
873 * Return the string value in a string object.
874 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700875static JdwpError SR_Value(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -0700876 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700877 ObjectId stringObject = request->ReadObjectId();
Sebastien Hertzb0b0b492014-09-15 11:27:27 +0200878 std::string str;
879 JDWP::JdwpError error = Dbg::StringToUtf8(stringObject, &str);
880 if (error != JDWP::ERR_NONE) {
881 return error;
882 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700883
Ian Rogers68b56852014-08-29 20:19:11 -0700884 VLOG(jdwp) << StringPrintf(" --> %s", PrintableString(str.c_str()).c_str());
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700885
Elliott Hughes4740cdf2011-12-07 14:07:12 -0800886 expandBufAddUtf8String(pReply, str);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700887
888 return ERR_NONE;
889}
890
891/*
892 * Return a thread's name.
893 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700894static JdwpError TR_Name(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -0700895 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700896 ObjectId thread_id = request->ReadThreadId();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700897
Elliott Hughesa2e54f62011-11-17 13:01:30 -0800898 std::string name;
Ian Rogersc0542af2014-09-03 16:16:56 -0700899 JdwpError error = Dbg::GetThreadName(thread_id, &name);
Elliott Hughes221229c2013-01-08 18:17:50 -0800900 if (error != ERR_NONE) {
901 return error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700902 }
Ian Rogersd9e4e0c2014-01-23 20:11:40 -0800903 VLOG(jdwp) << StringPrintf(" Name of thread %#" PRIx64 " is \"%s\"", thread_id, name.c_str());
Elliott Hughes4740cdf2011-12-07 14:07:12 -0800904 expandBufAddUtf8String(pReply, name);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700905
906 return ERR_NONE;
907}
908
909/*
910 * Suspend the specified thread.
911 *
912 * It's supposed to remain suspended even if interpreted code wants to
913 * resume it; only the JDI is allowed to resume it.
914 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700915static JdwpError TR_Suspend(JdwpState*, Request* request, ExpandBuf*)
Mathieu Chartier90443472015-07-16 20:32:27 -0700916 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700917 ObjectId thread_id = request->ReadThreadId();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700918
Elliott Hughes74847412012-06-20 18:10:21 -0700919 if (thread_id == Dbg::GetThreadSelfId()) {
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700920 LOG(INFO) << " Warning: ignoring request to suspend self";
921 return ERR_THREAD_NOT_SUSPENDED;
922 }
Elliott Hughesa96836a2013-01-17 12:27:49 -0800923
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700924 Thread* self = Thread::Current();
Mathieu Chartierf1d666e2015-09-03 16:13:34 -0700925 ScopedThreadSuspension sts(self, kWaitingForDebuggerSend);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700926 JdwpError result = Dbg::SuspendThread(thread_id);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700927 return result;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700928}
929
930/*
931 * Resume the specified thread.
932 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700933static JdwpError TR_Resume(JdwpState*, Request* request, ExpandBuf*)
Mathieu Chartier90443472015-07-16 20:32:27 -0700934 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700935 ObjectId thread_id = request->ReadThreadId();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700936
Elliott Hughes74847412012-06-20 18:10:21 -0700937 if (thread_id == Dbg::GetThreadSelfId()) {
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700938 LOG(INFO) << " Warning: ignoring request to resume self";
939 return ERR_NONE;
940 }
Elliott Hughesa96836a2013-01-17 12:27:49 -0800941
Elliott Hughes74847412012-06-20 18:10:21 -0700942 Dbg::ResumeThread(thread_id);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700943 return ERR_NONE;
944}
945
946/*
947 * Return status of specified thread.
948 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700949static JdwpError TR_Status(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -0700950 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700951 ObjectId thread_id = request->ReadThreadId();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700952
Elliott Hughes3d30d9b2011-12-07 17:35:48 -0800953 JDWP::JdwpThreadStatus threadStatus;
954 JDWP::JdwpSuspendStatus suspendStatus;
Elliott Hughes221229c2013-01-08 18:17:50 -0800955 JdwpError error = Dbg::GetThreadStatus(thread_id, &threadStatus, &suspendStatus);
956 if (error != ERR_NONE) {
957 return error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700958 }
959
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800960 VLOG(jdwp) << " --> " << threadStatus << ", " << suspendStatus;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700961
962 expandBufAdd4BE(pReply, threadStatus);
963 expandBufAdd4BE(pReply, suspendStatus);
964
965 return ERR_NONE;
966}
967
968/*
969 * Return the thread group that the specified thread is a member of.
970 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700971static JdwpError TR_ThreadGroup(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -0700972 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700973 ObjectId thread_id = request->ReadThreadId();
Elliott Hughes74847412012-06-20 18:10:21 -0700974 return Dbg::GetThreadGroup(thread_id, pReply);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700975}
976
977/*
978 * Return the current call stack of a suspended thread.
979 *
980 * If the thread isn't suspended, the error code isn't defined, but should
981 * be THREAD_NOT_SUSPENDED.
982 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700983static JdwpError TR_Frames(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -0700984 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700985 ObjectId thread_id = request->ReadThreadId();
986 uint32_t start_frame = request->ReadUnsigned32("start frame");
987 uint32_t length = request->ReadUnsigned32("length");
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700988
Elliott Hughes221229c2013-01-08 18:17:50 -0800989 size_t actual_frame_count;
Ian Rogersc0542af2014-09-03 16:16:56 -0700990 JdwpError error = Dbg::GetThreadFrameCount(thread_id, &actual_frame_count);
Elliott Hughes221229c2013-01-08 18:17:50 -0800991 if (error != ERR_NONE) {
992 return error;
993 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700994
Elliott Hughes3f4d58f2012-02-18 20:05:37 -0800995 if (actual_frame_count <= 0) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700996 return ERR_THREAD_NOT_SUSPENDED; // 0 means no managed frames (which means "in native").
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700997 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700998
Elliott Hughes3f4d58f2012-02-18 20:05:37 -0800999 if (start_frame > actual_frame_count) {
1000 return ERR_INVALID_INDEX;
1001 }
1002 if (length == static_cast<uint32_t>(-1)) {
1003 length = actual_frame_count - start_frame;
1004 }
1005 if (start_frame + length > actual_frame_count) {
1006 return ERR_INVALID_LENGTH;
1007 }
1008
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001009 return Dbg::GetThreadFrames(thread_id, start_frame, length, pReply);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001010}
1011
1012/*
1013 * Returns the #of frames on the specified thread, which must be suspended.
1014 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001015static JdwpError TR_FrameCount(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -07001016 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001017 ObjectId thread_id = request->ReadThreadId();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001018
Elliott Hughes221229c2013-01-08 18:17:50 -08001019 size_t frame_count;
Ian Rogersc0542af2014-09-03 16:16:56 -07001020 JdwpError rc = Dbg::GetThreadFrameCount(thread_id, &frame_count);
Elliott Hughes4993bbc2013-01-10 15:41:25 -08001021 if (rc != ERR_NONE) {
1022 return rc;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001023 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001024 expandBufAdd4BE(pReply, static_cast<uint32_t>(frame_count));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001025
1026 return ERR_NONE;
1027}
1028
Ian Rogersc0542af2014-09-03 16:16:56 -07001029static JdwpError TR_OwnedMonitors(Request* request, ExpandBuf* reply, bool with_stack_depths)
Mathieu Chartier90443472015-07-16 20:32:27 -07001030 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001031 ObjectId thread_id = request->ReadThreadId();
Elliott Hughes4993bbc2013-01-10 15:41:25 -08001032
1033 std::vector<ObjectId> monitors;
Elliott Hughes734b8c62013-01-11 15:32:45 -08001034 std::vector<uint32_t> stack_depths;
Ian Rogersc0542af2014-09-03 16:16:56 -07001035 JdwpError rc = Dbg::GetOwnedMonitors(thread_id, &monitors, &stack_depths);
Elliott Hughes4993bbc2013-01-10 15:41:25 -08001036 if (rc != ERR_NONE) {
1037 return rc;
1038 }
1039
1040 expandBufAdd4BE(reply, monitors.size());
1041 for (size_t i = 0; i < monitors.size(); ++i) {
1042 rc = WriteTaggedObject(reply, monitors[i]);
1043 if (rc != ERR_NONE) {
1044 return rc;
1045 }
Elliott Hughes734b8c62013-01-11 15:32:45 -08001046 if (with_stack_depths) {
1047 expandBufAdd4BE(reply, stack_depths[i]);
1048 }
Elliott Hughes4993bbc2013-01-10 15:41:25 -08001049 }
1050 return ERR_NONE;
1051}
1052
Ian Rogersc0542af2014-09-03 16:16:56 -07001053static JdwpError TR_OwnedMonitors(JdwpState*, Request* request, ExpandBuf* reply)
Mathieu Chartier90443472015-07-16 20:32:27 -07001054 SHARED_REQUIRES(Locks::mutator_lock_) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001055 return TR_OwnedMonitors(request, reply, false);
Elliott Hughes734b8c62013-01-11 15:32:45 -08001056}
1057
Ian Rogersc0542af2014-09-03 16:16:56 -07001058static JdwpError TR_OwnedMonitorsStackDepthInfo(JdwpState*, Request* request, ExpandBuf* reply)
Mathieu Chartier90443472015-07-16 20:32:27 -07001059 SHARED_REQUIRES(Locks::mutator_lock_) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001060 return TR_OwnedMonitors(request, reply, true);
Elliott Hughes734b8c62013-01-11 15:32:45 -08001061}
1062
Ian Rogersc0542af2014-09-03 16:16:56 -07001063static JdwpError TR_CurrentContendedMonitor(JdwpState*, Request* request, ExpandBuf* reply)
Mathieu Chartier90443472015-07-16 20:32:27 -07001064 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001065 ObjectId thread_id = request->ReadThreadId();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001066
Elliott Hughesf9501702013-01-11 11:22:27 -08001067 ObjectId contended_monitor;
Ian Rogersc0542af2014-09-03 16:16:56 -07001068 JdwpError rc = Dbg::GetContendedMonitor(thread_id, &contended_monitor);
Elliott Hughesf9501702013-01-11 11:22:27 -08001069 if (rc != ERR_NONE) {
1070 return rc;
1071 }
1072 return WriteTaggedObject(reply, contended_monitor);
1073}
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001074
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01001075static JdwpError TR_Interrupt(JdwpState*, Request* request, ExpandBuf* reply ATTRIBUTE_UNUSED)
Mathieu Chartier90443472015-07-16 20:32:27 -07001076 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001077 ObjectId thread_id = request->ReadThreadId();
Elliott Hughesf9501702013-01-11 11:22:27 -08001078 return Dbg::Interrupt(thread_id);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001079}
1080
1081/*
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001082 * Return the debug suspend count for the specified thread.
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001083 *
1084 * (The thread *might* still be running -- it might not have examined
1085 * its suspend count recently.)
1086 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001087static JdwpError TR_DebugSuspendCount(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -07001088 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001089 ObjectId thread_id = request->ReadThreadId();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001090 return Dbg::GetThreadDebugSuspendCount(thread_id, pReply);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001091}
1092
1093/*
1094 * Return the name of a thread group.
1095 *
1096 * The Eclipse debugger recognizes "main" and "system" as special.
1097 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001098static JdwpError TGR_Name(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -07001099 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001100 ObjectId thread_group_id = request->ReadThreadGroupId();
Sebastien Hertza06430c2014-09-15 19:21:30 +02001101 return Dbg::GetThreadGroupName(thread_group_id, pReply);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001102}
1103
1104/*
1105 * Returns the thread group -- if any -- that contains the specified
1106 * thread group.
1107 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001108static JdwpError TGR_Parent(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -07001109 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001110 ObjectId thread_group_id = request->ReadThreadGroupId();
Sebastien Hertza06430c2014-09-15 19:21:30 +02001111 return Dbg::GetThreadGroupParent(thread_group_id, pReply);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001112}
1113
1114/*
1115 * Return the active threads and thread groups that are part of the
1116 * specified thread group.
1117 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001118static JdwpError TGR_Children(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -07001119 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001120 ObjectId thread_group_id = request->ReadThreadGroupId();
Sebastien Hertza06430c2014-09-15 19:21:30 +02001121 return Dbg::GetThreadGroupChildren(thread_group_id, pReply);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001122}
1123
1124/*
1125 * Return the #of components in the array.
1126 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001127static JdwpError AR_Length(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 array_id = request->ReadArrayId();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001130
Ian Rogersc0542af2014-09-03 16:16:56 -07001131 int32_t length;
1132 JdwpError status = Dbg::GetArrayLength(array_id, &length);
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001133 if (status != ERR_NONE) {
1134 return status;
1135 }
Elliott Hughes2435a572012-02-17 16:07:41 -08001136 VLOG(jdwp) << " --> " << length;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001137
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001138 expandBufAdd4BE(pReply, length);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001139
1140 return ERR_NONE;
1141}
1142
1143/*
1144 * Return the values from an array.
1145 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001146static JdwpError AR_GetValues(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -07001147 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001148 ObjectId array_id = request->ReadArrayId();
1149 uint32_t offset = request->ReadUnsigned32("offset");
1150 uint32_t length = request->ReadUnsigned32("length");
Elliott Hughesa96836a2013-01-17 12:27:49 -08001151 return Dbg::OutputArray(array_id, offset, length, pReply);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001152}
1153
1154/*
1155 * Set values in an array.
1156 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001157static JdwpError AR_SetValues(JdwpState*, Request* request, ExpandBuf*)
Mathieu Chartier90443472015-07-16 20:32:27 -07001158 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001159 ObjectId array_id = request->ReadArrayId();
1160 uint32_t offset = request->ReadUnsigned32("offset");
1161 uint32_t count = request->ReadUnsigned32("count");
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001162 return Dbg::SetArrayElements(array_id, offset, count, request);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001163}
1164
Ian Rogersc0542af2014-09-03 16:16:56 -07001165static JdwpError CLR_VisibleClasses(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -07001166 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001167 request->ReadObjectId(); // classLoaderObject
Elliott Hughes86964332012-02-15 19:37:42 -08001168 // TODO: we should only return classes which have the given class loader as a defining or
1169 // initiating loader. The former would be easy; the latter is hard, because we don't have
1170 // any such notion.
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001171 return VM_AllClassesImpl(pReply, false, false);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001172}
1173
Sebastien Hertz358bcaf2015-10-21 16:18:58 +02001174// Delete function class to use std::unique_ptr with JdwpEvent.
1175struct JdwpEventDeleter {
1176 void operator()(JdwpEvent* event) {
1177 EventFree(event);
1178 }
1179};
1180
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001181/*
1182 * Set an event trigger.
1183 *
1184 * Reply with a requestID.
1185 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001186static JdwpError ER_Set(JdwpState* state, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -07001187 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001188 JdwpEventKind event_kind = request->ReadEnum1<JdwpEventKind>("event kind");
1189 JdwpSuspendPolicy suspend_policy = request->ReadEnum1<JdwpSuspendPolicy>("suspend policy");
1190 int32_t modifier_count = request->ReadSigned32("modifier count");
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001191
Elliott Hughesa96836a2013-01-17 12:27:49 -08001192 CHECK_LT(modifier_count, 256); /* reasonableness check */
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001193
Sebastien Hertz358bcaf2015-10-21 16:18:58 +02001194 std::unique_ptr<JDWP::JdwpEvent, JdwpEventDeleter> pEvent(EventAlloc(modifier_count));
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001195 pEvent->eventKind = event_kind;
1196 pEvent->suspend_policy = suspend_policy;
Elliott Hughesa96836a2013-01-17 12:27:49 -08001197 pEvent->modCount = modifier_count;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001198
1199 /*
1200 * Read modifiers. Ordering may be significant (see explanation of Count
1201 * mods in JDWP doc).
1202 */
Elliott Hughesa96836a2013-01-17 12:27:49 -08001203 for (int32_t i = 0; i < modifier_count; ++i) {
Elliott Hughes972a47b2012-02-21 18:16:06 -08001204 JdwpEventMod& mod = pEvent->mods[i];
Ian Rogersc0542af2014-09-03 16:16:56 -07001205 mod.modKind = request->ReadModKind();
Elliott Hughes972a47b2012-02-21 18:16:06 -08001206 switch (mod.modKind) {
Elliott Hughesa96836a2013-01-17 12:27:49 -08001207 case MK_COUNT:
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001208 {
Elliott Hughesa96836a2013-01-17 12:27:49 -08001209 // Report once, when "--count" reaches 0.
Ian Rogersc0542af2014-09-03 16:16:56 -07001210 uint32_t count = request->ReadUnsigned32("count");
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001211 if (count == 0) {
1212 return ERR_INVALID_COUNT;
1213 }
Elliott Hughes972a47b2012-02-21 18:16:06 -08001214 mod.count.count = count;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001215 }
1216 break;
Elliott Hughesa96836a2013-01-17 12:27:49 -08001217 case MK_CONDITIONAL:
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001218 {
Elliott Hughesa96836a2013-01-17 12:27:49 -08001219 // Conditional on expression.
Ian Rogersc0542af2014-09-03 16:16:56 -07001220 uint32_t exprId = request->ReadUnsigned32("expr id");
Elliott Hughes972a47b2012-02-21 18:16:06 -08001221 mod.conditional.exprId = exprId;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001222 }
1223 break;
Elliott Hughesa96836a2013-01-17 12:27:49 -08001224 case MK_THREAD_ONLY:
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001225 {
Elliott Hughesa96836a2013-01-17 12:27:49 -08001226 // Only report events in specified thread.
Ian Rogersc0542af2014-09-03 16:16:56 -07001227 ObjectId thread_id = request->ReadThreadId();
Elliott Hughes74847412012-06-20 18:10:21 -07001228 mod.threadOnly.threadId = thread_id;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001229 }
1230 break;
Elliott Hughesa96836a2013-01-17 12:27:49 -08001231 case MK_CLASS_ONLY:
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001232 {
Elliott Hughesa96836a2013-01-17 12:27:49 -08001233 // For ClassPrepare, MethodEntry.
Ian Rogersc0542af2014-09-03 16:16:56 -07001234 RefTypeId class_id = request->ReadRefTypeId();
Elliott Hughes74847412012-06-20 18:10:21 -07001235 mod.classOnly.refTypeId = class_id;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001236 }
1237 break;
Elliott Hughesa96836a2013-01-17 12:27:49 -08001238 case MK_CLASS_MATCH:
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001239 {
Elliott Hughesa96836a2013-01-17 12:27:49 -08001240 // Restrict events to matching classes.
Elliott Hughes86964332012-02-15 19:37:42 -08001241 // pattern is "java.foo.*", we want "java/foo/*".
Ian Rogersc0542af2014-09-03 16:16:56 -07001242 std::string pattern(request->ReadUtf8String());
Elliott Hughes86964332012-02-15 19:37:42 -08001243 std::replace(pattern.begin(), pattern.end(), '.', '/');
Elliott Hughes972a47b2012-02-21 18:16:06 -08001244 mod.classMatch.classPattern = strdup(pattern.c_str());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001245 }
1246 break;
Elliott Hughesa96836a2013-01-17 12:27:49 -08001247 case MK_CLASS_EXCLUDE:
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001248 {
Elliott Hughesa96836a2013-01-17 12:27:49 -08001249 // Restrict events to non-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.classExclude.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_LOCATION_ONLY:
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001257 {
Elliott Hughesa96836a2013-01-17 12:27:49 -08001258 // Restrict certain events based on location.
Ian Rogersc0542af2014-09-03 16:16:56 -07001259 JdwpLocation location = request->ReadLocation();
Elliott Hughesa96836a2013-01-17 12:27:49 -08001260 mod.locationOnly.loc = location;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001261 }
1262 break;
Elliott Hughesa96836a2013-01-17 12:27:49 -08001263 case MK_EXCEPTION_ONLY:
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001264 {
Elliott Hughesa96836a2013-01-17 12:27:49 -08001265 // Modifies EK_EXCEPTION events,
Ian Rogersc0542af2014-09-03 16:16:56 -07001266 mod.exceptionOnly.refTypeId = request->ReadRefTypeId(); // null => all exceptions.
1267 mod.exceptionOnly.caught = request->ReadEnum1<uint8_t>("caught");
1268 mod.exceptionOnly.uncaught = request->ReadEnum1<uint8_t>("uncaught");
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001269 }
1270 break;
Elliott Hughesa96836a2013-01-17 12:27:49 -08001271 case MK_FIELD_ONLY:
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001272 {
Elliott Hughesa96836a2013-01-17 12:27:49 -08001273 // For field access/modification events.
Ian Rogersc0542af2014-09-03 16:16:56 -07001274 RefTypeId declaring = request->ReadRefTypeId();
1275 FieldId fieldId = request->ReadFieldId();
Elliott Hughes972a47b2012-02-21 18:16:06 -08001276 mod.fieldOnly.refTypeId = declaring;
1277 mod.fieldOnly.fieldId = fieldId;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001278 }
1279 break;
Elliott Hughesa96836a2013-01-17 12:27:49 -08001280 case MK_STEP:
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001281 {
Elliott Hughesa96836a2013-01-17 12:27:49 -08001282 // For use with EK_SINGLE_STEP.
Ian Rogersc0542af2014-09-03 16:16:56 -07001283 ObjectId thread_id = request->ReadThreadId();
1284 uint32_t size = request->ReadUnsigned32("step size");
1285 uint32_t depth = request->ReadUnsigned32("step depth");
Ian Rogersd9e4e0c2014-01-23 20:11:40 -08001286 VLOG(jdwp) << StringPrintf(" Step: thread=%#" PRIx64, thread_id)
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001287 << " size=" << JdwpStepSize(size) << " depth=" << JdwpStepDepth(depth);
1288
Elliott Hughes74847412012-06-20 18:10:21 -07001289 mod.step.threadId = thread_id;
Elliott Hughes972a47b2012-02-21 18:16:06 -08001290 mod.step.size = size;
1291 mod.step.depth = depth;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001292 }
1293 break;
Elliott Hughesa96836a2013-01-17 12:27:49 -08001294 case MK_INSTANCE_ONLY:
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001295 {
Elliott Hughesa96836a2013-01-17 12:27:49 -08001296 // Report events related to a specific object.
Ian Rogersc0542af2014-09-03 16:16:56 -07001297 ObjectId instance = request->ReadObjectId();
Elliott Hughes972a47b2012-02-21 18:16:06 -08001298 mod.instanceOnly.objectId = instance;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001299 }
1300 break;
1301 default:
Sebastien Hertz6d7839e2014-12-05 10:52:15 +01001302 LOG(WARNING) << "Unsupported modifier " << mod.modKind << " for event " << pEvent->eventKind;
Sebastien Hertz6d7839e2014-12-05 10:52:15 +01001303 return JDWP::ERR_NOT_IMPLEMENTED;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001304 }
1305 }
1306
1307 /*
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001308 * We reply with an integer "requestID".
1309 */
Elliott Hughes376a7a02011-10-24 18:35:55 -07001310 uint32_t requestId = state->NextEventSerial();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001311 expandBufAdd4BE(pReply, requestId);
1312
1313 pEvent->requestId = requestId;
1314
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08001315 VLOG(jdwp) << StringPrintf(" --> event requestId=%#x", requestId);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001316
1317 /* add it to the list */
Sebastien Hertz358bcaf2015-10-21 16:18:58 +02001318 JdwpError err = state->RegisterEvent(pEvent.get());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001319 if (err != ERR_NONE) {
1320 /* registration failed, probably because event is bogus */
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001321 LOG(WARNING) << "WARNING: event request rejected";
Sebastien Hertz358bcaf2015-10-21 16:18:58 +02001322 return err;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001323 }
Sebastien Hertz358bcaf2015-10-21 16:18:58 +02001324 pEvent.release();
1325 return ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001326}
1327
Ian Rogersc0542af2014-09-03 16:16:56 -07001328static JdwpError ER_Clear(JdwpState* state, Request* request, ExpandBuf*)
Mathieu Chartier90443472015-07-16 20:32:27 -07001329 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001330 request->ReadEnum1<JdwpEventKind>("event kind");
1331 uint32_t requestId = request->ReadUnsigned32("request id");
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001332
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001333 // Failure to find an event with a matching ID is a no-op
1334 // and does not return an error.
Elliott Hughes761928d2011-11-16 18:33:03 -08001335 state->UnregisterEventById(requestId);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001336 return ERR_NONE;
1337}
1338
1339/*
1340 * Return the values of arguments and local variables.
1341 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001342static JdwpError SF_GetValues(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -07001343 SHARED_REQUIRES(Locks::mutator_lock_) {
Sebastien Hertz8009f392014-09-01 17:07:11 +02001344 return Dbg::GetLocalValues(request, pReply);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001345}
1346
1347/*
1348 * Set the values of arguments and local variables.
1349 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001350static JdwpError SF_SetValues(JdwpState*, Request* request, ExpandBuf*)
Mathieu Chartier90443472015-07-16 20:32:27 -07001351 SHARED_REQUIRES(Locks::mutator_lock_) {
Sebastien Hertz8009f392014-09-01 17:07:11 +02001352 return Dbg::SetLocalValues(request);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001353}
1354
Ian Rogersc0542af2014-09-03 16:16:56 -07001355static JdwpError SF_ThisObject(JdwpState*, Request* request, ExpandBuf* reply)
Mathieu Chartier90443472015-07-16 20:32:27 -07001356 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001357 ObjectId thread_id = request->ReadThreadId();
1358 FrameId frame_id = request->ReadFrameId();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001359
Elliott Hughes4993bbc2013-01-10 15:41:25 -08001360 ObjectId object_id;
1361 JdwpError rc = Dbg::GetThisObject(thread_id, frame_id, &object_id);
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001362 if (rc != ERR_NONE) {
1363 return rc;
Elliott Hughes546b9862012-06-20 16:06:13 -07001364 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001365
Elliott Hughes4993bbc2013-01-10 15:41:25 -08001366 return WriteTaggedObject(reply, object_id);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001367}
1368
1369/*
1370 * Return the reference type reflected by this class object.
1371 *
1372 * This appears to be required because ReferenceTypeId values are NEVER
1373 * reused, whereas ClassIds can be recycled like any other object. (Either
1374 * that, or I have no idea what this is for.)
1375 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001376static JdwpError COR_ReflectedType(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -07001377 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001378 RefTypeId class_object_id = request->ReadRefTypeId();
Elliott Hughesa96836a2013-01-17 12:27:49 -08001379 return Dbg::GetReflectedType(class_object_id, pReply);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001380}
1381
1382/*
1383 * Handle a DDM packet with a single chunk in it.
1384 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001385static JdwpError DDM_Chunk(JdwpState* state, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -07001386 SHARED_REQUIRES(Locks::mutator_lock_) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001387 state->NotifyDdmsActive();
Sebastien Hertz7d955652014-10-22 10:57:10 +02001388 uint8_t* replyBuf = nullptr;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001389 int replyLen = -1;
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001390 if (Dbg::DdmHandlePacket(request, &replyBuf, &replyLen)) {
1391 // If they want to send something back, we copy it into the buffer.
1392 // TODO: consider altering the JDWP stuff to hold the packet header
1393 // in a separate buffer. That would allow us to writev() DDM traffic
1394 // instead of copying it into the expanding buffer. The reduction in
1395 // heap requirements is probably more valuable than the efficiency.
1396 CHECK_GT(replyLen, 0);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001397 memcpy(expandBufAddSpace(pReply, replyLen), replyBuf, replyLen);
Sebastien Hertz3901bbc2015-08-06 11:37:02 +02001398 delete[] replyBuf;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001399 }
1400 return ERR_NONE;
1401}
1402
1403/*
1404 * Handler map decl.
1405 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001406typedef JdwpError (*JdwpRequestHandler)(JdwpState* state, Request* request, ExpandBuf* reply);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001407
1408struct JdwpHandlerMap {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001409 uint8_t cmdSet;
1410 uint8_t cmd;
1411 JdwpRequestHandler func;
1412 const char* name;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001413};
1414
1415/*
1416 * Map commands to functions.
1417 *
1418 * Command sets 0-63 are incoming requests, 64-127 are outbound requests,
1419 * and 128-256 are vendor-defined.
1420 */
Elliott Hughescb693062013-02-21 09:48:08 -08001421static const JdwpHandlerMap gHandlers[] = {
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001422 /* VirtualMachine command set (1) */
Elliott Hughesf327e072013-01-09 16:01:26 -08001423 { 1, 1, VM_Version, "VirtualMachine.Version" },
1424 { 1, 2, VM_ClassesBySignature, "VirtualMachine.ClassesBySignature" },
1425 { 1, 3, VM_AllClasses, "VirtualMachine.AllClasses" },
1426 { 1, 4, VM_AllThreads, "VirtualMachine.AllThreads" },
1427 { 1, 5, VM_TopLevelThreadGroups, "VirtualMachine.TopLevelThreadGroups" },
1428 { 1, 6, VM_Dispose, "VirtualMachine.Dispose" },
1429 { 1, 7, VM_IDSizes, "VirtualMachine.IDSizes" },
1430 { 1, 8, VM_Suspend, "VirtualMachine.Suspend" },
1431 { 1, 9, VM_Resume, "VirtualMachine.Resume" },
1432 { 1, 10, VM_Exit, "VirtualMachine.Exit" },
1433 { 1, 11, VM_CreateString, "VirtualMachine.CreateString" },
1434 { 1, 12, VM_Capabilities, "VirtualMachine.Capabilities" },
1435 { 1, 13, VM_ClassPaths, "VirtualMachine.ClassPaths" },
1436 { 1, 14, VM_DisposeObjects, "VirtualMachine.DisposeObjects" },
Sebastien Hertz7d955652014-10-22 10:57:10 +02001437 { 1, 15, nullptr, "VirtualMachine.HoldEvents" },
1438 { 1, 16, nullptr, "VirtualMachine.ReleaseEvents" },
Elliott Hughesf327e072013-01-09 16:01:26 -08001439 { 1, 17, VM_CapabilitiesNew, "VirtualMachine.CapabilitiesNew" },
Sebastien Hertz7d955652014-10-22 10:57:10 +02001440 { 1, 18, nullptr, "VirtualMachine.RedefineClasses" },
1441 { 1, 19, nullptr, "VirtualMachine.SetDefaultStratum" },
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001442 { 1, 20, VM_AllClassesWithGeneric, "VirtualMachine.AllClassesWithGeneric" },
Elliott Hughesec0f83d2013-01-15 16:54:08 -08001443 { 1, 21, VM_InstanceCounts, "VirtualMachine.InstanceCounts" },
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001444
1445 /* ReferenceType command set (2) */
Elliott Hughesf327e072013-01-09 16:01:26 -08001446 { 2, 1, RT_Signature, "ReferenceType.Signature" },
1447 { 2, 2, RT_ClassLoader, "ReferenceType.ClassLoader" },
1448 { 2, 3, RT_Modifiers, "ReferenceType.Modifiers" },
1449 { 2, 4, RT_Fields, "ReferenceType.Fields" },
1450 { 2, 5, RT_Methods, "ReferenceType.Methods" },
1451 { 2, 6, RT_GetValues, "ReferenceType.GetValues" },
1452 { 2, 7, RT_SourceFile, "ReferenceType.SourceFile" },
Sebastien Hertz7d955652014-10-22 10:57:10 +02001453 { 2, 8, nullptr, "ReferenceType.NestedTypes" },
Elliott Hughesf327e072013-01-09 16:01:26 -08001454 { 2, 9, RT_Status, "ReferenceType.Status" },
1455 { 2, 10, RT_Interfaces, "ReferenceType.Interfaces" },
1456 { 2, 11, RT_ClassObject, "ReferenceType.ClassObject" },
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001457 { 2, 12, RT_SourceDebugExtension, "ReferenceType.SourceDebugExtension" },
1458 { 2, 13, RT_SignatureWithGeneric, "ReferenceType.SignatureWithGeneric" },
Elliott Hughesf327e072013-01-09 16:01:26 -08001459 { 2, 14, RT_FieldsWithGeneric, "ReferenceType.FieldsWithGeneric" },
1460 { 2, 15, RT_MethodsWithGeneric, "ReferenceType.MethodsWithGeneric" },
Elliott Hughes3b78c942013-01-15 17:35:41 -08001461 { 2, 16, RT_Instances, "ReferenceType.Instances" },
Sebastien Hertz7d955652014-10-22 10:57:10 +02001462 { 2, 17, nullptr, "ReferenceType.ClassFileVersion" },
1463 { 2, 18, nullptr, "ReferenceType.ConstantPool" },
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001464
1465 /* ClassType command set (3) */
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001466 { 3, 1, CT_Superclass, "ClassType.Superclass" },
1467 { 3, 2, CT_SetValues, "ClassType.SetValues" },
1468 { 3, 3, CT_InvokeMethod, "ClassType.InvokeMethod" },
1469 { 3, 4, CT_NewInstance, "ClassType.NewInstance" },
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001470
1471 /* ArrayType command set (4) */
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001472 { 4, 1, AT_newInstance, "ArrayType.NewInstance" },
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001473
1474 /* InterfaceType command set (5) */
1475
1476 /* Method command set (6) */
Elliott Hughesf327e072013-01-09 16:01:26 -08001477 { 6, 1, M_LineTable, "Method.LineTable" },
1478 { 6, 2, M_VariableTable, "Method.VariableTable" },
Elliott Hughes9777ba22013-01-17 09:04:19 -08001479 { 6, 3, M_Bytecodes, "Method.Bytecodes" },
Sebastien Hertz7d955652014-10-22 10:57:10 +02001480 { 6, 4, nullptr, "Method.IsObsolete" },
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001481 { 6, 5, M_VariableTableWithGeneric, "Method.VariableTableWithGeneric" },
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001482
1483 /* Field command set (8) */
1484
1485 /* ObjectReference command set (9) */
Elliott Hughesf327e072013-01-09 16:01:26 -08001486 { 9, 1, OR_ReferenceType, "ObjectReference.ReferenceType" },
1487 { 9, 2, OR_GetValues, "ObjectReference.GetValues" },
1488 { 9, 3, OR_SetValues, "ObjectReference.SetValues" },
Sebastien Hertz7d955652014-10-22 10:57:10 +02001489 { 9, 4, nullptr, "ObjectReference.UNUSED" },
Elliott Hughesf327e072013-01-09 16:01:26 -08001490 { 9, 5, OR_MonitorInfo, "ObjectReference.MonitorInfo" },
1491 { 9, 6, OR_InvokeMethod, "ObjectReference.InvokeMethod" },
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001492 { 9, 7, OR_DisableCollection, "ObjectReference.DisableCollection" },
Elliott Hughesf327e072013-01-09 16:01:26 -08001493 { 9, 8, OR_EnableCollection, "ObjectReference.EnableCollection" },
1494 { 9, 9, OR_IsCollected, "ObjectReference.IsCollected" },
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001495 { 9, 10, OR_ReferringObjects, "ObjectReference.ReferringObjects" },
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001496
1497 /* StringReference command set (10) */
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001498 { 10, 1, SR_Value, "StringReference.Value" },
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001499
1500 /* ThreadReference command set (11) */
Elliott Hughes734b8c62013-01-11 15:32:45 -08001501 { 11, 1, TR_Name, "ThreadReference.Name" },
1502 { 11, 2, TR_Suspend, "ThreadReference.Suspend" },
1503 { 11, 3, TR_Resume, "ThreadReference.Resume" },
1504 { 11, 4, TR_Status, "ThreadReference.Status" },
1505 { 11, 5, TR_ThreadGroup, "ThreadReference.ThreadGroup" },
1506 { 11, 6, TR_Frames, "ThreadReference.Frames" },
1507 { 11, 7, TR_FrameCount, "ThreadReference.FrameCount" },
1508 { 11, 8, TR_OwnedMonitors, "ThreadReference.OwnedMonitors" },
1509 { 11, 9, TR_CurrentContendedMonitor, "ThreadReference.CurrentContendedMonitor" },
Sebastien Hertz7d955652014-10-22 10:57:10 +02001510 { 11, 10, nullptr, "ThreadReference.Stop" },
Elliott Hughes734b8c62013-01-11 15:32:45 -08001511 { 11, 11, TR_Interrupt, "ThreadReference.Interrupt" },
1512 { 11, 12, TR_DebugSuspendCount, "ThreadReference.SuspendCount" },
1513 { 11, 13, TR_OwnedMonitorsStackDepthInfo, "ThreadReference.OwnedMonitorsStackDepthInfo" },
Sebastien Hertz7d955652014-10-22 10:57:10 +02001514 { 11, 14, nullptr, "ThreadReference.ForceEarlyReturn" },
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001515
1516 /* ThreadGroupReference command set (12) */
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001517 { 12, 1, TGR_Name, "ThreadGroupReference.Name" },
1518 { 12, 2, TGR_Parent, "ThreadGroupReference.Parent" },
1519 { 12, 3, TGR_Children, "ThreadGroupReference.Children" },
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001520
1521 /* ArrayReference command set (13) */
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001522 { 13, 1, AR_Length, "ArrayReference.Length" },
1523 { 13, 2, AR_GetValues, "ArrayReference.GetValues" },
1524 { 13, 3, AR_SetValues, "ArrayReference.SetValues" },
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001525
1526 /* ClassLoaderReference command set (14) */
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001527 { 14, 1, CLR_VisibleClasses, "ClassLoaderReference.VisibleClasses" },
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001528
1529 /* EventRequest command set (15) */
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001530 { 15, 1, ER_Set, "EventRequest.Set" },
1531 { 15, 2, ER_Clear, "EventRequest.Clear" },
Sebastien Hertz7d955652014-10-22 10:57:10 +02001532 { 15, 3, nullptr, "EventRequest.ClearAllBreakpoints" },
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001533
1534 /* StackFrame command set (16) */
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001535 { 16, 1, SF_GetValues, "StackFrame.GetValues" },
1536 { 16, 2, SF_SetValues, "StackFrame.SetValues" },
1537 { 16, 3, SF_ThisObject, "StackFrame.ThisObject" },
Sebastien Hertz7d955652014-10-22 10:57:10 +02001538 { 16, 4, nullptr, "StackFrame.PopFrames" },
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001539
1540 /* ClassObjectReference command set (17) */
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001541 { 17, 1, COR_ReflectedType, "ClassObjectReference.ReflectedType" },
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001542
1543 /* Event command set (64) */
Sebastien Hertz7d955652014-10-22 10:57:10 +02001544 { 64, 100, nullptr, "Event.Composite" }, // sent from VM to debugger, never received by VM
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001545
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001546 { 199, 1, DDM_Chunk, "DDM.Chunk" },
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001547};
1548
Ian Rogersc0542af2014-09-03 16:16:56 -07001549static const char* GetCommandName(Request* request) {
Elliott Hughescb693062013-02-21 09:48:08 -08001550 for (size_t i = 0; i < arraysize(gHandlers); ++i) {
Sebastien Hertz7d955652014-10-22 10:57:10 +02001551 if (gHandlers[i].cmdSet == request->GetCommandSet() &&
1552 gHandlers[i].cmd == request->GetCommand()) {
Elliott Hughescb693062013-02-21 09:48:08 -08001553 return gHandlers[i].name;
Elliott Hughesa3c24aa2011-12-07 15:34:09 -08001554 }
1555 }
1556 return "?UNKNOWN?";
1557}
1558
Ian Rogersc0542af2014-09-03 16:16:56 -07001559static std::string DescribeCommand(Request* request) {
Elliott Hughesa3c24aa2011-12-07 15:34:09 -08001560 std::string result;
Elliott Hughes64f574f2013-02-20 14:57:12 -08001561 result += "REQUEST: ";
Elliott Hughescb693062013-02-21 09:48:08 -08001562 result += GetCommandName(request);
Ian Rogersc0542af2014-09-03 16:16:56 -07001563 result += StringPrintf(" (length=%zu id=0x%06x)", request->GetLength(), request->GetId());
Elliott Hughesa3c24aa2011-12-07 15:34:09 -08001564 return result;
1565}
1566
Sebastien Hertzcbc50642015-06-01 17:33:12 +02001567// Returns true if the given command_set and command identify an "invoke" command.
1568static bool IsInvokeCommand(uint8_t command_set, uint8_t command) {
1569 if (command_set == kJDWPClassTypeCmdSet) {
1570 return command == kJDWPClassTypeInvokeMethodCmd || command == kJDWPClassTypeNewInstanceCmd;
1571 } else if (command_set == kJDWPObjectReferenceCmdSet) {
1572 return command == kJDWPObjectReferenceInvokeCmd;
1573 } else {
1574 return false;
1575 }
1576}
1577
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001578/*
Sebastien Hertzcbc50642015-06-01 17:33:12 +02001579 * Process a request from the debugger. The skip_reply flag is set to true to indicate to the
1580 * caller the reply must not be sent to the debugger. This is used for invoke commands where the
1581 * reply is sent by the event thread after completing the invoke.
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001582 *
1583 * On entry, the JDWP thread is in VMWAIT.
1584 */
Sebastien Hertzcbc50642015-06-01 17:33:12 +02001585size_t JdwpState::ProcessRequest(Request* request, ExpandBuf* pReply, bool* skip_reply) {
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001586 JdwpError result = ERR_NONE;
Sebastien Hertzcbc50642015-06-01 17:33:12 +02001587 *skip_reply = false;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001588
Ian Rogersc0542af2014-09-03 16:16:56 -07001589 if (request->GetCommandSet() != kJDWPDdmCmdSet) {
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001590 /*
1591 * Activity from a debugger, not merely ddms. Mark us as having an
1592 * active debugger session, and zero out the last-activity timestamp
1593 * so waitForDebugger() doesn't return if we stall for a bit here.
1594 */
Elliott Hughesa2155262011-11-16 16:26:58 -08001595 Dbg::GoActive();
Ian Rogers37f3c962014-07-17 11:25:30 -07001596 last_activity_time_ms_.StoreSequentiallyConsistent(0);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001597 }
1598
1599 /*
1600 * If a debugger event has fired in another thread, wait until the
Sebastien Hertz2bf93f42015-01-09 18:44:05 +01001601 * initiating thread has suspended itself before processing commands
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001602 * from the debugger. Otherwise we (the JDWP thread) could be told to
1603 * resume the thread before it has suspended.
1604 *
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001605 * Note that we MUST clear the event token before waking the event
1606 * thread up, or risk waiting for the thread to suspend after we've
1607 * told it to resume.
1608 */
Sebastien Hertz2bf93f42015-01-09 18:44:05 +01001609 AcquireJdwpTokenForCommand();
Sebastien Hertz400a3a92014-02-24 14:56:21 +01001610
1611 /*
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001612 * Tell the VM that we're running and shouldn't be interrupted by GC.
1613 * Do this after anything that can stall indefinitely.
1614 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001615 Thread* self = Thread::Current();
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07001616 ScopedObjectAccess soa(self);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001617
1618 expandBufAddSpace(pReply, kJDWPHeaderLen);
1619
Elliott Hughesa3c24aa2011-12-07 15:34:09 -08001620 size_t i;
Elliott Hughescb693062013-02-21 09:48:08 -08001621 for (i = 0; i < arraysize(gHandlers); ++i) {
Sebastien Hertz7d955652014-10-22 10:57:10 +02001622 if (gHandlers[i].cmdSet == request->GetCommandSet() &&
1623 gHandlers[i].cmd == request->GetCommand() &&
1624 gHandlers[i].func != nullptr) {
Elliott Hughescb693062013-02-21 09:48:08 -08001625 VLOG(jdwp) << DescribeCommand(request);
1626 result = (*gHandlers[i].func)(this, request, pReply);
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001627 if (result == ERR_NONE) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001628 request->CheckConsumed();
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001629 }
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001630 self->AssertNoPendingException();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001631 break;
1632 }
1633 }
Elliott Hughescb693062013-02-21 09:48:08 -08001634 if (i == arraysize(gHandlers)) {
1635 LOG(ERROR) << "Command not implemented: " << DescribeCommand(request);
Ian Rogersc0542af2014-09-03 16:16:56 -07001636 LOG(ERROR) << HexDump(request->data(), request->size(), false, "");
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001637 result = ERR_NOT_IMPLEMENTED;
1638 }
1639
Sebastien Hertzcbc50642015-06-01 17:33:12 +02001640 size_t replyLength = 0U;
1641 if (result == ERR_NONE && IsInvokeCommand(request->GetCommandSet(), request->GetCommand())) {
1642 // We successfully request an invoke in the event thread. It will send the reply once the
1643 // invoke completes so we must not send it now.
1644 *skip_reply = true;
1645 } else {
1646 /*
1647 * Set up the reply header.
1648 *
1649 * If we encountered an error, only send the header back.
1650 */
1651 uint8_t* replyBuf = expandBufGetBuffer(pReply);
1652 replyLength = (result == ERR_NONE) ? expandBufGetLength(pReply) : kJDWPHeaderLen;
1653 Set4BE(replyBuf + kJDWPHeaderSizeOffset, replyLength);
1654 Set4BE(replyBuf + kJDWPHeaderIdOffset, request->GetId());
1655 Set1(replyBuf + kJDWPHeaderFlagsOffset, kJDWPFlagReply);
1656 Set2BE(replyBuf + kJDWPHeaderErrorCodeOffset, result);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001657
Sebastien Hertzcbc50642015-06-01 17:33:12 +02001658 CHECK_GT(expandBufGetLength(pReply), 0U) << GetCommandName(request) << " " << request->GetId();
Elliott Hughescb693062013-02-21 09:48:08 -08001659
Sebastien Hertzcbc50642015-06-01 17:33:12 +02001660 size_t respLen = expandBufGetLength(pReply) - kJDWPHeaderLen;
1661 VLOG(jdwp) << "REPLY: " << GetCommandName(request) << " " << result << " (length=" << respLen << ")";
1662 if (false) {
1663 VLOG(jdwp) << HexDump(expandBufGetBuffer(pReply) + kJDWPHeaderLen, respLen, false, "");
1664 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001665 }
1666
Elliott Hughescb693062013-02-21 09:48:08 -08001667 VLOG(jdwp) << "----------";
1668
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001669 /*
1670 * Update last-activity timestamp. We really only need this during
1671 * the initial setup. Only update if this is a non-DDMS packet.
1672 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001673 if (request->GetCommandSet() != kJDWPDdmCmdSet) {
Ian Rogers37f3c962014-07-17 11:25:30 -07001674 last_activity_time_ms_.StoreSequentiallyConsistent(MilliTime());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001675 }
1676
Sebastien Hertz43c8d722014-03-18 12:19:52 +01001677 return replyLength;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001678}
1679
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001680} // namespace JDWP
1681
1682} // namespace art