blob: c885914633f8d4dde3117bb980401d3e4d15d2f8 [file] [log] [blame]
Ian Rogers776ac1f2012-04-13 23:36:36 -07001/*
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 Carlstromfc0e3212013-07-17 14:40:12 -070017#ifndef ART_RUNTIME_VERIFIER_METHOD_VERIFIER_H_
18#define ART_RUNTIME_VERIFIER_METHOD_VERIFIER_H_
Ian Rogers776ac1f2012-04-13 23:36:36 -070019
Ian Rogers700a4022014-05-19 16:49:03 -070020#include <memory>
Vladimir Marko637ee0b2015-09-04 12:47:41 +010021#include <sstream>
Ian Rogers776ac1f2012-04-13 23:36:36 -070022#include <vector>
23
Mathieu Chartierde40d472015-10-15 17:47:48 -070024#include "base/arena_allocator.h"
Elliott Hughes76160052012-12-12 16:31:20 -080025#include "base/macros.h"
Mathieu Chartierde40d472015-10-15 17:47:48 -070026#include "base/scoped_arena_containers.h"
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -080027#include "base/value_object.h"
Mathieu Chartier3da1d0f2017-11-06 20:02:24 -080028#include "code_item_accessors.h"
Ian Rogers776ac1f2012-04-13 23:36:36 -070029#include "dex_file.h"
Andreas Gampea5b09a62016-11-17 15:21:22 -080030#include "dex_file_types.h"
Hiroshi Yamauchidc376172014-08-22 11:13:12 -070031#include "handle.h"
Ian Rogers7b3ddd22013-02-21 15:19:52 -080032#include "instruction_flags.h"
Brian Carlstrom51c24672013-07-11 16:00:56 -070033#include "method_reference.h"
Ian Rogers576ca0c2014-06-06 15:58:22 -070034#include "reg_type_cache.h"
Andreas Gampe8cf9cb32017-07-19 09:28:38 -070035#include "register_line.h"
Andreas Gampe6d7abbd2017-04-24 13:19:09 -070036#include "verifier_enums.h"
Ian Rogers776ac1f2012-04-13 23:36:36 -070037
38namespace art {
39
Andreas Gamped482e732017-04-24 17:59:09 -070040class ClassLinker;
Andreas Gampe53e32d12015-12-09 21:03:23 -080041class CompilerCallbacks;
Ian Rogers8e1f4f82014-11-05 11:07:30 -080042class Instruction;
Ian Rogers776ac1f2012-04-13 23:36:36 -070043struct ReferenceMap2Visitor;
Mathieu Chartierd0ad2ee2015-03-31 14:59:59 -070044class Thread;
Vladimir Marko8f1e08a2015-06-26 12:06:30 +010045class VariableIndentationOutputStream;
Ian Rogers776ac1f2012-04-13 23:36:36 -070046
Andreas Gamped482e732017-04-24 17:59:09 -070047namespace mirror {
48class DexCache;
49} // namespace mirror
50
Ian Rogers776ac1f2012-04-13 23:36:36 -070051namespace verifier {
52
Ian Rogers8e1f4f82014-11-05 11:07:30 -080053class MethodVerifier;
54class RegisterLine;
Mathieu Chartier361e04a2016-02-16 14:06:35 -080055using RegisterLineArenaUniquePtr = std::unique_ptr<RegisterLine, RegisterLineArenaDelete>;
Ian Rogers8e1f4f82014-11-05 11:07:30 -080056class RegType;
Ian Rogers776ac1f2012-04-13 23:36:36 -070057
Ian Rogers776ac1f2012-04-13 23:36:36 -070058// 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).
61enum RegisterTrackingMode {
62 kTrackRegsBranches,
Sameer Abu Asal02c42232013-04-30 12:09:45 -070063 kTrackCompilerInterestPoints,
Ian Rogers776ac1f2012-04-13 23:36:36 -070064 kTrackRegsAll,
65};
66
Ian Rogers2bcb4a42012-11-08 10:39:18 -080067// A mapping from a dex pc to the register line statuses as they are immediately prior to the
68// execution of that instruction.
Ian Rogers776ac1f2012-04-13 23:36:36 -070069class PcToRegisterLineTable {
70 public:
Vladimir Marko69d310e2017-10-09 14:12:23 +010071 explicit PcToRegisterLineTable(ScopedArenaAllocator& allocator);
Ian Rogersd0fbd852013-09-24 18:17:04 -070072 ~PcToRegisterLineTable();
Ian Rogers776ac1f2012-04-13 23:36:36 -070073
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 Rogers7b3ddd22013-02-21 15:19:52 -080077 void Init(RegisterTrackingMode mode, InstructionFlags* flags, uint32_t insns_size,
Ian Rogers776ac1f2012-04-13 23:36:36 -070078 uint16_t registers_size, MethodVerifier* verifier);
79
Mathieu Chartierde40d472015-10-15 17:47:48 -070080 RegisterLine* GetLine(size_t idx) const {
81 return register_lines_[idx].get();
Ian Rogers776ac1f2012-04-13 23:36:36 -070082 }
83
84 private:
Mathieu Chartier361e04a2016-02-16 14:06:35 -080085 ScopedArenaVector<RegisterLineArenaUniquePtr> register_lines_;
Ian Rogers8e1f4f82014-11-05 11:07:30 -080086
87 DISALLOW_COPY_AND_ASSIGN(PcToRegisterLineTable);
Ian Rogers776ac1f2012-04-13 23:36:36 -070088};
89
90// The verifier
91class MethodVerifier {
92 public:
Andreas Gampe7fe30232016-03-25 16:58:00 -070093 // Verify a class. Returns "kNoFailure" on success.
Andreas Gampeec6e6c12015-11-05 20:39:56 -080094 static FailureKind VerifyClass(Thread* self,
95 mirror::Class* klass,
Andreas Gampe53e32d12015-12-09 21:03:23 -080096 CompilerCallbacks* callbacks,
Andreas Gampeec6e6c12015-11-05 20:39:56 -080097 bool allow_soft_failures,
Andreas Gampe5fd66d02016-09-12 20:22:19 -070098 HardFailLogMode log_level,
Ian Rogers7b078e82014-09-10 14:44:24 -070099 std::string* error)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700100 REQUIRES_SHARED(Locks::mutator_lock_);
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800101 static FailureKind VerifyClass(Thread* self,
102 const DexFile* dex_file,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700103 Handle<mirror::DexCache> dex_cache,
104 Handle<mirror::ClassLoader> class_loader,
David Brazdil15fc7292016-09-02 14:13:18 +0100105 const DexFile::ClassDef& class_def,
Andreas Gampe53e32d12015-12-09 21:03:23 -0800106 CompilerCallbacks* callbacks,
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800107 bool allow_soft_failures,
Andreas Gampe5fd66d02016-09-12 20:22:19 -0700108 HardFailLogMode log_level,
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800109 std::string* error)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700110 REQUIRES_SHARED(Locks::mutator_lock_);
Ian Rogers776ac1f2012-04-13 23:36:36 -0700111
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100112 static MethodVerifier* VerifyMethodAndDump(Thread* self,
113 VariableIndentationOutputStream* vios,
114 uint32_t method_idx,
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700115 const DexFile* dex_file,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700116 Handle<mirror::DexCache> dex_cache,
117 Handle<mirror::ClassLoader> class_loader,
David Brazdil15fc7292016-09-02 14:13:18 +0100118 const DexFile::ClassDef& class_def,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700119 const DexFile::CodeItem* code_item, ArtMethod* method,
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700120 uint32_t method_access_flags)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700121 REQUIRES_SHARED(Locks::mutator_lock_);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800122
Ian Rogers776ac1f2012-04-13 23:36:36 -0700123 uint8_t EncodePcToReferenceMapData() const;
124
David Brazdilca3c8c32016-09-06 14:04:48 +0100125 const DexFile& GetDexFile() const {
126 DCHECK(dex_file_ != nullptr);
127 return *dex_file_;
128 }
129
Ian Rogers776ac1f2012-04-13 23:36:36 -0700130 uint32_t DexFileVersion() const {
131 return dex_file_->GetVersion();
132 }
133
134 RegTypeCache* GetRegTypeCache() {
135 return &reg_types_;
136 }
137
Ian Rogersad0b3a32012-04-16 14:50:24 -0700138 // Log a verification failure.
Ian Rogers776ac1f2012-04-13 23:36:36 -0700139 std::ostream& Fail(VerifyError error);
140
Ian Rogersad0b3a32012-04-16 14:50:24 -0700141 // Log for verification information.
Ian Rogers576ca0c2014-06-06 15:58:22 -0700142 std::ostream& LogVerifyInfo();
Ian Rogers776ac1f2012-04-13 23:36:36 -0700143
Ian Rogersad0b3a32012-04-16 14:50:24 -0700144 // Dump the failures encountered by the verifier.
145 std::ostream& DumpFailures(std::ostream& os);
146
Ian Rogers776ac1f2012-04-13 23:36:36 -0700147 // Dump the state of the verifier, namely each instruction, what flags are set on it, register
148 // information
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700149 void Dump(std::ostream& os) REQUIRES_SHARED(Locks::mutator_lock_);
150 void Dump(VariableIndentationOutputStream* vios) REQUIRES_SHARED(Locks::mutator_lock_);
Ian Rogers776ac1f2012-04-13 23:36:36 -0700151
Andreas Gampeaaf0d382017-11-27 14:10:21 -0800152 // 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 Hughes08fc03a2012-06-26 17:34:00 -0700163 // Fills 'monitor_enter_dex_pcs' with the dex pcs of the monitor-enter instructions corresponding
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200164 // to the locks held at 'dex_pc' in method 'm'.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700165 static void FindLocksAtDexPc(ArtMethod* m, uint32_t dex_pc,
Andreas Gampeaaf0d382017-11-27 14:10:21 -0800166 std::vector<DexLockInfo>* monitor_enter_dex_pcs)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700167 REQUIRES_SHARED(Locks::mutator_lock_);
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700168
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200169 // Returns the accessed field corresponding to the quick instruction's field
170 // offset at 'dex_pc' in method 'm'.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700171 static ArtField* FindAccessedFieldAtDexPc(ArtMethod* m, uint32_t dex_pc)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700172 REQUIRES_SHARED(Locks::mutator_lock_);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200173
174 // Returns the invoked method corresponding to the quick instruction's vtable
175 // index at 'dex_pc' in method 'm'.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700176 static ArtMethod* FindInvokedMethodAtDexPc(ArtMethod* m, uint32_t dex_pc)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700177 REQUIRES_SHARED(Locks::mutator_lock_);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200178
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700179 static void Init() REQUIRES_SHARED(Locks::mutator_lock_);
Elliott Hughes0a1038b2012-06-14 16:24:17 -0700180 static void Shutdown();
Ian Rogers776ac1f2012-04-13 23:36:36 -0700181
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800182 bool CanLoadClasses() const {
183 return can_load_classes_;
184 }
185
Mathieu Chartier590fee92013-09-13 13:46:47 -0700186 ~MethodVerifier();
Sebastien Hertz33691ab2013-08-02 14:19:57 +0200187
Ian Rogers7b3ddd22013-02-21 15:19:52 -0800188 // Run verification on the method. Returns true if verification completes and false if the input
189 // has an irrecoverable corruption.
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700190 bool Verify() REQUIRES_SHARED(Locks::mutator_lock_);
Ian Rogers7b3ddd22013-02-21 15:19:52 -0800191
192 // Describe VRegs at the given dex pc.
193 std::vector<int32_t> DescribeVRegs(uint32_t dex_pc);
194
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700195 static void VisitStaticRoots(RootVisitor* visitor)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700196 REQUIRES_SHARED(Locks::mutator_lock_);
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -0700197 void VisitRoots(RootVisitor* visitor, const RootInfo& roots)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700198 REQUIRES_SHARED(Locks::mutator_lock_);
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800199
Vladimir Marko2b5eaa22013-12-13 13:59:30 +0000200 // Accessors used by the compiler via CompilerCallback
Mathieu Chartier3da1d0f2017-11-06 20:02:24 -0800201 const CodeItemDataAccessor& CodeItem() const {
202 return code_item_accessor_;
203 }
Vladimir Marko2b5eaa22013-12-13 13:59:30 +0000204 RegisterLine* GetRegLine(uint32_t dex_pc);
Mathieu Chartierde40d472015-10-15 17:47:48 -0700205 ALWAYS_INLINE const InstructionFlags& GetInstructionFlags(size_t index) const;
206 ALWAYS_INLINE InstructionFlags& GetInstructionFlags(size_t index);
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700207 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 Marko2b5eaa22013-12-13 13:59:30 +0000210 MethodReference GetMethodReference() const;
211 uint32_t GetAccessFlags() const;
212 bool HasCheckCasts() const;
213 bool HasVirtualOrInterfaceInvokes() const;
214 bool HasFailures() const;
Nicolas Geoffray4824c272015-06-24 15:53:03 +0100215 bool HasInstructionThatWillThrow() const {
Andreas Gamped12e7822015-06-25 10:26:40 -0700216 return have_any_pending_runtime_throw_failure_;
Nicolas Geoffray4824c272015-06-24 15:53:03 +0100217 }
218
Andreas Gampea5b09a62016-11-17 15:21:22 -0800219 const RegType& ResolveCheckedClass(dex::TypeIndex class_idx)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700220 REQUIRES_SHARED(Locks::mutator_lock_);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700221 // Returns the method of a quick invoke or null if it cannot be found.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700222 ArtMethod* GetQuickInvokedMethod(const Instruction* inst, RegisterLine* reg_line,
Mathieu Chartier091d2382015-03-06 10:59:06 -0800223 bool is_range, bool allow_failure)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700224 REQUIRES_SHARED(Locks::mutator_lock_);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700225 // Returns the access field of a quick field access (iget/iput-quick) or null
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800226 // if it cannot be found.
Mathieu Chartierc7853442015-03-27 14:35:38 -0700227 ArtField* GetQuickFieldAccess(const Instruction* inst, RegisterLine* reg_line)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700228 REQUIRES_SHARED(Locks::mutator_lock_);
Vladimir Marko2b5eaa22013-12-13 13:59:30 +0000229
Andreas Gampe0760a812015-08-26 17:12:51 -0700230 uint32_t GetEncounteredFailureTypes() {
231 return encountered_failure_types_;
232 }
233
Andreas Gampee6215c02015-08-31 18:54:38 -0700234 bool IsInstanceConstructor() const {
235 return IsConstructor() && !IsStatic();
236 }
237
Vladimir Markoca6fff82017-10-03 14:49:14 +0100238 ScopedArenaAllocator& GetScopedAllocator() {
Vladimir Marko69d310e2017-10-09 14:12:23 +0100239 return allocator_;
Mathieu Chartierde40d472015-10-15 17:47:48 -0700240 }
241
Ian Rogers7b3ddd22013-02-21 15:19:52 -0800242 private:
Andreas Gampe53e32d12015-12-09 21:03:23 -0800243 MethodVerifier(Thread* self,
244 const DexFile* dex_file,
245 Handle<mirror::DexCache> dex_cache,
246 Handle<mirror::ClassLoader> class_loader,
David Brazdil15fc7292016-09-02 14:13:18 +0100247 const DexFile::ClassDef& class_def,
Andreas Gampe53e32d12015-12-09 21:03:23 -0800248 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 Gampebdf7f1c2016-08-30 16:38:47 -0700257 REQUIRES_SHARED(Locks::mutator_lock_);
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700258
Andreas Gampebf9611f2016-03-25 16:58:00 -0700259 void UninstantiableError(const char* descriptor);
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700260 static bool IsInstantiableOrPrimitive(mirror::Class* klass) REQUIRES_SHARED(Locks::mutator_lock_);
Andreas Gampebf9611f2016-03-25 16:58:00 -0700261
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 Rogersad0b3a32012-04-16 14:50:24 -0700272 // 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 Marko5c657fe2016-11-03 15:12:29 +0000276 void AppendToLastFailMessage(const std::string& append);
Ian Rogers776ac1f2012-04-13 23:36:36 -0700277
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800278 // Verification result for method(s). Includes a (maximum) failure kind, and (the union of)
279 // all failure types.
280 struct FailureData : ValueObject {
Andreas Gampe6d7abbd2017-04-24 13:19:09 -0700281 FailureKind kind = FailureKind::kNoFailure;
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800282 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 Gampeec6e6c12015-11-05 20:39:56 -0800288 // 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 Gampe9fcfb8a2016-02-04 20:52:54 -0800291 static FailureData VerifyMethods(Thread* self,
292 ClassLinker* linker,
293 const DexFile* dex_file,
David Brazdil15fc7292016-09-02 14:13:18 +0100294 const DexFile::ClassDef& class_def,
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800295 ClassDataItemIterator* it,
296 Handle<mirror::DexCache> dex_cache,
297 Handle<mirror::ClassLoader> class_loader,
298 CompilerCallbacks* callbacks,
299 bool allow_soft_failures,
Andreas Gampe5fd66d02016-09-12 20:22:19 -0700300 HardFailLogMode log_level,
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800301 bool need_precise_constants,
302 std::string* error_string)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700303 REQUIRES_SHARED(Locks::mutator_lock_);
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800304
Ian Rogers776ac1f2012-04-13 23:36:36 -0700305 /*
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 Rogerse1758fe2012-04-19 11:31:15 -0700315 */
David Brazdilca3c8c32016-09-06 14:04:48 +0100316 static FailureData VerifyMethod(Thread* self,
317 uint32_t method_idx,
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800318 const DexFile* dex_file,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700319 Handle<mirror::DexCache> dex_cache,
320 Handle<mirror::ClassLoader> class_loader,
David Brazdil15fc7292016-09-02 14:13:18 +0100321 const DexFile::ClassDef& class_def_idx,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800322 const DexFile::CodeItem* code_item,
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800323 ArtMethod* method,
324 uint32_t method_access_flags,
Andreas Gampe53e32d12015-12-09 21:03:23 -0800325 CompilerCallbacks* callbacks,
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800326 bool allow_soft_failures,
Andreas Gampe5fd66d02016-09-12 20:22:19 -0700327 HardFailLogMode log_level,
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800328 bool need_precise_constants,
329 std::string* hard_failure_msg)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700330 REQUIRES_SHARED(Locks::mutator_lock_);
Ian Rogerse1758fe2012-04-19 11:31:15 -0700331
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700332 void FindLocksAtDexPc() REQUIRES_SHARED(Locks::mutator_lock_);
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700333
Mathieu Chartierc7853442015-03-27 14:35:38 -0700334 ArtField* FindAccessedFieldAtDexPc(uint32_t dex_pc)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700335 REQUIRES_SHARED(Locks::mutator_lock_);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200336
Mathieu Chartiere401d142015-04-22 13:56:20 -0700337 ArtMethod* FindInvokedMethodAtDexPc(uint32_t dex_pc)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700338 REQUIRES_SHARED(Locks::mutator_lock_);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200339
Jeff Hao848f70a2014-01-15 13:49:50 -0800340 SafeMap<uint32_t, std::set<uint32_t>>& FindStringInitMap()
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700341 REQUIRES_SHARED(Locks::mutator_lock_);
Jeff Hao848f70a2014-01-15 13:49:50 -0800342
Ian Rogers776ac1f2012-04-13 23:36:36 -0700343 /*
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 Gampebdf7f1c2016-08-30 16:38:47 -0700369 bool ScanTryCatchBlocks() REQUIRES_SHARED(Locks::mutator_lock_);
Ian Rogers776ac1f2012-04-13 23:36:36 -0700370
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 Gampebf1cb772017-05-15 15:39:00 -0700376 template <bool kAllowRuntimeOnlyInstructions>
Ian Rogers776ac1f2012-04-13 23:36:36 -0700377 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 Gampebf1cb772017-05-15 15:39:00 -0700412 template <bool kAllowRuntimeOnlyInstructions>
413 bool VerifyInstruction(const Instruction* inst, uint32_t code_offset);
Ian Rogers776ac1f2012-04-13 23:36:36 -0700414
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 Hodson2e599942017-09-22 16:17:41 +0100421 // 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 Chartiereb8167a2014-05-07 15:43:14 -0700425 // Perform static checks on a field Get or set instruction. All we do here is ensure that the
Ian Rogers776ac1f2012-04-13 23:36:36 -0700426 // 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 Hodson2e599942017-09-22 16:17:41 +0100433 // 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 Rogers776ac1f2012-04-13 23:36:36 -0700437 // Perform static checks on a "new-instance" instruction. Specifically, make sure the class
438 // reference isn't for an array class.
Andreas Gampea5b09a62016-11-17 15:21:22 -0800439 bool CheckNewInstance(dex::TypeIndex idx);
Ian Rogers776ac1f2012-04-13 23:36:36 -0700440
Orion Hodsoncfa325e2016-10-13 10:25:54 +0100441 // 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 Rogers776ac1f2012-04-13 23:36:36 -0700445 /* 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 Gampea5b09a62016-11-17 15:21:22 -0800450 bool CheckTypeIndex(dex::TypeIndex idx);
Ian Rogers776ac1f2012-04-13 23:36:36 -0700451
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 Gampea5b09a62016-11-17 15:21:22 -0800454 bool CheckNewArray(dex::TypeIndex idx);
Ian Rogers776ac1f2012-04-13 23:36:36 -0700455
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 Hughes24edeb52012-06-18 15:29:46 -0700463 // Updates "insn_flags_", setting the "branch target" flag.
Ian Rogers776ac1f2012-04-13 23:36:36 -0700464 bool CheckBranchTarget(uint32_t cur_offset);
465
466 // Verify a switch table. "cur_offset" is the offset of the switch instruction.
Elliott Hughes24edeb52012-06-18 15:29:46 -0700467 // Updates "insn_flags_", setting the "branch target" flag.
Ian Rogers776ac1f2012-04-13 23:36:36 -0700468 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 Hodsoncfa325e2016-10-13 10:25:54 +0100483 // 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 Rogers776ac1f2012-04-13 23:36:36 -0700489 // 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 Gampebdf7f1c2016-08-30 16:38:47 -0700495 bool VerifyCodeFlow() REQUIRES_SHARED(Locks::mutator_lock_);
Ian Rogers776ac1f2012-04-13 23:36:36 -0700496
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 Gampebdf7f1c2016-08-30 16:38:47 -0700499 bool SetTypesFromSignature() REQUIRES_SHARED(Locks::mutator_lock_);
Ian Rogers776ac1f2012-04-13 23:36:36 -0700500
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 Gampebdf7f1c2016-08-30 16:38:47 -0700547 bool CodeFlowVerifyMethod() REQUIRES_SHARED(Locks::mutator_lock_);
Ian Rogers776ac1f2012-04-13 23:36:36 -0700548
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 Rogers00f7d0e2012-07-19 15:28:27 -0700558 bool CodeFlowVerifyInstruction(uint32_t* start_guess)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700559 REQUIRES_SHARED(Locks::mutator_lock_);
Ian Rogers776ac1f2012-04-13 23:36:36 -0700560
561 // Perform verification of a new array instruction
Sebastien Hertz5243e912013-05-21 10:55:07 +0200562 void VerifyNewArray(const Instruction* inst, bool is_filled, bool is_range)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700563 REQUIRES_SHARED(Locks::mutator_lock_);
Ian Rogers776ac1f2012-04-13 23:36:36 -0700564
Jeff Haofe1f7c82013-08-01 14:50:24 -0700565 // Helper to perform verification on puts of primitive type.
Ian Rogersd8f69b02014-09-10 21:43:52 +0000566 void VerifyPrimitivePut(const RegType& target_type, const RegType& insn_type,
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700567 const uint32_t vregA) REQUIRES_SHARED(Locks::mutator_lock_);
Jeff Haofe1f7c82013-08-01 14:50:24 -0700568
Ian Rogers776ac1f2012-04-13 23:36:36 -0700569 // 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 Rogersd8f69b02014-09-10 21:43:52 +0000573 void VerifyAGet(const Instruction* inst, const RegType& insn_type,
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700574 bool is_primitive) REQUIRES_SHARED(Locks::mutator_lock_);
Ian Rogers776ac1f2012-04-13 23:36:36 -0700575
576 // Perform verification of an aput instruction.
Ian Rogersd8f69b02014-09-10 21:43:52 +0000577 void VerifyAPut(const Instruction* inst, const RegType& insn_type,
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700578 bool is_primitive) REQUIRES_SHARED(Locks::mutator_lock_);
Ian Rogers776ac1f2012-04-13 23:36:36 -0700579
580 // Lookup instance field and fail for resolution violations
Mathieu Chartierc7853442015-03-27 14:35:38 -0700581 ArtField* GetInstanceField(const RegType& obj_type, int field_idx)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700582 REQUIRES_SHARED(Locks::mutator_lock_);
Ian Rogers776ac1f2012-04-13 23:36:36 -0700583
584 // Lookup static field and fail for resolution violations
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700585 ArtField* GetStaticField(int field_idx) REQUIRES_SHARED(Locks::mutator_lock_);
Ian Rogers776ac1f2012-04-13 23:36:36 -0700586
Andreas Gampe896df402014-10-20 22:25:29 -0700587 // 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 Gampebdf7f1c2016-08-30 16:38:47 -0700595 REQUIRES_SHARED(Locks::mutator_lock_);
Ian Rogers776ac1f2012-04-13 23:36:36 -0700596
Andreas Gampe896df402014-10-20 22:25:29 -0700597 template <FieldAccessType kAccType>
598 void VerifyQuickFieldAccess(const Instruction* inst, const RegType& insn_type, bool is_primitive)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700599 REQUIRES_SHARED(Locks::mutator_lock_);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200600
Andreas Gampe98be1a92017-08-28 08:25:45 -0700601 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 Gampebdf7f1c2016-08-30 16:38:47 -0700609 REQUIRES_SHARED(Locks::mutator_lock_);
Ian Rogers776ac1f2012-04-13 23:36:36 -0700610
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 Rogersd8f69b02014-09-10 21:43:52 +0000616 const RegType& GetCaughtExceptionType()
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700617 REQUIRES_SHARED(Locks::mutator_lock_);
Ian Rogers776ac1f2012-04-13 23:36:36 -0700618
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 Light7268d472016-01-20 15:50:01 -0800624 ArtMethod* ResolveMethodAndCheckAccess(uint32_t method_idx, MethodType method_type)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700625 REQUIRES_SHARED(Locks::mutator_lock_);
Ian Rogers776ac1f2012-04-13 23:36:36 -0700626
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 Chartier2cebb242015-04-21 16:50:40 -0700646 * Returns the resolved method on success, null on failure (with *failure
Ian Rogers776ac1f2012-04-13 23:36:36 -0700647 * set appropriately).
648 */
Alex Light7268d472016-01-20 15:50:01 -0800649 ArtMethod* VerifyInvocationArgs(const Instruction* inst, MethodType method_type, bool is_range)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700650 REQUIRES_SHARED(Locks::mutator_lock_);
Ian Rogers776ac1f2012-04-13 23:36:36 -0700651
Andreas Gampe95c0bf82014-06-16 14:06:52 -0700652 // 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 Gampebdf7f1c2016-08-30 16:38:47 -0700656 REQUIRES_SHARED(Locks::mutator_lock_);
Andreas Gampe95c0bf82014-06-16 14:06:52 -0700657
658 template <class T>
Mathieu Chartiere401d142015-04-22 13:56:20 -0700659 ArtMethod* VerifyInvocationArgsFromIterator(T* it, const Instruction* inst,
Andreas Gampe95c0bf82014-06-16 14:06:52 -0700660 MethodType method_type, bool is_range,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700661 ArtMethod* res_method)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700662 REQUIRES_SHARED(Locks::mutator_lock_);
Andreas Gampe95c0bf82014-06-16 14:06:52 -0700663
Mathieu Chartiere401d142015-04-22 13:56:20 -0700664 ArtMethod* VerifyInvokeVirtualQuickArgs(const Instruction* inst, bool is_range)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700665 REQUIRES_SHARED(Locks::mutator_lock_);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200666
Ian Rogers776ac1f2012-04-13 23:36:36 -0700667 /*
Orion Hodsonc069a302017-01-18 09:23:12 +0000668 * 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 Rogers776ac1f2012-04-13 23:36:36 -0700673 * 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 Kyle9bc61992014-09-22 13:53:15 +0100680 * 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 Rogers776ac1f2012-04-13 23:36:36 -0700695 * 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 Rogersebbdd872014-07-07 23:53:08 -0700697 * In the case of fall-through, update the merge line on a change as its the working line for the
698 * next instruction.
Ian Rogers776ac1f2012-04-13 23:36:36 -0700699 * Returns "false" if an error is encountered.
700 */
Ian Rogersebbdd872014-07-07 23:53:08 -0700701 bool UpdateRegisters(uint32_t next_insn, RegisterLine* merge_line, bool update_merge_line)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700702 REQUIRES_SHARED(Locks::mutator_lock_);
Ian Rogers776ac1f2012-04-13 23:36:36 -0700703
Ian Rogersad0b3a32012-04-16 14:50:24 -0700704 // Return the register type for the method.
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700705 const RegType& GetMethodReturnType() REQUIRES_SHARED(Locks::mutator_lock_);
Ian Rogersad0b3a32012-04-16 14:50:24 -0700706
707 // Get a type representing the declaring class of the method.
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700708 const RegType& GetDeclaringClass() REQUIRES_SHARED(Locks::mutator_lock_);
Ian Rogersad0b3a32012-04-16 14:50:24 -0700709
Ian Rogers7b3ddd22013-02-21 15:19:52 -0800710 InstructionFlags* CurrentInsnFlags();
Ian Rogers776ac1f2012-04-13 23:36:36 -0700711
Ian Rogersd8f69b02014-09-10 21:43:52 +0000712 const RegType& DetermineCat1Constant(int32_t value, bool precise)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700713 REQUIRES_SHARED(Locks::mutator_lock_);
Elliott Hughes0a1038b2012-06-14 16:24:17 -0700714
Andreas Gampef23f33d2015-06-23 14:18:17 -0700715 // 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 Gampebdf7f1c2016-08-30 16:38:47 -0700721 REQUIRES_SHARED(Locks::mutator_lock_);
Andreas Gampef23f33d2015-06-23 14:18:17 -0700722
Ian Rogers7b078e82014-09-10 14:44:24 -0700723 // The thread we're verifying on.
724 Thread* const self_;
725
Mathieu Chartierde40d472015-10-15 17:47:48 -0700726 // Arena allocator.
727 ArenaStack arena_stack_;
Vladimir Marko69d310e2017-10-09 14:12:23 +0100728 ScopedArenaAllocator allocator_;
Mathieu Chartierde40d472015-10-15 17:47:48 -0700729
Ian Rogers776ac1f2012-04-13 23:36:36 -0700730 RegTypeCache reg_types_;
731
732 PcToRegisterLineTable reg_table_;
733
734 // Storage for the register status we're currently working on.
Mathieu Chartier361e04a2016-02-16 14:06:35 -0800735 RegisterLineArenaUniquePtr work_line_;
Ian Rogers776ac1f2012-04-13 23:36:36 -0700736
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 Chartier361e04a2016-02-16 14:06:35 -0800742 RegisterLineArenaUniquePtr saved_line_;
Ian Rogers776ac1f2012-04-13 23:36:36 -0700743
Ian Rogers637c65b2013-05-31 11:46:00 -0700744 const uint32_t dex_method_idx_; // The method we're working on.
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700745 // Its object representation if known.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700746 ArtMethod* mirror_method_ GUARDED_BY(Locks::mutator_lock_);
Ian Rogers637c65b2013-05-31 11:46:00 -0700747 const uint32_t method_access_flags_; // Method's access flags.
Ian Rogersd8f69b02014-09-10 21:43:52 +0000748 const RegType* return_type_; // Lazily computed return type of the method.
Ian Rogers637c65b2013-05-31 11:46:00 -0700749 const DexFile* const dex_file_; // The dex file containing the method.
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700750 // The dex_cache for the declaring class of the method.
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700751 Handle<mirror::DexCache> dex_cache_ GUARDED_BY(Locks::mutator_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700752 // The class loader for the declaring class of the method.
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700753 Handle<mirror::ClassLoader> class_loader_ GUARDED_BY(Locks::mutator_lock_);
David Brazdil15fc7292016-09-02 14:13:18 +0100754 const DexFile::ClassDef& class_def_; // The class def of the declaring class of the method.
Mathieu Chartier3da1d0f2017-11-06 20:02:24 -0800755 const CodeItemDataAccessor code_item_accessor_;
Ian Rogersd8f69b02014-09-10 21:43:52 +0000756 const RegType* declaring_class_; // Lazily computed reg type of the method's declaring class.
Ian Rogers7b3ddd22013-02-21 15:19:52 -0800757 // Instruction widths and flags, one entry per code unit.
Mathieu Chartierde40d472015-10-15 17:47:48 -0700758 // Owned, but not unique_ptr since insn_flags_ are allocated in arenas.
759 ArenaUniquePtr<InstructionFlags[]> insn_flags_;
Sebastien Hertzc15853b2013-06-25 17:36:27 +0200760 // The dex PC of a FindLocksAtDexPc request, -1 otherwise.
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700761 uint32_t interesting_dex_pc_;
762 // The container into which FindLocksAtDexPc should write the registers containing held locks,
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700763 // null if we're not doing FindLocksAtDexPc.
Andreas Gampeaaf0d382017-11-27 14:10:21 -0800764 std::vector<DexLockInfo>* monitor_enter_dex_pcs_;
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700765
Ian Rogersad0b3a32012-04-16 14:50:24 -0700766 // 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_;
jeffhaofaf459e2012-08-31 15:32:47 -0700772 // 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 Gamped12e7822015-06-25 10:26:40 -0700776 // Note: this flag is reset after processing each instruction.
jeffhaofaf459e2012-08-31 15:32:47 -0700777 bool have_pending_runtime_throw_failure_;
Igor Murashkin4d7b75f2015-07-21 17:03:36 -0700778 // Is there a pending experimental failure?
779 bool have_pending_experimental_failure_;
Ian Rogers776ac1f2012-04-13 23:36:36 -0700780
Andreas Gamped12e7822015-06-25 10:26:40 -0700781 // 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 Rogersad0b3a32012-04-16 14:50:24 -0700784 // Info message log use primarily for verifier diagnostics.
Ian Rogers776ac1f2012-04-13 23:36:36 -0700785 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 Hughes80537bb2013-01-04 16:37:26 -0800790
Andreas Gampe0760a812015-08-26 17:12:51 -0700791 // Bitset of the encountered failure types. Bits are according to the values in VerifyError.
792 uint32_t encountered_failure_types_;
793
Elliott Hughes80537bb2013-01-04 16:37:26 -0800794 const bool can_load_classes_;
Jeff Haoee988952013-04-16 14:23:47 -0700795
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 Hertz4d4adb12013-07-24 16:14:19 +0200799
Ian Rogers46960fe2014-05-23 10:43:43 -0700800 // 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 Rogersa9a82542013-10-04 11:17:26 -0700806 // 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 Hertz4d4adb12013-07-24 16:14:19 +0200809 bool has_check_casts_;
810
Ian Rogersa9a82542013-10-04 11:17:26 -0700811 // Indicates the method being verified contains at least one invoke-virtual/range
Sebastien Hertz4d4adb12013-07-24 16:14:19 +0200812 // or invoke-interface/range.
813 bool has_virtual_or_interface_invokes_;
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700814
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 Rogers8e1f4f82014-11-05 11:07:30 -0800819
Mathieu Chartier4306ef82014-12-19 18:41:47 -0800820 // 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 Gampee6215c02015-08-31 18:54:38 -0700825 // 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 Chartierd0ad2ee2015-03-31 14:59:59 -0700832 // Link, for the method verifier root linked list.
833 MethodVerifier* link_;
834
835 friend class art::Thread;
David Brazdilca3c8c32016-09-06 14:04:48 +0100836 friend class VerifierDepsTest;
Jeff Hao848f70a2014-01-15 13:49:50 -0800837
Ian Rogers8e1f4f82014-11-05 11:07:30 -0800838 DISALLOW_COPY_AND_ASSIGN(MethodVerifier);
Ian Rogers776ac1f2012-04-13 23:36:36 -0700839};
Ian Rogers776ac1f2012-04-13 23:36:36 -0700840
841} // namespace verifier
842} // namespace art
843
Brian Carlstromfc0e3212013-07-17 14:40:12 -0700844#endif // ART_RUNTIME_VERIFIER_METHOD_VERIFIER_H_