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 | |
Elliott Hughes | 07ed66b | 2012-12-12 18:34:25 -0800 | [diff] [blame] | 24 | #include "base/logging.h" |
Elliott Hughes | e222ee0 | 2012-12-13 14:41:43 -0800 | [diff] [blame] | 25 | #include "base/stringprintf.h" |
Elliott Hughes | 07ed66b | 2012-12-12 18:34:25 -0800 | [diff] [blame] | 26 | #include "debugger.h" |
| 27 | #include "jdwp/jdwp_constants.h" |
| 28 | #include "jdwp/jdwp_expand_buf.h" |
Elliott Hughes | 07ed66b | 2012-12-12 18:34:25 -0800 | [diff] [blame] | 29 | #include "jdwp/jdwp_priv.h" |
Ian Rogers | 693ff61 | 2013-02-01 10:56:12 -0800 | [diff] [blame] | 30 | #include "thread-inl.h" |
Elliott Hughes | 07ed66b | 2012-12-12 18:34:25 -0800 | [diff] [blame] | 31 | |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 32 | /* |
| 33 | General notes: |
| 34 | |
| 35 | The event add/remove stuff usually happens from the debugger thread, |
| 36 | in response to requests from the debugger, but can also happen as the |
| 37 | result of an event in an arbitrary thread (e.g. an event with a "count" |
| 38 | mod expires). It's important to keep the event list locked when processing |
| 39 | events. |
| 40 | |
| 41 | Event posting can happen from any thread. The JDWP thread will not usually |
| 42 | post anything but VM start/death, but if a JDWP request causes a class |
| 43 | to be loaded, the ClassPrepare event will come from the JDWP thread. |
| 44 | |
| 45 | |
| 46 | We can have serialization issues when we post an event to the debugger. |
| 47 | For example, a thread could send an "I hit a breakpoint and am suspending |
| 48 | myself" message to the debugger. Before it manages to suspend itself, the |
| 49 | debugger's response ("not interested, resume thread") arrives and is |
| 50 | processed. We try to resume a thread that hasn't yet suspended. |
| 51 | |
| 52 | This means that, after posting an event to the debugger, we need to wait |
| 53 | for the event thread to suspend itself (and, potentially, all other threads) |
| 54 | before processing any additional requests from the debugger. While doing |
| 55 | so we need to be aware that multiple threads may be hitting breakpoints |
| 56 | or other events simultaneously, so we either need to wait for all of them |
| 57 | or serialize the events with each other. |
| 58 | |
| 59 | The current mechanism works like this: |
| 60 | Event thread: |
| 61 | - If I'm going to suspend, grab the "I am posting an event" token. Wait |
| 62 | for it if it's not currently available. |
| 63 | - Post the event to the debugger. |
| 64 | - If appropriate, suspend others and then myself. As part of suspending |
| 65 | myself, release the "I am posting" token. |
| 66 | JDWP thread: |
| 67 | - When an event arrives, see if somebody is posting an event. If so, |
| 68 | sleep until we can acquire the "I am posting an event" token. Release |
| 69 | it immediately and continue processing -- the event we have already |
| 70 | received should not interfere with other events that haven't yet |
| 71 | been posted. |
| 72 | |
| 73 | Some care must be taken to avoid deadlock: |
| 74 | |
| 75 | - thread A and thread B exit near-simultaneously, and post thread-death |
| 76 | events with a "suspend all" clause |
| 77 | - thread A gets the event token, thread B sits and waits for it |
| 78 | - thread A wants to suspend all other threads, but thread B is waiting |
| 79 | for the token and can't be suspended |
| 80 | |
| 81 | So we need to mark thread B in such a way that thread A doesn't wait for it. |
| 82 | |
| 83 | If we just bracket the "grab event token" call with a change to VMWAIT |
| 84 | before sleeping, the switch back to RUNNING state when we get the token |
| 85 | will cause thread B to suspend (remember, thread A's global suspend is |
| 86 | still in force, even after it releases the token). Suspending while |
| 87 | holding the event token is very bad, because it prevents the JDWP thread |
| 88 | from processing incoming messages. |
| 89 | |
| 90 | We need to change to VMWAIT state at the *start* of posting an event, |
| 91 | and stay there until we either finish posting the event or decide to |
| 92 | put ourselves to sleep. That way we don't interfere with anyone else and |
| 93 | don't allow anyone else to interfere with us. |
| 94 | */ |
| 95 | |
| 96 | |
| 97 | #define kJdwpEventCommandSet 64 |
| 98 | #define kJdwpCompositeCommand 100 |
| 99 | |
| 100 | namespace art { |
| 101 | |
| 102 | namespace JDWP { |
| 103 | |
| 104 | /* |
| 105 | * Stuff to compare against when deciding if a mod matches. Only the |
| 106 | * values for mods valid for the event being evaluated will be filled in. |
| 107 | * The rest will be zeroed. |
| 108 | */ |
| 109 | struct ModBasket { |
jeffhao | 162fd33 | 2013-01-08 16:21:01 -0800 | [diff] [blame] | 110 | ModBasket() : pLoc(NULL), threadId(0), classId(0), excepClassId(0), |
| 111 | caught(false), field(0), thisPtr(0) { } |
| 112 | |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 113 | const JdwpLocation* pLoc; /* LocationOnly */ |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 114 | std::string className; /* ClassMatch/ClassExclude */ |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 115 | ObjectId threadId; /* ThreadOnly */ |
| 116 | RefTypeId classId; /* ClassOnly */ |
| 117 | RefTypeId excepClassId; /* ExceptionOnly */ |
| 118 | bool caught; /* ExceptionOnly */ |
| 119 | FieldId field; /* FieldOnly */ |
| 120 | ObjectId thisPtr; /* InstanceOnly */ |
| 121 | /* nothing for StepOnly -- handled differently */ |
| 122 | }; |
| 123 | |
| 124 | /* |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 125 | * Dump an event to the log file. |
| 126 | */ |
| 127 | static void dumpEvent(const JdwpEvent* pEvent) { |
| 128 | LOG(INFO) << StringPrintf("Event id=0x%4x %p (prev=%p next=%p):", pEvent->requestId, pEvent, pEvent->prev, pEvent->next); |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 129 | LOG(INFO) << " kind=" << pEvent->eventKind << " susp=" << pEvent->suspend_policy << " modCount=" << pEvent->modCount; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 130 | |
| 131 | for (int i = 0; i < pEvent->modCount; i++) { |
| 132 | const JdwpEventMod* pMod = &pEvent->mods[i]; |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 133 | LOG(INFO) << " " << pMod->modKind; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 134 | /* TODO - show details */ |
| 135 | } |
| 136 | } |
| 137 | |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 138 | static bool NeedsFullDeoptimization(JdwpEventKind eventKind) { |
| 139 | switch (eventKind) { |
| 140 | case EK_METHOD_ENTRY: |
| 141 | case EK_METHOD_EXIT: |
| 142 | case EK_METHOD_EXIT_WITH_RETURN_VALUE: |
| 143 | case EK_SINGLE_STEP: |
| 144 | return true; |
| 145 | default: |
| 146 | return false; |
| 147 | } |
| 148 | } |
| 149 | |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 150 | /* |
| 151 | * Add an event to the list. Ordering is not important. |
| 152 | * |
| 153 | * If something prevents the event from being registered, e.g. it's a |
| 154 | * single-step request on a thread that doesn't exist, the event will |
| 155 | * not be added to the list, and an appropriate error will be returned. |
| 156 | */ |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 157 | JdwpError JdwpState::RegisterEvent(JdwpEvent* pEvent) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 158 | CHECK(pEvent != NULL); |
| 159 | CHECK(pEvent->prev == NULL); |
| 160 | CHECK(pEvent->next == NULL); |
| 161 | |
| 162 | /* |
| 163 | * If one or more "break"-type mods are used, register them with |
| 164 | * the interpreter. |
| 165 | */ |
| 166 | for (int i = 0; i < pEvent->modCount; i++) { |
| 167 | const JdwpEventMod* pMod = &pEvent->mods[i]; |
| 168 | if (pMod->modKind == MK_LOCATION_ONLY) { |
| 169 | /* should only be for Breakpoint, Step, and Exception */ |
| 170 | Dbg::WatchLocation(&pMod->locationOnly.loc); |
| 171 | } else if (pMod->modKind == MK_STEP) { |
| 172 | /* should only be for EK_SINGLE_STEP; should only be one */ |
| 173 | JdwpStepSize size = static_cast<JdwpStepSize>(pMod->step.size); |
| 174 | JdwpStepDepth depth = static_cast<JdwpStepDepth>(pMod->step.depth); |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 175 | JdwpError status = Dbg::ConfigureStep(pMod->step.threadId, size, depth); |
| 176 | if (status != ERR_NONE) { |
| 177 | return status; |
| 178 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 179 | } else if (pMod->modKind == MK_FIELD_ONLY) { |
| 180 | /* should be for EK_FIELD_ACCESS or EK_FIELD_MODIFICATION */ |
| 181 | dumpEvent(pEvent); /* TODO - need for field watches */ |
| 182 | } |
| 183 | } |
| 184 | |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 185 | { |
| 186 | /* |
| 187 | * Add to list. |
| 188 | */ |
| 189 | MutexLock mu(Thread::Current(), event_list_lock_); |
| 190 | if (event_list_ != NULL) { |
| 191 | pEvent->next = event_list_; |
| 192 | event_list_->prev = pEvent; |
| 193 | } |
| 194 | event_list_ = pEvent; |
| 195 | ++event_list_size_; |
| 196 | |
| 197 | /** |
| 198 | * Do we need to enable full deoptimization ? |
| 199 | */ |
| 200 | if (NeedsFullDeoptimization(pEvent->eventKind)) { |
| 201 | if (full_deoptimization_requests_ == 0) { |
| 202 | // This is the first event that needs full deoptimization: enable it. |
| 203 | Dbg::EnableFullDeoptimization(); |
| 204 | } |
| 205 | ++full_deoptimization_requests_; |
| 206 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 207 | } |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 208 | |
| 209 | Dbg::ManageDeoptimization(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 210 | |
| 211 | return ERR_NONE; |
| 212 | } |
| 213 | |
| 214 | /* |
| 215 | * Remove an event from the list. This will also remove the event from |
| 216 | * any optimization tables, e.g. breakpoints. |
| 217 | * |
| 218 | * Does not free the JdwpEvent. |
| 219 | * |
| 220 | * Grab the eventLock before calling here. |
| 221 | */ |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 222 | void JdwpState::UnregisterEvent(JdwpEvent* pEvent) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 223 | if (pEvent->prev == NULL) { |
| 224 | /* head of the list */ |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 225 | CHECK(event_list_ == pEvent); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 226 | |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 227 | event_list_ = pEvent->next; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 228 | } else { |
| 229 | pEvent->prev->next = pEvent->next; |
| 230 | } |
| 231 | |
| 232 | if (pEvent->next != NULL) { |
| 233 | pEvent->next->prev = pEvent->prev; |
| 234 | pEvent->next = NULL; |
| 235 | } |
| 236 | pEvent->prev = NULL; |
| 237 | |
| 238 | /* |
| 239 | * Unhook us from the interpreter, if necessary. |
| 240 | */ |
| 241 | for (int i = 0; i < pEvent->modCount; i++) { |
| 242 | JdwpEventMod* pMod = &pEvent->mods[i]; |
| 243 | if (pMod->modKind == MK_LOCATION_ONLY) { |
| 244 | /* should only be for Breakpoint, Step, and Exception */ |
| 245 | Dbg::UnwatchLocation(&pMod->locationOnly.loc); |
| 246 | } |
| 247 | if (pMod->modKind == MK_STEP) { |
| 248 | /* should only be for EK_SINGLE_STEP; should only be one */ |
| 249 | Dbg::UnconfigureStep(pMod->step.threadId); |
| 250 | } |
| 251 | } |
| 252 | |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 253 | --event_list_size_; |
| 254 | CHECK(event_list_size_ != 0 || event_list_ == NULL); |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 255 | |
| 256 | /** |
| 257 | * Can we disable full deoptimization ? |
| 258 | */ |
| 259 | if (NeedsFullDeoptimization(pEvent->eventKind)) { |
| 260 | --full_deoptimization_requests_; |
| 261 | if (full_deoptimization_requests_ == 0) { |
| 262 | // We no longer need full deoptimization. |
| 263 | Dbg::DisableFullDeoptimization(); |
| 264 | } |
| 265 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 266 | } |
| 267 | |
| 268 | /* |
| 269 | * Remove the event with the given ID from the list. |
| 270 | * |
| 271 | * Failure to find the event isn't really an error, but it is a little |
| 272 | * weird. (It looks like Eclipse will try to be extra careful and will |
| 273 | * explicitly remove one-off single-step events.) |
| 274 | */ |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 275 | void JdwpState::UnregisterEventById(uint32_t requestId) { |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 276 | bool found = false; |
| 277 | { |
| 278 | MutexLock mu(Thread::Current(), event_list_lock_); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 279 | |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 280 | for (JdwpEvent* pEvent = event_list_; pEvent != nullptr; pEvent = pEvent->next) { |
| 281 | if (pEvent->requestId == requestId) { |
| 282 | found = true; |
| 283 | UnregisterEvent(pEvent); |
| 284 | EventFree(pEvent); |
| 285 | break; /* there can be only one with a given ID */ |
| 286 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 287 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 288 | } |
| 289 | |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 290 | if (found) { |
| 291 | Dbg::ManageDeoptimization(); |
| 292 | } else { |
| 293 | LOG(DEBUG) << StringPrintf("Odd: no match when removing event reqId=0x%04x", requestId); |
| 294 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 295 | } |
| 296 | |
| 297 | /* |
| 298 | * Remove all entries from the event list. |
| 299 | */ |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 300 | void JdwpState::UnregisterAll() { |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 301 | MutexLock mu(Thread::Current(), event_list_lock_); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 302 | |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 303 | JdwpEvent* pEvent = event_list_; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 304 | while (pEvent != NULL) { |
| 305 | JdwpEvent* pNextEvent = pEvent->next; |
| 306 | |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 307 | UnregisterEvent(pEvent); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 308 | EventFree(pEvent); |
| 309 | pEvent = pNextEvent; |
| 310 | } |
| 311 | |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 312 | event_list_ = NULL; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 313 | } |
| 314 | |
| 315 | /* |
| 316 | * Allocate a JdwpEvent struct with enough space to hold the specified |
| 317 | * number of mod records. |
| 318 | */ |
| 319 | JdwpEvent* EventAlloc(int numMods) { |
| 320 | JdwpEvent* newEvent; |
| 321 | int allocSize = offsetof(JdwpEvent, mods) + numMods * sizeof(newEvent->mods[0]); |
| 322 | newEvent = reinterpret_cast<JdwpEvent*>(malloc(allocSize)); |
| 323 | memset(newEvent, 0, allocSize); |
| 324 | return newEvent; |
| 325 | } |
| 326 | |
| 327 | /* |
| 328 | * Free a JdwpEvent. |
| 329 | * |
| 330 | * Do not call this until the event has been removed from the list. |
| 331 | */ |
| 332 | void EventFree(JdwpEvent* pEvent) { |
| 333 | if (pEvent == NULL) { |
| 334 | return; |
| 335 | } |
| 336 | |
| 337 | /* make sure it was removed from the list */ |
| 338 | CHECK(pEvent->prev == NULL); |
| 339 | CHECK(pEvent->next == NULL); |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 340 | /* want to check state->event_list_ != pEvent */ |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 341 | |
| 342 | /* |
| 343 | * Free any hairy bits in the mods. |
| 344 | */ |
| 345 | for (int i = 0; i < pEvent->modCount; i++) { |
| 346 | if (pEvent->mods[i].modKind == MK_CLASS_MATCH) { |
| 347 | free(pEvent->mods[i].classMatch.classPattern); |
| 348 | pEvent->mods[i].classMatch.classPattern = NULL; |
| 349 | } |
| 350 | if (pEvent->mods[i].modKind == MK_CLASS_EXCLUDE) { |
| 351 | free(pEvent->mods[i].classExclude.classPattern); |
| 352 | pEvent->mods[i].classExclude.classPattern = NULL; |
| 353 | } |
| 354 | } |
| 355 | |
| 356 | free(pEvent); |
| 357 | } |
| 358 | |
| 359 | /* |
| 360 | * Allocate storage for matching events. To keep things simple we |
| 361 | * use an array with enough storage for the entire list. |
| 362 | * |
| 363 | * The state->eventLock should be held before calling. |
| 364 | */ |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 365 | static JdwpEvent** AllocMatchList(size_t event_count) { |
| 366 | return new JdwpEvent*[event_count]; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 367 | } |
| 368 | |
| 369 | /* |
| 370 | * Run through the list and remove any entries with an expired "count" mod |
| 371 | * from the event list, then free the match list. |
| 372 | */ |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 373 | void JdwpState::CleanupMatchList(JdwpEvent** match_list, int match_count) { |
| 374 | JdwpEvent** ppEvent = match_list; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 375 | |
Elliott Hughes | 2aa2e39 | 2012-02-17 17:15:43 -0800 | [diff] [blame] | 376 | while (match_count--) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 377 | JdwpEvent* pEvent = *ppEvent; |
| 378 | |
| 379 | for (int i = 0; i < pEvent->modCount; i++) { |
| 380 | if (pEvent->mods[i].modKind == MK_COUNT && pEvent->mods[i].count.count == 0) { |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 381 | VLOG(jdwp) << "##### Removing expired event"; |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 382 | UnregisterEvent(pEvent); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 383 | EventFree(pEvent); |
| 384 | break; |
| 385 | } |
| 386 | } |
| 387 | |
| 388 | ppEvent++; |
| 389 | } |
| 390 | |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 391 | delete[] match_list; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 392 | } |
| 393 | |
| 394 | /* |
| 395 | * Match a string against a "restricted regular expression", which is just |
| 396 | * a string that may start or end with '*' (e.g. "*.Foo" or "java.*"). |
| 397 | * |
| 398 | * ("Restricted name globbing" might have been a better term.) |
| 399 | */ |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 400 | static bool PatternMatch(const char* pattern, const std::string& target) { |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 401 | size_t patLen = strlen(pattern); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 402 | if (pattern[0] == '*') { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 403 | patLen--; |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 404 | if (target.size() < patLen) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 405 | return false; |
| 406 | } |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 407 | return strcmp(pattern+1, target.c_str() + (target.size()-patLen)) == 0; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 408 | } else if (pattern[patLen-1] == '*') { |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 409 | return strncmp(pattern, target.c_str(), patLen-1) == 0; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 410 | } else { |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 411 | return strcmp(pattern, target.c_str()) == 0; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 412 | } |
| 413 | } |
| 414 | |
| 415 | /* |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 416 | * See if the event's mods match up with the contents of "basket". |
| 417 | * |
| 418 | * If we find a Count mod before rejecting an event, we decrement it. We |
| 419 | * need to do this even if later mods cause us to ignore the event. |
| 420 | */ |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 421 | static bool ModsMatch(JdwpEvent* pEvent, ModBasket* basket) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 422 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 423 | JdwpEventMod* pMod = pEvent->mods; |
| 424 | |
| 425 | for (int i = pEvent->modCount; i > 0; i--, pMod++) { |
| 426 | switch (pMod->modKind) { |
| 427 | case MK_COUNT: |
| 428 | CHECK_GT(pMod->count.count, 0); |
| 429 | pMod->count.count--; |
| 430 | break; |
| 431 | case MK_CONDITIONAL: |
| 432 | CHECK(false); // should not be getting these |
| 433 | break; |
| 434 | case MK_THREAD_ONLY: |
| 435 | if (pMod->threadOnly.threadId != basket->threadId) { |
| 436 | return false; |
| 437 | } |
| 438 | break; |
| 439 | case MK_CLASS_ONLY: |
| 440 | if (!Dbg::MatchType(basket->classId, pMod->classOnly.refTypeId)) { |
| 441 | return false; |
| 442 | } |
| 443 | break; |
| 444 | case MK_CLASS_MATCH: |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 445 | if (!PatternMatch(pMod->classMatch.classPattern, basket->className)) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 446 | return false; |
| 447 | } |
| 448 | break; |
| 449 | case MK_CLASS_EXCLUDE: |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 450 | if (PatternMatch(pMod->classMatch.classPattern, basket->className)) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 451 | return false; |
| 452 | } |
| 453 | break; |
| 454 | case MK_LOCATION_ONLY: |
Elliott Hughes | 2aa2e39 | 2012-02-17 17:15:43 -0800 | [diff] [blame] | 455 | if (pMod->locationOnly.loc != *basket->pLoc) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 456 | return false; |
| 457 | } |
| 458 | break; |
| 459 | case MK_EXCEPTION_ONLY: |
| 460 | if (pMod->exceptionOnly.refTypeId != 0 && !Dbg::MatchType(basket->excepClassId, pMod->exceptionOnly.refTypeId)) { |
| 461 | return false; |
| 462 | } |
| 463 | if ((basket->caught && !pMod->exceptionOnly.caught) || (!basket->caught && !pMod->exceptionOnly.uncaught)) { |
| 464 | return false; |
| 465 | } |
| 466 | break; |
| 467 | case MK_FIELD_ONLY: |
| 468 | if (!Dbg::MatchType(basket->classId, pMod->fieldOnly.refTypeId) || pMod->fieldOnly.fieldId != basket->field) { |
| 469 | return false; |
| 470 | } |
| 471 | break; |
| 472 | case MK_STEP: |
| 473 | if (pMod->step.threadId != basket->threadId) { |
| 474 | return false; |
| 475 | } |
| 476 | break; |
| 477 | case MK_INSTANCE_ONLY: |
| 478 | if (pMod->instanceOnly.objectId != basket->thisPtr) { |
| 479 | return false; |
| 480 | } |
| 481 | break; |
| 482 | default: |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 483 | LOG(FATAL) << "unknown mod kind " << pMod->modKind; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 484 | break; |
| 485 | } |
| 486 | } |
| 487 | return true; |
| 488 | } |
| 489 | |
| 490 | /* |
| 491 | * Find all events of type "eventKind" with mods that match up with the |
| 492 | * rest of the arguments. |
| 493 | * |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 494 | * Found events are appended to "match_list", and "*pMatchCount" is advanced, |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 495 | * so this may be called multiple times for grouped events. |
| 496 | * |
| 497 | * DO NOT call this multiple times for the same eventKind, as Count mods are |
| 498 | * decremented during the scan. |
| 499 | */ |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 500 | void JdwpState::FindMatchingEvents(JdwpEventKind eventKind, ModBasket* basket, |
| 501 | JdwpEvent** match_list, int* pMatchCount) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 502 | /* start after the existing entries */ |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 503 | match_list += *pMatchCount; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 504 | |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 505 | JdwpEvent* pEvent = event_list_; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 506 | while (pEvent != NULL) { |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 507 | if (pEvent->eventKind == eventKind && ModsMatch(pEvent, basket)) { |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 508 | *match_list++ = pEvent; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 509 | (*pMatchCount)++; |
| 510 | } |
| 511 | |
| 512 | pEvent = pEvent->next; |
| 513 | } |
| 514 | } |
| 515 | |
| 516 | /* |
| 517 | * Scan through the list of matches and determine the most severe |
| 518 | * suspension policy. |
| 519 | */ |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 520 | static JdwpSuspendPolicy scanSuspendPolicy(JdwpEvent** match_list, int match_count) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 521 | JdwpSuspendPolicy policy = SP_NONE; |
| 522 | |
Elliott Hughes | 2aa2e39 | 2012-02-17 17:15:43 -0800 | [diff] [blame] | 523 | while (match_count--) { |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 524 | if ((*match_list)->suspend_policy > policy) { |
| 525 | policy = (*match_list)->suspend_policy; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 526 | } |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 527 | match_list++; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 528 | } |
| 529 | |
| 530 | return policy; |
| 531 | } |
| 532 | |
| 533 | /* |
| 534 | * Three possibilities: |
| 535 | * SP_NONE - do nothing |
| 536 | * SP_EVENT_THREAD - suspend ourselves |
| 537 | * SP_ALL - suspend everybody except JDWP support thread |
| 538 | */ |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 539 | void JdwpState::SuspendByPolicy(JdwpSuspendPolicy suspend_policy, JDWP::ObjectId thread_self_id) { |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 540 | VLOG(jdwp) << "SuspendByPolicy(" << suspend_policy << ")"; |
| 541 | if (suspend_policy == SP_NONE) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 542 | return; |
| 543 | } |
| 544 | |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 545 | if (suspend_policy == SP_ALL) { |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 546 | Dbg::SuspendVM(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 547 | } else { |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 548 | CHECK_EQ(suspend_policy, SP_EVENT_THREAD); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 549 | } |
| 550 | |
| 551 | /* this is rare but possible -- see CLASS_PREPARE handling */ |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 552 | if (thread_self_id == debug_thread_id_) { |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 553 | LOG(INFO) << "NOTE: SuspendByPolicy not suspending JDWP thread"; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 554 | return; |
| 555 | } |
| 556 | |
| 557 | DebugInvokeReq* pReq = Dbg::GetInvokeReq(); |
| 558 | while (true) { |
| 559 | pReq->ready = true; |
| 560 | Dbg::SuspendSelf(); |
| 561 | pReq->ready = false; |
| 562 | |
| 563 | /* |
| 564 | * The JDWP thread has told us (and possibly all other threads) to |
| 565 | * resume. See if it has left anything in our DebugInvokeReq mailbox. |
| 566 | */ |
Sebastien Hertz | d38667a | 2013-11-25 15:43:54 +0100 | [diff] [blame] | 567 | if (!pReq->invoke_needed) { |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 568 | /*LOGD("SuspendByPolicy: no invoke needed");*/ |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 569 | break; |
| 570 | } |
| 571 | |
| 572 | /* grab this before posting/suspending again */ |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 573 | SetWaitForEventThread(thread_self_id); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 574 | |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 575 | /* leave pReq->invoke_needed_ raised so we can check reentrancy */ |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 576 | Dbg::ExecuteMethod(pReq); |
| 577 | |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 578 | pReq->error = ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 579 | |
| 580 | /* clear this before signaling */ |
Sebastien Hertz | d38667a | 2013-11-25 15:43:54 +0100 | [diff] [blame] | 581 | pReq->invoke_needed = false; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 582 | |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 583 | VLOG(jdwp) << "invoke complete, signaling and self-suspending"; |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 584 | Thread* self = Thread::Current(); |
Sebastien Hertz | d38667a | 2013-11-25 15:43:54 +0100 | [diff] [blame] | 585 | MutexLock mu(self, pReq->lock); |
| 586 | pReq->cond.Signal(self); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 587 | } |
| 588 | } |
| 589 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 590 | void JdwpState::SendRequestAndPossiblySuspend(ExpandBuf* pReq, JdwpSuspendPolicy suspend_policy, |
| 591 | ObjectId threadId) { |
| 592 | Thread* self = Thread::Current(); |
| 593 | self->AssertThreadSuspensionIsAllowable(); |
| 594 | /* send request and possibly suspend ourselves */ |
| 595 | if (pReq != NULL) { |
| 596 | JDWP::ObjectId thread_self_id = Dbg::GetThreadSelfId(); |
| 597 | self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSend); |
| 598 | if (suspend_policy != SP_NONE) { |
| 599 | SetWaitForEventThread(threadId); |
| 600 | } |
| 601 | EventFinish(pReq); |
| 602 | SuspendByPolicy(suspend_policy, thread_self_id); |
| 603 | self->TransitionFromSuspendedToRunnable(); |
| 604 | } |
| 605 | } |
| 606 | |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 607 | /* |
| 608 | * Determine if there is a method invocation in progress in the current |
| 609 | * thread. |
| 610 | * |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 611 | * We look at the "invoke_needed" flag in the per-thread DebugInvokeReq |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 612 | * state. If set, we're in the process of invoking a method. |
| 613 | */ |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 614 | bool JdwpState::InvokeInProgress() { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 615 | DebugInvokeReq* pReq = Dbg::GetInvokeReq(); |
Sebastien Hertz | d38667a | 2013-11-25 15:43:54 +0100 | [diff] [blame] | 616 | return pReq->invoke_needed; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 617 | } |
| 618 | |
| 619 | /* |
| 620 | * We need the JDWP thread to hold off on doing stuff while we post an |
| 621 | * event and then suspend ourselves. |
| 622 | * |
| 623 | * Call this with a threadId of zero if you just want to wait for the |
| 624 | * current thread operation to complete. |
| 625 | * |
| 626 | * This could go to sleep waiting for another thread, so it's important |
| 627 | * that the thread be marked as VMWAIT before calling here. |
| 628 | */ |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 629 | void JdwpState::SetWaitForEventThread(ObjectId threadId) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 630 | bool waited = false; |
| 631 | |
| 632 | /* this is held for very brief periods; contention is unlikely */ |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 633 | Thread* self = Thread::Current(); |
| 634 | MutexLock mu(self, event_thread_lock_); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 635 | |
| 636 | /* |
| 637 | * If another thread is already doing stuff, wait for it. This can |
| 638 | * go to sleep indefinitely. |
| 639 | */ |
Elliott Hughes | a21039c | 2012-06-21 12:09:25 -0700 | [diff] [blame] | 640 | while (event_thread_id_ != 0) { |
Ian Rogers | d9e4e0c | 2014-01-23 20:11:40 -0800 | [diff] [blame^] | 641 | VLOG(jdwp) << StringPrintf("event in progress (%#" PRIx64 "), %#" PRIx64 " sleeping", |
| 642 | event_thread_id_, threadId); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 643 | waited = true; |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 644 | event_thread_cond_.Wait(self); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 645 | } |
| 646 | |
| 647 | if (waited || threadId != 0) { |
Ian Rogers | d9e4e0c | 2014-01-23 20:11:40 -0800 | [diff] [blame^] | 648 | VLOG(jdwp) << StringPrintf("event token grabbed (%#" PRIx64 ")", threadId); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 649 | } |
| 650 | if (threadId != 0) { |
Elliott Hughes | a21039c | 2012-06-21 12:09:25 -0700 | [diff] [blame] | 651 | event_thread_id_ = threadId; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 652 | } |
| 653 | } |
| 654 | |
| 655 | /* |
| 656 | * Clear the threadId and signal anybody waiting. |
| 657 | */ |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 658 | void JdwpState::ClearWaitForEventThread() { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 659 | /* |
| 660 | * Grab the mutex. Don't try to go in/out of VMWAIT mode, as this |
| 661 | * function is called by dvmSuspendSelf(), and the transition back |
| 662 | * to RUNNING would confuse it. |
| 663 | */ |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 664 | Thread* self = Thread::Current(); |
| 665 | MutexLock mu(self, event_thread_lock_); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 666 | |
Elliott Hughes | a21039c | 2012-06-21 12:09:25 -0700 | [diff] [blame] | 667 | CHECK_NE(event_thread_id_, 0U); |
Ian Rogers | d9e4e0c | 2014-01-23 20:11:40 -0800 | [diff] [blame^] | 668 | VLOG(jdwp) << StringPrintf("cleared event token (%#" PRIx64 ")", event_thread_id_); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 669 | |
Elliott Hughes | a21039c | 2012-06-21 12:09:25 -0700 | [diff] [blame] | 670 | event_thread_id_ = 0; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 671 | |
Ian Rogers | c604d73 | 2012-10-14 16:09:54 -0700 | [diff] [blame] | 672 | event_thread_cond_.Signal(self); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 673 | } |
| 674 | |
| 675 | |
| 676 | /* |
| 677 | * Prep an event. Allocates storage for the message and leaves space for |
| 678 | * the header. |
| 679 | */ |
| 680 | static ExpandBuf* eventPrep() { |
| 681 | ExpandBuf* pReq = expandBufAlloc(); |
| 682 | expandBufAddSpace(pReq, kJDWPHeaderLen); |
| 683 | return pReq; |
| 684 | } |
| 685 | |
| 686 | /* |
| 687 | * Write the header into the buffer and send the packet off to the debugger. |
| 688 | * |
| 689 | * Takes ownership of "pReq" (currently discards it). |
| 690 | */ |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 691 | void JdwpState::EventFinish(ExpandBuf* pReq) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 692 | uint8_t* buf = expandBufGetBuffer(pReq); |
| 693 | |
Elliott Hughes | f7c3b66 | 2011-10-27 12:04:56 -0700 | [diff] [blame] | 694 | Set4BE(buf, expandBufGetLength(pReq)); |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 695 | Set4BE(buf+4, NextRequestSerial()); |
Elliott Hughes | f7c3b66 | 2011-10-27 12:04:56 -0700 | [diff] [blame] | 696 | Set1(buf+8, 0); /* flags */ |
| 697 | Set1(buf+9, kJdwpEventCommandSet); |
| 698 | Set1(buf+10, kJdwpCompositeCommand); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 699 | |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 700 | SendRequest(pReq); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 701 | |
| 702 | expandBufFree(pReq); |
| 703 | } |
| 704 | |
| 705 | |
| 706 | /* |
| 707 | * Tell the debugger that we have finished initializing. This is always |
| 708 | * sent, even if the debugger hasn't requested it. |
| 709 | * |
| 710 | * This should be sent "before the main thread is started and before |
| 711 | * any application code has been executed". The thread ID in the message |
| 712 | * must be for the main thread. |
| 713 | */ |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 714 | bool JdwpState::PostVMStart() { |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 715 | JdwpSuspendPolicy suspend_policy; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 716 | ObjectId threadId = Dbg::GetThreadSelfId(); |
| 717 | |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 718 | if (options_->suspend) { |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 719 | suspend_policy = SP_ALL; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 720 | } else { |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 721 | suspend_policy = SP_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 722 | } |
| 723 | |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 724 | ExpandBuf* pReq = eventPrep(); |
| 725 | { |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 726 | MutexLock mu(Thread::Current(), event_list_lock_); // probably don't need this here |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 727 | |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 728 | VLOG(jdwp) << "EVENT: " << EK_VM_START; |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 729 | VLOG(jdwp) << " suspend_policy=" << suspend_policy; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 730 | |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 731 | expandBufAdd1(pReq, suspend_policy); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 732 | expandBufAdd4BE(pReq, 1); |
| 733 | |
| 734 | expandBufAdd1(pReq, EK_VM_START); |
| 735 | expandBufAdd4BE(pReq, 0); /* requestId */ |
| 736 | expandBufAdd8BE(pReq, threadId); |
| 737 | } |
| 738 | |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 739 | Dbg::ManageDeoptimization(); |
| 740 | |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 741 | /* send request and possibly suspend ourselves */ |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 742 | SendRequestAndPossiblySuspend(pReq, suspend_policy, threadId); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 743 | |
| 744 | return true; |
| 745 | } |
| 746 | |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 747 | /* |
| 748 | * A location of interest has been reached. This handles: |
| 749 | * Breakpoint |
| 750 | * SingleStep |
| 751 | * MethodEntry |
| 752 | * MethodExit |
| 753 | * These four types must be grouped together in a single response. The |
| 754 | * "eventFlags" indicates the type of event(s) that have happened. |
| 755 | * |
| 756 | * Valid mods: |
| 757 | * Count, ThreadOnly, ClassOnly, ClassMatch, ClassExclude, InstanceOnly |
| 758 | * LocationOnly (for breakpoint/step only) |
| 759 | * Step (for step only) |
| 760 | * |
| 761 | * Interesting test cases: |
| 762 | * - Put a breakpoint on a native method. Eclipse creates METHOD_ENTRY |
| 763 | * and METHOD_EXIT events with a ClassOnly mod on the method's class. |
| 764 | * - Use "run to line". Eclipse creates a BREAKPOINT with Count=1. |
| 765 | * - Single-step to a line with a breakpoint. Should get a single |
| 766 | * event message with both events in it. |
| 767 | */ |
Jeff Hao | 579b024 | 2013-11-18 13:16:49 -0800 | [diff] [blame] | 768 | bool JdwpState::PostLocationEvent(const JdwpLocation* pLoc, ObjectId thisPtr, int eventFlags, |
| 769 | const JValue* returnValue) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 770 | ModBasket basket; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 771 | basket.pLoc = pLoc; |
Elliott Hughes | 7484741 | 2012-06-20 18:10:21 -0700 | [diff] [blame] | 772 | basket.classId = pLoc->class_id; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 773 | basket.thisPtr = thisPtr; |
| 774 | basket.threadId = Dbg::GetThreadSelfId(); |
Elliott Hughes | 7484741 | 2012-06-20 18:10:21 -0700 | [diff] [blame] | 775 | basket.className = Dbg::GetClassName(pLoc->class_id); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 776 | |
| 777 | /* |
| 778 | * On rare occasions we may need to execute interpreted code in the VM |
| 779 | * while handling a request from the debugger. Don't fire breakpoints |
| 780 | * while doing so. (I don't think we currently do this at all, so |
| 781 | * this is mostly paranoia.) |
| 782 | */ |
Elliott Hughes | a21039c | 2012-06-21 12:09:25 -0700 | [diff] [blame] | 783 | if (basket.threadId == debug_thread_id_) { |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 784 | VLOG(jdwp) << "Ignoring location event in JDWP thread"; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 785 | return false; |
| 786 | } |
| 787 | |
| 788 | /* |
| 789 | * The debugger variable display tab may invoke the interpreter to format |
| 790 | * complex objects. We want to ignore breakpoints and method entry/exit |
| 791 | * traps while working on behalf of the debugger. |
| 792 | * |
| 793 | * If we don't ignore them, the VM will get hung up, because we'll |
| 794 | * suspend on a breakpoint while the debugger is still waiting for its |
| 795 | * method invocation to complete. |
| 796 | */ |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 797 | if (InvokeInProgress()) { |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 798 | VLOG(jdwp) << "Not checking breakpoints during invoke (" << basket.className << ")"; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 799 | return false; |
| 800 | } |
| 801 | |
Elliott Hughes | 2aa2e39 | 2012-02-17 17:15:43 -0800 | [diff] [blame] | 802 | int match_count = 0; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 803 | ExpandBuf* pReq = NULL; |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 804 | JdwpSuspendPolicy suspend_policy = SP_NONE; |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 805 | { |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 806 | MutexLock mu(Thread::Current(), event_list_lock_); |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 807 | JdwpEvent** match_list = AllocMatchList(event_list_size_); |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 808 | if ((eventFlags & Dbg::kBreakpoint) != 0) { |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 809 | FindMatchingEvents(EK_BREAKPOINT, &basket, match_list, &match_count); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 810 | } |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 811 | if ((eventFlags & Dbg::kSingleStep) != 0) { |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 812 | FindMatchingEvents(EK_SINGLE_STEP, &basket, match_list, &match_count); |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 813 | } |
| 814 | if ((eventFlags & Dbg::kMethodEntry) != 0) { |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 815 | FindMatchingEvents(EK_METHOD_ENTRY, &basket, match_list, &match_count); |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 816 | } |
| 817 | if ((eventFlags & Dbg::kMethodExit) != 0) { |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 818 | FindMatchingEvents(EK_METHOD_EXIT, &basket, match_list, &match_count); |
Jeff Hao | 579b024 | 2013-11-18 13:16:49 -0800 | [diff] [blame] | 819 | FindMatchingEvents(EK_METHOD_EXIT_WITH_RETURN_VALUE, &basket, match_list, &match_count); |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 820 | } |
Elliott Hughes | 2aa2e39 | 2012-02-17 17:15:43 -0800 | [diff] [blame] | 821 | if (match_count != 0) { |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 822 | VLOG(jdwp) << "EVENT: " << match_list[0]->eventKind << "(" << match_count << " total) " |
Elliott Hughes | a96836a | 2013-01-17 12:27:49 -0800 | [diff] [blame] | 823 | << basket.className << "." << Dbg::GetMethodName(pLoc->method_id) |
Ian Rogers | d9e4e0c | 2014-01-23 20:11:40 -0800 | [diff] [blame^] | 824 | << StringPrintf(" thread=%#" PRIx64 " dex_pc=%#" PRIx64 ")", |
| 825 | basket.threadId, pLoc->dex_pc); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 826 | |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 827 | suspend_policy = scanSuspendPolicy(match_list, match_count); |
| 828 | VLOG(jdwp) << " suspend_policy=" << suspend_policy; |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 829 | |
| 830 | pReq = eventPrep(); |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 831 | expandBufAdd1(pReq, suspend_policy); |
Elliott Hughes | 2aa2e39 | 2012-02-17 17:15:43 -0800 | [diff] [blame] | 832 | expandBufAdd4BE(pReq, match_count); |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 833 | |
Elliott Hughes | 2aa2e39 | 2012-02-17 17:15:43 -0800 | [diff] [blame] | 834 | for (int i = 0; i < match_count; i++) { |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 835 | expandBufAdd1(pReq, match_list[i]->eventKind); |
| 836 | expandBufAdd4BE(pReq, match_list[i]->requestId); |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 837 | expandBufAdd8BE(pReq, basket.threadId); |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 838 | expandBufAddLocation(pReq, *pLoc); |
Jeff Hao | 579b024 | 2013-11-18 13:16:49 -0800 | [diff] [blame] | 839 | if (match_list[i]->eventKind == EK_METHOD_EXIT_WITH_RETURN_VALUE) { |
| 840 | Dbg::OutputMethodReturnValue(pLoc->method_id, returnValue, pReq); |
| 841 | } |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 842 | } |
| 843 | } |
| 844 | |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 845 | CleanupMatchList(match_list, match_count); |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 846 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 847 | |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 848 | Dbg::ManageDeoptimization(); |
| 849 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 850 | SendRequestAndPossiblySuspend(pReq, suspend_policy, basket.threadId); |
Elliott Hughes | 2aa2e39 | 2012-02-17 17:15:43 -0800 | [diff] [blame] | 851 | return match_count != 0; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 852 | } |
| 853 | |
| 854 | /* |
| 855 | * A thread is starting or stopping. |
| 856 | * |
| 857 | * Valid mods: |
| 858 | * Count, ThreadOnly |
| 859 | */ |
Elliott Hughes | 234ab15 | 2011-10-26 14:02:26 -0700 | [diff] [blame] | 860 | bool JdwpState::PostThreadChange(ObjectId threadId, bool start) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 861 | CHECK_EQ(threadId, Dbg::GetThreadSelfId()); |
| 862 | |
| 863 | /* |
| 864 | * I don't think this can happen. |
| 865 | */ |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 866 | if (InvokeInProgress()) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 867 | LOG(WARNING) << "Not posting thread change during invoke"; |
| 868 | return false; |
| 869 | } |
| 870 | |
| 871 | ModBasket basket; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 872 | basket.threadId = threadId; |
| 873 | |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 874 | ExpandBuf* pReq = NULL; |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 875 | JdwpSuspendPolicy suspend_policy = SP_NONE; |
Elliott Hughes | 2aa2e39 | 2012-02-17 17:15:43 -0800 | [diff] [blame] | 876 | int match_count = 0; |
Elliott Hughes | 234ab15 | 2011-10-26 14:02:26 -0700 | [diff] [blame] | 877 | { |
| 878 | // Don't allow the list to be updated while we scan it. |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 879 | MutexLock mu(Thread::Current(), event_list_lock_); |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 880 | JdwpEvent** match_list = AllocMatchList(event_list_size_); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 881 | |
Elliott Hughes | 234ab15 | 2011-10-26 14:02:26 -0700 | [diff] [blame] | 882 | if (start) { |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 883 | FindMatchingEvents(EK_THREAD_START, &basket, match_list, &match_count); |
Elliott Hughes | 234ab15 | 2011-10-26 14:02:26 -0700 | [diff] [blame] | 884 | } else { |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 885 | FindMatchingEvents(EK_THREAD_DEATH, &basket, match_list, &match_count); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 886 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 887 | |
Elliott Hughes | 2aa2e39 | 2012-02-17 17:15:43 -0800 | [diff] [blame] | 888 | if (match_count != 0) { |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 889 | VLOG(jdwp) << "EVENT: " << match_list[0]->eventKind << "(" << match_count << " total) " |
Ian Rogers | d9e4e0c | 2014-01-23 20:11:40 -0800 | [diff] [blame^] | 890 | << StringPrintf("thread=%#" PRIx64, basket.threadId) << ")"; |
Elliott Hughes | 234ab15 | 2011-10-26 14:02:26 -0700 | [diff] [blame] | 891 | |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 892 | suspend_policy = scanSuspendPolicy(match_list, match_count); |
| 893 | VLOG(jdwp) << " suspend_policy=" << suspend_policy; |
Elliott Hughes | 234ab15 | 2011-10-26 14:02:26 -0700 | [diff] [blame] | 894 | |
| 895 | pReq = eventPrep(); |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 896 | expandBufAdd1(pReq, suspend_policy); |
Elliott Hughes | 2aa2e39 | 2012-02-17 17:15:43 -0800 | [diff] [blame] | 897 | expandBufAdd4BE(pReq, match_count); |
Elliott Hughes | 234ab15 | 2011-10-26 14:02:26 -0700 | [diff] [blame] | 898 | |
Elliott Hughes | 2aa2e39 | 2012-02-17 17:15:43 -0800 | [diff] [blame] | 899 | for (int i = 0; i < match_count; i++) { |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 900 | expandBufAdd1(pReq, match_list[i]->eventKind); |
| 901 | expandBufAdd4BE(pReq, match_list[i]->requestId); |
Elliott Hughes | 234ab15 | 2011-10-26 14:02:26 -0700 | [diff] [blame] | 902 | expandBufAdd8BE(pReq, basket.threadId); |
| 903 | } |
| 904 | } |
| 905 | |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 906 | CleanupMatchList(match_list, match_count); |
Elliott Hughes | 234ab15 | 2011-10-26 14:02:26 -0700 | [diff] [blame] | 907 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 908 | |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 909 | Dbg::ManageDeoptimization(); |
| 910 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 911 | SendRequestAndPossiblySuspend(pReq, suspend_policy, basket.threadId); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 912 | |
Elliott Hughes | 2aa2e39 | 2012-02-17 17:15:43 -0800 | [diff] [blame] | 913 | return match_count != 0; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 914 | } |
| 915 | |
| 916 | /* |
| 917 | * Send a polite "VM is dying" message to the debugger. |
| 918 | * |
| 919 | * Skips the usual "event token" stuff. |
| 920 | */ |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 921 | bool JdwpState::PostVMDeath() { |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 922 | VLOG(jdwp) << "EVENT: " << EK_VM_DEATH; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 923 | |
| 924 | ExpandBuf* pReq = eventPrep(); |
| 925 | expandBufAdd1(pReq, SP_NONE); |
| 926 | expandBufAdd4BE(pReq, 1); |
| 927 | |
| 928 | expandBufAdd1(pReq, EK_VM_DEATH); |
| 929 | expandBufAdd4BE(pReq, 0); |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 930 | EventFinish(pReq); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 931 | return true; |
| 932 | } |
| 933 | |
| 934 | /* |
| 935 | * An exception has been thrown. It may or may not have been caught. |
| 936 | * |
| 937 | * Valid mods: |
| 938 | * Count, ThreadOnly, ClassOnly, ClassMatch, ClassExclude, LocationOnly, |
| 939 | * ExceptionOnly, InstanceOnly |
| 940 | * |
| 941 | * The "exceptionId" has not been added to the GC-visible object registry, |
| 942 | * because there's a pretty good chance that we're not going to send it |
| 943 | * up the debugger. |
| 944 | */ |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 945 | bool JdwpState::PostException(const JdwpLocation* pThrowLoc, |
Elliott Hughes | 7484741 | 2012-06-20 18:10:21 -0700 | [diff] [blame] | 946 | ObjectId exceptionId, RefTypeId exceptionClassId, |
| 947 | const JdwpLocation* pCatchLoc, ObjectId thisPtr) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 948 | ModBasket basket; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 949 | |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 950 | basket.pLoc = pThrowLoc; |
Elliott Hughes | 7484741 | 2012-06-20 18:10:21 -0700 | [diff] [blame] | 951 | basket.classId = pThrowLoc->class_id; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 952 | basket.threadId = Dbg::GetThreadSelfId(); |
Elliott Hughes | c308a5d | 2012-02-16 17:12:06 -0800 | [diff] [blame] | 953 | basket.className = Dbg::GetClassName(basket.classId); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 954 | basket.excepClassId = exceptionClassId; |
Elliott Hughes | 7484741 | 2012-06-20 18:10:21 -0700 | [diff] [blame] | 955 | basket.caught = (pCatchLoc->class_id != 0); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 956 | basket.thisPtr = thisPtr; |
| 957 | |
| 958 | /* don't try to post an exception caused by the debugger */ |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 959 | if (InvokeInProgress()) { |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 960 | VLOG(jdwp) << "Not posting exception hit during invoke (" << basket.className << ")"; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 961 | return false; |
| 962 | } |
| 963 | |
Elliott Hughes | 2aa2e39 | 2012-02-17 17:15:43 -0800 | [diff] [blame] | 964 | int match_count = 0; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 965 | ExpandBuf* pReq = NULL; |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 966 | JdwpSuspendPolicy suspend_policy = SP_NONE; |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 967 | { |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 968 | MutexLock mu(Thread::Current(), event_list_lock_); |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 969 | JdwpEvent** match_list = AllocMatchList(event_list_size_); |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 970 | FindMatchingEvents(EK_EXCEPTION, &basket, match_list, &match_count); |
Elliott Hughes | 2aa2e39 | 2012-02-17 17:15:43 -0800 | [diff] [blame] | 971 | if (match_count != 0) { |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 972 | VLOG(jdwp) << "EVENT: " << match_list[0]->eventKind << "(" << match_count << " total)" |
Ian Rogers | d9e4e0c | 2014-01-23 20:11:40 -0800 | [diff] [blame^] | 973 | << StringPrintf(" thread=%#" PRIx64, basket.threadId) |
| 974 | << StringPrintf(" exceptId=%#" PRIx64, exceptionId) |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 975 | << " caught=" << basket.caught << ")" |
| 976 | << " throw: " << *pThrowLoc; |
Elliott Hughes | 7484741 | 2012-06-20 18:10:21 -0700 | [diff] [blame] | 977 | if (pCatchLoc->class_id == 0) { |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 978 | VLOG(jdwp) << " catch: (not caught)"; |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 979 | } else { |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 980 | VLOG(jdwp) << " catch: " << *pCatchLoc; |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 981 | } |
| 982 | |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 983 | suspend_policy = scanSuspendPolicy(match_list, match_count); |
| 984 | VLOG(jdwp) << " suspend_policy=" << suspend_policy; |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 985 | |
| 986 | pReq = eventPrep(); |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 987 | expandBufAdd1(pReq, suspend_policy); |
Elliott Hughes | 2aa2e39 | 2012-02-17 17:15:43 -0800 | [diff] [blame] | 988 | expandBufAdd4BE(pReq, match_count); |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 989 | |
Elliott Hughes | 2aa2e39 | 2012-02-17 17:15:43 -0800 | [diff] [blame] | 990 | for (int i = 0; i < match_count; i++) { |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 991 | expandBufAdd1(pReq, match_list[i]->eventKind); |
| 992 | expandBufAdd4BE(pReq, match_list[i]->requestId); |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 993 | expandBufAdd8BE(pReq, basket.threadId); |
| 994 | |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 995 | expandBufAddLocation(pReq, *pThrowLoc); |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 996 | expandBufAdd1(pReq, JT_OBJECT); |
| 997 | expandBufAdd8BE(pReq, exceptionId); |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 998 | expandBufAddLocation(pReq, *pCatchLoc); |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 999 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1000 | } |
| 1001 | |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 1002 | CleanupMatchList(match_list, match_count); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1003 | } |
| 1004 | |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 1005 | Dbg::ManageDeoptimization(); |
| 1006 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1007 | SendRequestAndPossiblySuspend(pReq, suspend_policy, basket.threadId); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1008 | |
Elliott Hughes | 2aa2e39 | 2012-02-17 17:15:43 -0800 | [diff] [blame] | 1009 | return match_count != 0; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1010 | } |
| 1011 | |
| 1012 | /* |
| 1013 | * Announce that a class has been loaded. |
| 1014 | * |
| 1015 | * Valid mods: |
| 1016 | * Count, ThreadOnly, ClassOnly, ClassMatch, ClassExclude |
| 1017 | */ |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1018 | bool JdwpState::PostClassPrepare(JdwpTypeTag tag, RefTypeId refTypeId, const std::string& signature, |
| 1019 | int status) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1020 | ModBasket basket; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1021 | |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1022 | basket.classId = refTypeId; |
| 1023 | basket.threadId = Dbg::GetThreadSelfId(); |
Elliott Hughes | c308a5d | 2012-02-16 17:12:06 -0800 | [diff] [blame] | 1024 | basket.className = Dbg::GetClassName(basket.classId); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1025 | |
| 1026 | /* suppress class prep caused by debugger */ |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 1027 | if (InvokeInProgress()) { |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 1028 | VLOG(jdwp) << "Not posting class prep caused by invoke (" << basket.className << ")"; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1029 | return false; |
| 1030 | } |
| 1031 | |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1032 | ExpandBuf* pReq = NULL; |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 1033 | JdwpSuspendPolicy suspend_policy = SP_NONE; |
| 1034 | int match_count = 0; |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 1035 | { |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 1036 | MutexLock mu(Thread::Current(), event_list_lock_); |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 1037 | JdwpEvent** match_list = AllocMatchList(event_list_size_); |
| 1038 | FindMatchingEvents(EK_CLASS_PREPARE, &basket, match_list, &match_count); |
Elliott Hughes | 2aa2e39 | 2012-02-17 17:15:43 -0800 | [diff] [blame] | 1039 | if (match_count != 0) { |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 1040 | VLOG(jdwp) << "EVENT: " << match_list[0]->eventKind << "(" << match_count << " total) " |
Ian Rogers | d9e4e0c | 2014-01-23 20:11:40 -0800 | [diff] [blame^] | 1041 | << StringPrintf("thread=%#" PRIx64, basket.threadId) << ") " << signature; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1042 | |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 1043 | suspend_policy = scanSuspendPolicy(match_list, match_count); |
| 1044 | VLOG(jdwp) << " suspend_policy=" << suspend_policy; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1045 | |
Elliott Hughes | a21039c | 2012-06-21 12:09:25 -0700 | [diff] [blame] | 1046 | if (basket.threadId == debug_thread_id_) { |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 1047 | /* |
| 1048 | * JDWP says that, for a class prep in the debugger thread, we |
| 1049 | * should set threadId to null and if any threads were supposed |
| 1050 | * to be suspended then we suspend all other threads. |
| 1051 | */ |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 1052 | VLOG(jdwp) << " NOTE: class prepare in debugger thread!"; |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 1053 | basket.threadId = 0; |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 1054 | if (suspend_policy == SP_EVENT_THREAD) { |
| 1055 | suspend_policy = SP_ALL; |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 1056 | } |
| 1057 | } |
| 1058 | |
| 1059 | pReq = eventPrep(); |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 1060 | expandBufAdd1(pReq, suspend_policy); |
Elliott Hughes | 2aa2e39 | 2012-02-17 17:15:43 -0800 | [diff] [blame] | 1061 | expandBufAdd4BE(pReq, match_count); |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 1062 | |
Elliott Hughes | 2aa2e39 | 2012-02-17 17:15:43 -0800 | [diff] [blame] | 1063 | for (int i = 0; i < match_count; i++) { |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 1064 | expandBufAdd1(pReq, match_list[i]->eventKind); |
| 1065 | expandBufAdd4BE(pReq, match_list[i]->requestId); |
Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 1066 | expandBufAdd8BE(pReq, basket.threadId); |
| 1067 | |
| 1068 | expandBufAdd1(pReq, tag); |
| 1069 | expandBufAdd8BE(pReq, refTypeId); |
| 1070 | expandBufAddUtf8String(pReq, signature); |
| 1071 | expandBufAdd4BE(pReq, status); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1072 | } |
| 1073 | } |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 1074 | CleanupMatchList(match_list, match_count); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1075 | } |
| 1076 | |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 1077 | Dbg::ManageDeoptimization(); |
| 1078 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1079 | SendRequestAndPossiblySuspend(pReq, suspend_policy, basket.threadId); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1080 | |
Elliott Hughes | 2aa2e39 | 2012-02-17 17:15:43 -0800 | [diff] [blame] | 1081 | return match_count != 0; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1082 | } |
| 1083 | |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1084 | /* |
| 1085 | * Send up a chunk of DDM data. |
| 1086 | * |
| 1087 | * While this takes the form of a JDWP "event", it doesn't interact with |
| 1088 | * other debugger traffic, and can't suspend the VM, so we skip all of |
| 1089 | * the fun event token gymnastics. |
| 1090 | */ |
Elliott Hughes | cccd84f | 2011-12-05 16:51:54 -0800 | [diff] [blame] | 1091 | void JdwpState::DdmSendChunkV(uint32_t type, const iovec* iov, int iov_count) { |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1092 | uint8_t header[kJDWPHeaderLen + 8]; |
| 1093 | size_t dataLen = 0; |
| 1094 | |
| 1095 | CHECK(iov != NULL); |
Elliott Hughes | cccd84f | 2011-12-05 16:51:54 -0800 | [diff] [blame] | 1096 | CHECK_GT(iov_count, 0); |
| 1097 | CHECK_LT(iov_count, 10); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1098 | |
| 1099 | /* |
| 1100 | * "Wrap" the contents of the iovec with a JDWP/DDMS header. We do |
| 1101 | * this by creating a new copy of the vector with space for the header. |
| 1102 | */ |
Brian Carlstrom | f529352 | 2013-07-19 00:24:00 -0700 | [diff] [blame] | 1103 | std::vector<iovec> wrapiov; |
| 1104 | wrapiov.push_back(iovec()); |
Elliott Hughes | cccd84f | 2011-12-05 16:51:54 -0800 | [diff] [blame] | 1105 | for (int i = 0; i < iov_count; i++) { |
Brian Carlstrom | f529352 | 2013-07-19 00:24:00 -0700 | [diff] [blame] | 1106 | wrapiov.push_back(iov[i]); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1107 | dataLen += iov[i].iov_len; |
| 1108 | } |
| 1109 | |
| 1110 | /* form the header (JDWP plus DDMS) */ |
Elliott Hughes | f7c3b66 | 2011-10-27 12:04:56 -0700 | [diff] [blame] | 1111 | Set4BE(header, sizeof(header) + dataLen); |
| 1112 | Set4BE(header+4, NextRequestSerial()); |
| 1113 | Set1(header+8, 0); /* flags */ |
| 1114 | Set1(header+9, kJDWPDdmCmdSet); |
| 1115 | Set1(header+10, kJDWPDdmCmd); |
| 1116 | Set4BE(header+11, type); |
| 1117 | Set4BE(header+15, dataLen); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1118 | |
| 1119 | wrapiov[0].iov_base = header; |
| 1120 | wrapiov[0].iov_len = sizeof(header); |
| 1121 | |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 1122 | // Try to avoid blocking GC during a send, but only safe when not using mutexes at a lower-level |
| 1123 | // than mutator for lock ordering reasons. |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1124 | Thread* self = Thread::Current(); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 1125 | bool safe_to_release_mutator_lock_over_send = !Locks::mutator_lock_->IsExclusiveHeld(self); |
| 1126 | if (safe_to_release_mutator_lock_over_send) { |
Brian Carlstrom | 38f85e4 | 2013-07-18 14:45:22 -0700 | [diff] [blame] | 1127 | for (size_t i = 0; i < kMutatorLock; ++i) { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 1128 | if (self->GetHeldMutex(static_cast<LockLevel>(i)) != NULL) { |
| 1129 | safe_to_release_mutator_lock_over_send = false; |
| 1130 | break; |
| 1131 | } |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 1132 | } |
| 1133 | } |
| 1134 | if (safe_to_release_mutator_lock_over_send) { |
| 1135 | // Change state to waiting to allow GC, ... while we're sending. |
| 1136 | self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSend); |
Brian Carlstrom | f529352 | 2013-07-19 00:24:00 -0700 | [diff] [blame] | 1137 | SendBufferedRequest(type, wrapiov); |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 1138 | self->TransitionFromSuspendedToRunnable(); |
| 1139 | } else { |
| 1140 | // Send and possibly block GC... |
Brian Carlstrom | f529352 | 2013-07-19 00:24:00 -0700 | [diff] [blame] | 1141 | SendBufferedRequest(type, wrapiov); |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 1142 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1143 | } |
| 1144 | |
| 1145 | } // namespace JDWP |
| 1146 | |
| 1147 | } // namespace art |