blob: 495398b4b3f7cf0b01d47e8c7c2a44d755f6a746 [file] [log] [blame]
Elliott Hughes2faa5f12012-01-30 14:42:07 -08001/*
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 */
Shih-wei Liao2fb97532011-08-11 16:17:23 -070016
Ian Rogers700a4022014-05-19 16:49:03 -070017#include <memory>
Andreas Gampeb68ed2c2018-06-20 10:39:31 -070018#include <type_traits>
Ian Rogers700a4022014-05-19 16:49:03 -070019
Nicolas Geoffray47171752020-08-31 15:03:20 +010020#include "art_method-inl.h"
Vladimir Marko9d07e3d2016-03-31 12:02:28 +010021#include "base/arena_allocator.h"
Andreas Gampe8228cdf2017-05-30 15:03:54 -070022#include "base/callee_save_type.h"
Andreas Gampe542451c2016-07-26 09:02:02 -070023#include "base/enums.h"
David Sehr67bf42e2018-02-26 16:43:04 -080024#include "base/leb128.h"
David Sehr3215fff2018-04-03 17:10:12 -070025#include "base/malloc_arena_pool.h"
Shih-wei Liao2fb97532011-08-11 16:17:23 -070026#include "class_linker.h"
Brian Carlstroma1ce1fe2014-02-24 23:23:58 -080027#include "common_runtime_test.h"
David Sehr9e734c72018-01-04 17:56:19 -080028#include "dex/code_item_accessors-inl.h"
29#include "dex/dex_file-inl.h"
30#include "dex/dex_file.h"
31#include "dex/dex_file_exception_helpers.h"
Elliott Hughes90a33692011-08-30 13:27:07 -070032#include "gtest/gtest.h"
Andreas Gampe8cf9cb32017-07-19 09:28:38 -070033#include "handle_scope-inl.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070034#include "mirror/class-inl.h"
Ian Rogers04d7aa92013-03-16 14:29:17 -070035#include "mirror/object-inl.h"
Andreas Gampe8cf9cb32017-07-19 09:28:38 -070036#include "mirror/object_array-inl.h"
Vladimir Markobdc93b42019-03-29 16:12:04 +000037#include "mirror/stack_trace_element-inl.h"
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +010038#include "oat_quick_method_header.h"
Vladimir Markoa8bba7d2018-05-30 15:18:48 +010039#include "obj_ptr-inl.h"
Vladimir Marko9d07e3d2016-03-31 12:02:28 +010040#include "optimizing/stack_map_stream.h"
Andreas Gampec15a2f42017-04-21 12:09:39 -070041#include "runtime-inl.h"
Mathieu Chartier0795f232016-09-27 18:43:30 -070042#include "scoped_thread_state_change-inl.h"
Shih-wei Liao2fb97532011-08-11 16:17:23 -070043#include "thread.h"
Shih-wei Liao2fb97532011-08-11 16:17:23 -070044
45namespace art {
46
Brian Carlstroma1ce1fe2014-02-24 23:23:58 -080047class ExceptionTest : public CommonRuntimeTest {
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -070048 protected:
Aart Bike78471d2018-02-08 11:23:07 -080049 // Since various dexers may differ in bytecode layout, we play
50 // it safe and simply set the dex pc to the start of the method,
51 // which always points to the first source statement.
52 static constexpr const uint32_t kDexPc = 0;
53
Andreas Gampefa6a1b02018-09-07 08:11:55 -070054 void SetUp() override {
Brian Carlstroma1ce1fe2014-02-24 23:23:58 -080055 CommonRuntimeTest::SetUp();
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -070056
Ian Rogers00f7d0e2012-07-19 15:28:27 -070057 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070058 StackHandleScope<2> hs(soa.Self());
59 Handle<mirror::ClassLoader> class_loader(
Mathieu Chartier0795f232016-09-27 18:43:30 -070060 hs.NewHandle(soa.Decode<mirror::ClassLoader>(LoadDex("ExceptionHandle"))));
Ian Rogers98379392014-02-24 16:53:16 -080061 my_klass_ = class_linker_->FindClass(soa.Self(), "LExceptionHandle;", class_loader);
Ian Rogers1d8cdbc2014-09-22 22:51:09 -070062 ASSERT_TRUE(my_klass_ != nullptr);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070063 Handle<mirror::Class> klass(hs.NewHandle(my_klass_));
Ian Rogers7b078e82014-09-10 14:44:24 -070064 class_linker_->EnsureInitialized(soa.Self(), klass, true, true);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070065 my_klass_ = klass.Get();
Brian Carlstrom33f741e2011-10-03 11:24:05 -070066
Ian Rogers4445a7e2012-10-05 17:19:13 -070067 dex_ = my_klass_->GetDexCache()->GetDexFile();
Brian Carlstrom33f741e2011-10-03 11:24:05 -070068
Brian Carlstromf8bbb842012-03-14 03:01:42 -070069 uint32_t code_size = 12;
Brian Carlstromf8bbb842012-03-14 03:01:42 -070070 for (size_t i = 0 ; i < code_size; i++) {
71 fake_code_.push_back(0x70 | i);
Brian Carlstrom3320cf42011-10-04 14:58:28 -070072 }
73
David Srbeckyda4ff8b2018-05-29 20:20:12 +010074 const uint32_t native_pc_offset = 4u;
75 CHECK_ALIGNED_PARAM(native_pc_offset, GetInstructionSetInstructionAlignment(kRuntimeISA));
76
David Sehr3215fff2018-04-03 17:10:12 -070077 MallocArenaPool pool;
Vladimir Marko174b2e22017-10-12 13:34:49 +010078 ArenaStack arena_stack(&pool);
79 ScopedArenaAllocator allocator(&arena_stack);
Mathieu Chartiera2f526f2017-01-19 14:48:48 -080080 StackMapStream stack_maps(&allocator, kRuntimeISA);
David Srbeckyf6ba5b32018-06-23 22:05:49 +010081 stack_maps.BeginMethod(4 * sizeof(void*), 0u, 0u, 0u);
82 stack_maps.BeginStackMapEntry(kDexPc, native_pc_offset);
Vladimir Marko9d07e3d2016-03-31 12:02:28 +010083 stack_maps.EndStackMapEntry();
David Srbecky17b4d2b2021-03-02 18:14:31 +000084 stack_maps.EndMethod(code_size);
David Srbeckye7a91942018-08-01 17:23:53 +010085 ScopedArenaVector<uint8_t> stack_map = stack_maps.Encode();
86
87 const size_t stack_maps_size = stack_map.size();
David Srbeckyda4ff8b2018-05-29 20:20:12 +010088 const size_t header_size = sizeof(OatQuickMethodHeader);
89 const size_t code_alignment = GetInstructionSetAlignment(kRuntimeISA);
Brian Carlstrom33f741e2011-10-03 11:24:05 -070090
David Srbeckye8d3a632018-07-27 18:47:44 +010091 fake_header_code_and_maps_.resize(stack_maps_size + header_size + code_size + code_alignment);
92 // NB: The start of the vector might not have been allocated the desired alignment.
93 uint8_t* code_ptr =
94 AlignUp(&fake_header_code_and_maps_[stack_maps_size + header_size], code_alignment);
95
David Srbeckye7a91942018-08-01 17:23:53 +010096 memcpy(&fake_header_code_and_maps_[0], stack_map.data(), stack_maps_size);
David Srbecky113d6ea2021-03-02 22:49:46 +000097 OatQuickMethodHeader method_header(code_ptr - fake_header_code_and_maps_.data());
Andreas Gampeb68ed2c2018-06-20 10:39:31 -070098 static_assert(std::is_trivially_copyable<OatQuickMethodHeader>::value, "Cannot use memcpy");
David Srbeckye8d3a632018-07-27 18:47:44 +010099 memcpy(code_ptr - header_size, &method_header, header_size);
100 memcpy(code_ptr, fake_code_.data(), fake_code_.size());
Vladimir Marko562ff442015-10-27 18:51:20 +0000101
Vladimir Marko33bff252017-11-01 14:35:42 +0000102 if (kRuntimeISA == InstructionSet::kArm) {
Vladimir Marko562ff442015-10-27 18:51:20 +0000103 // Check that the Thumb2 adjustment will be a NOP, see EntryPointToCodePointer().
David Srbeckyda4ff8b2018-05-29 20:20:12 +0100104 CHECK_ALIGNED(code_ptr, 2);
Vladimir Marko562ff442015-10-27 18:51:20 +0000105 }
Vladimir Marko8a630572014-04-09 18:45:35 +0100106
Vladimir Markoba118822017-06-12 15:41:56 +0100107 method_f_ = my_klass_->FindClassMethod("f", "()I", kRuntimePointerSize);
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700108 ASSERT_TRUE(method_f_ != nullptr);
Vladimir Markoba118822017-06-12 15:41:56 +0100109 ASSERT_FALSE(method_f_->IsDirect());
Vladimir Marko8a630572014-04-09 18:45:35 +0100110 method_f_->SetEntryPointFromQuickCompiledCode(code_ptr);
Brian Carlstrom33f741e2011-10-03 11:24:05 -0700111
Vladimir Markoba118822017-06-12 15:41:56 +0100112 method_g_ = my_klass_->FindClassMethod("g", "(I)V", kRuntimePointerSize);
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700113 ASSERT_TRUE(method_g_ != nullptr);
Vladimir Markoba118822017-06-12 15:41:56 +0100114 ASSERT_FALSE(method_g_->IsDirect());
Vladimir Marko8a630572014-04-09 18:45:35 +0100115 method_g_->SetEntryPointFromQuickCompiledCode(code_ptr);
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700116 }
117
Brian Carlstrom33f741e2011-10-03 11:24:05 -0700118 const DexFile* dex_;
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700119
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700120 std::vector<uint8_t> fake_code_;
Vladimir Marko8a630572014-04-09 18:45:35 +0100121 std::vector<uint8_t> fake_header_code_and_maps_;
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700122
Mathieu Chartiere401d142015-04-22 13:56:20 -0700123 ArtMethod* method_f_;
124 ArtMethod* method_g_;
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700125
126 private:
Vladimir Markoa8bba7d2018-05-30 15:18:48 +0100127 ObjPtr<mirror::Class> my_klass_;
Shih-wei Liao2fb97532011-08-11 16:17:23 -0700128};
129
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700130TEST_F(ExceptionTest, FindCatchHandler) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800131 ScopedObjectAccess soa(Thread::Current());
Nicolas Geoffray47171752020-08-31 15:03:20 +0100132 CodeItemDataAccessor accessor(*dex_, method_f_->GetCodeItem());
Shih-wei Liao2fb97532011-08-11 16:17:23 -0700133
Mathieu Chartierdc578c72017-12-27 11:51:45 -0800134 ASSERT_TRUE(accessor.HasCodeItem());
Shih-wei Liao2fb97532011-08-11 16:17:23 -0700135
Mathieu Chartier808c7a52017-12-15 11:19:33 -0800136 ASSERT_EQ(2u, accessor.TriesSize());
137 ASSERT_NE(0u, accessor.InsnsSizeInCodeUnits());
Shih-wei Liao2fb97532011-08-11 16:17:23 -0700138
Andreas Gampe3f1dcd32018-12-28 09:39:56 -0800139 const dex::TryItem& t0 = accessor.TryItems().begin()[0];
140 const dex::TryItem& t1 = accessor.TryItems().begin()[1];
Mathieu Chartierdc578c72017-12-27 11:51:45 -0800141 EXPECT_LE(t0.start_addr_, t1.start_addr_);
Ian Rogers0571d352011-11-03 19:51:38 -0700142 {
Mathieu Chartierdc578c72017-12-27 11:51:45 -0800143 CatchHandlerIterator iter(accessor, 4 /* Dex PC in the first try block */);
Ian Rogers0571d352011-11-03 19:51:38 -0700144 EXPECT_STREQ("Ljava/io/IOException;", dex_->StringByTypeIdx(iter.GetHandlerTypeIndex()));
145 ASSERT_TRUE(iter.HasNext());
146 iter.Next();
147 EXPECT_STREQ("Ljava/lang/Exception;", dex_->StringByTypeIdx(iter.GetHandlerTypeIndex()));
148 ASSERT_TRUE(iter.HasNext());
149 iter.Next();
150 EXPECT_FALSE(iter.HasNext());
151 }
152 {
Mathieu Chartierdc578c72017-12-27 11:51:45 -0800153 CatchHandlerIterator iter(accessor, 8 /* Dex PC in the second try block */);
Ian Rogers0571d352011-11-03 19:51:38 -0700154 EXPECT_STREQ("Ljava/io/IOException;", dex_->StringByTypeIdx(iter.GetHandlerTypeIndex()));
155 ASSERT_TRUE(iter.HasNext());
156 iter.Next();
157 EXPECT_FALSE(iter.HasNext());
158 }
159 {
Mathieu Chartierdc578c72017-12-27 11:51:45 -0800160 CatchHandlerIterator iter(accessor, 11 /* Dex PC not in any try block */);
Ian Rogers0571d352011-11-03 19:51:38 -0700161 EXPECT_FALSE(iter.HasNext());
162 }
Shih-wei Liao2fb97532011-08-11 16:17:23 -0700163}
164
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700165TEST_F(ExceptionTest, StackTraceElement) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700166 Thread* thread = Thread::Current();
Ian Rogers0fb6bb52012-08-14 15:10:19 -0700167 thread->TransitionFromSuspendedToRunnable();
Brian Carlstrombd86bcc2013-03-10 20:26:16 -0700168 bool started = runtime_->Start();
169 CHECK(started);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700170 JNIEnv* env = thread->GetJniEnv();
171 ScopedObjectAccess soa(env);
Brian Carlstrom25c33252011-09-18 15:58:35 -0700172
Elliott Hughes3b6baaa2011-10-14 19:13:56 -0700173 std::vector<uintptr_t> fake_stack;
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700174 Runtime* r = Runtime::Current();
175 r->SetInstructionSet(kRuntimeISA);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700176 ArtMethod* save_method = r->CreateCalleeSaveMethod();
Andreas Gampe8228cdf2017-05-30 15:03:54 -0700177 r->SetCalleeSaveMethod(save_method, CalleeSaveType::kSaveAllCalleeSaves);
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100178 QuickMethodFrameInfo frame_info = r->GetRuntimeMethodFrameInfo(save_method);
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700179
Brian Carlstromba150c32013-08-27 17:31:03 -0700180 ASSERT_EQ(kStackAlignment, 16U);
Andreas Gampecfa5c482014-03-12 14:11:40 -0700181 // ASSERT_EQ(sizeof(uintptr_t), sizeof(uint32_t));
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700182
Elliott Hughes956af0f2014-12-11 14:34:28 -0800183 // Create the stack frame for the callee save method, expected by the runtime.
184 fake_stack.push_back(reinterpret_cast<uintptr_t>(save_method));
185 for (size_t i = 0; i < frame_info.FrameSizeInBytes() - 2 * sizeof(uintptr_t);
186 i += sizeof(uintptr_t)) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800187 fake_stack.push_back(0);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800188 }
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700189
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100190 fake_stack.push_back(method_g_->GetOatQuickMethodHeader(0)->ToNativeQuickPc(
Andreas Gampe3db70682018-12-26 15:12:03 -0800191 method_g_, kDexPc, /* is_for_catch_handler= */ false)); // return pc
Elliott Hughes956af0f2014-12-11 14:34:28 -0800192
193 // Create/push fake 16byte stack frame for method g
194 fake_stack.push_back(reinterpret_cast<uintptr_t>(method_g_));
195 fake_stack.push_back(0);
196 fake_stack.push_back(0);
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +0100197 fake_stack.push_back(method_g_->GetOatQuickMethodHeader(0)->ToNativeQuickPc(
Andreas Gampe3db70682018-12-26 15:12:03 -0800198 method_g_, kDexPc, /* is_for_catch_handler= */ false)); // return pc
Elliott Hughes956af0f2014-12-11 14:34:28 -0800199
200 // Create/push fake 16byte stack frame for method f
201 fake_stack.push_back(reinterpret_cast<uintptr_t>(method_f_));
202 fake_stack.push_back(0);
203 fake_stack.push_back(0);
204 fake_stack.push_back(0xEBAD6070); // return pc
205
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700206 // Push Method* of null to terminate the trace
Elliott Hughes956af0f2014-12-11 14:34:28 -0800207 fake_stack.push_back(0);
208
209 // Push null values which will become null incoming arguments.
210 fake_stack.push_back(0);
211 fake_stack.push_back(0);
212 fake_stack.push_back(0);
213
Aart Bike78471d2018-02-08 11:23:07 -0800214 // Set up thread to appear as if we called out of method_g_ at given pc dex.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700215 thread->SetTopOfStack(reinterpret_cast<ArtMethod**>(&fake_stack[0]));
Elliott Hughes956af0f2014-12-11 14:34:28 -0800216
Vladimir Markod34b73b2020-05-05 10:07:59 +0100217 jobject internal = thread->CreateInternalStackTrace(soa);
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700218 ASSERT_TRUE(internal != nullptr);
Ian Rogers53b8b092014-03-13 23:45:53 -0700219 jobjectArray ste_array = Thread::InternalStackTraceToStackTraceElementArray(soa, internal);
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700220 ASSERT_TRUE(ste_array != nullptr);
Mathieu Chartier0795f232016-09-27 18:43:30 -0700221 auto trace_array = soa.Decode<mirror::ObjectArray<mirror::StackTraceElement>>(ste_array);
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700222
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700223 ASSERT_TRUE(trace_array != nullptr);
224 ASSERT_TRUE(trace_array->Get(0) != nullptr);
Brian Carlstrom33f741e2011-10-03 11:24:05 -0700225 EXPECT_STREQ("ExceptionHandle",
Shih-wei Liao44175362011-08-28 16:59:17 -0700226 trace_array->Get(0)->GetDeclaringClass()->ToModifiedUtf8().c_str());
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700227 EXPECT_STREQ("ExceptionHandle.java",
228 trace_array->Get(0)->GetFileName()->ToModifiedUtf8().c_str());
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700229 EXPECT_STREQ("g", trace_array->Get(0)->GetMethodName()->ToModifiedUtf8().c_str());
Aart Bike78471d2018-02-08 11:23:07 -0800230 EXPECT_EQ(36, trace_array->Get(0)->GetLineNumber());
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700231
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700232 ASSERT_TRUE(trace_array->Get(1) != nullptr);
Brian Carlstrom33f741e2011-10-03 11:24:05 -0700233 EXPECT_STREQ("ExceptionHandle",
Shih-wei Liao44175362011-08-28 16:59:17 -0700234 trace_array->Get(1)->GetDeclaringClass()->ToModifiedUtf8().c_str());
Ian Rogers1d8cdbc2014-09-22 22:51:09 -0700235 EXPECT_STREQ("ExceptionHandle.java",
236 trace_array->Get(1)->GetFileName()->ToModifiedUtf8().c_str());
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700237 EXPECT_STREQ("f", trace_array->Get(1)->GetMethodName()->ToModifiedUtf8().c_str());
Brian Carlstrom06ed7392012-01-31 01:25:48 -0800238 EXPECT_EQ(22, trace_array->Get(1)->GetLineNumber());
Elliott Hughesa43e0932012-03-27 18:35:33 -0700239
Elliott Hughes956af0f2014-12-11 14:34:28 -0800240 thread->SetTopOfStack(nullptr); // Disarm the assertion that no code is running when we detach.
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700241}
242
Shih-wei Liao2fb97532011-08-11 16:17:23 -0700243} // namespace art