Andreas Gampe | 77708d9 | 2016-10-07 11:48:21 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2016 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
Andreas Gampe | 06c42a5 | 2017-07-26 14:17:14 -0700 | [diff] [blame] | 17 | #ifndef ART_OPENJDKJVMTI_EVENTS_INL_H_ |
| 18 | #define ART_OPENJDKJVMTI_EVENTS_INL_H_ |
Andreas Gampe | 77708d9 | 2016-10-07 11:48:21 -0700 | [diff] [blame] | 19 | |
Alex Light | 73afd32 | 2017-01-18 11:17:47 -0800 | [diff] [blame] | 20 | #include <array> |
Alex Light | 9df79b7 | 2017-09-12 08:57:31 -0700 | [diff] [blame] | 21 | #include <type_traits> |
| 22 | #include <tuple> |
Alex Light | 73afd32 | 2017-01-18 11:17:47 -0800 | [diff] [blame] | 23 | |
Alex Light | b6106d5 | 2017-10-18 15:02:15 -0700 | [diff] [blame] | 24 | #include "base/mutex-inl.h" |
Andreas Gampe | 77708d9 | 2016-10-07 11:48:21 -0700 | [diff] [blame] | 25 | #include "events.h" |
Vladimir Marko | a3ad0cd | 2018-05-04 10:06:38 +0100 | [diff] [blame] | 26 | #include "jni/jni_internal.h" |
Andreas Gampe | 373a9b5 | 2017-10-18 09:01:57 -0700 | [diff] [blame] | 27 | #include "nativehelper/scoped_local_ref.h" |
David Srbecky | 28f6cff | 2018-10-16 15:07:28 +0100 | [diff] [blame] | 28 | #include "runtime-inl.h" |
Alex Light | 9df79b7 | 2017-09-12 08:57:31 -0700 | [diff] [blame] | 29 | #include "scoped_thread_state_change-inl.h" |
Alex Light | 0aa7a5a | 2018-10-10 15:58:14 +0000 | [diff] [blame] | 30 | #include "stack.h" |
Alex Light | a26e349 | 2017-06-27 17:55:37 -0700 | [diff] [blame] | 31 | #include "ti_breakpoint.h" |
Alex Light | 0aa7a5a | 2018-10-10 15:58:14 +0000 | [diff] [blame] | 32 | #include "ti_thread.h" |
Andreas Gampe | 77708d9 | 2016-10-07 11:48:21 -0700 | [diff] [blame] | 33 | |
| 34 | #include "art_jvmti.h" |
| 35 | |
| 36 | namespace openjdkjvmti { |
| 37 | |
Alex Light | 73afd32 | 2017-01-18 11:17:47 -0800 | [diff] [blame] | 38 | static inline ArtJvmtiEvent GetArtJvmtiEvent(ArtJvmTiEnv* env, jvmtiEvent e) { |
| 39 | if (UNLIKELY(e == JVMTI_EVENT_CLASS_FILE_LOAD_HOOK)) { |
| 40 | if (env->capabilities.can_retransform_classes) { |
| 41 | return ArtJvmtiEvent::kClassFileLoadHookRetransformable; |
| 42 | } else { |
| 43 | return ArtJvmtiEvent::kClassFileLoadHookNonRetransformable; |
| 44 | } |
| 45 | } else { |
| 46 | return static_cast<ArtJvmtiEvent>(e); |
| 47 | } |
Alex Light | 40d87f4 | 2017-01-18 10:27:06 -0800 | [diff] [blame] | 48 | } |
| 49 | |
Andreas Gampe | 983c175 | 2017-01-23 19:46:56 -0800 | [diff] [blame] | 50 | namespace impl { |
Andreas Gampe | 77708d9 | 2016-10-07 11:48:21 -0700 | [diff] [blame] | 51 | |
Alex Light | b284f8d | 2017-11-21 00:00:48 +0000 | [diff] [blame] | 52 | // Helper for ensuring that the dispatch environment is sane. Events with JNIEnvs need to stash |
| 53 | // pending exceptions since they can cause new ones to be thrown. In accordance with the JVMTI |
| 54 | // specification we allow exceptions originating from events to overwrite the current exception, |
| 55 | // including exceptions originating from earlier events. |
Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 56 | class ScopedEventDispatchEnvironment final : public art::ValueObject { |
Alex Light | b284f8d | 2017-11-21 00:00:48 +0000 | [diff] [blame] | 57 | public: |
| 58 | ScopedEventDispatchEnvironment() : env_(nullptr), throw_(nullptr, nullptr) { |
| 59 | DCHECK_EQ(art::Thread::Current()->GetState(), art::ThreadState::kNative); |
| 60 | } |
| 61 | |
| 62 | explicit ScopedEventDispatchEnvironment(JNIEnv* env) |
| 63 | : env_(env), |
| 64 | throw_(env_, env_->ExceptionOccurred()) { |
| 65 | DCHECK_EQ(art::Thread::Current()->GetState(), art::ThreadState::kNative); |
| 66 | // The spec doesn't say how much local data should be there, so we just give 128 which seems |
| 67 | // likely to be enough for most cases. |
| 68 | env_->PushLocalFrame(128); |
| 69 | env_->ExceptionClear(); |
| 70 | } |
| 71 | |
| 72 | ~ScopedEventDispatchEnvironment() { |
| 73 | if (env_ != nullptr) { |
| 74 | if (throw_.get() != nullptr && !env_->ExceptionCheck()) { |
| 75 | // TODO It would be nice to add the overwritten exceptions to the suppressed exceptions list |
| 76 | // of the newest exception. |
| 77 | env_->Throw(throw_.get()); |
| 78 | } |
| 79 | env_->PopLocalFrame(nullptr); |
| 80 | } |
| 81 | DCHECK_EQ(art::Thread::Current()->GetState(), art::ThreadState::kNative); |
| 82 | } |
| 83 | |
| 84 | private: |
| 85 | JNIEnv* env_; |
| 86 | ScopedLocalRef<jthrowable> throw_; |
| 87 | |
| 88 | DISALLOW_COPY_AND_ASSIGN(ScopedEventDispatchEnvironment); |
| 89 | }; |
| 90 | |
Andreas Gampe | 983c175 | 2017-01-23 19:46:56 -0800 | [diff] [blame] | 91 | // Infrastructure to achieve type safety for event dispatch. |
Andreas Gampe | 27fa96c | 2016-10-07 15:05:24 -0700 | [diff] [blame] | 92 | |
Alex Light | d55b844 | 2019-10-15 15:46:07 -0700 | [diff] [blame] | 93 | #define FORALL_EVENT_TYPES(fn) \ |
| 94 | fn(VMInit, ArtJvmtiEvent::kVmInit) \ |
| 95 | fn(VMDeath, ArtJvmtiEvent::kVmDeath) \ |
| 96 | fn(ThreadStart, ArtJvmtiEvent::kThreadStart) \ |
| 97 | fn(ThreadEnd, ArtJvmtiEvent::kThreadEnd) \ |
| 98 | fn(ClassFileLoadHook, ArtJvmtiEvent::kClassFileLoadHookRetransformable) \ |
| 99 | fn(ClassFileLoadHook, ArtJvmtiEvent::kClassFileLoadHookNonRetransformable) \ |
| 100 | fn(ClassLoad, ArtJvmtiEvent::kClassLoad) \ |
| 101 | fn(ClassPrepare, ArtJvmtiEvent::kClassPrepare) \ |
| 102 | fn(VMStart, ArtJvmtiEvent::kVmStart) \ |
| 103 | fn(Exception, ArtJvmtiEvent::kException) \ |
| 104 | fn(ExceptionCatch, ArtJvmtiEvent::kExceptionCatch) \ |
| 105 | fn(SingleStep, ArtJvmtiEvent::kSingleStep) \ |
| 106 | fn(FramePop, ArtJvmtiEvent::kFramePop) \ |
| 107 | fn(Breakpoint, ArtJvmtiEvent::kBreakpoint) \ |
| 108 | fn(FieldAccess, ArtJvmtiEvent::kFieldAccess) \ |
| 109 | fn(FieldModification, ArtJvmtiEvent::kFieldModification) \ |
| 110 | fn(MethodEntry, ArtJvmtiEvent::kMethodEntry) \ |
| 111 | fn(MethodExit, ArtJvmtiEvent::kMethodExit) \ |
| 112 | fn(NativeMethodBind, ArtJvmtiEvent::kNativeMethodBind) \ |
| 113 | fn(CompiledMethodLoad, ArtJvmtiEvent::kCompiledMethodLoad) \ |
| 114 | fn(CompiledMethodUnload, ArtJvmtiEvent::kCompiledMethodUnload) \ |
| 115 | fn(DynamicCodeGenerated, ArtJvmtiEvent::kDynamicCodeGenerated) \ |
| 116 | fn(DataDumpRequest, ArtJvmtiEvent::kDataDumpRequest) \ |
| 117 | fn(MonitorWait, ArtJvmtiEvent::kMonitorWait) \ |
| 118 | fn(MonitorWaited, ArtJvmtiEvent::kMonitorWaited) \ |
| 119 | fn(MonitorContendedEnter, ArtJvmtiEvent::kMonitorContendedEnter) \ |
| 120 | fn(MonitorContendedEntered, ArtJvmtiEvent::kMonitorContendedEntered) \ |
| 121 | fn(ResourceExhausted, ArtJvmtiEvent::kResourceExhausted) \ |
| 122 | fn(GarbageCollectionStart, ArtJvmtiEvent::kGarbageCollectionStart) \ |
| 123 | fn(GarbageCollectionFinish, ArtJvmtiEvent::kGarbageCollectionFinish) \ |
| 124 | fn(ObjectFree, ArtJvmtiEvent::kObjectFree) \ |
| 125 | fn(VMObjectAlloc, ArtJvmtiEvent::kVmObjectAlloc) \ |
| 126 | fn(DdmPublishChunk, ArtJvmtiEvent::kDdmPublishChunk) \ |
| 127 | fn(ObsoleteObjectCreated, ArtJvmtiEvent::kObsoleteObjectCreated) \ |
| 128 | fn(StructuralDexFileLoadHook, ArtJvmtiEvent::kStructuralDexFileLoadHook) |
Andreas Gampe | 983c175 | 2017-01-23 19:46:56 -0800 | [diff] [blame] | 129 | |
| 130 | template <ArtJvmtiEvent kEvent> |
| 131 | struct EventFnType { |
| 132 | }; |
| 133 | |
Alex Light | 8c2b929 | 2017-11-09 13:21:01 -0800 | [diff] [blame] | 134 | #define EVENT_FN_TYPE(name, enum_name) \ |
| 135 | template <> \ |
| 136 | struct EventFnType<enum_name> { \ |
| 137 | using type = decltype(ArtJvmtiEventCallbacks().name); \ |
Andreas Gampe | 983c175 | 2017-01-23 19:46:56 -0800 | [diff] [blame] | 138 | }; |
| 139 | |
| 140 | FORALL_EVENT_TYPES(EVENT_FN_TYPE) |
| 141 | |
| 142 | #undef EVENT_FN_TYPE |
| 143 | |
Alex Light | b284f8d | 2017-11-21 00:00:48 +0000 | [diff] [blame] | 144 | #define MAKE_EVENT_HANDLER_FUNC(name, enum_name) \ |
| 145 | template<> \ |
| 146 | struct EventHandlerFunc<enum_name> { \ |
| 147 | using EventFnType = typename impl::EventFnType<enum_name>::type; \ |
| 148 | explicit EventHandlerFunc(ArtJvmTiEnv* env) \ |
| 149 | : env_(env), \ |
| 150 | fn_(env_->event_callbacks == nullptr ? nullptr : env_->event_callbacks->name) { } \ |
| 151 | \ |
| 152 | template <typename ...Args> \ |
| 153 | ALWAYS_INLINE \ |
| 154 | void ExecuteCallback(JNIEnv* jnienv, Args... args) const { \ |
| 155 | if (fn_ != nullptr) { \ |
| 156 | ScopedEventDispatchEnvironment sede(jnienv); \ |
| 157 | DoExecute(jnienv, args...); \ |
| 158 | } \ |
| 159 | } \ |
| 160 | \ |
| 161 | template <typename ...Args> \ |
| 162 | ALWAYS_INLINE \ |
| 163 | void ExecuteCallback(Args... args) const { \ |
| 164 | if (fn_ != nullptr) { \ |
| 165 | ScopedEventDispatchEnvironment sede; \ |
| 166 | DoExecute(args...); \ |
| 167 | } \ |
| 168 | } \ |
| 169 | \ |
| 170 | private: \ |
| 171 | template <typename ...Args> \ |
| 172 | ALWAYS_INLINE \ |
| 173 | inline void DoExecute(Args... args) const { \ |
| 174 | static_assert(std::is_same<EventFnType, void(*)(jvmtiEnv*, Args...)>::value, \ |
| 175 | "Unexpected different type of ExecuteCallback"); \ |
| 176 | fn_(env_, args...); \ |
| 177 | } \ |
| 178 | \ |
| 179 | public: \ |
| 180 | ArtJvmTiEnv* env_; \ |
| 181 | EventFnType fn_; \ |
| 182 | }; |
Andreas Gampe | 983c175 | 2017-01-23 19:46:56 -0800 | [diff] [blame] | 183 | |
Alex Light | b284f8d | 2017-11-21 00:00:48 +0000 | [diff] [blame] | 184 | FORALL_EVENT_TYPES(MAKE_EVENT_HANDLER_FUNC) |
Andreas Gampe | 77708d9 | 2016-10-07 11:48:21 -0700 | [diff] [blame] | 185 | |
Alex Light | b284f8d | 2017-11-21 00:00:48 +0000 | [diff] [blame] | 186 | #undef MAKE_EVENT_HANDLER_FUNC |
Andreas Gampe | 983c175 | 2017-01-23 19:46:56 -0800 | [diff] [blame] | 187 | |
| 188 | #undef FORALL_EVENT_TYPES |
| 189 | |
| 190 | } // namespace impl |
| 191 | |
Alex Light | b284f8d | 2017-11-21 00:00:48 +0000 | [diff] [blame] | 192 | template <ArtJvmtiEvent kEvent, typename ...Args> |
| 193 | inline std::vector<impl::EventHandlerFunc<kEvent>> EventHandler::CollectEvents(art::Thread* thread, |
| 194 | Args... args) const { |
Alex Light | 2a96fe8 | 2018-01-22 17:45:02 -0800 | [diff] [blame] | 195 | art::ReaderMutexLock mu(thread, envs_lock_); |
Alex Light | b284f8d | 2017-11-21 00:00:48 +0000 | [diff] [blame] | 196 | std::vector<impl::EventHandlerFunc<kEvent>> handlers; |
| 197 | for (ArtJvmTiEnv* env : envs) { |
| 198 | if (ShouldDispatch<kEvent>(env, thread, args...)) { |
| 199 | impl::EventHandlerFunc<kEvent> h(env); |
| 200 | handlers.push_back(h); |
| 201 | } |
| 202 | } |
| 203 | return handlers; |
| 204 | } |
| 205 | |
Andreas Gampe | 983c175 | 2017-01-23 19:46:56 -0800 | [diff] [blame] | 206 | // C++ does not allow partial template function specialization. The dispatch for our separated |
| 207 | // ClassFileLoadHook event types is the same, so use this helper for code deduplication. |
Andreas Gampe | 983c175 | 2017-01-23 19:46:56 -0800 | [diff] [blame] | 208 | template <ArtJvmtiEvent kEvent> |
Alex Light | 6ac5750 | 2017-01-19 15:05:06 -0800 | [diff] [blame] | 209 | inline void EventHandler::DispatchClassFileLoadHookEvent(art::Thread* thread, |
Alex Light | 6ac5750 | 2017-01-19 15:05:06 -0800 | [diff] [blame] | 210 | JNIEnv* jnienv, |
| 211 | jclass class_being_redefined, |
| 212 | jobject loader, |
| 213 | const char* name, |
| 214 | jobject protection_domain, |
| 215 | jint class_data_len, |
| 216 | const unsigned char* class_data, |
| 217 | jint* new_class_data_len, |
| 218 | unsigned char** new_class_data) const { |
Alex Light | b284f8d | 2017-11-21 00:00:48 +0000 | [diff] [blame] | 219 | art::ScopedThreadStateChange stsc(thread, art::ThreadState::kNative); |
Andreas Gampe | 983c175 | 2017-01-23 19:46:56 -0800 | [diff] [blame] | 220 | static_assert(kEvent == ArtJvmtiEvent::kClassFileLoadHookRetransformable || |
Alex Light | d55b844 | 2019-10-15 15:46:07 -0700 | [diff] [blame] | 221 | kEvent == ArtJvmtiEvent::kClassFileLoadHookNonRetransformable || |
| 222 | kEvent == ArtJvmtiEvent::kStructuralDexFileLoadHook, "Unsupported event"); |
Alex Light | 5127178 | 2017-03-24 17:28:30 -0700 | [diff] [blame] | 223 | DCHECK(*new_class_data == nullptr); |
Alex Light | 6ac5750 | 2017-01-19 15:05:06 -0800 | [diff] [blame] | 224 | jint current_len = class_data_len; |
| 225 | unsigned char* current_class_data = const_cast<unsigned char*>(class_data); |
Alex Light | b284f8d | 2017-11-21 00:00:48 +0000 | [diff] [blame] | 226 | std::vector<impl::EventHandlerFunc<kEvent>> handlers = |
| 227 | CollectEvents<kEvent>(thread, |
| 228 | jnienv, |
| 229 | class_being_redefined, |
| 230 | loader, |
| 231 | name, |
| 232 | protection_domain, |
| 233 | class_data_len, |
| 234 | class_data, |
| 235 | new_class_data_len, |
| 236 | new_class_data); |
Alex Light | 6ac5750 | 2017-01-19 15:05:06 -0800 | [diff] [blame] | 237 | ArtJvmTiEnv* last_env = nullptr; |
Alex Light | b284f8d | 2017-11-21 00:00:48 +0000 | [diff] [blame] | 238 | for (const impl::EventHandlerFunc<kEvent>& event : handlers) { |
Alex Light | 9df79b7 | 2017-09-12 08:57:31 -0700 | [diff] [blame] | 239 | jint new_len = 0; |
| 240 | unsigned char* new_data = nullptr; |
Alex Light | b284f8d | 2017-11-21 00:00:48 +0000 | [diff] [blame] | 241 | ExecuteCallback<kEvent>(event, |
| 242 | jnienv, |
| 243 | class_being_redefined, |
| 244 | loader, |
| 245 | name, |
| 246 | protection_domain, |
| 247 | current_len, |
| 248 | static_cast<const unsigned char*>(current_class_data), |
| 249 | &new_len, |
| 250 | &new_data); |
Alex Light | 9df79b7 | 2017-09-12 08:57:31 -0700 | [diff] [blame] | 251 | if (new_data != nullptr && new_data != current_class_data) { |
| 252 | // Destroy the data the last transformer made. We skip this if the previous state was the |
| 253 | // initial one since we don't know here which jvmtiEnv allocated it. |
| 254 | // NB Currently this doesn't matter since all allocations just go to malloc but in the |
| 255 | // future we might have jvmtiEnv's keep track of their allocations for leak-checking. |
| 256 | if (last_env != nullptr) { |
| 257 | last_env->Deallocate(current_class_data); |
Alex Light | b7edcda | 2017-04-27 13:20:31 -0700 | [diff] [blame] | 258 | } |
Alex Light | b284f8d | 2017-11-21 00:00:48 +0000 | [diff] [blame] | 259 | last_env = event.env_; |
Alex Light | 9df79b7 | 2017-09-12 08:57:31 -0700 | [diff] [blame] | 260 | current_class_data = new_data; |
| 261 | current_len = new_len; |
Alex Light | 6ac5750 | 2017-01-19 15:05:06 -0800 | [diff] [blame] | 262 | } |
| 263 | } |
| 264 | if (last_env != nullptr) { |
| 265 | *new_class_data_len = current_len; |
| 266 | *new_class_data = current_class_data; |
| 267 | } |
| 268 | } |
| 269 | |
Andreas Gampe | 983c175 | 2017-01-23 19:46:56 -0800 | [diff] [blame] | 270 | // Our goal for DispatchEvent: Do not allow implicit type conversion. Types of ...args must match |
| 271 | // exactly the argument types of the corresponding Jvmti kEvent function pointer. |
Alex Light | 6ac5750 | 2017-01-19 15:05:06 -0800 | [diff] [blame] | 272 | |
Andreas Gampe | 983c175 | 2017-01-23 19:46:56 -0800 | [diff] [blame] | 273 | template <ArtJvmtiEvent kEvent, typename ...Args> |
Andreas Gampe | a1705ea | 2017-03-28 20:12:13 -0700 | [diff] [blame] | 274 | inline void EventHandler::DispatchEvent(art::Thread* thread, Args... args) const { |
Alex Light | b284f8d | 2017-11-21 00:00:48 +0000 | [diff] [blame] | 275 | art::ScopedThreadStateChange stsc(thread, art::ThreadState::kNative); |
Alex Light | 9df79b7 | 2017-09-12 08:57:31 -0700 | [diff] [blame] | 276 | static_assert(!std::is_same<JNIEnv*, |
| 277 | typename std::decay_t< |
| 278 | std::tuple_element_t<0, std::tuple<Args..., nullptr_t>>>>::value, |
| 279 | "Should be calling DispatchEvent with explicit JNIEnv* argument!"); |
| 280 | DCHECK(thread == nullptr || !thread->IsExceptionPending()); |
Alex Light | b284f8d | 2017-11-21 00:00:48 +0000 | [diff] [blame] | 281 | std::vector<impl::EventHandlerFunc<kEvent>> events = CollectEvents<kEvent>(thread, args...); |
| 282 | for (auto event : events) { |
| 283 | ExecuteCallback<kEvent>(event, args...); |
Andreas Gampe | a1705ea | 2017-03-28 20:12:13 -0700 | [diff] [blame] | 284 | } |
| 285 | } |
| 286 | |
Alex Light | b7edcda | 2017-04-27 13:20:31 -0700 | [diff] [blame] | 287 | template <ArtJvmtiEvent kEvent, typename ...Args> |
| 288 | inline void EventHandler::DispatchEvent(art::Thread* thread, JNIEnv* jnienv, Args... args) const { |
Alex Light | b284f8d | 2017-11-21 00:00:48 +0000 | [diff] [blame] | 289 | art::ScopedThreadStateChange stsc(thread, art::ThreadState::kNative); |
| 290 | std::vector<impl::EventHandlerFunc<kEvent>> events = CollectEvents<kEvent>(thread, |
| 291 | jnienv, |
| 292 | args...); |
| 293 | for (auto event : events) { |
| 294 | ExecuteCallback<kEvent>(event, jnienv, args...); |
Alex Light | b7edcda | 2017-04-27 13:20:31 -0700 | [diff] [blame] | 295 | } |
| 296 | } |
| 297 | |
Andreas Gampe | a1705ea | 2017-03-28 20:12:13 -0700 | [diff] [blame] | 298 | template <ArtJvmtiEvent kEvent, typename ...Args> |
Alex Light | 9df79b7 | 2017-09-12 08:57:31 -0700 | [diff] [blame] | 299 | inline void EventHandler::DispatchEventOnEnv( |
| 300 | ArtJvmTiEnv* env, art::Thread* thread, JNIEnv* jnienv, Args... args) const { |
| 301 | DCHECK(env != nullptr); |
| 302 | if (ShouldDispatch<kEvent, JNIEnv*, Args...>(env, thread, jnienv, args...)) { |
Alex Light | b284f8d | 2017-11-21 00:00:48 +0000 | [diff] [blame] | 303 | art::ScopedThreadStateChange stsc(thread, art::ThreadState::kNative); |
| 304 | impl::EventHandlerFunc<kEvent> func(env); |
| 305 | ExecuteCallback<kEvent>(func, jnienv, args...); |
Andreas Gampe | 77708d9 | 2016-10-07 11:48:21 -0700 | [diff] [blame] | 306 | } |
| 307 | } |
| 308 | |
Alex Light | 9df79b7 | 2017-09-12 08:57:31 -0700 | [diff] [blame] | 309 | template <ArtJvmtiEvent kEvent, typename ...Args> |
| 310 | inline void EventHandler::DispatchEventOnEnv( |
| 311 | ArtJvmTiEnv* env, art::Thread* thread, Args... args) const { |
| 312 | static_assert(!std::is_same<JNIEnv*, |
| 313 | typename std::decay_t< |
| 314 | std::tuple_element_t<0, std::tuple<Args..., nullptr_t>>>>::value, |
| 315 | "Should be calling DispatchEventOnEnv with explicit JNIEnv* argument!"); |
Alex Light | b284f8d | 2017-11-21 00:00:48 +0000 | [diff] [blame] | 316 | DCHECK(env != nullptr); |
| 317 | if (ShouldDispatch<kEvent, Args...>(env, thread, args...)) { |
| 318 | art::ScopedThreadStateChange stsc(thread, art::ThreadState::kNative); |
| 319 | impl::EventHandlerFunc<kEvent> func(env); |
| 320 | ExecuteCallback<kEvent>(func, args...); |
Alex Light | 9df79b7 | 2017-09-12 08:57:31 -0700 | [diff] [blame] | 321 | } |
| 322 | } |
| 323 | |
Alex Light | 72d7e94 | 2019-07-23 13:10:20 -0700 | [diff] [blame] | 324 | template <> |
| 325 | inline void EventHandler::DispatchEventOnEnv<ArtJvmtiEvent::kObsoleteObjectCreated>( |
| 326 | ArtJvmTiEnv* env, art::Thread* thread, jlong* obsolete_tag, jlong* new_tag) const { |
| 327 | static constexpr ArtJvmtiEvent kEvent = ArtJvmtiEvent::kObsoleteObjectCreated; |
| 328 | DCHECK(env != nullptr); |
| 329 | if (ShouldDispatch<kEvent>(env, thread, obsolete_tag, new_tag)) { |
| 330 | art::ScopedThreadStateChange stsc(thread, art::ThreadState::kNative); |
| 331 | impl::EventHandlerFunc<kEvent> func(env); |
| 332 | ExecuteCallback<kEvent>(func, obsolete_tag, new_tag); |
| 333 | } else { |
| 334 | // Unlike most others this has a default action to make sure that agents without knowledge of |
| 335 | // this extension get reasonable behavior. |
| 336 | jlong temp = *obsolete_tag; |
| 337 | *obsolete_tag = *new_tag; |
| 338 | *new_tag = temp; |
| 339 | } |
| 340 | } |
| 341 | |
Alex Light | b284f8d | 2017-11-21 00:00:48 +0000 | [diff] [blame] | 342 | template <ArtJvmtiEvent kEvent, typename ...Args> |
| 343 | inline void EventHandler::ExecuteCallback(impl::EventHandlerFunc<kEvent> handler, Args... args) { |
| 344 | handler.ExecuteCallback(args...); |
| 345 | } |
| 346 | |
| 347 | template <ArtJvmtiEvent kEvent, typename ...Args> |
| 348 | inline void EventHandler::ExecuteCallback(impl::EventHandlerFunc<kEvent> handler, |
| 349 | JNIEnv* jnienv, |
| 350 | Args... args) { |
| 351 | handler.ExecuteCallback(jnienv, args...); |
| 352 | } |
| 353 | |
Alex Light | 9df79b7 | 2017-09-12 08:57:31 -0700 | [diff] [blame] | 354 | // Events that need custom logic for if we send the event but are otherwise normal. This includes |
| 355 | // the kBreakpoint, kFramePop, kFieldAccess, and kFieldModification events. |
| 356 | |
Alex Light | a26e349 | 2017-06-27 17:55:37 -0700 | [diff] [blame] | 357 | // Need to give custom specializations for Breakpoint since it needs to filter out which particular |
| 358 | // methods/dex_pcs agents get notified on. |
| 359 | template <> |
Alex Light | 9df79b7 | 2017-09-12 08:57:31 -0700 | [diff] [blame] | 360 | inline bool EventHandler::ShouldDispatch<ArtJvmtiEvent::kBreakpoint>( |
| 361 | ArtJvmTiEnv* env, |
| 362 | art::Thread* thread, |
| 363 | JNIEnv* jnienv ATTRIBUTE_UNUSED, |
| 364 | jthread jni_thread ATTRIBUTE_UNUSED, |
| 365 | jmethodID jmethod, |
| 366 | jlocation location) const { |
Alex Light | b6106d5 | 2017-10-18 15:02:15 -0700 | [diff] [blame] | 367 | art::ReaderMutexLock lk(art::Thread::Current(), env->event_info_mutex_); |
Alex Light | a26e349 | 2017-06-27 17:55:37 -0700 | [diff] [blame] | 368 | art::ArtMethod* method = art::jni::DecodeArtMethod(jmethod); |
Alex Light | 9df79b7 | 2017-09-12 08:57:31 -0700 | [diff] [blame] | 369 | return ShouldDispatchOnThread<ArtJvmtiEvent::kBreakpoint>(env, thread) && |
| 370 | env->breakpoints.find({method, location}) != env->breakpoints.end(); |
Alex Light | a26e349 | 2017-06-27 17:55:37 -0700 | [diff] [blame] | 371 | } |
| 372 | |
Alex Light | e814f9d | 2017-07-31 16:14:39 -0700 | [diff] [blame] | 373 | template <> |
Alex Light | 9df79b7 | 2017-09-12 08:57:31 -0700 | [diff] [blame] | 374 | inline bool EventHandler::ShouldDispatch<ArtJvmtiEvent::kFramePop>( |
| 375 | ArtJvmTiEnv* env, |
Alex Light | e814f9d | 2017-07-31 16:14:39 -0700 | [diff] [blame] | 376 | art::Thread* thread, |
Alex Light | 9df79b7 | 2017-09-12 08:57:31 -0700 | [diff] [blame] | 377 | JNIEnv* jnienv ATTRIBUTE_UNUSED, |
| 378 | jthread jni_thread ATTRIBUTE_UNUSED, |
| 379 | jmethodID jmethod ATTRIBUTE_UNUSED, |
| 380 | jboolean is_exception ATTRIBUTE_UNUSED, |
Alex Light | e814f9d | 2017-07-31 16:14:39 -0700 | [diff] [blame] | 381 | const art::ShadowFrame* frame) const { |
Alex Light | 9df79b7 | 2017-09-12 08:57:31 -0700 | [diff] [blame] | 382 | // Search for the frame. Do this before checking if we need to send the event so that we don't |
| 383 | // have to deal with use-after-free or the frames being reallocated later. |
Alex Light | b6106d5 | 2017-10-18 15:02:15 -0700 | [diff] [blame] | 384 | art::WriterMutexLock lk(art::Thread::Current(), env->event_info_mutex_); |
Alex Light | 9df79b7 | 2017-09-12 08:57:31 -0700 | [diff] [blame] | 385 | return env->notify_frames.erase(frame) != 0 && |
Alex Light | b7c640d | 2019-03-20 15:52:13 -0700 | [diff] [blame] | 386 | !frame->GetSkipMethodExitEvents() && |
Alex Light | 9df79b7 | 2017-09-12 08:57:31 -0700 | [diff] [blame] | 387 | ShouldDispatchOnThread<ArtJvmtiEvent::kFramePop>(env, thread); |
Alex Light | e814f9d | 2017-07-31 16:14:39 -0700 | [diff] [blame] | 388 | } |
| 389 | |
Alex Light | 084fa37 | 2017-06-16 08:58:34 -0700 | [diff] [blame] | 390 | // Need to give custom specializations for FieldAccess and FieldModification since they need to |
| 391 | // filter out which particular fields agents want to get notified on. |
| 392 | // TODO The spec allows us to do shortcuts like only allow one agent to ever set these watches. This |
| 393 | // could make the system more performant. |
| 394 | template <> |
Alex Light | 9df79b7 | 2017-09-12 08:57:31 -0700 | [diff] [blame] | 395 | inline bool EventHandler::ShouldDispatch<ArtJvmtiEvent::kFieldModification>( |
| 396 | ArtJvmTiEnv* env, |
| 397 | art::Thread* thread, |
| 398 | JNIEnv* jnienv ATTRIBUTE_UNUSED, |
| 399 | jthread jni_thread ATTRIBUTE_UNUSED, |
| 400 | jmethodID method ATTRIBUTE_UNUSED, |
| 401 | jlocation location ATTRIBUTE_UNUSED, |
| 402 | jclass field_klass ATTRIBUTE_UNUSED, |
| 403 | jobject object ATTRIBUTE_UNUSED, |
| 404 | jfieldID field, |
| 405 | char type_char ATTRIBUTE_UNUSED, |
| 406 | jvalue val ATTRIBUTE_UNUSED) const { |
Alex Light | b6106d5 | 2017-10-18 15:02:15 -0700 | [diff] [blame] | 407 | art::ReaderMutexLock lk(art::Thread::Current(), env->event_info_mutex_); |
Alex Light | 9df79b7 | 2017-09-12 08:57:31 -0700 | [diff] [blame] | 408 | return ShouldDispatchOnThread<ArtJvmtiEvent::kFieldModification>(env, thread) && |
| 409 | env->modify_watched_fields.find( |
| 410 | art::jni::DecodeArtField(field)) != env->modify_watched_fields.end(); |
Alex Light | 084fa37 | 2017-06-16 08:58:34 -0700 | [diff] [blame] | 411 | } |
| 412 | |
| 413 | template <> |
Alex Light | 9df79b7 | 2017-09-12 08:57:31 -0700 | [diff] [blame] | 414 | inline bool EventHandler::ShouldDispatch<ArtJvmtiEvent::kFieldAccess>( |
| 415 | ArtJvmTiEnv* env, |
| 416 | art::Thread* thread, |
| 417 | JNIEnv* jnienv ATTRIBUTE_UNUSED, |
| 418 | jthread jni_thread ATTRIBUTE_UNUSED, |
| 419 | jmethodID method ATTRIBUTE_UNUSED, |
| 420 | jlocation location ATTRIBUTE_UNUSED, |
| 421 | jclass field_klass ATTRIBUTE_UNUSED, |
| 422 | jobject object ATTRIBUTE_UNUSED, |
| 423 | jfieldID field) const { |
Alex Light | b6106d5 | 2017-10-18 15:02:15 -0700 | [diff] [blame] | 424 | art::ReaderMutexLock lk(art::Thread::Current(), env->event_info_mutex_); |
Alex Light | 9df79b7 | 2017-09-12 08:57:31 -0700 | [diff] [blame] | 425 | return ShouldDispatchOnThread<ArtJvmtiEvent::kFieldAccess>(env, thread) && |
| 426 | env->access_watched_fields.find( |
| 427 | art::jni::DecodeArtField(field)) != env->access_watched_fields.end(); |
| 428 | } |
| 429 | |
| 430 | // Need to give custom specializations for FramePop since it needs to filter out which particular |
| 431 | // agents get the event. This specialization gets an extra argument so we can determine which (if |
| 432 | // any) environments have the frame pop. |
| 433 | // TODO It might be useful to use more template magic to have this only define ShouldDispatch or |
| 434 | // something. |
| 435 | template <> |
| 436 | inline void EventHandler::ExecuteCallback<ArtJvmtiEvent::kFramePop>( |
Alex Light | b284f8d | 2017-11-21 00:00:48 +0000 | [diff] [blame] | 437 | impl::EventHandlerFunc<ArtJvmtiEvent::kFramePop> event, |
Alex Light | 9df79b7 | 2017-09-12 08:57:31 -0700 | [diff] [blame] | 438 | JNIEnv* jnienv, |
| 439 | jthread jni_thread, |
| 440 | jmethodID jmethod, |
| 441 | jboolean is_exception, |
| 442 | const art::ShadowFrame* frame ATTRIBUTE_UNUSED) { |
Alex Light | b284f8d | 2017-11-21 00:00:48 +0000 | [diff] [blame] | 443 | ExecuteCallback<ArtJvmtiEvent::kFramePop>(event, jnienv, jni_thread, jmethod, is_exception); |
Alex Light | 084fa37 | 2017-06-16 08:58:34 -0700 | [diff] [blame] | 444 | } |
| 445 | |
Alex Light | 0aa7a5a | 2018-10-10 15:58:14 +0000 | [diff] [blame] | 446 | struct ScopedDisablePopFrame { |
| 447 | public: |
| 448 | explicit ScopedDisablePopFrame(art::Thread* thread) : thread_(thread) { |
| 449 | art::Locks::mutator_lock_->AssertSharedHeld(thread_); |
| 450 | art::MutexLock mu(thread_, *art::Locks::thread_list_lock_); |
| 451 | JvmtiGlobalTLSData* data = ThreadUtil::GetOrCreateGlobalTLSData(thread_); |
| 452 | current_top_frame_ = art::StackVisitor::ComputeNumFrames( |
| 453 | thread_, art::StackVisitor::StackWalkKind::kIncludeInlinedFrames); |
| 454 | old_disable_frame_pop_depth_ = data->disable_pop_frame_depth; |
| 455 | data->disable_pop_frame_depth = current_top_frame_; |
| 456 | DCHECK(old_disable_frame_pop_depth_ == JvmtiGlobalTLSData::kNoDisallowedPopFrame || |
| 457 | current_top_frame_ > old_disable_frame_pop_depth_) |
| 458 | << "old: " << old_disable_frame_pop_depth_ << " current: " << current_top_frame_; |
| 459 | } |
| 460 | |
| 461 | ~ScopedDisablePopFrame() { |
| 462 | art::Locks::mutator_lock_->AssertSharedHeld(thread_); |
| 463 | art::MutexLock mu(thread_, *art::Locks::thread_list_lock_); |
| 464 | JvmtiGlobalTLSData* data = ThreadUtil::GetGlobalTLSData(thread_); |
| 465 | DCHECK_EQ(data->disable_pop_frame_depth, current_top_frame_); |
| 466 | data->disable_pop_frame_depth = old_disable_frame_pop_depth_; |
| 467 | } |
| 468 | |
| 469 | private: |
| 470 | art::Thread* thread_; |
| 471 | size_t current_top_frame_; |
| 472 | size_t old_disable_frame_pop_depth_; |
| 473 | }; |
| 474 | // We want to prevent the use of PopFrame when reporting either of these events. |
| 475 | template <ArtJvmtiEvent kEvent> |
| 476 | inline void EventHandler::DispatchClassLoadOrPrepareEvent(art::Thread* thread, |
| 477 | JNIEnv* jnienv, |
| 478 | jthread jni_thread, |
| 479 | jclass klass) const { |
| 480 | ScopedDisablePopFrame sdpf(thread); |
| 481 | art::ScopedThreadStateChange stsc(thread, art::ThreadState::kNative); |
| 482 | std::vector<impl::EventHandlerFunc<kEvent>> events = CollectEvents<kEvent>(thread, |
| 483 | jnienv, |
| 484 | jni_thread, |
| 485 | klass); |
| 486 | |
| 487 | for (auto event : events) { |
| 488 | ExecuteCallback<kEvent>(event, jnienv, jni_thread, klass); |
| 489 | } |
| 490 | } |
| 491 | |
| 492 | template <> |
| 493 | inline void EventHandler::DispatchEvent<ArtJvmtiEvent::kClassLoad>(art::Thread* thread, |
| 494 | JNIEnv* jnienv, |
| 495 | jthread jni_thread, |
| 496 | jclass klass) const { |
| 497 | DispatchClassLoadOrPrepareEvent<ArtJvmtiEvent::kClassLoad>(thread, jnienv, jni_thread, klass); |
| 498 | } |
| 499 | template <> |
| 500 | inline void EventHandler::DispatchEvent<ArtJvmtiEvent::kClassPrepare>(art::Thread* thread, |
| 501 | JNIEnv* jnienv, |
| 502 | jthread jni_thread, |
| 503 | jclass klass) const { |
| 504 | DispatchClassLoadOrPrepareEvent<ArtJvmtiEvent::kClassPrepare>(thread, jnienv, jni_thread, klass); |
| 505 | } |
| 506 | |
Alex Light | d78ddec | 2017-04-18 15:20:38 -0700 | [diff] [blame] | 507 | // Need to give a custom specialization for NativeMethodBind since it has to deal with an out |
| 508 | // variable. |
| 509 | template <> |
| 510 | inline void EventHandler::DispatchEvent<ArtJvmtiEvent::kNativeMethodBind>(art::Thread* thread, |
| 511 | JNIEnv* jnienv, |
| 512 | jthread jni_thread, |
| 513 | jmethodID method, |
| 514 | void* cur_method, |
| 515 | void** new_method) const { |
Alex Light | b284f8d | 2017-11-21 00:00:48 +0000 | [diff] [blame] | 516 | art::ScopedThreadStateChange stsc(thread, art::ThreadState::kNative); |
| 517 | std::vector<impl::EventHandlerFunc<ArtJvmtiEvent::kNativeMethodBind>> events = |
| 518 | CollectEvents<ArtJvmtiEvent::kNativeMethodBind>(thread, |
| 519 | jnienv, |
| 520 | jni_thread, |
| 521 | method, |
| 522 | cur_method, |
| 523 | new_method); |
Alex Light | d78ddec | 2017-04-18 15:20:38 -0700 | [diff] [blame] | 524 | *new_method = cur_method; |
Alex Light | b284f8d | 2017-11-21 00:00:48 +0000 | [diff] [blame] | 525 | for (auto event : events) { |
| 526 | *new_method = cur_method; |
| 527 | ExecuteCallback<ArtJvmtiEvent::kNativeMethodBind>(event, |
| 528 | jnienv, |
| 529 | jni_thread, |
| 530 | method, |
| 531 | cur_method, |
| 532 | new_method); |
| 533 | if (*new_method != nullptr) { |
| 534 | cur_method = *new_method; |
Alex Light | d78ddec | 2017-04-18 15:20:38 -0700 | [diff] [blame] | 535 | } |
| 536 | } |
Alex Light | 9df79b7 | 2017-09-12 08:57:31 -0700 | [diff] [blame] | 537 | *new_method = cur_method; |
Alex Light | d78ddec | 2017-04-18 15:20:38 -0700 | [diff] [blame] | 538 | } |
| 539 | |
Andreas Gampe | 983c175 | 2017-01-23 19:46:56 -0800 | [diff] [blame] | 540 | // C++ does not allow partial template function specialization. The dispatch for our separated |
| 541 | // ClassFileLoadHook event types is the same, and in the DispatchClassFileLoadHookEvent helper. |
| 542 | // The following two DispatchEvent specializations dispatch to it. |
| 543 | template <> |
| 544 | inline void EventHandler::DispatchEvent<ArtJvmtiEvent::kClassFileLoadHookRetransformable>( |
| 545 | art::Thread* thread, |
| 546 | JNIEnv* jnienv, |
| 547 | jclass class_being_redefined, |
| 548 | jobject loader, |
| 549 | const char* name, |
| 550 | jobject protection_domain, |
| 551 | jint class_data_len, |
| 552 | const unsigned char* class_data, |
| 553 | jint* new_class_data_len, |
| 554 | unsigned char** new_class_data) const { |
| 555 | return DispatchClassFileLoadHookEvent<ArtJvmtiEvent::kClassFileLoadHookRetransformable>( |
| 556 | thread, |
| 557 | jnienv, |
| 558 | class_being_redefined, |
| 559 | loader, |
| 560 | name, |
| 561 | protection_domain, |
| 562 | class_data_len, |
| 563 | class_data, |
| 564 | new_class_data_len, |
| 565 | new_class_data); |
| 566 | } |
Alex Light | 9df79b7 | 2017-09-12 08:57:31 -0700 | [diff] [blame] | 567 | |
Andreas Gampe | 983c175 | 2017-01-23 19:46:56 -0800 | [diff] [blame] | 568 | template <> |
| 569 | inline void EventHandler::DispatchEvent<ArtJvmtiEvent::kClassFileLoadHookNonRetransformable>( |
| 570 | art::Thread* thread, |
| 571 | JNIEnv* jnienv, |
| 572 | jclass class_being_redefined, |
| 573 | jobject loader, |
| 574 | const char* name, |
| 575 | jobject protection_domain, |
| 576 | jint class_data_len, |
| 577 | const unsigned char* class_data, |
| 578 | jint* new_class_data_len, |
| 579 | unsigned char** new_class_data) const { |
| 580 | return DispatchClassFileLoadHookEvent<ArtJvmtiEvent::kClassFileLoadHookNonRetransformable>( |
| 581 | thread, |
| 582 | jnienv, |
| 583 | class_being_redefined, |
| 584 | loader, |
| 585 | name, |
| 586 | protection_domain, |
| 587 | class_data_len, |
| 588 | class_data, |
| 589 | new_class_data_len, |
| 590 | new_class_data); |
| 591 | } |
Alex Light | 40d87f4 | 2017-01-18 10:27:06 -0800 | [diff] [blame] | 592 | |
Alex Light | d55b844 | 2019-10-15 15:46:07 -0700 | [diff] [blame] | 593 | template <> |
| 594 | inline void EventHandler::DispatchEvent<ArtJvmtiEvent::kStructuralDexFileLoadHook>( |
| 595 | art::Thread* thread, |
| 596 | JNIEnv* jnienv, |
| 597 | jclass class_being_redefined, |
| 598 | jobject loader, |
| 599 | const char* name, |
| 600 | jobject protection_domain, |
| 601 | jint class_data_len, |
| 602 | const unsigned char* class_data, |
| 603 | jint* new_class_data_len, |
| 604 | unsigned char** new_class_data) const { |
| 605 | return DispatchClassFileLoadHookEvent<ArtJvmtiEvent::kStructuralDexFileLoadHook>( |
| 606 | thread, |
| 607 | jnienv, |
| 608 | class_being_redefined, |
| 609 | loader, |
| 610 | name, |
| 611 | protection_domain, |
| 612 | class_data_len, |
| 613 | class_data, |
| 614 | new_class_data_len, |
| 615 | new_class_data); |
| 616 | } |
| 617 | |
Andreas Gampe | 983c175 | 2017-01-23 19:46:56 -0800 | [diff] [blame] | 618 | template <ArtJvmtiEvent kEvent> |
Alex Light | b284f8d | 2017-11-21 00:00:48 +0000 | [diff] [blame] | 619 | inline bool EventHandler::ShouldDispatchOnThread(ArtJvmTiEnv* env, art::Thread* thread) const { |
Andreas Gampe | 983c175 | 2017-01-23 19:46:56 -0800 | [diff] [blame] | 620 | bool dispatch = env->event_masks.global_event_mask.Test(kEvent); |
| 621 | |
| 622 | if (!dispatch && thread != nullptr && env->event_masks.unioned_thread_event_mask.Test(kEvent)) { |
Alex Light | 40d87f4 | 2017-01-18 10:27:06 -0800 | [diff] [blame] | 623 | EventMask* mask = env->event_masks.GetEventMaskOrNull(thread); |
Andreas Gampe | 983c175 | 2017-01-23 19:46:56 -0800 | [diff] [blame] | 624 | dispatch = mask != nullptr && mask->Test(kEvent); |
Alex Light | 40d87f4 | 2017-01-18 10:27:06 -0800 | [diff] [blame] | 625 | } |
| 626 | return dispatch; |
| 627 | } |
| 628 | |
Alex Light | 9df79b7 | 2017-09-12 08:57:31 -0700 | [diff] [blame] | 629 | template <ArtJvmtiEvent kEvent, typename ...Args> |
| 630 | inline bool EventHandler::ShouldDispatch(ArtJvmTiEnv* env, |
| 631 | art::Thread* thread, |
| 632 | Args... args ATTRIBUTE_UNUSED) const { |
| 633 | static_assert(std::is_same<typename impl::EventFnType<kEvent>::type, |
| 634 | void(*)(jvmtiEnv*, Args...)>::value, |
| 635 | "Unexpected different type of shouldDispatch"); |
| 636 | |
| 637 | return ShouldDispatchOnThread<kEvent>(env, thread); |
| 638 | } |
| 639 | |
Alex Light | 73afd32 | 2017-01-18 11:17:47 -0800 | [diff] [blame] | 640 | inline void EventHandler::RecalculateGlobalEventMask(ArtJvmtiEvent event) { |
Alex Light | 2a96fe8 | 2018-01-22 17:45:02 -0800 | [diff] [blame] | 641 | art::WriterMutexLock mu(art::Thread::Current(), envs_lock_); |
Alex Light | b284f8d | 2017-11-21 00:00:48 +0000 | [diff] [blame] | 642 | RecalculateGlobalEventMaskLocked(event); |
| 643 | } |
| 644 | |
| 645 | inline void EventHandler::RecalculateGlobalEventMaskLocked(ArtJvmtiEvent event) { |
Alex Light | 73afd32 | 2017-01-18 11:17:47 -0800 | [diff] [blame] | 646 | bool union_value = false; |
| 647 | for (const ArtJvmTiEnv* stored_env : envs) { |
Alex Light | bb76646 | 2017-04-12 16:13:33 -0700 | [diff] [blame] | 648 | if (stored_env == nullptr) { |
| 649 | continue; |
| 650 | } |
Alex Light | 73afd32 | 2017-01-18 11:17:47 -0800 | [diff] [blame] | 651 | union_value |= stored_env->event_masks.global_event_mask.Test(event); |
| 652 | union_value |= stored_env->event_masks.unioned_thread_event_mask.Test(event); |
| 653 | if (union_value) { |
| 654 | break; |
| 655 | } |
| 656 | } |
| 657 | global_mask.Set(event, union_value); |
| 658 | } |
| 659 | |
| 660 | inline bool EventHandler::NeedsEventUpdate(ArtJvmTiEnv* env, |
| 661 | const jvmtiCapabilities& caps, |
| 662 | bool added) { |
| 663 | ArtJvmtiEvent event = added ? ArtJvmtiEvent::kClassFileLoadHookNonRetransformable |
| 664 | : ArtJvmtiEvent::kClassFileLoadHookRetransformable; |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 665 | return (added && caps.can_access_local_variables == 1) || |
Alex Light | 0fa1786 | 2017-10-24 13:43:05 -0700 | [diff] [blame] | 666 | caps.can_generate_breakpoint_events == 1 || |
Alex Light | 0aa7a5a | 2018-10-10 15:58:14 +0000 | [diff] [blame] | 667 | caps.can_pop_frame == 1 || |
Alex Light | b7c640d | 2019-03-20 15:52:13 -0700 | [diff] [blame] | 668 | caps.can_force_early_return == 1 || |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 669 | (caps.can_retransform_classes == 1 && |
| 670 | IsEventEnabledAnywhere(event) && |
| 671 | env->event_masks.IsEnabledAnywhere(event)); |
Alex Light | 73afd32 | 2017-01-18 11:17:47 -0800 | [diff] [blame] | 672 | } |
| 673 | |
| 674 | inline void EventHandler::HandleChangedCapabilities(ArtJvmTiEnv* env, |
| 675 | const jvmtiCapabilities& caps, |
| 676 | bool added) { |
| 677 | if (UNLIKELY(NeedsEventUpdate(env, caps, added))) { |
| 678 | env->event_masks.HandleChangedCapabilities(caps, added); |
| 679 | if (caps.can_retransform_classes == 1) { |
| 680 | RecalculateGlobalEventMask(ArtJvmtiEvent::kClassFileLoadHookRetransformable); |
| 681 | RecalculateGlobalEventMask(ArtJvmtiEvent::kClassFileLoadHookNonRetransformable); |
| 682 | } |
Alex Light | bebd7bd | 2017-07-25 14:05:52 -0700 | [diff] [blame] | 683 | if (added && caps.can_access_local_variables == 1) { |
| 684 | HandleLocalAccessCapabilityAdded(); |
| 685 | } |
Alex Light | 0fa1786 | 2017-10-24 13:43:05 -0700 | [diff] [blame] | 686 | if (caps.can_generate_breakpoint_events == 1) { |
| 687 | HandleBreakpointEventsChanged(added); |
| 688 | } |
Alex Light | b7c640d | 2019-03-20 15:52:13 -0700 | [diff] [blame] | 689 | if ((caps.can_pop_frame == 1 || caps.can_force_early_return == 1) && added) { |
Alex Light | 0aa7a5a | 2018-10-10 15:58:14 +0000 | [diff] [blame] | 690 | // TODO We should keep track of how many of these have been enabled and remove it if there are |
| 691 | // no more possible users. This isn't expected to be too common. |
| 692 | art::Runtime::Current()->SetNonStandardExitsEnabled(); |
| 693 | } |
Alex Light | 73afd32 | 2017-01-18 11:17:47 -0800 | [diff] [blame] | 694 | } |
| 695 | } |
| 696 | |
Andreas Gampe | 77708d9 | 2016-10-07 11:48:21 -0700 | [diff] [blame] | 697 | } // namespace openjdkjvmti |
| 698 | |
Andreas Gampe | 06c42a5 | 2017-07-26 14:17:14 -0700 | [diff] [blame] | 699 | #endif // ART_OPENJDKJVMTI_EVENTS_INL_H_ |