| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2011 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 | |
| Brian Carlstrom | fc0e321 | 2013-07-17 14:40:12 -0700 | [diff] [blame] | 17 | #ifndef ART_RUNTIME_VERIFIER_METHOD_VERIFIER_H_ |
| 18 | #define ART_RUNTIME_VERIFIER_METHOD_VERIFIER_H_ |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 19 | |
| Ian Rogers | 700a402 | 2014-05-19 16:49:03 -0700 | [diff] [blame] | 20 | #include <memory> |
| Vladimir Marko | 637ee0b | 2015-09-04 12:47:41 +0100 | [diff] [blame] | 21 | #include <sstream> |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 22 | #include <vector> |
| 23 | |
| Mathieu Chartier | de40d47 | 2015-10-15 17:47:48 -0700 | [diff] [blame] | 24 | #include "base/arena_allocator.h" |
| Elliott Hughes | 7616005 | 2012-12-12 16:31:20 -0800 | [diff] [blame] | 25 | #include "base/macros.h" |
| Mathieu Chartier | de40d47 | 2015-10-15 17:47:48 -0700 | [diff] [blame] | 26 | #include "base/scoped_arena_containers.h" |
| Andreas Gampe | 9fcfb8a | 2016-02-04 20:52:54 -0800 | [diff] [blame] | 27 | #include "base/value_object.h" |
| Mathieu Chartier | 3da1d0f | 2017-11-06 20:02:24 -0800 | [diff] [blame] | 28 | #include "code_item_accessors.h" |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 29 | #include "dex_file.h" |
| Andreas Gampe | a5b09a6 | 2016-11-17 15:21:22 -0800 | [diff] [blame] | 30 | #include "dex_file_types.h" |
| Hiroshi Yamauchi | dc37617 | 2014-08-22 11:13:12 -0700 | [diff] [blame] | 31 | #include "handle.h" |
| Ian Rogers | 7b3ddd2 | 2013-02-21 15:19:52 -0800 | [diff] [blame] | 32 | #include "instruction_flags.h" |
| Brian Carlstrom | 51c2467 | 2013-07-11 16:00:56 -0700 | [diff] [blame] | 33 | #include "method_reference.h" |
| Ian Rogers | 576ca0c | 2014-06-06 15:58:22 -0700 | [diff] [blame] | 34 | #include "reg_type_cache.h" |
| Andreas Gampe | 8cf9cb3 | 2017-07-19 09:28:38 -0700 | [diff] [blame] | 35 | #include "register_line.h" |
| Andreas Gampe | 6d7abbd | 2017-04-24 13:19:09 -0700 | [diff] [blame] | 36 | #include "verifier_enums.h" |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 37 | |
| 38 | namespace art { |
| 39 | |
| Andreas Gampe | d482e73 | 2017-04-24 17:59:09 -0700 | [diff] [blame] | 40 | class ClassLinker; |
| Andreas Gampe | 53e32d1 | 2015-12-09 21:03:23 -0800 | [diff] [blame] | 41 | class CompilerCallbacks; |
| Ian Rogers | 8e1f4f8 | 2014-11-05 11:07:30 -0800 | [diff] [blame] | 42 | class Instruction; |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 43 | struct ReferenceMap2Visitor; |
| Mathieu Chartier | d0ad2ee | 2015-03-31 14:59:59 -0700 | [diff] [blame] | 44 | class Thread; |
| Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 45 | class VariableIndentationOutputStream; |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 46 | |
| Andreas Gampe | d482e73 | 2017-04-24 17:59:09 -0700 | [diff] [blame] | 47 | namespace mirror { |
| 48 | class DexCache; |
| 49 | } // namespace mirror |
| 50 | |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 51 | namespace verifier { |
| 52 | |
| Ian Rogers | 8e1f4f8 | 2014-11-05 11:07:30 -0800 | [diff] [blame] | 53 | class MethodVerifier; |
| 54 | class RegisterLine; |
| Mathieu Chartier | 361e04a | 2016-02-16 14:06:35 -0800 | [diff] [blame] | 55 | using RegisterLineArenaUniquePtr = std::unique_ptr<RegisterLine, RegisterLineArenaDelete>; |
| Ian Rogers | 8e1f4f8 | 2014-11-05 11:07:30 -0800 | [diff] [blame] | 56 | class RegType; |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 57 | |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 58 | // We don't need to store the register data for many instructions, because we either only need |
| 59 | // it at branch points (for verification) or GC points and branches (for verification + |
| 60 | // type-precise register analysis). |
| 61 | enum RegisterTrackingMode { |
| 62 | kTrackRegsBranches, |
| Sameer Abu Asal | 02c4223 | 2013-04-30 12:09:45 -0700 | [diff] [blame] | 63 | kTrackCompilerInterestPoints, |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 64 | kTrackRegsAll, |
| 65 | }; |
| 66 | |
| Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 67 | // A mapping from a dex pc to the register line statuses as they are immediately prior to the |
| 68 | // execution of that instruction. |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 69 | class PcToRegisterLineTable { |
| 70 | public: |
| Vladimir Marko | 69d310e | 2017-10-09 14:12:23 +0100 | [diff] [blame] | 71 | explicit PcToRegisterLineTable(ScopedArenaAllocator& allocator); |
| Ian Rogers | d0fbd85 | 2013-09-24 18:17:04 -0700 | [diff] [blame] | 72 | ~PcToRegisterLineTable(); |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 73 | |
| 74 | // Initialize the RegisterTable. Every instruction address can have a different set of information |
| 75 | // about what's in which register, but for verification purposes we only need to store it at |
| 76 | // branch target addresses (because we merge into that). |
| Ian Rogers | 7b3ddd2 | 2013-02-21 15:19:52 -0800 | [diff] [blame] | 77 | void Init(RegisterTrackingMode mode, InstructionFlags* flags, uint32_t insns_size, |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 78 | uint16_t registers_size, MethodVerifier* verifier); |
| 79 | |
| Mathieu Chartier | de40d47 | 2015-10-15 17:47:48 -0700 | [diff] [blame] | 80 | RegisterLine* GetLine(size_t idx) const { |
| 81 | return register_lines_[idx].get(); |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 82 | } |
| 83 | |
| 84 | private: |
| Mathieu Chartier | 361e04a | 2016-02-16 14:06:35 -0800 | [diff] [blame] | 85 | ScopedArenaVector<RegisterLineArenaUniquePtr> register_lines_; |
| Ian Rogers | 8e1f4f8 | 2014-11-05 11:07:30 -0800 | [diff] [blame] | 86 | |
| 87 | DISALLOW_COPY_AND_ASSIGN(PcToRegisterLineTable); |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 88 | }; |
| 89 | |
| 90 | // The verifier |
| 91 | class MethodVerifier { |
| 92 | public: |
| Andreas Gampe | 7fe3023 | 2016-03-25 16:58:00 -0700 | [diff] [blame] | 93 | // Verify a class. Returns "kNoFailure" on success. |
| Andreas Gampe | ec6e6c1 | 2015-11-05 20:39:56 -0800 | [diff] [blame] | 94 | static FailureKind VerifyClass(Thread* self, |
| 95 | mirror::Class* klass, |
| Andreas Gampe | 53e32d1 | 2015-12-09 21:03:23 -0800 | [diff] [blame] | 96 | CompilerCallbacks* callbacks, |
| Andreas Gampe | ec6e6c1 | 2015-11-05 20:39:56 -0800 | [diff] [blame] | 97 | bool allow_soft_failures, |
| Andreas Gampe | 5fd66d0 | 2016-09-12 20:22:19 -0700 | [diff] [blame] | 98 | HardFailLogMode log_level, |
| Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 99 | std::string* error) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 100 | REQUIRES_SHARED(Locks::mutator_lock_); |
| Andreas Gampe | ec6e6c1 | 2015-11-05 20:39:56 -0800 | [diff] [blame] | 101 | static FailureKind VerifyClass(Thread* self, |
| 102 | const DexFile* dex_file, |
| Andreas Gampe | 5a4b8a2 | 2014-09-11 08:30:08 -0700 | [diff] [blame] | 103 | Handle<mirror::DexCache> dex_cache, |
| 104 | Handle<mirror::ClassLoader> class_loader, |
| David Brazdil | 15fc729 | 2016-09-02 14:13:18 +0100 | [diff] [blame] | 105 | const DexFile::ClassDef& class_def, |
| Andreas Gampe | 53e32d1 | 2015-12-09 21:03:23 -0800 | [diff] [blame] | 106 | CompilerCallbacks* callbacks, |
| Andreas Gampe | ec6e6c1 | 2015-11-05 20:39:56 -0800 | [diff] [blame] | 107 | bool allow_soft_failures, |
| Andreas Gampe | 5fd66d0 | 2016-09-12 20:22:19 -0700 | [diff] [blame] | 108 | HardFailLogMode log_level, |
| Andreas Gampe | ec6e6c1 | 2015-11-05 20:39:56 -0800 | [diff] [blame] | 109 | std::string* error) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 110 | REQUIRES_SHARED(Locks::mutator_lock_); |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 111 | |
| Vladimir Marko | 8f1e08a | 2015-06-26 12:06:30 +0100 | [diff] [blame] | 112 | static MethodVerifier* VerifyMethodAndDump(Thread* self, |
| 113 | VariableIndentationOutputStream* vios, |
| 114 | uint32_t method_idx, |
| Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 115 | const DexFile* dex_file, |
| Andreas Gampe | 5a4b8a2 | 2014-09-11 08:30:08 -0700 | [diff] [blame] | 116 | Handle<mirror::DexCache> dex_cache, |
| 117 | Handle<mirror::ClassLoader> class_loader, |
| David Brazdil | 15fc729 | 2016-09-02 14:13:18 +0100 | [diff] [blame] | 118 | const DexFile::ClassDef& class_def, |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 119 | const DexFile::CodeItem* code_item, ArtMethod* method, |
| Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 120 | uint32_t method_access_flags) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 121 | REQUIRES_SHARED(Locks::mutator_lock_); |
| Ian Rogers | 2bcb4a4 | 2012-11-08 10:39:18 -0800 | [diff] [blame] | 122 | |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 123 | uint8_t EncodePcToReferenceMapData() const; |
| 124 | |
| David Brazdil | ca3c8c3 | 2016-09-06 14:04:48 +0100 | [diff] [blame] | 125 | const DexFile& GetDexFile() const { |
| 126 | DCHECK(dex_file_ != nullptr); |
| 127 | return *dex_file_; |
| 128 | } |
| 129 | |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 130 | uint32_t DexFileVersion() const { |
| 131 | return dex_file_->GetVersion(); |
| 132 | } |
| 133 | |
| 134 | RegTypeCache* GetRegTypeCache() { |
| 135 | return ®_types_; |
| 136 | } |
| 137 | |
| Ian Rogers | ad0b3a3 | 2012-04-16 14:50:24 -0700 | [diff] [blame] | 138 | // Log a verification failure. |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 139 | std::ostream& Fail(VerifyError error); |
| 140 | |
| Ian Rogers | ad0b3a3 | 2012-04-16 14:50:24 -0700 | [diff] [blame] | 141 | // Log for verification information. |
| Ian Rogers | 576ca0c | 2014-06-06 15:58:22 -0700 | [diff] [blame] | 142 | std::ostream& LogVerifyInfo(); |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 143 | |
| Ian Rogers | ad0b3a3 | 2012-04-16 14:50:24 -0700 | [diff] [blame] | 144 | // Dump the failures encountered by the verifier. |
| 145 | std::ostream& DumpFailures(std::ostream& os); |
| 146 | |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 147 | // Dump the state of the verifier, namely each instruction, what flags are set on it, register |
| 148 | // information |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 149 | void Dump(std::ostream& os) REQUIRES_SHARED(Locks::mutator_lock_); |
| 150 | void Dump(VariableIndentationOutputStream* vios) REQUIRES_SHARED(Locks::mutator_lock_); |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 151 | |
| Andreas Gampe | aaf0d38 | 2017-11-27 14:10:21 -0800 | [diff] [blame^] | 152 | // Information structure for a lock held at a certain point in time. |
| 153 | struct DexLockInfo { |
| 154 | // The registers aliasing the lock. |
| 155 | std::set<uint32_t> dex_registers; |
| 156 | // The dex PC of the monitor-enter instruction. |
| 157 | uint32_t dex_pc; |
| 158 | |
| 159 | explicit DexLockInfo(uint32_t dex_pc_in) { |
| 160 | dex_pc = dex_pc_in; |
| 161 | } |
| 162 | }; |
| Elliott Hughes | 08fc03a | 2012-06-26 17:34:00 -0700 | [diff] [blame] | 163 | // Fills 'monitor_enter_dex_pcs' with the dex pcs of the monitor-enter instructions corresponding |
| Sebastien Hertz | 2d6ba51 | 2013-05-17 11:31:37 +0200 | [diff] [blame] | 164 | // to the locks held at 'dex_pc' in method 'm'. |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 165 | static void FindLocksAtDexPc(ArtMethod* m, uint32_t dex_pc, |
| Andreas Gampe | aaf0d38 | 2017-11-27 14:10:21 -0800 | [diff] [blame^] | 166 | std::vector<DexLockInfo>* monitor_enter_dex_pcs) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 167 | REQUIRES_SHARED(Locks::mutator_lock_); |
| Elliott Hughes | 08fc03a | 2012-06-26 17:34:00 -0700 | [diff] [blame] | 168 | |
| Sebastien Hertz | 2d6ba51 | 2013-05-17 11:31:37 +0200 | [diff] [blame] | 169 | // Returns the accessed field corresponding to the quick instruction's field |
| 170 | // offset at 'dex_pc' in method 'm'. |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 171 | static ArtField* FindAccessedFieldAtDexPc(ArtMethod* m, uint32_t dex_pc) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 172 | REQUIRES_SHARED(Locks::mutator_lock_); |
| Sebastien Hertz | 2d6ba51 | 2013-05-17 11:31:37 +0200 | [diff] [blame] | 173 | |
| 174 | // Returns the invoked method corresponding to the quick instruction's vtable |
| 175 | // index at 'dex_pc' in method 'm'. |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 176 | static ArtMethod* FindInvokedMethodAtDexPc(ArtMethod* m, uint32_t dex_pc) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 177 | REQUIRES_SHARED(Locks::mutator_lock_); |
| Sebastien Hertz | 2d6ba51 | 2013-05-17 11:31:37 +0200 | [diff] [blame] | 178 | |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 179 | static void Init() REQUIRES_SHARED(Locks::mutator_lock_); |
| Elliott Hughes | 0a1038b | 2012-06-14 16:24:17 -0700 | [diff] [blame] | 180 | static void Shutdown(); |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 181 | |
| Elliott Hughes | 4993bbc | 2013-01-10 15:41:25 -0800 | [diff] [blame] | 182 | bool CanLoadClasses() const { |
| 183 | return can_load_classes_; |
| 184 | } |
| 185 | |
| Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 186 | ~MethodVerifier(); |
| Sebastien Hertz | 33691ab | 2013-08-02 14:19:57 +0200 | [diff] [blame] | 187 | |
| Ian Rogers | 7b3ddd2 | 2013-02-21 15:19:52 -0800 | [diff] [blame] | 188 | // Run verification on the method. Returns true if verification completes and false if the input |
| 189 | // has an irrecoverable corruption. |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 190 | bool Verify() REQUIRES_SHARED(Locks::mutator_lock_); |
| Ian Rogers | 7b3ddd2 | 2013-02-21 15:19:52 -0800 | [diff] [blame] | 191 | |
| 192 | // Describe VRegs at the given dex pc. |
| 193 | std::vector<int32_t> DescribeVRegs(uint32_t dex_pc); |
| 194 | |
| Mathieu Chartier | bb87e0f | 2015-04-03 11:21:55 -0700 | [diff] [blame] | 195 | static void VisitStaticRoots(RootVisitor* visitor) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 196 | REQUIRES_SHARED(Locks::mutator_lock_); |
| Mathieu Chartier | bb87e0f | 2015-04-03 11:21:55 -0700 | [diff] [blame] | 197 | void VisitRoots(RootVisitor* visitor, const RootInfo& roots) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 198 | REQUIRES_SHARED(Locks::mutator_lock_); |
| Mathieu Chartier | c528dba | 2013-11-26 12:00:11 -0800 | [diff] [blame] | 199 | |
| Vladimir Marko | 2b5eaa2 | 2013-12-13 13:59:30 +0000 | [diff] [blame] | 200 | // Accessors used by the compiler via CompilerCallback |
| Mathieu Chartier | 3da1d0f | 2017-11-06 20:02:24 -0800 | [diff] [blame] | 201 | const CodeItemDataAccessor& CodeItem() const { |
| 202 | return code_item_accessor_; |
| 203 | } |
| Vladimir Marko | 2b5eaa2 | 2013-12-13 13:59:30 +0000 | [diff] [blame] | 204 | RegisterLine* GetRegLine(uint32_t dex_pc); |
| Mathieu Chartier | de40d47 | 2015-10-15 17:47:48 -0700 | [diff] [blame] | 205 | ALWAYS_INLINE const InstructionFlags& GetInstructionFlags(size_t index) const; |
| 206 | ALWAYS_INLINE InstructionFlags& GetInstructionFlags(size_t index); |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 207 | mirror::ClassLoader* GetClassLoader() REQUIRES_SHARED(Locks::mutator_lock_); |
| 208 | mirror::DexCache* GetDexCache() REQUIRES_SHARED(Locks::mutator_lock_); |
| 209 | ArtMethod* GetMethod() const REQUIRES_SHARED(Locks::mutator_lock_); |
| Vladimir Marko | 2b5eaa2 | 2013-12-13 13:59:30 +0000 | [diff] [blame] | 210 | MethodReference GetMethodReference() const; |
| 211 | uint32_t GetAccessFlags() const; |
| 212 | bool HasCheckCasts() const; |
| 213 | bool HasVirtualOrInterfaceInvokes() const; |
| 214 | bool HasFailures() const; |
| Nicolas Geoffray | 4824c27 | 2015-06-24 15:53:03 +0100 | [diff] [blame] | 215 | bool HasInstructionThatWillThrow() const { |
| Andreas Gampe | d12e782 | 2015-06-25 10:26:40 -0700 | [diff] [blame] | 216 | return have_any_pending_runtime_throw_failure_; |
| Nicolas Geoffray | 4824c27 | 2015-06-24 15:53:03 +0100 | [diff] [blame] | 217 | } |
| 218 | |
| Andreas Gampe | a5b09a6 | 2016-11-17 15:21:22 -0800 | [diff] [blame] | 219 | const RegType& ResolveCheckedClass(dex::TypeIndex class_idx) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 220 | REQUIRES_SHARED(Locks::mutator_lock_); |
| Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 221 | // Returns the method of a quick invoke or null if it cannot be found. |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 222 | ArtMethod* GetQuickInvokedMethod(const Instruction* inst, RegisterLine* reg_line, |
| Mathieu Chartier | 091d238 | 2015-03-06 10:59:06 -0800 | [diff] [blame] | 223 | bool is_range, bool allow_failure) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 224 | REQUIRES_SHARED(Locks::mutator_lock_); |
| Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 225 | // Returns the access field of a quick field access (iget/iput-quick) or null |
| Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 226 | // if it cannot be found. |
| Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 227 | ArtField* GetQuickFieldAccess(const Instruction* inst, RegisterLine* reg_line) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 228 | REQUIRES_SHARED(Locks::mutator_lock_); |
| Vladimir Marko | 2b5eaa2 | 2013-12-13 13:59:30 +0000 | [diff] [blame] | 229 | |
| Andreas Gampe | 0760a81 | 2015-08-26 17:12:51 -0700 | [diff] [blame] | 230 | uint32_t GetEncounteredFailureTypes() { |
| 231 | return encountered_failure_types_; |
| 232 | } |
| 233 | |
| Andreas Gampe | e6215c0 | 2015-08-31 18:54:38 -0700 | [diff] [blame] | 234 | bool IsInstanceConstructor() const { |
| 235 | return IsConstructor() && !IsStatic(); |
| 236 | } |
| 237 | |
| Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 238 | ScopedArenaAllocator& GetScopedAllocator() { |
| Vladimir Marko | 69d310e | 2017-10-09 14:12:23 +0100 | [diff] [blame] | 239 | return allocator_; |
| Mathieu Chartier | de40d47 | 2015-10-15 17:47:48 -0700 | [diff] [blame] | 240 | } |
| 241 | |
| Ian Rogers | 7b3ddd2 | 2013-02-21 15:19:52 -0800 | [diff] [blame] | 242 | private: |
| Andreas Gampe | 53e32d1 | 2015-12-09 21:03:23 -0800 | [diff] [blame] | 243 | MethodVerifier(Thread* self, |
| 244 | const DexFile* dex_file, |
| 245 | Handle<mirror::DexCache> dex_cache, |
| 246 | Handle<mirror::ClassLoader> class_loader, |
| David Brazdil | 15fc729 | 2016-09-02 14:13:18 +0100 | [diff] [blame] | 247 | const DexFile::ClassDef& class_def, |
| Andreas Gampe | 53e32d1 | 2015-12-09 21:03:23 -0800 | [diff] [blame] | 248 | const DexFile::CodeItem* code_item, |
| 249 | uint32_t method_idx, |
| 250 | ArtMethod* method, |
| 251 | uint32_t access_flags, |
| 252 | bool can_load_classes, |
| 253 | bool allow_soft_failures, |
| 254 | bool need_precise_constants, |
| 255 | bool verify_to_dump, |
| 256 | bool allow_thread_suspension) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 257 | REQUIRES_SHARED(Locks::mutator_lock_); |
| Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 258 | |
| Andreas Gampe | bf9611f | 2016-03-25 16:58:00 -0700 | [diff] [blame] | 259 | void UninstantiableError(const char* descriptor); |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 260 | static bool IsInstantiableOrPrimitive(mirror::Class* klass) REQUIRES_SHARED(Locks::mutator_lock_); |
| Andreas Gampe | bf9611f | 2016-03-25 16:58:00 -0700 | [diff] [blame] | 261 | |
| 262 | // Is the method being verified a constructor? See the comment on the field. |
| 263 | bool IsConstructor() const { |
| 264 | return is_constructor_; |
| 265 | } |
| 266 | |
| 267 | // Is the method verified static? |
| 268 | bool IsStatic() const { |
| 269 | return (method_access_flags_ & kAccStatic) != 0; |
| 270 | } |
| 271 | |
| Ian Rogers | ad0b3a3 | 2012-04-16 14:50:24 -0700 | [diff] [blame] | 272 | // Adds the given string to the beginning of the last failure message. |
| 273 | void PrependToLastFailMessage(std::string); |
| 274 | |
| 275 | // Adds the given string to the end of the last failure message. |
| Vladimir Marko | 5c657fe | 2016-11-03 15:12:29 +0000 | [diff] [blame] | 276 | void AppendToLastFailMessage(const std::string& append); |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 277 | |
| Andreas Gampe | 9fcfb8a | 2016-02-04 20:52:54 -0800 | [diff] [blame] | 278 | // Verification result for method(s). Includes a (maximum) failure kind, and (the union of) |
| 279 | // all failure types. |
| 280 | struct FailureData : ValueObject { |
| Andreas Gampe | 6d7abbd | 2017-04-24 13:19:09 -0700 | [diff] [blame] | 281 | FailureKind kind = FailureKind::kNoFailure; |
| Andreas Gampe | 9fcfb8a | 2016-02-04 20:52:54 -0800 | [diff] [blame] | 282 | uint32_t types = 0U; |
| 283 | |
| 284 | // Merge src into this. Uses the most severe failure kind, and the union of types. |
| 285 | void Merge(const FailureData& src); |
| 286 | }; |
| 287 | |
| Andreas Gampe | ec6e6c1 | 2015-11-05 20:39:56 -0800 | [diff] [blame] | 288 | // Verify all direct or virtual methods of a class. The method assumes that the iterator is |
| 289 | // positioned correctly, and the iterator will be updated. |
| 290 | template <bool kDirect> |
| Andreas Gampe | 9fcfb8a | 2016-02-04 20:52:54 -0800 | [diff] [blame] | 291 | static FailureData VerifyMethods(Thread* self, |
| 292 | ClassLinker* linker, |
| 293 | const DexFile* dex_file, |
| David Brazdil | 15fc729 | 2016-09-02 14:13:18 +0100 | [diff] [blame] | 294 | const DexFile::ClassDef& class_def, |
| Andreas Gampe | 9fcfb8a | 2016-02-04 20:52:54 -0800 | [diff] [blame] | 295 | ClassDataItemIterator* it, |
| 296 | Handle<mirror::DexCache> dex_cache, |
| 297 | Handle<mirror::ClassLoader> class_loader, |
| 298 | CompilerCallbacks* callbacks, |
| 299 | bool allow_soft_failures, |
| Andreas Gampe | 5fd66d0 | 2016-09-12 20:22:19 -0700 | [diff] [blame] | 300 | HardFailLogMode log_level, |
| Andreas Gampe | 9fcfb8a | 2016-02-04 20:52:54 -0800 | [diff] [blame] | 301 | bool need_precise_constants, |
| 302 | std::string* error_string) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 303 | REQUIRES_SHARED(Locks::mutator_lock_); |
| Andreas Gampe | ec6e6c1 | 2015-11-05 20:39:56 -0800 | [diff] [blame] | 304 | |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 305 | /* |
| 306 | * Perform verification on a single method. |
| 307 | * |
| 308 | * We do this in three passes: |
| 309 | * (1) Walk through all code units, determining instruction locations, |
| 310 | * widths, and other characteristics. |
| 311 | * (2) Walk through all code units, performing static checks on |
| 312 | * operands. |
| 313 | * (3) Iterate through the method, checking type safety and looking |
| 314 | * for code flow problems. |
| Ian Rogers | e1758fe | 2012-04-19 11:31:15 -0700 | [diff] [blame] | 315 | */ |
| David Brazdil | ca3c8c3 | 2016-09-06 14:04:48 +0100 | [diff] [blame] | 316 | static FailureData VerifyMethod(Thread* self, |
| 317 | uint32_t method_idx, |
| Andreas Gampe | ec6e6c1 | 2015-11-05 20:39:56 -0800 | [diff] [blame] | 318 | const DexFile* dex_file, |
| Andreas Gampe | 5a4b8a2 | 2014-09-11 08:30:08 -0700 | [diff] [blame] | 319 | Handle<mirror::DexCache> dex_cache, |
| 320 | Handle<mirror::ClassLoader> class_loader, |
| David Brazdil | 15fc729 | 2016-09-02 14:13:18 +0100 | [diff] [blame] | 321 | const DexFile::ClassDef& class_def_idx, |
| Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 322 | const DexFile::CodeItem* code_item, |
| Andreas Gampe | ec6e6c1 | 2015-11-05 20:39:56 -0800 | [diff] [blame] | 323 | ArtMethod* method, |
| 324 | uint32_t method_access_flags, |
| Andreas Gampe | 53e32d1 | 2015-12-09 21:03:23 -0800 | [diff] [blame] | 325 | CompilerCallbacks* callbacks, |
| Andreas Gampe | ec6e6c1 | 2015-11-05 20:39:56 -0800 | [diff] [blame] | 326 | bool allow_soft_failures, |
| Andreas Gampe | 5fd66d0 | 2016-09-12 20:22:19 -0700 | [diff] [blame] | 327 | HardFailLogMode log_level, |
| Andreas Gampe | ec6e6c1 | 2015-11-05 20:39:56 -0800 | [diff] [blame] | 328 | bool need_precise_constants, |
| 329 | std::string* hard_failure_msg) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 330 | REQUIRES_SHARED(Locks::mutator_lock_); |
| Ian Rogers | e1758fe | 2012-04-19 11:31:15 -0700 | [diff] [blame] | 331 | |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 332 | void FindLocksAtDexPc() REQUIRES_SHARED(Locks::mutator_lock_); |
| Elliott Hughes | 08fc03a | 2012-06-26 17:34:00 -0700 | [diff] [blame] | 333 | |
| Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 334 | ArtField* FindAccessedFieldAtDexPc(uint32_t dex_pc) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 335 | REQUIRES_SHARED(Locks::mutator_lock_); |
| Sebastien Hertz | 2d6ba51 | 2013-05-17 11:31:37 +0200 | [diff] [blame] | 336 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 337 | ArtMethod* FindInvokedMethodAtDexPc(uint32_t dex_pc) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 338 | REQUIRES_SHARED(Locks::mutator_lock_); |
| Sebastien Hertz | 2d6ba51 | 2013-05-17 11:31:37 +0200 | [diff] [blame] | 339 | |
| Jeff Hao | 848f70a | 2014-01-15 13:49:50 -0800 | [diff] [blame] | 340 | SafeMap<uint32_t, std::set<uint32_t>>& FindStringInitMap() |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 341 | REQUIRES_SHARED(Locks::mutator_lock_); |
| Jeff Hao | 848f70a | 2014-01-15 13:49:50 -0800 | [diff] [blame] | 342 | |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 343 | /* |
| 344 | * Compute the width of the instruction at each address in the instruction stream, and store it in |
| 345 | * insn_flags_. Addresses that are in the middle of an instruction, or that are part of switch |
| 346 | * table data, are not touched (so the caller should probably initialize "insn_flags" to zero). |
| 347 | * |
| 348 | * The "new_instance_count_" and "monitor_enter_count_" fields in vdata are also set. |
| 349 | * |
| 350 | * Performs some static checks, notably: |
| 351 | * - opcode of first instruction begins at index 0 |
| 352 | * - only documented instructions may appear |
| 353 | * - each instruction follows the last |
| 354 | * - last byte of last instruction is at (code_length-1) |
| 355 | * |
| 356 | * Logs an error and returns "false" on failure. |
| 357 | */ |
| 358 | bool ComputeWidthsAndCountOps(); |
| 359 | |
| 360 | /* |
| 361 | * Set the "in try" flags for all instructions protected by "try" statements. Also sets the |
| 362 | * "branch target" flags for exception handlers. |
| 363 | * |
| 364 | * Call this after widths have been set in "insn_flags". |
| 365 | * |
| 366 | * Returns "false" if something in the exception table looks fishy, but we're expecting the |
| 367 | * exception table to be somewhat sane. |
| 368 | */ |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 369 | bool ScanTryCatchBlocks() REQUIRES_SHARED(Locks::mutator_lock_); |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 370 | |
| 371 | /* |
| 372 | * Perform static verification on all instructions in a method. |
| 373 | * |
| 374 | * Walks through instructions in a method calling VerifyInstruction on each. |
| 375 | */ |
| Andreas Gampe | bf1cb77 | 2017-05-15 15:39:00 -0700 | [diff] [blame] | 376 | template <bool kAllowRuntimeOnlyInstructions> |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 377 | bool VerifyInstructions(); |
| 378 | |
| 379 | /* |
| 380 | * Perform static verification on an instruction. |
| 381 | * |
| 382 | * As a side effect, this sets the "branch target" flags in InsnFlags. |
| 383 | * |
| 384 | * "(CF)" items are handled during code-flow analysis. |
| 385 | * |
| 386 | * v3 4.10.1 |
| 387 | * - target of each jump and branch instruction must be valid |
| 388 | * - targets of switch statements must be valid |
| 389 | * - operands referencing constant pool entries must be valid |
| 390 | * - (CF) operands of getfield, putfield, getstatic, putstatic must be valid |
| 391 | * - (CF) operands of method invocation instructions must be valid |
| 392 | * - (CF) only invoke-direct can call a method starting with '<' |
| 393 | * - (CF) <clinit> must never be called explicitly |
| 394 | * - operands of instanceof, checkcast, new (and variants) must be valid |
| 395 | * - new-array[-type] limited to 255 dimensions |
| 396 | * - can't use "new" on an array class |
| 397 | * - (?) limit dimensions in multi-array creation |
| 398 | * - local variable load/store register values must be in valid range |
| 399 | * |
| 400 | * v3 4.11.1.2 |
| 401 | * - branches must be within the bounds of the code array |
| 402 | * - targets of all control-flow instructions are the start of an instruction |
| 403 | * - register accesses fall within range of allocated registers |
| 404 | * - (N/A) access to constant pool must be of appropriate type |
| 405 | * - code does not end in the middle of an instruction |
| 406 | * - execution cannot fall off the end of the code |
| 407 | * - (earlier) for each exception handler, the "try" area must begin and |
| 408 | * end at the start of an instruction (end can be at the end of the code) |
| 409 | * - (earlier) for each exception handler, the handler must start at a valid |
| 410 | * instruction |
| 411 | */ |
| Andreas Gampe | bf1cb77 | 2017-05-15 15:39:00 -0700 | [diff] [blame] | 412 | template <bool kAllowRuntimeOnlyInstructions> |
| 413 | bool VerifyInstruction(const Instruction* inst, uint32_t code_offset); |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 414 | |
| 415 | /* Ensure that the register index is valid for this code item. */ |
| 416 | bool CheckRegisterIndex(uint32_t idx); |
| 417 | |
| 418 | /* Ensure that the wide register index is valid for this code item. */ |
| 419 | bool CheckWideRegisterIndex(uint32_t idx); |
| 420 | |
| Orion Hodson | 2e59994 | 2017-09-22 16:17:41 +0100 | [diff] [blame] | 421 | // Perform static checks on an instruction referencing a CallSite. All we do here is ensure that |
| 422 | // the call site index is in the valid range. |
| 423 | bool CheckCallSiteIndex(uint32_t idx); |
| 424 | |
| Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 425 | // Perform static checks on a field Get or set instruction. All we do here is ensure that the |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 426 | // field index is in the valid range. |
| 427 | bool CheckFieldIndex(uint32_t idx); |
| 428 | |
| 429 | // Perform static checks on a method invocation instruction. All we do here is ensure that the |
| 430 | // method index is in the valid range. |
| 431 | bool CheckMethodIndex(uint32_t idx); |
| 432 | |
| Orion Hodson | 2e59994 | 2017-09-22 16:17:41 +0100 | [diff] [blame] | 433 | // Perform static checks on an instruction referencing a constant method handle. All we do here |
| 434 | // is ensure that the method index is in the valid range. |
| 435 | bool CheckMethodHandleIndex(uint32_t idx); |
| 436 | |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 437 | // Perform static checks on a "new-instance" instruction. Specifically, make sure the class |
| 438 | // reference isn't for an array class. |
| Andreas Gampe | a5b09a6 | 2016-11-17 15:21:22 -0800 | [diff] [blame] | 439 | bool CheckNewInstance(dex::TypeIndex idx); |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 440 | |
| Orion Hodson | cfa325e | 2016-10-13 10:25:54 +0100 | [diff] [blame] | 441 | // Perform static checks on a prototype indexing instruction. All we do here is ensure that the |
| 442 | // prototype index is in the valid range. |
| 443 | bool CheckPrototypeIndex(uint32_t idx); |
| 444 | |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 445 | /* Ensure that the string index is in the valid range. */ |
| 446 | bool CheckStringIndex(uint32_t idx); |
| 447 | |
| 448 | // Perform static checks on an instruction that takes a class constant. Ensure that the class |
| 449 | // index is in the valid range. |
| Andreas Gampe | a5b09a6 | 2016-11-17 15:21:22 -0800 | [diff] [blame] | 450 | bool CheckTypeIndex(dex::TypeIndex idx); |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 451 | |
| 452 | // Perform static checks on a "new-array" instruction. Specifically, make sure they aren't |
| 453 | // creating an array of arrays that causes the number of dimensions to exceed 255. |
| Andreas Gampe | a5b09a6 | 2016-11-17 15:21:22 -0800 | [diff] [blame] | 454 | bool CheckNewArray(dex::TypeIndex idx); |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 455 | |
| 456 | // Verify an array data table. "cur_offset" is the offset of the fill-array-data instruction. |
| 457 | bool CheckArrayData(uint32_t cur_offset); |
| 458 | |
| 459 | // Verify that the target of a branch instruction is valid. We don't expect code to jump directly |
| 460 | // into an exception handler, but it's valid to do so as long as the target isn't a |
| 461 | // "move-exception" instruction. We verify that in a later stage. |
| 462 | // The dex format forbids certain instructions from branching to themselves. |
| Elliott Hughes | 24edeb5 | 2012-06-18 15:29:46 -0700 | [diff] [blame] | 463 | // Updates "insn_flags_", setting the "branch target" flag. |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 464 | bool CheckBranchTarget(uint32_t cur_offset); |
| 465 | |
| 466 | // Verify a switch table. "cur_offset" is the offset of the switch instruction. |
| Elliott Hughes | 24edeb5 | 2012-06-18 15:29:46 -0700 | [diff] [blame] | 467 | // Updates "insn_flags_", setting the "branch target" flag. |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 468 | bool CheckSwitchTargets(uint32_t cur_offset); |
| 469 | |
| 470 | // Check the register indices used in a "vararg" instruction, such as invoke-virtual or |
| 471 | // filled-new-array. |
| 472 | // - vA holds word count (0-5), args[] have values. |
| 473 | // There are some tests we don't do here, e.g. we don't try to verify that invoking a method that |
| 474 | // takes a double is done with consecutive registers. This requires parsing the target method |
| 475 | // signature, which we will be doing later on during the code flow analysis. |
| 476 | bool CheckVarArgRegs(uint32_t vA, uint32_t arg[]); |
| 477 | |
| 478 | // Check the register indices used in a "vararg/range" instruction, such as invoke-virtual/range |
| 479 | // or filled-new-array/range. |
| 480 | // - vA holds word count, vC holds index of first reg. |
| 481 | bool CheckVarArgRangeRegs(uint32_t vA, uint32_t vC); |
| 482 | |
| Orion Hodson | cfa325e | 2016-10-13 10:25:54 +0100 | [diff] [blame] | 483 | // Checks the method matches the expectations required to be signature polymorphic. |
| 484 | bool CheckSignaturePolymorphicMethod(ArtMethod* method) REQUIRES_SHARED(Locks::mutator_lock_); |
| 485 | |
| 486 | // Checks the invoked receiver matches the expectations for signature polymorphic methods. |
| 487 | bool CheckSignaturePolymorphicReceiver(const Instruction* inst) REQUIRES_SHARED(Locks::mutator_lock_); |
| 488 | |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 489 | // Extract the relative offset from a branch instruction. |
| 490 | // Returns "false" on failure (e.g. this isn't a branch instruction). |
| 491 | bool GetBranchOffset(uint32_t cur_offset, int32_t* pOffset, bool* pConditional, |
| 492 | bool* selfOkay); |
| 493 | |
| 494 | /* Perform detailed code-flow analysis on a single method. */ |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 495 | bool VerifyCodeFlow() REQUIRES_SHARED(Locks::mutator_lock_); |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 496 | |
| 497 | // Set the register types for the first instruction in the method based on the method signature. |
| 498 | // This has the side-effect of validating the signature. |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 499 | bool SetTypesFromSignature() REQUIRES_SHARED(Locks::mutator_lock_); |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 500 | |
| 501 | /* |
| 502 | * Perform code flow on a method. |
| 503 | * |
| 504 | * The basic strategy is as outlined in v3 4.11.1.2: set the "changed" bit on the first |
| 505 | * instruction, process it (setting additional "changed" bits), and repeat until there are no |
| 506 | * more. |
| 507 | * |
| 508 | * v3 4.11.1.1 |
| 509 | * - (N/A) operand stack is always the same size |
| 510 | * - operand stack [registers] contain the correct types of values |
| 511 | * - local variables [registers] contain the correct types of values |
| 512 | * - methods are invoked with the appropriate arguments |
| 513 | * - fields are assigned using values of appropriate types |
| 514 | * - opcodes have the correct type values in operand registers |
| 515 | * - there is never an uninitialized class instance in a local variable in code protected by an |
| 516 | * exception handler (operand stack is okay, because the operand stack is discarded when an |
| 517 | * exception is thrown) [can't know what's a local var w/o the debug info -- should fall out of |
| 518 | * register typing] |
| 519 | * |
| 520 | * v3 4.11.1.2 |
| 521 | * - execution cannot fall off the end of the code |
| 522 | * |
| 523 | * (We also do many of the items described in the "static checks" sections, because it's easier to |
| 524 | * do them here.) |
| 525 | * |
| 526 | * We need an array of RegType values, one per register, for every instruction. If the method uses |
| 527 | * monitor-enter, we need extra data for every register, and a stack for every "interesting" |
| 528 | * instruction. In theory this could become quite large -- up to several megabytes for a monster |
| 529 | * function. |
| 530 | * |
| 531 | * NOTE: |
| 532 | * The spec forbids backward branches when there's an uninitialized reference in a register. The |
| 533 | * idea is to prevent something like this: |
| 534 | * loop: |
| 535 | * move r1, r0 |
| 536 | * new-instance r0, MyClass |
| 537 | * ... |
| 538 | * if-eq rN, loop // once |
| 539 | * initialize r0 |
| 540 | * |
| 541 | * This leaves us with two different instances, both allocated by the same instruction, but only |
| 542 | * one is initialized. The scheme outlined in v3 4.11.1.4 wouldn't catch this, so they work around |
| 543 | * it by preventing backward branches. We achieve identical results without restricting code |
| 544 | * reordering by specifying that you can't execute the new-instance instruction if a register |
| 545 | * contains an uninitialized instance created by that same instruction. |
| 546 | */ |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 547 | bool CodeFlowVerifyMethod() REQUIRES_SHARED(Locks::mutator_lock_); |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 548 | |
| 549 | /* |
| 550 | * Perform verification for a single instruction. |
| 551 | * |
| 552 | * This requires fully decoding the instruction to determine the effect it has on registers. |
| 553 | * |
| 554 | * Finds zero or more following instructions and sets the "changed" flag if execution at that |
| 555 | * point needs to be (re-)evaluated. Register changes are merged into "reg_types_" at the target |
| 556 | * addresses. Does not set or clear any other flags in "insn_flags_". |
| 557 | */ |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 558 | bool CodeFlowVerifyInstruction(uint32_t* start_guess) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 559 | REQUIRES_SHARED(Locks::mutator_lock_); |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 560 | |
| 561 | // Perform verification of a new array instruction |
| Sebastien Hertz | 5243e91 | 2013-05-21 10:55:07 +0200 | [diff] [blame] | 562 | void VerifyNewArray(const Instruction* inst, bool is_filled, bool is_range) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 563 | REQUIRES_SHARED(Locks::mutator_lock_); |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 564 | |
| Jeff Hao | fe1f7c8 | 2013-08-01 14:50:24 -0700 | [diff] [blame] | 565 | // Helper to perform verification on puts of primitive type. |
| Ian Rogers | d8f69b0 | 2014-09-10 21:43:52 +0000 | [diff] [blame] | 566 | void VerifyPrimitivePut(const RegType& target_type, const RegType& insn_type, |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 567 | const uint32_t vregA) REQUIRES_SHARED(Locks::mutator_lock_); |
| Jeff Hao | fe1f7c8 | 2013-08-01 14:50:24 -0700 | [diff] [blame] | 568 | |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 569 | // Perform verification of an aget instruction. The destination register's type will be set to |
| 570 | // be that of component type of the array unless the array type is unknown, in which case a |
| 571 | // bottom type inferred from the type of instruction is used. is_primitive is false for an |
| 572 | // aget-object. |
| Ian Rogers | d8f69b0 | 2014-09-10 21:43:52 +0000 | [diff] [blame] | 573 | void VerifyAGet(const Instruction* inst, const RegType& insn_type, |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 574 | bool is_primitive) REQUIRES_SHARED(Locks::mutator_lock_); |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 575 | |
| 576 | // Perform verification of an aput instruction. |
| Ian Rogers | d8f69b0 | 2014-09-10 21:43:52 +0000 | [diff] [blame] | 577 | void VerifyAPut(const Instruction* inst, const RegType& insn_type, |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 578 | bool is_primitive) REQUIRES_SHARED(Locks::mutator_lock_); |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 579 | |
| 580 | // Lookup instance field and fail for resolution violations |
| Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 581 | ArtField* GetInstanceField(const RegType& obj_type, int field_idx) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 582 | REQUIRES_SHARED(Locks::mutator_lock_); |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 583 | |
| 584 | // Lookup static field and fail for resolution violations |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 585 | ArtField* GetStaticField(int field_idx) REQUIRES_SHARED(Locks::mutator_lock_); |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 586 | |
| Andreas Gampe | 896df40 | 2014-10-20 22:25:29 -0700 | [diff] [blame] | 587 | // Perform verification of an iget/sget/iput/sput instruction. |
| 588 | enum class FieldAccessType { // private |
| 589 | kAccGet, |
| 590 | kAccPut |
| 591 | }; |
| 592 | template <FieldAccessType kAccType> |
| 593 | void VerifyISFieldAccess(const Instruction* inst, const RegType& insn_type, |
| 594 | bool is_primitive, bool is_static) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 595 | REQUIRES_SHARED(Locks::mutator_lock_); |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 596 | |
| Andreas Gampe | 896df40 | 2014-10-20 22:25:29 -0700 | [diff] [blame] | 597 | template <FieldAccessType kAccType> |
| 598 | void VerifyQuickFieldAccess(const Instruction* inst, const RegType& insn_type, bool is_primitive) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 599 | REQUIRES_SHARED(Locks::mutator_lock_); |
| Sebastien Hertz | 2d6ba51 | 2013-05-17 11:31:37 +0200 | [diff] [blame] | 600 | |
| Andreas Gampe | 98be1a9 | 2017-08-28 08:25:45 -0700 | [diff] [blame] | 601 | enum class CheckAccess { // private. |
| 602 | kYes, |
| 603 | kNo, |
| 604 | }; |
| 605 | // Resolves a class based on an index and, if C is kYes, performs access checks to ensure |
| 606 | // the referrer can access the resolved class. |
| 607 | template <CheckAccess C> |
| 608 | const RegType& ResolveClass(dex::TypeIndex class_idx) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 609 | REQUIRES_SHARED(Locks::mutator_lock_); |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 610 | |
| 611 | /* |
| 612 | * For the "move-exception" instruction at "work_insn_idx_", which must be at an exception handler |
| 613 | * address, determine the Join of all exceptions that can land here. Fails if no matching |
| 614 | * exception handler can be found or if the Join of exception types fails. |
| 615 | */ |
| Ian Rogers | d8f69b0 | 2014-09-10 21:43:52 +0000 | [diff] [blame] | 616 | const RegType& GetCaughtExceptionType() |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 617 | REQUIRES_SHARED(Locks::mutator_lock_); |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 618 | |
| 619 | /* |
| 620 | * Resolves a method based on an index and performs access checks to ensure |
| 621 | * the referrer can access the resolved method. |
| 622 | * Does not throw exceptions. |
| 623 | */ |
| Alex Light | 7268d47 | 2016-01-20 15:50:01 -0800 | [diff] [blame] | 624 | ArtMethod* ResolveMethodAndCheckAccess(uint32_t method_idx, MethodType method_type) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 625 | REQUIRES_SHARED(Locks::mutator_lock_); |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 626 | |
| 627 | /* |
| 628 | * Verify the arguments to a method. We're executing in "method", making |
| 629 | * a call to the method reference in vB. |
| 630 | * |
| 631 | * If this is a "direct" invoke, we allow calls to <init>. For calls to |
| 632 | * <init>, the first argument may be an uninitialized reference. Otherwise, |
| 633 | * calls to anything starting with '<' will be rejected, as will any |
| 634 | * uninitialized reference arguments. |
| 635 | * |
| 636 | * For non-static method calls, this will verify that the method call is |
| 637 | * appropriate for the "this" argument. |
| 638 | * |
| 639 | * The method reference is in vBBBB. The "is_range" parameter determines |
| 640 | * whether we use 0-4 "args" values or a range of registers defined by |
| 641 | * vAA and vCCCC. |
| 642 | * |
| 643 | * Widening conversions on integers and references are allowed, but |
| 644 | * narrowing conversions are not. |
| 645 | * |
| Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 646 | * Returns the resolved method on success, null on failure (with *failure |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 647 | * set appropriately). |
| 648 | */ |
| Alex Light | 7268d47 | 2016-01-20 15:50:01 -0800 | [diff] [blame] | 649 | ArtMethod* VerifyInvocationArgs(const Instruction* inst, MethodType method_type, bool is_range) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 650 | REQUIRES_SHARED(Locks::mutator_lock_); |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 651 | |
| Andreas Gampe | 95c0bf8 | 2014-06-16 14:06:52 -0700 | [diff] [blame] | 652 | // Similar checks to the above, but on the proto. Will be used when the method cannot be |
| 653 | // resolved. |
| 654 | void VerifyInvocationArgsUnresolvedMethod(const Instruction* inst, MethodType method_type, |
| 655 | bool is_range) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 656 | REQUIRES_SHARED(Locks::mutator_lock_); |
| Andreas Gampe | 95c0bf8 | 2014-06-16 14:06:52 -0700 | [diff] [blame] | 657 | |
| 658 | template <class T> |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 659 | ArtMethod* VerifyInvocationArgsFromIterator(T* it, const Instruction* inst, |
| Andreas Gampe | 95c0bf8 | 2014-06-16 14:06:52 -0700 | [diff] [blame] | 660 | MethodType method_type, bool is_range, |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 661 | ArtMethod* res_method) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 662 | REQUIRES_SHARED(Locks::mutator_lock_); |
| Andreas Gampe | 95c0bf8 | 2014-06-16 14:06:52 -0700 | [diff] [blame] | 663 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 664 | ArtMethod* VerifyInvokeVirtualQuickArgs(const Instruction* inst, bool is_range) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 665 | REQUIRES_SHARED(Locks::mutator_lock_); |
| Sebastien Hertz | 2d6ba51 | 2013-05-17 11:31:37 +0200 | [diff] [blame] | 666 | |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 667 | /* |
| Orion Hodson | c069a30 | 2017-01-18 09:23:12 +0000 | [diff] [blame] | 668 | * Verify the arguments present for a call site. Returns "true" if all is well, "false" otherwise. |
| 669 | */ |
| 670 | bool CheckCallSite(uint32_t call_site_idx); |
| 671 | |
| 672 | /* |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 673 | * Verify that the target instruction is not "move-exception". It's important that the only way |
| 674 | * to execute a move-exception is as the first instruction of an exception handler. |
| 675 | * Returns "true" if all is well, "false" if the target instruction is move-exception. |
| 676 | */ |
| 677 | bool CheckNotMoveException(const uint16_t* insns, int insn_idx); |
| 678 | |
| 679 | /* |
| Stephen Kyle | 9bc6199 | 2014-09-22 13:53:15 +0100 | [diff] [blame] | 680 | * Verify that the target instruction is not "move-result". It is important that we cannot |
| 681 | * branch to move-result instructions, but we have to make this a distinct check instead of |
| 682 | * adding it to CheckNotMoveException, because it is legal to continue into "move-result" |
| 683 | * instructions - as long as the previous instruction was an invoke, which is checked elsewhere. |
| 684 | */ |
| 685 | bool CheckNotMoveResult(const uint16_t* insns, int insn_idx); |
| 686 | |
| 687 | /* |
| 688 | * Verify that the target instruction is not "move-result" or "move-exception". This is to |
| 689 | * be used when checking branch and switch instructions, but not instructions that can |
| 690 | * continue. |
| 691 | */ |
| 692 | bool CheckNotMoveExceptionOrMoveResult(const uint16_t* insns, int insn_idx); |
| 693 | |
| 694 | /* |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 695 | * Control can transfer to "next_insn". Merge the registers from merge_line into the table at |
| 696 | * next_insn, and set the changed flag on the target address if any of the registers were changed. |
| Ian Rogers | ebbdd87 | 2014-07-07 23:53:08 -0700 | [diff] [blame] | 697 | * In the case of fall-through, update the merge line on a change as its the working line for the |
| 698 | * next instruction. |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 699 | * Returns "false" if an error is encountered. |
| 700 | */ |
| Ian Rogers | ebbdd87 | 2014-07-07 23:53:08 -0700 | [diff] [blame] | 701 | bool UpdateRegisters(uint32_t next_insn, RegisterLine* merge_line, bool update_merge_line) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 702 | REQUIRES_SHARED(Locks::mutator_lock_); |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 703 | |
| Ian Rogers | ad0b3a3 | 2012-04-16 14:50:24 -0700 | [diff] [blame] | 704 | // Return the register type for the method. |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 705 | const RegType& GetMethodReturnType() REQUIRES_SHARED(Locks::mutator_lock_); |
| Ian Rogers | ad0b3a3 | 2012-04-16 14:50:24 -0700 | [diff] [blame] | 706 | |
| 707 | // Get a type representing the declaring class of the method. |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 708 | const RegType& GetDeclaringClass() REQUIRES_SHARED(Locks::mutator_lock_); |
| Ian Rogers | ad0b3a3 | 2012-04-16 14:50:24 -0700 | [diff] [blame] | 709 | |
| Ian Rogers | 7b3ddd2 | 2013-02-21 15:19:52 -0800 | [diff] [blame] | 710 | InstructionFlags* CurrentInsnFlags(); |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 711 | |
| Ian Rogers | d8f69b0 | 2014-09-10 21:43:52 +0000 | [diff] [blame] | 712 | const RegType& DetermineCat1Constant(int32_t value, bool precise) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 713 | REQUIRES_SHARED(Locks::mutator_lock_); |
| Elliott Hughes | 0a1038b | 2012-06-14 16:24:17 -0700 | [diff] [blame] | 714 | |
| Andreas Gampe | f23f33d | 2015-06-23 14:18:17 -0700 | [diff] [blame] | 715 | // Try to create a register type from the given class. In case a precise type is requested, but |
| 716 | // the class is not instantiable, a soft error (of type NO_CLASS) will be enqueued and a |
| 717 | // non-precise reference will be returned. |
| 718 | // Note: we reuse NO_CLASS as this will throw an exception at runtime, when the failing class is |
| 719 | // actually touched. |
| 720 | const RegType& FromClass(const char* descriptor, mirror::Class* klass, bool precise) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 721 | REQUIRES_SHARED(Locks::mutator_lock_); |
| Andreas Gampe | f23f33d | 2015-06-23 14:18:17 -0700 | [diff] [blame] | 722 | |
| Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 723 | // The thread we're verifying on. |
| 724 | Thread* const self_; |
| 725 | |
| Mathieu Chartier | de40d47 | 2015-10-15 17:47:48 -0700 | [diff] [blame] | 726 | // Arena allocator. |
| 727 | ArenaStack arena_stack_; |
| Vladimir Marko | 69d310e | 2017-10-09 14:12:23 +0100 | [diff] [blame] | 728 | ScopedArenaAllocator allocator_; |
| Mathieu Chartier | de40d47 | 2015-10-15 17:47:48 -0700 | [diff] [blame] | 729 | |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 730 | RegTypeCache reg_types_; |
| 731 | |
| 732 | PcToRegisterLineTable reg_table_; |
| 733 | |
| 734 | // Storage for the register status we're currently working on. |
| Mathieu Chartier | 361e04a | 2016-02-16 14:06:35 -0800 | [diff] [blame] | 735 | RegisterLineArenaUniquePtr work_line_; |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 736 | |
| 737 | // The address of the instruction we're currently working on, note that this is in 2 byte |
| 738 | // quantities |
| 739 | uint32_t work_insn_idx_; |
| 740 | |
| 741 | // Storage for the register status we're saving for later. |
| Mathieu Chartier | 361e04a | 2016-02-16 14:06:35 -0800 | [diff] [blame] | 742 | RegisterLineArenaUniquePtr saved_line_; |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 743 | |
| Ian Rogers | 637c65b | 2013-05-31 11:46:00 -0700 | [diff] [blame] | 744 | const uint32_t dex_method_idx_; // The method we're working on. |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 745 | // Its object representation if known. |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 746 | ArtMethod* mirror_method_ GUARDED_BY(Locks::mutator_lock_); |
| Ian Rogers | 637c65b | 2013-05-31 11:46:00 -0700 | [diff] [blame] | 747 | const uint32_t method_access_flags_; // Method's access flags. |
| Ian Rogers | d8f69b0 | 2014-09-10 21:43:52 +0000 | [diff] [blame] | 748 | const RegType* return_type_; // Lazily computed return type of the method. |
| Ian Rogers | 637c65b | 2013-05-31 11:46:00 -0700 | [diff] [blame] | 749 | const DexFile* const dex_file_; // The dex file containing the method. |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 750 | // The dex_cache for the declaring class of the method. |
| Andreas Gampe | 5a4b8a2 | 2014-09-11 08:30:08 -0700 | [diff] [blame] | 751 | Handle<mirror::DexCache> dex_cache_ GUARDED_BY(Locks::mutator_lock_); |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 752 | // The class loader for the declaring class of the method. |
| Andreas Gampe | 5a4b8a2 | 2014-09-11 08:30:08 -0700 | [diff] [blame] | 753 | Handle<mirror::ClassLoader> class_loader_ GUARDED_BY(Locks::mutator_lock_); |
| David Brazdil | 15fc729 | 2016-09-02 14:13:18 +0100 | [diff] [blame] | 754 | const DexFile::ClassDef& class_def_; // The class def of the declaring class of the method. |
| Mathieu Chartier | 3da1d0f | 2017-11-06 20:02:24 -0800 | [diff] [blame] | 755 | const CodeItemDataAccessor code_item_accessor_; |
| Ian Rogers | d8f69b0 | 2014-09-10 21:43:52 +0000 | [diff] [blame] | 756 | const RegType* declaring_class_; // Lazily computed reg type of the method's declaring class. |
| Ian Rogers | 7b3ddd2 | 2013-02-21 15:19:52 -0800 | [diff] [blame] | 757 | // Instruction widths and flags, one entry per code unit. |
| Mathieu Chartier | de40d47 | 2015-10-15 17:47:48 -0700 | [diff] [blame] | 758 | // Owned, but not unique_ptr since insn_flags_ are allocated in arenas. |
| 759 | ArenaUniquePtr<InstructionFlags[]> insn_flags_; |
| Sebastien Hertz | c15853b | 2013-06-25 17:36:27 +0200 | [diff] [blame] | 760 | // The dex PC of a FindLocksAtDexPc request, -1 otherwise. |
| Elliott Hughes | 08fc03a | 2012-06-26 17:34:00 -0700 | [diff] [blame] | 761 | uint32_t interesting_dex_pc_; |
| 762 | // The container into which FindLocksAtDexPc should write the registers containing held locks, |
| Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 763 | // null if we're not doing FindLocksAtDexPc. |
| Andreas Gampe | aaf0d38 | 2017-11-27 14:10:21 -0800 | [diff] [blame^] | 764 | std::vector<DexLockInfo>* monitor_enter_dex_pcs_; |
| Elliott Hughes | 08fc03a | 2012-06-26 17:34:00 -0700 | [diff] [blame] | 765 | |
| Ian Rogers | ad0b3a3 | 2012-04-16 14:50:24 -0700 | [diff] [blame] | 766 | // The types of any error that occurs. |
| 767 | std::vector<VerifyError> failures_; |
| 768 | // Error messages associated with failures. |
| 769 | std::vector<std::ostringstream*> failure_messages_; |
| 770 | // Is there a pending hard failure? |
| 771 | bool have_pending_hard_failure_; |
| jeffhao | faf459e | 2012-08-31 15:32:47 -0700 | [diff] [blame] | 772 | // Is there a pending runtime throw failure? A runtime throw failure is when an instruction |
| 773 | // would fail at runtime throwing an exception. Such an instruction causes the following code |
| 774 | // to be unreachable. This is set by Fail and used to ensure we don't process unreachable |
| 775 | // instructions that would hard fail the verification. |
| Andreas Gampe | d12e782 | 2015-06-25 10:26:40 -0700 | [diff] [blame] | 776 | // Note: this flag is reset after processing each instruction. |
| jeffhao | faf459e | 2012-08-31 15:32:47 -0700 | [diff] [blame] | 777 | bool have_pending_runtime_throw_failure_; |
| Igor Murashkin | 4d7b75f | 2015-07-21 17:03:36 -0700 | [diff] [blame] | 778 | // Is there a pending experimental failure? |
| 779 | bool have_pending_experimental_failure_; |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 780 | |
| Andreas Gampe | d12e782 | 2015-06-25 10:26:40 -0700 | [diff] [blame] | 781 | // A version of the above that is not reset and thus captures if there were *any* throw failures. |
| 782 | bool have_any_pending_runtime_throw_failure_; |
| 783 | |
| Ian Rogers | ad0b3a3 | 2012-04-16 14:50:24 -0700 | [diff] [blame] | 784 | // Info message log use primarily for verifier diagnostics. |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 785 | std::ostringstream info_messages_; |
| 786 | |
| 787 | // The number of occurrences of specific opcodes. |
| 788 | size_t new_instance_count_; |
| 789 | size_t monitor_enter_count_; |
| Elliott Hughes | 80537bb | 2013-01-04 16:37:26 -0800 | [diff] [blame] | 790 | |
| Andreas Gampe | 0760a81 | 2015-08-26 17:12:51 -0700 | [diff] [blame] | 791 | // Bitset of the encountered failure types. Bits are according to the values in VerifyError. |
| 792 | uint32_t encountered_failure_types_; |
| 793 | |
| Elliott Hughes | 80537bb | 2013-01-04 16:37:26 -0800 | [diff] [blame] | 794 | const bool can_load_classes_; |
| Jeff Hao | ee98895 | 2013-04-16 14:23:47 -0700 | [diff] [blame] | 795 | |
| 796 | // Converts soft failures to hard failures when false. Only false when the compiler isn't |
| 797 | // running and the verifier is called from the class linker. |
| 798 | const bool allow_soft_failures_; |
| Sebastien Hertz | 4d4adb1 | 2013-07-24 16:14:19 +0200 | [diff] [blame] | 799 | |
| Ian Rogers | 46960fe | 2014-05-23 10:43:43 -0700 | [diff] [blame] | 800 | // An optimization where instead of generating unique RegTypes for constants we use imprecise |
| 801 | // constants that cover a range of constants. This isn't good enough for deoptimization that |
| 802 | // avoids loading from registers in the case of a constant as the dex instruction set lost the |
| 803 | // notion of whether a value should be in a floating point or general purpose register file. |
| 804 | const bool need_precise_constants_; |
| 805 | |
| Ian Rogers | a9a8254 | 2013-10-04 11:17:26 -0700 | [diff] [blame] | 806 | // Indicates the method being verified contains at least one check-cast or aput-object |
| 807 | // instruction. Aput-object operations implicitly check for array-store exceptions, similar to |
| 808 | // check-cast. |
| Sebastien Hertz | 4d4adb1 | 2013-07-24 16:14:19 +0200 | [diff] [blame] | 809 | bool has_check_casts_; |
| 810 | |
| Ian Rogers | a9a8254 | 2013-10-04 11:17:26 -0700 | [diff] [blame] | 811 | // Indicates the method being verified contains at least one invoke-virtual/range |
| Sebastien Hertz | 4d4adb1 | 2013-07-24 16:14:19 +0200 | [diff] [blame] | 812 | // or invoke-interface/range. |
| 813 | bool has_virtual_or_interface_invokes_; |
| Andreas Gampe | 2ed8def | 2014-08-28 14:41:02 -0700 | [diff] [blame] | 814 | |
| 815 | // Indicates whether we verify to dump the info. In that case we accept quickened instructions |
| 816 | // even though we might detect to be a compiler. Should only be set when running |
| 817 | // VerifyMethodAndDump. |
| 818 | const bool verify_to_dump_; |
| Ian Rogers | 8e1f4f8 | 2014-11-05 11:07:30 -0800 | [diff] [blame] | 819 | |
| Mathieu Chartier | 4306ef8 | 2014-12-19 18:41:47 -0800 | [diff] [blame] | 820 | // Whether or not we call AllowThreadSuspension periodically, we want a way to disable this for |
| 821 | // thread dumping checkpoints since we may get thread suspension at an inopportune time due to |
| 822 | // FindLocksAtDexPC, resulting in deadlocks. |
| 823 | const bool allow_thread_suspension_; |
| 824 | |
| Andreas Gampe | e6215c0 | 2015-08-31 18:54:38 -0700 | [diff] [blame] | 825 | // Whether the method seems to be a constructor. Note that this field exists as we can't trust |
| 826 | // the flags in the dex file. Some older code does not mark methods named "<init>" and "<clinit>" |
| 827 | // correctly. |
| 828 | // |
| 829 | // Note: this flag is only valid once Verify() has started. |
| 830 | bool is_constructor_; |
| 831 | |
| Mathieu Chartier | d0ad2ee | 2015-03-31 14:59:59 -0700 | [diff] [blame] | 832 | // Link, for the method verifier root linked list. |
| 833 | MethodVerifier* link_; |
| 834 | |
| 835 | friend class art::Thread; |
| David Brazdil | ca3c8c3 | 2016-09-06 14:04:48 +0100 | [diff] [blame] | 836 | friend class VerifierDepsTest; |
| Jeff Hao | 848f70a | 2014-01-15 13:49:50 -0800 | [diff] [blame] | 837 | |
| Ian Rogers | 8e1f4f8 | 2014-11-05 11:07:30 -0800 | [diff] [blame] | 838 | DISALLOW_COPY_AND_ASSIGN(MethodVerifier); |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 839 | }; |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 840 | |
| 841 | } // namespace verifier |
| 842 | } // namespace art |
| 843 | |
| Brian Carlstrom | fc0e321 | 2013-07-17 14:40:12 -0700 | [diff] [blame] | 844 | #endif // ART_RUNTIME_VERIFIER_METHOD_VERIFIER_H_ |