Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1 | /* |
| 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 | /* |
| 18 | * Dalvik-specific side of debugger support. (The JDWP code is intended to |
| 19 | * be relatively generic.) |
| 20 | */ |
| 21 | #ifndef ART_DEBUGGER_H_ |
| 22 | #define ART_DEBUGGER_H_ |
| 23 | |
| 24 | #include <pthread.h> |
| 25 | |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 26 | #include <string> |
| 27 | |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 28 | #include "jdwp/jdwp.h" |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 29 | #include "object.h" |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 30 | |
| 31 | namespace art { |
| 32 | |
| 33 | struct Thread; |
| 34 | |
| 35 | /* |
| 36 | * Invoke-during-breakpoint support. |
| 37 | */ |
| 38 | struct DebugInvokeReq { |
| 39 | /* boolean; only set when we're in the tail end of an event handler */ |
| 40 | bool ready; |
| 41 | |
| 42 | /* boolean; set if the JDWP thread wants this thread to do work */ |
| 43 | bool invokeNeeded; |
| 44 | |
| 45 | /* request */ |
| 46 | Object* obj; /* not used for ClassType.InvokeMethod */ |
| 47 | Object* thread; |
| 48 | Class* class_; |
| 49 | Method* method; |
| 50 | uint32_t numArgs; |
| 51 | uint64_t* argArray; /* will be NULL if numArgs==0 */ |
| 52 | uint32_t options; |
| 53 | |
| 54 | /* result */ |
| 55 | JDWP::JdwpError err; |
| 56 | uint8_t resultTag; |
| 57 | JValue resultValue; |
| 58 | JDWP::ObjectId exceptObj; |
| 59 | |
| 60 | /* condition variable to wait on while the method executes */ |
| 61 | Mutex lock_; |
| 62 | ConditionVariable cond_; |
| 63 | }; |
| 64 | |
| 65 | class Dbg { |
| 66 | public: |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 67 | static bool ParseJdwpOptions(const std::string& options); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 68 | static bool DebuggerStartup(); |
| 69 | static void DebuggerShutdown(); |
| 70 | |
Elliott Hughes | 4ffd313 | 2011-10-24 12:06:42 -0700 | [diff] [blame^] | 71 | static void SetJdwpAllowed(bool allowed); |
| 72 | |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 73 | // Return the DebugInvokeReq for the current thread. |
| 74 | static DebugInvokeReq* GetInvokeReq(); |
| 75 | |
| 76 | /* |
| 77 | * Enable/disable breakpoints and step modes. Used to provide a heads-up |
| 78 | * when the debugger attaches. |
| 79 | */ |
| 80 | static void Connected(); |
| 81 | static void Active(); |
| 82 | static void Disconnected(); |
| 83 | |
| 84 | /* |
| 85 | * Returns "true" if a debugger is connected. Returns "false" if it's |
| 86 | * just DDM. |
| 87 | */ |
| 88 | static bool IsDebuggerConnected(); |
| 89 | |
| 90 | static bool IsDebuggingEnabled(); |
| 91 | |
| 92 | /* |
| 93 | * Time, in milliseconds, since the last debugger activity. Does not |
| 94 | * include DDMS activity. Returns -1 if there has been no activity. |
| 95 | * Returns 0 if we're in the middle of handling a debugger request. |
| 96 | */ |
| 97 | static int64_t LastDebuggerActivity(); |
| 98 | |
| 99 | /* |
| 100 | * Block/allow GC depending on what we're doing. These return the old |
| 101 | * status, which can be fed to ThreadContinuing() to restore the previous |
| 102 | * mode. |
| 103 | */ |
| 104 | static int ThreadRunning(); |
| 105 | static int ThreadWaiting(); |
| 106 | static int ThreadContinuing(int status); |
| 107 | |
| 108 | static void UndoDebuggerSuspensions(); |
| 109 | |
| 110 | // The debugger wants the VM to exit. |
| 111 | static void Exit(int status); |
| 112 | |
| 113 | /* |
| 114 | * Class, Object, Array |
| 115 | */ |
| 116 | static const char* GetClassDescriptor(JDWP::RefTypeId id); |
| 117 | static JDWP::ObjectId GetClassObject(JDWP::RefTypeId id); |
| 118 | static JDWP::RefTypeId GetSuperclass(JDWP::RefTypeId id); |
| 119 | static JDWP::ObjectId GetClassLoader(JDWP::RefTypeId id); |
| 120 | static uint32_t GetAccessFlags(JDWP::RefTypeId id); |
| 121 | static bool IsInterface(JDWP::RefTypeId id); |
| 122 | static void GetClassList(uint32_t* pNumClasses, JDWP::RefTypeId** pClassRefBuf); |
| 123 | static void GetVisibleClassList(JDWP::ObjectId classLoaderId, uint32_t* pNumClasses, JDWP::RefTypeId** pClassRefBuf); |
| 124 | static void GetClassInfo(JDWP::RefTypeId classId, uint8_t* pTypeTag, uint32_t* pStatus, const char** pSignature); |
| 125 | static bool FindLoadedClassBySignature(const char* classDescriptor, JDWP::RefTypeId* pRefTypeId); |
| 126 | static void GetObjectType(JDWP::ObjectId objectId, uint8_t* pRefTypeTag, JDWP::RefTypeId* pRefTypeId); |
| 127 | static uint8_t GetClassObjectType(JDWP::RefTypeId refTypeId); |
| 128 | static const char* GetSignature(JDWP::RefTypeId refTypeId); |
| 129 | static const char* GetSourceFile(JDWP::RefTypeId refTypeId); |
| 130 | static const char* GetObjectTypeName(JDWP::ObjectId objectId); |
| 131 | static uint8_t GetObjectTag(JDWP::ObjectId objectId); |
| 132 | static int GetTagWidth(int tag); |
| 133 | |
| 134 | static int GetArrayLength(JDWP::ObjectId arrayId); |
| 135 | static uint8_t GetArrayElementTag(JDWP::ObjectId arrayId); |
| 136 | static bool OutputArray(JDWP::ObjectId arrayId, int firstIndex, int count, JDWP::ExpandBuf* pReply); |
| 137 | static bool SetArrayElements(JDWP::ObjectId arrayId, int firstIndex, int count, const uint8_t* buf); |
| 138 | |
| 139 | static JDWP::ObjectId CreateString(const char* str); |
| 140 | static JDWP::ObjectId CreateObject(JDWP::RefTypeId classId); |
| 141 | static JDWP::ObjectId CreateArrayObject(JDWP::RefTypeId arrayTypeId, uint32_t length); |
| 142 | |
| 143 | static bool MatchType(JDWP::RefTypeId instClassId, JDWP::RefTypeId classId); |
| 144 | |
| 145 | /* |
| 146 | * Method and Field |
| 147 | */ |
| 148 | static const char* GetMethodName(JDWP::RefTypeId refTypeId, JDWP::MethodId id); |
| 149 | static void OutputAllFields(JDWP::RefTypeId refTypeId, bool withGeneric, JDWP::ExpandBuf* pReply); |
| 150 | static void OutputAllMethods(JDWP::RefTypeId refTypeId, bool withGeneric, JDWP::ExpandBuf* pReply); |
| 151 | static void OutputAllInterfaces(JDWP::RefTypeId refTypeId, JDWP::ExpandBuf* pReply); |
| 152 | static void OutputLineTable(JDWP::RefTypeId refTypeId, JDWP::MethodId methodId, JDWP::ExpandBuf* pReply); |
| 153 | static void OutputVariableTable(JDWP::RefTypeId refTypeId, JDWP::MethodId id, bool withGeneric, JDWP::ExpandBuf* pReply); |
| 154 | |
| 155 | static uint8_t GetFieldBasicTag(JDWP::ObjectId objId, JDWP::FieldId fieldId); |
| 156 | static uint8_t GetStaticFieldBasicTag(JDWP::RefTypeId refTypeId, JDWP::FieldId fieldId); |
| 157 | static void GetFieldValue(JDWP::ObjectId objectId, JDWP::FieldId fieldId, JDWP::ExpandBuf* pReply); |
| 158 | static void SetFieldValue(JDWP::ObjectId objectId, JDWP::FieldId fieldId, uint64_t value, int width); |
| 159 | static void GetStaticFieldValue(JDWP::RefTypeId refTypeId, JDWP::FieldId fieldId, JDWP::ExpandBuf* pReply); |
| 160 | static void SetStaticFieldValue(JDWP::RefTypeId refTypeId, JDWP::FieldId fieldId, uint64_t rawValue, int width); |
| 161 | |
| 162 | static char* StringToUtf8(JDWP::ObjectId strId); |
| 163 | |
| 164 | /* |
| 165 | * Thread, ThreadGroup, Frame |
| 166 | */ |
| 167 | static char* GetThreadName(JDWP::ObjectId threadId); |
| 168 | static JDWP::ObjectId GetThreadGroup(JDWP::ObjectId threadId); |
| 169 | static char* GetThreadGroupName(JDWP::ObjectId threadGroupId); |
| 170 | static JDWP::ObjectId GetThreadGroupParent(JDWP::ObjectId threadGroupId); |
| 171 | static JDWP::ObjectId GetSystemThreadGroupId(); |
| 172 | static JDWP::ObjectId GetMainThreadGroupId(); |
| 173 | |
| 174 | static bool GetThreadStatus(JDWP::ObjectId threadId, uint32_t* threadStatus, uint32_t* suspendStatus); |
| 175 | static uint32_t GetThreadSuspendCount(JDWP::ObjectId threadId); |
| 176 | static bool ThreadExists(JDWP::ObjectId threadId); |
| 177 | static bool IsSuspended(JDWP::ObjectId threadId); |
| 178 | //static void WaitForSuspend(JDWP::ObjectId threadId); |
| 179 | static void GetThreadGroupThreads(JDWP::ObjectId threadGroupId, JDWP::ObjectId** ppThreadIds, uint32_t* pThreadCount); |
| 180 | static void GetAllThreads(JDWP::ObjectId** ppThreadIds, uint32_t* pThreadCount); |
| 181 | static int GetThreadFrameCount(JDWP::ObjectId threadId); |
| 182 | static bool GetThreadFrame(JDWP::ObjectId threadId, int num, JDWP::FrameId* pFrameId, JDWP::JdwpLocation* pLoc); |
| 183 | |
| 184 | static JDWP::ObjectId GetThreadSelfId(); |
| 185 | static void SuspendVM(bool isEvent); |
| 186 | static void ResumeVM(); |
| 187 | static void SuspendThread(JDWP::ObjectId threadId); |
| 188 | static void ResumeThread(JDWP::ObjectId threadId); |
| 189 | static void SuspendSelf(); |
| 190 | |
| 191 | static bool GetThisObject(JDWP::ObjectId threadId, JDWP::FrameId frameId, JDWP::ObjectId* pThisId); |
| 192 | static void GetLocalValue(JDWP::ObjectId threadId, JDWP::FrameId frameId, int slot, uint8_t tag, uint8_t* buf, int expectedLen); |
| 193 | static void SetLocalValue(JDWP::ObjectId threadId, JDWP::FrameId frameId, int slot, uint8_t tag, uint64_t value, int width); |
| 194 | |
| 195 | /* |
| 196 | * Debugger notification |
| 197 | */ |
| 198 | enum { |
| 199 | kBreakPoint = 0x01, |
| 200 | kSingleStep = 0x02, |
| 201 | kMethodEntry = 0x04, |
| 202 | kMethodExit = 0x08, |
| 203 | }; |
| 204 | static void PostLocationEvent(const Method* method, int pcOffset, Object* thisPtr, int eventFlags); |
| 205 | static void PostException(void* throwFp, int throwRelPc, void* catchFp, int catchRelPc, Object* exception); |
| 206 | static void PostThreadStart(Thread* t); |
| 207 | static void PostThreadDeath(Thread* t); |
| 208 | static void PostClassPrepare(Class* c); |
| 209 | |
| 210 | static bool WatchLocation(const JDWP::JdwpLocation* pLoc); |
| 211 | static void UnwatchLocation(const JDWP::JdwpLocation* pLoc); |
| 212 | static bool ConfigureStep(JDWP::ObjectId threadId, JDWP::JdwpStepSize size, JDWP::JdwpStepDepth depth); |
| 213 | static void UnconfigureStep(JDWP::ObjectId threadId); |
| 214 | |
| 215 | static JDWP::JdwpError InvokeMethod(JDWP::ObjectId threadId, JDWP::ObjectId objectId, JDWP::RefTypeId classId, JDWP::MethodId methodId, uint32_t numArgs, uint64_t* argArray, uint32_t options, uint8_t* pResultTag, uint64_t* pResultValue, JDWP::ObjectId* pExceptObj); |
| 216 | static void ExecuteMethod(DebugInvokeReq* pReq); |
| 217 | |
| 218 | /* perform "late registration" of an object ID */ |
| 219 | static void RegisterObjectId(JDWP::ObjectId id); |
| 220 | |
| 221 | /* |
| 222 | * DDM support. |
| 223 | */ |
| 224 | static bool DdmHandlePacket(const uint8_t* buf, int dataLen, uint8_t** pReplyBuf, int* pReplyLen); |
| 225 | static void DdmConnected(); |
| 226 | static void DdmDisconnected(); |
| 227 | static void DdmSendChunk(int type, size_t len, const uint8_t* buf); |
| 228 | static void DdmSendChunkV(int type, const struct iovec* iov, int iovcnt); |
| 229 | }; |
| 230 | |
| 231 | #define CHUNK_TYPE(_name) \ |
| 232 | ((_name)[0] << 24 | (_name)[1] << 16 | (_name)[2] << 8 | (_name)[3]) |
| 233 | |
| 234 | } // namespace art |
| 235 | |
| 236 | #endif // ART_DEBUGGER_H_ |