blob: da4757f50f787a5b05965fe41dcfed311ecf3096 [file] [log] [blame]
Alex Lighta01de592016-11-15 10:43:06 -08001/* Copyright (C) 2016 The Android Open Source Project
2 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
3 *
4 * This file implements interfaces from the file jvmti.h. This implementation
5 * is licensed under the same terms as the file jvmti.h. The
6 * copyright and license information for the file jvmti.h follows.
7 *
8 * Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights reserved.
9 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
10 *
11 * This code is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU General Public License version 2 only, as
13 * published by the Free Software Foundation. Oracle designates this
14 * particular file as subject to the "Classpath" exception as provided
15 * by Oracle in the LICENSE file that accompanied this code.
16 *
17 * This code is distributed in the hope that it will be useful, but WITHOUT
18 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
19 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
20 * version 2 for more details (a copy is included in the LICENSE file that
21 * accompanied this code).
22 *
23 * You should have received a copy of the GNU General Public License version
24 * 2 along with this work; if not, write to the Free Software Foundation,
25 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
26 *
27 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
28 * or visit www.oracle.com if you need additional information or have any
29 * questions.
30 */
31
32#include "ti_redefine.h"
33
34#include <limits>
35
Andreas Gampe46ee31b2016-12-14 10:11:49 -080036#include "android-base/stringprintf.h"
37
Alex Lighta01de592016-11-15 10:43:06 -080038#include "art_jvmti.h"
Alex Lighta7e38d82017-01-19 14:57:28 -080039#include "base/array_slice.h"
Alex Lighta01de592016-11-15 10:43:06 -080040#include "base/logging.h"
Alex Light460d1b42017-01-10 15:37:17 +000041#include "dex_file.h"
42#include "dex_file_types.h"
Alex Lighta01de592016-11-15 10:43:06 -080043#include "events-inl.h"
44#include "gc/allocation_listener.h"
Alex Light6abd5392017-01-05 17:53:00 -080045#include "gc/heap.h"
Alex Lighta01de592016-11-15 10:43:06 -080046#include "instrumentation.h"
Alex Lightdba61482016-12-21 08:20:29 -080047#include "jit/jit.h"
48#include "jit/jit_code_cache.h"
Alex Lighta01de592016-11-15 10:43:06 -080049#include "jni_env_ext-inl.h"
50#include "jvmti_allocator.h"
51#include "mirror/class.h"
52#include "mirror/class_ext.h"
53#include "mirror/object.h"
54#include "object_lock.h"
55#include "runtime.h"
56#include "ScopedLocalRef.h"
Alex Lighteb98b082017-01-25 13:02:32 -080057#include "ti_class_loader.h"
Alex Light0e692732017-01-10 15:00:05 -080058#include "transform.h"
Alex Lighta01de592016-11-15 10:43:06 -080059
60namespace openjdkjvmti {
61
Andreas Gampe46ee31b2016-12-14 10:11:49 -080062using android::base::StringPrintf;
63
Alex Lightdba61482016-12-21 08:20:29 -080064// This visitor walks thread stacks and allocates and sets up the obsolete methods. It also does
65// some basic sanity checks that the obsolete method is sane.
66class ObsoleteMethodStackVisitor : public art::StackVisitor {
67 protected:
68 ObsoleteMethodStackVisitor(
69 art::Thread* thread,
70 art::LinearAlloc* allocator,
71 const std::unordered_set<art::ArtMethod*>& obsoleted_methods,
Alex Light007ada22017-01-10 13:33:56 -080072 /*out*/std::unordered_map<art::ArtMethod*, art::ArtMethod*>* obsolete_maps)
Alex Lightdba61482016-12-21 08:20:29 -080073 : StackVisitor(thread,
74 /*context*/nullptr,
75 StackVisitor::StackWalkKind::kIncludeInlinedFrames),
76 allocator_(allocator),
77 obsoleted_methods_(obsoleted_methods),
Alex Light4ba388a2017-01-27 10:26:49 -080078 obsolete_maps_(obsolete_maps) { }
Alex Lightdba61482016-12-21 08:20:29 -080079
80 ~ObsoleteMethodStackVisitor() OVERRIDE {}
81
82 public:
83 // Returns true if we successfully installed obsolete methods on this thread, filling
84 // obsolete_maps_ with the translations if needed. Returns false and fills error_msg if we fail.
85 // The stack is cleaned up when we fail.
Alex Light007ada22017-01-10 13:33:56 -080086 static void UpdateObsoleteFrames(
Alex Lightdba61482016-12-21 08:20:29 -080087 art::Thread* thread,
88 art::LinearAlloc* allocator,
89 const std::unordered_set<art::ArtMethod*>& obsoleted_methods,
Alex Light007ada22017-01-10 13:33:56 -080090 /*out*/std::unordered_map<art::ArtMethod*, art::ArtMethod*>* obsolete_maps)
91 REQUIRES(art::Locks::mutator_lock_) {
Alex Lightdba61482016-12-21 08:20:29 -080092 ObsoleteMethodStackVisitor visitor(thread,
93 allocator,
94 obsoleted_methods,
Alex Light007ada22017-01-10 13:33:56 -080095 obsolete_maps);
Alex Lightdba61482016-12-21 08:20:29 -080096 visitor.WalkStack();
Alex Lightdba61482016-12-21 08:20:29 -080097 }
98
99 bool VisitFrame() OVERRIDE REQUIRES(art::Locks::mutator_lock_) {
100 art::ArtMethod* old_method = GetMethod();
Alex Lightdba61482016-12-21 08:20:29 -0800101 if (obsoleted_methods_.find(old_method) != obsoleted_methods_.end()) {
Alex Lightdba61482016-12-21 08:20:29 -0800102 // We cannot ensure that the right dex file is used in inlined frames so we don't support
103 // redefining them.
104 DCHECK(!IsInInlinedFrame()) << "Inlined frames are not supported when using redefinition";
105 // TODO We should really support intrinsic obsolete methods.
106 // TODO We should really support redefining intrinsics.
107 // We don't support intrinsics so check for them here.
108 DCHECK(!old_method->IsIntrinsic());
109 art::ArtMethod* new_obsolete_method = nullptr;
110 auto obsolete_method_pair = obsolete_maps_->find(old_method);
111 if (obsolete_method_pair == obsolete_maps_->end()) {
112 // Create a new Obsolete Method and put it in the list.
113 art::Runtime* runtime = art::Runtime::Current();
114 art::ClassLinker* cl = runtime->GetClassLinker();
115 auto ptr_size = cl->GetImagePointerSize();
116 const size_t method_size = art::ArtMethod::Size(ptr_size);
117 auto* method_storage = allocator_->Alloc(GetThread(), method_size);
Alex Light007ada22017-01-10 13:33:56 -0800118 CHECK(method_storage != nullptr) << "Unable to allocate storage for obsolete version of '"
119 << old_method->PrettyMethod() << "'";
Alex Lightdba61482016-12-21 08:20:29 -0800120 new_obsolete_method = new (method_storage) art::ArtMethod();
121 new_obsolete_method->CopyFrom(old_method, ptr_size);
122 DCHECK_EQ(new_obsolete_method->GetDeclaringClass(), old_method->GetDeclaringClass());
123 new_obsolete_method->SetIsObsolete();
124 obsolete_maps_->insert({old_method, new_obsolete_method});
125 // Update JIT Data structures to point to the new method.
126 art::jit::Jit* jit = art::Runtime::Current()->GetJit();
127 if (jit != nullptr) {
128 // Notify the JIT we are making this obsolete method. It will update the jit's internal
129 // structures to keep track of the new obsolete method.
130 jit->GetCodeCache()->MoveObsoleteMethod(old_method, new_obsolete_method);
131 }
132 } else {
133 new_obsolete_method = obsolete_method_pair->second;
134 }
135 DCHECK(new_obsolete_method != nullptr);
136 SetMethod(new_obsolete_method);
137 }
138 return true;
139 }
140
141 private:
142 // The linear allocator we should use to make new methods.
143 art::LinearAlloc* allocator_;
144 // The set of all methods which could be obsoleted.
145 const std::unordered_set<art::ArtMethod*>& obsoleted_methods_;
146 // A map from the original to the newly allocated obsolete method for frames on this thread. The
147 // values in this map must be added to the obsolete_methods_ (and obsolete_dex_caches_) fields of
148 // the redefined classes ClassExt by the caller.
149 std::unordered_map<art::ArtMethod*, art::ArtMethod*>* obsolete_maps_;
Alex Lightdba61482016-12-21 08:20:29 -0800150};
151
Alex Lighte4a88632017-01-10 07:41:24 -0800152jvmtiError Redefiner::IsModifiableClass(jvmtiEnv* env ATTRIBUTE_UNUSED,
153 jclass klass,
154 jboolean* is_redefinable) {
155 // TODO Check for the appropriate feature flags once we have enabled them.
156 art::Thread* self = art::Thread::Current();
157 art::ScopedObjectAccess soa(self);
158 art::StackHandleScope<1> hs(self);
159 art::ObjPtr<art::mirror::Object> obj(self->DecodeJObject(klass));
160 if (obj.IsNull()) {
161 return ERR(INVALID_CLASS);
162 }
163 art::Handle<art::mirror::Class> h_klass(hs.NewHandle(obj->AsClass()));
164 std::string err_unused;
165 *is_redefinable =
166 Redefiner::GetClassRedefinitionError(h_klass, &err_unused) == OK ? JNI_TRUE : JNI_FALSE;
167 return OK;
168}
169
170jvmtiError Redefiner::GetClassRedefinitionError(art::Handle<art::mirror::Class> klass,
171 /*out*/std::string* error_msg) {
172 if (klass->IsPrimitive()) {
173 *error_msg = "Modification of primitive classes is not supported";
174 return ERR(UNMODIFIABLE_CLASS);
175 } else if (klass->IsInterface()) {
176 *error_msg = "Modification of Interface classes is currently not supported";
177 return ERR(UNMODIFIABLE_CLASS);
178 } else if (klass->IsArrayClass()) {
179 *error_msg = "Modification of Array classes is not supported";
180 return ERR(UNMODIFIABLE_CLASS);
181 } else if (klass->IsProxyClass()) {
182 *error_msg = "Modification of proxy classes is not supported";
183 return ERR(UNMODIFIABLE_CLASS);
184 }
185
186 // TODO We should check if the class has non-obsoletable methods on the stack
187 LOG(WARNING) << "presence of non-obsoletable methods on stacks is not currently checked";
188 return OK;
189}
190
Alex Lighta01de592016-11-15 10:43:06 -0800191// Moves dex data to an anonymous, read-only mmap'd region.
192std::unique_ptr<art::MemMap> Redefiner::MoveDataToMemMap(const std::string& original_location,
193 jint data_len,
Alex Light0e692732017-01-10 15:00:05 -0800194 const unsigned char* dex_data,
Alex Lighta01de592016-11-15 10:43:06 -0800195 std::string* error_msg) {
196 std::unique_ptr<art::MemMap> map(art::MemMap::MapAnonymous(
Andreas Gampe46ee31b2016-12-14 10:11:49 -0800197 StringPrintf("%s-transformed", original_location.c_str()).c_str(),
Alex Lighta01de592016-11-15 10:43:06 -0800198 nullptr,
199 data_len,
200 PROT_READ|PROT_WRITE,
201 /*low_4gb*/false,
202 /*reuse*/false,
203 error_msg));
204 if (map == nullptr) {
205 return map;
206 }
207 memcpy(map->Begin(), dex_data, data_len);
Alex Light0b772572016-12-02 17:27:31 -0800208 // Make the dex files mmap read only. This matches how other DexFiles are mmaped and prevents
209 // programs from corrupting it.
Alex Lighta01de592016-11-15 10:43:06 -0800210 map->Protect(PROT_READ);
211 return map;
212}
213
Alex Lighta7e38d82017-01-19 14:57:28 -0800214Redefiner::ClassRedefinition::ClassRedefinition(
215 Redefiner* driver,
216 jclass klass,
217 const art::DexFile* redefined_dex_file,
218 const char* class_sig,
219 art::ArraySlice<const unsigned char> orig_dex_file) :
220 driver_(driver),
221 klass_(klass),
222 dex_file_(redefined_dex_file),
223 class_sig_(class_sig),
224 original_dex_file_(orig_dex_file) {
Alex Light0e692732017-01-10 15:00:05 -0800225 GetMirrorClass()->MonitorEnter(driver_->self_);
226}
227
228Redefiner::ClassRedefinition::~ClassRedefinition() {
229 if (driver_ != nullptr) {
230 GetMirrorClass()->MonitorExit(driver_->self_);
231 }
232}
233
Alex Light0e692732017-01-10 15:00:05 -0800234jvmtiError Redefiner::RedefineClasses(ArtJvmTiEnv* env,
235 art::Runtime* runtime,
236 art::Thread* self,
237 jint class_count,
238 const jvmtiClassDefinition* definitions,
Alex Light6ac57502017-01-19 15:05:06 -0800239 /*out*/std::string* error_msg) {
Alex Light0e692732017-01-10 15:00:05 -0800240 if (env == nullptr) {
241 *error_msg = "env was null!";
242 return ERR(INVALID_ENVIRONMENT);
243 } else if (class_count < 0) {
244 *error_msg = "class_count was less then 0";
245 return ERR(ILLEGAL_ARGUMENT);
246 } else if (class_count == 0) {
247 // We don't actually need to do anything. Just return OK.
248 return OK;
249 } else if (definitions == nullptr) {
250 *error_msg = "null definitions!";
251 return ERR(NULL_POINTER);
252 }
Alex Light6ac57502017-01-19 15:05:06 -0800253 std::vector<ArtClassDefinition> def_vector;
254 def_vector.reserve(class_count);
255 for (jint i = 0; i < class_count; i++) {
256 // We make a copy of the class_bytes to pass into the retransformation.
257 // This makes cleanup easier (since we unambiguously own the bytes) and also is useful since we
258 // will need to keep the original bytes around unaltered for subsequent RetransformClasses calls
259 // to get the passed in bytes.
260 // TODO Implement saving the original bytes.
261 unsigned char* class_bytes_copy = nullptr;
262 jvmtiError res = env->Allocate(definitions[i].class_byte_count, &class_bytes_copy);
263 if (res != OK) {
264 return res;
265 }
266 memcpy(class_bytes_copy, definitions[i].class_bytes, definitions[i].class_byte_count);
267
268 ArtClassDefinition def;
269 def.dex_len = definitions[i].class_byte_count;
270 def.dex_data = MakeJvmtiUniquePtr(env, class_bytes_copy);
271 // We are definitely modified.
Alex Lighta7e38d82017-01-19 14:57:28 -0800272 def.SetModified();
273 def.original_dex_file = art::ArraySlice<const unsigned char>(definitions[i].class_bytes,
274 definitions[i].class_byte_count);
Alex Light6ac57502017-01-19 15:05:06 -0800275 res = Transformer::FillInTransformationData(env, definitions[i].klass, &def);
276 if (res != OK) {
277 return res;
278 }
279 def_vector.push_back(std::move(def));
280 }
281 // Call all the transformation events.
282 jvmtiError res = Transformer::RetransformClassesDirect(env,
283 self,
284 &def_vector);
285 if (res != OK) {
286 // Something went wrong with transformation!
287 return res;
288 }
289 return RedefineClassesDirect(env, runtime, self, def_vector, error_msg);
290}
291
292jvmtiError Redefiner::RedefineClassesDirect(ArtJvmTiEnv* env,
293 art::Runtime* runtime,
294 art::Thread* self,
295 const std::vector<ArtClassDefinition>& definitions,
296 std::string* error_msg) {
297 DCHECK(env != nullptr);
298 if (definitions.size() == 0) {
299 // We don't actually need to do anything. Just return OK.
300 return OK;
301 }
Alex Light0e692732017-01-10 15:00:05 -0800302 // Stop JIT for the duration of this redefine since the JIT might concurrently compile a method we
303 // are going to redefine.
304 art::jit::ScopedJitSuspend suspend_jit;
305 // Get shared mutator lock so we can lock all the classes.
306 art::ScopedObjectAccess soa(self);
Alex Light0e692732017-01-10 15:00:05 -0800307 Redefiner r(runtime, self, error_msg);
Alex Light6ac57502017-01-19 15:05:06 -0800308 for (const ArtClassDefinition& def : definitions) {
309 // Only try to transform classes that have been modified.
Alex Lighta7e38d82017-01-19 14:57:28 -0800310 if (def.IsModified(self)) {
Alex Light6ac57502017-01-19 15:05:06 -0800311 jvmtiError res = r.AddRedefinition(env, def);
312 if (res != OK) {
313 return res;
314 }
Alex Light0e692732017-01-10 15:00:05 -0800315 }
316 }
317 return r.Run();
318}
319
Alex Light6ac57502017-01-19 15:05:06 -0800320jvmtiError Redefiner::AddRedefinition(ArtJvmTiEnv* env, const ArtClassDefinition& def) {
Alex Light0e692732017-01-10 15:00:05 -0800321 std::string original_dex_location;
322 jvmtiError ret = OK;
323 if ((ret = GetClassLocation(env, def.klass, &original_dex_location))) {
324 *error_msg_ = "Unable to get original dex file location!";
325 return ret;
326 }
Alex Light52a2db52017-01-19 23:00:21 +0000327 char* generic_ptr_unused = nullptr;
328 char* signature_ptr = nullptr;
Alex Light6ac57502017-01-19 15:05:06 -0800329 if ((ret = env->GetClassSignature(def.klass, &signature_ptr, &generic_ptr_unused)) != OK) {
330 *error_msg_ = "Unable to get class signature!";
331 return ret;
Alex Light52a2db52017-01-19 23:00:21 +0000332 }
Alex Light52a2db52017-01-19 23:00:21 +0000333 JvmtiUniquePtr generic_unique_ptr(MakeJvmtiUniquePtr(env, generic_ptr_unused));
Alex Light6ac57502017-01-19 15:05:06 -0800334 JvmtiUniquePtr signature_unique_ptr(MakeJvmtiUniquePtr(env, signature_ptr));
335 std::unique_ptr<art::MemMap> map(MoveDataToMemMap(original_dex_location,
336 def.dex_len,
337 def.dex_data.get(),
338 error_msg_));
339 std::ostringstream os;
Alex Lighta01de592016-11-15 10:43:06 -0800340 if (map.get() == nullptr) {
Alex Light6ac57502017-01-19 15:05:06 -0800341 os << "Failed to create anonymous mmap for modified dex file of class " << def.name
Alex Light0e692732017-01-10 15:00:05 -0800342 << "in dex file " << original_dex_location << " because: " << *error_msg_;
343 *error_msg_ = os.str();
Alex Lighta01de592016-11-15 10:43:06 -0800344 return ERR(OUT_OF_MEMORY);
345 }
346 if (map->Size() < sizeof(art::DexFile::Header)) {
Alex Light0e692732017-01-10 15:00:05 -0800347 *error_msg_ = "Could not read dex file header because dex_data was too short";
Alex Lighta01de592016-11-15 10:43:06 -0800348 return ERR(INVALID_CLASS_FORMAT);
349 }
350 uint32_t checksum = reinterpret_cast<const art::DexFile::Header*>(map->Begin())->checksum_;
351 std::unique_ptr<const art::DexFile> dex_file(art::DexFile::Open(map->GetName(),
352 checksum,
353 std::move(map),
354 /*verify*/true,
355 /*verify_checksum*/true,
Alex Light0e692732017-01-10 15:00:05 -0800356 error_msg_));
Alex Lighta01de592016-11-15 10:43:06 -0800357 if (dex_file.get() == nullptr) {
Alex Light6ac57502017-01-19 15:05:06 -0800358 os << "Unable to load modified dex file for " << def.name << ": " << *error_msg_;
Alex Light0e692732017-01-10 15:00:05 -0800359 *error_msg_ = os.str();
Alex Lighta01de592016-11-15 10:43:06 -0800360 return ERR(INVALID_CLASS_FORMAT);
361 }
Alex Light0e692732017-01-10 15:00:05 -0800362 redefinitions_.push_back(
Alex Lighta7e38d82017-01-19 14:57:28 -0800363 Redefiner::ClassRedefinition(this,
364 def.klass,
365 dex_file.release(),
366 signature_ptr,
367 def.original_dex_file));
Alex Light0e692732017-01-10 15:00:05 -0800368 return OK;
Alex Lighta01de592016-11-15 10:43:06 -0800369}
370
Alex Light0e692732017-01-10 15:00:05 -0800371art::mirror::Class* Redefiner::ClassRedefinition::GetMirrorClass() {
372 return driver_->self_->DecodeJObject(klass_)->AsClass();
Alex Lighta01de592016-11-15 10:43:06 -0800373}
374
Alex Light0e692732017-01-10 15:00:05 -0800375art::mirror::ClassLoader* Redefiner::ClassRedefinition::GetClassLoader() {
Alex Lighta01de592016-11-15 10:43:06 -0800376 return GetMirrorClass()->GetClassLoader();
377}
378
Alex Light0e692732017-01-10 15:00:05 -0800379art::mirror::DexCache* Redefiner::ClassRedefinition::CreateNewDexCache(
380 art::Handle<art::mirror::ClassLoader> loader) {
381 return driver_->runtime_->GetClassLinker()->RegisterDexFile(*dex_file_, loader.Get());
Alex Lighta01de592016-11-15 10:43:06 -0800382}
383
Alex Light0e692732017-01-10 15:00:05 -0800384void Redefiner::RecordFailure(jvmtiError result,
385 const std::string& class_sig,
386 const std::string& error_msg) {
Andreas Gampe46ee31b2016-12-14 10:11:49 -0800387 *error_msg_ = StringPrintf("Unable to perform redefinition of '%s': %s",
Alex Light0e692732017-01-10 15:00:05 -0800388 class_sig.c_str(),
Andreas Gampe46ee31b2016-12-14 10:11:49 -0800389 error_msg.c_str());
Alex Lighta01de592016-11-15 10:43:06 -0800390 result_ = result;
391}
392
Alex Lighta7e38d82017-01-19 14:57:28 -0800393art::mirror::ByteArray* Redefiner::ClassRedefinition::AllocateOrGetOriginalDexFileBytes() {
394 // If we have been specifically given a new set of bytes use that
395 if (original_dex_file_.size() != 0) {
Alex Light440b5d92017-01-24 15:32:25 -0800396 return art::mirror::ByteArray::AllocateAndFill(
397 driver_->self_,
398 reinterpret_cast<const signed char*>(&original_dex_file_.At(0)),
399 original_dex_file_.size());
Alex Lighta01de592016-11-15 10:43:06 -0800400 }
Alex Lighta7e38d82017-01-19 14:57:28 -0800401
402 // See if we already have one set.
403 art::ObjPtr<art::mirror::ClassExt> ext(GetMirrorClass()->GetExtData());
404 if (!ext.IsNull()) {
405 art::ObjPtr<art::mirror::ByteArray> old_original_bytes(ext->GetOriginalDexFileBytes());
406 if (!old_original_bytes.IsNull()) {
407 // We do. Use it.
408 return old_original_bytes.Ptr();
409 }
Alex Lighta01de592016-11-15 10:43:06 -0800410 }
Alex Lighta7e38d82017-01-19 14:57:28 -0800411
412 // Copy the current dex_file
413 const art::DexFile& current_dex_file = GetMirrorClass()->GetDexFile();
414 // TODO Handle this or make it so it cannot happen.
415 if (current_dex_file.NumClassDefs() != 1) {
416 LOG(WARNING) << "Current dex file has more than one class in it. Calling RetransformClasses "
417 << "on this class might fail if no transformations are applied to it!";
Alex Lighta01de592016-11-15 10:43:06 -0800418 }
Alex Light440b5d92017-01-24 15:32:25 -0800419 return art::mirror::ByteArray::AllocateAndFill(
420 driver_->self_,
421 reinterpret_cast<const signed char*>(current_dex_file.Begin()),
422 current_dex_file.Size());
Alex Lighta01de592016-11-15 10:43:06 -0800423}
424
Alex Lightdba61482016-12-21 08:20:29 -0800425struct CallbackCtx {
Alex Lightdba61482016-12-21 08:20:29 -0800426 art::LinearAlloc* allocator;
427 std::unordered_map<art::ArtMethod*, art::ArtMethod*> obsolete_map;
428 std::unordered_set<art::ArtMethod*> obsolete_methods;
Alex Lightdba61482016-12-21 08:20:29 -0800429
Alex Light0e692732017-01-10 15:00:05 -0800430 explicit CallbackCtx(art::LinearAlloc* alloc) : allocator(alloc) {}
Alex Lightdba61482016-12-21 08:20:29 -0800431};
432
Alex Lightdba61482016-12-21 08:20:29 -0800433void DoAllocateObsoleteMethodsCallback(art::Thread* t, void* vdata) NO_THREAD_SAFETY_ANALYSIS {
434 CallbackCtx* data = reinterpret_cast<CallbackCtx*>(vdata);
Alex Light007ada22017-01-10 13:33:56 -0800435 ObsoleteMethodStackVisitor::UpdateObsoleteFrames(t,
436 data->allocator,
437 data->obsolete_methods,
438 &data->obsolete_map);
Alex Lightdba61482016-12-21 08:20:29 -0800439}
440
441// This creates any ArtMethod* structures needed for obsolete methods and ensures that the stack is
442// updated so they will be run.
Alex Light0e692732017-01-10 15:00:05 -0800443// TODO Rewrite so we can do this only once regardless of how many redefinitions there are.
444void Redefiner::ClassRedefinition::FindAndAllocateObsoleteMethods(art::mirror::Class* art_klass) {
Alex Lightdba61482016-12-21 08:20:29 -0800445 art::ScopedAssertNoThreadSuspension ns("No thread suspension during thread stack walking");
446 art::mirror::ClassExt* ext = art_klass->GetExtData();
447 CHECK(ext->GetObsoleteMethods() != nullptr);
Alex Light0e692732017-01-10 15:00:05 -0800448 CallbackCtx ctx(art_klass->GetClassLoader()->GetAllocator());
Alex Lightdba61482016-12-21 08:20:29 -0800449 // Add all the declared methods to the map
450 for (auto& m : art_klass->GetDeclaredMethods(art::kRuntimePointerSize)) {
451 ctx.obsolete_methods.insert(&m);
Alex Light007ada22017-01-10 13:33:56 -0800452 // TODO Allow this or check in IsModifiableClass.
453 DCHECK(!m.IsIntrinsic());
Alex Lightdba61482016-12-21 08:20:29 -0800454 }
455 {
Alex Light0e692732017-01-10 15:00:05 -0800456 art::MutexLock mu(driver_->self_, *art::Locks::thread_list_lock_);
Alex Lightdba61482016-12-21 08:20:29 -0800457 art::ThreadList* list = art::Runtime::Current()->GetThreadList();
458 list->ForEach(DoAllocateObsoleteMethodsCallback, static_cast<void*>(&ctx));
Alex Lightdba61482016-12-21 08:20:29 -0800459 }
460 FillObsoleteMethodMap(art_klass, ctx.obsolete_map);
Alex Lightdba61482016-12-21 08:20:29 -0800461}
462
463// Fills the obsolete method map in the art_klass's extData. This is so obsolete methods are able to
464// figure out their DexCaches.
Alex Light0e692732017-01-10 15:00:05 -0800465void Redefiner::ClassRedefinition::FillObsoleteMethodMap(
Alex Lightdba61482016-12-21 08:20:29 -0800466 art::mirror::Class* art_klass,
467 const std::unordered_map<art::ArtMethod*, art::ArtMethod*>& obsoletes) {
468 int32_t index = 0;
469 art::mirror::ClassExt* ext_data = art_klass->GetExtData();
470 art::mirror::PointerArray* obsolete_methods = ext_data->GetObsoleteMethods();
471 art::mirror::ObjectArray<art::mirror::DexCache>* obsolete_dex_caches =
472 ext_data->GetObsoleteDexCaches();
473 int32_t num_method_slots = obsolete_methods->GetLength();
474 // Find the first empty index.
475 for (; index < num_method_slots; index++) {
476 if (obsolete_methods->GetElementPtrSize<art::ArtMethod*>(
477 index, art::kRuntimePointerSize) == nullptr) {
478 break;
479 }
480 }
481 // Make sure we have enough space.
482 CHECK_GT(num_method_slots, static_cast<int32_t>(obsoletes.size() + index));
483 CHECK(obsolete_dex_caches->Get(index) == nullptr);
484 // Fill in the map.
485 for (auto& obs : obsoletes) {
486 obsolete_methods->SetElementPtrSize(index, obs.second, art::kRuntimePointerSize);
487 obsolete_dex_caches->Set(index, art_klass->GetDexCache());
488 index++;
489 }
490}
491
Alex Light0e692732017-01-10 15:00:05 -0800492bool Redefiner::ClassRedefinition::CheckClass() {
Alex Light460d1b42017-01-10 15:37:17 +0000493 // TODO Might just want to put it in a ObjPtr and NoSuspend assert.
Alex Light0e692732017-01-10 15:00:05 -0800494 art::StackHandleScope<1> hs(driver_->self_);
Alex Light460d1b42017-01-10 15:37:17 +0000495 // Easy check that only 1 class def is present.
496 if (dex_file_->NumClassDefs() != 1) {
497 RecordFailure(ERR(ILLEGAL_ARGUMENT),
498 StringPrintf("Expected 1 class def in dex file but found %d",
499 dex_file_->NumClassDefs()));
500 return false;
501 }
502 // Get the ClassDef from the new DexFile.
503 // Since the dex file has only a single class def the index is always 0.
504 const art::DexFile::ClassDef& def = dex_file_->GetClassDef(0);
505 // Get the class as it is now.
506 art::Handle<art::mirror::Class> current_class(hs.NewHandle(GetMirrorClass()));
507
508 // Check the access flags didn't change.
509 if (def.GetJavaAccessFlags() != (current_class->GetAccessFlags() & art::kAccValidClassFlags)) {
510 RecordFailure(ERR(UNSUPPORTED_REDEFINITION_CLASS_MODIFIERS_CHANGED),
511 "Cannot change modifiers of class by redefinition");
512 return false;
513 }
514
515 // Check class name.
516 // These should have been checked by the dexfile verifier on load.
517 DCHECK_NE(def.class_idx_, art::dex::TypeIndex::Invalid()) << "Invalid type index";
518 const char* descriptor = dex_file_->StringByTypeIdx(def.class_idx_);
519 DCHECK(descriptor != nullptr) << "Invalid dex file structure!";
520 if (!current_class->DescriptorEquals(descriptor)) {
521 std::string storage;
522 RecordFailure(ERR(NAMES_DONT_MATCH),
523 StringPrintf("expected file to contain class called '%s' but found '%s'!",
524 current_class->GetDescriptor(&storage),
525 descriptor));
526 return false;
527 }
528 if (current_class->IsObjectClass()) {
529 if (def.superclass_idx_ != art::dex::TypeIndex::Invalid()) {
530 RecordFailure(ERR(UNSUPPORTED_REDEFINITION_HIERARCHY_CHANGED), "Superclass added!");
531 return false;
532 }
533 } else {
534 const char* super_descriptor = dex_file_->StringByTypeIdx(def.superclass_idx_);
535 DCHECK(descriptor != nullptr) << "Invalid dex file structure!";
536 if (!current_class->GetSuperClass()->DescriptorEquals(super_descriptor)) {
537 RecordFailure(ERR(UNSUPPORTED_REDEFINITION_HIERARCHY_CHANGED), "Superclass changed");
538 return false;
539 }
540 }
541 const art::DexFile::TypeList* interfaces = dex_file_->GetInterfacesList(def);
542 if (interfaces == nullptr) {
543 if (current_class->NumDirectInterfaces() != 0) {
544 RecordFailure(ERR(UNSUPPORTED_REDEFINITION_HIERARCHY_CHANGED), "Interfaces added");
545 return false;
546 }
547 } else {
548 DCHECK(!current_class->IsProxyClass());
549 const art::DexFile::TypeList* current_interfaces = current_class->GetInterfaceTypeList();
550 if (current_interfaces == nullptr || current_interfaces->Size() != interfaces->Size()) {
551 RecordFailure(ERR(UNSUPPORTED_REDEFINITION_HIERARCHY_CHANGED), "Interfaces added or removed");
552 return false;
553 }
554 // The order of interfaces is (barely) meaningful so we error if it changes.
555 const art::DexFile& orig_dex_file = current_class->GetDexFile();
556 for (uint32_t i = 0; i < interfaces->Size(); i++) {
557 if (strcmp(
558 dex_file_->StringByTypeIdx(interfaces->GetTypeItem(i).type_idx_),
559 orig_dex_file.StringByTypeIdx(current_interfaces->GetTypeItem(i).type_idx_)) != 0) {
560 RecordFailure(ERR(UNSUPPORTED_REDEFINITION_HIERARCHY_CHANGED),
561 "Interfaces changed or re-ordered");
562 return false;
563 }
564 }
565 }
566 LOG(WARNING) << "No verification is done on annotations of redefined classes.";
Alex Light0e692732017-01-10 15:00:05 -0800567 LOG(WARNING) << "Bytecodes of redefinitions are not verified.";
Alex Light460d1b42017-01-10 15:37:17 +0000568
569 return true;
570}
571
572// TODO Move this to use IsRedefinable when that function is made.
Alex Light0e692732017-01-10 15:00:05 -0800573bool Redefiner::ClassRedefinition::CheckRedefinable() {
Alex Lighte4a88632017-01-10 07:41:24 -0800574 std::string err;
Alex Light0e692732017-01-10 15:00:05 -0800575 art::StackHandleScope<1> hs(driver_->self_);
Alex Light460d1b42017-01-10 15:37:17 +0000576
Alex Lighte4a88632017-01-10 07:41:24 -0800577 art::Handle<art::mirror::Class> h_klass(hs.NewHandle(GetMirrorClass()));
578 jvmtiError res = Redefiner::GetClassRedefinitionError(h_klass, &err);
579 if (res != OK) {
580 RecordFailure(res, err);
581 return false;
582 } else {
583 return true;
584 }
Alex Light460d1b42017-01-10 15:37:17 +0000585}
586
Alex Light0e692732017-01-10 15:00:05 -0800587bool Redefiner::ClassRedefinition::CheckRedefinitionIsValid() {
Alex Light460d1b42017-01-10 15:37:17 +0000588 return CheckRedefinable() &&
589 CheckClass() &&
590 CheckSameFields() &&
591 CheckSameMethods();
592}
593
Alex Light0e692732017-01-10 15:00:05 -0800594// A wrapper that lets us hold onto the arbitrary sized data needed for redefinitions in a
595// reasonably sane way. This adds no fields to the normal ObjectArray. By doing this we can avoid
596// having to deal with the fact that we need to hold an arbitrary number of references live.
597class RedefinitionDataHolder {
598 public:
599 enum DataSlot : int32_t {
600 kSlotSourceClassLoader = 0,
601 kSlotJavaDexFile = 1,
602 kSlotNewDexFileCookie = 2,
603 kSlotNewDexCache = 3,
604 kSlotMirrorClass = 4,
Alex Lighta7e38d82017-01-19 14:57:28 -0800605 kSlotOrigDexFile = 5,
Alex Light0e692732017-01-10 15:00:05 -0800606
607 // Must be last one.
Alex Lighta7e38d82017-01-19 14:57:28 -0800608 kNumSlots = 6,
Alex Light0e692732017-01-10 15:00:05 -0800609 };
610
611 // This needs to have a HandleScope passed in that is capable of creating a new Handle without
612 // overflowing. Only one handle will be created. This object has a lifetime identical to that of
613 // the passed in handle-scope.
614 RedefinitionDataHolder(art::StackHandleScope<1>* hs,
615 art::Runtime* runtime,
616 art::Thread* self,
617 int32_t num_redefinitions) REQUIRES_SHARED(art::Locks::mutator_lock_) :
618 arr_(
619 hs->NewHandle(
620 art::mirror::ObjectArray<art::mirror::Object>::Alloc(
621 self,
622 runtime->GetClassLinker()->GetClassRoot(art::ClassLinker::kObjectArrayClass),
623 num_redefinitions * kNumSlots))) {}
624
625 bool IsNull() const REQUIRES_SHARED(art::Locks::mutator_lock_) {
626 return arr_.IsNull();
627 }
628
629 // TODO Maybe make an iterable view type to simplify using this.
630 art::mirror::ClassLoader* GetSourceClassLoader(jint klass_index)
631 REQUIRES_SHARED(art::Locks::mutator_lock_) {
632 return art::down_cast<art::mirror::ClassLoader*>(GetSlot(klass_index, kSlotSourceClassLoader));
633 }
634 art::mirror::Object* GetJavaDexFile(jint klass_index) REQUIRES_SHARED(art::Locks::mutator_lock_) {
635 return GetSlot(klass_index, kSlotJavaDexFile);
636 }
637 art::mirror::LongArray* GetNewDexFileCookie(jint klass_index)
638 REQUIRES_SHARED(art::Locks::mutator_lock_) {
639 return art::down_cast<art::mirror::LongArray*>(GetSlot(klass_index, kSlotNewDexFileCookie));
640 }
641 art::mirror::DexCache* GetNewDexCache(jint klass_index)
642 REQUIRES_SHARED(art::Locks::mutator_lock_) {
643 return art::down_cast<art::mirror::DexCache*>(GetSlot(klass_index, kSlotNewDexCache));
644 }
645 art::mirror::Class* GetMirrorClass(jint klass_index) REQUIRES_SHARED(art::Locks::mutator_lock_) {
646 return art::down_cast<art::mirror::Class*>(GetSlot(klass_index, kSlotMirrorClass));
647 }
648
Alex Lighta7e38d82017-01-19 14:57:28 -0800649 art::mirror::ByteArray* GetOriginalDexFileBytes(jint klass_index)
650 REQUIRES_SHARED(art::Locks::mutator_lock_) {
651 return art::down_cast<art::mirror::ByteArray*>(GetSlot(klass_index, kSlotOrigDexFile));
652 }
653
Alex Light0e692732017-01-10 15:00:05 -0800654 void SetSourceClassLoader(jint klass_index, art::mirror::ClassLoader* loader)
655 REQUIRES_SHARED(art::Locks::mutator_lock_) {
656 SetSlot(klass_index, kSlotSourceClassLoader, loader);
657 }
658 void SetJavaDexFile(jint klass_index, art::mirror::Object* dexfile)
659 REQUIRES_SHARED(art::Locks::mutator_lock_) {
660 SetSlot(klass_index, kSlotJavaDexFile, dexfile);
661 }
662 void SetNewDexFileCookie(jint klass_index, art::mirror::LongArray* cookie)
663 REQUIRES_SHARED(art::Locks::mutator_lock_) {
664 SetSlot(klass_index, kSlotNewDexFileCookie, cookie);
665 }
666 void SetNewDexCache(jint klass_index, art::mirror::DexCache* cache)
667 REQUIRES_SHARED(art::Locks::mutator_lock_) {
668 SetSlot(klass_index, kSlotNewDexCache, cache);
669 }
670 void SetMirrorClass(jint klass_index, art::mirror::Class* klass)
671 REQUIRES_SHARED(art::Locks::mutator_lock_) {
672 SetSlot(klass_index, kSlotMirrorClass, klass);
673 }
Alex Lighta7e38d82017-01-19 14:57:28 -0800674 void SetOriginalDexFileBytes(jint klass_index, art::mirror::ByteArray* bytes)
675 REQUIRES_SHARED(art::Locks::mutator_lock_) {
676 SetSlot(klass_index, kSlotOrigDexFile, bytes);
677 }
Alex Light0e692732017-01-10 15:00:05 -0800678
679 int32_t Length() REQUIRES_SHARED(art::Locks::mutator_lock_) {
680 return arr_->GetLength() / kNumSlots;
681 }
682
683 private:
684 art::Handle<art::mirror::ObjectArray<art::mirror::Object>> arr_;
685
686 art::mirror::Object* GetSlot(jint klass_index,
687 DataSlot slot) REQUIRES_SHARED(art::Locks::mutator_lock_) {
688 DCHECK_LT(klass_index, Length());
689 return arr_->Get((kNumSlots * klass_index) + slot);
690 }
691
692 void SetSlot(jint klass_index,
693 DataSlot slot,
694 art::ObjPtr<art::mirror::Object> obj) REQUIRES_SHARED(art::Locks::mutator_lock_) {
695 DCHECK(!art::Runtime::Current()->IsActiveTransaction());
696 DCHECK_LT(klass_index, Length());
697 arr_->Set<false>((kNumSlots * klass_index) + slot, obj);
698 }
699
700 DISALLOW_COPY_AND_ASSIGN(RedefinitionDataHolder);
701};
702
Alex Lighta7e38d82017-01-19 14:57:28 -0800703bool Redefiner::ClassRedefinition::FinishRemainingAllocations(
704 int32_t klass_index, /*out*/RedefinitionDataHolder* holder) {
705 art::StackHandleScope<2> hs(driver_->self_);
706 holder->SetMirrorClass(klass_index, GetMirrorClass());
707 // This shouldn't allocate
708 art::Handle<art::mirror::ClassLoader> loader(hs.NewHandle(GetClassLoader()));
709 holder->SetSourceClassLoader(klass_index, loader.Get());
710 if (loader.Get() == nullptr) {
711 // TODO Better error msg.
712 RecordFailure(ERR(INTERNAL), "Unable to find class loader!");
713 return false;
714 }
Alex Lighteb98b082017-01-25 13:02:32 -0800715 art::Handle<art::mirror::Object> dex_file_obj(hs.NewHandle(
716 ClassLoaderHelper::FindSourceDexFileObject(driver_->self_, loader)));
Alex Lighta7e38d82017-01-19 14:57:28 -0800717 holder->SetJavaDexFile(klass_index, dex_file_obj.Get());
718 if (dex_file_obj.Get() == nullptr) {
719 // TODO Better error msg.
720 RecordFailure(ERR(INTERNAL), "Unable to find class loader!");
721 return false;
722 }
Alex Lighteb98b082017-01-25 13:02:32 -0800723 holder->SetNewDexFileCookie(klass_index,
724 ClassLoaderHelper::AllocateNewDexFileCookie(driver_->self_,
725 dex_file_obj,
726 dex_file_.get()).Ptr());
Alex Lighta7e38d82017-01-19 14:57:28 -0800727 if (holder->GetNewDexFileCookie(klass_index) == nullptr) {
728 driver_->self_->AssertPendingOOMException();
729 driver_->self_->ClearException();
730 RecordFailure(ERR(OUT_OF_MEMORY), "Unable to allocate dex file array for class loader");
731 return false;
732 }
733 holder->SetNewDexCache(klass_index, CreateNewDexCache(loader));
734 if (holder->GetNewDexCache(klass_index) == nullptr) {
735 driver_->self_->AssertPendingOOMException();
736 driver_->self_->ClearException();
737 RecordFailure(ERR(OUT_OF_MEMORY), "Unable to allocate DexCache");
738 return false;
739 }
740
741 // We won't always need to set this field.
742 holder->SetOriginalDexFileBytes(klass_index, AllocateOrGetOriginalDexFileBytes());
743 if (holder->GetOriginalDexFileBytes(klass_index) == nullptr) {
744 driver_->self_->AssertPendingOOMException();
745 driver_->self_->ClearException();
746 RecordFailure(ERR(OUT_OF_MEMORY), "Unable to allocate array for original dex file");
747 return false;
748 }
749 return true;
750}
751
Alex Light0e692732017-01-10 15:00:05 -0800752bool Redefiner::CheckAllRedefinitionAreValid() {
753 for (Redefiner::ClassRedefinition& redef : redefinitions_) {
754 if (!redef.CheckRedefinitionIsValid()) {
755 return false;
756 }
757 }
758 return true;
759}
760
761bool Redefiner::EnsureAllClassAllocationsFinished() {
762 for (Redefiner::ClassRedefinition& redef : redefinitions_) {
763 if (!redef.EnsureClassAllocationsFinished()) {
764 return false;
765 }
766 }
767 return true;
768}
769
770bool Redefiner::FinishAllRemainingAllocations(RedefinitionDataHolder& holder) {
771 int32_t cnt = 0;
Alex Light0e692732017-01-10 15:00:05 -0800772 for (Redefiner::ClassRedefinition& redef : redefinitions_) {
Alex Light0e692732017-01-10 15:00:05 -0800773 // Allocate the data this redefinition requires.
Alex Lighta7e38d82017-01-19 14:57:28 -0800774 if (!redef.FinishRemainingAllocations(cnt, &holder)) {
Alex Light0e692732017-01-10 15:00:05 -0800775 return false;
776 }
Alex Light0e692732017-01-10 15:00:05 -0800777 cnt++;
778 }
779 return true;
780}
781
782void Redefiner::ClassRedefinition::ReleaseDexFile() {
783 dex_file_.release();
784}
785
786void Redefiner::ReleaseAllDexFiles() {
787 for (Redefiner::ClassRedefinition& redef : redefinitions_) {
788 redef.ReleaseDexFile();
789 }
790}
791
Alex Lighta01de592016-11-15 10:43:06 -0800792jvmtiError Redefiner::Run() {
Alex Light0e692732017-01-10 15:00:05 -0800793 art::StackHandleScope<1> hs(self_);
794 // Allocate an array to hold onto all java temporary objects associated with this redefinition.
795 // We will let this be collected after the end of this function.
796 RedefinitionDataHolder holder(&hs, runtime_, self_, redefinitions_.size());
797 if (holder.IsNull()) {
798 self_->AssertPendingOOMException();
799 self_->ClearException();
800 RecordFailure(ERR(OUT_OF_MEMORY), "Could not allocate storage for temporaries");
801 return result_;
802 }
803
Alex Lighta01de592016-11-15 10:43:06 -0800804 // First we just allocate the ClassExt and its fields that we need. These can be updated
805 // atomically without any issues (since we allocate the map arrays as empty) so we don't bother
806 // doing a try loop. The other allocations we need to ensure that nothing has changed in the time
807 // between allocating them and pausing all threads before we can update them so we need to do a
808 // try loop.
Alex Light0e692732017-01-10 15:00:05 -0800809 if (!CheckAllRedefinitionAreValid() ||
810 !EnsureAllClassAllocationsFinished() ||
811 !FinishAllRemainingAllocations(holder)) {
Alex Lighta01de592016-11-15 10:43:06 -0800812 // TODO Null out the ClassExt fields we allocated (if possible, might be racing with another
813 // redefineclass call which made it even bigger. Leak shouldn't be huge (2x array of size
Alex Light0e692732017-01-10 15:00:05 -0800814 // declared_methods_.length) but would be good to get rid of. All other allocations should be
815 // cleaned up by the GC eventually.
Alex Lighta01de592016-11-15 10:43:06 -0800816 return result_;
817 }
Alex Light6abd5392017-01-05 17:53:00 -0800818 // Disable GC and wait for it to be done if we are a moving GC. This is fine since we are done
819 // allocating so no deadlocks.
820 art::gc::Heap* heap = runtime_->GetHeap();
821 if (heap->IsGcConcurrentAndMoving()) {
822 // GC moving objects can cause deadlocks as we are deoptimizing the stack.
823 heap->IncrementDisableMovingGC(self_);
824 }
Alex Lighta01de592016-11-15 10:43:06 -0800825 // Do transition to final suspension
826 // TODO We might want to give this its own suspended state!
827 // TODO This isn't right. We need to change state without any chance of suspend ideally!
828 self_->TransitionFromRunnableToSuspended(art::ThreadState::kNative);
829 runtime_->GetThreadList()->SuspendAll(
Alex Light0e692732017-01-10 15:00:05 -0800830 "Final installation of redefined Classes!", /*long_suspend*/true);
Alex Lightdba61482016-12-21 08:20:29 -0800831 // TODO We need to invalidate all breakpoints in the redefined class with the debugger.
832 // TODO We need to deal with any instrumentation/debugger deoptimized_methods_.
833 // TODO We need to update all debugger MethodIDs so they note the method they point to is
834 // obsolete or implement some other well defined semantics.
835 // TODO We need to decide on & implement semantics for JNI jmethodids when we redefine methods.
Alex Light0e692732017-01-10 15:00:05 -0800836 int32_t cnt = 0;
837 for (Redefiner::ClassRedefinition& redef : redefinitions_) {
Alex Lighteb98b082017-01-25 13:02:32 -0800838 art::ScopedAssertNoThreadSuspension nts("Updating runtime objects for redefinition");
Alex Light0e692732017-01-10 15:00:05 -0800839 art::mirror::Class* klass = holder.GetMirrorClass(cnt);
Alex Lighteb98b082017-01-25 13:02:32 -0800840 ClassLoaderHelper::UpdateJavaDexFile(holder.GetJavaDexFile(cnt),
841 holder.GetNewDexFileCookie(cnt));
Alex Light0e692732017-01-10 15:00:05 -0800842 // TODO Rewrite so we don't do a stack walk for each and every class.
843 redef.FindAndAllocateObsoleteMethods(klass);
Alex Lighta7e38d82017-01-19 14:57:28 -0800844 redef.UpdateClass(klass, holder.GetNewDexCache(cnt), holder.GetOriginalDexFileBytes(cnt));
Alex Light0e692732017-01-10 15:00:05 -0800845 cnt++;
846 }
Alex Lightdba61482016-12-21 08:20:29 -0800847 // TODO Verify the new Class.
Alex Lightdba61482016-12-21 08:20:29 -0800848 // TODO Shrink the obsolete method maps if possible?
849 // TODO find appropriate class loader.
Alex Lighta01de592016-11-15 10:43:06 -0800850 // TODO Put this into a scoped thing.
851 runtime_->GetThreadList()->ResumeAll();
852 // Get back shared mutator lock as expected for return.
853 self_->TransitionFromSuspendedToRunnable();
Alex Light0e692732017-01-10 15:00:05 -0800854 // TODO Do the dex_file release at a more reasonable place. This works but it muddles who really
855 // owns the DexFile and when ownership is transferred.
856 ReleaseAllDexFiles();
Alex Light6abd5392017-01-05 17:53:00 -0800857 if (heap->IsGcConcurrentAndMoving()) {
858 heap->DecrementDisableMovingGC(self_);
859 }
Alex Lighta01de592016-11-15 10:43:06 -0800860 return OK;
861}
862
Alex Light0e692732017-01-10 15:00:05 -0800863void Redefiner::ClassRedefinition::UpdateMethods(art::ObjPtr<art::mirror::Class> mclass,
864 art::ObjPtr<art::mirror::DexCache> new_dex_cache,
865 const art::DexFile::ClassDef& class_def) {
866 art::ClassLinker* linker = driver_->runtime_->GetClassLinker();
Alex Lighta01de592016-11-15 10:43:06 -0800867 art::PointerSize image_pointer_size = linker->GetImagePointerSize();
Alex Light200b9d72016-12-15 11:34:13 -0800868 const art::DexFile::TypeId& declaring_class_id = dex_file_->GetTypeId(class_def.class_idx_);
Alex Lighta01de592016-11-15 10:43:06 -0800869 const art::DexFile& old_dex_file = mclass->GetDexFile();
Alex Light200b9d72016-12-15 11:34:13 -0800870 // Update methods.
Alex Lighta01de592016-11-15 10:43:06 -0800871 for (art::ArtMethod& method : mclass->GetMethods(image_pointer_size)) {
872 const art::DexFile::StringId* new_name_id = dex_file_->FindStringId(method.GetName());
873 art::dex::TypeIndex method_return_idx =
874 dex_file_->GetIndexForTypeId(*dex_file_->FindTypeId(method.GetReturnTypeDescriptor()));
875 const auto* old_type_list = method.GetParameterTypeList();
876 std::vector<art::dex::TypeIndex> new_type_list;
877 for (uint32_t i = 0; old_type_list != nullptr && i < old_type_list->Size(); i++) {
878 new_type_list.push_back(
879 dex_file_->GetIndexForTypeId(
880 *dex_file_->FindTypeId(
881 old_dex_file.GetTypeDescriptor(
882 old_dex_file.GetTypeId(
883 old_type_list->GetTypeItem(i).type_idx_)))));
884 }
885 const art::DexFile::ProtoId* proto_id = dex_file_->FindProtoId(method_return_idx,
886 new_type_list);
Nicolas Geoffrayf6abcda2016-12-21 09:26:18 +0000887 // TODO Return false, cleanup.
Alex Lightdba61482016-12-21 08:20:29 -0800888 CHECK(proto_id != nullptr || old_type_list == nullptr);
Alex Lighta01de592016-11-15 10:43:06 -0800889 const art::DexFile::MethodId* method_id = dex_file_->FindMethodId(declaring_class_id,
890 *new_name_id,
891 *proto_id);
Nicolas Geoffrayf6abcda2016-12-21 09:26:18 +0000892 // TODO Return false, cleanup.
Alex Lightdba61482016-12-21 08:20:29 -0800893 CHECK(method_id != nullptr);
Alex Lighta01de592016-11-15 10:43:06 -0800894 uint32_t dex_method_idx = dex_file_->GetIndexForMethodId(*method_id);
895 method.SetDexMethodIndex(dex_method_idx);
896 linker->SetEntryPointsToInterpreter(&method);
Alex Light200b9d72016-12-15 11:34:13 -0800897 method.SetCodeItemOffset(dex_file_->FindCodeItemOffset(class_def, dex_method_idx));
Alex Lighta01de592016-11-15 10:43:06 -0800898 method.SetDexCacheResolvedMethods(new_dex_cache->GetResolvedMethods(), image_pointer_size);
Alex Lightdba61482016-12-21 08:20:29 -0800899 // Notify the jit that this method is redefined.
Alex Light0e692732017-01-10 15:00:05 -0800900 art::jit::Jit* jit = driver_->runtime_->GetJit();
Alex Lightdba61482016-12-21 08:20:29 -0800901 if (jit != nullptr) {
902 jit->GetCodeCache()->NotifyMethodRedefined(&method);
903 }
Alex Lighta01de592016-11-15 10:43:06 -0800904 }
Alex Light200b9d72016-12-15 11:34:13 -0800905}
906
Alex Light0e692732017-01-10 15:00:05 -0800907void Redefiner::ClassRedefinition::UpdateFields(art::ObjPtr<art::mirror::Class> mclass) {
Alex Light200b9d72016-12-15 11:34:13 -0800908 // TODO The IFields & SFields pointers should be combined like the methods_ arrays were.
909 for (auto fields_iter : {mclass->GetIFields(), mclass->GetSFields()}) {
910 for (art::ArtField& field : fields_iter) {
911 std::string declaring_class_name;
912 const art::DexFile::TypeId* new_declaring_id =
913 dex_file_->FindTypeId(field.GetDeclaringClass()->GetDescriptor(&declaring_class_name));
914 const art::DexFile::StringId* new_name_id = dex_file_->FindStringId(field.GetName());
915 const art::DexFile::TypeId* new_type_id = dex_file_->FindTypeId(field.GetTypeDescriptor());
916 // TODO Handle error, cleanup.
917 CHECK(new_name_id != nullptr && new_type_id != nullptr && new_declaring_id != nullptr);
918 const art::DexFile::FieldId* new_field_id =
919 dex_file_->FindFieldId(*new_declaring_id, *new_name_id, *new_type_id);
920 CHECK(new_field_id != nullptr);
921 // We only need to update the index since the other data in the ArtField cannot be updated.
922 field.SetDexFieldIndex(dex_file_->GetIndexForFieldId(*new_field_id));
923 }
924 }
Alex Light200b9d72016-12-15 11:34:13 -0800925}
926
927// Performs updates to class that will allow us to verify it.
Alex Lighta7e38d82017-01-19 14:57:28 -0800928void Redefiner::ClassRedefinition::UpdateClass(
929 art::ObjPtr<art::mirror::Class> mclass,
930 art::ObjPtr<art::mirror::DexCache> new_dex_cache,
931 art::ObjPtr<art::mirror::ByteArray> original_dex_file) {
Alex Light6ac57502017-01-19 15:05:06 -0800932 DCHECK_EQ(dex_file_->NumClassDefs(), 1u);
933 const art::DexFile::ClassDef& class_def = dex_file_->GetClassDef(0);
934 UpdateMethods(mclass, new_dex_cache, class_def);
Alex Light007ada22017-01-10 13:33:56 -0800935 UpdateFields(mclass);
Alex Light200b9d72016-12-15 11:34:13 -0800936
Alex Lighta01de592016-11-15 10:43:06 -0800937 // Update the class fields.
938 // Need to update class last since the ArtMethod gets its DexFile from the class (which is needed
939 // to call GetReturnTypeDescriptor and GetParameterTypeList above).
940 mclass->SetDexCache(new_dex_cache.Ptr());
Alex Light6ac57502017-01-19 15:05:06 -0800941 mclass->SetDexClassDefIndex(dex_file_->GetIndexForClassDef(class_def));
Alex Light0e692732017-01-10 15:00:05 -0800942 mclass->SetDexTypeIndex(dex_file_->GetIndexForTypeId(*dex_file_->FindTypeId(class_sig_.c_str())));
Alex Lighta7e38d82017-01-19 14:57:28 -0800943 art::ObjPtr<art::mirror::ClassExt> ext(mclass->GetExtData());
944 CHECK(!ext.IsNull());
945 ext->SetOriginalDexFileBytes(original_dex_file);
Alex Lighta01de592016-11-15 10:43:06 -0800946}
947
Alex Lighta01de592016-11-15 10:43:06 -0800948// This function does all (java) allocations we need to do for the Class being redefined.
949// TODO Change this name maybe?
Alex Light0e692732017-01-10 15:00:05 -0800950bool Redefiner::ClassRedefinition::EnsureClassAllocationsFinished() {
951 art::StackHandleScope<2> hs(driver_->self_);
952 art::Handle<art::mirror::Class> klass(hs.NewHandle(
953 driver_->self_->DecodeJObject(klass_)->AsClass()));
Alex Lighta01de592016-11-15 10:43:06 -0800954 if (klass.Get() == nullptr) {
955 RecordFailure(ERR(INVALID_CLASS), "Unable to decode class argument!");
956 return false;
957 }
958 // Allocate the classExt
Alex Light0e692732017-01-10 15:00:05 -0800959 art::Handle<art::mirror::ClassExt> ext(hs.NewHandle(klass->EnsureExtDataPresent(driver_->self_)));
Alex Lighta01de592016-11-15 10:43:06 -0800960 if (ext.Get() == nullptr) {
961 // No memory. Clear exception (it's not useful) and return error.
962 // TODO This doesn't need to be fatal. We could just not support obsolete methods after hitting
963 // this case.
Alex Light0e692732017-01-10 15:00:05 -0800964 driver_->self_->AssertPendingOOMException();
965 driver_->self_->ClearException();
Alex Lighta01de592016-11-15 10:43:06 -0800966 RecordFailure(ERR(OUT_OF_MEMORY), "Could not allocate ClassExt");
967 return false;
968 }
969 // Allocate the 2 arrays that make up the obsolete methods map. Since the contents of the arrays
970 // are only modified when all threads (other than the modifying one) are suspended we don't need
971 // to worry about missing the unsyncronized writes to the array. We do synchronize when setting it
972 // however, since that can happen at any time.
973 // TODO Clear these after we walk the stacks in order to free them in the (likely?) event there
974 // are no obsolete methods.
975 {
Alex Light0e692732017-01-10 15:00:05 -0800976 art::ObjectLock<art::mirror::ClassExt> lock(driver_->self_, ext);
Alex Lighta01de592016-11-15 10:43:06 -0800977 if (!ext->ExtendObsoleteArrays(
Alex Light0e692732017-01-10 15:00:05 -0800978 driver_->self_, klass->GetDeclaredMethodsSlice(art::kRuntimePointerSize).size())) {
Alex Lighta01de592016-11-15 10:43:06 -0800979 // OOM. Clear exception and return error.
Alex Light0e692732017-01-10 15:00:05 -0800980 driver_->self_->AssertPendingOOMException();
981 driver_->self_->ClearException();
Alex Lighta01de592016-11-15 10:43:06 -0800982 RecordFailure(ERR(OUT_OF_MEMORY), "Unable to allocate/extend obsolete methods map");
983 return false;
984 }
985 }
986 return true;
987}
988
989} // namespace openjdkjvmti