blob: 7bbc54f600581dc33549fdc2d842925deb70b9d7 [file] [log] [blame]
Elliott Hughes872d4ec2011-10-21 17:07:15 -07001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef ART_JDWP_JDWP_H_
18#define ART_JDWP_JDWP_H_
19
20#include "jdwp/jdwp_bits.h"
21#include "jdwp/jdwp_constants.h"
22#include "jdwp/jdwp_expand_buf.h"
Elliott Hughes376a7a02011-10-24 18:35:55 -070023#include "../mutex.h" // TODO: fix our include path!
Elliott Hughes872d4ec2011-10-21 17:07:15 -070024
25#include <pthread.h>
26#include <stddef.h>
27#include <stdint.h>
28#include <string.h>
29
30struct iovec;
31
32namespace art {
33
Elliott Hughesd07986f2011-12-06 18:27:45 -080034struct Method;
Elliott Hughes475fc232011-10-25 15:00:35 -070035struct Thread;
36
Elliott Hughes872d4ec2011-10-21 17:07:15 -070037namespace JDWP {
38
Elliott Hughes872d4ec2011-10-21 17:07:15 -070039/*
40 * Fundamental types.
41 *
42 * ObjectId and RefTypeId must be the same size.
43 */
44typedef uint32_t FieldId; /* static or instance field */
45typedef uint32_t MethodId; /* any kind of method, including constructors */
46typedef uint64_t ObjectId; /* any object (threadID, stringID, arrayID, etc) */
47typedef uint64_t RefTypeId; /* like ObjectID, but unique for Class objects */
48typedef uint64_t FrameId; /* short-lived stack frame ID */
49
50/*
51 * Match these with the type sizes. This way we don't have to pass
52 * a value and a length.
53 */
Elliott Hughesf7c3b662011-10-27 12:04:56 -070054static inline FieldId ReadFieldId(const uint8_t** pBuf) { return Read4BE(pBuf); }
55static inline MethodId ReadMethodId(const uint8_t** pBuf) { return Read4BE(pBuf); }
56static inline ObjectId ReadObjectId(const uint8_t** pBuf) { return Read8BE(pBuf); }
57static inline RefTypeId ReadRefTypeId(const uint8_t** pBuf) { return Read8BE(pBuf); }
58static inline FrameId ReadFrameId(const uint8_t** pBuf) { return Read8BE(pBuf); }
Elliott Hughesaed4be92011-12-02 16:16:23 -080059static inline JdwpTag ReadTag(const uint8_t** pBuf) { return static_cast<JdwpTag>(Read1(pBuf)); }
Elliott Hughesd07986f2011-12-06 18:27:45 -080060static inline JdwpTypeTag ReadTypeTag(const uint8_t** pBuf) { return static_cast<JdwpTypeTag>(Read1(pBuf)); }
Elliott Hughesf7c3b662011-10-27 12:04:56 -070061static inline void SetFieldId(uint8_t* buf, FieldId val) { return Set4BE(buf, val); }
62static inline void SetMethodId(uint8_t* buf, MethodId val) { return Set4BE(buf, val); }
63static inline void SetObjectId(uint8_t* buf, ObjectId val) { return Set8BE(buf, val); }
64static inline void SetRefTypeId(uint8_t* buf, RefTypeId val) { return Set8BE(buf, val); }
65static inline void SetFrameId(uint8_t* buf, FrameId val) { return Set8BE(buf, val); }
Elliott Hughes872d4ec2011-10-21 17:07:15 -070066static inline void expandBufAddFieldId(ExpandBuf* pReply, FieldId id) { expandBufAdd4BE(pReply, id); }
67static inline void expandBufAddMethodId(ExpandBuf* pReply, MethodId id) { expandBufAdd4BE(pReply, id); }
68static inline void expandBufAddObjectId(ExpandBuf* pReply, ObjectId id) { expandBufAdd8BE(pReply, id); }
69static inline void expandBufAddRefTypeId(ExpandBuf* pReply, RefTypeId id) { expandBufAdd8BE(pReply, id); }
70static inline void expandBufAddFrameId(ExpandBuf* pReply, FrameId id) { expandBufAdd8BE(pReply, id); }
71
Elliott Hughes872d4ec2011-10-21 17:07:15 -070072/*
73 * Holds a JDWP "location".
74 */
75struct JdwpLocation {
Elliott Hughesd07986f2011-12-06 18:27:45 -080076 JdwpTypeTag typeTag;
77 RefTypeId classId;
78 MethodId methodId;
79 uint64_t idx; // A Dex PC.
Elliott Hughes872d4ec2011-10-21 17:07:15 -070080};
Elliott Hughes03181a82011-11-17 17:22:21 -080081std::ostream& operator<<(std::ostream& os, const JdwpLocation& rhs);
Elliott Hughes872d4ec2011-10-21 17:07:15 -070082
83/*
84 * How we talk to the debugger.
85 */
86enum JdwpTransportType {
87 kJdwpTransportUnknown = 0,
88 kJdwpTransportSocket, /* transport=dt_socket */
89 kJdwpTransportAndroidAdb, /* transport=dt_android_adb */
90};
91std::ostream& operator<<(std::ostream& os, const JdwpTransportType& rhs);
92
Elliott Hughes376a7a02011-10-24 18:35:55 -070093struct JdwpOptions {
Elliott Hughes872d4ec2011-10-21 17:07:15 -070094 JdwpTransportType transport;
95 bool server;
96 bool suspend;
Elliott Hughesd1cc8362011-10-24 16:58:50 -070097 std::string host;
Elliott Hughes6d8dd472012-01-17 18:27:41 -080098 uint16_t port;
Elliott Hughes872d4ec2011-10-21 17:07:15 -070099};
100
Elliott Hughes376a7a02011-10-24 18:35:55 -0700101struct JdwpEvent;
102struct JdwpNetState;
103struct JdwpReqHeader;
104struct JdwpTransport;
Elliott Hughes761928d2011-11-16 18:33:03 -0800105struct ModBasket;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700106
107/*
Elliott Hughes376a7a02011-10-24 18:35:55 -0700108 * State for JDWP functions.
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700109 */
Elliott Hughes376a7a02011-10-24 18:35:55 -0700110struct JdwpState {
111 /*
112 * Perform one-time initialization.
113 *
114 * Among other things, this binds to a port to listen for a connection from
115 * the debugger.
116 *
117 * Returns a newly-allocated JdwpState struct on success, or NULL on failure.
118 */
119 static JdwpState* Create(const JdwpOptions* options);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700120
Elliott Hughes376a7a02011-10-24 18:35:55 -0700121 ~JdwpState();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700122
Elliott Hughes376a7a02011-10-24 18:35:55 -0700123 /*
124 * Returns "true" if a debugger or DDM is connected.
125 */
126 bool IsActive();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700127
Elliott Hughes475fc232011-10-25 15:00:35 -0700128 /**
129 * Returns the Thread* for the JDWP daemon thread.
Elliott Hughes376a7a02011-10-24 18:35:55 -0700130 */
Elliott Hughes475fc232011-10-25 15:00:35 -0700131 Thread* GetDebugThread();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700132
Elliott Hughes376a7a02011-10-24 18:35:55 -0700133 /*
134 * Get time, in milliseconds, since the last debugger activity.
135 */
136 int64_t LastDebuggerActivity();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700137
Elliott Hughes376a7a02011-10-24 18:35:55 -0700138 /*
139 * When we hit a debugger event that requires suspension, it's important
140 * that we wait for the thread to suspend itself before processing any
141 * additional requests. (Otherwise, if the debugger immediately sends a
142 * "resume thread" command, the resume might arrive before the thread has
143 * suspended itself.)
144 *
145 * The thread should call the "set" function before sending the event to
146 * the debugger. The main JDWP handler loop calls "get" before processing
147 * an event, and will wait for thread suspension if it's set. Once the
148 * thread has suspended itself, the JDWP handler calls "clear" and
149 * continues processing the current event. This works in the suspend-all
150 * case because the event thread doesn't suspend itself until everything
151 * else has suspended.
152 *
153 * It's possible that multiple threads could encounter thread-suspending
154 * events at the same time, so we grab a mutex in the "set" call, and
155 * release it in the "clear" call.
156 */
157 //ObjectId GetWaitForEventThread();
158 void SetWaitForEventThread(ObjectId threadId);
159 void ClearWaitForEventThread();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700160
Elliott Hughes376a7a02011-10-24 18:35:55 -0700161 /*
162 * These notify the debug code that something interesting has happened. This
163 * could be a thread starting or ending, an exception, or an opportunity
164 * for a breakpoint. These calls do not mean that an event the debugger
165 * is interested has happened, just that something has happened that the
166 * debugger *might* be interested in.
167 *
168 * The item of interest may trigger multiple events, some or all of which
169 * are grouped together in a single response.
170 *
171 * The event may cause the current thread or all threads (except the
172 * JDWP support thread) to be suspended.
173 */
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700174
Elliott Hughes376a7a02011-10-24 18:35:55 -0700175 /*
176 * The VM has finished initializing. Only called when the debugger is
177 * connected at the time initialization completes.
178 */
179 bool PostVMStart();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700180
Elliott Hughes376a7a02011-10-24 18:35:55 -0700181 /*
182 * A location of interest has been reached. This is used for breakpoints,
183 * single-stepping, and method entry/exit. (JDWP requires that these four
184 * events are grouped together in a single response.)
185 *
186 * In some cases "*pLoc" will just have a method and class name, e.g. when
187 * issuing a MethodEntry on a native method.
188 *
189 * "eventFlags" indicates the types of events that have occurred.
190 */
191 bool PostLocationEvent(const JdwpLocation* pLoc, ObjectId thisPtr, int eventFlags);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700192
Elliott Hughes376a7a02011-10-24 18:35:55 -0700193 /*
194 * An exception has been thrown.
195 *
196 * Pass in a zeroed-out "*pCatchLoc" if the exception wasn't caught.
197 */
198 bool PostException(const JdwpLocation* pThrowLoc, ObjectId excepId, RefTypeId excepClassId, const JdwpLocation* pCatchLoc, ObjectId thisPtr);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700199
Elliott Hughes376a7a02011-10-24 18:35:55 -0700200 /*
201 * A thread has started or stopped.
202 */
203 bool PostThreadChange(ObjectId threadId, bool start);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700204
Elliott Hughes376a7a02011-10-24 18:35:55 -0700205 /*
206 * Class has been prepared.
207 */
Elliott Hughes4740cdf2011-12-07 14:07:12 -0800208 bool PostClassPrepare(JdwpTypeTag tag, RefTypeId refTypeId, const std::string& signature, int status);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700209
Elliott Hughes376a7a02011-10-24 18:35:55 -0700210 /*
211 * The VM is about to stop.
212 */
213 bool PostVMDeath();
214
215 /*
216 * Send up a chunk of DDM data.
217 */
Elliott Hughescccd84f2011-12-05 16:51:54 -0800218 void DdmSendChunkV(uint32_t type, const iovec* iov, int iov_count);
Elliott Hughes376a7a02011-10-24 18:35:55 -0700219
220 /*
221 * Process a request from the debugger.
222 *
223 * "buf" points past the header, to the content of the message. "dataLen"
224 * can therefore be zero.
225 */
226 void ProcessRequest(const JdwpReqHeader* pHeader, const uint8_t* buf, int dataLen, ExpandBuf* pReply);
227
228 /*
229 * Send an event, formatted into "pReq", to the debugger.
230 *
231 * (Messages are sent asynchronously, and do not receive a reply.)
232 */
233 bool SendRequest(ExpandBuf* pReq);
234
235 void ResetState();
236
237 /* atomic ops to get next serial number */
238 uint32_t NextRequestSerial();
239 uint32_t NextEventSerial();
240
241 void Run();
242
Elliott Hughes761928d2011-11-16 18:33:03 -0800243 /*
244 * Register an event by adding it to the event list.
245 *
246 * "*pEvent" must be storage allocated with jdwpEventAlloc(). The caller
247 * may discard its pointer after calling this.
248 */
249 JdwpError RegisterEvent(JdwpEvent* pEvent);
250
251 /*
252 * Unregister an event, given the requestId.
253 */
254 void UnregisterEventById(uint32_t requestId);
255
256 /*
257 * Unregister all events.
258 */
259 void UnregisterAll();
260
Elliott Hughes376a7a02011-10-24 18:35:55 -0700261 private:
Elliott Hughesba8eee12012-01-24 20:25:24 -0800262 explicit JdwpState(const JdwpOptions* options);
Elliott Hughes761928d2011-11-16 18:33:03 -0800263 bool InvokeInProgress();
Elliott Hughes376a7a02011-10-24 18:35:55 -0700264 bool IsConnected();
Elliott Hughes761928d2011-11-16 18:33:03 -0800265 void SuspendByPolicy(JdwpSuspendPolicy suspendPolicy);
266 void CleanupMatchList(JdwpEvent** matchList, int matchCount);
267 void EventFinish(ExpandBuf* pReq);
268 void FindMatchingEvents(JdwpEventKind eventKind, ModBasket* basket, JdwpEvent** matchList, int* pMatchCount);
269 void UnregisterEvent(JdwpEvent* pEvent);
Elliott Hughes376a7a02011-10-24 18:35:55 -0700270
271public: // TODO: fix privacy
272 const JdwpOptions* options_;
273private:
274
275 /* wait for creation of the JDWP thread */
276 Mutex thread_start_lock_;
277 ConditionVariable thread_start_cond_;
278
279 volatile int32_t debug_thread_started_;
Elliott Hughes475fc232011-10-25 15:00:35 -0700280 pthread_t pthread_;
281 Thread* thread_;
Elliott Hughes376a7a02011-10-24 18:35:55 -0700282public: // TODO: fix privacy
283 ObjectId debugThreadId;
284private:
285 bool run;
286
287 const JdwpTransport* transport;
288public: // TODO: fix privacy
289 JdwpNetState* netState;
290private:
291
292 /* for wait-for-debugger */
293 Mutex attach_lock_;
294 ConditionVariable attach_cond_;
295
296 /* time of last debugger activity, in milliseconds */
297 int64_t lastActivityWhen;
298
299 /* global counters and a mutex to protect them */
300 uint32_t requestSerial;
301 uint32_t eventSerial;
302 Mutex serial_lock_;
303
304 /*
305 * Events requested by the debugger (breakpoints, class prep, etc).
306 */
307public: // TODO: fix privacy
308 int numEvents; /* #of elements in eventList */
309 JdwpEvent* eventList; /* linked list of events */
310 Mutex event_lock_; /* guards numEvents/eventList */
311private:
312
313 /*
314 * Synchronize suspension of event thread (to avoid receiving "resume"
315 * events before the thread has finished suspending itself).
316 */
317 Mutex event_thread_lock_;
318 ConditionVariable event_thread_cond_;
319 ObjectId eventThreadId;
320
321 /*
322 * DDM support.
323 */
324public: // TODO: fix privacy
325 bool ddmActive;
326private:
327};
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700328
329} // namespace JDWP
330
331} // namespace art
332
333#endif // ART_JDWP_JDWP_H_