blob: 0ce4de7f6142261387988a5fcb0fa606e8ea7ae3 [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"
Ian Rogers693ff612013-02-01 10:56:12 -080034#include "thread-inl.h"
Elliott Hughes07ed66b2012-12-12 18:34:25 -080035
Elliott Hughes872d4ec2011-10-21 17:07:15 -070036namespace art {
37
38namespace JDWP {
39
Elliott Hughes4b9702c2013-02-20 18:13:24 -080040std::string DescribeField(const FieldId& field_id) {
Elliott Hughesa96836a2013-01-17 12:27:49 -080041 return StringPrintf("%#x (%s)", field_id, Dbg::GetFieldName(field_id).c_str());
42}
43
Elliott Hughes4b9702c2013-02-20 18:13:24 -080044std::string DescribeMethod(const MethodId& method_id) {
Elliott Hughesa96836a2013-01-17 12:27:49 -080045 return StringPrintf("%#x (%s)", method_id, Dbg::GetMethodName(method_id).c_str());
46}
47
Elliott Hughes4b9702c2013-02-20 18:13:24 -080048std::string DescribeRefTypeId(const RefTypeId& ref_type_id) {
Elliott Hughesa96836a2013-01-17 12:27:49 -080049 std::string signature("unknown");
Ian Rogersfc0e94b2013-09-23 23:51:32 -070050 Dbg::GetSignature(ref_type_id, &signature);
Ian Rogersd9e4e0c2014-01-23 20:11:40 -080051 return StringPrintf("%#" PRIx64 " (%s)", ref_type_id, signature.c_str());
Elliott Hughes872d4ec2011-10-21 17:07:15 -070052}
53
Elliott Hughes4b9702c2013-02-20 18:13:24 -080054// Helper function: write a variable-width value into the output input buffer.
Elliott Hughes4993bbc2013-01-10 15:41:25 -080055static void WriteValue(ExpandBuf* pReply, int width, uint64_t value) {
Elliott Hughes872d4ec2011-10-21 17:07:15 -070056 switch (width) {
57 case 1: expandBufAdd1(pReply, value); break;
58 case 2: expandBufAdd2BE(pReply, value); break;
59 case 4: expandBufAdd4BE(pReply, value); break;
60 case 8: expandBufAdd8BE(pReply, value); break;
61 default: LOG(FATAL) << width; break;
62 }
63}
64
Elliott Hughes4993bbc2013-01-10 15:41:25 -080065static JdwpError WriteTaggedObject(ExpandBuf* reply, ObjectId object_id)
66 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
67 uint8_t tag;
Ian Rogersc0542af2014-09-03 16:16:56 -070068 JdwpError rc = Dbg::GetObjectTag(object_id, &tag);
Elliott Hughes4993bbc2013-01-10 15:41:25 -080069 if (rc == ERR_NONE) {
70 expandBufAdd1(reply, tag);
71 expandBufAddObjectId(reply, object_id);
72 }
73 return rc;
74}
75
Elliott Hughes0cbaff52013-01-16 15:28:01 -080076static JdwpError WriteTaggedObjectList(ExpandBuf* reply, const std::vector<ObjectId>& objects)
77 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
78 expandBufAdd4BE(reply, objects.size());
79 for (size_t i = 0; i < objects.size(); ++i) {
80 JdwpError rc = WriteTaggedObject(reply, objects[i]);
81 if (rc != ERR_NONE) {
82 return rc;
83 }
84 }
85 return ERR_NONE;
86}
87
Elliott Hughes872d4ec2011-10-21 17:07:15 -070088/*
89 * Common code for *_InvokeMethod requests.
90 *
Elliott Hughes74847412012-06-20 18:10:21 -070091 * If "is_constructor" is set, this returns "object_id" rather than the
Elliott Hughes872d4ec2011-10-21 17:07:15 -070092 * expected-to-be-void return value of the called function.
93 */
Ian Rogersc0542af2014-09-03 16:16:56 -070094static JdwpError FinishInvoke(JdwpState*, Request* request, ExpandBuf* pReply,
Elliott Hughes74847412012-06-20 18:10:21 -070095 ObjectId thread_id, ObjectId object_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -070096 RefTypeId class_id, MethodId method_id, bool is_constructor)
Ian Rogersb726dcb2012-09-05 08:57:23 -070097 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes74847412012-06-20 18:10:21 -070098 CHECK(!is_constructor || object_id != 0);
Elliott Hughes872d4ec2011-10-21 17:07:15 -070099
Ian Rogersc0542af2014-09-03 16:16:56 -0700100 int32_t arg_count = request->ReadSigned32("argument count");
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700101
Ian Rogersd9e4e0c2014-01-23 20:11:40 -0800102 VLOG(jdwp) << StringPrintf(" --> thread_id=%#" PRIx64 " object_id=%#" PRIx64,
103 thread_id, object_id);
104 VLOG(jdwp) << StringPrintf(" class_id=%#" PRIx64 " method_id=%x %s.%s", class_id,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700105 method_id, Dbg::GetClassName(class_id).c_str(),
Elliott Hughesa96836a2013-01-17 12:27:49 -0800106 Dbg::GetMethodName(method_id).c_str());
Elliott Hughes45651fd2012-02-21 15:48:20 -0800107 VLOG(jdwp) << StringPrintf(" %d args:", arg_count);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700108
Sebastien Hertz7d955652014-10-22 10:57:10 +0200109 std::unique_ptr<JdwpTag[]> argTypes(arg_count > 0 ? new JdwpTag[arg_count] : nullptr);
110 std::unique_ptr<uint64_t[]> argValues(arg_count > 0 ? new uint64_t[arg_count] : nullptr);
Elliott Hughesa96836a2013-01-17 12:27:49 -0800111 for (int32_t i = 0; i < arg_count; ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700112 argTypes[i] = request->ReadTag();
Elliott Hughes45651fd2012-02-21 15:48:20 -0800113 size_t width = Dbg::GetTagWidth(argTypes[i]);
Ian Rogersc0542af2014-09-03 16:16:56 -0700114 argValues[i] = request->ReadValue(width);
Ian Rogersd9e4e0c2014-01-23 20:11:40 -0800115 VLOG(jdwp) << " " << argTypes[i] << StringPrintf("(%zd): %#" PRIx64, width,
116 argValues[i]);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700117 }
118
Ian Rogersc0542af2014-09-03 16:16:56 -0700119 uint32_t options = request->ReadUnsigned32("InvokeOptions bit flags");
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700120 VLOG(jdwp) << StringPrintf(" options=0x%04x%s%s", options,
121 (options & INVOKE_SINGLE_THREADED) ? " (SINGLE_THREADED)" : "",
122 (options & INVOKE_NONVIRTUAL) ? " (NONVIRTUAL)" : "");
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700123
Elliott Hughes45651fd2012-02-21 15:48:20 -0800124 JdwpTag resultTag;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700125 uint64_t resultValue;
126 ObjectId exceptObjId;
Sebastien Hertz7d955652014-10-22 10:57:10 +0200127 JdwpError err = Dbg::InvokeMethod(thread_id, object_id, class_id, method_id, arg_count,
128 argValues.get(), argTypes.get(), options, &resultTag,
129 &resultValue, &exceptObjId);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700130 if (err != ERR_NONE) {
Elliott Hughes45651fd2012-02-21 15:48:20 -0800131 return err;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700132 }
133
134 if (err == ERR_NONE) {
Elliott Hughes45651fd2012-02-21 15:48:20 -0800135 if (is_constructor) {
136 // If we invoked a constructor (which actually returns void), return the receiver,
137 // unless we threw, in which case we return NULL.
138 resultTag = JT_OBJECT;
Elliott Hughes74847412012-06-20 18:10:21 -0700139 resultValue = (exceptObjId == 0) ? object_id : 0;
Elliott Hughes45651fd2012-02-21 15:48:20 -0800140 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700141
Elliott Hughes45651fd2012-02-21 15:48:20 -0800142 size_t width = Dbg::GetTagWidth(resultTag);
143 expandBufAdd1(pReply, resultTag);
144 if (width != 0) {
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800145 WriteValue(pReply, width, resultValue);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700146 }
147 expandBufAdd1(pReply, JT_OBJECT);
148 expandBufAddObjectId(pReply, exceptObjId);
149
Ian Rogersd9e4e0c2014-01-23 20:11:40 -0800150 VLOG(jdwp) << " --> returned " << resultTag
151 << StringPrintf(" %#" PRIx64 " (except=%#" PRIx64 ")", resultValue, exceptObjId);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700152
153 /* show detailed debug output */
154 if (resultTag == JT_STRING && exceptObjId == 0) {
155 if (resultValue != 0) {
Sebastien Hertzb0b0b492014-09-15 11:27:27 +0200156 if (VLOG_IS_ON(jdwp)) {
157 std::string result_string;
158 JDWP::JdwpError error = Dbg::StringToUtf8(resultValue, &result_string);
159 CHECK_EQ(error, JDWP::ERR_NONE);
160 VLOG(jdwp) << " string '" << result_string << "'";
161 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700162 } else {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800163 VLOG(jdwp) << " string (null)";
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700164 }
165 }
166 }
167
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700168 return err;
169}
170
Ian Rogersc0542af2014-09-03 16:16:56 -0700171static JdwpError VM_Version(JdwpState*, Request*, ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700172 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes927bd292013-01-17 10:40:13 -0800173 // Text information on runtime version.
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700174 std::string version(StringPrintf("Android Runtime %s", Runtime::Current()->GetVersion()));
Elliott Hughes4740cdf2011-12-07 14:07:12 -0800175 expandBufAddUtf8String(pReply, version);
Elliott Hughes927bd292013-01-17 10:40:13 -0800176
177 // JDWP version numbers, major and minor.
178 expandBufAdd4BE(pReply, 1);
179 expandBufAdd4BE(pReply, 6);
180
181 // "java.version".
182 expandBufAddUtf8String(pReply, "1.6.0");
183
184 // "java.vm.name".
185 expandBufAddUtf8String(pReply, "Dalvik");
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700186
187 return ERR_NONE;
188}
189
190/*
191 * Given a class JNI signature (e.g. "Ljava/lang/Error;"), return the
192 * referenceTypeID. We need to send back more than one if the class has
193 * been loaded by multiple class loaders.
194 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700195static JdwpError VM_ClassesBySignature(JdwpState*, Request* request, ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700196 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700197 std::string classDescriptor(request->ReadUtf8String());
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700198
Elliott Hughes6fa602d2011-12-02 17:54:25 -0800199 std::vector<RefTypeId> ids;
Ian Rogersc0542af2014-09-03 16:16:56 -0700200 Dbg::FindLoadedClassBySignature(classDescriptor.c_str(), &ids);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700201
Elliott Hughes6fa602d2011-12-02 17:54:25 -0800202 expandBufAdd4BE(pReply, ids.size());
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700203
Elliott Hughes6fa602d2011-12-02 17:54:25 -0800204 for (size_t i = 0; i < ids.size(); ++i) {
205 // Get class vs. interface and status flags.
Elliott Hughes436e3722012-02-17 20:01:47 -0800206 JDWP::JdwpTypeTag type_tag;
207 uint32_t class_status;
Sebastien Hertz7d955652014-10-22 10:57:10 +0200208 JDWP::JdwpError status = Dbg::GetClassInfo(ids[i], &type_tag, &class_status, nullptr);
Elliott Hughes436e3722012-02-17 20:01:47 -0800209 if (status != ERR_NONE) {
210 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800211 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700212
Elliott Hughes436e3722012-02-17 20:01:47 -0800213 expandBufAdd1(pReply, type_tag);
Elliott Hughes6fa602d2011-12-02 17:54:25 -0800214 expandBufAddRefTypeId(pReply, ids[i]);
Elliott Hughes436e3722012-02-17 20:01:47 -0800215 expandBufAdd4BE(pReply, class_status);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700216 }
217
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700218 return ERR_NONE;
219}
220
221/*
222 * Handle request for the thread IDs of all running threads.
223 *
224 * We exclude ourselves from the list, because we don't allow ourselves
225 * to be suspended, and that violates some JDWP expectations.
226 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700227static JdwpError VM_AllThreads(JdwpState*, Request*, ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700228 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughescaf76542012-06-28 16:08:22 -0700229 std::vector<ObjectId> thread_ids;
Sebastien Hertza06430c2014-09-15 19:21:30 +0200230 Dbg::GetThreads(nullptr /* all thread groups */, &thread_ids);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700231
Elliott Hughescaf76542012-06-28 16:08:22 -0700232 expandBufAdd4BE(pReply, thread_ids.size());
233 for (uint32_t i = 0; i < thread_ids.size(); ++i) {
234 expandBufAddObjectId(pReply, thread_ids[i]);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700235 }
236
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700237 return ERR_NONE;
238}
239
240/*
241 * List all thread groups that do not have a parent.
242 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700243static JdwpError VM_TopLevelThreadGroups(JdwpState*, Request*, ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700244 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700245 /*
246 * TODO: maintain a list of parentless thread groups in the VM.
247 *
248 * For now, just return "system". Application threads are created
249 * in "main", which is a child of "system".
250 */
251 uint32_t groups = 1;
252 expandBufAdd4BE(pReply, groups);
Elliott Hughescaf76542012-06-28 16:08:22 -0700253 ObjectId thread_group_id = Dbg::GetSystemThreadGroupId();
254 expandBufAddObjectId(pReply, thread_group_id);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700255
256 return ERR_NONE;
257}
258
259/*
260 * Respond with the sizes of the basic debugger types.
261 *
262 * All IDs are 8 bytes.
263 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700264static JdwpError VM_IDSizes(JdwpState*, Request*, ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700265 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700266 expandBufAdd4BE(pReply, sizeof(FieldId));
267 expandBufAdd4BE(pReply, sizeof(MethodId));
268 expandBufAdd4BE(pReply, sizeof(ObjectId));
269 expandBufAdd4BE(pReply, sizeof(RefTypeId));
270 expandBufAdd4BE(pReply, sizeof(FrameId));
271 return ERR_NONE;
272}
273
Ian Rogersc0542af2014-09-03 16:16:56 -0700274static JdwpError VM_Dispose(JdwpState*, Request*, ExpandBuf*)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700275 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes86964332012-02-15 19:37:42 -0800276 Dbg::Disposed();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700277 return ERR_NONE;
278}
279
280/*
281 * Suspend the execution of the application running in the VM (i.e. suspend
282 * all threads).
283 *
284 * This needs to increment the "suspend count" on all threads.
285 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700286static JdwpError VM_Suspend(JdwpState*, Request*, ExpandBuf*)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700287 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
jeffhaoa77f0f62012-12-05 17:19:31 -0800288 Thread* self = Thread::Current();
289 self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSuspension);
Elliott Hughes475fc232011-10-25 15:00:35 -0700290 Dbg::SuspendVM();
jeffhaoa77f0f62012-12-05 17:19:31 -0800291 self->TransitionFromSuspendedToRunnable();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700292 return ERR_NONE;
293}
294
295/*
296 * Resume execution. Decrements the "suspend count" of all threads.
297 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700298static JdwpError VM_Resume(JdwpState*, Request*, ExpandBuf*)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700299 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100300 Dbg::ProcessDelayedFullUndeoptimizations();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700301 Dbg::ResumeVM();
302 return ERR_NONE;
303}
304
Ian Rogersc0542af2014-09-03 16:16:56 -0700305static JdwpError VM_Exit(JdwpState* state, Request* request, ExpandBuf*)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700306 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700307 uint32_t exit_status = request->ReadUnsigned32("exit_status");
Elliott Hughes64f574f2013-02-20 14:57:12 -0800308 state->ExitAfterReplying(exit_status);
309 return ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700310}
311
312/*
313 * Create a new string in the VM and return its ID.
314 *
315 * (Ctrl-Shift-I in Eclipse on an array of objects causes it to create the
316 * string "java.util.Arrays".)
317 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700318static JdwpError VM_CreateString(JdwpState*, Request* request, ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700319 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700320 std::string str(request->ReadUtf8String());
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700321 ObjectId stringId = Dbg::CreateString(str);
322 if (stringId == 0) {
323 return ERR_OUT_OF_MEMORY;
324 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700325 expandBufAddObjectId(pReply, stringId);
326 return ERR_NONE;
327}
328
Ian Rogersc0542af2014-09-03 16:16:56 -0700329static JdwpError VM_ClassPaths(JdwpState*, Request*, ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700330 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughesa3ae2b72012-02-24 15:10:51 -0800331 expandBufAddUtf8String(pReply, "/");
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700332
Elliott Hughesa3ae2b72012-02-24 15:10:51 -0800333 std::vector<std::string> class_path;
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700334 Split(Runtime::Current()->GetClassPathString(), ':', &class_path);
Elliott Hughesa3ae2b72012-02-24 15:10:51 -0800335 expandBufAdd4BE(pReply, class_path.size());
Sebastien Hertze6c143f2015-01-13 10:10:40 +0100336 for (const std::string& str : class_path) {
337 expandBufAddUtf8String(pReply, str);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700338 }
339
Elliott Hughesa3ae2b72012-02-24 15:10:51 -0800340 std::vector<std::string> boot_class_path;
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700341 Split(Runtime::Current()->GetBootClassPathString(), ':', &boot_class_path);
Elliott Hughesa3ae2b72012-02-24 15:10:51 -0800342 expandBufAdd4BE(pReply, boot_class_path.size());
Sebastien Hertze6c143f2015-01-13 10:10:40 +0100343 for (const std::string& str : boot_class_path) {
344 expandBufAddUtf8String(pReply, str);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700345 }
346
347 return ERR_NONE;
348}
349
Ian Rogersc0542af2014-09-03 16:16:56 -0700350static JdwpError VM_DisposeObjects(JdwpState*, Request* request, ExpandBuf*)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700351 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700352 size_t object_count = request->ReadUnsigned32("object_count");
Elliott Hughes64f574f2013-02-20 14:57:12 -0800353 for (size_t i = 0; i < object_count; ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700354 ObjectId object_id = request->ReadObjectId();
355 uint32_t reference_count = request->ReadUnsigned32("reference_count");
Elliott Hughes64f574f2013-02-20 14:57:12 -0800356 Dbg::DisposeObject(object_id, reference_count);
357 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700358 return ERR_NONE;
359}
360
Ian Rogersc0542af2014-09-03 16:16:56 -0700361static JdwpError VM_Capabilities(JdwpState*, Request*, ExpandBuf* reply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700362 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz479fc1e2014-04-04 17:51:34 +0200363 expandBufAdd1(reply, true); // canWatchFieldModification
364 expandBufAdd1(reply, true); // canWatchFieldAccess
Elliott Hughes9777ba22013-01-17 09:04:19 -0800365 expandBufAdd1(reply, true); // canGetBytecodes
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800366 expandBufAdd1(reply, true); // canGetSyntheticAttribute
367 expandBufAdd1(reply, true); // canGetOwnedMonitorInfo
Elliott Hughesf9501702013-01-11 11:22:27 -0800368 expandBufAdd1(reply, true); // canGetCurrentContendedMonitor
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800369 expandBufAdd1(reply, true); // canGetMonitorInfo
370 return ERR_NONE;
371}
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700372
Ian Rogersc0542af2014-09-03 16:16:56 -0700373static JdwpError VM_CapabilitiesNew(JdwpState*, Request* request, ExpandBuf* reply)
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800374 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800375 // The first few capabilities are the same as those reported by the older call.
Sebastien Hertz7d955652014-10-22 10:57:10 +0200376 VM_Capabilities(nullptr, request, reply);
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800377
378 expandBufAdd1(reply, false); // canRedefineClasses
379 expandBufAdd1(reply, false); // canAddMethod
380 expandBufAdd1(reply, false); // canUnrestrictedlyRedefineClasses
381 expandBufAdd1(reply, false); // canPopFrames
Sebastien Hertz5f4e6f52014-04-11 12:07:41 +0200382 expandBufAdd1(reply, true); // canUseInstanceFilters
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800383 expandBufAdd1(reply, false); // canGetSourceDebugExtension
384 expandBufAdd1(reply, false); // canRequestVMDeathEvent
385 expandBufAdd1(reply, false); // canSetDefaultStratum
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800386 expandBufAdd1(reply, true); // 1.6: canGetInstanceInfo
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800387 expandBufAdd1(reply, false); // 1.6: canRequestMonitorEvents
Elliott Hughes734b8c62013-01-11 15:32:45 -0800388 expandBufAdd1(reply, true); // 1.6: canGetMonitorFrameInfo
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800389 expandBufAdd1(reply, false); // 1.6: canUseSourceNameFilters
390 expandBufAdd1(reply, false); // 1.6: canGetConstantPool
391 expandBufAdd1(reply, false); // 1.6: canForceEarlyReturn
392
393 // Fill in reserved22 through reserved32; note count started at 1.
394 for (size_t i = 22; i <= 32; ++i) {
395 expandBufAdd1(reply, false);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700396 }
397 return ERR_NONE;
398}
399
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700400static JdwpError VM_AllClassesImpl(ExpandBuf* pReply, bool descriptor_and_status, bool generic)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700401 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800402 std::vector<JDWP::RefTypeId> classes;
Ian Rogersc0542af2014-09-03 16:16:56 -0700403 Dbg::GetClassList(&classes);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700404
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800405 expandBufAdd4BE(pReply, classes.size());
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700406
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800407 for (size_t i = 0; i < classes.size(); ++i) {
Elliott Hughesa2155262011-11-16 16:26:58 -0800408 static const char genericSignature[1] = "";
Elliott Hughes436e3722012-02-17 20:01:47 -0800409 JDWP::JdwpTypeTag type_tag;
Elliott Hughesa2155262011-11-16 16:26:58 -0800410 std::string descriptor;
Elliott Hughes436e3722012-02-17 20:01:47 -0800411 uint32_t class_status;
412 JDWP::JdwpError status = Dbg::GetClassInfo(classes[i], &type_tag, &class_status, &descriptor);
413 if (status != ERR_NONE) {
414 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800415 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700416
Elliott Hughes436e3722012-02-17 20:01:47 -0800417 expandBufAdd1(pReply, type_tag);
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800418 expandBufAddRefTypeId(pReply, classes[i]);
Elliott Hughes86964332012-02-15 19:37:42 -0800419 if (descriptor_and_status) {
420 expandBufAddUtf8String(pReply, descriptor);
421 if (generic) {
422 expandBufAddUtf8String(pReply, genericSignature);
423 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800424 expandBufAdd4BE(pReply, class_status);
Elliott Hughes1fe7afb2012-02-13 17:23:03 -0800425 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700426 }
427
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700428 return ERR_NONE;
429}
430
Ian Rogersc0542af2014-09-03 16:16:56 -0700431static JdwpError VM_AllClasses(JdwpState*, Request*, ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700432 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -0700433 return VM_AllClassesImpl(pReply, true, false);
Elliott Hughes1fe7afb2012-02-13 17:23:03 -0800434}
435
Ian Rogersc0542af2014-09-03 16:16:56 -0700436static JdwpError VM_AllClassesWithGeneric(JdwpState*, Request*, ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700437 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes6e9d22c2012-06-22 15:02:37 -0700438 return VM_AllClassesImpl(pReply, true, true);
Elliott Hughes1fe7afb2012-02-13 17:23:03 -0800439}
440
Ian Rogersc0542af2014-09-03 16:16:56 -0700441static JdwpError VM_InstanceCounts(JdwpState*, Request* request, ExpandBuf* pReply)
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800442 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700443 int32_t class_count = request->ReadSigned32("class count");
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800444 if (class_count < 0) {
445 return ERR_ILLEGAL_ARGUMENT;
446 }
447 std::vector<RefTypeId> class_ids;
448 for (int32_t i = 0; i < class_count; ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700449 class_ids.push_back(request->ReadRefTypeId());
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800450 }
451
452 std::vector<uint64_t> counts;
Ian Rogersc0542af2014-09-03 16:16:56 -0700453 JdwpError rc = Dbg::GetInstanceCounts(class_ids, &counts);
Elliott Hughesec0f83d2013-01-15 16:54:08 -0800454 if (rc != ERR_NONE) {
455 return rc;
456 }
457
458 expandBufAdd4BE(pReply, counts.size());
459 for (size_t i = 0; i < counts.size(); ++i) {
460 expandBufAdd8BE(pReply, counts[i]);
461 }
462 return ERR_NONE;
463}
464
Ian Rogersc0542af2014-09-03 16:16:56 -0700465static JdwpError RT_Modifiers(JdwpState*, Request* request, ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700466 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700467 RefTypeId refTypeId = request->ReadRefTypeId();
Elliott Hughes436e3722012-02-17 20:01:47 -0800468 return Dbg::GetModifiers(refTypeId, pReply);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700469}
470
471/*
472 * Get values from static fields in a reference type.
473 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700474static JdwpError RT_GetValues(JdwpState*, Request* request, ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700475 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700476 RefTypeId refTypeId = request->ReadRefTypeId();
477 int32_t field_count = request->ReadSigned32("field count");
Elliott Hughes0cf74332012-02-23 23:14:00 -0800478 expandBufAdd4BE(pReply, field_count);
Elliott Hughesa96836a2013-01-17 12:27:49 -0800479 for (int32_t i = 0; i < field_count; ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700480 FieldId fieldId = request->ReadFieldId();
Elliott Hughes0cf74332012-02-23 23:14:00 -0800481 JdwpError status = Dbg::GetStaticFieldValue(refTypeId, fieldId, pReply);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -0800482 if (status != ERR_NONE) {
483 return status;
484 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700485 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700486 return ERR_NONE;
487}
488
489/*
490 * Get the name of the source file in which a reference type was declared.
491 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700492static JdwpError RT_SourceFile(JdwpState*, Request* request, ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700493 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700494 RefTypeId refTypeId = request->ReadRefTypeId();
Elliott Hughes03181a82011-11-17 17:22:21 -0800495 std::string source_file;
Ian Rogersc0542af2014-09-03 16:16:56 -0700496 JdwpError status = Dbg::GetSourceFile(refTypeId, &source_file);
Elliott Hughes436e3722012-02-17 20:01:47 -0800497 if (status != ERR_NONE) {
498 return status;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700499 }
Elliott Hughes4740cdf2011-12-07 14:07:12 -0800500 expandBufAddUtf8String(pReply, source_file);
Elliott Hughes03181a82011-11-17 17:22:21 -0800501 return ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700502}
503
504/*
505 * Return the current status of the reference type.
506 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700507static JdwpError RT_Status(JdwpState*, Request* request, ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700508 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700509 RefTypeId refTypeId = request->ReadRefTypeId();
Elliott Hughes436e3722012-02-17 20:01:47 -0800510 JDWP::JdwpTypeTag type_tag;
511 uint32_t class_status;
Sebastien Hertz7d955652014-10-22 10:57:10 +0200512 JDWP::JdwpError status = Dbg::GetClassInfo(refTypeId, &type_tag, &class_status, nullptr);
Elliott Hughes436e3722012-02-17 20:01:47 -0800513 if (status != ERR_NONE) {
514 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800515 }
Elliott Hughes436e3722012-02-17 20:01:47 -0800516 expandBufAdd4BE(pReply, class_status);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700517 return ERR_NONE;
518}
519
520/*
521 * Return interfaces implemented directly by this class.
522 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700523static JdwpError RT_Interfaces(JdwpState*, Request* request, ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700524 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700525 RefTypeId refTypeId = request->ReadRefTypeId();
Elliott Hughes436e3722012-02-17 20:01:47 -0800526 return Dbg::OutputDeclaredInterfaces(refTypeId, pReply);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700527}
528
529/*
530 * Return the class object corresponding to this type.
531 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700532static JdwpError RT_ClassObject(JdwpState*, Request* request, ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700533 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700534 RefTypeId refTypeId = request->ReadRefTypeId();
Elliott Hughesa96836a2013-01-17 12:27:49 -0800535 ObjectId class_object_id;
Ian Rogersc0542af2014-09-03 16:16:56 -0700536 JdwpError status = Dbg::GetClassObject(refTypeId, &class_object_id);
Elliott Hughes436e3722012-02-17 20:01:47 -0800537 if (status != ERR_NONE) {
538 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800539 }
Ian Rogersd9e4e0c2014-01-23 20:11:40 -0800540 VLOG(jdwp) << StringPrintf(" --> ObjectId %#" PRIx64, class_object_id);
Elliott Hughesa96836a2013-01-17 12:27:49 -0800541 expandBufAddObjectId(pReply, class_object_id);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700542 return ERR_NONE;
543}
544
545/*
546 * Returns the value of the SourceDebugExtension attribute.
547 *
548 * JDB seems interested, but DEX files don't currently support this.
549 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700550static JdwpError RT_SourceDebugExtension(JdwpState*, Request*, ExpandBuf*)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700551 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700552 /* referenceTypeId in, string out */
553 return ERR_ABSENT_INFORMATION;
554}
555
Ian Rogersc0542af2014-09-03 16:16:56 -0700556static JdwpError RT_Signature(JdwpState*, Request* request, ExpandBuf* pReply, bool with_generic)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700557 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700558 RefTypeId refTypeId = request->ReadRefTypeId();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700559
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800560 std::string signature;
Ian Rogersfc0e94b2013-09-23 23:51:32 -0700561 JdwpError status = Dbg::GetSignature(refTypeId, &signature);
Elliott Hughes98e43f62012-02-24 12:42:35 -0800562 if (status != ERR_NONE) {
563 return status;
564 }
565 expandBufAddUtf8String(pReply, signature);
566 if (with_generic) {
Elliott Hughes0cf74332012-02-23 23:14:00 -0800567 expandBufAddUtf8String(pReply, "");
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700568 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700569 return ERR_NONE;
570}
571
Ian Rogersc0542af2014-09-03 16:16:56 -0700572static JdwpError RT_Signature(JdwpState* state, Request* request, ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700573 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -0800574 return RT_Signature(state, request, pReply, false);
Elliott Hughes98e43f62012-02-24 12:42:35 -0800575}
576
Ian Rogersc0542af2014-09-03 16:16:56 -0700577static JdwpError RT_SignatureWithGeneric(JdwpState* state, Request* request, ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700578 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -0800579 return RT_Signature(state, request, pReply, true);
Elliott Hughes98e43f62012-02-24 12:42:35 -0800580}
581
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700582/*
583 * Return the instance of java.lang.ClassLoader that loaded the specified
584 * reference type, or null if it was loaded by the system loader.
585 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700586static JdwpError RT_ClassLoader(JdwpState*, Request* request, ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700587 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700588 RefTypeId refTypeId = request->ReadRefTypeId();
Elliott Hughes436e3722012-02-17 20:01:47 -0800589 return Dbg::GetClassLoader(refTypeId, pReply);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700590}
591
592/*
593 * Given a referenceTypeId, return a block of stuff that describes the
594 * fields declared by a class.
595 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700596static JdwpError RT_FieldsWithGeneric(JdwpState*, Request* request, ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700597 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700598 RefTypeId refTypeId = request->ReadRefTypeId();
Elliott Hughes436e3722012-02-17 20:01:47 -0800599 return Dbg::OutputDeclaredFields(refTypeId, true, pReply);
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800600}
601
602// Obsolete equivalent of FieldsWithGeneric, without the generic type information.
Ian Rogersc0542af2014-09-03 16:16:56 -0700603static JdwpError RT_Fields(JdwpState*, Request* request, ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700604 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700605 RefTypeId refTypeId = request->ReadRefTypeId();
Elliott Hughes436e3722012-02-17 20:01:47 -0800606 return Dbg::OutputDeclaredFields(refTypeId, false, pReply);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700607}
608
609/*
610 * Given a referenceTypeID, return a block of goodies describing the
611 * methods declared by a class.
612 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700613static JdwpError RT_MethodsWithGeneric(JdwpState*, Request* request, ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700614 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700615 RefTypeId refTypeId = request->ReadRefTypeId();
Elliott Hughes436e3722012-02-17 20:01:47 -0800616 return Dbg::OutputDeclaredMethods(refTypeId, true, pReply);
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800617}
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700618
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800619// Obsolete equivalent of MethodsWithGeneric, without the generic type information.
Ian Rogersc0542af2014-09-03 16:16:56 -0700620static JdwpError RT_Methods(JdwpState*, Request* request, ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700621 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700622 RefTypeId refTypeId = request->ReadRefTypeId();
Elliott Hughes436e3722012-02-17 20:01:47 -0800623 return Dbg::OutputDeclaredMethods(refTypeId, false, pReply);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700624}
625
Ian Rogersc0542af2014-09-03 16:16:56 -0700626static JdwpError RT_Instances(JdwpState*, Request* request, ExpandBuf* reply)
Elliott Hughes3b78c942013-01-15 17:35:41 -0800627 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700628 RefTypeId class_id = request->ReadRefTypeId();
629 int32_t max_count = request->ReadSigned32("max count");
Elliott Hughes3b78c942013-01-15 17:35:41 -0800630 if (max_count < 0) {
631 return ERR_ILLEGAL_ARGUMENT;
632 }
633
634 std::vector<ObjectId> instances;
Ian Rogersc0542af2014-09-03 16:16:56 -0700635 JdwpError rc = Dbg::GetInstances(class_id, max_count, &instances);
Elliott Hughes3b78c942013-01-15 17:35:41 -0800636 if (rc != ERR_NONE) {
637 return rc;
638 }
639
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800640 return WriteTaggedObjectList(reply, instances);
Elliott Hughes3b78c942013-01-15 17:35:41 -0800641}
642
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700643/*
644 * Return the immediate superclass of a class.
645 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700646static JdwpError CT_Superclass(JdwpState*, Request* request, ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700647 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700648 RefTypeId class_id = request->ReadRefTypeId();
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800649 RefTypeId superClassId;
Ian Rogersc0542af2014-09-03 16:16:56 -0700650 JdwpError status = Dbg::GetSuperclass(class_id, &superClassId);
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800651 if (status != ERR_NONE) {
652 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800653 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700654 expandBufAddRefTypeId(pReply, superClassId);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700655 return ERR_NONE;
656}
657
658/*
659 * Set static class values.
660 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700661static JdwpError CT_SetValues(JdwpState* , Request* request, ExpandBuf*)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700662 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700663 RefTypeId class_id = request->ReadRefTypeId();
664 int32_t values_count = request->ReadSigned32("values count");
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700665
Elliott Hughesa96836a2013-01-17 12:27:49 -0800666 UNUSED(class_id);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700667
Elliott Hughesa96836a2013-01-17 12:27:49 -0800668 for (int32_t i = 0; i < values_count; ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700669 FieldId fieldId = request->ReadFieldId();
Elliott Hughesaed4be92011-12-02 16:16:23 -0800670 JDWP::JdwpTag fieldTag = Dbg::GetStaticFieldBasicTag(fieldId);
Elliott Hughesdbb40792011-11-18 17:05:22 -0800671 size_t width = Dbg::GetTagWidth(fieldTag);
Ian Rogersc0542af2014-09-03 16:16:56 -0700672 uint64_t value = request->ReadValue(width);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700673
Elliott Hughesa96836a2013-01-17 12:27:49 -0800674 VLOG(jdwp) << " --> field=" << fieldId << " tag=" << fieldTag << " --> " << value;
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800675 JdwpError status = Dbg::SetStaticFieldValue(fieldId, value, width);
676 if (status != ERR_NONE) {
677 return status;
678 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700679 }
680
681 return ERR_NONE;
682}
683
684/*
685 * Invoke a static method.
686 *
687 * Example: Eclipse sometimes uses java/lang/Class.forName(String s) on
688 * values in the "variables" display.
689 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700690static JdwpError CT_InvokeMethod(JdwpState* state, Request* request, ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700691 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700692 RefTypeId class_id = request->ReadRefTypeId();
693 ObjectId thread_id = request->ReadThreadId();
694 MethodId method_id = request->ReadMethodId();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700695
Elliott Hughes4b9702c2013-02-20 18:13:24 -0800696 return FinishInvoke(state, request, pReply, thread_id, 0, class_id, method_id, false);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700697}
698
699/*
700 * Create a new object of the requested type, and invoke the specified
701 * constructor.
702 *
703 * Example: in IntelliJ, create a watch on "new String(myByteArray)" to
704 * see the contents of a byte[] as a string.
705 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700706static JdwpError CT_NewInstance(JdwpState* state, Request* request, ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700707 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700708 RefTypeId class_id = request->ReadRefTypeId();
709 ObjectId thread_id = request->ReadThreadId();
710 MethodId method_id = request->ReadMethodId();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700711
Elliott Hughes74847412012-06-20 18:10:21 -0700712 ObjectId object_id;
Ian Rogersc0542af2014-09-03 16:16:56 -0700713 JdwpError status = Dbg::CreateObject(class_id, &object_id);
Elliott Hughes436e3722012-02-17 20:01:47 -0800714 if (status != ERR_NONE) {
715 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800716 }
Elliott Hughes74847412012-06-20 18:10:21 -0700717 if (object_id == 0) {
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700718 return ERR_OUT_OF_MEMORY;
719 }
Elliott Hughes4b9702c2013-02-20 18:13:24 -0800720 return FinishInvoke(state, request, pReply, thread_id, object_id, class_id, method_id, true);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700721}
722
723/*
724 * Create a new array object of the requested type and length.
725 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700726static JdwpError AT_newInstance(JdwpState*, Request* request, ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700727 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700728 RefTypeId arrayTypeId = request->ReadRefTypeId();
729 int32_t length = request->ReadSigned32("length");
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700730
Elliott Hughes74847412012-06-20 18:10:21 -0700731 ObjectId object_id;
Ian Rogersc0542af2014-09-03 16:16:56 -0700732 JdwpError status = Dbg::CreateArrayObject(arrayTypeId, length, &object_id);
Elliott Hughes436e3722012-02-17 20:01:47 -0800733 if (status != ERR_NONE) {
734 return status;
Elliott Hughes7b3cdfc2011-12-08 21:28:17 -0800735 }
Elliott Hughes74847412012-06-20 18:10:21 -0700736 if (object_id == 0) {
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700737 return ERR_OUT_OF_MEMORY;
738 }
739 expandBufAdd1(pReply, JT_ARRAY);
Elliott Hughes74847412012-06-20 18:10:21 -0700740 expandBufAddObjectId(pReply, object_id);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700741 return ERR_NONE;
742}
743
744/*
745 * Return line number information for the method, if present.
746 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700747static JdwpError M_LineTable(JdwpState*, Request* request, ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700748 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700749 RefTypeId refTypeId = request->ReadRefTypeId();
750 MethodId method_id = request->ReadMethodId();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700751
Elliott Hughes74847412012-06-20 18:10:21 -0700752 Dbg::OutputLineTable(refTypeId, method_id, pReply);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700753
754 return ERR_NONE;
755}
756
Ian Rogersc0542af2014-09-03 16:16:56 -0700757static JdwpError M_VariableTable(JdwpState*, Request* request, ExpandBuf* pReply,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700758 bool generic)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700759 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700760 RefTypeId class_id = request->ReadRefTypeId();
761 MethodId method_id = request->ReadMethodId();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700762
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800763 // We could return ERR_ABSENT_INFORMATION here if the DEX file was built without local variable
764 // information. That will cause Eclipse to make a best-effort attempt at displaying local
765 // variables anonymously. However, the attempt isn't very good, so we're probably better off just
766 // not showing anything.
Elliott Hughes74847412012-06-20 18:10:21 -0700767 Dbg::OutputVariableTable(class_id, method_id, generic, pReply);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700768 return ERR_NONE;
769}
770
Ian Rogersc0542af2014-09-03 16:16:56 -0700771static JdwpError M_VariableTable(JdwpState* state, Request* request, ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700772 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -0800773 return M_VariableTable(state, request, pReply, false);
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800774}
775
Ian Rogersc0542af2014-09-03 16:16:56 -0700776static JdwpError M_VariableTableWithGeneric(JdwpState* state, Request* request, ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700777 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -0800778 return M_VariableTable(state, request, pReply, true);
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -0800779}
780
Ian Rogersc0542af2014-09-03 16:16:56 -0700781static JdwpError M_Bytecodes(JdwpState*, Request* request, ExpandBuf* reply)
Elliott Hughes9777ba22013-01-17 09:04:19 -0800782 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700783 RefTypeId class_id = request->ReadRefTypeId();
784 MethodId method_id = request->ReadMethodId();
Elliott Hughes9777ba22013-01-17 09:04:19 -0800785
786 std::vector<uint8_t> bytecodes;
Ian Rogersc0542af2014-09-03 16:16:56 -0700787 JdwpError rc = Dbg::GetBytecodes(class_id, method_id, &bytecodes);
Elliott Hughes9777ba22013-01-17 09:04:19 -0800788 if (rc != ERR_NONE) {
789 return rc;
790 }
791
792 expandBufAdd4BE(reply, bytecodes.size());
793 for (size_t i = 0; i < bytecodes.size(); ++i) {
794 expandBufAdd1(reply, bytecodes[i]);
795 }
796
797 return ERR_NONE;
798}
799
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700800/*
801 * Given an object reference, return the runtime type of the object
802 * (class or array).
803 *
Elliott Hughes74847412012-06-20 18:10:21 -0700804 * This can get called on different things, e.g. thread_id gets
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700805 * passed in here.
806 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700807static JdwpError OR_ReferenceType(JdwpState*, Request* request, ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700808 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700809 ObjectId object_id = request->ReadObjectId();
Elliott Hughes74847412012-06-20 18:10:21 -0700810 return Dbg::GetReferenceType(object_id, pReply);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700811}
812
813/*
814 * Get values from the fields of an object.
815 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700816static JdwpError OR_GetValues(JdwpState*, Request* request, ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700817 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700818 ObjectId object_id = request->ReadObjectId();
819 int32_t field_count = request->ReadSigned32("field count");
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700820
Elliott Hughes0cf74332012-02-23 23:14:00 -0800821 expandBufAdd4BE(pReply, field_count);
Elliott Hughesa96836a2013-01-17 12:27:49 -0800822 for (int32_t i = 0; i < field_count; ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700823 FieldId fieldId = request->ReadFieldId();
Elliott Hughes74847412012-06-20 18:10:21 -0700824 JdwpError status = Dbg::GetFieldValue(object_id, fieldId, pReply);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -0800825 if (status != ERR_NONE) {
826 return status;
827 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700828 }
829
830 return ERR_NONE;
831}
832
833/*
834 * Set values in the fields of an object.
835 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700836static JdwpError OR_SetValues(JdwpState*, Request* request, ExpandBuf*)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700837 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700838 ObjectId object_id = request->ReadObjectId();
839 int32_t field_count = request->ReadSigned32("field count");
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700840
Elliott Hughesa96836a2013-01-17 12:27:49 -0800841 for (int32_t i = 0; i < field_count; ++i) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700842 FieldId fieldId = request->ReadFieldId();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700843
Elliott Hughesaed4be92011-12-02 16:16:23 -0800844 JDWP::JdwpTag fieldTag = Dbg::GetFieldBasicTag(fieldId);
Elliott Hughesdbb40792011-11-18 17:05:22 -0800845 size_t width = Dbg::GetTagWidth(fieldTag);
Ian Rogersc0542af2014-09-03 16:16:56 -0700846 uint64_t value = request->ReadValue(width);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700847
Elliott Hughes2435a572012-02-17 16:07:41 -0800848 VLOG(jdwp) << " --> fieldId=" << fieldId << " tag=" << fieldTag << "(" << width << ") value=" << value;
Elliott Hughes74847412012-06-20 18:10:21 -0700849 JdwpError status = Dbg::SetFieldValue(object_id, fieldId, value, width);
Elliott Hughes3f4d58f2012-02-18 20:05:37 -0800850 if (status != ERR_NONE) {
851 return status;
852 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700853 }
854
855 return ERR_NONE;
856}
857
Ian Rogersc0542af2014-09-03 16:16:56 -0700858static JdwpError OR_MonitorInfo(JdwpState*, Request* request, ExpandBuf* reply)
Elliott Hughesf327e072013-01-09 16:01:26 -0800859 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700860 ObjectId object_id = request->ReadObjectId();
Elliott Hughesf327e072013-01-09 16:01:26 -0800861 return Dbg::GetMonitorInfo(object_id, reply);
862}
863
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700864/*
865 * Invoke an instance method. The invocation must occur in the specified
866 * thread, which must have been suspended by an event.
867 *
868 * The call is synchronous. All threads in the VM are resumed, unless the
869 * SINGLE_THREADED flag is set.
870 *
871 * If you ask Eclipse to "inspect" an object (or ask JDB to "print" an
872 * object), it will try to invoke the object's toString() function. This
873 * feature becomes crucial when examining ArrayLists with Eclipse.
874 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700875static JdwpError OR_InvokeMethod(JdwpState* state, Request* request, ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700876 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700877 ObjectId object_id = request->ReadObjectId();
878 ObjectId thread_id = request->ReadThreadId();
879 RefTypeId class_id = request->ReadRefTypeId();
880 MethodId method_id = request->ReadMethodId();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700881
Elliott Hughes4b9702c2013-02-20 18:13:24 -0800882 return FinishInvoke(state, request, pReply, thread_id, object_id, class_id, method_id, false);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700883}
884
Ian Rogersc0542af2014-09-03 16:16:56 -0700885static JdwpError OR_DisableCollection(JdwpState*, Request* request, ExpandBuf*)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700886 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700887 ObjectId object_id = request->ReadObjectId();
Elliott Hughes64f574f2013-02-20 14:57:12 -0800888 return Dbg::DisableCollection(object_id);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700889}
890
Ian Rogersc0542af2014-09-03 16:16:56 -0700891static JdwpError OR_EnableCollection(JdwpState*, Request* request, ExpandBuf*)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700892 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700893 ObjectId object_id = request->ReadObjectId();
Elliott Hughes64f574f2013-02-20 14:57:12 -0800894 return Dbg::EnableCollection(object_id);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700895}
896
Ian Rogersc0542af2014-09-03 16:16:56 -0700897static JdwpError OR_IsCollected(JdwpState*, Request* request, ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700898 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700899 ObjectId object_id = request->ReadObjectId();
Elliott Hughes64f574f2013-02-20 14:57:12 -0800900 bool is_collected;
Ian Rogersc0542af2014-09-03 16:16:56 -0700901 JdwpError rc = Dbg::IsCollected(object_id, &is_collected);
Elliott Hughes64f574f2013-02-20 14:57:12 -0800902 expandBufAdd1(pReply, is_collected ? 1 : 0);
903 return rc;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700904}
905
Ian Rogersc0542af2014-09-03 16:16:56 -0700906static JdwpError OR_ReferringObjects(JdwpState*, Request* request, ExpandBuf* reply)
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800907 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700908 ObjectId object_id = request->ReadObjectId();
909 int32_t max_count = request->ReadSigned32("max count");
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800910 if (max_count < 0) {
911 return ERR_ILLEGAL_ARGUMENT;
912 }
913
914 std::vector<ObjectId> referring_objects;
Ian Rogersc0542af2014-09-03 16:16:56 -0700915 JdwpError rc = Dbg::GetReferringObjects(object_id, max_count, &referring_objects);
Elliott Hughes0cbaff52013-01-16 15:28:01 -0800916 if (rc != ERR_NONE) {
917 return rc;
918 }
919
920 return WriteTaggedObjectList(reply, referring_objects);
921}
922
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700923/*
924 * Return the string value in a string object.
925 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700926static JdwpError SR_Value(JdwpState*, Request* request, ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700927 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700928 ObjectId stringObject = request->ReadObjectId();
Sebastien Hertzb0b0b492014-09-15 11:27:27 +0200929 std::string str;
930 JDWP::JdwpError error = Dbg::StringToUtf8(stringObject, &str);
931 if (error != JDWP::ERR_NONE) {
932 return error;
933 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700934
Ian Rogers68b56852014-08-29 20:19:11 -0700935 VLOG(jdwp) << StringPrintf(" --> %s", PrintableString(str.c_str()).c_str());
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700936
Elliott Hughes4740cdf2011-12-07 14:07:12 -0800937 expandBufAddUtf8String(pReply, str);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700938
939 return ERR_NONE;
940}
941
942/*
943 * Return a thread's name.
944 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700945static JdwpError TR_Name(JdwpState*, Request* request, ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700946 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700947 ObjectId thread_id = request->ReadThreadId();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700948
Elliott Hughesa2e54f62011-11-17 13:01:30 -0800949 std::string name;
Ian Rogersc0542af2014-09-03 16:16:56 -0700950 JdwpError error = Dbg::GetThreadName(thread_id, &name);
Elliott Hughes221229c2013-01-08 18:17:50 -0800951 if (error != ERR_NONE) {
952 return error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700953 }
Ian Rogersd9e4e0c2014-01-23 20:11:40 -0800954 VLOG(jdwp) << StringPrintf(" Name of thread %#" PRIx64 " is \"%s\"", thread_id, name.c_str());
Elliott Hughes4740cdf2011-12-07 14:07:12 -0800955 expandBufAddUtf8String(pReply, name);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700956
957 return ERR_NONE;
958}
959
960/*
961 * Suspend the specified thread.
962 *
963 * It's supposed to remain suspended even if interpreted code wants to
964 * resume it; only the JDI is allowed to resume it.
965 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700966static JdwpError TR_Suspend(JdwpState*, Request* request, ExpandBuf*)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700967 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700968 ObjectId thread_id = request->ReadThreadId();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700969
Elliott Hughes74847412012-06-20 18:10:21 -0700970 if (thread_id == Dbg::GetThreadSelfId()) {
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700971 LOG(INFO) << " Warning: ignoring request to suspend self";
972 return ERR_THREAD_NOT_SUSPENDED;
973 }
Elliott Hughesa96836a2013-01-17 12:27:49 -0800974
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700975 Thread* self = Thread::Current();
976 self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSend);
977 JdwpError result = Dbg::SuspendThread(thread_id);
978 self->TransitionFromSuspendedToRunnable();
979 return result;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700980}
981
982/*
983 * Resume the specified thread.
984 */
Ian Rogersc0542af2014-09-03 16:16:56 -0700985static JdwpError TR_Resume(JdwpState*, Request* request, ExpandBuf*)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700986 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -0700987 ObjectId thread_id = request->ReadThreadId();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700988
Elliott Hughes74847412012-06-20 18:10:21 -0700989 if (thread_id == Dbg::GetThreadSelfId()) {
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700990 LOG(INFO) << " Warning: ignoring request to resume self";
991 return ERR_NONE;
992 }
Elliott Hughesa96836a2013-01-17 12:27:49 -0800993
Sebastien Hertz7ec2f1c2014-03-27 20:06:47 +0100994 Dbg::ProcessDelayedFullUndeoptimizations();
995
Elliott Hughes74847412012-06-20 18:10:21 -0700996 Dbg::ResumeThread(thread_id);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700997 return ERR_NONE;
998}
999
1000/*
1001 * Return status of specified thread.
1002 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001003static JdwpError TR_Status(JdwpState*, Request* request, ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001004 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001005 ObjectId thread_id = request->ReadThreadId();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001006
Elliott Hughes3d30d9b2011-12-07 17:35:48 -08001007 JDWP::JdwpThreadStatus threadStatus;
1008 JDWP::JdwpSuspendStatus suspendStatus;
Elliott Hughes221229c2013-01-08 18:17:50 -08001009 JdwpError error = Dbg::GetThreadStatus(thread_id, &threadStatus, &suspendStatus);
1010 if (error != ERR_NONE) {
1011 return error;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001012 }
1013
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08001014 VLOG(jdwp) << " --> " << threadStatus << ", " << suspendStatus;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001015
1016 expandBufAdd4BE(pReply, threadStatus);
1017 expandBufAdd4BE(pReply, suspendStatus);
1018
1019 return ERR_NONE;
1020}
1021
1022/*
1023 * Return the thread group that the specified thread is a member of.
1024 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001025static JdwpError TR_ThreadGroup(JdwpState*, Request* request, ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001026 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001027 ObjectId thread_id = request->ReadThreadId();
Elliott Hughes74847412012-06-20 18:10:21 -07001028 return Dbg::GetThreadGroup(thread_id, pReply);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001029}
1030
1031/*
1032 * Return the current call stack of a suspended thread.
1033 *
1034 * If the thread isn't suspended, the error code isn't defined, but should
1035 * be THREAD_NOT_SUSPENDED.
1036 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001037static JdwpError TR_Frames(JdwpState*, Request* request, ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001038 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001039 ObjectId thread_id = request->ReadThreadId();
1040 uint32_t start_frame = request->ReadUnsigned32("start frame");
1041 uint32_t length = request->ReadUnsigned32("length");
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001042
Elliott Hughes221229c2013-01-08 18:17:50 -08001043 size_t actual_frame_count;
Ian Rogersc0542af2014-09-03 16:16:56 -07001044 JdwpError error = Dbg::GetThreadFrameCount(thread_id, &actual_frame_count);
Elliott Hughes221229c2013-01-08 18:17:50 -08001045 if (error != ERR_NONE) {
1046 return error;
1047 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001048
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001049 if (actual_frame_count <= 0) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001050 return ERR_THREAD_NOT_SUSPENDED; // 0 means no managed frames (which means "in native").
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001051 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001052
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001053 if (start_frame > actual_frame_count) {
1054 return ERR_INVALID_INDEX;
1055 }
1056 if (length == static_cast<uint32_t>(-1)) {
1057 length = actual_frame_count - start_frame;
1058 }
1059 if (start_frame + length > actual_frame_count) {
1060 return ERR_INVALID_LENGTH;
1061 }
1062
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001063 return Dbg::GetThreadFrames(thread_id, start_frame, length, pReply);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001064}
1065
1066/*
1067 * Returns the #of frames on the specified thread, which must be suspended.
1068 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001069static JdwpError TR_FrameCount(JdwpState*, Request* request, ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001070 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001071 ObjectId thread_id = request->ReadThreadId();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001072
Elliott Hughes221229c2013-01-08 18:17:50 -08001073 size_t frame_count;
Ian Rogersc0542af2014-09-03 16:16:56 -07001074 JdwpError rc = Dbg::GetThreadFrameCount(thread_id, &frame_count);
Elliott Hughes4993bbc2013-01-10 15:41:25 -08001075 if (rc != ERR_NONE) {
1076 return rc;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001077 }
Elliott Hughes3f4d58f2012-02-18 20:05:37 -08001078 expandBufAdd4BE(pReply, static_cast<uint32_t>(frame_count));
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001079
1080 return ERR_NONE;
1081}
1082
Ian Rogersc0542af2014-09-03 16:16:56 -07001083static JdwpError TR_OwnedMonitors(Request* request, ExpandBuf* reply, bool with_stack_depths)
Elliott Hughes4993bbc2013-01-10 15:41:25 -08001084 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001085 ObjectId thread_id = request->ReadThreadId();
Elliott Hughes4993bbc2013-01-10 15:41:25 -08001086
1087 std::vector<ObjectId> monitors;
Elliott Hughes734b8c62013-01-11 15:32:45 -08001088 std::vector<uint32_t> stack_depths;
Ian Rogersc0542af2014-09-03 16:16:56 -07001089 JdwpError rc = Dbg::GetOwnedMonitors(thread_id, &monitors, &stack_depths);
Elliott Hughes4993bbc2013-01-10 15:41:25 -08001090 if (rc != ERR_NONE) {
1091 return rc;
1092 }
1093
1094 expandBufAdd4BE(reply, monitors.size());
1095 for (size_t i = 0; i < monitors.size(); ++i) {
1096 rc = WriteTaggedObject(reply, monitors[i]);
1097 if (rc != ERR_NONE) {
1098 return rc;
1099 }
Elliott Hughes734b8c62013-01-11 15:32:45 -08001100 if (with_stack_depths) {
1101 expandBufAdd4BE(reply, stack_depths[i]);
1102 }
Elliott Hughes4993bbc2013-01-10 15:41:25 -08001103 }
1104 return ERR_NONE;
1105}
1106
Ian Rogersc0542af2014-09-03 16:16:56 -07001107static JdwpError TR_OwnedMonitors(JdwpState*, Request* request, ExpandBuf* reply)
Elliott Hughes734b8c62013-01-11 15:32:45 -08001108 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001109 return TR_OwnedMonitors(request, reply, false);
Elliott Hughes734b8c62013-01-11 15:32:45 -08001110}
1111
Ian Rogersc0542af2014-09-03 16:16:56 -07001112static JdwpError TR_OwnedMonitorsStackDepthInfo(JdwpState*, Request* request, ExpandBuf* reply)
Elliott Hughes734b8c62013-01-11 15:32:45 -08001113 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001114 return TR_OwnedMonitors(request, reply, true);
Elliott Hughes734b8c62013-01-11 15:32:45 -08001115}
1116
Ian Rogersc0542af2014-09-03 16:16:56 -07001117static JdwpError TR_CurrentContendedMonitor(JdwpState*, Request* request, ExpandBuf* reply)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001118 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001119 ObjectId thread_id = request->ReadThreadId();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001120
Elliott Hughesf9501702013-01-11 11:22:27 -08001121 ObjectId contended_monitor;
Ian Rogersc0542af2014-09-03 16:16:56 -07001122 JdwpError rc = Dbg::GetContendedMonitor(thread_id, &contended_monitor);
Elliott Hughesf9501702013-01-11 11:22:27 -08001123 if (rc != ERR_NONE) {
1124 return rc;
1125 }
1126 return WriteTaggedObject(reply, contended_monitor);
1127}
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001128
Ian Rogersc0542af2014-09-03 16:16:56 -07001129static JdwpError TR_Interrupt(JdwpState*, Request* request, ExpandBuf* reply)
Elliott Hughesf9501702013-01-11 11:22:27 -08001130 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001131 UNUSED(reply);
Ian Rogersc0542af2014-09-03 16:16:56 -07001132 ObjectId thread_id = request->ReadThreadId();
Elliott Hughesf9501702013-01-11 11:22:27 -08001133 return Dbg::Interrupt(thread_id);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001134}
1135
1136/*
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001137 * Return the debug suspend count for the specified thread.
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001138 *
1139 * (The thread *might* still be running -- it might not have examined
1140 * its suspend count recently.)
1141 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001142static JdwpError TR_DebugSuspendCount(JdwpState*, Request* request, ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001143 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001144 ObjectId thread_id = request->ReadThreadId();
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001145 return Dbg::GetThreadDebugSuspendCount(thread_id, pReply);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001146}
1147
1148/*
1149 * Return the name of a thread group.
1150 *
1151 * The Eclipse debugger recognizes "main" and "system" as special.
1152 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001153static JdwpError TGR_Name(JdwpState*, Request* request, ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001154 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001155 ObjectId thread_group_id = request->ReadThreadGroupId();
Sebastien Hertza06430c2014-09-15 19:21:30 +02001156 return Dbg::GetThreadGroupName(thread_group_id, pReply);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001157}
1158
1159/*
1160 * Returns the thread group -- if any -- that contains the specified
1161 * thread group.
1162 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001163static JdwpError TGR_Parent(JdwpState*, Request* request, ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001164 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001165 ObjectId thread_group_id = request->ReadThreadGroupId();
Sebastien Hertza06430c2014-09-15 19:21:30 +02001166 return Dbg::GetThreadGroupParent(thread_group_id, pReply);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001167}
1168
1169/*
1170 * Return the active threads and thread groups that are part of the
1171 * specified thread group.
1172 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001173static JdwpError TGR_Children(JdwpState*, Request* request, ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001174 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001175 ObjectId thread_group_id = request->ReadThreadGroupId();
Sebastien Hertza06430c2014-09-15 19:21:30 +02001176 return Dbg::GetThreadGroupChildren(thread_group_id, pReply);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001177}
1178
1179/*
1180 * Return the #of components in the array.
1181 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001182static JdwpError AR_Length(JdwpState*, Request* request, ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001183 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001184 ObjectId array_id = request->ReadArrayId();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001185
Ian Rogersc0542af2014-09-03 16:16:56 -07001186 int32_t length;
1187 JdwpError status = Dbg::GetArrayLength(array_id, &length);
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001188 if (status != ERR_NONE) {
1189 return status;
1190 }
Elliott Hughes2435a572012-02-17 16:07:41 -08001191 VLOG(jdwp) << " --> " << length;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001192
Elliott Hughes3d1ca6d2012-02-13 15:43:19 -08001193 expandBufAdd4BE(pReply, length);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001194
1195 return ERR_NONE;
1196}
1197
1198/*
1199 * Return the values from an array.
1200 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001201static JdwpError AR_GetValues(JdwpState*, Request* request, ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001202 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001203 ObjectId array_id = request->ReadArrayId();
1204 uint32_t offset = request->ReadUnsigned32("offset");
1205 uint32_t length = request->ReadUnsigned32("length");
Elliott Hughesa96836a2013-01-17 12:27:49 -08001206 return Dbg::OutputArray(array_id, offset, length, pReply);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001207}
1208
1209/*
1210 * Set values in an array.
1211 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001212static JdwpError AR_SetValues(JdwpState*, Request* request, ExpandBuf*)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001213 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001214 ObjectId array_id = request->ReadArrayId();
1215 uint32_t offset = request->ReadUnsigned32("offset");
1216 uint32_t count = request->ReadUnsigned32("count");
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001217 return Dbg::SetArrayElements(array_id, offset, count, request);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001218}
1219
Ian Rogersc0542af2014-09-03 16:16:56 -07001220static JdwpError CLR_VisibleClasses(JdwpState*, Request* request, ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001221 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001222 request->ReadObjectId(); // classLoaderObject
Elliott Hughes86964332012-02-15 19:37:42 -08001223 // TODO: we should only return classes which have the given class loader as a defining or
1224 // initiating loader. The former would be easy; the latter is hard, because we don't have
1225 // any such notion.
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001226 return VM_AllClassesImpl(pReply, false, false);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001227}
1228
1229/*
1230 * Set an event trigger.
1231 *
1232 * Reply with a requestID.
1233 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001234static JdwpError ER_Set(JdwpState* state, Request* request, ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001235 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001236 JdwpEventKind event_kind = request->ReadEnum1<JdwpEventKind>("event kind");
1237 JdwpSuspendPolicy suspend_policy = request->ReadEnum1<JdwpSuspendPolicy>("suspend policy");
1238 int32_t modifier_count = request->ReadSigned32("modifier count");
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001239
Elliott Hughesa96836a2013-01-17 12:27:49 -08001240 CHECK_LT(modifier_count, 256); /* reasonableness check */
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001241
Elliott Hughesa96836a2013-01-17 12:27:49 -08001242 JdwpEvent* pEvent = EventAlloc(modifier_count);
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001243 pEvent->eventKind = event_kind;
1244 pEvent->suspend_policy = suspend_policy;
Elliott Hughesa96836a2013-01-17 12:27:49 -08001245 pEvent->modCount = modifier_count;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001246
1247 /*
1248 * Read modifiers. Ordering may be significant (see explanation of Count
1249 * mods in JDWP doc).
1250 */
Elliott Hughesa96836a2013-01-17 12:27:49 -08001251 for (int32_t i = 0; i < modifier_count; ++i) {
Elliott Hughes972a47b2012-02-21 18:16:06 -08001252 JdwpEventMod& mod = pEvent->mods[i];
Ian Rogersc0542af2014-09-03 16:16:56 -07001253 mod.modKind = request->ReadModKind();
Elliott Hughes972a47b2012-02-21 18:16:06 -08001254 switch (mod.modKind) {
Elliott Hughesa96836a2013-01-17 12:27:49 -08001255 case MK_COUNT:
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001256 {
Elliott Hughesa96836a2013-01-17 12:27:49 -08001257 // Report once, when "--count" reaches 0.
Ian Rogersc0542af2014-09-03 16:16:56 -07001258 uint32_t count = request->ReadUnsigned32("count");
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001259 if (count == 0) {
1260 return ERR_INVALID_COUNT;
1261 }
Elliott Hughes972a47b2012-02-21 18:16:06 -08001262 mod.count.count = count;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001263 }
1264 break;
Elliott Hughesa96836a2013-01-17 12:27:49 -08001265 case MK_CONDITIONAL:
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001266 {
Elliott Hughesa96836a2013-01-17 12:27:49 -08001267 // Conditional on expression.
Ian Rogersc0542af2014-09-03 16:16:56 -07001268 uint32_t exprId = request->ReadUnsigned32("expr id");
Elliott Hughes972a47b2012-02-21 18:16:06 -08001269 mod.conditional.exprId = exprId;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001270 }
1271 break;
Elliott Hughesa96836a2013-01-17 12:27:49 -08001272 case MK_THREAD_ONLY:
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001273 {
Elliott Hughesa96836a2013-01-17 12:27:49 -08001274 // Only report events in specified thread.
Ian Rogersc0542af2014-09-03 16:16:56 -07001275 ObjectId thread_id = request->ReadThreadId();
Elliott Hughes74847412012-06-20 18:10:21 -07001276 mod.threadOnly.threadId = thread_id;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001277 }
1278 break;
Elliott Hughesa96836a2013-01-17 12:27:49 -08001279 case MK_CLASS_ONLY:
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001280 {
Elliott Hughesa96836a2013-01-17 12:27:49 -08001281 // For ClassPrepare, MethodEntry.
Ian Rogersc0542af2014-09-03 16:16:56 -07001282 RefTypeId class_id = request->ReadRefTypeId();
Elliott Hughes74847412012-06-20 18:10:21 -07001283 mod.classOnly.refTypeId = class_id;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001284 }
1285 break;
Elliott Hughesa96836a2013-01-17 12:27:49 -08001286 case MK_CLASS_MATCH:
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001287 {
Elliott Hughesa96836a2013-01-17 12:27:49 -08001288 // Restrict events to matching classes.
Elliott Hughes86964332012-02-15 19:37:42 -08001289 // pattern is "java.foo.*", we want "java/foo/*".
Ian Rogersc0542af2014-09-03 16:16:56 -07001290 std::string pattern(request->ReadUtf8String());
Elliott Hughes86964332012-02-15 19:37:42 -08001291 std::replace(pattern.begin(), pattern.end(), '.', '/');
Elliott Hughes972a47b2012-02-21 18:16:06 -08001292 mod.classMatch.classPattern = strdup(pattern.c_str());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001293 }
1294 break;
Elliott Hughesa96836a2013-01-17 12:27:49 -08001295 case MK_CLASS_EXCLUDE:
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001296 {
Elliott Hughesa96836a2013-01-17 12:27:49 -08001297 // Restrict events to non-matching classes.
Elliott Hughes86964332012-02-15 19:37:42 -08001298 // pattern is "java.foo.*", we want "java/foo/*".
Ian Rogersc0542af2014-09-03 16:16:56 -07001299 std::string pattern(request->ReadUtf8String());
Elliott Hughes86964332012-02-15 19:37:42 -08001300 std::replace(pattern.begin(), pattern.end(), '.', '/');
Elliott Hughes972a47b2012-02-21 18:16:06 -08001301 mod.classExclude.classPattern = strdup(pattern.c_str());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001302 }
1303 break;
Elliott Hughesa96836a2013-01-17 12:27:49 -08001304 case MK_LOCATION_ONLY:
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001305 {
Elliott Hughesa96836a2013-01-17 12:27:49 -08001306 // Restrict certain events based on location.
Ian Rogersc0542af2014-09-03 16:16:56 -07001307 JdwpLocation location = request->ReadLocation();
Elliott Hughesa96836a2013-01-17 12:27:49 -08001308 mod.locationOnly.loc = location;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001309 }
1310 break;
Elliott Hughesa96836a2013-01-17 12:27:49 -08001311 case MK_EXCEPTION_ONLY:
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001312 {
Elliott Hughesa96836a2013-01-17 12:27:49 -08001313 // Modifies EK_EXCEPTION events,
Ian Rogersc0542af2014-09-03 16:16:56 -07001314 mod.exceptionOnly.refTypeId = request->ReadRefTypeId(); // null => all exceptions.
1315 mod.exceptionOnly.caught = request->ReadEnum1<uint8_t>("caught");
1316 mod.exceptionOnly.uncaught = request->ReadEnum1<uint8_t>("uncaught");
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001317 }
1318 break;
Elliott Hughesa96836a2013-01-17 12:27:49 -08001319 case MK_FIELD_ONLY:
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001320 {
Elliott Hughesa96836a2013-01-17 12:27:49 -08001321 // For field access/modification events.
Ian Rogersc0542af2014-09-03 16:16:56 -07001322 RefTypeId declaring = request->ReadRefTypeId();
1323 FieldId fieldId = request->ReadFieldId();
Elliott Hughes972a47b2012-02-21 18:16:06 -08001324 mod.fieldOnly.refTypeId = declaring;
1325 mod.fieldOnly.fieldId = fieldId;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001326 }
1327 break;
Elliott Hughesa96836a2013-01-17 12:27:49 -08001328 case MK_STEP:
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001329 {
Elliott Hughesa96836a2013-01-17 12:27:49 -08001330 // For use with EK_SINGLE_STEP.
Ian Rogersc0542af2014-09-03 16:16:56 -07001331 ObjectId thread_id = request->ReadThreadId();
1332 uint32_t size = request->ReadUnsigned32("step size");
1333 uint32_t depth = request->ReadUnsigned32("step depth");
Ian Rogersd9e4e0c2014-01-23 20:11:40 -08001334 VLOG(jdwp) << StringPrintf(" Step: thread=%#" PRIx64, thread_id)
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001335 << " size=" << JdwpStepSize(size) << " depth=" << JdwpStepDepth(depth);
1336
Elliott Hughes74847412012-06-20 18:10:21 -07001337 mod.step.threadId = thread_id;
Elliott Hughes972a47b2012-02-21 18:16:06 -08001338 mod.step.size = size;
1339 mod.step.depth = depth;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001340 }
1341 break;
Elliott Hughesa96836a2013-01-17 12:27:49 -08001342 case MK_INSTANCE_ONLY:
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001343 {
Elliott Hughesa96836a2013-01-17 12:27:49 -08001344 // Report events related to a specific object.
Ian Rogersc0542af2014-09-03 16:16:56 -07001345 ObjectId instance = request->ReadObjectId();
Elliott Hughes972a47b2012-02-21 18:16:06 -08001346 mod.instanceOnly.objectId = instance;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001347 }
1348 break;
1349 default:
Sebastien Hertz6d7839e2014-12-05 10:52:15 +01001350 LOG(WARNING) << "Unsupported modifier " << mod.modKind << " for event " << pEvent->eventKind;
1351 // Free allocated event to avoid leak before leaving.
1352 EventFree(pEvent);
1353 return JDWP::ERR_NOT_IMPLEMENTED;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001354 }
1355 }
1356
1357 /*
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001358 * We reply with an integer "requestID".
1359 */
Elliott Hughes376a7a02011-10-24 18:35:55 -07001360 uint32_t requestId = state->NextEventSerial();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001361 expandBufAdd4BE(pReply, requestId);
1362
1363 pEvent->requestId = requestId;
1364
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -08001365 VLOG(jdwp) << StringPrintf(" --> event requestId=%#x", requestId);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001366
1367 /* add it to the list */
Elliott Hughes761928d2011-11-16 18:33:03 -08001368 JdwpError err = state->RegisterEvent(pEvent);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001369 if (err != ERR_NONE) {
1370 /* registration failed, probably because event is bogus */
1371 EventFree(pEvent);
1372 LOG(WARNING) << "WARNING: event request rejected";
1373 }
1374 return err;
1375}
1376
Ian Rogersc0542af2014-09-03 16:16:56 -07001377static JdwpError ER_Clear(JdwpState* state, Request* request, ExpandBuf*)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001378 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001379 request->ReadEnum1<JdwpEventKind>("event kind");
1380 uint32_t requestId = request->ReadUnsigned32("request id");
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001381
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001382 // Failure to find an event with a matching ID is a no-op
1383 // and does not return an error.
Elliott Hughes761928d2011-11-16 18:33:03 -08001384 state->UnregisterEventById(requestId);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001385 return ERR_NONE;
1386}
1387
1388/*
1389 * Return the values of arguments and local variables.
1390 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001391static JdwpError SF_GetValues(JdwpState*, Request* request, ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001392 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz8009f392014-09-01 17:07:11 +02001393 return Dbg::GetLocalValues(request, pReply);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001394}
1395
1396/*
1397 * Set the values of arguments and local variables.
1398 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001399static JdwpError SF_SetValues(JdwpState*, Request* request, ExpandBuf*)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001400 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Sebastien Hertz8009f392014-09-01 17:07:11 +02001401 return Dbg::SetLocalValues(request);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001402}
1403
Ian Rogersc0542af2014-09-03 16:16:56 -07001404static JdwpError SF_ThisObject(JdwpState*, Request* request, ExpandBuf* reply)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001405 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001406 ObjectId thread_id = request->ReadThreadId();
1407 FrameId frame_id = request->ReadFrameId();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001408
Elliott Hughes4993bbc2013-01-10 15:41:25 -08001409 ObjectId object_id;
1410 JdwpError rc = Dbg::GetThisObject(thread_id, frame_id, &object_id);
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001411 if (rc != ERR_NONE) {
1412 return rc;
Elliott Hughes546b9862012-06-20 16:06:13 -07001413 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001414
Elliott Hughes4993bbc2013-01-10 15:41:25 -08001415 return WriteTaggedObject(reply, object_id);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001416}
1417
1418/*
1419 * Return the reference type reflected by this class object.
1420 *
1421 * This appears to be required because ReferenceTypeId values are NEVER
1422 * reused, whereas ClassIds can be recycled like any other object. (Either
1423 * that, or I have no idea what this is for.)
1424 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001425static JdwpError COR_ReflectedType(JdwpState*, Request* request, ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001426 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001427 RefTypeId class_object_id = request->ReadRefTypeId();
Elliott Hughesa96836a2013-01-17 12:27:49 -08001428 return Dbg::GetReflectedType(class_object_id, pReply);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001429}
1430
1431/*
1432 * Handle a DDM packet with a single chunk in it.
1433 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001434static JdwpError DDM_Chunk(JdwpState* state, Request* request, ExpandBuf* pReply)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001435 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001436 state->NotifyDdmsActive();
Sebastien Hertz7d955652014-10-22 10:57:10 +02001437 uint8_t* replyBuf = nullptr;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001438 int replyLen = -1;
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001439 if (Dbg::DdmHandlePacket(request, &replyBuf, &replyLen)) {
1440 // If they want to send something back, we copy it into the buffer.
1441 // TODO: consider altering the JDWP stuff to hold the packet header
1442 // in a separate buffer. That would allow us to writev() DDM traffic
1443 // instead of copying it into the expanding buffer. The reduction in
1444 // heap requirements is probably more valuable than the efficiency.
1445 CHECK_GT(replyLen, 0);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001446 memcpy(expandBufAddSpace(pReply, replyLen), replyBuf, replyLen);
1447 free(replyBuf);
1448 }
1449 return ERR_NONE;
1450}
1451
1452/*
1453 * Handler map decl.
1454 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001455typedef JdwpError (*JdwpRequestHandler)(JdwpState* state, Request* request, ExpandBuf* reply);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001456
1457struct JdwpHandlerMap {
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001458 uint8_t cmdSet;
1459 uint8_t cmd;
1460 JdwpRequestHandler func;
1461 const char* name;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001462};
1463
1464/*
1465 * Map commands to functions.
1466 *
1467 * Command sets 0-63 are incoming requests, 64-127 are outbound requests,
1468 * and 128-256 are vendor-defined.
1469 */
Elliott Hughescb693062013-02-21 09:48:08 -08001470static const JdwpHandlerMap gHandlers[] = {
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001471 /* VirtualMachine command set (1) */
Elliott Hughesf327e072013-01-09 16:01:26 -08001472 { 1, 1, VM_Version, "VirtualMachine.Version" },
1473 { 1, 2, VM_ClassesBySignature, "VirtualMachine.ClassesBySignature" },
1474 { 1, 3, VM_AllClasses, "VirtualMachine.AllClasses" },
1475 { 1, 4, VM_AllThreads, "VirtualMachine.AllThreads" },
1476 { 1, 5, VM_TopLevelThreadGroups, "VirtualMachine.TopLevelThreadGroups" },
1477 { 1, 6, VM_Dispose, "VirtualMachine.Dispose" },
1478 { 1, 7, VM_IDSizes, "VirtualMachine.IDSizes" },
1479 { 1, 8, VM_Suspend, "VirtualMachine.Suspend" },
1480 { 1, 9, VM_Resume, "VirtualMachine.Resume" },
1481 { 1, 10, VM_Exit, "VirtualMachine.Exit" },
1482 { 1, 11, VM_CreateString, "VirtualMachine.CreateString" },
1483 { 1, 12, VM_Capabilities, "VirtualMachine.Capabilities" },
1484 { 1, 13, VM_ClassPaths, "VirtualMachine.ClassPaths" },
1485 { 1, 14, VM_DisposeObjects, "VirtualMachine.DisposeObjects" },
Sebastien Hertz7d955652014-10-22 10:57:10 +02001486 { 1, 15, nullptr, "VirtualMachine.HoldEvents" },
1487 { 1, 16, nullptr, "VirtualMachine.ReleaseEvents" },
Elliott Hughesf327e072013-01-09 16:01:26 -08001488 { 1, 17, VM_CapabilitiesNew, "VirtualMachine.CapabilitiesNew" },
Sebastien Hertz7d955652014-10-22 10:57:10 +02001489 { 1, 18, nullptr, "VirtualMachine.RedefineClasses" },
1490 { 1, 19, nullptr, "VirtualMachine.SetDefaultStratum" },
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001491 { 1, 20, VM_AllClassesWithGeneric, "VirtualMachine.AllClassesWithGeneric" },
Elliott Hughesec0f83d2013-01-15 16:54:08 -08001492 { 1, 21, VM_InstanceCounts, "VirtualMachine.InstanceCounts" },
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001493
1494 /* ReferenceType command set (2) */
Elliott Hughesf327e072013-01-09 16:01:26 -08001495 { 2, 1, RT_Signature, "ReferenceType.Signature" },
1496 { 2, 2, RT_ClassLoader, "ReferenceType.ClassLoader" },
1497 { 2, 3, RT_Modifiers, "ReferenceType.Modifiers" },
1498 { 2, 4, RT_Fields, "ReferenceType.Fields" },
1499 { 2, 5, RT_Methods, "ReferenceType.Methods" },
1500 { 2, 6, RT_GetValues, "ReferenceType.GetValues" },
1501 { 2, 7, RT_SourceFile, "ReferenceType.SourceFile" },
Sebastien Hertz7d955652014-10-22 10:57:10 +02001502 { 2, 8, nullptr, "ReferenceType.NestedTypes" },
Elliott Hughesf327e072013-01-09 16:01:26 -08001503 { 2, 9, RT_Status, "ReferenceType.Status" },
1504 { 2, 10, RT_Interfaces, "ReferenceType.Interfaces" },
1505 { 2, 11, RT_ClassObject, "ReferenceType.ClassObject" },
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001506 { 2, 12, RT_SourceDebugExtension, "ReferenceType.SourceDebugExtension" },
1507 { 2, 13, RT_SignatureWithGeneric, "ReferenceType.SignatureWithGeneric" },
Elliott Hughesf327e072013-01-09 16:01:26 -08001508 { 2, 14, RT_FieldsWithGeneric, "ReferenceType.FieldsWithGeneric" },
1509 { 2, 15, RT_MethodsWithGeneric, "ReferenceType.MethodsWithGeneric" },
Elliott Hughes3b78c942013-01-15 17:35:41 -08001510 { 2, 16, RT_Instances, "ReferenceType.Instances" },
Sebastien Hertz7d955652014-10-22 10:57:10 +02001511 { 2, 17, nullptr, "ReferenceType.ClassFileVersion" },
1512 { 2, 18, nullptr, "ReferenceType.ConstantPool" },
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001513
1514 /* ClassType command set (3) */
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001515 { 3, 1, CT_Superclass, "ClassType.Superclass" },
1516 { 3, 2, CT_SetValues, "ClassType.SetValues" },
1517 { 3, 3, CT_InvokeMethod, "ClassType.InvokeMethod" },
1518 { 3, 4, CT_NewInstance, "ClassType.NewInstance" },
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001519
1520 /* ArrayType command set (4) */
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001521 { 4, 1, AT_newInstance, "ArrayType.NewInstance" },
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001522
1523 /* InterfaceType command set (5) */
1524
1525 /* Method command set (6) */
Elliott Hughesf327e072013-01-09 16:01:26 -08001526 { 6, 1, M_LineTable, "Method.LineTable" },
1527 { 6, 2, M_VariableTable, "Method.VariableTable" },
Elliott Hughes9777ba22013-01-17 09:04:19 -08001528 { 6, 3, M_Bytecodes, "Method.Bytecodes" },
Sebastien Hertz7d955652014-10-22 10:57:10 +02001529 { 6, 4, nullptr, "Method.IsObsolete" },
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001530 { 6, 5, M_VariableTableWithGeneric, "Method.VariableTableWithGeneric" },
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001531
1532 /* Field command set (8) */
1533
1534 /* ObjectReference command set (9) */
Elliott Hughesf327e072013-01-09 16:01:26 -08001535 { 9, 1, OR_ReferenceType, "ObjectReference.ReferenceType" },
1536 { 9, 2, OR_GetValues, "ObjectReference.GetValues" },
1537 { 9, 3, OR_SetValues, "ObjectReference.SetValues" },
Sebastien Hertz7d955652014-10-22 10:57:10 +02001538 { 9, 4, nullptr, "ObjectReference.UNUSED" },
Elliott Hughesf327e072013-01-09 16:01:26 -08001539 { 9, 5, OR_MonitorInfo, "ObjectReference.MonitorInfo" },
1540 { 9, 6, OR_InvokeMethod, "ObjectReference.InvokeMethod" },
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001541 { 9, 7, OR_DisableCollection, "ObjectReference.DisableCollection" },
Elliott Hughesf327e072013-01-09 16:01:26 -08001542 { 9, 8, OR_EnableCollection, "ObjectReference.EnableCollection" },
1543 { 9, 9, OR_IsCollected, "ObjectReference.IsCollected" },
Elliott Hughes0cbaff52013-01-16 15:28:01 -08001544 { 9, 10, OR_ReferringObjects, "ObjectReference.ReferringObjects" },
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001545
1546 /* StringReference command set (10) */
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001547 { 10, 1, SR_Value, "StringReference.Value" },
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001548
1549 /* ThreadReference command set (11) */
Elliott Hughes734b8c62013-01-11 15:32:45 -08001550 { 11, 1, TR_Name, "ThreadReference.Name" },
1551 { 11, 2, TR_Suspend, "ThreadReference.Suspend" },
1552 { 11, 3, TR_Resume, "ThreadReference.Resume" },
1553 { 11, 4, TR_Status, "ThreadReference.Status" },
1554 { 11, 5, TR_ThreadGroup, "ThreadReference.ThreadGroup" },
1555 { 11, 6, TR_Frames, "ThreadReference.Frames" },
1556 { 11, 7, TR_FrameCount, "ThreadReference.FrameCount" },
1557 { 11, 8, TR_OwnedMonitors, "ThreadReference.OwnedMonitors" },
1558 { 11, 9, TR_CurrentContendedMonitor, "ThreadReference.CurrentContendedMonitor" },
Sebastien Hertz7d955652014-10-22 10:57:10 +02001559 { 11, 10, nullptr, "ThreadReference.Stop" },
Elliott Hughes734b8c62013-01-11 15:32:45 -08001560 { 11, 11, TR_Interrupt, "ThreadReference.Interrupt" },
1561 { 11, 12, TR_DebugSuspendCount, "ThreadReference.SuspendCount" },
1562 { 11, 13, TR_OwnedMonitorsStackDepthInfo, "ThreadReference.OwnedMonitorsStackDepthInfo" },
Sebastien Hertz7d955652014-10-22 10:57:10 +02001563 { 11, 14, nullptr, "ThreadReference.ForceEarlyReturn" },
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001564
1565 /* ThreadGroupReference command set (12) */
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001566 { 12, 1, TGR_Name, "ThreadGroupReference.Name" },
1567 { 12, 2, TGR_Parent, "ThreadGroupReference.Parent" },
1568 { 12, 3, TGR_Children, "ThreadGroupReference.Children" },
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001569
1570 /* ArrayReference command set (13) */
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001571 { 13, 1, AR_Length, "ArrayReference.Length" },
1572 { 13, 2, AR_GetValues, "ArrayReference.GetValues" },
1573 { 13, 3, AR_SetValues, "ArrayReference.SetValues" },
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001574
1575 /* ClassLoaderReference command set (14) */
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001576 { 14, 1, CLR_VisibleClasses, "ClassLoaderReference.VisibleClasses" },
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001577
1578 /* EventRequest command set (15) */
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001579 { 15, 1, ER_Set, "EventRequest.Set" },
1580 { 15, 2, ER_Clear, "EventRequest.Clear" },
Sebastien Hertz7d955652014-10-22 10:57:10 +02001581 { 15, 3, nullptr, "EventRequest.ClearAllBreakpoints" },
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001582
1583 /* StackFrame command set (16) */
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001584 { 16, 1, SF_GetValues, "StackFrame.GetValues" },
1585 { 16, 2, SF_SetValues, "StackFrame.SetValues" },
1586 { 16, 3, SF_ThisObject, "StackFrame.ThisObject" },
Sebastien Hertz7d955652014-10-22 10:57:10 +02001587 { 16, 4, nullptr, "StackFrame.PopFrames" },
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001588
1589 /* ClassObjectReference command set (17) */
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001590 { 17, 1, COR_ReflectedType, "ClassObjectReference.ReflectedType" },
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001591
1592 /* Event command set (64) */
Sebastien Hertz7d955652014-10-22 10:57:10 +02001593 { 64, 100, nullptr, "Event.Composite" }, // sent from VM to debugger, never received by VM
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001594
Elliott Hughes6e9d22c2012-06-22 15:02:37 -07001595 { 199, 1, DDM_Chunk, "DDM.Chunk" },
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001596};
1597
Ian Rogersc0542af2014-09-03 16:16:56 -07001598static const char* GetCommandName(Request* request) {
Elliott Hughescb693062013-02-21 09:48:08 -08001599 for (size_t i = 0; i < arraysize(gHandlers); ++i) {
Sebastien Hertz7d955652014-10-22 10:57:10 +02001600 if (gHandlers[i].cmdSet == request->GetCommandSet() &&
1601 gHandlers[i].cmd == request->GetCommand()) {
Elliott Hughescb693062013-02-21 09:48:08 -08001602 return gHandlers[i].name;
Elliott Hughesa3c24aa2011-12-07 15:34:09 -08001603 }
1604 }
1605 return "?UNKNOWN?";
1606}
1607
Ian Rogersc0542af2014-09-03 16:16:56 -07001608static std::string DescribeCommand(Request* request) {
Elliott Hughesa3c24aa2011-12-07 15:34:09 -08001609 std::string result;
Elliott Hughes64f574f2013-02-20 14:57:12 -08001610 result += "REQUEST: ";
Elliott Hughescb693062013-02-21 09:48:08 -08001611 result += GetCommandName(request);
Ian Rogersc0542af2014-09-03 16:16:56 -07001612 result += StringPrintf(" (length=%zu id=0x%06x)", request->GetLength(), request->GetId());
Elliott Hughesa3c24aa2011-12-07 15:34:09 -08001613 return result;
1614}
1615
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001616/*
1617 * Process a request from the debugger.
1618 *
1619 * On entry, the JDWP thread is in VMWAIT.
1620 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001621size_t JdwpState::ProcessRequest(Request* request, ExpandBuf* pReply) {
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001622 JdwpError result = ERR_NONE;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001623
Ian Rogersc0542af2014-09-03 16:16:56 -07001624 if (request->GetCommandSet() != kJDWPDdmCmdSet) {
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001625 /*
1626 * Activity from a debugger, not merely ddms. Mark us as having an
1627 * active debugger session, and zero out the last-activity timestamp
1628 * so waitForDebugger() doesn't return if we stall for a bit here.
1629 */
Elliott Hughesa2155262011-11-16 16:26:58 -08001630 Dbg::GoActive();
Ian Rogers37f3c962014-07-17 11:25:30 -07001631 last_activity_time_ms_.StoreSequentiallyConsistent(0);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001632 }
1633
1634 /*
1635 * If a debugger event has fired in another thread, wait until the
Sebastien Hertz2bf93f42015-01-09 18:44:05 +01001636 * initiating thread has suspended itself before processing commands
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001637 * from the debugger. Otherwise we (the JDWP thread) could be told to
1638 * resume the thread before it has suspended.
1639 *
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001640 * Note that we MUST clear the event token before waking the event
1641 * thread up, or risk waiting for the thread to suspend after we've
1642 * told it to resume.
1643 */
Sebastien Hertz2bf93f42015-01-09 18:44:05 +01001644 AcquireJdwpTokenForCommand();
Sebastien Hertz400a3a92014-02-24 14:56:21 +01001645
1646 /*
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001647 * Tell the VM that we're running and shouldn't be interrupted by GC.
1648 * Do this after anything that can stall indefinitely.
1649 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001650 Thread* self = Thread::Current();
1651 ThreadState old_state = self->TransitionFromSuspendedToRunnable();
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001652
1653 expandBufAddSpace(pReply, kJDWPHeaderLen);
1654
Elliott Hughesa3c24aa2011-12-07 15:34:09 -08001655 size_t i;
Elliott Hughescb693062013-02-21 09:48:08 -08001656 for (i = 0; i < arraysize(gHandlers); ++i) {
Sebastien Hertz7d955652014-10-22 10:57:10 +02001657 if (gHandlers[i].cmdSet == request->GetCommandSet() &&
1658 gHandlers[i].cmd == request->GetCommand() &&
1659 gHandlers[i].func != nullptr) {
Elliott Hughescb693062013-02-21 09:48:08 -08001660 VLOG(jdwp) << DescribeCommand(request);
1661 result = (*gHandlers[i].func)(this, request, pReply);
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001662 if (result == ERR_NONE) {
Ian Rogersc0542af2014-09-03 16:16:56 -07001663 request->CheckConsumed();
Elliott Hughes4b9702c2013-02-20 18:13:24 -08001664 }
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001665 break;
1666 }
1667 }
Elliott Hughescb693062013-02-21 09:48:08 -08001668 if (i == arraysize(gHandlers)) {
1669 LOG(ERROR) << "Command not implemented: " << DescribeCommand(request);
Ian Rogersc0542af2014-09-03 16:16:56 -07001670 LOG(ERROR) << HexDump(request->data(), request->size(), false, "");
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001671 result = ERR_NOT_IMPLEMENTED;
1672 }
1673
1674 /*
1675 * Set up the reply header.
1676 *
1677 * If we encountered an error, only send the header back.
1678 */
1679 uint8_t* replyBuf = expandBufGetBuffer(pReply);
Sebastien Hertz43c8d722014-03-18 12:19:52 +01001680 size_t replyLength = (result == ERR_NONE) ? expandBufGetLength(pReply) : kJDWPHeaderLen;
1681 Set4BE(replyBuf + 0, replyLength);
Ian Rogersc0542af2014-09-03 16:16:56 -07001682 Set4BE(replyBuf + 4, request->GetId());
Elliott Hughesf7c3b662011-10-27 12:04:56 -07001683 Set1(replyBuf + 8, kJDWPFlagReply);
1684 Set2BE(replyBuf + 9, result);
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001685
Ian Rogersc0542af2014-09-03 16:16:56 -07001686 CHECK_GT(expandBufGetLength(pReply), 0U) << GetCommandName(request) << " " << request->GetId();
Elliott Hughescb693062013-02-21 09:48:08 -08001687
Elliott Hughesa3c24aa2011-12-07 15:34:09 -08001688 size_t respLen = expandBufGetLength(pReply) - kJDWPHeaderLen;
Elliott Hughescb693062013-02-21 09:48:08 -08001689 VLOG(jdwp) << "REPLY: " << GetCommandName(request) << " " << result << " (length=" << respLen << ")";
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001690 if (false) {
Ian Rogers43b2e0f2014-01-30 16:58:39 -08001691 VLOG(jdwp) << HexDump(expandBufGetBuffer(pReply) + kJDWPHeaderLen, respLen, false, "");
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001692 }
1693
Elliott Hughescb693062013-02-21 09:48:08 -08001694 VLOG(jdwp) << "----------";
1695
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001696 /*
1697 * Update last-activity timestamp. We really only need this during
1698 * the initial setup. Only update if this is a non-DDMS packet.
1699 */
Ian Rogersc0542af2014-09-03 16:16:56 -07001700 if (request->GetCommandSet() != kJDWPDdmCmdSet) {
Ian Rogers37f3c962014-07-17 11:25:30 -07001701 last_activity_time_ms_.StoreSequentiallyConsistent(MilliTime());
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001702 }
1703
1704 /* tell the VM that GC is okay again */
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001705 self->TransitionFromRunnableToSuspended(old_state);
Sebastien Hertz43c8d722014-03-18 12:19:52 +01001706
1707 return replyLength;
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001708}
1709
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001710} // namespace JDWP
1711
1712} // namespace art