blob: 5f1c2ac642ec9f73dcf3201507939a8dc995434b [file] [log] [blame]
Christopher Ferris3958f802017-02-01 15:44:40 -08001/*
2 * Copyright (C) 2016 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include <elf.h>
18
19#include <gtest/gtest.h>
20
21#include <vector>
22
Christopher Ferris53914162018-02-08 19:27:47 -080023#include <unwindstack/MachineArm.h>
Christopher Ferrisd06001d2017-11-30 18:56:01 -080024#include <unwindstack/RegsArm.h>
Christopher Ferrisd226a512017-07-14 10:37:19 -070025
Christopher Ferris3958f802017-02-01 15:44:40 -080026#include "ElfInterfaceArm.h"
Christopher Ferris3958f802017-02-01 15:44:40 -080027
Christopher Ferrise69f4702017-10-19 16:08:58 -070028#include "ElfFake.h"
Christopher Ferris3958f802017-02-01 15:44:40 -080029#include "MemoryFake.h"
30
Christopher Ferrisd226a512017-07-14 10:37:19 -070031namespace unwindstack {
32
Christopher Ferris3958f802017-02-01 15:44:40 -080033class ElfInterfaceArmTest : public ::testing::Test {
34 protected:
35 void SetUp() override {
36 memory_.Clear();
37 process_memory_.Clear();
38 }
39
40 MemoryFake memory_;
41 MemoryFake process_memory_;
42};
43
44TEST_F(ElfInterfaceArmTest, GetPrel32Addr) {
Christopher Ferrise69f4702017-10-19 16:08:58 -070045 ElfInterfaceArmFake interface(&memory_);
Christopher Ferris3958f802017-02-01 15:44:40 -080046 memory_.SetData32(0x1000, 0x230000);
47
48 uint32_t value;
49 ASSERT_TRUE(interface.GetPrel31Addr(0x1000, &value));
50 ASSERT_EQ(0x231000U, value);
51
52 memory_.SetData32(0x1000, 0x80001000);
53 ASSERT_TRUE(interface.GetPrel31Addr(0x1000, &value));
54 ASSERT_EQ(0x2000U, value);
55
56 memory_.SetData32(0x1000, 0x70001000);
57 ASSERT_TRUE(interface.GetPrel31Addr(0x1000, &value));
58 ASSERT_EQ(0xf0002000U, value);
59}
60
61TEST_F(ElfInterfaceArmTest, FindEntry_start_zero) {
Christopher Ferrise69f4702017-10-19 16:08:58 -070062 ElfInterfaceArmFake interface(&memory_);
63 interface.FakeSetStartOffset(0);
64 interface.FakeSetTotalEntries(10);
Christopher Ferris3958f802017-02-01 15:44:40 -080065
66 uint64_t entry_offset;
67 ASSERT_FALSE(interface.FindEntry(0x1000, &entry_offset));
68}
69
70TEST_F(ElfInterfaceArmTest, FindEntry_no_entries) {
Christopher Ferrise69f4702017-10-19 16:08:58 -070071 ElfInterfaceArmFake interface(&memory_);
72 interface.FakeSetStartOffset(0x100);
73 interface.FakeSetTotalEntries(0);
Christopher Ferris3958f802017-02-01 15:44:40 -080074
75 uint64_t entry_offset;
76 ASSERT_FALSE(interface.FindEntry(0x1000, &entry_offset));
77}
78
79TEST_F(ElfInterfaceArmTest, FindEntry_no_valid_memory) {
Christopher Ferrise69f4702017-10-19 16:08:58 -070080 ElfInterfaceArmFake interface(&memory_);
81 interface.FakeSetStartOffset(0x100);
82 interface.FakeSetTotalEntries(2);
Christopher Ferris3958f802017-02-01 15:44:40 -080083
84 uint64_t entry_offset;
85 ASSERT_FALSE(interface.FindEntry(0x1000, &entry_offset));
86}
87
88TEST_F(ElfInterfaceArmTest, FindEntry_ip_before_first) {
Christopher Ferrise69f4702017-10-19 16:08:58 -070089 ElfInterfaceArmFake interface(&memory_);
90 interface.FakeSetStartOffset(0x1000);
91 interface.FakeSetTotalEntries(1);
Christopher Ferris3958f802017-02-01 15:44:40 -080092 memory_.SetData32(0x1000, 0x6000);
93
94 uint64_t entry_offset;
95 ASSERT_FALSE(interface.FindEntry(0x1000, &entry_offset));
96}
97
98TEST_F(ElfInterfaceArmTest, FindEntry_single_entry_negative_value) {
Christopher Ferrise69f4702017-10-19 16:08:58 -070099 ElfInterfaceArmFake interface(&memory_);
100 interface.FakeSetStartOffset(0x8000);
101 interface.FakeSetTotalEntries(1);
Christopher Ferris3958f802017-02-01 15:44:40 -0800102 memory_.SetData32(0x8000, 0x7fffff00);
103
104 uint64_t entry_offset;
105 ASSERT_TRUE(interface.FindEntry(0x7ff0, &entry_offset));
106 ASSERT_EQ(0x8000U, entry_offset);
107}
108
109TEST_F(ElfInterfaceArmTest, FindEntry_two_entries) {
Christopher Ferrise69f4702017-10-19 16:08:58 -0700110 ElfInterfaceArmFake interface(&memory_);
111 interface.FakeSetStartOffset(0x1000);
112 interface.FakeSetTotalEntries(2);
Christopher Ferris3958f802017-02-01 15:44:40 -0800113 memory_.SetData32(0x1000, 0x6000);
114 memory_.SetData32(0x1008, 0x7000);
115
116 uint64_t entry_offset;
117 ASSERT_TRUE(interface.FindEntry(0x7000, &entry_offset));
118 ASSERT_EQ(0x1000U, entry_offset);
119}
120
Christopher Ferris3958f802017-02-01 15:44:40 -0800121TEST_F(ElfInterfaceArmTest, FindEntry_last_check_single_entry) {
Christopher Ferrise69f4702017-10-19 16:08:58 -0700122 ElfInterfaceArmFake interface(&memory_);
123 interface.FakeSetStartOffset(0x1000);
124 interface.FakeSetTotalEntries(1);
Christopher Ferris3958f802017-02-01 15:44:40 -0800125 memory_.SetData32(0x1000, 0x6000);
126
127 uint64_t entry_offset;
128 ASSERT_TRUE(interface.FindEntry(0x7000, &entry_offset));
129 ASSERT_EQ(0x1000U, entry_offset);
130
131 // To guarantee that we are using the cache on the second run,
132 // set the memory to a different value.
133 memory_.SetData32(0x1000, 0x8000);
134 ASSERT_TRUE(interface.FindEntry(0x7004, &entry_offset));
135 ASSERT_EQ(0x1000U, entry_offset);
136}
137
138TEST_F(ElfInterfaceArmTest, FindEntry_last_check_multiple_entries) {
Christopher Ferrise69f4702017-10-19 16:08:58 -0700139 ElfInterfaceArmFake interface(&memory_);
140 interface.FakeSetStartOffset(0x1000);
141 interface.FakeSetTotalEntries(2);
Christopher Ferris3958f802017-02-01 15:44:40 -0800142 memory_.SetData32(0x1000, 0x6000);
143 memory_.SetData32(0x1008, 0x8000);
144
145 uint64_t entry_offset;
146 ASSERT_TRUE(interface.FindEntry(0x9008, &entry_offset));
147 ASSERT_EQ(0x1008U, entry_offset);
148
149 // To guarantee that we are using the cache on the second run,
150 // set the memory to a different value.
151 memory_.SetData32(0x1000, 0x16000);
152 memory_.SetData32(0x1008, 0x18000);
153 ASSERT_TRUE(interface.FindEntry(0x9100, &entry_offset));
154 ASSERT_EQ(0x1008U, entry_offset);
155}
156
157TEST_F(ElfInterfaceArmTest, FindEntry_multiple_entries_even) {
Christopher Ferrise69f4702017-10-19 16:08:58 -0700158 ElfInterfaceArmFake interface(&memory_);
159 interface.FakeSetStartOffset(0x1000);
160 interface.FakeSetTotalEntries(4);
Christopher Ferris3958f802017-02-01 15:44:40 -0800161 memory_.SetData32(0x1000, 0x6000);
162 memory_.SetData32(0x1008, 0x7000);
163 memory_.SetData32(0x1010, 0x8000);
164 memory_.SetData32(0x1018, 0x9000);
165
166 uint64_t entry_offset;
167 ASSERT_TRUE(interface.FindEntry(0x9100, &entry_offset));
168 ASSERT_EQ(0x1010U, entry_offset);
169
170 // To guarantee that we are using the cache on the second run,
171 // set the memory to a different value.
172 memory_.SetData32(0x1000, 0x16000);
173 memory_.SetData32(0x1008, 0x17000);
174 memory_.SetData32(0x1010, 0x18000);
175 memory_.SetData32(0x1018, 0x19000);
176 ASSERT_TRUE(interface.FindEntry(0x9100, &entry_offset));
177 ASSERT_EQ(0x1010U, entry_offset);
178}
179
180TEST_F(ElfInterfaceArmTest, FindEntry_multiple_entries_odd) {
Christopher Ferrise69f4702017-10-19 16:08:58 -0700181 ElfInterfaceArmFake interface(&memory_);
182 interface.FakeSetStartOffset(0x1000);
183 interface.FakeSetTotalEntries(5);
Christopher Ferris3958f802017-02-01 15:44:40 -0800184 memory_.SetData32(0x1000, 0x5000);
185 memory_.SetData32(0x1008, 0x6000);
186 memory_.SetData32(0x1010, 0x7000);
187 memory_.SetData32(0x1018, 0x8000);
188 memory_.SetData32(0x1020, 0x9000);
189
190 uint64_t entry_offset;
191 ASSERT_TRUE(interface.FindEntry(0x8100, &entry_offset));
192 ASSERT_EQ(0x1010U, entry_offset);
193
194 // To guarantee that we are using the cache on the second run,
195 // set the memory to a different value.
196 memory_.SetData32(0x1000, 0x15000);
197 memory_.SetData32(0x1008, 0x16000);
198 memory_.SetData32(0x1010, 0x17000);
199 memory_.SetData32(0x1018, 0x18000);
200 memory_.SetData32(0x1020, 0x19000);
201 ASSERT_TRUE(interface.FindEntry(0x8100, &entry_offset));
202 ASSERT_EQ(0x1010U, entry_offset);
203}
204
205TEST_F(ElfInterfaceArmTest, iterate) {
Christopher Ferrise69f4702017-10-19 16:08:58 -0700206 ElfInterfaceArmFake interface(&memory_);
207 interface.FakeSetStartOffset(0x1000);
208 interface.FakeSetTotalEntries(5);
Christopher Ferris3958f802017-02-01 15:44:40 -0800209 memory_.SetData32(0x1000, 0x5000);
210 memory_.SetData32(0x1008, 0x6000);
211 memory_.SetData32(0x1010, 0x7000);
212 memory_.SetData32(0x1018, 0x8000);
213 memory_.SetData32(0x1020, 0x9000);
214
215 std::vector<uint32_t> entries;
216 for (auto addr : interface) {
217 entries.push_back(addr);
218 }
219 ASSERT_EQ(5U, entries.size());
220 ASSERT_EQ(0x6000U, entries[0]);
221 ASSERT_EQ(0x7008U, entries[1]);
222 ASSERT_EQ(0x8010U, entries[2]);
223 ASSERT_EQ(0x9018U, entries[3]);
224 ASSERT_EQ(0xa020U, entries[4]);
225
226 // Make sure the iterate cached the entries.
227 memory_.SetData32(0x1000, 0x11000);
228 memory_.SetData32(0x1008, 0x12000);
229 memory_.SetData32(0x1010, 0x13000);
230 memory_.SetData32(0x1018, 0x14000);
231 memory_.SetData32(0x1020, 0x15000);
232
233 entries.clear();
234 for (auto addr : interface) {
235 entries.push_back(addr);
236 }
237 ASSERT_EQ(5U, entries.size());
238 ASSERT_EQ(0x6000U, entries[0]);
239 ASSERT_EQ(0x7008U, entries[1]);
240 ASSERT_EQ(0x8010U, entries[2]);
241 ASSERT_EQ(0x9018U, entries[3]);
242 ASSERT_EQ(0xa020U, entries[4]);
243}
244
Christopher Ferris3958f802017-02-01 15:44:40 -0800245TEST_F(ElfInterfaceArmTest, HandleType_not_arm_exidx) {
Christopher Ferrise69f4702017-10-19 16:08:58 -0700246 ElfInterfaceArmFake interface(&memory_);
Christopher Ferris3958f802017-02-01 15:44:40 -0800247
Christopher Ferrise69f4702017-10-19 16:08:58 -0700248 ASSERT_FALSE(interface.HandleType(0x1000, PT_NULL, 0));
249 ASSERT_FALSE(interface.HandleType(0x1000, PT_LOAD, 0));
250 ASSERT_FALSE(interface.HandleType(0x1000, PT_DYNAMIC, 0));
251 ASSERT_FALSE(interface.HandleType(0x1000, PT_INTERP, 0));
252 ASSERT_FALSE(interface.HandleType(0x1000, PT_NOTE, 0));
253 ASSERT_FALSE(interface.HandleType(0x1000, PT_SHLIB, 0));
254 ASSERT_FALSE(interface.HandleType(0x1000, PT_PHDR, 0));
255 ASSERT_FALSE(interface.HandleType(0x1000, PT_TLS, 0));
256 ASSERT_FALSE(interface.HandleType(0x1000, PT_LOOS, 0));
257 ASSERT_FALSE(interface.HandleType(0x1000, PT_HIOS, 0));
258 ASSERT_FALSE(interface.HandleType(0x1000, PT_LOPROC, 0));
259 ASSERT_FALSE(interface.HandleType(0x1000, PT_HIPROC, 0));
260 ASSERT_FALSE(interface.HandleType(0x1000, PT_GNU_EH_FRAME, 0));
261 ASSERT_FALSE(interface.HandleType(0x1000, PT_GNU_STACK, 0));
Christopher Ferris3958f802017-02-01 15:44:40 -0800262}
263
264TEST_F(ElfInterfaceArmTest, HandleType_arm_exidx) {
Christopher Ferrise69f4702017-10-19 16:08:58 -0700265 ElfInterfaceArmFake interface(&memory_);
Christopher Ferris3958f802017-02-01 15:44:40 -0800266
267 Elf32_Phdr phdr;
Christopher Ferrise69f4702017-10-19 16:08:58 -0700268 interface.FakeSetStartOffset(0x1000);
269 interface.FakeSetTotalEntries(100);
Christopher Ferris3958f802017-02-01 15:44:40 -0800270 phdr.p_vaddr = 0x2000;
271 phdr.p_memsz = 0xa00;
272
273 // Verify that if reads fail, we don't set the values but still get true.
Christopher Ferrise69f4702017-10-19 16:08:58 -0700274 ASSERT_TRUE(interface.HandleType(0x1000, 0x70000001, 0));
Christopher Ferris3958f802017-02-01 15:44:40 -0800275 ASSERT_EQ(0x1000U, interface.start_offset());
276 ASSERT_EQ(100U, interface.total_entries());
277
278 // Verify that if the second read fails, we still don't set the values.
279 memory_.SetData32(
280 0x1000 + reinterpret_cast<uint64_t>(&phdr.p_vaddr) - reinterpret_cast<uint64_t>(&phdr),
281 phdr.p_vaddr);
Christopher Ferrise69f4702017-10-19 16:08:58 -0700282 ASSERT_TRUE(interface.HandleType(0x1000, 0x70000001, 0));
Christopher Ferris3958f802017-02-01 15:44:40 -0800283 ASSERT_EQ(0x1000U, interface.start_offset());
284 ASSERT_EQ(100U, interface.total_entries());
285
286 // Everything is correct and present.
287 memory_.SetData32(
288 0x1000 + reinterpret_cast<uint64_t>(&phdr.p_memsz) - reinterpret_cast<uint64_t>(&phdr),
289 phdr.p_memsz);
Christopher Ferrise69f4702017-10-19 16:08:58 -0700290 ASSERT_TRUE(interface.HandleType(0x1000, 0x70000001, 0));
Christopher Ferris3958f802017-02-01 15:44:40 -0800291 ASSERT_EQ(0x2000U, interface.start_offset());
292 ASSERT_EQ(320U, interface.total_entries());
293
294 // Non-zero load bias.
Christopher Ferrise69f4702017-10-19 16:08:58 -0700295 ASSERT_TRUE(interface.HandleType(0x1000, 0x70000001, 0x1000));
Christopher Ferris3958f802017-02-01 15:44:40 -0800296 ASSERT_EQ(0x1000U, interface.start_offset());
297 ASSERT_EQ(320U, interface.total_entries());
298}
299
300TEST_F(ElfInterfaceArmTest, StepExidx) {
Christopher Ferrise69f4702017-10-19 16:08:58 -0700301 ElfInterfaceArmFake interface(&memory_);
Christopher Ferris3958f802017-02-01 15:44:40 -0800302
303 // FindEntry fails.
Christopher Ferrisb9de87f2017-09-20 13:37:24 -0700304 bool finished;
Christopher Ferris4cc36d22018-06-06 14:47:31 -0700305 ASSERT_FALSE(interface.StepExidx(0x7000, nullptr, nullptr, &finished));
Christopher Ferris2fcf4cf2018-01-23 17:52:23 -0800306 EXPECT_EQ(ERROR_UNWIND_INFO, interface.LastErrorCode());
Christopher Ferris3958f802017-02-01 15:44:40 -0800307
308 // ExtractEntry should fail.
Christopher Ferrise69f4702017-10-19 16:08:58 -0700309 interface.FakeSetStartOffset(0x1000);
310 interface.FakeSetTotalEntries(2);
Christopher Ferris3958f802017-02-01 15:44:40 -0800311 memory_.SetData32(0x1000, 0x6000);
312 memory_.SetData32(0x1008, 0x8000);
313
314 RegsArm regs;
315 regs[ARM_REG_SP] = 0x1000;
316 regs[ARM_REG_LR] = 0x20000;
317 regs.set_sp(regs[ARM_REG_SP]);
318 regs.set_pc(0x1234);
Christopher Ferris4cc36d22018-06-06 14:47:31 -0700319 ASSERT_FALSE(interface.StepExidx(0x7000, &regs, &process_memory_, &finished));
Christopher Ferris2fcf4cf2018-01-23 17:52:23 -0800320 EXPECT_EQ(ERROR_MEMORY_INVALID, interface.LastErrorCode());
321 EXPECT_EQ(0x1004U, interface.LastErrorAddress());
Christopher Ferris3958f802017-02-01 15:44:40 -0800322
323 // Eval should fail.
324 memory_.SetData32(0x1004, 0x81000000);
Christopher Ferris4cc36d22018-06-06 14:47:31 -0700325 ASSERT_FALSE(interface.StepExidx(0x7000, &regs, &process_memory_, &finished));
Christopher Ferris2fcf4cf2018-01-23 17:52:23 -0800326 EXPECT_EQ(ERROR_UNWIND_INFO, interface.LastErrorCode());
Christopher Ferris3958f802017-02-01 15:44:40 -0800327
328 // Everything should pass.
329 memory_.SetData32(0x1004, 0x80b0b0b0);
Christopher Ferris4cc36d22018-06-06 14:47:31 -0700330 ASSERT_TRUE(interface.StepExidx(0x7000, &regs, &process_memory_, &finished));
Christopher Ferris2fcf4cf2018-01-23 17:52:23 -0800331 EXPECT_EQ(ERROR_UNWIND_INFO, interface.LastErrorCode());
Christopher Ferrisb9de87f2017-09-20 13:37:24 -0700332 ASSERT_FALSE(finished);
Christopher Ferris3958f802017-02-01 15:44:40 -0800333 ASSERT_EQ(0x1000U, regs.sp());
334 ASSERT_EQ(0x1000U, regs[ARM_REG_SP]);
335 ASSERT_EQ(0x20000U, regs.pc());
336 ASSERT_EQ(0x20000U, regs[ARM_REG_PC]);
Christopher Ferrise7b66242017-12-15 11:17:45 -0800337
338 // Load bias is non-zero.
Christopher Ferris4cc36d22018-06-06 14:47:31 -0700339 interface.set_load_bias(0x1000);
340 ASSERT_TRUE(interface.StepExidx(0x8000, &regs, &process_memory_, &finished));
Christopher Ferris2fcf4cf2018-01-23 17:52:23 -0800341 EXPECT_EQ(ERROR_UNWIND_INFO, interface.LastErrorCode());
Christopher Ferrise7b66242017-12-15 11:17:45 -0800342
343 // Pc too small.
Christopher Ferris4cc36d22018-06-06 14:47:31 -0700344 interface.set_load_bias(0x9000);
345 ASSERT_FALSE(interface.StepExidx(0x8000, &regs, &process_memory_, &finished));
Christopher Ferris2fcf4cf2018-01-23 17:52:23 -0800346 EXPECT_EQ(ERROR_UNWIND_INFO, interface.LastErrorCode());
Christopher Ferris3958f802017-02-01 15:44:40 -0800347}
348
349TEST_F(ElfInterfaceArmTest, StepExidx_pc_set) {
Christopher Ferrise69f4702017-10-19 16:08:58 -0700350 ElfInterfaceArmFake interface(&memory_);
Christopher Ferris3958f802017-02-01 15:44:40 -0800351
Christopher Ferrise69f4702017-10-19 16:08:58 -0700352 interface.FakeSetStartOffset(0x1000);
353 interface.FakeSetTotalEntries(2);
Christopher Ferris3958f802017-02-01 15:44:40 -0800354 memory_.SetData32(0x1000, 0x6000);
355 memory_.SetData32(0x1004, 0x808800b0);
356 memory_.SetData32(0x1008, 0x8000);
357 process_memory_.SetData32(0x10000, 0x10);
358
359 RegsArm regs;
360 regs[ARM_REG_SP] = 0x10000;
361 regs[ARM_REG_LR] = 0x20000;
362 regs.set_sp(regs[ARM_REG_SP]);
363 regs.set_pc(0x1234);
364
365 // Everything should pass.
Christopher Ferrisb9de87f2017-09-20 13:37:24 -0700366 bool finished;
Christopher Ferris4cc36d22018-06-06 14:47:31 -0700367 ASSERT_TRUE(interface.StepExidx(0x7000, &regs, &process_memory_, &finished));
Christopher Ferris2fcf4cf2018-01-23 17:52:23 -0800368 EXPECT_EQ(ERROR_NONE, interface.LastErrorCode());
Christopher Ferrisb9de87f2017-09-20 13:37:24 -0700369 ASSERT_FALSE(finished);
Christopher Ferris3958f802017-02-01 15:44:40 -0800370 ASSERT_EQ(0x10004U, regs.sp());
371 ASSERT_EQ(0x10004U, regs[ARM_REG_SP]);
372 ASSERT_EQ(0x10U, regs.pc());
373 ASSERT_EQ(0x10U, regs[ARM_REG_PC]);
374}
Christopher Ferrisd226a512017-07-14 10:37:19 -0700375
Christopher Ferrisb9de87f2017-09-20 13:37:24 -0700376TEST_F(ElfInterfaceArmTest, StepExidx_cant_unwind) {
Christopher Ferrise69f4702017-10-19 16:08:58 -0700377 ElfInterfaceArmFake interface(&memory_);
Christopher Ferrisb9de87f2017-09-20 13:37:24 -0700378
Christopher Ferrise69f4702017-10-19 16:08:58 -0700379 interface.FakeSetStartOffset(0x1000);
380 interface.FakeSetTotalEntries(1);
Christopher Ferrisb9de87f2017-09-20 13:37:24 -0700381 memory_.SetData32(0x1000, 0x6000);
382 memory_.SetData32(0x1004, 1);
383
384 RegsArm regs;
385 regs[ARM_REG_SP] = 0x10000;
386 regs[ARM_REG_LR] = 0x20000;
387 regs.set_sp(regs[ARM_REG_SP]);
388 regs.set_pc(0x1234);
389
390 bool finished;
Christopher Ferris4cc36d22018-06-06 14:47:31 -0700391 ASSERT_TRUE(interface.StepExidx(0x7000, &regs, &process_memory_, &finished));
Christopher Ferris2fcf4cf2018-01-23 17:52:23 -0800392 EXPECT_EQ(ERROR_NONE, interface.LastErrorCode());
Christopher Ferrisb9de87f2017-09-20 13:37:24 -0700393 ASSERT_TRUE(finished);
394 ASSERT_EQ(0x10000U, regs.sp());
395 ASSERT_EQ(0x10000U, regs[ARM_REG_SP]);
396 ASSERT_EQ(0x1234U, regs.pc());
397}
398
399TEST_F(ElfInterfaceArmTest, StepExidx_refuse_unwind) {
Christopher Ferrise69f4702017-10-19 16:08:58 -0700400 ElfInterfaceArmFake interface(&memory_);
Christopher Ferrisb9de87f2017-09-20 13:37:24 -0700401
Christopher Ferrise69f4702017-10-19 16:08:58 -0700402 interface.FakeSetStartOffset(0x1000);
403 interface.FakeSetTotalEntries(1);
Christopher Ferrisb9de87f2017-09-20 13:37:24 -0700404 memory_.SetData32(0x1000, 0x6000);
405 memory_.SetData32(0x1004, 0x808000b0);
406
407 RegsArm regs;
408 regs[ARM_REG_SP] = 0x10000;
409 regs[ARM_REG_LR] = 0x20000;
410 regs.set_sp(regs[ARM_REG_SP]);
411 regs.set_pc(0x1234);
412
413 bool finished;
Christopher Ferris4cc36d22018-06-06 14:47:31 -0700414 ASSERT_TRUE(interface.StepExidx(0x7000, &regs, &process_memory_, &finished));
Christopher Ferris2fcf4cf2018-01-23 17:52:23 -0800415 EXPECT_EQ(ERROR_NONE, interface.LastErrorCode());
Christopher Ferrisb9de87f2017-09-20 13:37:24 -0700416 ASSERT_TRUE(finished);
417 ASSERT_EQ(0x10000U, regs.sp());
418 ASSERT_EQ(0x10000U, regs[ARM_REG_SP]);
419 ASSERT_EQ(0x1234U, regs.pc());
420}
421
Christopher Ferris2502a602017-10-23 13:51:54 -0700422TEST_F(ElfInterfaceArmTest, StepExidx_pc_zero) {
423 ElfInterfaceArmFake interface(&memory_);
424
425 interface.FakeSetStartOffset(0x1000);
426 interface.FakeSetTotalEntries(1);
427 memory_.SetData32(0x1000, 0x6000);
428 // Set the pc using a pop r15 command.
429 memory_.SetData32(0x1004, 0x808800b0);
430
431 // pc value of zero.
432 process_memory_.SetData32(0x10000, 0);
433
434 RegsArm regs;
435 regs[ARM_REG_SP] = 0x10000;
436 regs[ARM_REG_LR] = 0x20000;
437 regs.set_sp(regs[ARM_REG_SP]);
438 regs.set_pc(0x1234);
439
440 bool finished;
Christopher Ferris4cc36d22018-06-06 14:47:31 -0700441 ASSERT_TRUE(interface.StepExidx(0x7000, &regs, &process_memory_, &finished));
Christopher Ferris2fcf4cf2018-01-23 17:52:23 -0800442 EXPECT_EQ(ERROR_NONE, interface.LastErrorCode());
Christopher Ferris2502a602017-10-23 13:51:54 -0700443 ASSERT_TRUE(finished);
444 ASSERT_EQ(0U, regs.pc());
445
446 // Now set the pc from the lr register (pop r14).
447 memory_.SetData32(0x1004, 0x808400b0);
448
449 regs[ARM_REG_SP] = 0x10000;
450 regs[ARM_REG_LR] = 0x20000;
451 regs.set_sp(regs[ARM_REG_SP]);
452 regs.set_pc(0x1234);
453
Christopher Ferris4cc36d22018-06-06 14:47:31 -0700454 ASSERT_TRUE(interface.StepExidx(0x7000, &regs, &process_memory_, &finished));
Christopher Ferris2fcf4cf2018-01-23 17:52:23 -0800455 EXPECT_EQ(ERROR_NONE, interface.LastErrorCode());
Christopher Ferris2502a602017-10-23 13:51:54 -0700456 ASSERT_TRUE(finished);
457 ASSERT_EQ(0U, regs.pc());
458}
459
Christopher Ferrisd226a512017-07-14 10:37:19 -0700460} // namespace unwindstack