blob: 6278ef09dee99c095a026e237ade7b71c7f5c38f [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/*
Alex Light4a28e1e2016-02-24 16:35:59 -0800693 * Invoke a static method on an interface.
694 */
695static JdwpError IT_InvokeMethod(JdwpState* state, Request* request,
696 ExpandBuf* pReply ATTRIBUTE_UNUSED)
697 SHARED_REQUIRES(Locks::mutator_lock_) {
698 RefTypeId class_id = request->ReadRefTypeId();
699 ObjectId thread_id = request->ReadThreadId();
700 MethodId method_id = request->ReadMethodId();
701
702 return RequestInvoke(state, request, thread_id, 0, class_id, method_id, false);
703}
704
705/*
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700706 * Return line number information for the method, if present.
707 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700708static JdwpError M_LineTable(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -0700709 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700710 RefTypeId refTypeId = request->ReadRefTypeId();
711 MethodId method_id = request->ReadMethodId();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700712
Elliott Hughes74847412012-06-20 18:10:21 -0700713 Dbg::OutputLineTable(refTypeId, method_id, pReply);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700714
715 return ERR_NONE;
716}
717
Ian Rogersc0542af2014-09-03 16:16:56 -0700718static JdwpError M_VariableTable(JdwpState*, Request* request, ExpandBuf* pReply,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700719 bool generic)
Mathieu Chartier90443472015-07-16 20:32:27 -0700720 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700721 RefTypeId class_id = request->ReadRefTypeId();
722 MethodId method_id = request->ReadMethodId();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700723
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800724 // We could return ERR_ABSENT_INFORMATION here if the DEX file was built without local variable
725 // information. That will cause Eclipse to make a best-effort attempt at displaying local
726 // variables anonymously. However, the attempt isn't very good, so we're probably better off just
727 // not showing anything.
Elliott Hughes74847412012-06-20 18:10:21 -0700728 Dbg::OutputVariableTable(class_id, method_id, generic, pReply);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700729 return ERR_NONE;
730}
731
Ian Rogersc0542af2014-09-03 16:16:56 -0700732static JdwpError M_VariableTable(JdwpState* state, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -0700733 SHARED_REQUIRES(Locks::mutator_lock_) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -0800734 return M_VariableTable(state, request, pReply, false);
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800735}
736
Ian Rogersc0542af2014-09-03 16:16:56 -0700737static JdwpError M_VariableTableWithGeneric(JdwpState* state, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -0700738 SHARED_REQUIRES(Locks::mutator_lock_) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -0800739 return M_VariableTable(state, request, pReply, true);
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800740}
741
Ian Rogersc0542af2014-09-03 16:16:56 -0700742static JdwpError M_Bytecodes(JdwpState*, Request* request, ExpandBuf* reply)
Mathieu Chartier90443472015-07-16 20:32:27 -0700743 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700744 RefTypeId class_id = request->ReadRefTypeId();
745 MethodId method_id = request->ReadMethodId();
Elliott Hughes9777ba22013-01-17 09:04:19 -0800746
747 std::vector<uint8_t> bytecodes;
Ian Rogersc0542af2014-09-03 16:16:56 -0700748 JdwpError rc = Dbg::GetBytecodes(class_id, method_id, &bytecodes);
Elliott Hughes9777ba22013-01-17 09:04:19 -0800749 if (rc != ERR_NONE) {
750 return rc;
751 }
752
753 expandBufAdd4BE(reply, bytecodes.size());
754 for (size_t i = 0; i < bytecodes.size(); ++i) {
755 expandBufAdd1(reply, bytecodes[i]);
756 }
757
758 return ERR_NONE;
759}
760
Sebastien Hertz0a97fc62015-11-09 12:18:06 +0100761// Default implementation for IDEs relying on this command.
762static JdwpError M_IsObsolete(JdwpState*, Request* request, ExpandBuf* reply)
763 SHARED_REQUIRES(Locks::mutator_lock_) {
764 request->ReadRefTypeId(); // unused reference type ID
765 request->ReadMethodId(); // unused method ID
766 expandBufAdd1(reply, false); // a method is never obsolete.
767 return ERR_NONE;
768}
769
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700770/*
771 * Given an object reference, return the runtime type of the object
772 * (class or array).
773 *
Elliott Hughes74847412012-06-20 18:10:21 -0700774 * This can get called on different things, e.g. thread_id gets
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700775 * passed in here.
776 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700777static JdwpError OR_ReferenceType(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -0700778 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700779 ObjectId object_id = request->ReadObjectId();
Elliott Hughes74847412012-06-20 18:10:21 -0700780 return Dbg::GetReferenceType(object_id, pReply);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700781}
782
783/*
784 * Get values from the fields of an object.
785 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700786static JdwpError OR_GetValues(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -0700787 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700788 ObjectId object_id = request->ReadObjectId();
789 int32_t field_count = request->ReadSigned32("field count");
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700790
Elliott Hughes0cf74332012-02-23 23:14:00 -0800791 expandBufAdd4BE(pReply, field_count);
Elliott Hughesa96836a2013-01-17 12:27:49 -0800792 for (int32_t i = 0; i < field_count; ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700793 FieldId fieldId = request->ReadFieldId();
Elliott Hughes74847412012-06-20 18:10:21 -0700794 JdwpError status = Dbg::GetFieldValue(object_id, fieldId, pReply);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -0800795 if (status != ERR_NONE) {
796 return status;
797 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700798 }
799
800 return ERR_NONE;
801}
802
803/*
804 * Set values in the fields of an object.
805 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700806static JdwpError OR_SetValues(JdwpState*, Request* request, ExpandBuf*)
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();
809 int32_t field_count = request->ReadSigned32("field count");
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700810
Elliott Hughesa96836a2013-01-17 12:27:49 -0800811 for (int32_t i = 0; i < field_count; ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700812 FieldId fieldId = request->ReadFieldId();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700813
Elliott Hughesaed4be92011-12-02 16:16:23 -0800814 JDWP::JdwpTag fieldTag = Dbg::GetFieldBasicTag(fieldId);
Elliott Hughesdbb40792011-11-18 17:05:22 -0800815 size_t width = Dbg::GetTagWidth(fieldTag);
Ian Rogersc0542af2014-09-03 16:16:56 -0700816 uint64_t value = request->ReadValue(width);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700817
Elliott Hughes2435a572012-02-17 16:07:41 -0800818 VLOG(jdwp) << " --> fieldId=" << fieldId << " tag=" << fieldTag << "(" << width << ") value=" << value;
Elliott Hughes74847412012-06-20 18:10:21 -0700819 JdwpError status = Dbg::SetFieldValue(object_id, fieldId, value, width);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -0800820 if (status != ERR_NONE) {
821 return status;
822 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700823 }
824
825 return ERR_NONE;
826}
827
Ian Rogersc0542af2014-09-03 16:16:56 -0700828static JdwpError OR_MonitorInfo(JdwpState*, Request* request, ExpandBuf* reply)
Mathieu Chartier90443472015-07-16 20:32:27 -0700829 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700830 ObjectId object_id = request->ReadObjectId();
Elliott Hughesf327e072013-01-09 16:01:26 -0800831 return Dbg::GetMonitorInfo(object_id, reply);
832}
833
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700834/*
835 * Invoke an instance method. The invocation must occur in the specified
836 * thread, which must have been suspended by an event.
837 *
838 * The call is synchronous. All threads in the VM are resumed, unless the
839 * SINGLE_THREADED flag is set.
840 *
841 * If you ask Eclipse to "inspect" an object (or ask JDB to "print" an
842 * object), it will try to invoke the object's toString() function. This
843 * feature becomes crucial when examining ArrayLists with Eclipse.
844 */
Sebastien Hertzcbc50642015-06-01 17:33:12 +0200845static JdwpError OR_InvokeMethod(JdwpState* state, Request* request,
846 ExpandBuf* pReply ATTRIBUTE_UNUSED)
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();
849 ObjectId thread_id = request->ReadThreadId();
850 RefTypeId class_id = request->ReadRefTypeId();
851 MethodId method_id = request->ReadMethodId();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700852
Sebastien Hertzcbc50642015-06-01 17:33:12 +0200853 return RequestInvoke(state, request, thread_id, object_id, class_id, method_id, false);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700854}
855
Ian Rogersc0542af2014-09-03 16:16:56 -0700856static JdwpError OR_DisableCollection(JdwpState*, Request* request, ExpandBuf*)
Mathieu Chartier90443472015-07-16 20:32:27 -0700857 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700858 ObjectId object_id = request->ReadObjectId();
Elliott Hughes64f574f2013-02-20 14:57:12 -0800859 return Dbg::DisableCollection(object_id);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700860}
861
Ian Rogersc0542af2014-09-03 16:16:56 -0700862static JdwpError OR_EnableCollection(JdwpState*, Request* request, ExpandBuf*)
Mathieu Chartier90443472015-07-16 20:32:27 -0700863 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700864 ObjectId object_id = request->ReadObjectId();
Elliott Hughes64f574f2013-02-20 14:57:12 -0800865 return Dbg::EnableCollection(object_id);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700866}
867
Ian Rogersc0542af2014-09-03 16:16:56 -0700868static JdwpError OR_IsCollected(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -0700869 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700870 ObjectId object_id = request->ReadObjectId();
Elliott Hughes64f574f2013-02-20 14:57:12 -0800871 bool is_collected;
Ian Rogersc0542af2014-09-03 16:16:56 -0700872 JdwpError rc = Dbg::IsCollected(object_id, &is_collected);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800873 expandBufAdd1(pReply, is_collected ? 1 : 0);
874 return rc;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700875}
876
Ian Rogersc0542af2014-09-03 16:16:56 -0700877static JdwpError OR_ReferringObjects(JdwpState*, Request* request, ExpandBuf* reply)
Mathieu Chartier90443472015-07-16 20:32:27 -0700878 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700879 ObjectId object_id = request->ReadObjectId();
880 int32_t max_count = request->ReadSigned32("max count");
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800881 if (max_count < 0) {
882 return ERR_ILLEGAL_ARGUMENT;
883 }
884
885 std::vector<ObjectId> referring_objects;
Ian Rogersc0542af2014-09-03 16:16:56 -0700886 JdwpError rc = Dbg::GetReferringObjects(object_id, max_count, &referring_objects);
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800887 if (rc != ERR_NONE) {
888 return rc;
889 }
890
891 return WriteTaggedObjectList(reply, referring_objects);
892}
893
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700894/*
895 * Return the string value in a string object.
896 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700897static JdwpError SR_Value(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -0700898 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700899 ObjectId stringObject = request->ReadObjectId();
Sebastien Hertzb0b0b492014-09-15 11:27:27 +0200900 std::string str;
901 JDWP::JdwpError error = Dbg::StringToUtf8(stringObject, &str);
902 if (error != JDWP::ERR_NONE) {
903 return error;
904 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700905
Ian Rogers68b56852014-08-29 20:19:11 -0700906 VLOG(jdwp) << StringPrintf(" --> %s", PrintableString(str.c_str()).c_str());
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700907
Elliott Hughes4740cdf2011-12-07 14:07:12 -0800908 expandBufAddUtf8String(pReply, str);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700909
910 return ERR_NONE;
911}
912
913/*
914 * Return a thread's name.
915 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700916static JdwpError TR_Name(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -0700917 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700918 ObjectId thread_id = request->ReadThreadId();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700919
Elliott Hughesa2e54f62011-11-17 13:01:30 -0800920 std::string name;
Ian Rogersc0542af2014-09-03 16:16:56 -0700921 JdwpError error = Dbg::GetThreadName(thread_id, &name);
Elliott Hughes221229c2013-01-08 18:17:50 -0800922 if (error != ERR_NONE) {
923 return error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700924 }
Ian Rogersd9e4e0c2014-01-23 20:11:40 -0800925 VLOG(jdwp) << StringPrintf(" Name of thread %#" PRIx64 " is \"%s\"", thread_id, name.c_str());
Elliott Hughes4740cdf2011-12-07 14:07:12 -0800926 expandBufAddUtf8String(pReply, name);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700927
928 return ERR_NONE;
929}
930
931/*
932 * Suspend the specified thread.
933 *
934 * It's supposed to remain suspended even if interpreted code wants to
935 * resume it; only the JDI is allowed to resume it.
936 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700937static JdwpError TR_Suspend(JdwpState*, Request* request, ExpandBuf*)
Mathieu Chartier90443472015-07-16 20:32:27 -0700938 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700939 ObjectId thread_id = request->ReadThreadId();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700940
Elliott Hughes74847412012-06-20 18:10:21 -0700941 if (thread_id == Dbg::GetThreadSelfId()) {
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700942 LOG(INFO) << " Warning: ignoring request to suspend self";
943 return ERR_THREAD_NOT_SUSPENDED;
944 }
Elliott Hughesa96836a2013-01-17 12:27:49 -0800945
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700946 Thread* self = Thread::Current();
Mathieu Chartierf1d666e2015-09-03 16:13:34 -0700947 ScopedThreadSuspension sts(self, kWaitingForDebuggerSend);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700948 JdwpError result = Dbg::SuspendThread(thread_id);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700949 return result;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700950}
951
952/*
953 * Resume the specified thread.
954 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700955static JdwpError TR_Resume(JdwpState*, Request* request, ExpandBuf*)
Mathieu Chartier90443472015-07-16 20:32:27 -0700956 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700957 ObjectId thread_id = request->ReadThreadId();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700958
Elliott Hughes74847412012-06-20 18:10:21 -0700959 if (thread_id == Dbg::GetThreadSelfId()) {
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700960 LOG(INFO) << " Warning: ignoring request to resume self";
961 return ERR_NONE;
962 }
Elliott Hughesa96836a2013-01-17 12:27:49 -0800963
Elliott Hughes74847412012-06-20 18:10:21 -0700964 Dbg::ResumeThread(thread_id);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700965 return ERR_NONE;
966}
967
968/*
969 * Return status of specified thread.
970 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700971static JdwpError TR_Status(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 Hughes872d4ec2011-10-21 17:07:15 -0700974
Elliott Hughes3d30d9b2011-12-07 17:35:48 -0800975 JDWP::JdwpThreadStatus threadStatus;
976 JDWP::JdwpSuspendStatus suspendStatus;
Elliott Hughes221229c2013-01-08 18:17:50 -0800977 JdwpError error = Dbg::GetThreadStatus(thread_id, &threadStatus, &suspendStatus);
978 if (error != ERR_NONE) {
979 return error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700980 }
981
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800982 VLOG(jdwp) << " --> " << threadStatus << ", " << suspendStatus;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700983
984 expandBufAdd4BE(pReply, threadStatus);
985 expandBufAdd4BE(pReply, suspendStatus);
986
987 return ERR_NONE;
988}
989
990/*
991 * Return the thread group that the specified thread is a member of.
992 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700993static JdwpError TR_ThreadGroup(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -0700994 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700995 ObjectId thread_id = request->ReadThreadId();
Elliott Hughes74847412012-06-20 18:10:21 -0700996 return Dbg::GetThreadGroup(thread_id, pReply);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700997}
998
999/*
1000 * Return the current call stack of a suspended thread.
1001 *
1002 * If the thread isn't suspended, the error code isn't defined, but should
1003 * be THREAD_NOT_SUSPENDED.
1004 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001005static JdwpError TR_Frames(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -07001006 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001007 ObjectId thread_id = request->ReadThreadId();
1008 uint32_t start_frame = request->ReadUnsigned32("start frame");
1009 uint32_t length = request->ReadUnsigned32("length");
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001010
Elliott Hughes221229c2013-01-08 18:17:50 -08001011 size_t actual_frame_count;
Ian Rogersc0542af2014-09-03 16:16:56 -07001012 JdwpError error = Dbg::GetThreadFrameCount(thread_id, &actual_frame_count);
Elliott Hughes221229c2013-01-08 18:17:50 -08001013 if (error != ERR_NONE) {
1014 return error;
1015 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001016
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001017 if (actual_frame_count <= 0) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001018 return ERR_THREAD_NOT_SUSPENDED; // 0 means no managed frames (which means "in native").
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001019 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001020
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001021 if (start_frame > actual_frame_count) {
1022 return ERR_INVALID_INDEX;
1023 }
1024 if (length == static_cast<uint32_t>(-1)) {
1025 length = actual_frame_count - start_frame;
1026 }
1027 if (start_frame + length > actual_frame_count) {
1028 return ERR_INVALID_LENGTH;
1029 }
1030
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001031 return Dbg::GetThreadFrames(thread_id, start_frame, length, pReply);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001032}
1033
1034/*
1035 * Returns the #of frames on the specified thread, which must be suspended.
1036 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001037static JdwpError TR_FrameCount(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -07001038 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001039 ObjectId thread_id = request->ReadThreadId();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001040
Elliott Hughes221229c2013-01-08 18:17:50 -08001041 size_t frame_count;
Ian Rogersc0542af2014-09-03 16:16:56 -07001042 JdwpError rc = Dbg::GetThreadFrameCount(thread_id, &frame_count);
Elliott Hughes4993bbc2013-01-10 15:41:25 -08001043 if (rc != ERR_NONE) {
1044 return rc;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001045 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001046 expandBufAdd4BE(pReply, static_cast<uint32_t>(frame_count));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001047
1048 return ERR_NONE;
1049}
1050
Ian Rogersc0542af2014-09-03 16:16:56 -07001051static JdwpError TR_OwnedMonitors(Request* request, ExpandBuf* reply, bool with_stack_depths)
Mathieu Chartier90443472015-07-16 20:32:27 -07001052 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001053 ObjectId thread_id = request->ReadThreadId();
Elliott Hughes4993bbc2013-01-10 15:41:25 -08001054
1055 std::vector<ObjectId> monitors;
Elliott Hughes734b8c62013-01-11 15:32:45 -08001056 std::vector<uint32_t> stack_depths;
Ian Rogersc0542af2014-09-03 16:16:56 -07001057 JdwpError rc = Dbg::GetOwnedMonitors(thread_id, &monitors, &stack_depths);
Elliott Hughes4993bbc2013-01-10 15:41:25 -08001058 if (rc != ERR_NONE) {
1059 return rc;
1060 }
1061
1062 expandBufAdd4BE(reply, monitors.size());
1063 for (size_t i = 0; i < monitors.size(); ++i) {
1064 rc = WriteTaggedObject(reply, monitors[i]);
1065 if (rc != ERR_NONE) {
1066 return rc;
1067 }
Elliott Hughes734b8c62013-01-11 15:32:45 -08001068 if (with_stack_depths) {
1069 expandBufAdd4BE(reply, stack_depths[i]);
1070 }
Elliott Hughes4993bbc2013-01-10 15:41:25 -08001071 }
1072 return ERR_NONE;
1073}
1074
Ian Rogersc0542af2014-09-03 16:16:56 -07001075static JdwpError TR_OwnedMonitors(JdwpState*, Request* request, ExpandBuf* reply)
Mathieu Chartier90443472015-07-16 20:32:27 -07001076 SHARED_REQUIRES(Locks::mutator_lock_) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001077 return TR_OwnedMonitors(request, reply, false);
Elliott Hughes734b8c62013-01-11 15:32:45 -08001078}
1079
Ian Rogersc0542af2014-09-03 16:16:56 -07001080static JdwpError TR_OwnedMonitorsStackDepthInfo(JdwpState*, Request* request, ExpandBuf* reply)
Mathieu Chartier90443472015-07-16 20:32:27 -07001081 SHARED_REQUIRES(Locks::mutator_lock_) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001082 return TR_OwnedMonitors(request, reply, true);
Elliott Hughes734b8c62013-01-11 15:32:45 -08001083}
1084
Ian Rogersc0542af2014-09-03 16:16:56 -07001085static JdwpError TR_CurrentContendedMonitor(JdwpState*, Request* request, ExpandBuf* reply)
Mathieu Chartier90443472015-07-16 20:32:27 -07001086 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001087 ObjectId thread_id = request->ReadThreadId();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001088
Elliott Hughesf9501702013-01-11 11:22:27 -08001089 ObjectId contended_monitor;
Ian Rogersc0542af2014-09-03 16:16:56 -07001090 JdwpError rc = Dbg::GetContendedMonitor(thread_id, &contended_monitor);
Elliott Hughesf9501702013-01-11 11:22:27 -08001091 if (rc != ERR_NONE) {
1092 return rc;
1093 }
1094 return WriteTaggedObject(reply, contended_monitor);
1095}
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001096
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01001097static JdwpError TR_Interrupt(JdwpState*, Request* request, ExpandBuf* reply ATTRIBUTE_UNUSED)
Mathieu Chartier90443472015-07-16 20:32:27 -07001098 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001099 ObjectId thread_id = request->ReadThreadId();
Elliott Hughesf9501702013-01-11 11:22:27 -08001100 return Dbg::Interrupt(thread_id);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001101}
1102
1103/*
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001104 * Return the debug suspend count for the specified thread.
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001105 *
1106 * (The thread *might* still be running -- it might not have examined
1107 * its suspend count recently.)
1108 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001109static JdwpError TR_DebugSuspendCount(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -07001110 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001111 ObjectId thread_id = request->ReadThreadId();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001112 return Dbg::GetThreadDebugSuspendCount(thread_id, pReply);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001113}
1114
1115/*
1116 * Return the name of a thread group.
1117 *
1118 * The Eclipse debugger recognizes "main" and "system" as special.
1119 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001120static JdwpError TGR_Name(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -07001121 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001122 ObjectId thread_group_id = request->ReadThreadGroupId();
Sebastien Hertza06430c2014-09-15 19:21:30 +02001123 return Dbg::GetThreadGroupName(thread_group_id, pReply);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001124}
1125
1126/*
1127 * Returns the thread group -- if any -- that contains the specified
1128 * thread group.
1129 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001130static JdwpError TGR_Parent(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -07001131 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001132 ObjectId thread_group_id = request->ReadThreadGroupId();
Sebastien Hertza06430c2014-09-15 19:21:30 +02001133 return Dbg::GetThreadGroupParent(thread_group_id, pReply);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001134}
1135
1136/*
1137 * Return the active threads and thread groups that are part of the
1138 * specified thread group.
1139 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001140static JdwpError TGR_Children(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -07001141 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001142 ObjectId thread_group_id = request->ReadThreadGroupId();
Sebastien Hertza06430c2014-09-15 19:21:30 +02001143 return Dbg::GetThreadGroupChildren(thread_group_id, pReply);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001144}
1145
1146/*
1147 * Return the #of components in the array.
1148 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001149static JdwpError AR_Length(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -07001150 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001151 ObjectId array_id = request->ReadArrayId();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001152
Ian Rogersc0542af2014-09-03 16:16:56 -07001153 int32_t length;
1154 JdwpError status = Dbg::GetArrayLength(array_id, &length);
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001155 if (status != ERR_NONE) {
1156 return status;
1157 }
Elliott Hughes2435a572012-02-17 16:07:41 -08001158 VLOG(jdwp) << " --> " << length;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001159
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001160 expandBufAdd4BE(pReply, length);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001161
1162 return ERR_NONE;
1163}
1164
1165/*
1166 * Return the values from an array.
1167 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001168static JdwpError AR_GetValues(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -07001169 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001170 ObjectId array_id = request->ReadArrayId();
1171 uint32_t offset = request->ReadUnsigned32("offset");
1172 uint32_t length = request->ReadUnsigned32("length");
Elliott Hughesa96836a2013-01-17 12:27:49 -08001173 return Dbg::OutputArray(array_id, offset, length, pReply);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001174}
1175
1176/*
1177 * Set values in an array.
1178 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001179static JdwpError AR_SetValues(JdwpState*, Request* request, ExpandBuf*)
Mathieu Chartier90443472015-07-16 20:32:27 -07001180 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001181 ObjectId array_id = request->ReadArrayId();
1182 uint32_t offset = request->ReadUnsigned32("offset");
1183 uint32_t count = request->ReadUnsigned32("count");
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001184 return Dbg::SetArrayElements(array_id, offset, count, request);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001185}
1186
Ian Rogersc0542af2014-09-03 16:16:56 -07001187static JdwpError CLR_VisibleClasses(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -07001188 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001189 request->ReadObjectId(); // classLoaderObject
Elliott Hughes86964332012-02-15 19:37:42 -08001190 // TODO: we should only return classes which have the given class loader as a defining or
1191 // initiating loader. The former would be easy; the latter is hard, because we don't have
1192 // any such notion.
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001193 return VM_AllClassesImpl(pReply, false, false);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001194}
1195
Sebastien Hertz358bcaf2015-10-21 16:18:58 +02001196// Delete function class to use std::unique_ptr with JdwpEvent.
1197struct JdwpEventDeleter {
1198 void operator()(JdwpEvent* event) {
1199 EventFree(event);
1200 }
1201};
1202
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001203/*
1204 * Set an event trigger.
1205 *
1206 * Reply with a requestID.
1207 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001208static JdwpError ER_Set(JdwpState* state, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -07001209 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001210 JdwpEventKind event_kind = request->ReadEnum1<JdwpEventKind>("event kind");
1211 JdwpSuspendPolicy suspend_policy = request->ReadEnum1<JdwpSuspendPolicy>("suspend policy");
1212 int32_t modifier_count = request->ReadSigned32("modifier count");
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001213
Elliott Hughesa96836a2013-01-17 12:27:49 -08001214 CHECK_LT(modifier_count, 256); /* reasonableness check */
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001215
Sebastien Hertz358bcaf2015-10-21 16:18:58 +02001216 std::unique_ptr<JDWP::JdwpEvent, JdwpEventDeleter> pEvent(EventAlloc(modifier_count));
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001217 pEvent->eventKind = event_kind;
1218 pEvent->suspend_policy = suspend_policy;
Elliott Hughesa96836a2013-01-17 12:27:49 -08001219 pEvent->modCount = modifier_count;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001220
1221 /*
1222 * Read modifiers. Ordering may be significant (see explanation of Count
1223 * mods in JDWP doc).
1224 */
Elliott Hughesa96836a2013-01-17 12:27:49 -08001225 for (int32_t i = 0; i < modifier_count; ++i) {
Elliott Hughes972a47b2012-02-21 18:16:06 -08001226 JdwpEventMod& mod = pEvent->mods[i];
Ian Rogersc0542af2014-09-03 16:16:56 -07001227 mod.modKind = request->ReadModKind();
Elliott Hughes972a47b2012-02-21 18:16:06 -08001228 switch (mod.modKind) {
Elliott Hughesa96836a2013-01-17 12:27:49 -08001229 case MK_COUNT:
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001230 {
Elliott Hughesa96836a2013-01-17 12:27:49 -08001231 // Report once, when "--count" reaches 0.
Ian Rogersc0542af2014-09-03 16:16:56 -07001232 uint32_t count = request->ReadUnsigned32("count");
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001233 if (count == 0) {
1234 return ERR_INVALID_COUNT;
1235 }
Elliott Hughes972a47b2012-02-21 18:16:06 -08001236 mod.count.count = count;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001237 }
1238 break;
Elliott Hughesa96836a2013-01-17 12:27:49 -08001239 case MK_CONDITIONAL:
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001240 {
Elliott Hughesa96836a2013-01-17 12:27:49 -08001241 // Conditional on expression.
Ian Rogersc0542af2014-09-03 16:16:56 -07001242 uint32_t exprId = request->ReadUnsigned32("expr id");
Elliott Hughes972a47b2012-02-21 18:16:06 -08001243 mod.conditional.exprId = exprId;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001244 }
1245 break;
Elliott Hughesa96836a2013-01-17 12:27:49 -08001246 case MK_THREAD_ONLY:
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001247 {
Elliott Hughesa96836a2013-01-17 12:27:49 -08001248 // Only report events in specified thread.
Ian Rogersc0542af2014-09-03 16:16:56 -07001249 ObjectId thread_id = request->ReadThreadId();
Elliott Hughes74847412012-06-20 18:10:21 -07001250 mod.threadOnly.threadId = thread_id;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001251 }
1252 break;
Elliott Hughesa96836a2013-01-17 12:27:49 -08001253 case MK_CLASS_ONLY:
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001254 {
Elliott Hughesa96836a2013-01-17 12:27:49 -08001255 // For ClassPrepare, MethodEntry.
Ian Rogersc0542af2014-09-03 16:16:56 -07001256 RefTypeId class_id = request->ReadRefTypeId();
Elliott Hughes74847412012-06-20 18:10:21 -07001257 mod.classOnly.refTypeId = class_id;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001258 }
1259 break;
Elliott Hughesa96836a2013-01-17 12:27:49 -08001260 case MK_CLASS_MATCH:
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001261 {
Elliott Hughesa96836a2013-01-17 12:27:49 -08001262 // Restrict events to matching classes.
Elliott Hughes86964332012-02-15 19:37:42 -08001263 // pattern is "java.foo.*", we want "java/foo/*".
Ian Rogersc0542af2014-09-03 16:16:56 -07001264 std::string pattern(request->ReadUtf8String());
Elliott Hughes86964332012-02-15 19:37:42 -08001265 std::replace(pattern.begin(), pattern.end(), '.', '/');
Elliott Hughes972a47b2012-02-21 18:16:06 -08001266 mod.classMatch.classPattern = strdup(pattern.c_str());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001267 }
1268 break;
Elliott Hughesa96836a2013-01-17 12:27:49 -08001269 case MK_CLASS_EXCLUDE:
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001270 {
Elliott Hughesa96836a2013-01-17 12:27:49 -08001271 // Restrict events to non-matching classes.
Elliott Hughes86964332012-02-15 19:37:42 -08001272 // pattern is "java.foo.*", we want "java/foo/*".
Ian Rogersc0542af2014-09-03 16:16:56 -07001273 std::string pattern(request->ReadUtf8String());
Elliott Hughes86964332012-02-15 19:37:42 -08001274 std::replace(pattern.begin(), pattern.end(), '.', '/');
Elliott Hughes972a47b2012-02-21 18:16:06 -08001275 mod.classExclude.classPattern = strdup(pattern.c_str());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001276 }
1277 break;
Elliott Hughesa96836a2013-01-17 12:27:49 -08001278 case MK_LOCATION_ONLY:
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001279 {
Elliott Hughesa96836a2013-01-17 12:27:49 -08001280 // Restrict certain events based on location.
Ian Rogersc0542af2014-09-03 16:16:56 -07001281 JdwpLocation location = request->ReadLocation();
Elliott Hughesa96836a2013-01-17 12:27:49 -08001282 mod.locationOnly.loc = location;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001283 }
1284 break;
Elliott Hughesa96836a2013-01-17 12:27:49 -08001285 case MK_EXCEPTION_ONLY:
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001286 {
Elliott Hughesa96836a2013-01-17 12:27:49 -08001287 // Modifies EK_EXCEPTION events,
Ian Rogersc0542af2014-09-03 16:16:56 -07001288 mod.exceptionOnly.refTypeId = request->ReadRefTypeId(); // null => all exceptions.
1289 mod.exceptionOnly.caught = request->ReadEnum1<uint8_t>("caught");
1290 mod.exceptionOnly.uncaught = request->ReadEnum1<uint8_t>("uncaught");
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001291 }
1292 break;
Elliott Hughesa96836a2013-01-17 12:27:49 -08001293 case MK_FIELD_ONLY:
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001294 {
Elliott Hughesa96836a2013-01-17 12:27:49 -08001295 // For field access/modification events.
Ian Rogersc0542af2014-09-03 16:16:56 -07001296 RefTypeId declaring = request->ReadRefTypeId();
1297 FieldId fieldId = request->ReadFieldId();
Elliott Hughes972a47b2012-02-21 18:16:06 -08001298 mod.fieldOnly.refTypeId = declaring;
1299 mod.fieldOnly.fieldId = fieldId;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001300 }
1301 break;
Elliott Hughesa96836a2013-01-17 12:27:49 -08001302 case MK_STEP:
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001303 {
Elliott Hughesa96836a2013-01-17 12:27:49 -08001304 // For use with EK_SINGLE_STEP.
Ian Rogersc0542af2014-09-03 16:16:56 -07001305 ObjectId thread_id = request->ReadThreadId();
1306 uint32_t size = request->ReadUnsigned32("step size");
1307 uint32_t depth = request->ReadUnsigned32("step depth");
Ian Rogersd9e4e0c2014-01-23 20:11:40 -08001308 VLOG(jdwp) << StringPrintf(" Step: thread=%#" PRIx64, thread_id)
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001309 << " size=" << JdwpStepSize(size) << " depth=" << JdwpStepDepth(depth);
1310
Elliott Hughes74847412012-06-20 18:10:21 -07001311 mod.step.threadId = thread_id;
Elliott Hughes972a47b2012-02-21 18:16:06 -08001312 mod.step.size = size;
1313 mod.step.depth = depth;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001314 }
1315 break;
Elliott Hughesa96836a2013-01-17 12:27:49 -08001316 case MK_INSTANCE_ONLY:
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001317 {
Elliott Hughesa96836a2013-01-17 12:27:49 -08001318 // Report events related to a specific object.
Ian Rogersc0542af2014-09-03 16:16:56 -07001319 ObjectId instance = request->ReadObjectId();
Elliott Hughes972a47b2012-02-21 18:16:06 -08001320 mod.instanceOnly.objectId = instance;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001321 }
1322 break;
1323 default:
Sebastien Hertz6d7839e2014-12-05 10:52:15 +01001324 LOG(WARNING) << "Unsupported modifier " << mod.modKind << " for event " << pEvent->eventKind;
Sebastien Hertz6d7839e2014-12-05 10:52:15 +01001325 return JDWP::ERR_NOT_IMPLEMENTED;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001326 }
1327 }
1328
1329 /*
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001330 * We reply with an integer "requestID".
1331 */
Elliott Hughes376a7a02011-10-24 18:35:55 -07001332 uint32_t requestId = state->NextEventSerial();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001333 expandBufAdd4BE(pReply, requestId);
1334
1335 pEvent->requestId = requestId;
1336
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08001337 VLOG(jdwp) << StringPrintf(" --> event requestId=%#x", requestId);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001338
1339 /* add it to the list */
Sebastien Hertz358bcaf2015-10-21 16:18:58 +02001340 JdwpError err = state->RegisterEvent(pEvent.get());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001341 if (err != ERR_NONE) {
1342 /* registration failed, probably because event is bogus */
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001343 LOG(WARNING) << "WARNING: event request rejected";
Sebastien Hertz358bcaf2015-10-21 16:18:58 +02001344 return err;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001345 }
Sebastien Hertz358bcaf2015-10-21 16:18:58 +02001346 pEvent.release();
1347 return ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001348}
1349
Ian Rogersc0542af2014-09-03 16:16:56 -07001350static JdwpError ER_Clear(JdwpState* state, Request* request, ExpandBuf*)
Mathieu Chartier90443472015-07-16 20:32:27 -07001351 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001352 request->ReadEnum1<JdwpEventKind>("event kind");
1353 uint32_t requestId = request->ReadUnsigned32("request id");
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001354
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001355 // Failure to find an event with a matching ID is a no-op
1356 // and does not return an error.
Elliott Hughes761928d2011-11-16 18:33:03 -08001357 state->UnregisterEventById(requestId);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001358 return ERR_NONE;
1359}
1360
1361/*
1362 * Return the values of arguments and local variables.
1363 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001364static JdwpError SF_GetValues(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -07001365 SHARED_REQUIRES(Locks::mutator_lock_) {
Sebastien Hertz8009f392014-09-01 17:07:11 +02001366 return Dbg::GetLocalValues(request, pReply);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001367}
1368
1369/*
1370 * Set the values of arguments and local variables.
1371 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001372static JdwpError SF_SetValues(JdwpState*, Request* request, ExpandBuf*)
Mathieu Chartier90443472015-07-16 20:32:27 -07001373 SHARED_REQUIRES(Locks::mutator_lock_) {
Sebastien Hertz8009f392014-09-01 17:07:11 +02001374 return Dbg::SetLocalValues(request);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001375}
1376
Ian Rogersc0542af2014-09-03 16:16:56 -07001377static JdwpError SF_ThisObject(JdwpState*, Request* request, ExpandBuf* reply)
Mathieu Chartier90443472015-07-16 20:32:27 -07001378 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001379 ObjectId thread_id = request->ReadThreadId();
1380 FrameId frame_id = request->ReadFrameId();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001381
Elliott Hughes4993bbc2013-01-10 15:41:25 -08001382 ObjectId object_id;
1383 JdwpError rc = Dbg::GetThisObject(thread_id, frame_id, &object_id);
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001384 if (rc != ERR_NONE) {
1385 return rc;
Elliott Hughes546b9862012-06-20 16:06:13 -07001386 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001387
Elliott Hughes4993bbc2013-01-10 15:41:25 -08001388 return WriteTaggedObject(reply, object_id);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001389}
1390
1391/*
1392 * Return the reference type reflected by this class object.
1393 *
1394 * This appears to be required because ReferenceTypeId values are NEVER
1395 * reused, whereas ClassIds can be recycled like any other object. (Either
1396 * that, or I have no idea what this is for.)
1397 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001398static JdwpError COR_ReflectedType(JdwpState*, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -07001399 SHARED_REQUIRES(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001400 RefTypeId class_object_id = request->ReadRefTypeId();
Elliott Hughesa96836a2013-01-17 12:27:49 -08001401 return Dbg::GetReflectedType(class_object_id, pReply);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001402}
1403
1404/*
1405 * Handle a DDM packet with a single chunk in it.
1406 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001407static JdwpError DDM_Chunk(JdwpState* state, Request* request, ExpandBuf* pReply)
Mathieu Chartier90443472015-07-16 20:32:27 -07001408 SHARED_REQUIRES(Locks::mutator_lock_) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001409 state->NotifyDdmsActive();
Sebastien Hertz7d955652014-10-22 10:57:10 +02001410 uint8_t* replyBuf = nullptr;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001411 int replyLen = -1;
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001412 if (Dbg::DdmHandlePacket(request, &replyBuf, &replyLen)) {
1413 // If they want to send something back, we copy it into the buffer.
1414 // TODO: consider altering the JDWP stuff to hold the packet header
1415 // in a separate buffer. That would allow us to writev() DDM traffic
1416 // instead of copying it into the expanding buffer. The reduction in
1417 // heap requirements is probably more valuable than the efficiency.
1418 CHECK_GT(replyLen, 0);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001419 memcpy(expandBufAddSpace(pReply, replyLen), replyBuf, replyLen);
Sebastien Hertz3901bbc2015-08-06 11:37:02 +02001420 delete[] replyBuf;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001421 }
1422 return ERR_NONE;
1423}
1424
1425/*
1426 * Handler map decl.
1427 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001428typedef JdwpError (*JdwpRequestHandler)(JdwpState* state, Request* request, ExpandBuf* reply);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001429
1430struct JdwpHandlerMap {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001431 uint8_t cmdSet;
1432 uint8_t cmd;
1433 JdwpRequestHandler func;
1434 const char* name;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001435};
1436
1437/*
1438 * Map commands to functions.
1439 *
1440 * Command sets 0-63 are incoming requests, 64-127 are outbound requests,
1441 * and 128-256 are vendor-defined.
1442 */
Elliott Hughescb693062013-02-21 09:48:08 -08001443static const JdwpHandlerMap gHandlers[] = {
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001444 /* VirtualMachine command set (1) */
Elliott Hughesf327e072013-01-09 16:01:26 -08001445 { 1, 1, VM_Version, "VirtualMachine.Version" },
1446 { 1, 2, VM_ClassesBySignature, "VirtualMachine.ClassesBySignature" },
1447 { 1, 3, VM_AllClasses, "VirtualMachine.AllClasses" },
1448 { 1, 4, VM_AllThreads, "VirtualMachine.AllThreads" },
1449 { 1, 5, VM_TopLevelThreadGroups, "VirtualMachine.TopLevelThreadGroups" },
1450 { 1, 6, VM_Dispose, "VirtualMachine.Dispose" },
1451 { 1, 7, VM_IDSizes, "VirtualMachine.IDSizes" },
1452 { 1, 8, VM_Suspend, "VirtualMachine.Suspend" },
1453 { 1, 9, VM_Resume, "VirtualMachine.Resume" },
1454 { 1, 10, VM_Exit, "VirtualMachine.Exit" },
1455 { 1, 11, VM_CreateString, "VirtualMachine.CreateString" },
1456 { 1, 12, VM_Capabilities, "VirtualMachine.Capabilities" },
1457 { 1, 13, VM_ClassPaths, "VirtualMachine.ClassPaths" },
1458 { 1, 14, VM_DisposeObjects, "VirtualMachine.DisposeObjects" },
Sebastien Hertz7d955652014-10-22 10:57:10 +02001459 { 1, 15, nullptr, "VirtualMachine.HoldEvents" },
1460 { 1, 16, nullptr, "VirtualMachine.ReleaseEvents" },
Elliott Hughesf327e072013-01-09 16:01:26 -08001461 { 1, 17, VM_CapabilitiesNew, "VirtualMachine.CapabilitiesNew" },
Sebastien Hertz7d955652014-10-22 10:57:10 +02001462 { 1, 18, nullptr, "VirtualMachine.RedefineClasses" },
1463 { 1, 19, nullptr, "VirtualMachine.SetDefaultStratum" },
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001464 { 1, 20, VM_AllClassesWithGeneric, "VirtualMachine.AllClassesWithGeneric" },
Elliott Hughesec0f83d2013-01-15 16:54:08 -08001465 { 1, 21, VM_InstanceCounts, "VirtualMachine.InstanceCounts" },
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001466
1467 /* ReferenceType command set (2) */
Elliott Hughesf327e072013-01-09 16:01:26 -08001468 { 2, 1, RT_Signature, "ReferenceType.Signature" },
1469 { 2, 2, RT_ClassLoader, "ReferenceType.ClassLoader" },
1470 { 2, 3, RT_Modifiers, "ReferenceType.Modifiers" },
1471 { 2, 4, RT_Fields, "ReferenceType.Fields" },
1472 { 2, 5, RT_Methods, "ReferenceType.Methods" },
1473 { 2, 6, RT_GetValues, "ReferenceType.GetValues" },
1474 { 2, 7, RT_SourceFile, "ReferenceType.SourceFile" },
Sebastien Hertz7d955652014-10-22 10:57:10 +02001475 { 2, 8, nullptr, "ReferenceType.NestedTypes" },
Elliott Hughesf327e072013-01-09 16:01:26 -08001476 { 2, 9, RT_Status, "ReferenceType.Status" },
1477 { 2, 10, RT_Interfaces, "ReferenceType.Interfaces" },
1478 { 2, 11, RT_ClassObject, "ReferenceType.ClassObject" },
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001479 { 2, 12, RT_SourceDebugExtension, "ReferenceType.SourceDebugExtension" },
1480 { 2, 13, RT_SignatureWithGeneric, "ReferenceType.SignatureWithGeneric" },
Elliott Hughesf327e072013-01-09 16:01:26 -08001481 { 2, 14, RT_FieldsWithGeneric, "ReferenceType.FieldsWithGeneric" },
1482 { 2, 15, RT_MethodsWithGeneric, "ReferenceType.MethodsWithGeneric" },
Elliott Hughes3b78c942013-01-15 17:35:41 -08001483 { 2, 16, RT_Instances, "ReferenceType.Instances" },
Sebastien Hertz7d955652014-10-22 10:57:10 +02001484 { 2, 17, nullptr, "ReferenceType.ClassFileVersion" },
1485 { 2, 18, nullptr, "ReferenceType.ConstantPool" },
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001486
1487 /* ClassType command set (3) */
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001488 { 3, 1, CT_Superclass, "ClassType.Superclass" },
1489 { 3, 2, CT_SetValues, "ClassType.SetValues" },
1490 { 3, 3, CT_InvokeMethod, "ClassType.InvokeMethod" },
1491 { 3, 4, CT_NewInstance, "ClassType.NewInstance" },
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001492
1493 /* ArrayType command set (4) */
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001494 { 4, 1, AT_newInstance, "ArrayType.NewInstance" },
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001495
1496 /* InterfaceType command set (5) */
Alex Light4a28e1e2016-02-24 16:35:59 -08001497 { 5, 1, IT_InvokeMethod, "InterfaceType.InvokeMethod" },
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001498
1499 /* Method command set (6) */
Elliott Hughesf327e072013-01-09 16:01:26 -08001500 { 6, 1, M_LineTable, "Method.LineTable" },
1501 { 6, 2, M_VariableTable, "Method.VariableTable" },
Elliott Hughes9777ba22013-01-17 09:04:19 -08001502 { 6, 3, M_Bytecodes, "Method.Bytecodes" },
Sebastien Hertz0a97fc62015-11-09 12:18:06 +01001503 { 6, 4, M_IsObsolete, "Method.IsObsolete" },
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001504 { 6, 5, M_VariableTableWithGeneric, "Method.VariableTableWithGeneric" },
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001505
1506 /* Field command set (8) */
1507
1508 /* ObjectReference command set (9) */
Elliott Hughesf327e072013-01-09 16:01:26 -08001509 { 9, 1, OR_ReferenceType, "ObjectReference.ReferenceType" },
1510 { 9, 2, OR_GetValues, "ObjectReference.GetValues" },
1511 { 9, 3, OR_SetValues, "ObjectReference.SetValues" },
Sebastien Hertz7d955652014-10-22 10:57:10 +02001512 { 9, 4, nullptr, "ObjectReference.UNUSED" },
Elliott Hughesf327e072013-01-09 16:01:26 -08001513 { 9, 5, OR_MonitorInfo, "ObjectReference.MonitorInfo" },
1514 { 9, 6, OR_InvokeMethod, "ObjectReference.InvokeMethod" },
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001515 { 9, 7, OR_DisableCollection, "ObjectReference.DisableCollection" },
Elliott Hughesf327e072013-01-09 16:01:26 -08001516 { 9, 8, OR_EnableCollection, "ObjectReference.EnableCollection" },
1517 { 9, 9, OR_IsCollected, "ObjectReference.IsCollected" },
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001518 { 9, 10, OR_ReferringObjects, "ObjectReference.ReferringObjects" },
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001519
1520 /* StringReference command set (10) */
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001521 { 10, 1, SR_Value, "StringReference.Value" },
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001522
1523 /* ThreadReference command set (11) */
Elliott Hughes734b8c62013-01-11 15:32:45 -08001524 { 11, 1, TR_Name, "ThreadReference.Name" },
1525 { 11, 2, TR_Suspend, "ThreadReference.Suspend" },
1526 { 11, 3, TR_Resume, "ThreadReference.Resume" },
1527 { 11, 4, TR_Status, "ThreadReference.Status" },
1528 { 11, 5, TR_ThreadGroup, "ThreadReference.ThreadGroup" },
1529 { 11, 6, TR_Frames, "ThreadReference.Frames" },
1530 { 11, 7, TR_FrameCount, "ThreadReference.FrameCount" },
1531 { 11, 8, TR_OwnedMonitors, "ThreadReference.OwnedMonitors" },
1532 { 11, 9, TR_CurrentContendedMonitor, "ThreadReference.CurrentContendedMonitor" },
Sebastien Hertz7d955652014-10-22 10:57:10 +02001533 { 11, 10, nullptr, "ThreadReference.Stop" },
Elliott Hughes734b8c62013-01-11 15:32:45 -08001534 { 11, 11, TR_Interrupt, "ThreadReference.Interrupt" },
1535 { 11, 12, TR_DebugSuspendCount, "ThreadReference.SuspendCount" },
1536 { 11, 13, TR_OwnedMonitorsStackDepthInfo, "ThreadReference.OwnedMonitorsStackDepthInfo" },
Sebastien Hertz7d955652014-10-22 10:57:10 +02001537 { 11, 14, nullptr, "ThreadReference.ForceEarlyReturn" },
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001538
1539 /* ThreadGroupReference command set (12) */
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001540 { 12, 1, TGR_Name, "ThreadGroupReference.Name" },
1541 { 12, 2, TGR_Parent, "ThreadGroupReference.Parent" },
1542 { 12, 3, TGR_Children, "ThreadGroupReference.Children" },
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001543
1544 /* ArrayReference command set (13) */
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001545 { 13, 1, AR_Length, "ArrayReference.Length" },
1546 { 13, 2, AR_GetValues, "ArrayReference.GetValues" },
1547 { 13, 3, AR_SetValues, "ArrayReference.SetValues" },
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001548
1549 /* ClassLoaderReference command set (14) */
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001550 { 14, 1, CLR_VisibleClasses, "ClassLoaderReference.VisibleClasses" },
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001551
1552 /* EventRequest command set (15) */
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001553 { 15, 1, ER_Set, "EventRequest.Set" },
1554 { 15, 2, ER_Clear, "EventRequest.Clear" },
Sebastien Hertz7d955652014-10-22 10:57:10 +02001555 { 15, 3, nullptr, "EventRequest.ClearAllBreakpoints" },
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001556
1557 /* StackFrame command set (16) */
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001558 { 16, 1, SF_GetValues, "StackFrame.GetValues" },
1559 { 16, 2, SF_SetValues, "StackFrame.SetValues" },
1560 { 16, 3, SF_ThisObject, "StackFrame.ThisObject" },
Sebastien Hertz7d955652014-10-22 10:57:10 +02001561 { 16, 4, nullptr, "StackFrame.PopFrames" },
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001562
1563 /* ClassObjectReference command set (17) */
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001564 { 17, 1, COR_ReflectedType, "ClassObjectReference.ReflectedType" },
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001565
1566 /* Event command set (64) */
Sebastien Hertz7d955652014-10-22 10:57:10 +02001567 { 64, 100, nullptr, "Event.Composite" }, // sent from VM to debugger, never received by VM
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001568
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001569 { 199, 1, DDM_Chunk, "DDM.Chunk" },
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001570};
1571
Ian Rogersc0542af2014-09-03 16:16:56 -07001572static const char* GetCommandName(Request* request) {
Elliott Hughescb693062013-02-21 09:48:08 -08001573 for (size_t i = 0; i < arraysize(gHandlers); ++i) {
Sebastien Hertz7d955652014-10-22 10:57:10 +02001574 if (gHandlers[i].cmdSet == request->GetCommandSet() &&
1575 gHandlers[i].cmd == request->GetCommand()) {
Elliott Hughescb693062013-02-21 09:48:08 -08001576 return gHandlers[i].name;
Elliott Hughesa3c24aa2011-12-07 15:34:09 -08001577 }
1578 }
1579 return "?UNKNOWN?";
1580}
1581
Ian Rogersc0542af2014-09-03 16:16:56 -07001582static std::string DescribeCommand(Request* request) {
Elliott Hughesa3c24aa2011-12-07 15:34:09 -08001583 std::string result;
Elliott Hughes64f574f2013-02-20 14:57:12 -08001584 result += "REQUEST: ";
Elliott Hughescb693062013-02-21 09:48:08 -08001585 result += GetCommandName(request);
Ian Rogersc0542af2014-09-03 16:16:56 -07001586 result += StringPrintf(" (length=%zu id=0x%06x)", request->GetLength(), request->GetId());
Elliott Hughesa3c24aa2011-12-07 15:34:09 -08001587 return result;
1588}
1589
Sebastien Hertzcbc50642015-06-01 17:33:12 +02001590// Returns true if the given command_set and command identify an "invoke" command.
1591static bool IsInvokeCommand(uint8_t command_set, uint8_t command) {
1592 if (command_set == kJDWPClassTypeCmdSet) {
1593 return command == kJDWPClassTypeInvokeMethodCmd || command == kJDWPClassTypeNewInstanceCmd;
1594 } else if (command_set == kJDWPObjectReferenceCmdSet) {
1595 return command == kJDWPObjectReferenceInvokeCmd;
Alex Light4a28e1e2016-02-24 16:35:59 -08001596 } else if (command_set == kJDWPInterfaceTypeCmdSet) {
1597 return command == kJDWPInterfaceTypeInvokeMethodCmd;
Sebastien Hertzcbc50642015-06-01 17:33:12 +02001598 } else {
1599 return false;
1600 }
1601}
1602
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001603/*
Sebastien Hertzcbc50642015-06-01 17:33:12 +02001604 * Process a request from the debugger. The skip_reply flag is set to true to indicate to the
1605 * caller the reply must not be sent to the debugger. This is used for invoke commands where the
1606 * reply is sent by the event thread after completing the invoke.
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001607 *
1608 * On entry, the JDWP thread is in VMWAIT.
1609 */
Sebastien Hertzcbc50642015-06-01 17:33:12 +02001610size_t JdwpState::ProcessRequest(Request* request, ExpandBuf* pReply, bool* skip_reply) {
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001611 JdwpError result = ERR_NONE;
Sebastien Hertzcbc50642015-06-01 17:33:12 +02001612 *skip_reply = false;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001613
Ian Rogersc0542af2014-09-03 16:16:56 -07001614 if (request->GetCommandSet() != kJDWPDdmCmdSet) {
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001615 /*
1616 * Activity from a debugger, not merely ddms. Mark us as having an
1617 * active debugger session, and zero out the last-activity timestamp
1618 * so waitForDebugger() doesn't return if we stall for a bit here.
1619 */
Elliott Hughesa2155262011-11-16 16:26:58 -08001620 Dbg::GoActive();
Ian Rogers37f3c962014-07-17 11:25:30 -07001621 last_activity_time_ms_.StoreSequentiallyConsistent(0);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001622 }
1623
1624 /*
1625 * If a debugger event has fired in another thread, wait until the
Sebastien Hertz2bf93f42015-01-09 18:44:05 +01001626 * initiating thread has suspended itself before processing commands
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001627 * from the debugger. Otherwise we (the JDWP thread) could be told to
1628 * resume the thread before it has suspended.
1629 *
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001630 * Note that we MUST clear the event token before waking the event
1631 * thread up, or risk waiting for the thread to suspend after we've
1632 * told it to resume.
1633 */
Sebastien Hertz2bf93f42015-01-09 18:44:05 +01001634 AcquireJdwpTokenForCommand();
Sebastien Hertz400a3a92014-02-24 14:56:21 +01001635
1636 /*
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001637 * Tell the VM that we're running and shouldn't be interrupted by GC.
1638 * Do this after anything that can stall indefinitely.
1639 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001640 Thread* self = Thread::Current();
Mathieu Chartierf1d666e2015-09-03 16:13:34 -07001641 ScopedObjectAccess soa(self);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001642
1643 expandBufAddSpace(pReply, kJDWPHeaderLen);
1644
Elliott Hughesa3c24aa2011-12-07 15:34:09 -08001645 size_t i;
Elliott Hughescb693062013-02-21 09:48:08 -08001646 for (i = 0; i < arraysize(gHandlers); ++i) {
Sebastien Hertz7d955652014-10-22 10:57:10 +02001647 if (gHandlers[i].cmdSet == request->GetCommandSet() &&
1648 gHandlers[i].cmd == request->GetCommand() &&
1649 gHandlers[i].func != nullptr) {
Elliott Hughescb693062013-02-21 09:48:08 -08001650 VLOG(jdwp) << DescribeCommand(request);
1651 result = (*gHandlers[i].func)(this, request, pReply);
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001652 if (result == ERR_NONE) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001653 request->CheckConsumed();
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001654 }
Sebastien Hertz2c3e77a2015-04-02 16:26:48 +02001655 self->AssertNoPendingException();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001656 break;
1657 }
1658 }
Elliott Hughescb693062013-02-21 09:48:08 -08001659 if (i == arraysize(gHandlers)) {
1660 LOG(ERROR) << "Command not implemented: " << DescribeCommand(request);
Ian Rogersc0542af2014-09-03 16:16:56 -07001661 LOG(ERROR) << HexDump(request->data(), request->size(), false, "");
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001662 result = ERR_NOT_IMPLEMENTED;
1663 }
1664
Sebastien Hertzcbc50642015-06-01 17:33:12 +02001665 size_t replyLength = 0U;
1666 if (result == ERR_NONE && IsInvokeCommand(request->GetCommandSet(), request->GetCommand())) {
1667 // We successfully request an invoke in the event thread. It will send the reply once the
1668 // invoke completes so we must not send it now.
1669 *skip_reply = true;
1670 } else {
1671 /*
1672 * Set up the reply header.
1673 *
1674 * If we encountered an error, only send the header back.
1675 */
1676 uint8_t* replyBuf = expandBufGetBuffer(pReply);
1677 replyLength = (result == ERR_NONE) ? expandBufGetLength(pReply) : kJDWPHeaderLen;
1678 Set4BE(replyBuf + kJDWPHeaderSizeOffset, replyLength);
1679 Set4BE(replyBuf + kJDWPHeaderIdOffset, request->GetId());
1680 Set1(replyBuf + kJDWPHeaderFlagsOffset, kJDWPFlagReply);
1681 Set2BE(replyBuf + kJDWPHeaderErrorCodeOffset, result);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001682
Sebastien Hertzcbc50642015-06-01 17:33:12 +02001683 CHECK_GT(expandBufGetLength(pReply), 0U) << GetCommandName(request) << " " << request->GetId();
Elliott Hughescb693062013-02-21 09:48:08 -08001684
Sebastien Hertzcbc50642015-06-01 17:33:12 +02001685 size_t respLen = expandBufGetLength(pReply) - kJDWPHeaderLen;
1686 VLOG(jdwp) << "REPLY: " << GetCommandName(request) << " " << result << " (length=" << respLen << ")";
1687 if (false) {
1688 VLOG(jdwp) << HexDump(expandBufGetBuffer(pReply) + kJDWPHeaderLen, respLen, false, "");
1689 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001690 }
1691
Elliott Hughescb693062013-02-21 09:48:08 -08001692 VLOG(jdwp) << "----------";
1693
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001694 /*
1695 * Update last-activity timestamp. We really only need this during
1696 * the initial setup. Only update if this is a non-DDMS packet.
1697 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001698 if (request->GetCommandSet() != kJDWPDdmCmdSet) {
Ian Rogers37f3c962014-07-17 11:25:30 -07001699 last_activity_time_ms_.StoreSequentiallyConsistent(MilliTime());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001700 }
1701
Sebastien Hertz43c8d722014-03-18 12:19:52 +01001702 return replyLength;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001703}
1704
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001705} // namespace JDWP
1706
1707} // namespace art