blob: 1b766bd1068dec28384e136313344919a29c8587 [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 Hughes475fc232011-10-25 15:00:35 -070034struct Thread;
35
Elliott Hughes872d4ec2011-10-21 17:07:15 -070036namespace JDWP {
37
Elliott Hughes872d4ec2011-10-21 17:07:15 -070038/*
39 * Fundamental types.
40 *
41 * ObjectId and RefTypeId must be the same size.
42 */
43typedef uint32_t FieldId; /* static or instance field */
44typedef uint32_t MethodId; /* any kind of method, including constructors */
45typedef uint64_t ObjectId; /* any object (threadID, stringID, arrayID, etc) */
46typedef uint64_t RefTypeId; /* like ObjectID, but unique for Class objects */
47typedef uint64_t FrameId; /* short-lived stack frame ID */
48
49/*
50 * Match these with the type sizes. This way we don't have to pass
51 * a value and a length.
52 */
Elliott Hughesf7c3b662011-10-27 12:04:56 -070053static inline FieldId ReadFieldId(const uint8_t** pBuf) { return Read4BE(pBuf); }
54static inline MethodId ReadMethodId(const uint8_t** pBuf) { return Read4BE(pBuf); }
55static inline ObjectId ReadObjectId(const uint8_t** pBuf) { return Read8BE(pBuf); }
56static inline RefTypeId ReadRefTypeId(const uint8_t** pBuf) { return Read8BE(pBuf); }
57static inline FrameId ReadFrameId(const uint8_t** pBuf) { return Read8BE(pBuf); }
58static inline void SetFieldId(uint8_t* buf, FieldId val) { return Set4BE(buf, val); }
59static inline void SetMethodId(uint8_t* buf, MethodId val) { return Set4BE(buf, val); }
60static inline void SetObjectId(uint8_t* buf, ObjectId val) { return Set8BE(buf, val); }
61static inline void SetRefTypeId(uint8_t* buf, RefTypeId val) { return Set8BE(buf, val); }
62static inline void SetFrameId(uint8_t* buf, FrameId val) { return Set8BE(buf, val); }
Elliott Hughes872d4ec2011-10-21 17:07:15 -070063static inline void expandBufAddFieldId(ExpandBuf* pReply, FieldId id) { expandBufAdd4BE(pReply, id); }
64static inline void expandBufAddMethodId(ExpandBuf* pReply, MethodId id) { expandBufAdd4BE(pReply, id); }
65static inline void expandBufAddObjectId(ExpandBuf* pReply, ObjectId id) { expandBufAdd8BE(pReply, id); }
66static inline void expandBufAddRefTypeId(ExpandBuf* pReply, RefTypeId id) { expandBufAdd8BE(pReply, id); }
67static inline void expandBufAddFrameId(ExpandBuf* pReply, FrameId id) { expandBufAdd8BE(pReply, id); }
68
Elliott Hughes872d4ec2011-10-21 17:07:15 -070069/*
70 * Holds a JDWP "location".
71 */
72struct JdwpLocation {
73 uint8_t typeTag; /* class or interface? */
74 RefTypeId classId; /* method->clazz */
75 MethodId methodId; /* method in which "idx" resides */
76 uint64_t idx; /* relative index into code block */
77};
Elliott Hughes03181a82011-11-17 17:22:21 -080078std::ostream& operator<<(std::ostream& os, const JdwpLocation& rhs);
Elliott Hughes872d4ec2011-10-21 17:07:15 -070079
80/*
81 * How we talk to the debugger.
82 */
83enum JdwpTransportType {
84 kJdwpTransportUnknown = 0,
85 kJdwpTransportSocket, /* transport=dt_socket */
86 kJdwpTransportAndroidAdb, /* transport=dt_android_adb */
87};
88std::ostream& operator<<(std::ostream& os, const JdwpTransportType& rhs);
89
Elliott Hughes376a7a02011-10-24 18:35:55 -070090struct JdwpOptions {
Elliott Hughes872d4ec2011-10-21 17:07:15 -070091 JdwpTransportType transport;
92 bool server;
93 bool suspend;
Elliott Hughesd1cc8362011-10-24 16:58:50 -070094 std::string host;
Elliott Hughes872d4ec2011-10-21 17:07:15 -070095 short port;
Elliott Hughes872d4ec2011-10-21 17:07:15 -070096};
97
Elliott Hughes376a7a02011-10-24 18:35:55 -070098struct JdwpEvent;
99struct JdwpNetState;
100struct JdwpReqHeader;
101struct JdwpTransport;
Elliott Hughes761928d2011-11-16 18:33:03 -0800102struct ModBasket;
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700103
104/*
Elliott Hughes376a7a02011-10-24 18:35:55 -0700105 * State for JDWP functions.
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700106 */
Elliott Hughes376a7a02011-10-24 18:35:55 -0700107struct JdwpState {
108 /*
109 * Perform one-time initialization.
110 *
111 * Among other things, this binds to a port to listen for a connection from
112 * the debugger.
113 *
114 * Returns a newly-allocated JdwpState struct on success, or NULL on failure.
115 */
116 static JdwpState* Create(const JdwpOptions* options);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700117
Elliott Hughes376a7a02011-10-24 18:35:55 -0700118 ~JdwpState();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700119
Elliott Hughes376a7a02011-10-24 18:35:55 -0700120 /*
121 * Returns "true" if a debugger or DDM is connected.
122 */
123 bool IsActive();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700124
Elliott Hughes475fc232011-10-25 15:00:35 -0700125 /**
126 * Returns the Thread* for the JDWP daemon thread.
Elliott Hughes376a7a02011-10-24 18:35:55 -0700127 */
Elliott Hughes475fc232011-10-25 15:00:35 -0700128 Thread* GetDebugThread();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700129
Elliott Hughes376a7a02011-10-24 18:35:55 -0700130 /*
131 * Get time, in milliseconds, since the last debugger activity.
132 */
133 int64_t LastDebuggerActivity();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700134
Elliott Hughes376a7a02011-10-24 18:35:55 -0700135 /*
136 * When we hit a debugger event that requires suspension, it's important
137 * that we wait for the thread to suspend itself before processing any
138 * additional requests. (Otherwise, if the debugger immediately sends a
139 * "resume thread" command, the resume might arrive before the thread has
140 * suspended itself.)
141 *
142 * The thread should call the "set" function before sending the event to
143 * the debugger. The main JDWP handler loop calls "get" before processing
144 * an event, and will wait for thread suspension if it's set. Once the
145 * thread has suspended itself, the JDWP handler calls "clear" and
146 * continues processing the current event. This works in the suspend-all
147 * case because the event thread doesn't suspend itself until everything
148 * else has suspended.
149 *
150 * It's possible that multiple threads could encounter thread-suspending
151 * events at the same time, so we grab a mutex in the "set" call, and
152 * release it in the "clear" call.
153 */
154 //ObjectId GetWaitForEventThread();
155 void SetWaitForEventThread(ObjectId threadId);
156 void ClearWaitForEventThread();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700157
Elliott Hughes376a7a02011-10-24 18:35:55 -0700158 /*
159 * These notify the debug code that something interesting has happened. This
160 * could be a thread starting or ending, an exception, or an opportunity
161 * for a breakpoint. These calls do not mean that an event the debugger
162 * is interested has happened, just that something has happened that the
163 * debugger *might* be interested in.
164 *
165 * The item of interest may trigger multiple events, some or all of which
166 * are grouped together in a single response.
167 *
168 * The event may cause the current thread or all threads (except the
169 * JDWP support thread) to be suspended.
170 */
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700171
Elliott Hughes376a7a02011-10-24 18:35:55 -0700172 /*
173 * The VM has finished initializing. Only called when the debugger is
174 * connected at the time initialization completes.
175 */
176 bool PostVMStart();
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700177
Elliott Hughes376a7a02011-10-24 18:35:55 -0700178 /*
179 * A location of interest has been reached. This is used for breakpoints,
180 * single-stepping, and method entry/exit. (JDWP requires that these four
181 * events are grouped together in a single response.)
182 *
183 * In some cases "*pLoc" will just have a method and class name, e.g. when
184 * issuing a MethodEntry on a native method.
185 *
186 * "eventFlags" indicates the types of events that have occurred.
187 */
188 bool PostLocationEvent(const JdwpLocation* pLoc, ObjectId thisPtr, int eventFlags);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700189
Elliott Hughes376a7a02011-10-24 18:35:55 -0700190 /*
191 * An exception has been thrown.
192 *
193 * Pass in a zeroed-out "*pCatchLoc" if the exception wasn't caught.
194 */
195 bool PostException(const JdwpLocation* pThrowLoc, ObjectId excepId, RefTypeId excepClassId, const JdwpLocation* pCatchLoc, ObjectId thisPtr);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700196
Elliott Hughes376a7a02011-10-24 18:35:55 -0700197 /*
198 * A thread has started or stopped.
199 */
200 bool PostThreadChange(ObjectId threadId, bool start);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700201
Elliott Hughes376a7a02011-10-24 18:35:55 -0700202 /*
203 * Class has been prepared.
204 */
205 bool PostClassPrepare(int tag, RefTypeId refTypeId, const char* signature, int status);
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700206
Elliott Hughes376a7a02011-10-24 18:35:55 -0700207 /*
208 * The VM is about to stop.
209 */
210 bool PostVMDeath();
211
212 /*
213 * Send up a chunk of DDM data.
214 */
Elliott Hughes82188472011-11-07 18:11:48 -0800215 void DdmSendChunkV(uint32_t type, const iovec* iov, int iovcnt);
Elliott Hughes376a7a02011-10-24 18:35:55 -0700216
217 /*
218 * Process a request from the debugger.
219 *
220 * "buf" points past the header, to the content of the message. "dataLen"
221 * can therefore be zero.
222 */
223 void ProcessRequest(const JdwpReqHeader* pHeader, const uint8_t* buf, int dataLen, ExpandBuf* pReply);
224
225 /*
226 * Send an event, formatted into "pReq", to the debugger.
227 *
228 * (Messages are sent asynchronously, and do not receive a reply.)
229 */
230 bool SendRequest(ExpandBuf* pReq);
231
232 void ResetState();
233
234 /* atomic ops to get next serial number */
235 uint32_t NextRequestSerial();
236 uint32_t NextEventSerial();
237
238 void Run();
239
Elliott Hughes761928d2011-11-16 18:33:03 -0800240 /*
241 * Register an event by adding it to the event list.
242 *
243 * "*pEvent" must be storage allocated with jdwpEventAlloc(). The caller
244 * may discard its pointer after calling this.
245 */
246 JdwpError RegisterEvent(JdwpEvent* pEvent);
247
248 /*
249 * Unregister an event, given the requestId.
250 */
251 void UnregisterEventById(uint32_t requestId);
252
253 /*
254 * Unregister all events.
255 */
256 void UnregisterAll();
257
Elliott Hughes376a7a02011-10-24 18:35:55 -0700258 private:
259 JdwpState(const JdwpOptions* options);
Elliott Hughes761928d2011-11-16 18:33:03 -0800260 bool InvokeInProgress();
Elliott Hughes376a7a02011-10-24 18:35:55 -0700261 bool IsConnected();
Elliott Hughes761928d2011-11-16 18:33:03 -0800262 void SuspendByPolicy(JdwpSuspendPolicy suspendPolicy);
263 void CleanupMatchList(JdwpEvent** matchList, int matchCount);
264 void EventFinish(ExpandBuf* pReq);
265 void FindMatchingEvents(JdwpEventKind eventKind, ModBasket* basket, JdwpEvent** matchList, int* pMatchCount);
266 void UnregisterEvent(JdwpEvent* pEvent);
Elliott Hughes376a7a02011-10-24 18:35:55 -0700267
268public: // TODO: fix privacy
269 const JdwpOptions* options_;
270private:
271
272 /* wait for creation of the JDWP thread */
273 Mutex thread_start_lock_;
274 ConditionVariable thread_start_cond_;
275
276 volatile int32_t debug_thread_started_;
Elliott Hughes475fc232011-10-25 15:00:35 -0700277 pthread_t pthread_;
278 Thread* thread_;
Elliott Hughes376a7a02011-10-24 18:35:55 -0700279public: // TODO: fix privacy
280 ObjectId debugThreadId;
281private:
282 bool run;
283
284 const JdwpTransport* transport;
285public: // TODO: fix privacy
286 JdwpNetState* netState;
287private:
288
289 /* for wait-for-debugger */
290 Mutex attach_lock_;
291 ConditionVariable attach_cond_;
292
293 /* time of last debugger activity, in milliseconds */
294 int64_t lastActivityWhen;
295
296 /* global counters and a mutex to protect them */
297 uint32_t requestSerial;
298 uint32_t eventSerial;
299 Mutex serial_lock_;
300
301 /*
302 * Events requested by the debugger (breakpoints, class prep, etc).
303 */
304public: // TODO: fix privacy
305 int numEvents; /* #of elements in eventList */
306 JdwpEvent* eventList; /* linked list of events */
307 Mutex event_lock_; /* guards numEvents/eventList */
308private:
309
310 /*
311 * Synchronize suspension of event thread (to avoid receiving "resume"
312 * events before the thread has finished suspending itself).
313 */
314 Mutex event_thread_lock_;
315 ConditionVariable event_thread_cond_;
316 ObjectId eventThreadId;
317
318 /*
319 * DDM support.
320 */
321public: // TODO: fix privacy
322 bool ddmActive;
323private:
324};
Elliott Hughes872d4ec2011-10-21 17:07:15 -0700325
326} // namespace JDWP
327
328} // namespace art
329
330#endif // ART_JDWP_JDWP_H_