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 | * JDWP initialization. |
| 19 | */ |
| 20 | |
| 21 | #include "atomic.h" |
| 22 | #include "debugger.h" |
| 23 | #include "jdwp/jdwp_priv.h" |
| 24 | #include "logging.h" |
| 25 | |
| 26 | #include <stdlib.h> |
| 27 | #include <unistd.h> |
| 28 | #include <sys/time.h> |
| 29 | #include <time.h> |
| 30 | #include <errno.h> |
| 31 | |
| 32 | namespace art { |
| 33 | |
| 34 | namespace JDWP { |
| 35 | |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 36 | static void* StartJdwpThread(void* arg); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 37 | |
| 38 | /* |
| 39 | * JdwpNetStateBase class implementation |
| 40 | */ |
| 41 | JdwpNetStateBase::JdwpNetStateBase() : socket_lock_("JdwpNetStateBase lock") { |
| 42 | clientSock = -1; |
| 43 | } |
| 44 | |
| 45 | /* |
| 46 | * Write a packet. Grabs a mutex to assure atomicity. |
| 47 | */ |
| 48 | ssize_t JdwpNetStateBase::writePacket(ExpandBuf* pReply) { |
| 49 | MutexLock mu(socket_lock_); |
| 50 | return write(clientSock, expandBufGetBuffer(pReply), expandBufGetLength(pReply)); |
| 51 | } |
| 52 | |
| 53 | /* |
| 54 | * Write a buffered packet. Grabs a mutex to assure atomicity. |
| 55 | */ |
| 56 | ssize_t JdwpNetStateBase::writeBufferedPacket(const iovec* iov, int iovcnt) { |
| 57 | MutexLock mu(socket_lock_); |
| 58 | return writev(clientSock, iov, iovcnt); |
| 59 | } |
| 60 | |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 61 | bool JdwpState::IsConnected() { |
| 62 | return (*transport->isConnected)(this); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 63 | } |
| 64 | |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 65 | bool JdwpState::SendRequest(ExpandBuf* pReq) { |
| 66 | return (*transport->sendRequest)(this, pReq); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 67 | } |
| 68 | |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 69 | /* |
| 70 | * Get the next "request" serial number. We use this when sending |
| 71 | * packets to the debugger. |
| 72 | */ |
| 73 | uint32_t JdwpState::NextRequestSerial() { |
| 74 | MutexLock mu(serial_lock_); |
| 75 | return requestSerial++; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 76 | } |
| 77 | |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 78 | /* |
| 79 | * Get the next "event" serial number. We use this in the response to |
| 80 | * message type EventRequest.Set. |
| 81 | */ |
| 82 | uint32_t JdwpState::NextEventSerial() { |
| 83 | MutexLock mu(serial_lock_); |
| 84 | return eventSerial++; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 85 | } |
| 86 | |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 87 | JdwpState::JdwpState(const JdwpOptions* options) |
| 88 | : options_(options), |
| 89 | thread_start_lock_("JDWP thread start lock"), |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 90 | thread_start_cond_("JDWP thread start condition variable"), |
| 91 | debug_thread_started_(false), |
| 92 | debugThreadId(0), |
| 93 | run(false), |
| 94 | transport(NULL), |
| 95 | netState(NULL), |
| 96 | attach_lock_("JDWP attach lock"), |
| 97 | attach_cond_("JDWP attach condition variable"), |
| 98 | lastActivityWhen(0), |
| 99 | requestSerial(0x10000000), |
| 100 | eventSerial(0x20000000), |
| 101 | serial_lock_("JDWP serial lock"), |
| 102 | numEvents(0), |
| 103 | eventList(NULL), |
| 104 | event_lock_("JDWP event lock"), |
| 105 | event_thread_lock_("JDWP event thread lock"), |
| 106 | event_thread_cond_("JDWP event thread condition variable"), |
| 107 | eventThreadId(0), |
| 108 | ddmActive(false) { |
| 109 | } |
| 110 | |
| 111 | /* |
| 112 | * Initialize JDWP. |
| 113 | * |
| 114 | * Does not return until JDWP thread is running, but may return before |
| 115 | * the thread is accepting network connections. |
| 116 | */ |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 117 | JdwpState* JdwpState::Create(const JdwpOptions* options) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 118 | /* comment this out when debugging JDWP itself */ |
| 119 | //android_setMinPriority(LOG_TAG, ANDROID_LOG_DEBUG); |
| 120 | |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 121 | JdwpState* state = new JdwpState(options); |
| 122 | switch (options->transport) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 123 | case kJdwpTransportSocket: |
| 124 | // LOGD("prepping for JDWP over TCP"); |
| 125 | state->transport = SocketTransport(); |
| 126 | break; |
| 127 | #ifdef HAVE_ANDROID_OS |
| 128 | case kJdwpTransportAndroidAdb: |
| 129 | // LOGD("prepping for JDWP over ADB"); |
| 130 | state->transport = AndroidAdbTransport(); |
| 131 | break; |
| 132 | #endif |
| 133 | default: |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 134 | LOG(FATAL) << "Unknown transport: " << options->transport; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 135 | } |
| 136 | |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 137 | if (!(*state->transport->startup)(state, options)) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 138 | goto fail; |
| 139 | } |
| 140 | |
| 141 | /* |
| 142 | * Grab a mutex or two before starting the thread. This ensures they |
| 143 | * won't signal the cond var before we're waiting. |
| 144 | */ |
| 145 | state->thread_start_lock_.Lock(); |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 146 | if (options->suspend) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 147 | state->attach_lock_.Lock(); |
| 148 | } |
| 149 | |
| 150 | /* |
| 151 | * We have bound to a port, or are trying to connect outbound to a |
| 152 | * debugger. Create the JDWP thread and let it continue the mission. |
| 153 | */ |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 154 | CHECK_PTHREAD_CALL(pthread_create, (&state->pthread_, NULL, StartJdwpThread, state), "JDWP thread"); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 155 | |
| 156 | /* |
| 157 | * Wait until the thread finishes basic initialization. |
| 158 | * TODO: cond vars should be waited upon in a loop |
| 159 | */ |
| 160 | state->thread_start_cond_.Wait(state->thread_start_lock_); |
| 161 | state->thread_start_lock_.Unlock(); |
| 162 | |
| 163 | /* |
| 164 | * For suspend=y, wait for the debugger to connect to us or for us to |
| 165 | * connect to the debugger. |
| 166 | * |
| 167 | * The JDWP thread will signal us when it connects successfully or |
| 168 | * times out (for timeout=xxx), so we have to check to see what happened |
| 169 | * when we wake up. |
| 170 | */ |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 171 | if (options->suspend) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 172 | { |
| 173 | ScopedThreadStateChange tsc(Thread::Current(), Thread::kVmWait); |
| 174 | |
| 175 | state->attach_cond_.Wait(state->attach_lock_); |
| 176 | state->attach_lock_.Unlock(); |
| 177 | } |
| 178 | |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 179 | if (!state->IsActive()) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 180 | LOG(ERROR) << "JDWP connection failed"; |
| 181 | goto fail; |
| 182 | } |
| 183 | |
| 184 | LOG(INFO) << "JDWP connected"; |
| 185 | |
| 186 | /* |
| 187 | * Ordinarily we would pause briefly to allow the debugger to set |
| 188 | * breakpoints and so on, but for "suspend=y" the VM init code will |
| 189 | * pause the VM when it sends the VM_START message. |
| 190 | */ |
| 191 | } |
| 192 | |
| 193 | return state; |
| 194 | |
| 195 | fail: |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 196 | delete state; // frees state |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 197 | return NULL; |
| 198 | } |
| 199 | |
| 200 | /* |
| 201 | * Reset all session-related state. There should not be an active connection |
| 202 | * to the client at this point. The rest of the VM still thinks there is |
| 203 | * a debugger attached. |
| 204 | * |
| 205 | * This includes freeing up the debugger event list. |
| 206 | */ |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 207 | void JdwpState::ResetState() { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 208 | /* could reset the serial numbers, but no need to */ |
| 209 | |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 210 | UnregisterAll(this); |
| 211 | CHECK(eventList == NULL); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 212 | |
| 213 | /* |
| 214 | * Should not have one of these in progress. If the debugger went away |
| 215 | * mid-request, though, we could see this. |
| 216 | */ |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 217 | if (eventThreadId != 0) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 218 | LOG(WARNING) << "resetting state while event in progress"; |
| 219 | DCHECK(false); |
| 220 | } |
| 221 | } |
| 222 | |
| 223 | /* |
| 224 | * Tell the JDWP thread to shut down. Frees "state". |
| 225 | */ |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 226 | JdwpState::~JdwpState() { |
| 227 | if (transport != NULL) { |
| 228 | if (IsConnected()) { |
| 229 | PostVMDeath(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 230 | } |
| 231 | |
| 232 | /* |
| 233 | * Close down the network to inspire the thread to halt. |
| 234 | */ |
| 235 | LOG(DEBUG) << "JDWP shutting down net..."; |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 236 | (*transport->shutdown)(this); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 237 | |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 238 | if (debug_thread_started_) { |
| 239 | run = false; |
| 240 | void* threadReturn; |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 241 | if (pthread_join(pthread_, &threadReturn) != 0) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 242 | LOG(WARNING) << "JDWP thread join failed"; |
| 243 | } |
| 244 | } |
| 245 | |
| 246 | LOG(DEBUG) << "JDWP freeing netstate..."; |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 247 | (*transport->free)(this); |
| 248 | netState = NULL; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 249 | } |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 250 | CHECK(netState == NULL); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 251 | |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 252 | ResetState(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 253 | } |
| 254 | |
| 255 | /* |
| 256 | * Are we talking to a debugger? |
| 257 | */ |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 258 | bool JdwpState::IsActive() { |
| 259 | return IsConnected(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 260 | } |
| 261 | |
| 262 | /* |
| 263 | * Entry point for JDWP thread. The thread was created through the VM |
| 264 | * mechanisms, so there is a java/lang/Thread associated with us. |
| 265 | */ |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 266 | static void* StartJdwpThread(void* arg) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 267 | JdwpState* state = reinterpret_cast<JdwpState*>(arg); |
| 268 | CHECK(state != NULL); |
| 269 | |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 270 | state->Run(); |
| 271 | return NULL; |
| 272 | } |
| 273 | |
| 274 | void JdwpState::Run() { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 275 | Runtime* runtime = Runtime::Current(); |
| 276 | runtime->AttachCurrentThread("JDWP", true); |
| 277 | |
| 278 | LOG(VERBOSE) << "JDWP: thread running"; |
| 279 | |
| 280 | /* |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 281 | * Finish initializing, then notify the creating thread that |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 282 | * we're running. |
| 283 | */ |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 284 | thread_ = Thread::Current(); |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 285 | run = true; |
| 286 | android_atomic_release_store(true, &debug_thread_started_); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 287 | |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 288 | thread_start_lock_.Lock(); |
| 289 | thread_start_cond_.Broadcast(); |
| 290 | thread_start_lock_.Unlock(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 291 | |
| 292 | /* set the thread state to VMWAIT so GCs don't wait for us */ |
| 293 | Dbg::ThreadWaiting(); |
| 294 | |
| 295 | /* |
| 296 | * Loop forever if we're in server mode, processing connections. In |
| 297 | * non-server mode, we bail out of the thread when the debugger drops |
| 298 | * us. |
| 299 | * |
| 300 | * We broadcast a notification when a debugger attaches, after we |
| 301 | * successfully process the handshake. |
| 302 | */ |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 303 | while (run) { |
| 304 | if (options_->server) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 305 | /* |
| 306 | * Block forever, waiting for a connection. To support the |
| 307 | * "timeout=xxx" option we'll need to tweak this. |
| 308 | */ |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 309 | if (!(*transport->accept)(this)) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 310 | break; |
| 311 | } |
| 312 | } else { |
| 313 | /* |
| 314 | * If we're not acting as a server, we need to connect out to the |
| 315 | * debugger. To support the "timeout=xxx" option we need to |
| 316 | * have a timeout if the handshake reply isn't received in a |
| 317 | * reasonable amount of time. |
| 318 | */ |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 319 | if (!(*transport->establish)(this)) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 320 | /* wake anybody who was waiting for us to succeed */ |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 321 | MutexLock mu(attach_lock_); |
| 322 | attach_cond_.Broadcast(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 323 | break; |
| 324 | } |
| 325 | } |
| 326 | |
| 327 | /* prep debug code to handle the new connection */ |
| 328 | Dbg::Connected(); |
| 329 | |
| 330 | /* process requests until the debugger drops */ |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 331 | bool first = true; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 332 | while (true) { |
| 333 | // sanity check -- shouldn't happen? |
| 334 | if (Thread::Current()->GetState() != Thread::kVmWait) { |
| 335 | LOG(ERROR) << "JDWP thread no longer in VMWAIT (now " << Thread::Current()->GetState() << "); resetting"; |
| 336 | Dbg::ThreadWaiting(); |
| 337 | } |
| 338 | |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 339 | if (!(*transport->processIncoming)(this)) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 340 | /* blocking read */ |
| 341 | break; |
| 342 | } |
| 343 | |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 344 | if (first && !(*transport->awaitingHandshake)(this)) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 345 | /* handshake worked, tell the interpreter that we're active */ |
| 346 | first = false; |
| 347 | |
| 348 | /* set thread ID; requires object registry to be active */ |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 349 | debugThreadId = Dbg::GetThreadSelfId(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 350 | |
| 351 | /* wake anybody who's waiting for us */ |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 352 | MutexLock mu(attach_lock_); |
| 353 | attach_cond_.Broadcast(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 354 | } |
| 355 | } |
| 356 | |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 357 | (*transport->close)(this); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 358 | |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 359 | if (ddmActive) { |
| 360 | ddmActive = false; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 361 | |
| 362 | /* broadcast the disconnect; must be in RUNNING state */ |
| 363 | Dbg::ThreadRunning(); |
| 364 | Dbg::DdmDisconnected(); |
| 365 | Dbg::ThreadWaiting(); |
| 366 | } |
| 367 | |
| 368 | /* release session state, e.g. remove breakpoint instructions */ |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 369 | ResetState(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 370 | |
| 371 | /* tell the interpreter that the debugger is no longer around */ |
| 372 | Dbg::Disconnected(); |
| 373 | |
| 374 | /* if we had threads suspended, resume them now */ |
| 375 | Dbg::UndoDebuggerSuspensions(); |
| 376 | |
| 377 | /* if we connected out, this was a one-shot deal */ |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 378 | if (!options_->server) { |
| 379 | run = false; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 380 | } |
| 381 | } |
| 382 | |
| 383 | /* back to running, for thread shutdown */ |
| 384 | Dbg::ThreadRunning(); |
| 385 | |
Elliott Hughes | 6ba581a | 2011-10-25 11:45:35 -0700 | [diff] [blame] | 386 | LOG(VERBOSE) << "JDWP: thread detaching and exiting..."; |
| 387 | runtime->DetachCurrentThread(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 388 | } |
| 389 | |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 390 | Thread* JdwpState::GetDebugThread() { |
| 391 | return thread_; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 392 | } |
| 393 | |
| 394 | /* |
| 395 | * Support routines for waitForDebugger(). |
| 396 | * |
| 397 | * We can't have a trivial "waitForDebugger" function that returns the |
| 398 | * instant the debugger connects, because we run the risk of executing code |
| 399 | * before the debugger has had a chance to configure breakpoints or issue |
| 400 | * suspend calls. It would be nice to just sit in the suspended state, but |
| 401 | * most debuggers don't expect any threads to be suspended when they attach. |
| 402 | * |
| 403 | * There's no JDWP event we can post to tell the debugger, "we've stopped, |
| 404 | * and we like it that way". We could send a fake breakpoint, which should |
| 405 | * cause the debugger to immediately send a resume, but the debugger might |
| 406 | * send the resume immediately or might throw an exception of its own upon |
| 407 | * receiving a breakpoint event that it didn't ask for. |
| 408 | * |
| 409 | * What we really want is a "wait until the debugger is done configuring |
| 410 | * stuff" event. We can approximate this with a "wait until the debugger |
| 411 | * has been idle for a brief period". |
| 412 | */ |
| 413 | |
| 414 | /* |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 415 | * Return the time, in milliseconds, since the last debugger activity. |
| 416 | * |
| 417 | * Returns -1 if no debugger is attached, or 0 if we're in the middle of |
| 418 | * processing a debugger request. |
| 419 | */ |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 420 | int64_t JdwpState::LastDebuggerActivity() { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 421 | if (!Dbg::IsDebuggerConnected()) { |
| 422 | LOG(DEBUG) << "no active debugger"; |
| 423 | return -1; |
| 424 | } |
| 425 | |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 426 | int64_t last = QuasiAtomicRead64(&lastActivityWhen); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 427 | |
| 428 | /* initializing or in the middle of something? */ |
| 429 | if (last == 0) { |
| 430 | LOG(VERBOSE) << "+++ last=busy"; |
| 431 | return 0; |
| 432 | } |
| 433 | |
| 434 | /* now get the current time */ |
Elliott Hughes | 7162ad9 | 2011-10-27 14:08:42 -0700 | [diff] [blame] | 435 | int64_t now = MilliTime(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 436 | CHECK_GT(now, last); |
| 437 | |
| 438 | LOG(VERBOSE) << "+++ debugger interval=" << (now - last); |
| 439 | return now - last; |
| 440 | } |
| 441 | |
| 442 | static const char* kTransportNames[] = { |
| 443 | "Unknown", |
| 444 | "Socket", |
| 445 | "AndroidAdb", |
| 446 | }; |
| 447 | std::ostream& operator<<(std::ostream& os, const JdwpTransportType& value) { |
| 448 | int32_t int_value = static_cast<int32_t>(value); |
| 449 | if (value >= kJdwpTransportUnknown && value <= kJdwpTransportAndroidAdb) { |
| 450 | os << kTransportNames[int_value]; |
| 451 | } else { |
| 452 | os << "JdwpTransportType[" << int_value << "]"; |
| 453 | } |
| 454 | return os; |
| 455 | } |
| 456 | |
| 457 | } // namespace JDWP |
| 458 | |
| 459 | } // namespace art |