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 | */ |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 16 | |
Elliott Hughes | 07ed66b | 2012-12-12 18:34:25 -0800 | [diff] [blame] | 17 | #include "jdwp/jdwp_event.h" |
| 18 | |
| 19 | #include <stddef.h> /* for offsetof() */ |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 20 | #include <stdlib.h> |
| 21 | #include <string.h> |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 22 | #include <unistd.h> |
| 23 | |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 24 | #include "art_field-inl.h" |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame^] | 25 | #include "art_method-inl.h" |
Elliott Hughes | 07ed66b | 2012-12-12 18:34:25 -0800 | [diff] [blame] | 26 | #include "base/logging.h" |
Elliott Hughes | e222ee0 | 2012-12-13 14:41:43 -0800 | [diff] [blame] | 27 | #include "base/stringprintf.h" |
Elliott Hughes | 07ed66b | 2012-12-12 18:34:25 -0800 | [diff] [blame] | 28 | #include "debugger.h" |
| 29 | #include "jdwp/jdwp_constants.h" |
| 30 | #include "jdwp/jdwp_expand_buf.h" |
Elliott Hughes | 07ed66b | 2012-12-12 18:34:25 -0800 | [diff] [blame] | 31 | #include "jdwp/jdwp_priv.h" |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 32 | #include "jdwp/object_registry.h" |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 33 | #include "scoped_thread_state_change.h" |
Ian Rogers | 693ff61 | 2013-02-01 10:56:12 -0800 | [diff] [blame] | 34 | #include "thread-inl.h" |
Elliott Hughes | 07ed66b | 2012-12-12 18:34:25 -0800 | [diff] [blame] | 35 | |
Sebastien Hertz | 261bc04 | 2015-04-08 09:36:07 +0200 | [diff] [blame] | 36 | #include "handle_scope-inl.h" |
| 37 | |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 38 | /* |
| 39 | General notes: |
| 40 | |
| 41 | The event add/remove stuff usually happens from the debugger thread, |
| 42 | in response to requests from the debugger, but can also happen as the |
| 43 | result of an event in an arbitrary thread (e.g. an event with a "count" |
| 44 | mod expires). It's important to keep the event list locked when processing |
| 45 | events. |
| 46 | |
| 47 | Event posting can happen from any thread. The JDWP thread will not usually |
| 48 | post anything but VM start/death, but if a JDWP request causes a class |
| 49 | to be loaded, the ClassPrepare event will come from the JDWP thread. |
| 50 | |
| 51 | |
| 52 | We can have serialization issues when we post an event to the debugger. |
| 53 | For example, a thread could send an "I hit a breakpoint and am suspending |
| 54 | myself" message to the debugger. Before it manages to suspend itself, the |
| 55 | debugger's response ("not interested, resume thread") arrives and is |
| 56 | processed. We try to resume a thread that hasn't yet suspended. |
| 57 | |
| 58 | This means that, after posting an event to the debugger, we need to wait |
| 59 | for the event thread to suspend itself (and, potentially, all other threads) |
| 60 | before processing any additional requests from the debugger. While doing |
| 61 | so we need to be aware that multiple threads may be hitting breakpoints |
| 62 | or other events simultaneously, so we either need to wait for all of them |
| 63 | or serialize the events with each other. |
| 64 | |
| 65 | The current mechanism works like this: |
| 66 | Event thread: |
| 67 | - If I'm going to suspend, grab the "I am posting an event" token. Wait |
| 68 | for it if it's not currently available. |
| 69 | - Post the event to the debugger. |
| 70 | - If appropriate, suspend others and then myself. As part of suspending |
| 71 | myself, release the "I am posting" token. |
| 72 | JDWP thread: |
| 73 | - When an event arrives, see if somebody is posting an event. If so, |
| 74 | sleep until we can acquire the "I am posting an event" token. Release |
| 75 | it immediately and continue processing -- the event we have already |
| 76 | received should not interfere with other events that haven't yet |
| 77 | been posted. |
| 78 | |
| 79 | Some care must be taken to avoid deadlock: |
| 80 | |
| 81 | - thread A and thread B exit near-simultaneously, and post thread-death |
| 82 | events with a "suspend all" clause |
| 83 | - thread A gets the event token, thread B sits and waits for it |
| 84 | - thread A wants to suspend all other threads, but thread B is waiting |
| 85 | for the token and can't be suspended |
| 86 | |
| 87 | So we need to mark thread B in such a way that thread A doesn't wait for it. |
| 88 | |
| 89 | If we just bracket the "grab event token" call with a change to VMWAIT |
| 90 | before sleeping, the switch back to RUNNING state when we get the token |
| 91 | will cause thread B to suspend (remember, thread A's global suspend is |
| 92 | still in force, even after it releases the token). Suspending while |
| 93 | holding the event token is very bad, because it prevents the JDWP thread |
| 94 | from processing incoming messages. |
| 95 | |
| 96 | We need to change to VMWAIT state at the *start* of posting an event, |
| 97 | and stay there until we either finish posting the event or decide to |
| 98 | put ourselves to sleep. That way we don't interfere with anyone else and |
| 99 | don't allow anyone else to interfere with us. |
| 100 | */ |
| 101 | |
| 102 | |
| 103 | #define kJdwpEventCommandSet 64 |
| 104 | #define kJdwpCompositeCommand 100 |
| 105 | |
| 106 | namespace art { |
| 107 | |
| 108 | namespace JDWP { |
| 109 | |
| 110 | /* |
| 111 | * Stuff to compare against when deciding if a mod matches. Only the |
| 112 | * values for mods valid for the event being evaluated will be filled in. |
| 113 | * The rest will be zeroed. |
Sebastien Hertz | 261bc04 | 2015-04-08 09:36:07 +0200 | [diff] [blame] | 114 | * Must be allocated on the stack only. This is enforced by removing the |
| 115 | * operator new. |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 116 | */ |
| 117 | struct ModBasket { |
Sebastien Hertz | 261bc04 | 2015-04-08 09:36:07 +0200 | [diff] [blame] | 118 | explicit ModBasket(Thread* self) |
| 119 | : hs(self), pLoc(nullptr), thread(self), |
| 120 | locationClass(hs.NewHandle<mirror::Class>(nullptr)), |
| 121 | exceptionClass(hs.NewHandle<mirror::Class>(nullptr)), |
| 122 | caught(false), |
| 123 | field(nullptr), |
| 124 | thisPtr(hs.NewHandle<mirror::Object>(nullptr)) { } |
jeffhao | 162fd33 | 2013-01-08 16:21:01 -0800 | [diff] [blame] | 125 | |
Sebastien Hertz | 261bc04 | 2015-04-08 09:36:07 +0200 | [diff] [blame] | 126 | StackHandleScope<3> hs; |
| 127 | const EventLocation* pLoc; /* LocationOnly */ |
| 128 | std::string className; /* ClassMatch/ClassExclude */ |
| 129 | Thread* const thread; /* ThreadOnly */ |
| 130 | MutableHandle<mirror::Class> locationClass; /* ClassOnly */ |
| 131 | MutableHandle<mirror::Class> exceptionClass; /* ExceptionOnly */ |
| 132 | bool caught; /* ExceptionOnly */ |
| 133 | ArtField* field; /* FieldOnly */ |
| 134 | MutableHandle<mirror::Object> thisPtr; /* InstanceOnly */ |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 135 | /* nothing for StepOnly -- handled differently */ |
Sebastien Hertz | 261bc04 | 2015-04-08 09:36:07 +0200 | [diff] [blame] | 136 | |
| 137 | private: |
| 138 | DISALLOW_ALLOCATION(); // forbids allocation on the heap. |
| 139 | DISALLOW_IMPLICIT_CONSTRUCTORS(ModBasket); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 140 | }; |
| 141 | |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 142 | static bool NeedsFullDeoptimization(JdwpEventKind eventKind) { |
Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 143 | if (!Dbg::RequiresDeoptimization()) { |
| 144 | // We don't need deoptimization for debugging. |
| 145 | return false; |
| 146 | } |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 147 | switch (eventKind) { |
| 148 | case EK_METHOD_ENTRY: |
| 149 | case EK_METHOD_EXIT: |
| 150 | case EK_METHOD_EXIT_WITH_RETURN_VALUE: |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 151 | case EK_FIELD_ACCESS: |
| 152 | case EK_FIELD_MODIFICATION: |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 153 | return true; |
| 154 | default: |
| 155 | return false; |
| 156 | } |
| 157 | } |
| 158 | |
Sebastien Hertz | 9d6bf69 | 2015-04-10 12:12:33 +0200 | [diff] [blame] | 159 | // Returns the instrumentation event the DebugInstrumentationListener must |
| 160 | // listen to in order to properly report the given JDWP event to the debugger. |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 161 | static uint32_t GetInstrumentationEventFor(JdwpEventKind eventKind) { |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 162 | switch (eventKind) { |
| 163 | case EK_BREAKPOINT: |
| 164 | case EK_SINGLE_STEP: |
| 165 | return instrumentation::Instrumentation::kDexPcMoved; |
| 166 | case EK_EXCEPTION: |
| 167 | case EK_EXCEPTION_CATCH: |
| 168 | return instrumentation::Instrumentation::kExceptionCaught; |
| 169 | case EK_METHOD_ENTRY: |
| 170 | return instrumentation::Instrumentation::kMethodEntered; |
| 171 | case EK_METHOD_EXIT: |
| 172 | case EK_METHOD_EXIT_WITH_RETURN_VALUE: |
| 173 | return instrumentation::Instrumentation::kMethodExited; |
| 174 | case EK_FIELD_ACCESS: |
| 175 | return instrumentation::Instrumentation::kFieldRead; |
| 176 | case EK_FIELD_MODIFICATION: |
| 177 | return instrumentation::Instrumentation::kFieldWritten; |
| 178 | default: |
| 179 | return 0; |
| 180 | } |
| 181 | } |
| 182 | |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 183 | /* |
| 184 | * Add an event to the list. Ordering is not important. |
| 185 | * |
| 186 | * If something prevents the event from being registered, e.g. it's a |
| 187 | * single-step request on a thread that doesn't exist, the event will |
| 188 | * not be added to the list, and an appropriate error will be returned. |
| 189 | */ |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 190 | JdwpError JdwpState::RegisterEvent(JdwpEvent* pEvent) { |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 191 | CHECK(pEvent != nullptr); |
| 192 | CHECK(pEvent->prev == nullptr); |
| 193 | CHECK(pEvent->next == nullptr); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 194 | |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 195 | { |
| 196 | /* |
| 197 | * If one or more "break"-type mods are used, register them with |
| 198 | * the interpreter. |
| 199 | */ |
| 200 | DeoptimizationRequest req; |
| 201 | for (int i = 0; i < pEvent->modCount; i++) { |
| 202 | const JdwpEventMod* pMod = &pEvent->mods[i]; |
| 203 | if (pMod->modKind == MK_LOCATION_ONLY) { |
Sebastien Hertz | 033aabf | 2014-10-08 13:54:55 +0200 | [diff] [blame] | 204 | // Should only concern breakpoint, field access, field modification, step, and exception |
| 205 | // events. |
| 206 | // However breakpoint requires specific handling. Field access, field modification and step |
| 207 | // events need full deoptimization to be reported while exception event is reported during |
| 208 | // exception handling. |
| 209 | if (pEvent->eventKind == EK_BREAKPOINT) { |
| 210 | Dbg::WatchLocation(&pMod->locationOnly.loc, &req); |
| 211 | } |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 212 | } else if (pMod->modKind == MK_STEP) { |
| 213 | /* should only be for EK_SINGLE_STEP; should only be one */ |
| 214 | JdwpStepSize size = static_cast<JdwpStepSize>(pMod->step.size); |
| 215 | JdwpStepDepth depth = static_cast<JdwpStepDepth>(pMod->step.depth); |
| 216 | JdwpError status = Dbg::ConfigureStep(pMod->step.threadId, size, depth); |
| 217 | if (status != ERR_NONE) { |
| 218 | return status; |
| 219 | } |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 220 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 221 | } |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 222 | if (NeedsFullDeoptimization(pEvent->eventKind)) { |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 223 | CHECK_EQ(req.GetKind(), DeoptimizationRequest::kNothing); |
| 224 | CHECK(req.Method() == nullptr); |
| 225 | req.SetKind(DeoptimizationRequest::kFullDeoptimization); |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 226 | } |
| 227 | Dbg::RequestDeoptimization(req); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 228 | } |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 229 | uint32_t instrumentation_event = GetInstrumentationEventFor(pEvent->eventKind); |
| 230 | if (instrumentation_event != 0) { |
| 231 | DeoptimizationRequest req; |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 232 | req.SetKind(DeoptimizationRequest::kRegisterForEvent); |
| 233 | req.SetInstrumentationEvent(instrumentation_event); |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 234 | Dbg::RequestDeoptimization(req); |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 235 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 236 | |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 237 | { |
| 238 | /* |
| 239 | * Add to list. |
| 240 | */ |
| 241 | MutexLock mu(Thread::Current(), event_list_lock_); |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 242 | if (event_list_ != nullptr) { |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 243 | pEvent->next = event_list_; |
| 244 | event_list_->prev = pEvent; |
| 245 | } |
| 246 | event_list_ = pEvent; |
| 247 | ++event_list_size_; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 248 | } |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 249 | |
| 250 | Dbg::ManageDeoptimization(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 251 | |
| 252 | return ERR_NONE; |
| 253 | } |
| 254 | |
| 255 | /* |
| 256 | * Remove an event from the list. This will also remove the event from |
| 257 | * any optimization tables, e.g. breakpoints. |
| 258 | * |
| 259 | * Does not free the JdwpEvent. |
| 260 | * |
| 261 | * Grab the eventLock before calling here. |
| 262 | */ |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 263 | void JdwpState::UnregisterEvent(JdwpEvent* pEvent) { |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 264 | if (pEvent->prev == nullptr) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 265 | /* head of the list */ |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 266 | CHECK(event_list_ == pEvent); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 267 | |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 268 | event_list_ = pEvent->next; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 269 | } else { |
| 270 | pEvent->prev->next = pEvent->next; |
| 271 | } |
| 272 | |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 273 | if (pEvent->next != nullptr) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 274 | pEvent->next->prev = pEvent->prev; |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 275 | pEvent->next = nullptr; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 276 | } |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 277 | pEvent->prev = nullptr; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 278 | |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 279 | { |
| 280 | /* |
| 281 | * Unhook us from the interpreter, if necessary. |
| 282 | */ |
| 283 | DeoptimizationRequest req; |
| 284 | for (int i = 0; i < pEvent->modCount; i++) { |
| 285 | JdwpEventMod* pMod = &pEvent->mods[i]; |
| 286 | if (pMod->modKind == MK_LOCATION_ONLY) { |
Sebastien Hertz | 033aabf | 2014-10-08 13:54:55 +0200 | [diff] [blame] | 287 | // Like in RegisterEvent, we need specific handling for breakpoint only. |
| 288 | if (pEvent->eventKind == EK_BREAKPOINT) { |
| 289 | Dbg::UnwatchLocation(&pMod->locationOnly.loc, &req); |
| 290 | } |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 291 | } |
| 292 | if (pMod->modKind == MK_STEP) { |
| 293 | /* should only be for EK_SINGLE_STEP; should only be one */ |
| 294 | Dbg::UnconfigureStep(pMod->step.threadId); |
| 295 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 296 | } |
Daniel Mihalyi | eb07669 | 2014-08-22 17:33:31 +0200 | [diff] [blame] | 297 | if (NeedsFullDeoptimization(pEvent->eventKind)) { |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 298 | CHECK_EQ(req.GetKind(), DeoptimizationRequest::kNothing); |
| 299 | CHECK(req.Method() == nullptr); |
| 300 | req.SetKind(DeoptimizationRequest::kFullUndeoptimization); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 301 | } |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 302 | Dbg::RequestDeoptimization(req); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 303 | } |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 304 | uint32_t instrumentation_event = GetInstrumentationEventFor(pEvent->eventKind); |
| 305 | if (instrumentation_event != 0) { |
| 306 | DeoptimizationRequest req; |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 307 | req.SetKind(DeoptimizationRequest::kUnregisterForEvent); |
| 308 | req.SetInstrumentationEvent(instrumentation_event); |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 309 | Dbg::RequestDeoptimization(req); |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 310 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 311 | |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 312 | --event_list_size_; |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 313 | CHECK(event_list_size_ != 0 || event_list_ == nullptr); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 314 | } |
| 315 | |
| 316 | /* |
| 317 | * Remove the event with the given ID from the list. |
| 318 | * |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 319 | */ |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 320 | void JdwpState::UnregisterEventById(uint32_t requestId) { |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 321 | bool found = false; |
| 322 | { |
| 323 | MutexLock mu(Thread::Current(), event_list_lock_); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 324 | |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 325 | for (JdwpEvent* pEvent = event_list_; pEvent != nullptr; pEvent = pEvent->next) { |
| 326 | if (pEvent->requestId == requestId) { |
| 327 | found = true; |
| 328 | UnregisterEvent(pEvent); |
| 329 | EventFree(pEvent); |
| 330 | break; /* there can be only one with a given ID */ |
| 331 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 332 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 333 | } |
| 334 | |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 335 | if (found) { |
| 336 | Dbg::ManageDeoptimization(); |
| 337 | } else { |
Sebastien Hertz | f272af4 | 2014-09-18 10:20:42 +0200 | [diff] [blame] | 338 | // Failure to find the event isn't really an error. For instance, it looks like Eclipse will |
| 339 | // try to be extra careful and will explicitly remove one-off single-step events (using a |
| 340 | // 'count' event modifier of 1). So the event may have already been removed as part of the |
| 341 | // event notification (see JdwpState::CleanupMatchList). |
| 342 | VLOG(jdwp) << StringPrintf("No match when removing event reqId=0x%04x", requestId); |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 343 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 344 | } |
| 345 | |
| 346 | /* |
| 347 | * Remove all entries from the event list. |
| 348 | */ |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 349 | void JdwpState::UnregisterAll() { |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 350 | MutexLock mu(Thread::Current(), event_list_lock_); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 351 | |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 352 | JdwpEvent* pEvent = event_list_; |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 353 | while (pEvent != nullptr) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 354 | JdwpEvent* pNextEvent = pEvent->next; |
| 355 | |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 356 | UnregisterEvent(pEvent); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 357 | EventFree(pEvent); |
| 358 | pEvent = pNextEvent; |
| 359 | } |
| 360 | |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 361 | event_list_ = nullptr; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 362 | } |
| 363 | |
| 364 | /* |
| 365 | * Allocate a JdwpEvent struct with enough space to hold the specified |
| 366 | * number of mod records. |
| 367 | */ |
| 368 | JdwpEvent* EventAlloc(int numMods) { |
| 369 | JdwpEvent* newEvent; |
| 370 | int allocSize = offsetof(JdwpEvent, mods) + numMods * sizeof(newEvent->mods[0]); |
| 371 | newEvent = reinterpret_cast<JdwpEvent*>(malloc(allocSize)); |
| 372 | memset(newEvent, 0, allocSize); |
| 373 | return newEvent; |
| 374 | } |
| 375 | |
| 376 | /* |
| 377 | * Free a JdwpEvent. |
| 378 | * |
| 379 | * Do not call this until the event has been removed from the list. |
| 380 | */ |
| 381 | void EventFree(JdwpEvent* pEvent) { |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 382 | if (pEvent == nullptr) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 383 | return; |
| 384 | } |
| 385 | |
| 386 | /* make sure it was removed from the list */ |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 387 | CHECK(pEvent->prev == nullptr); |
| 388 | CHECK(pEvent->next == nullptr); |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 389 | /* want to check state->event_list_ != pEvent */ |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 390 | |
| 391 | /* |
| 392 | * Free any hairy bits in the mods. |
| 393 | */ |
| 394 | for (int i = 0; i < pEvent->modCount; i++) { |
| 395 | if (pEvent->mods[i].modKind == MK_CLASS_MATCH) { |
| 396 | free(pEvent->mods[i].classMatch.classPattern); |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 397 | pEvent->mods[i].classMatch.classPattern = nullptr; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 398 | } |
| 399 | if (pEvent->mods[i].modKind == MK_CLASS_EXCLUDE) { |
| 400 | free(pEvent->mods[i].classExclude.classPattern); |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 401 | pEvent->mods[i].classExclude.classPattern = nullptr; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 402 | } |
| 403 | } |
| 404 | |
| 405 | free(pEvent); |
| 406 | } |
| 407 | |
| 408 | /* |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 409 | * Run through the list and remove any entries with an expired "count" mod |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 410 | * from the event list. |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 411 | */ |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 412 | void JdwpState::CleanupMatchList(const std::vector<JdwpEvent*>& match_list) { |
| 413 | for (JdwpEvent* pEvent : match_list) { |
| 414 | for (int i = 0; i < pEvent->modCount; ++i) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 415 | if (pEvent->mods[i].modKind == MK_COUNT && pEvent->mods[i].count.count == 0) { |
Sebastien Hertz | bca0d3d | 2014-04-11 16:01:17 +0200 | [diff] [blame] | 416 | VLOG(jdwp) << StringPrintf("##### Removing expired event (requestId=%#" PRIx32 ")", |
| 417 | pEvent->requestId); |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 418 | UnregisterEvent(pEvent); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 419 | EventFree(pEvent); |
| 420 | break; |
| 421 | } |
| 422 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 423 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 424 | } |
| 425 | |
| 426 | /* |
| 427 | * Match a string against a "restricted regular expression", which is just |
| 428 | * a string that may start or end with '*' (e.g. "*.Foo" or "java.*"). |
| 429 | * |
| 430 | * ("Restricted name globbing" might have been a better term.) |
| 431 | */ |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 432 | static bool PatternMatch(const char* pattern, const std::string& target) { |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 433 | size_t patLen = strlen(pattern); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 434 | if (pattern[0] == '*') { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 435 | patLen--; |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 436 | if (target.size() < patLen) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 437 | return false; |
| 438 | } |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 439 | return strcmp(pattern+1, target.c_str() + (target.size()-patLen)) == 0; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 440 | } else if (pattern[patLen-1] == '*') { |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 441 | return strncmp(pattern, target.c_str(), patLen-1) == 0; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 442 | } else { |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 443 | return strcmp(pattern, target.c_str()) == 0; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 444 | } |
| 445 | } |
| 446 | |
| 447 | /* |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 448 | * See if the event's mods match up with the contents of "basket". |
| 449 | * |
| 450 | * If we find a Count mod before rejecting an event, we decrement it. We |
| 451 | * need to do this even if later mods cause us to ignore the event. |
| 452 | */ |
Sebastien Hertz | bca0d3d | 2014-04-11 16:01:17 +0200 | [diff] [blame] | 453 | static bool ModsMatch(JdwpEvent* pEvent, const ModBasket& basket) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 454 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 455 | JdwpEventMod* pMod = pEvent->mods; |
| 456 | |
| 457 | for (int i = pEvent->modCount; i > 0; i--, pMod++) { |
| 458 | switch (pMod->modKind) { |
| 459 | case MK_COUNT: |
| 460 | CHECK_GT(pMod->count.count, 0); |
| 461 | pMod->count.count--; |
Sebastien Hertz | 4320779 | 2014-04-15 16:03:27 +0200 | [diff] [blame] | 462 | if (pMod->count.count > 0) { |
| 463 | return false; |
| 464 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 465 | break; |
| 466 | case MK_CONDITIONAL: |
| 467 | CHECK(false); // should not be getting these |
| 468 | break; |
| 469 | case MK_THREAD_ONLY: |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 470 | if (!Dbg::MatchThread(pMod->threadOnly.threadId, basket.thread)) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 471 | return false; |
| 472 | } |
| 473 | break; |
| 474 | case MK_CLASS_ONLY: |
Sebastien Hertz | 261bc04 | 2015-04-08 09:36:07 +0200 | [diff] [blame] | 475 | if (!Dbg::MatchType(basket.locationClass.Get(), pMod->classOnly.refTypeId)) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 476 | return false; |
| 477 | } |
| 478 | break; |
| 479 | case MK_CLASS_MATCH: |
Sebastien Hertz | bca0d3d | 2014-04-11 16:01:17 +0200 | [diff] [blame] | 480 | if (!PatternMatch(pMod->classMatch.classPattern, basket.className)) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 481 | return false; |
| 482 | } |
| 483 | break; |
| 484 | case MK_CLASS_EXCLUDE: |
Sebastien Hertz | bca0d3d | 2014-04-11 16:01:17 +0200 | [diff] [blame] | 485 | if (PatternMatch(pMod->classMatch.classPattern, basket.className)) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 486 | return false; |
| 487 | } |
| 488 | break; |
| 489 | case MK_LOCATION_ONLY: |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 490 | if (!Dbg::MatchLocation(pMod->locationOnly.loc, *basket.pLoc)) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 491 | return false; |
| 492 | } |
| 493 | break; |
| 494 | case MK_EXCEPTION_ONLY: |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 495 | if (pMod->exceptionOnly.refTypeId != 0 && |
Sebastien Hertz | 261bc04 | 2015-04-08 09:36:07 +0200 | [diff] [blame] | 496 | !Dbg::MatchType(basket.exceptionClass.Get(), pMod->exceptionOnly.refTypeId)) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 497 | return false; |
| 498 | } |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 499 | if ((basket.caught && !pMod->exceptionOnly.caught) || |
| 500 | (!basket.caught && !pMod->exceptionOnly.uncaught)) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 501 | return false; |
| 502 | } |
| 503 | break; |
| 504 | case MK_FIELD_ONLY: |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 505 | if (!Dbg::MatchField(pMod->fieldOnly.refTypeId, pMod->fieldOnly.fieldId, basket.field)) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 506 | return false; |
| 507 | } |
| 508 | break; |
| 509 | case MK_STEP: |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 510 | if (!Dbg::MatchThread(pMod->step.threadId, basket.thread)) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 511 | return false; |
| 512 | } |
| 513 | break; |
| 514 | case MK_INSTANCE_ONLY: |
Sebastien Hertz | 261bc04 | 2015-04-08 09:36:07 +0200 | [diff] [blame] | 515 | if (!Dbg::MatchInstance(pMod->instanceOnly.objectId, basket.thisPtr.Get())) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 516 | return false; |
| 517 | } |
| 518 | break; |
| 519 | default: |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 520 | LOG(FATAL) << "unknown mod kind " << pMod->modKind; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 521 | break; |
| 522 | } |
| 523 | } |
| 524 | return true; |
| 525 | } |
| 526 | |
| 527 | /* |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 528 | * Find all events of type "event_kind" with mods that match up with the |
| 529 | * rest of the arguments while holding the event list lock. This method |
| 530 | * is used by FindMatchingEvents below. |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 531 | * |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 532 | * Found events are appended to "match_list" so this may be called multiple times for grouped |
| 533 | * events. |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 534 | * |
| 535 | * DO NOT call this multiple times for the same eventKind, as Count mods are |
| 536 | * decremented during the scan. |
| 537 | */ |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 538 | void JdwpState::FindMatchingEventsLocked(JdwpEventKind event_kind, const ModBasket& basket, |
| 539 | std::vector<JdwpEvent*>* match_list) { |
Sebastien Hertz | bca0d3d | 2014-04-11 16:01:17 +0200 | [diff] [blame] | 540 | for (JdwpEvent* pEvent = event_list_; pEvent != nullptr; pEvent = pEvent->next) { |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 541 | if (pEvent->eventKind == event_kind && ModsMatch(pEvent, basket)) { |
| 542 | match_list->push_back(pEvent); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 543 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 544 | } |
| 545 | } |
| 546 | |
| 547 | /* |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 548 | * Find all events of type "event_kind" with mods that match up with the |
| 549 | * rest of the arguments and return true if at least one event matches, |
| 550 | * false otherwise. |
| 551 | * |
| 552 | * Found events are appended to "match_list" so this may be called multiple |
| 553 | * times for grouped events. |
| 554 | * |
| 555 | * DO NOT call this multiple times for the same eventKind, as Count mods are |
| 556 | * decremented during the scan. |
| 557 | */ |
| 558 | bool JdwpState::FindMatchingEvents(JdwpEventKind event_kind, const ModBasket& basket, |
| 559 | std::vector<JdwpEvent*>* match_list) { |
| 560 | MutexLock mu(Thread::Current(), event_list_lock_); |
| 561 | match_list->reserve(event_list_size_); |
| 562 | FindMatchingEventsLocked(event_kind, basket, match_list); |
| 563 | return !match_list->empty(); |
| 564 | } |
| 565 | |
| 566 | /* |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 567 | * Scan through the list of matches and determine the most severe |
| 568 | * suspension policy. |
| 569 | */ |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 570 | static JdwpSuspendPolicy ScanSuspendPolicy(const std::vector<JdwpEvent*>& match_list) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 571 | JdwpSuspendPolicy policy = SP_NONE; |
| 572 | |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 573 | for (JdwpEvent* pEvent : match_list) { |
| 574 | if (pEvent->suspend_policy > policy) { |
| 575 | policy = pEvent->suspend_policy; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 576 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 577 | } |
| 578 | |
| 579 | return policy; |
| 580 | } |
| 581 | |
| 582 | /* |
| 583 | * Three possibilities: |
| 584 | * SP_NONE - do nothing |
| 585 | * SP_EVENT_THREAD - suspend ourselves |
| 586 | * SP_ALL - suspend everybody except JDWP support thread |
| 587 | */ |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 588 | void JdwpState::SuspendByPolicy(JdwpSuspendPolicy suspend_policy, JDWP::ObjectId thread_self_id) { |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 589 | VLOG(jdwp) << "SuspendByPolicy(" << suspend_policy << ")"; |
| 590 | if (suspend_policy == SP_NONE) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 591 | return; |
| 592 | } |
| 593 | |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 594 | if (suspend_policy == SP_ALL) { |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 595 | Dbg::SuspendVM(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 596 | } else { |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 597 | CHECK_EQ(suspend_policy, SP_EVENT_THREAD); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 598 | } |
| 599 | |
| 600 | /* this is rare but possible -- see CLASS_PREPARE handling */ |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 601 | if (thread_self_id == debug_thread_id_) { |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 602 | LOG(INFO) << "NOTE: SuspendByPolicy not suspending JDWP thread"; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 603 | return; |
| 604 | } |
| 605 | |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 606 | while (true) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 607 | Dbg::SuspendSelf(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 608 | |
| 609 | /* |
| 610 | * The JDWP thread has told us (and possibly all other threads) to |
| 611 | * resume. See if it has left anything in our DebugInvokeReq mailbox. |
| 612 | */ |
Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 613 | DebugInvokeReq* const pReq = Dbg::GetInvokeReq(); |
| 614 | if (pReq == nullptr) { |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 615 | /*LOGD("SuspendByPolicy: no invoke needed");*/ |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 616 | break; |
| 617 | } |
| 618 | |
| 619 | /* grab this before posting/suspending again */ |
Sebastien Hertz | 2bf93f4 | 2015-01-09 18:44:05 +0100 | [diff] [blame] | 620 | AcquireJdwpTokenForEvent(thread_self_id); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 621 | |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 622 | Dbg::ExecuteMethod(pReq); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 623 | } |
| 624 | } |
| 625 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 626 | void JdwpState::SendRequestAndPossiblySuspend(ExpandBuf* pReq, JdwpSuspendPolicy suspend_policy, |
| 627 | ObjectId threadId) { |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 628 | Thread* const self = Thread::Current(); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 629 | self->AssertThreadSuspensionIsAllowable(); |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 630 | CHECK(pReq != nullptr); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 631 | /* send request and possibly suspend ourselves */ |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 632 | JDWP::ObjectId thread_self_id = Dbg::GetThreadSelfId(); |
| 633 | self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSend); |
| 634 | if (suspend_policy != SP_NONE) { |
Sebastien Hertz | 2bf93f4 | 2015-01-09 18:44:05 +0100 | [diff] [blame] | 635 | AcquireJdwpTokenForEvent(threadId); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 636 | } |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 637 | EventFinish(pReq); |
Sebastien Hertz | 813b960 | 2015-02-24 14:56:59 +0100 | [diff] [blame] | 638 | { |
| 639 | // Before suspending, we change our state to kSuspended so the debugger sees us as RUNNING. |
| 640 | ScopedThreadStateChange stsc(self, kSuspended); |
| 641 | SuspendByPolicy(suspend_policy, thread_self_id); |
| 642 | } |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 643 | self->TransitionFromSuspendedToRunnable(); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 644 | } |
| 645 | |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 646 | /* |
| 647 | * Determine if there is a method invocation in progress in the current |
| 648 | * thread. |
| 649 | * |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 650 | * We look at the "invoke_needed" flag in the per-thread DebugInvokeReq |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 651 | * state. If set, we're in the process of invoking a method. |
| 652 | */ |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 653 | bool JdwpState::InvokeInProgress() { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 654 | DebugInvokeReq* pReq = Dbg::GetInvokeReq(); |
Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 655 | return pReq != nullptr; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 656 | } |
| 657 | |
Sebastien Hertz | 2bf93f4 | 2015-01-09 18:44:05 +0100 | [diff] [blame] | 658 | void JdwpState::AcquireJdwpTokenForCommand() { |
| 659 | CHECK_EQ(Thread::Current(), GetDebugThread()) << "Expected debugger thread"; |
| 660 | SetWaitForJdwpToken(debug_thread_id_); |
| 661 | } |
| 662 | |
| 663 | void JdwpState::ReleaseJdwpTokenForCommand() { |
| 664 | CHECK_EQ(Thread::Current(), GetDebugThread()) << "Expected debugger thread"; |
| 665 | ClearWaitForJdwpToken(); |
| 666 | } |
| 667 | |
| 668 | void JdwpState::AcquireJdwpTokenForEvent(ObjectId threadId) { |
| 669 | CHECK_NE(Thread::Current(), GetDebugThread()) << "Expected event thread"; |
| 670 | CHECK_NE(debug_thread_id_, threadId) << "Not expected debug thread"; |
| 671 | SetWaitForJdwpToken(threadId); |
| 672 | } |
| 673 | |
| 674 | void JdwpState::ReleaseJdwpTokenForEvent() { |
| 675 | CHECK_NE(Thread::Current(), GetDebugThread()) << "Expected event thread"; |
| 676 | ClearWaitForJdwpToken(); |
| 677 | } |
| 678 | |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 679 | /* |
| 680 | * We need the JDWP thread to hold off on doing stuff while we post an |
| 681 | * event and then suspend ourselves. |
| 682 | * |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 683 | * This could go to sleep waiting for another thread, so it's important |
| 684 | * that the thread be marked as VMWAIT before calling here. |
| 685 | */ |
Sebastien Hertz | 2bf93f4 | 2015-01-09 18:44:05 +0100 | [diff] [blame] | 686 | void JdwpState::SetWaitForJdwpToken(ObjectId threadId) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 687 | bool waited = false; |
Sebastien Hertz | 2bf93f4 | 2015-01-09 18:44:05 +0100 | [diff] [blame] | 688 | Thread* const self = Thread::Current(); |
| 689 | CHECK_NE(threadId, 0u); |
| 690 | CHECK_NE(self->GetState(), kRunnable); |
| 691 | Locks::mutator_lock_->AssertNotHeld(self); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 692 | |
| 693 | /* this is held for very brief periods; contention is unlikely */ |
Sebastien Hertz | 2bf93f4 | 2015-01-09 18:44:05 +0100 | [diff] [blame] | 694 | MutexLock mu(self, jdwp_token_lock_); |
| 695 | |
| 696 | CHECK_NE(jdwp_token_owner_thread_id_, threadId) << "Thread is already holding event thread lock"; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 697 | |
| 698 | /* |
| 699 | * If another thread is already doing stuff, wait for it. This can |
| 700 | * go to sleep indefinitely. |
| 701 | */ |
Sebastien Hertz | 2bf93f4 | 2015-01-09 18:44:05 +0100 | [diff] [blame] | 702 | while (jdwp_token_owner_thread_id_ != 0) { |
Ian Rogers | d9e4e0c | 2014-01-23 20:11:40 -0800 | [diff] [blame] | 703 | VLOG(jdwp) << StringPrintf("event in progress (%#" PRIx64 "), %#" PRIx64 " sleeping", |
Sebastien Hertz | 2bf93f4 | 2015-01-09 18:44:05 +0100 | [diff] [blame] | 704 | jdwp_token_owner_thread_id_, threadId); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 705 | waited = true; |
Sebastien Hertz | 2bf93f4 | 2015-01-09 18:44:05 +0100 | [diff] [blame] | 706 | jdwp_token_cond_.Wait(self); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 707 | } |
| 708 | |
Sebastien Hertz | 2bf93f4 | 2015-01-09 18:44:05 +0100 | [diff] [blame] | 709 | if (waited || threadId != debug_thread_id_) { |
Ian Rogers | d9e4e0c | 2014-01-23 20:11:40 -0800 | [diff] [blame] | 710 | VLOG(jdwp) << StringPrintf("event token grabbed (%#" PRIx64 ")", threadId); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 711 | } |
Sebastien Hertz | 2bf93f4 | 2015-01-09 18:44:05 +0100 | [diff] [blame] | 712 | jdwp_token_owner_thread_id_ = threadId; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 713 | } |
| 714 | |
| 715 | /* |
| 716 | * Clear the threadId and signal anybody waiting. |
| 717 | */ |
Sebastien Hertz | 2bf93f4 | 2015-01-09 18:44:05 +0100 | [diff] [blame] | 718 | void JdwpState::ClearWaitForJdwpToken() { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 719 | /* |
| 720 | * Grab the mutex. Don't try to go in/out of VMWAIT mode, as this |
Sebastien Hertz | 2bf93f4 | 2015-01-09 18:44:05 +0100 | [diff] [blame] | 721 | * function is called by Dbg::SuspendSelf(), and the transition back |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 722 | * to RUNNING would confuse it. |
| 723 | */ |
Sebastien Hertz | 2bf93f4 | 2015-01-09 18:44:05 +0100 | [diff] [blame] | 724 | Thread* const self = Thread::Current(); |
| 725 | MutexLock mu(self, jdwp_token_lock_); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 726 | |
Sebastien Hertz | 2bf93f4 | 2015-01-09 18:44:05 +0100 | [diff] [blame] | 727 | CHECK_NE(jdwp_token_owner_thread_id_, 0U); |
| 728 | VLOG(jdwp) << StringPrintf("cleared event token (%#" PRIx64 ")", jdwp_token_owner_thread_id_); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 729 | |
Sebastien Hertz | 2bf93f4 | 2015-01-09 18:44:05 +0100 | [diff] [blame] | 730 | jdwp_token_owner_thread_id_ = 0; |
| 731 | jdwp_token_cond_.Signal(self); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 732 | } |
| 733 | |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 734 | /* |
| 735 | * Prep an event. Allocates storage for the message and leaves space for |
| 736 | * the header. |
| 737 | */ |
| 738 | static ExpandBuf* eventPrep() { |
| 739 | ExpandBuf* pReq = expandBufAlloc(); |
| 740 | expandBufAddSpace(pReq, kJDWPHeaderLen); |
| 741 | return pReq; |
| 742 | } |
| 743 | |
| 744 | /* |
| 745 | * Write the header into the buffer and send the packet off to the debugger. |
| 746 | * |
| 747 | * Takes ownership of "pReq" (currently discards it). |
| 748 | */ |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 749 | void JdwpState::EventFinish(ExpandBuf* pReq) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 750 | uint8_t* buf = expandBufGetBuffer(pReq); |
| 751 | |
Elliott Hughes | f7c3b66 | 2011-10-27 12:04:56 -0700 | [diff] [blame] | 752 | Set4BE(buf, expandBufGetLength(pReq)); |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 753 | Set4BE(buf + 4, NextRequestSerial()); |
| 754 | Set1(buf + 8, 0); /* flags */ |
| 755 | Set1(buf + 9, kJdwpEventCommandSet); |
| 756 | Set1(buf + 10, kJdwpCompositeCommand); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 757 | |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 758 | SendRequest(pReq); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 759 | |
| 760 | expandBufFree(pReq); |
| 761 | } |
| 762 | |
| 763 | |
| 764 | /* |
| 765 | * Tell the debugger that we have finished initializing. This is always |
| 766 | * sent, even if the debugger hasn't requested it. |
| 767 | * |
| 768 | * This should be sent "before the main thread is started and before |
| 769 | * any application code has been executed". The thread ID in the message |
| 770 | * must be for the main thread. |
| 771 | */ |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 772 | void JdwpState::PostVMStart() { |
| 773 | JdwpSuspendPolicy suspend_policy = (options_->suspend) ? SP_ALL : SP_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 774 | ObjectId threadId = Dbg::GetThreadSelfId(); |
| 775 | |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 776 | VLOG(jdwp) << "EVENT: " << EK_VM_START; |
| 777 | VLOG(jdwp) << " suspend_policy=" << suspend_policy; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 778 | |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 779 | ExpandBuf* pReq = eventPrep(); |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 780 | expandBufAdd1(pReq, suspend_policy); |
| 781 | expandBufAdd4BE(pReq, 1); |
| 782 | expandBufAdd1(pReq, EK_VM_START); |
| 783 | expandBufAdd4BE(pReq, 0); /* requestId */ |
| 784 | expandBufAddObjectId(pReq, threadId); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 785 | |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 786 | Dbg::ManageDeoptimization(); |
| 787 | |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 788 | /* send request and possibly suspend ourselves */ |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 789 | SendRequestAndPossiblySuspend(pReq, suspend_policy, threadId); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 790 | } |
| 791 | |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 792 | static void LogMatchingEventsAndThread(const std::vector<JdwpEvent*> match_list, |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 793 | ObjectId thread_id) |
Sebastien Hertz | bca0d3d | 2014-04-11 16:01:17 +0200 | [diff] [blame] | 794 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 795 | for (size_t i = 0, e = match_list.size(); i < e; ++i) { |
Sebastien Hertz | bca0d3d | 2014-04-11 16:01:17 +0200 | [diff] [blame] | 796 | JdwpEvent* pEvent = match_list[i]; |
| 797 | VLOG(jdwp) << "EVENT #" << i << ": " << pEvent->eventKind |
| 798 | << StringPrintf(" (requestId=%#" PRIx32 ")", pEvent->requestId); |
| 799 | } |
| 800 | std::string thread_name; |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 801 | JdwpError error = Dbg::GetThreadName(thread_id, &thread_name); |
Sebastien Hertz | bca0d3d | 2014-04-11 16:01:17 +0200 | [diff] [blame] | 802 | if (error != JDWP::ERR_NONE) { |
| 803 | thread_name = "<unknown>"; |
| 804 | } |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 805 | VLOG(jdwp) << StringPrintf(" thread=%#" PRIx64, thread_id) << " " << thread_name; |
| 806 | } |
| 807 | |
| 808 | static void SetJdwpLocationFromEventLocation(const JDWP::EventLocation* event_location, |
| 809 | JDWP::JdwpLocation* jdwp_location) |
| 810 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
| 811 | DCHECK(event_location != nullptr); |
| 812 | DCHECK(jdwp_location != nullptr); |
| 813 | Dbg::SetJdwpLocation(jdwp_location, event_location->method, event_location->dex_pc); |
Sebastien Hertz | bca0d3d | 2014-04-11 16:01:17 +0200 | [diff] [blame] | 814 | } |
| 815 | |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 816 | /* |
| 817 | * A location of interest has been reached. This handles: |
| 818 | * Breakpoint |
| 819 | * SingleStep |
| 820 | * MethodEntry |
| 821 | * MethodExit |
| 822 | * These four types must be grouped together in a single response. The |
| 823 | * "eventFlags" indicates the type of event(s) that have happened. |
| 824 | * |
| 825 | * Valid mods: |
| 826 | * Count, ThreadOnly, ClassOnly, ClassMatch, ClassExclude, InstanceOnly |
| 827 | * LocationOnly (for breakpoint/step only) |
| 828 | * Step (for step only) |
| 829 | * |
| 830 | * Interesting test cases: |
| 831 | * - Put a breakpoint on a native method. Eclipse creates METHOD_ENTRY |
| 832 | * and METHOD_EXIT events with a ClassOnly mod on the method's class. |
| 833 | * - Use "run to line". Eclipse creates a BREAKPOINT with Count=1. |
| 834 | * - Single-step to a line with a breakpoint. Should get a single |
| 835 | * event message with both events in it. |
| 836 | */ |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 837 | void JdwpState::PostLocationEvent(const EventLocation* pLoc, mirror::Object* thisPtr, |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 838 | int eventFlags, const JValue* returnValue) { |
| 839 | DCHECK(pLoc != nullptr); |
| 840 | DCHECK(pLoc->method != nullptr); |
| 841 | DCHECK_EQ(pLoc->method->IsStatic(), thisPtr == nullptr); |
| 842 | |
Sebastien Hertz | 261bc04 | 2015-04-08 09:36:07 +0200 | [diff] [blame] | 843 | ModBasket basket(Thread::Current()); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 844 | basket.pLoc = pLoc; |
Sebastien Hertz | 261bc04 | 2015-04-08 09:36:07 +0200 | [diff] [blame] | 845 | basket.locationClass.Assign(pLoc->method->GetDeclaringClass()); |
| 846 | basket.thisPtr.Assign(thisPtr); |
| 847 | basket.className = Dbg::GetClassName(basket.locationClass.Get()); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 848 | |
| 849 | /* |
| 850 | * On rare occasions we may need to execute interpreted code in the VM |
| 851 | * while handling a request from the debugger. Don't fire breakpoints |
| 852 | * while doing so. (I don't think we currently do this at all, so |
| 853 | * this is mostly paranoia.) |
| 854 | */ |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 855 | if (basket.thread == GetDebugThread()) { |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 856 | VLOG(jdwp) << "Ignoring location event in JDWP thread"; |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 857 | return; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 858 | } |
| 859 | |
| 860 | /* |
| 861 | * The debugger variable display tab may invoke the interpreter to format |
| 862 | * complex objects. We want to ignore breakpoints and method entry/exit |
| 863 | * traps while working on behalf of the debugger. |
| 864 | * |
| 865 | * If we don't ignore them, the VM will get hung up, because we'll |
| 866 | * suspend on a breakpoint while the debugger is still waiting for its |
| 867 | * method invocation to complete. |
| 868 | */ |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 869 | if (InvokeInProgress()) { |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 870 | VLOG(jdwp) << "Not checking breakpoints during invoke (" << basket.className << ")"; |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 871 | return; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 872 | } |
| 873 | |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 874 | std::vector<JdwpEvent*> match_list; |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 875 | { |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 876 | // We use the locked version because we have multiple possible match events. |
| 877 | MutexLock mu(Thread::Current(), event_list_lock_); |
| 878 | match_list.reserve(event_list_size_); |
| 879 | if ((eventFlags & Dbg::kBreakpoint) != 0) { |
| 880 | FindMatchingEventsLocked(EK_BREAKPOINT, basket, &match_list); |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 881 | } |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 882 | if ((eventFlags & Dbg::kSingleStep) != 0) { |
| 883 | FindMatchingEventsLocked(EK_SINGLE_STEP, basket, &match_list); |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 884 | } |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 885 | if ((eventFlags & Dbg::kMethodEntry) != 0) { |
| 886 | FindMatchingEventsLocked(EK_METHOD_ENTRY, basket, &match_list); |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 887 | } |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 888 | if ((eventFlags & Dbg::kMethodExit) != 0) { |
| 889 | FindMatchingEventsLocked(EK_METHOD_EXIT, basket, &match_list); |
| 890 | FindMatchingEventsLocked(EK_METHOD_EXIT_WITH_RETURN_VALUE, basket, &match_list); |
| 891 | } |
| 892 | } |
| 893 | if (match_list.empty()) { |
| 894 | // No matching event. |
| 895 | return; |
| 896 | } |
| 897 | JdwpSuspendPolicy suspend_policy = ScanSuspendPolicy(match_list); |
| 898 | |
| 899 | ObjectId thread_id = Dbg::GetThreadId(basket.thread); |
| 900 | JDWP::JdwpLocation jdwp_location; |
| 901 | SetJdwpLocationFromEventLocation(pLoc, &jdwp_location); |
| 902 | |
| 903 | if (VLOG_IS_ON(jdwp)) { |
| 904 | LogMatchingEventsAndThread(match_list, thread_id); |
| 905 | VLOG(jdwp) << " location=" << jdwp_location; |
| 906 | VLOG(jdwp) << " suspend_policy=" << suspend_policy; |
| 907 | } |
| 908 | |
| 909 | ExpandBuf* pReq = eventPrep(); |
| 910 | expandBufAdd1(pReq, suspend_policy); |
| 911 | expandBufAdd4BE(pReq, match_list.size()); |
| 912 | |
| 913 | for (const JdwpEvent* pEvent : match_list) { |
| 914 | expandBufAdd1(pReq, pEvent->eventKind); |
| 915 | expandBufAdd4BE(pReq, pEvent->requestId); |
| 916 | expandBufAddObjectId(pReq, thread_id); |
| 917 | expandBufAddLocation(pReq, jdwp_location); |
| 918 | if (pEvent->eventKind == EK_METHOD_EXIT_WITH_RETURN_VALUE) { |
| 919 | Dbg::OutputMethodReturnValue(jdwp_location.method_id, returnValue, pReq); |
| 920 | } |
| 921 | } |
| 922 | |
| 923 | { |
| 924 | MutexLock mu(Thread::Current(), event_list_lock_); |
| 925 | CleanupMatchList(match_list); |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 926 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 927 | |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 928 | Dbg::ManageDeoptimization(); |
| 929 | |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 930 | SendRequestAndPossiblySuspend(pReq, suspend_policy, thread_id); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 931 | } |
| 932 | |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 933 | void JdwpState::PostFieldEvent(const EventLocation* pLoc, ArtField* field, |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 934 | mirror::Object* this_object, const JValue* fieldValue, |
| 935 | bool is_modification) { |
| 936 | DCHECK(pLoc != nullptr); |
| 937 | DCHECK(field != nullptr); |
| 938 | DCHECK_EQ(fieldValue != nullptr, is_modification); |
| 939 | DCHECK_EQ(field->IsStatic(), this_object == nullptr); |
| 940 | |
Sebastien Hertz | 261bc04 | 2015-04-08 09:36:07 +0200 | [diff] [blame] | 941 | ModBasket basket(Thread::Current()); |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 942 | basket.pLoc = pLoc; |
Sebastien Hertz | 261bc04 | 2015-04-08 09:36:07 +0200 | [diff] [blame] | 943 | basket.locationClass.Assign(pLoc->method->GetDeclaringClass()); |
| 944 | basket.thisPtr.Assign(this_object); |
| 945 | basket.className = Dbg::GetClassName(basket.locationClass.Get()); |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 946 | basket.field = field; |
Sebastien Hertz | bca0d3d | 2014-04-11 16:01:17 +0200 | [diff] [blame] | 947 | |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 948 | if (InvokeInProgress()) { |
Sebastien Hertz | 261bc04 | 2015-04-08 09:36:07 +0200 | [diff] [blame] | 949 | VLOG(jdwp) << "Not posting field event during invoke (" << basket.className << ")"; |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 950 | return; |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 951 | } |
| 952 | |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 953 | std::vector<JdwpEvent*> match_list; |
| 954 | const JdwpEventKind match_kind = (is_modification) ? EK_FIELD_MODIFICATION : EK_FIELD_ACCESS; |
| 955 | if (!FindMatchingEvents(match_kind, basket, &match_list)) { |
| 956 | // No matching event. |
| 957 | return; |
| 958 | } |
| 959 | |
| 960 | JdwpSuspendPolicy suspend_policy = ScanSuspendPolicy(match_list); |
| 961 | ObjectId thread_id = Dbg::GetThreadId(basket.thread); |
| 962 | ObjectRegistry* registry = Dbg::GetObjectRegistry(); |
| 963 | ObjectId instance_id = registry->Add(basket.thisPtr); |
| 964 | RefTypeId field_type_id = registry->AddRefType(field->GetDeclaringClass()); |
| 965 | FieldId field_id = Dbg::ToFieldId(field); |
| 966 | JDWP::JdwpLocation jdwp_location; |
| 967 | SetJdwpLocationFromEventLocation(pLoc, &jdwp_location); |
| 968 | |
| 969 | if (VLOG_IS_ON(jdwp)) { |
| 970 | LogMatchingEventsAndThread(match_list, thread_id); |
| 971 | VLOG(jdwp) << " location=" << jdwp_location; |
| 972 | VLOG(jdwp) << StringPrintf(" this=%#" PRIx64, instance_id); |
| 973 | VLOG(jdwp) << StringPrintf(" type=%#" PRIx64, field_type_id) << " " |
| 974 | << Dbg::GetClassName(field_id); |
Mathieu Chartier | d3ed9a3 | 2015-04-10 14:23:35 -0700 | [diff] [blame] | 975 | VLOG(jdwp) << StringPrintf(" field=%#" PRIx64, field_id) << " " |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 976 | << Dbg::GetFieldName(field_id); |
| 977 | VLOG(jdwp) << " suspend_policy=" << suspend_policy; |
| 978 | } |
| 979 | |
| 980 | ExpandBuf* pReq = eventPrep(); |
| 981 | expandBufAdd1(pReq, suspend_policy); |
| 982 | expandBufAdd4BE(pReq, match_list.size()); |
| 983 | |
| 984 | // Get field's reference type tag. |
| 985 | JDWP::JdwpTypeTag type_tag = Dbg::GetTypeTag(field->GetDeclaringClass()); |
| 986 | |
| 987 | // Get instance type tag. |
| 988 | uint8_t tag; |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 989 | { |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 990 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Sebastien Hertz | 261bc04 | 2015-04-08 09:36:07 +0200 | [diff] [blame] | 991 | tag = Dbg::TagFromObject(soa, basket.thisPtr.Get()); |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 992 | } |
| 993 | |
| 994 | for (const JdwpEvent* pEvent : match_list) { |
| 995 | expandBufAdd1(pReq, pEvent->eventKind); |
| 996 | expandBufAdd4BE(pReq, pEvent->requestId); |
| 997 | expandBufAddObjectId(pReq, thread_id); |
| 998 | expandBufAddLocation(pReq, jdwp_location); |
| 999 | expandBufAdd1(pReq, type_tag); |
| 1000 | expandBufAddRefTypeId(pReq, field_type_id); |
| 1001 | expandBufAddFieldId(pReq, field_id); |
| 1002 | expandBufAdd1(pReq, tag); |
| 1003 | expandBufAddObjectId(pReq, instance_id); |
| 1004 | if (is_modification) { |
| 1005 | Dbg::OutputFieldValue(field_id, fieldValue, pReq); |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 1006 | } |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 1007 | } |
Sebastien Hertz | bca0d3d | 2014-04-11 16:01:17 +0200 | [diff] [blame] | 1008 | |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 1009 | { |
| 1010 | MutexLock mu(Thread::Current(), event_list_lock_); |
| 1011 | CleanupMatchList(match_list); |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 1012 | } |
| 1013 | |
| 1014 | Dbg::ManageDeoptimization(); |
| 1015 | |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 1016 | SendRequestAndPossiblySuspend(pReq, suspend_policy, thread_id); |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 1017 | } |
| 1018 | |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1019 | /* |
| 1020 | * A thread is starting or stopping. |
| 1021 | * |
| 1022 | * Valid mods: |
| 1023 | * Count, ThreadOnly |
| 1024 | */ |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 1025 | void JdwpState::PostThreadChange(Thread* thread, bool start) { |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 1026 | CHECK_EQ(thread, Thread::Current()); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1027 | |
| 1028 | /* |
| 1029 | * I don't think this can happen. |
| 1030 | */ |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 1031 | if (InvokeInProgress()) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1032 | LOG(WARNING) << "Not posting thread change during invoke"; |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 1033 | return; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1034 | } |
| 1035 | |
Sebastien Hertz | 107e757 | 2014-12-18 11:13:15 +0100 | [diff] [blame] | 1036 | // We need the java.lang.Thread object associated to the starting/ending |
| 1037 | // thread to get its JDWP id. Therefore we can't report event if there |
| 1038 | // is no Java peer. This happens when the runtime shuts down and re-attaches |
| 1039 | // the current thread without creating a Java peer. |
| 1040 | if (thread->GetPeer() == nullptr) { |
| 1041 | return; |
| 1042 | } |
| 1043 | |
Sebastien Hertz | 261bc04 | 2015-04-08 09:36:07 +0200 | [diff] [blame] | 1044 | ModBasket basket(thread); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1045 | |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 1046 | std::vector<JdwpEvent*> match_list; |
| 1047 | const JdwpEventKind match_kind = (start) ? EK_THREAD_START : EK_THREAD_DEATH; |
| 1048 | if (!FindMatchingEvents(match_kind, basket, &match_list)) { |
| 1049 | // No matching event. |
| 1050 | return; |
| 1051 | } |
| 1052 | |
| 1053 | JdwpSuspendPolicy suspend_policy = ScanSuspendPolicy(match_list); |
| 1054 | ObjectId thread_id = Dbg::GetThreadId(basket.thread); |
| 1055 | |
| 1056 | if (VLOG_IS_ON(jdwp)) { |
| 1057 | LogMatchingEventsAndThread(match_list, thread_id); |
| 1058 | VLOG(jdwp) << " suspend_policy=" << suspend_policy; |
| 1059 | } |
| 1060 | |
| 1061 | ExpandBuf* pReq = eventPrep(); |
| 1062 | expandBufAdd1(pReq, suspend_policy); |
| 1063 | expandBufAdd4BE(pReq, match_list.size()); |
| 1064 | |
| 1065 | for (const JdwpEvent* pEvent : match_list) { |
| 1066 | expandBufAdd1(pReq, pEvent->eventKind); |
| 1067 | expandBufAdd4BE(pReq, pEvent->requestId); |
| 1068 | expandBufAdd8BE(pReq, thread_id); |
| 1069 | } |
| 1070 | |
Elliott Hughes | 234ab15 | 2011-10-26 14:02:26 -0700 | [diff] [blame] | 1071 | { |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 1072 | MutexLock mu(Thread::Current(), event_list_lock_); |
| 1073 | CleanupMatchList(match_list); |
Elliott Hughes | 234ab15 | 2011-10-26 14:02:26 -0700 | [diff] [blame] | 1074 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1075 | |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 1076 | Dbg::ManageDeoptimization(); |
| 1077 | |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 1078 | SendRequestAndPossiblySuspend(pReq, suspend_policy, thread_id); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1079 | } |
| 1080 | |
| 1081 | /* |
| 1082 | * Send a polite "VM is dying" message to the debugger. |
| 1083 | * |
| 1084 | * Skips the usual "event token" stuff. |
| 1085 | */ |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 1086 | bool JdwpState::PostVMDeath() { |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 1087 | VLOG(jdwp) << "EVENT: " << EK_VM_DEATH; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1088 | |
| 1089 | ExpandBuf* pReq = eventPrep(); |
| 1090 | expandBufAdd1(pReq, SP_NONE); |
| 1091 | expandBufAdd4BE(pReq, 1); |
| 1092 | |
| 1093 | expandBufAdd1(pReq, EK_VM_DEATH); |
| 1094 | expandBufAdd4BE(pReq, 0); |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 1095 | EventFinish(pReq); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1096 | return true; |
| 1097 | } |
| 1098 | |
| 1099 | /* |
| 1100 | * An exception has been thrown. It may or may not have been caught. |
| 1101 | * |
| 1102 | * Valid mods: |
| 1103 | * Count, ThreadOnly, ClassOnly, ClassMatch, ClassExclude, LocationOnly, |
| 1104 | * ExceptionOnly, InstanceOnly |
| 1105 | * |
| 1106 | * The "exceptionId" has not been added to the GC-visible object registry, |
| 1107 | * because there's a pretty good chance that we're not going to send it |
| 1108 | * up the debugger. |
| 1109 | */ |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 1110 | void JdwpState::PostException(const EventLocation* pThrowLoc, mirror::Throwable* exception_object, |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 1111 | const EventLocation* pCatchLoc, mirror::Object* thisPtr) { |
| 1112 | DCHECK(exception_object != nullptr); |
| 1113 | DCHECK(pThrowLoc != nullptr); |
| 1114 | DCHECK(pCatchLoc != nullptr); |
Sebastien Hertz | a9aa0ff | 2014-09-19 12:07:51 +0200 | [diff] [blame] | 1115 | if (pThrowLoc->method != nullptr) { |
| 1116 | DCHECK_EQ(pThrowLoc->method->IsStatic(), thisPtr == nullptr); |
| 1117 | } else { |
| 1118 | VLOG(jdwp) << "Unexpected: exception event with empty throw location"; |
| 1119 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1120 | |
Sebastien Hertz | 261bc04 | 2015-04-08 09:36:07 +0200 | [diff] [blame] | 1121 | ModBasket basket(Thread::Current()); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1122 | basket.pLoc = pThrowLoc; |
Sebastien Hertz | a9aa0ff | 2014-09-19 12:07:51 +0200 | [diff] [blame] | 1123 | if (pThrowLoc->method != nullptr) { |
Sebastien Hertz | 261bc04 | 2015-04-08 09:36:07 +0200 | [diff] [blame] | 1124 | basket.locationClass.Assign(pThrowLoc->method->GetDeclaringClass()); |
Sebastien Hertz | a9aa0ff | 2014-09-19 12:07:51 +0200 | [diff] [blame] | 1125 | } |
Sebastien Hertz | 261bc04 | 2015-04-08 09:36:07 +0200 | [diff] [blame] | 1126 | basket.className = Dbg::GetClassName(basket.locationClass.Get()); |
| 1127 | basket.exceptionClass.Assign(exception_object->GetClass()); |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 1128 | basket.caught = (pCatchLoc->method != 0); |
Sebastien Hertz | 261bc04 | 2015-04-08 09:36:07 +0200 | [diff] [blame] | 1129 | basket.thisPtr.Assign(thisPtr); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1130 | |
| 1131 | /* don't try to post an exception caused by the debugger */ |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 1132 | if (InvokeInProgress()) { |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 1133 | VLOG(jdwp) << "Not posting exception hit during invoke (" << basket.className << ")"; |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 1134 | return; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1135 | } |
| 1136 | |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 1137 | std::vector<JdwpEvent*> match_list; |
| 1138 | if (!FindMatchingEvents(EK_EXCEPTION, basket, &match_list)) { |
| 1139 | // No matching event. |
| 1140 | return; |
| 1141 | } |
| 1142 | |
| 1143 | JdwpSuspendPolicy suspend_policy = ScanSuspendPolicy(match_list); |
| 1144 | ObjectId thread_id = Dbg::GetThreadId(basket.thread); |
| 1145 | ObjectRegistry* registry = Dbg::GetObjectRegistry(); |
| 1146 | ObjectId exceptionId = registry->Add(exception_object); |
| 1147 | JDWP::JdwpLocation jdwp_throw_location; |
| 1148 | JDWP::JdwpLocation jdwp_catch_location; |
| 1149 | SetJdwpLocationFromEventLocation(pThrowLoc, &jdwp_throw_location); |
| 1150 | SetJdwpLocationFromEventLocation(pCatchLoc, &jdwp_catch_location); |
| 1151 | |
| 1152 | if (VLOG_IS_ON(jdwp)) { |
| 1153 | std::string exceptionClassName(PrettyDescriptor(exception_object->GetClass())); |
| 1154 | |
| 1155 | LogMatchingEventsAndThread(match_list, thread_id); |
| 1156 | VLOG(jdwp) << " throwLocation=" << jdwp_throw_location; |
| 1157 | if (jdwp_catch_location.class_id == 0) { |
| 1158 | VLOG(jdwp) << " catchLocation=uncaught"; |
| 1159 | } else { |
| 1160 | VLOG(jdwp) << " catchLocation=" << jdwp_catch_location; |
| 1161 | } |
| 1162 | VLOG(jdwp) << StringPrintf(" exception=%#" PRIx64, exceptionId) << " " |
| 1163 | << exceptionClassName; |
| 1164 | VLOG(jdwp) << " suspend_policy=" << suspend_policy; |
| 1165 | } |
| 1166 | |
| 1167 | ExpandBuf* pReq = eventPrep(); |
| 1168 | expandBufAdd1(pReq, suspend_policy); |
| 1169 | expandBufAdd4BE(pReq, match_list.size()); |
| 1170 | |
| 1171 | for (const JdwpEvent* pEvent : match_list) { |
| 1172 | expandBufAdd1(pReq, pEvent->eventKind); |
| 1173 | expandBufAdd4BE(pReq, pEvent->requestId); |
| 1174 | expandBufAddObjectId(pReq, thread_id); |
| 1175 | expandBufAddLocation(pReq, jdwp_throw_location); |
| 1176 | expandBufAdd1(pReq, JT_OBJECT); |
| 1177 | expandBufAddObjectId(pReq, exceptionId); |
| 1178 | expandBufAddLocation(pReq, jdwp_catch_location); |
| 1179 | } |
| 1180 | |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 1181 | { |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 1182 | MutexLock mu(Thread::Current(), event_list_lock_); |
| 1183 | CleanupMatchList(match_list); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1184 | } |
| 1185 | |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 1186 | Dbg::ManageDeoptimization(); |
| 1187 | |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 1188 | SendRequestAndPossiblySuspend(pReq, suspend_policy, thread_id); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1189 | } |
| 1190 | |
| 1191 | /* |
| 1192 | * Announce that a class has been loaded. |
| 1193 | * |
| 1194 | * Valid mods: |
| 1195 | * Count, ThreadOnly, ClassOnly, ClassMatch, ClassExclude |
| 1196 | */ |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 1197 | void JdwpState::PostClassPrepare(mirror::Class* klass) { |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 1198 | DCHECK(klass != nullptr); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1199 | |
Sebastien Hertz | 261bc04 | 2015-04-08 09:36:07 +0200 | [diff] [blame] | 1200 | ModBasket basket(Thread::Current()); |
| 1201 | basket.locationClass.Assign(klass); |
| 1202 | basket.className = Dbg::GetClassName(basket.locationClass.Get()); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1203 | |
| 1204 | /* suppress class prep caused by debugger */ |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 1205 | if (InvokeInProgress()) { |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 1206 | VLOG(jdwp) << "Not posting class prep caused by invoke (" << basket.className << ")"; |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 1207 | return; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1208 | } |
| 1209 | |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 1210 | std::vector<JdwpEvent*> match_list; |
| 1211 | if (!FindMatchingEvents(EK_CLASS_PREPARE, basket, &match_list)) { |
| 1212 | // No matching event. |
| 1213 | return; |
| 1214 | } |
| 1215 | |
| 1216 | JdwpSuspendPolicy suspend_policy = ScanSuspendPolicy(match_list); |
| 1217 | ObjectId thread_id = Dbg::GetThreadId(basket.thread); |
| 1218 | ObjectRegistry* registry = Dbg::GetObjectRegistry(); |
| 1219 | RefTypeId class_id = registry->AddRefType(basket.locationClass); |
| 1220 | |
| 1221 | // OLD-TODO - we currently always send both "verified" and "prepared" since |
| 1222 | // debuggers seem to like that. There might be some advantage to honesty, |
| 1223 | // since the class may not yet be verified. |
| 1224 | int status = JDWP::CS_VERIFIED | JDWP::CS_PREPARED; |
Sebastien Hertz | 261bc04 | 2015-04-08 09:36:07 +0200 | [diff] [blame] | 1225 | JDWP::JdwpTypeTag tag = Dbg::GetTypeTag(basket.locationClass.Get()); |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 1226 | std::string temp; |
| 1227 | std::string signature(basket.locationClass->GetDescriptor(&temp)); |
| 1228 | |
| 1229 | if (VLOG_IS_ON(jdwp)) { |
| 1230 | LogMatchingEventsAndThread(match_list, thread_id); |
| 1231 | VLOG(jdwp) << StringPrintf(" type=%#" PRIx64, class_id) << " " << signature; |
| 1232 | VLOG(jdwp) << " suspend_policy=" << suspend_policy; |
| 1233 | } |
| 1234 | |
| 1235 | if (thread_id == debug_thread_id_) { |
| 1236 | /* |
| 1237 | * JDWP says that, for a class prep in the debugger thread, we |
| 1238 | * should set thread to null and if any threads were supposed |
| 1239 | * to be suspended then we suspend all other threads. |
| 1240 | */ |
| 1241 | VLOG(jdwp) << " NOTE: class prepare in debugger thread!"; |
| 1242 | thread_id = 0; |
| 1243 | if (suspend_policy == SP_EVENT_THREAD) { |
| 1244 | suspend_policy = SP_ALL; |
| 1245 | } |
| 1246 | } |
| 1247 | |
| 1248 | ExpandBuf* pReq = eventPrep(); |
| 1249 | expandBufAdd1(pReq, suspend_policy); |
| 1250 | expandBufAdd4BE(pReq, match_list.size()); |
| 1251 | |
| 1252 | for (const JdwpEvent* pEvent : match_list) { |
| 1253 | expandBufAdd1(pReq, pEvent->eventKind); |
| 1254 | expandBufAdd4BE(pReq, pEvent->requestId); |
| 1255 | expandBufAddObjectId(pReq, thread_id); |
| 1256 | expandBufAdd1(pReq, tag); |
| 1257 | expandBufAddRefTypeId(pReq, class_id); |
| 1258 | expandBufAddUtf8String(pReq, signature); |
| 1259 | expandBufAdd4BE(pReq, status); |
| 1260 | } |
| 1261 | |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 1262 | { |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 1263 | MutexLock mu(Thread::Current(), event_list_lock_); |
| 1264 | CleanupMatchList(match_list); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1265 | } |
| 1266 | |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 1267 | Dbg::ManageDeoptimization(); |
| 1268 | |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 1269 | SendRequestAndPossiblySuspend(pReq, suspend_policy, thread_id); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1270 | } |
| 1271 | |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1272 | /* |
Mathieu Chartier | ad466ad | 2015-01-08 16:28:08 -0800 | [diff] [blame] | 1273 | * Setup the header for a chunk of DDM data. |
| 1274 | */ |
| 1275 | void JdwpState::SetupChunkHeader(uint32_t type, size_t data_len, size_t header_size, |
| 1276 | uint8_t* out_header) { |
| 1277 | CHECK_EQ(header_size, static_cast<size_t>(kJDWPHeaderLen + 8)); |
| 1278 | /* form the header (JDWP plus DDMS) */ |
| 1279 | Set4BE(out_header, header_size + data_len); |
| 1280 | Set4BE(out_header + 4, NextRequestSerial()); |
| 1281 | Set1(out_header + 8, 0); /* flags */ |
| 1282 | Set1(out_header + 9, kJDWPDdmCmdSet); |
| 1283 | Set1(out_header + 10, kJDWPDdmCmd); |
| 1284 | Set4BE(out_header + 11, type); |
| 1285 | Set4BE(out_header + 15, data_len); |
| 1286 | } |
| 1287 | |
| 1288 | /* |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1289 | * Send up a chunk of DDM data. |
| 1290 | * |
| 1291 | * While this takes the form of a JDWP "event", it doesn't interact with |
| 1292 | * other debugger traffic, and can't suspend the VM, so we skip all of |
| 1293 | * the fun event token gymnastics. |
| 1294 | */ |
Elliott Hughes | cccd84f | 2011-12-05 16:51:54 -0800 | [diff] [blame] | 1295 | void JdwpState::DdmSendChunkV(uint32_t type, const iovec* iov, int iov_count) { |
Mathieu Chartier | ad466ad | 2015-01-08 16:28:08 -0800 | [diff] [blame] | 1296 | uint8_t header[kJDWPHeaderLen + 8] = { 0 }; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1297 | size_t dataLen = 0; |
| 1298 | |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 1299 | CHECK(iov != nullptr); |
Elliott Hughes | cccd84f | 2011-12-05 16:51:54 -0800 | [diff] [blame] | 1300 | CHECK_GT(iov_count, 0); |
| 1301 | CHECK_LT(iov_count, 10); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1302 | |
| 1303 | /* |
| 1304 | * "Wrap" the contents of the iovec with a JDWP/DDMS header. We do |
| 1305 | * this by creating a new copy of the vector with space for the header. |
| 1306 | */ |
Brian Carlstrom | f529352 | 2013-07-19 00:24:00 -0700 | [diff] [blame] | 1307 | std::vector<iovec> wrapiov; |
| 1308 | wrapiov.push_back(iovec()); |
Elliott Hughes | cccd84f | 2011-12-05 16:51:54 -0800 | [diff] [blame] | 1309 | for (int i = 0; i < iov_count; i++) { |
Brian Carlstrom | f529352 | 2013-07-19 00:24:00 -0700 | [diff] [blame] | 1310 | wrapiov.push_back(iov[i]); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1311 | dataLen += iov[i].iov_len; |
| 1312 | } |
| 1313 | |
Mathieu Chartier | ad466ad | 2015-01-08 16:28:08 -0800 | [diff] [blame] | 1314 | SetupChunkHeader(type, dataLen, sizeof(header), header); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1315 | |
| 1316 | wrapiov[0].iov_base = header; |
| 1317 | wrapiov[0].iov_len = sizeof(header); |
| 1318 | |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 1319 | // Try to avoid blocking GC during a send, but only safe when not using mutexes at a lower-level |
| 1320 | // than mutator for lock ordering reasons. |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1321 | Thread* self = Thread::Current(); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 1322 | bool safe_to_release_mutator_lock_over_send = !Locks::mutator_lock_->IsExclusiveHeld(self); |
| 1323 | if (safe_to_release_mutator_lock_over_send) { |
Brian Carlstrom | 38f85e4 | 2013-07-18 14:45:22 -0700 | [diff] [blame] | 1324 | for (size_t i = 0; i < kMutatorLock; ++i) { |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 1325 | if (self->GetHeldMutex(static_cast<LockLevel>(i)) != nullptr) { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 1326 | safe_to_release_mutator_lock_over_send = false; |
| 1327 | break; |
| 1328 | } |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 1329 | } |
| 1330 | } |
| 1331 | if (safe_to_release_mutator_lock_over_send) { |
| 1332 | // Change state to waiting to allow GC, ... while we're sending. |
| 1333 | self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSend); |
Brian Carlstrom | f529352 | 2013-07-19 00:24:00 -0700 | [diff] [blame] | 1334 | SendBufferedRequest(type, wrapiov); |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 1335 | self->TransitionFromSuspendedToRunnable(); |
| 1336 | } else { |
| 1337 | // Send and possibly block GC... |
Brian Carlstrom | f529352 | 2013-07-19 00:24:00 -0700 | [diff] [blame] | 1338 | SendBufferedRequest(type, wrapiov); |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 1339 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1340 | } |
| 1341 | |
| 1342 | } // namespace JDWP |
| 1343 | |
| 1344 | } // namespace art |