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 | |
Elliott Hughes | 07ed66b | 2012-12-12 18:34:25 -0800 | [diff] [blame] | 17 | #include <errno.h> |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 18 | #include <stdlib.h> |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 19 | #include <sys/time.h> |
| 20 | #include <time.h> |
Elliott Hughes | 07ed66b | 2012-12-12 18:34:25 -0800 | [diff] [blame] | 21 | #include <unistd.h> |
| 22 | |
| 23 | #include "atomic.h" |
| 24 | #include "base/logging.h" |
| 25 | #include "debugger.h" |
| 26 | #include "jdwp/jdwp_priv.h" |
| 27 | #include "scoped_thread_state_change.h" |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 28 | |
| 29 | namespace art { |
| 30 | |
| 31 | namespace JDWP { |
| 32 | |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 33 | static void* StartJdwpThread(void* arg); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 34 | |
| 35 | /* |
| 36 | * JdwpNetStateBase class implementation |
| 37 | */ |
Elliott Hughes | 5d10a87 | 2013-04-17 19:26:43 -0700 | [diff] [blame] | 38 | JdwpNetStateBase::JdwpNetStateBase(JdwpState* state) |
Mathieu Chartier | 4b95e8f | 2013-07-15 16:32:50 -0700 | [diff] [blame] | 39 | : state_(state), socket_lock_("JdwpNetStateBase lock", kJdwpSocketLock) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 40 | clientSock = -1; |
Elliott Hughes | 5d10a87 | 2013-04-17 19:26:43 -0700 | [diff] [blame] | 41 | wake_pipe_[0] = -1; |
| 42 | wake_pipe_[1] = -1; |
| 43 | input_count_ = 0; |
Elliott Hughes | 68a5e3c | 2013-04-17 17:13:35 -0700 | [diff] [blame] | 44 | awaiting_handshake_ = false; |
Elliott Hughes | cb69306 | 2013-02-21 09:48:08 -0800 | [diff] [blame] | 45 | } |
| 46 | |
Elliott Hughes | 5d10a87 | 2013-04-17 19:26:43 -0700 | [diff] [blame] | 47 | JdwpNetStateBase::~JdwpNetStateBase() { |
| 48 | if (wake_pipe_[0] != -1) { |
| 49 | close(wake_pipe_[0]); |
| 50 | wake_pipe_[0] = -1; |
| 51 | } |
| 52 | if (wake_pipe_[1] != -1) { |
| 53 | close(wake_pipe_[1]); |
| 54 | wake_pipe_[1] = -1; |
| 55 | } |
| 56 | } |
| 57 | |
| 58 | bool JdwpNetStateBase::MakePipe() { |
| 59 | if (pipe(wake_pipe_) == -1) { |
| 60 | PLOG(ERROR) << "pipe failed"; |
| 61 | return false; |
| 62 | } |
| 63 | return true; |
| 64 | } |
| 65 | |
| 66 | void JdwpNetStateBase::WakePipe() { |
| 67 | // If we might be sitting in select, kick us loose. |
| 68 | if (wake_pipe_[1] != -1) { |
| 69 | VLOG(jdwp) << "+++ writing to wake pipe"; |
| 70 | TEMP_FAILURE_RETRY(write(wake_pipe_[1], "", 1)); |
| 71 | } |
| 72 | } |
| 73 | |
Elliott Hughes | cb69306 | 2013-02-21 09:48:08 -0800 | [diff] [blame] | 74 | void JdwpNetStateBase::ConsumeBytes(size_t count) { |
| 75 | CHECK_GT(count, 0U); |
Elliott Hughes | 5d10a87 | 2013-04-17 19:26:43 -0700 | [diff] [blame] | 76 | CHECK_LE(count, input_count_); |
Elliott Hughes | cb69306 | 2013-02-21 09:48:08 -0800 | [diff] [blame] | 77 | |
Elliott Hughes | 5d10a87 | 2013-04-17 19:26:43 -0700 | [diff] [blame] | 78 | if (count == input_count_) { |
| 79 | input_count_ = 0; |
Elliott Hughes | cb69306 | 2013-02-21 09:48:08 -0800 | [diff] [blame] | 80 | return; |
| 81 | } |
| 82 | |
Elliott Hughes | 5d10a87 | 2013-04-17 19:26:43 -0700 | [diff] [blame] | 83 | memmove(input_buffer_, input_buffer_ + count, input_count_ - count); |
| 84 | input_count_ -= count; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 85 | } |
| 86 | |
Elliott Hughes | 68a5e3c | 2013-04-17 17:13:35 -0700 | [diff] [blame] | 87 | bool JdwpNetStateBase::HaveFullPacket() { |
| 88 | if (awaiting_handshake_) { |
Elliott Hughes | 5d10a87 | 2013-04-17 19:26:43 -0700 | [diff] [blame] | 89 | return (input_count_ >= kMagicHandshakeLen); |
Elliott Hughes | 68a5e3c | 2013-04-17 17:13:35 -0700 | [diff] [blame] | 90 | } |
Elliott Hughes | 5d10a87 | 2013-04-17 19:26:43 -0700 | [diff] [blame] | 91 | if (input_count_ < 4) { |
Elliott Hughes | 68a5e3c | 2013-04-17 17:13:35 -0700 | [diff] [blame] | 92 | return false; |
| 93 | } |
Elliott Hughes | 5d10a87 | 2013-04-17 19:26:43 -0700 | [diff] [blame] | 94 | uint32_t length = Get4BE(input_buffer_); |
| 95 | return (input_count_ >= length); |
Elliott Hughes | 68a5e3c | 2013-04-17 17:13:35 -0700 | [diff] [blame] | 96 | } |
| 97 | |
| 98 | bool JdwpNetStateBase::IsAwaitingHandshake() { |
| 99 | return awaiting_handshake_; |
| 100 | } |
| 101 | |
| 102 | void JdwpNetStateBase::SetAwaitingHandshake(bool new_state) { |
| 103 | awaiting_handshake_ = new_state; |
| 104 | } |
| 105 | |
| 106 | bool JdwpNetStateBase::IsConnected() { |
| 107 | return clientSock >= 0; |
| 108 | } |
| 109 | |
| 110 | // Close a connection from a debugger (which may have already dropped us). |
| 111 | // Resets the state so we're ready to receive a new connection. |
| 112 | // Only called from the JDWP thread. |
| 113 | void JdwpNetStateBase::Close() { |
| 114 | if (clientSock < 0) { |
| 115 | return; |
| 116 | } |
| 117 | |
| 118 | VLOG(jdwp) << "+++ closing JDWP connection on fd " << clientSock; |
| 119 | |
| 120 | close(clientSock); |
| 121 | clientSock = -1; |
| 122 | } |
| 123 | |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 124 | /* |
Sebastien Hertz | 43c8d72 | 2014-03-18 12:19:52 +0100 | [diff] [blame] | 125 | * Write a packet of "length" bytes. Grabs a mutex to assure atomicity. |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 126 | */ |
Sebastien Hertz | 43c8d72 | 2014-03-18 12:19:52 +0100 | [diff] [blame] | 127 | ssize_t JdwpNetStateBase::WritePacket(ExpandBuf* pReply, size_t length) { |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 128 | MutexLock mu(Thread::Current(), socket_lock_); |
Sebastien Hertz | 43c8d72 | 2014-03-18 12:19:52 +0100 | [diff] [blame] | 129 | DCHECK_LE(length, expandBufGetLength(pReply)); |
| 130 | return TEMP_FAILURE_RETRY(write(clientSock, expandBufGetBuffer(pReply), length)); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 131 | } |
| 132 | |
| 133 | /* |
| 134 | * Write a buffered packet. Grabs a mutex to assure atomicity. |
| 135 | */ |
Brian Carlstrom | f529352 | 2013-07-19 00:24:00 -0700 | [diff] [blame] | 136 | ssize_t JdwpNetStateBase::WriteBufferedPacket(const std::vector<iovec>& iov) { |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 137 | MutexLock mu(Thread::Current(), socket_lock_); |
Brian Carlstrom | f529352 | 2013-07-19 00:24:00 -0700 | [diff] [blame] | 138 | return TEMP_FAILURE_RETRY(writev(clientSock, &iov[0], iov.size())); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 139 | } |
| 140 | |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 141 | bool JdwpState::IsConnected() { |
Elliott Hughes | 68a5e3c | 2013-04-17 17:13:35 -0700 | [diff] [blame] | 142 | return netState != NULL && netState->IsConnected(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 143 | } |
| 144 | |
Brian Carlstrom | f529352 | 2013-07-19 00:24:00 -0700 | [diff] [blame] | 145 | void JdwpState::SendBufferedRequest(uint32_t type, const std::vector<iovec>& iov) { |
Elliott Hughes | 68a5e3c | 2013-04-17 17:13:35 -0700 | [diff] [blame] | 146 | if (netState->clientSock < 0) { |
| 147 | // Can happen with some DDMS events. |
| 148 | VLOG(jdwp) << "Not sending JDWP packet: no debugger attached!"; |
| 149 | return; |
| 150 | } |
| 151 | |
| 152 | size_t expected = 0; |
Brian Carlstrom | f529352 | 2013-07-19 00:24:00 -0700 | [diff] [blame] | 153 | for (size_t i = 0; i < iov.size(); ++i) { |
Elliott Hughes | 68a5e3c | 2013-04-17 17:13:35 -0700 | [diff] [blame] | 154 | expected += iov[i].iov_len; |
| 155 | } |
| 156 | |
| 157 | errno = 0; |
Brian Carlstrom | f529352 | 2013-07-19 00:24:00 -0700 | [diff] [blame] | 158 | ssize_t actual = netState->WriteBufferedPacket(iov); |
Elliott Hughes | 68a5e3c | 2013-04-17 17:13:35 -0700 | [diff] [blame] | 159 | if (static_cast<size_t>(actual) != expected) { |
Ian Rogers | d9e4e0c | 2014-01-23 20:11:40 -0800 | [diff] [blame] | 160 | PLOG(ERROR) << StringPrintf("Failed to send JDWP packet %c%c%c%c to debugger (%zd of %zu)", |
| 161 | static_cast<char>(type >> 24), |
| 162 | static_cast<char>(type >> 16), |
| 163 | static_cast<char>(type >> 8), |
| 164 | static_cast<char>(type), |
Elliott Hughes | 68a5e3c | 2013-04-17 17:13:35 -0700 | [diff] [blame] | 165 | actual, expected); |
| 166 | } |
| 167 | } |
| 168 | |
| 169 | void JdwpState::SendRequest(ExpandBuf* pReq) { |
| 170 | if (netState->clientSock < 0) { |
| 171 | // Can happen with some DDMS events. |
| 172 | VLOG(jdwp) << "Not sending JDWP packet: no debugger attached!"; |
| 173 | return; |
| 174 | } |
| 175 | |
| 176 | errno = 0; |
Sebastien Hertz | 43c8d72 | 2014-03-18 12:19:52 +0100 | [diff] [blame] | 177 | ssize_t actual = netState->WritePacket(pReq, expandBufGetLength(pReq)); |
Elliott Hughes | 68a5e3c | 2013-04-17 17:13:35 -0700 | [diff] [blame] | 178 | if (static_cast<size_t>(actual) != expandBufGetLength(pReq)) { |
Ian Rogers | d9e4e0c | 2014-01-23 20:11:40 -0800 | [diff] [blame] | 179 | PLOG(ERROR) << StringPrintf("Failed to send JDWP packet to debugger (%zd of %zu)", |
Elliott Hughes | 68a5e3c | 2013-04-17 17:13:35 -0700 | [diff] [blame] | 180 | actual, expandBufGetLength(pReq)); |
| 181 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 182 | } |
| 183 | |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 184 | /* |
| 185 | * Get the next "request" serial number. We use this when sending |
| 186 | * packets to the debugger. |
| 187 | */ |
| 188 | uint32_t JdwpState::NextRequestSerial() { |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 189 | return request_serial_++; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 190 | } |
| 191 | |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 192 | /* |
| 193 | * Get the next "event" serial number. We use this in the response to |
| 194 | * message type EventRequest.Set. |
| 195 | */ |
| 196 | uint32_t JdwpState::NextEventSerial() { |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 197 | return event_serial_++; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 198 | } |
| 199 | |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 200 | JdwpState::JdwpState(const JdwpOptions* options) |
| 201 | : options_(options), |
jeffhao | 0dfbb7e | 2012-11-28 15:26:03 -0800 | [diff] [blame] | 202 | thread_start_lock_("JDWP thread start lock", kJdwpStartLock), |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 203 | thread_start_cond_("JDWP thread start condition variable", thread_start_lock_), |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 204 | pthread_(0), |
| 205 | thread_(NULL), |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 206 | debug_thread_started_(false), |
Elliott Hughes | a21039c | 2012-06-21 12:09:25 -0700 | [diff] [blame] | 207 | debug_thread_id_(0), |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 208 | run(false), |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 209 | netState(NULL), |
jeffhao | 0dfbb7e | 2012-11-28 15:26:03 -0800 | [diff] [blame] | 210 | attach_lock_("JDWP attach lock", kJdwpAttachLock), |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 211 | attach_cond_("JDWP attach condition variable", attach_lock_), |
Elliott Hughes | a21039c | 2012-06-21 12:09:25 -0700 | [diff] [blame] | 212 | last_activity_time_ms_(0), |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 213 | request_serial_(0x10000000), |
| 214 | event_serial_(0x20000000), |
jeffhao | a77f0f6 | 2012-12-05 17:19:31 -0800 | [diff] [blame] | 215 | event_list_lock_("JDWP event list lock", kJdwpEventListLock), |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 216 | event_list_(NULL), |
| 217 | event_list_size_(0), |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 218 | event_thread_lock_("JDWP event thread lock"), |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 219 | event_thread_cond_("JDWP event thread condition variable", event_thread_lock_), |
Elliott Hughes | a21039c | 2012-06-21 12:09:25 -0700 | [diff] [blame] | 220 | event_thread_id_(0), |
Sebastien Hertz | 99660e1 | 2014-02-19 15:04:42 +0100 | [diff] [blame] | 221 | process_request_lock_("JDWP process request lock"), |
| 222 | process_request_cond_("JDWP process request condition variable", process_request_lock_), |
| 223 | processing_request_(false), |
Elliott Hughes | 64f574f | 2013-02-20 14:57:12 -0800 | [diff] [blame] | 224 | ddm_is_active_(false), |
| 225 | should_exit_(false), |
| 226 | exit_status_(0) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 227 | } |
| 228 | |
| 229 | /* |
| 230 | * Initialize JDWP. |
| 231 | * |
| 232 | * Does not return until JDWP thread is running, but may return before |
| 233 | * the thread is accepting network connections. |
| 234 | */ |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 235 | JdwpState* JdwpState::Create(const JdwpOptions* options) { |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 236 | Thread* self = Thread::Current(); |
| 237 | Locks::mutator_lock_->AssertNotHeld(self); |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 238 | UniquePtr<JdwpState> state(new JdwpState(options)); |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 239 | switch (options->transport) { |
Sebastien Hertz | bb5c355 | 2014-04-14 14:38:24 +0200 | [diff] [blame^] | 240 | case kJdwpTransportSocket: |
| 241 | InitSocketTransport(state.get(), options); |
| 242 | break; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 243 | #ifdef HAVE_ANDROID_OS |
Sebastien Hertz | bb5c355 | 2014-04-14 14:38:24 +0200 | [diff] [blame^] | 244 | case kJdwpTransportAndroidAdb: |
| 245 | InitAdbTransport(state.get(), options); |
| 246 | break; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 247 | #endif |
Sebastien Hertz | bb5c355 | 2014-04-14 14:38:24 +0200 | [diff] [blame^] | 248 | default: |
| 249 | LOG(FATAL) << "Unknown transport: " << options->transport; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 250 | } |
| 251 | |
Sebastien Hertz | bb5c355 | 2014-04-14 14:38:24 +0200 | [diff] [blame^] | 252 | { |
Jeff Hao | add037d | 2013-07-15 14:24:14 -0700 | [diff] [blame] | 253 | /* |
| 254 | * Grab a mutex before starting the thread. This ensures they |
| 255 | * won't signal the cond var before we're waiting. |
| 256 | */ |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 257 | MutexLock thread_start_locker(self, state->thread_start_lock_); |
Sebastien Hertz | bb5c355 | 2014-04-14 14:38:24 +0200 | [diff] [blame^] | 258 | |
Jeff Hao | add037d | 2013-07-15 14:24:14 -0700 | [diff] [blame] | 259 | /* |
| 260 | * We have bound to a port, or are trying to connect outbound to a |
| 261 | * debugger. Create the JDWP thread and let it continue the mission. |
| 262 | */ |
Sebastien Hertz | bb5c355 | 2014-04-14 14:38:24 +0200 | [diff] [blame^] | 263 | CHECK_PTHREAD_CALL(pthread_create, (&state->pthread_, nullptr, StartJdwpThread, state.get()), |
| 264 | "JDWP thread"); |
Jeff Hao | add037d | 2013-07-15 14:24:14 -0700 | [diff] [blame] | 265 | |
| 266 | /* |
| 267 | * Wait until the thread finishes basic initialization. |
Jeff Hao | add037d | 2013-07-15 14:24:14 -0700 | [diff] [blame] | 268 | */ |
Sebastien Hertz | bb5c355 | 2014-04-14 14:38:24 +0200 | [diff] [blame^] | 269 | while (!state->debug_thread_started_) { |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 270 | state->thread_start_cond_.Wait(self); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 271 | } |
Sebastien Hertz | bb5c355 | 2014-04-14 14:38:24 +0200 | [diff] [blame^] | 272 | } |
Jeff Hao | add037d | 2013-07-15 14:24:14 -0700 | [diff] [blame] | 273 | |
Sebastien Hertz | bb5c355 | 2014-04-14 14:38:24 +0200 | [diff] [blame^] | 274 | if (options->suspend) { |
Jeff Hao | add037d | 2013-07-15 14:24:14 -0700 | [diff] [blame] | 275 | /* |
| 276 | * For suspend=y, wait for the debugger to connect to us or for us to |
| 277 | * connect to the debugger. |
| 278 | * |
| 279 | * The JDWP thread will signal us when it connects successfully or |
| 280 | * times out (for timeout=xxx), so we have to check to see what happened |
| 281 | * when we wake up. |
| 282 | */ |
| 283 | { |
| 284 | ScopedThreadStateChange tsc(self, kWaitingForDebuggerToAttach); |
| 285 | MutexLock attach_locker(self, state->attach_lock_); |
| 286 | state->attach_cond_.Wait(self); |
| 287 | } |
| 288 | if (!state->IsActive()) { |
| 289 | LOG(ERROR) << "JDWP connection failed"; |
| 290 | return NULL; |
| 291 | } |
| 292 | |
| 293 | LOG(INFO) << "JDWP connected"; |
| 294 | |
| 295 | /* |
| 296 | * Ordinarily we would pause briefly to allow the debugger to set |
| 297 | * breakpoints and so on, but for "suspend=y" the VM init code will |
| 298 | * pause the VM when it sends the VM_START message. |
| 299 | */ |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 300 | } |
| 301 | |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 302 | return state.release(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 303 | } |
| 304 | |
| 305 | /* |
| 306 | * Reset all session-related state. There should not be an active connection |
| 307 | * to the client at this point. The rest of the VM still thinks there is |
| 308 | * a debugger attached. |
| 309 | * |
| 310 | * This includes freeing up the debugger event list. |
| 311 | */ |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 312 | void JdwpState::ResetState() { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 313 | /* could reset the serial numbers, but no need to */ |
| 314 | |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 315 | UnregisterAll(); |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 316 | { |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 317 | MutexLock mu(Thread::Current(), event_list_lock_); |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 318 | CHECK(event_list_ == NULL); |
| 319 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 320 | |
| 321 | /* |
| 322 | * Should not have one of these in progress. If the debugger went away |
| 323 | * mid-request, though, we could see this. |
| 324 | */ |
Elliott Hughes | a21039c | 2012-06-21 12:09:25 -0700 | [diff] [blame] | 325 | if (event_thread_id_ != 0) { |
Elliott Hughes | 3d30d9b | 2011-12-07 17:35:48 -0800 | [diff] [blame] | 326 | LOG(WARNING) << "Resetting state while event in progress"; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 327 | DCHECK(false); |
| 328 | } |
| 329 | } |
| 330 | |
| 331 | /* |
| 332 | * Tell the JDWP thread to shut down. Frees "state". |
| 333 | */ |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 334 | JdwpState::~JdwpState() { |
Elliott Hughes | 5d10a87 | 2013-04-17 19:26:43 -0700 | [diff] [blame] | 335 | if (netState != NULL) { |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 336 | if (IsConnected()) { |
| 337 | PostVMDeath(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 338 | } |
| 339 | |
| 340 | /* |
| 341 | * Close down the network to inspire the thread to halt. |
| 342 | */ |
Elliott Hughes | 0cc1bbd | 2012-01-12 12:27:08 -0800 | [diff] [blame] | 343 | VLOG(jdwp) << "JDWP shutting down net..."; |
Elliott Hughes | 5d10a87 | 2013-04-17 19:26:43 -0700 | [diff] [blame] | 344 | netState->Shutdown(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 345 | |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 346 | if (debug_thread_started_) { |
| 347 | run = false; |
| 348 | void* threadReturn; |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 349 | if (pthread_join(pthread_, &threadReturn) != 0) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 350 | LOG(WARNING) << "JDWP thread join failed"; |
| 351 | } |
| 352 | } |
| 353 | |
Elliott Hughes | 0cc1bbd | 2012-01-12 12:27:08 -0800 | [diff] [blame] | 354 | VLOG(jdwp) << "JDWP freeing netstate..."; |
Elliott Hughes | 5d10a87 | 2013-04-17 19:26:43 -0700 | [diff] [blame] | 355 | delete netState; |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 356 | netState = NULL; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 357 | } |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 358 | CHECK(netState == NULL); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 359 | |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 360 | ResetState(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 361 | } |
| 362 | |
| 363 | /* |
| 364 | * Are we talking to a debugger? |
| 365 | */ |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 366 | bool JdwpState::IsActive() { |
| 367 | return IsConnected(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 368 | } |
| 369 | |
Elliott Hughes | cb69306 | 2013-02-21 09:48:08 -0800 | [diff] [blame] | 370 | // Returns "false" if we encounter a connection-fatal error. |
| 371 | bool JdwpState::HandlePacket() { |
| 372 | JdwpNetStateBase* netStateBase = reinterpret_cast<JdwpNetStateBase*>(netState); |
Elliott Hughes | 5d10a87 | 2013-04-17 19:26:43 -0700 | [diff] [blame] | 373 | JDWP::Request request(netStateBase->input_buffer_, netStateBase->input_count_); |
Elliott Hughes | cb69306 | 2013-02-21 09:48:08 -0800 | [diff] [blame] | 374 | |
| 375 | ExpandBuf* pReply = expandBufAlloc(); |
Sebastien Hertz | 43c8d72 | 2014-03-18 12:19:52 +0100 | [diff] [blame] | 376 | size_t replyLength = ProcessRequest(request, pReply); |
| 377 | ssize_t cc = netStateBase->WritePacket(pReply, replyLength); |
Sebastien Hertz | 400a3a9 | 2014-02-24 14:56:21 +0100 | [diff] [blame] | 378 | |
| 379 | /* |
| 380 | * We processed this request and sent its reply. Notify other threads waiting for us they can now |
| 381 | * send events. |
| 382 | */ |
Sebastien Hertz | 99660e1 | 2014-02-19 15:04:42 +0100 | [diff] [blame] | 383 | EndProcessingRequest(); |
| 384 | |
Sebastien Hertz | 43c8d72 | 2014-03-18 12:19:52 +0100 | [diff] [blame] | 385 | if (cc != static_cast<ssize_t>(replyLength)) { |
Elliott Hughes | cb69306 | 2013-02-21 09:48:08 -0800 | [diff] [blame] | 386 | PLOG(ERROR) << "Failed sending reply to debugger"; |
| 387 | expandBufFree(pReply); |
| 388 | return false; |
| 389 | } |
| 390 | expandBufFree(pReply); |
| 391 | netStateBase->ConsumeBytes(request.GetLength()); |
| 392 | return true; |
| 393 | } |
| 394 | |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 395 | /* |
| 396 | * Entry point for JDWP thread. The thread was created through the VM |
| 397 | * mechanisms, so there is a java/lang/Thread associated with us. |
| 398 | */ |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 399 | static void* StartJdwpThread(void* arg) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 400 | JdwpState* state = reinterpret_cast<JdwpState*>(arg); |
| 401 | CHECK(state != NULL); |
| 402 | |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 403 | state->Run(); |
| 404 | return NULL; |
| 405 | } |
| 406 | |
| 407 | void JdwpState::Run() { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 408 | Runtime* runtime = Runtime::Current(); |
Mathieu Chartier | 664bebf | 2012-11-12 16:54:11 -0800 | [diff] [blame] | 409 | CHECK(runtime->AttachCurrentThread("JDWP", true, runtime->GetSystemThreadGroup(), |
| 410 | !runtime->IsCompiler())); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 411 | |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 412 | VLOG(jdwp) << "JDWP: thread running"; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 413 | |
| 414 | /* |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 415 | * Finish initializing, then notify the creating thread that |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 416 | * we're running. |
| 417 | */ |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 418 | thread_ = Thread::Current(); |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 419 | run = true; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 420 | |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 421 | { |
| 422 | MutexLock locker(thread_, thread_start_lock_); |
| 423 | debug_thread_started_ = true; |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 424 | thread_start_cond_.Broadcast(thread_); |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 425 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 426 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 427 | /* set the thread state to kWaitingInMainDebuggerLoop so GCs don't wait for us */ |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 428 | CHECK_EQ(thread_->GetState(), kNative); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 429 | Locks::mutator_lock_->AssertNotHeld(thread_); |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 430 | thread_->SetState(kWaitingInMainDebuggerLoop); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 431 | |
| 432 | /* |
| 433 | * Loop forever if we're in server mode, processing connections. In |
| 434 | * non-server mode, we bail out of the thread when the debugger drops |
| 435 | * us. |
| 436 | * |
| 437 | * We broadcast a notification when a debugger attaches, after we |
| 438 | * successfully process the handshake. |
| 439 | */ |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 440 | while (run) { |
| 441 | if (options_->server) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 442 | /* |
| 443 | * Block forever, waiting for a connection. To support the |
| 444 | * "timeout=xxx" option we'll need to tweak this. |
| 445 | */ |
Elliott Hughes | 5d10a87 | 2013-04-17 19:26:43 -0700 | [diff] [blame] | 446 | if (!netState->Accept()) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 447 | break; |
| 448 | } |
| 449 | } else { |
| 450 | /* |
| 451 | * If we're not acting as a server, we need to connect out to the |
| 452 | * debugger. To support the "timeout=xxx" option we need to |
| 453 | * have a timeout if the handshake reply isn't received in a |
| 454 | * reasonable amount of time. |
| 455 | */ |
Elliott Hughes | 5d10a87 | 2013-04-17 19:26:43 -0700 | [diff] [blame] | 456 | if (!netState->Establish(options_)) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 457 | /* wake anybody who was waiting for us to succeed */ |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 458 | MutexLock mu(thread_, attach_lock_); |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 459 | attach_cond_.Broadcast(thread_); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 460 | break; |
| 461 | } |
| 462 | } |
| 463 | |
| 464 | /* prep debug code to handle the new connection */ |
| 465 | Dbg::Connected(); |
| 466 | |
| 467 | /* process requests until the debugger drops */ |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 468 | bool first = true; |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 469 | while (!Dbg::IsDisposed()) { |
Sebastien Hertz | bb5c355 | 2014-04-14 14:38:24 +0200 | [diff] [blame^] | 470 | // sanity check -- shouldn't happen? |
| 471 | CHECK_EQ(thread_->GetState(), kWaitingInMainDebuggerLoop); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 472 | |
Elliott Hughes | 5d10a87 | 2013-04-17 19:26:43 -0700 | [diff] [blame] | 473 | if (!netState->ProcessIncoming()) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 474 | /* blocking read */ |
| 475 | break; |
| 476 | } |
| 477 | |
Elliott Hughes | 64f574f | 2013-02-20 14:57:12 -0800 | [diff] [blame] | 478 | if (should_exit_) { |
| 479 | exit(exit_status_); |
| 480 | } |
| 481 | |
Elliott Hughes | 68a5e3c | 2013-04-17 17:13:35 -0700 | [diff] [blame] | 482 | if (first && !netState->IsAwaitingHandshake()) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 483 | /* handshake worked, tell the interpreter that we're active */ |
| 484 | first = false; |
| 485 | |
| 486 | /* set thread ID; requires object registry to be active */ |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 487 | { |
| 488 | ScopedObjectAccess soa(thread_); |
| 489 | debug_thread_id_ = Dbg::GetThreadSelfId(); |
| 490 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 491 | |
| 492 | /* wake anybody who's waiting for us */ |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 493 | MutexLock mu(thread_, attach_lock_); |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 494 | attach_cond_.Broadcast(thread_); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 495 | } |
| 496 | } |
| 497 | |
Elliott Hughes | 68a5e3c | 2013-04-17 17:13:35 -0700 | [diff] [blame] | 498 | netState->Close(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 499 | |
Elliott Hughes | a21039c | 2012-06-21 12:09:25 -0700 | [diff] [blame] | 500 | if (ddm_is_active_) { |
| 501 | ddm_is_active_ = false; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 502 | |
| 503 | /* broadcast the disconnect; must be in RUNNING state */ |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 504 | thread_->TransitionFromSuspendedToRunnable(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 505 | Dbg::DdmDisconnected(); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 506 | thread_->TransitionFromRunnableToSuspended(kWaitingInMainDebuggerLoop); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 507 | } |
| 508 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 509 | { |
| 510 | ScopedObjectAccess soa(thread_); |
Elliott Hughes | 0f82716 | 2013-02-26 12:12:58 -0800 | [diff] [blame] | 511 | |
| 512 | // Release session state, e.g. remove breakpoint instructions. |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 513 | ResetState(); |
| 514 | } |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 515 | // Tell the rest of the runtime that the debugger is no longer around. |
| 516 | Dbg::Disconnected(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 517 | |
| 518 | /* if we had threads suspended, resume them now */ |
| 519 | Dbg::UndoDebuggerSuspensions(); |
| 520 | |
| 521 | /* if we connected out, this was a one-shot deal */ |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 522 | if (!options_->server) { |
| 523 | run = false; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 524 | } |
| 525 | } |
| 526 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 527 | /* back to native, for thread shutdown */ |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 528 | CHECK_EQ(thread_->GetState(), kWaitingInMainDebuggerLoop); |
| 529 | thread_->SetState(kNative); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 530 | |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 531 | VLOG(jdwp) << "JDWP: thread detaching and exiting..."; |
Elliott Hughes | 6ba581a | 2011-10-25 11:45:35 -0700 | [diff] [blame] | 532 | runtime->DetachCurrentThread(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 533 | } |
| 534 | |
Elliott Hughes | a21039c | 2012-06-21 12:09:25 -0700 | [diff] [blame] | 535 | void JdwpState::NotifyDdmsActive() { |
| 536 | if (!ddm_is_active_) { |
| 537 | ddm_is_active_ = true; |
| 538 | Dbg::DdmConnected(); |
| 539 | } |
| 540 | } |
| 541 | |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 542 | Thread* JdwpState::GetDebugThread() { |
| 543 | return thread_; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 544 | } |
| 545 | |
| 546 | /* |
| 547 | * Support routines for waitForDebugger(). |
| 548 | * |
| 549 | * We can't have a trivial "waitForDebugger" function that returns the |
| 550 | * instant the debugger connects, because we run the risk of executing code |
| 551 | * before the debugger has had a chance to configure breakpoints or issue |
| 552 | * suspend calls. It would be nice to just sit in the suspended state, but |
| 553 | * most debuggers don't expect any threads to be suspended when they attach. |
| 554 | * |
| 555 | * There's no JDWP event we can post to tell the debugger, "we've stopped, |
| 556 | * and we like it that way". We could send a fake breakpoint, which should |
| 557 | * cause the debugger to immediately send a resume, but the debugger might |
| 558 | * send the resume immediately or might throw an exception of its own upon |
| 559 | * receiving a breakpoint event that it didn't ask for. |
| 560 | * |
| 561 | * What we really want is a "wait until the debugger is done configuring |
| 562 | * stuff" event. We can approximate this with a "wait until the debugger |
| 563 | * has been idle for a brief period". |
| 564 | */ |
| 565 | |
| 566 | /* |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 567 | * Return the time, in milliseconds, since the last debugger activity. |
| 568 | * |
| 569 | * Returns -1 if no debugger is attached, or 0 if we're in the middle of |
| 570 | * processing a debugger request. |
| 571 | */ |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 572 | int64_t JdwpState::LastDebuggerActivity() { |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 573 | if (!Dbg::IsDebuggerActive()) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 574 | LOG(DEBUG) << "no active debugger"; |
| 575 | return -1; |
| 576 | } |
| 577 | |
Elliott Hughes | a21039c | 2012-06-21 12:09:25 -0700 | [diff] [blame] | 578 | int64_t last = QuasiAtomic::Read64(&last_activity_time_ms_); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 579 | |
| 580 | /* initializing or in the middle of something? */ |
| 581 | if (last == 0) { |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 582 | VLOG(jdwp) << "+++ last=busy"; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 583 | return 0; |
| 584 | } |
| 585 | |
| 586 | /* now get the current time */ |
Elliott Hughes | 7162ad9 | 2011-10-27 14:08:42 -0700 | [diff] [blame] | 587 | int64_t now = MilliTime(); |
Elliott Hughes | c3b3e75 | 2012-01-27 13:48:50 -0800 | [diff] [blame] | 588 | CHECK_GE(now, last); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 589 | |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 590 | VLOG(jdwp) << "+++ debugger interval=" << (now - last); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 591 | return now - last; |
| 592 | } |
| 593 | |
Elliott Hughes | 64f574f | 2013-02-20 14:57:12 -0800 | [diff] [blame] | 594 | void JdwpState::ExitAfterReplying(int exit_status) { |
| 595 | LOG(WARNING) << "Debugger told VM to exit with status " << exit_status; |
| 596 | should_exit_ = true; |
| 597 | exit_status_ = exit_status; |
| 598 | } |
| 599 | |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 600 | std::ostream& operator<<(std::ostream& os, const JdwpLocation& rhs) { |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 601 | os << "JdwpLocation[" |
Elliott Hughes | a96836a | 2013-01-17 12:27:49 -0800 | [diff] [blame] | 602 | << Dbg::GetClassName(rhs.class_id) << "." << Dbg::GetMethodName(rhs.method_id) |
Ian Rogers | d9e4e0c | 2014-01-23 20:11:40 -0800 | [diff] [blame] | 603 | << "@" << StringPrintf("%#" PRIx64, rhs.dex_pc) << " " << rhs.type_tag << "]"; |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 604 | return os; |
| 605 | } |
| 606 | |
Elliott Hughes | 2aa2e39 | 2012-02-17 17:15:43 -0800 | [diff] [blame] | 607 | bool operator==(const JdwpLocation& lhs, const JdwpLocation& rhs) { |
Elliott Hughes | 7484741 | 2012-06-20 18:10:21 -0700 | [diff] [blame] | 608 | return lhs.dex_pc == rhs.dex_pc && lhs.method_id == rhs.method_id && |
| 609 | lhs.class_id == rhs.class_id && lhs.type_tag == rhs.type_tag; |
Elliott Hughes | 2aa2e39 | 2012-02-17 17:15:43 -0800 | [diff] [blame] | 610 | } |
| 611 | |
| 612 | bool operator!=(const JdwpLocation& lhs, const JdwpLocation& rhs) { |
| 613 | return !(lhs == rhs); |
| 614 | } |
| 615 | |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 616 | } // namespace JDWP |
| 617 | |
| 618 | } // namespace art |