blob: ccf34b816b1c106afd2ef7fce71831d5a4e61e79 [file] [log] [blame]
Brian Carlstrom700c8d32012-11-05 10:42:02 -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 */
16
Brian Carlstrom700c8d32012-11-05 10:42:02 -080017#include "elf_file.h"
18
Ian Rogerse63db272014-07-15 15:36:11 -070019#include "base/stringprintf.h"
Ian Rogersd4c4d952014-10-16 20:31:53 -070020#include "base/unix_file/fd_file.h"
Brian Carlstroma1ce1fe2014-02-24 23:23:58 -080021#include "common_compiler_test.h"
David Srbecky2f6cdb02015-04-11 00:17:53 +010022#include "elf_file.h"
23#include "elf_file_impl.h"
24#include "elf_writer_quick.h"
Brian Carlstroma1ce1fe2014-02-24 23:23:58 -080025#include "oat.h"
Ian Rogerse63db272014-07-15 15:36:11 -070026#include "utils.h"
Brian Carlstroma1ce1fe2014-02-24 23:23:58 -080027
Brian Carlstrom700c8d32012-11-05 10:42:02 -080028namespace art {
29
Brian Carlstroma1ce1fe2014-02-24 23:23:58 -080030class ElfWriterTest : public CommonCompilerTest {
Brian Carlstrom700c8d32012-11-05 10:42:02 -080031 protected:
32 virtual void SetUp() {
33 ReserveImageSpace();
Brian Carlstroma1ce1fe2014-02-24 23:23:58 -080034 CommonCompilerTest::SetUp();
Brian Carlstrom700c8d32012-11-05 10:42:02 -080035 }
36};
37
Brian Carlstrom31050c62013-12-15 12:36:09 -080038#define EXPECT_ELF_FILE_ADDRESS(ef, expected_value, symbol_name, build_map) \
39 do { \
Nicolas Geoffray50cfe742014-02-19 13:27:42 +000040 void* addr = reinterpret_cast<void*>(ef->FindSymbolAddress(SHT_DYNSYM, \
Brian Carlstrom31050c62013-12-15 12:36:09 -080041 symbol_name, \
42 build_map)); \
43 EXPECT_NE(nullptr, addr); \
44 EXPECT_LT(static_cast<uintptr_t>(ART_BASE_ADDRESS), reinterpret_cast<uintptr_t>(addr)); \
45 if (expected_value == nullptr) { \
46 expected_value = addr; \
47 } \
48 EXPECT_EQ(expected_value, addr); \
49 EXPECT_EQ(expected_value, ef->FindDynamicSymbolAddress(symbol_name)); \
50 } while (false)
Brian Carlstrom700c8d32012-11-05 10:42:02 -080051
Brian Carlstrom6a47b9d2013-05-17 10:58:25 -070052TEST_F(ElfWriterTest, dlsym) {
Igor Murashkin37743352014-11-13 14:38:00 -080053 std::string elf_location = GetCoreOatLocation();
Brian Carlstrom2afe4942014-05-19 10:25:33 -070054 std::string elf_filename = GetSystemImageFilename(elf_location.c_str(), kRuntimeISA);
Brian Carlstrom700c8d32012-11-05 10:42:02 -080055 LOG(INFO) << "elf_filename=" << elf_filename;
56
57 UnreserveImageSpace();
Mathieu Chartier2cebb242015-04-21 16:50:40 -070058 void* dl_oatdata = nullptr;
59 void* dl_oatexec = nullptr;
60 void* dl_oatlastword = nullptr;
Brian Carlstrom700c8d32012-11-05 10:42:02 -080061
Ian Rogers700a4022014-05-19 16:49:03 -070062 std::unique_ptr<File> file(OS::OpenFileForReading(elf_filename.c_str()));
Mathieu Chartier2cebb242015-04-21 16:50:40 -070063 ASSERT_TRUE(file.get() != nullptr);
Brian Carlstrom700c8d32012-11-05 10:42:02 -080064 {
Ian Rogers8d31bbd2013-10-13 10:44:14 -070065 std::string error_msg;
Ian Rogers700a4022014-05-19 16:49:03 -070066 std::unique_ptr<ElfFile> ef(ElfFile::Open(file.get(), false, false, &error_msg));
Ian Rogers8d31bbd2013-10-13 10:44:14 -070067 CHECK(ef.get() != nullptr) << error_msg;
Brian Carlstrom265091e2013-01-30 14:08:26 -080068 EXPECT_ELF_FILE_ADDRESS(ef, dl_oatdata, "oatdata", false);
69 EXPECT_ELF_FILE_ADDRESS(ef, dl_oatexec, "oatexec", false);
70 EXPECT_ELF_FILE_ADDRESS(ef, dl_oatlastword, "oatlastword", false);
71 }
72 {
Ian Rogers8d31bbd2013-10-13 10:44:14 -070073 std::string error_msg;
Ian Rogers700a4022014-05-19 16:49:03 -070074 std::unique_ptr<ElfFile> ef(ElfFile::Open(file.get(), false, false, &error_msg));
Ian Rogers8d31bbd2013-10-13 10:44:14 -070075 CHECK(ef.get() != nullptr) << error_msg;
Brian Carlstrom265091e2013-01-30 14:08:26 -080076 EXPECT_ELF_FILE_ADDRESS(ef, dl_oatdata, "oatdata", true);
77 EXPECT_ELF_FILE_ADDRESS(ef, dl_oatexec, "oatexec", true);
78 EXPECT_ELF_FILE_ADDRESS(ef, dl_oatlastword, "oatlastword", true);
Brian Carlstrom700c8d32012-11-05 10:42:02 -080079 }
80 {
Ian Rogers8d31bbd2013-10-13 10:44:14 -070081 std::string error_msg;
Ian Rogers700a4022014-05-19 16:49:03 -070082 std::unique_ptr<ElfFile> ef(ElfFile::Open(file.get(), false, true, &error_msg));
Ian Rogers8d31bbd2013-10-13 10:44:14 -070083 CHECK(ef.get() != nullptr) << error_msg;
84 CHECK(ef->Load(false, &error_msg)) << error_msg;
Brian Carlstrom700c8d32012-11-05 10:42:02 -080085 EXPECT_EQ(dl_oatdata, ef->FindDynamicSymbolAddress("oatdata"));
86 EXPECT_EQ(dl_oatexec, ef->FindDynamicSymbolAddress("oatexec"));
87 EXPECT_EQ(dl_oatlastword, ef->FindDynamicSymbolAddress("oatlastword"));
88 }
89}
90
David Srbecky2f6cdb02015-04-11 00:17:53 +010091TEST_F(ElfWriterTest, EncodeDecodeOatPatches) {
David Srbeckyf8980872015-05-22 17:04:47 +010092 const std::vector<std::vector<uintptr_t>> test_data {
93 { 0, 4, 8, 15, 128, 200 },
94 { 8, 8 + 127 },
95 { 8, 8 + 128 },
96 { },
97 };
98 for (const auto& patch_locations : test_data) {
99 constexpr int32_t delta = 0x11235813;
David Srbecky2f6cdb02015-04-11 00:17:53 +0100100
David Srbeckyf8980872015-05-22 17:04:47 +0100101 // Encode patch locations.
102 std::vector<uint8_t> oat_patches;
103 ElfWriterQuick32::EncodeOatPatches(patch_locations, &oat_patches);
David Srbecky2f6cdb02015-04-11 00:17:53 +0100104
David Srbeckyf8980872015-05-22 17:04:47 +0100105 // Create buffer to be patched.
106 std::vector<uint8_t> initial_data(256);
107 for (size_t i = 0; i < initial_data.size(); i++) {
108 initial_data[i] = i;
109 }
110
111 // Patch manually.
112 std::vector<uint8_t> expected = initial_data;
113 for (uintptr_t location : patch_locations) {
114 typedef __attribute__((__aligned__(1))) uint32_t UnalignedAddress;
115 *reinterpret_cast<UnalignedAddress*>(expected.data() + location) += delta;
116 }
117
118 // Decode and apply patch locations.
119 std::vector<uint8_t> actual = initial_data;
120 ElfFileImpl32::ApplyOatPatches(
121 oat_patches.data(), oat_patches.data() + oat_patches.size(), delta,
122 actual.data(), actual.data() + actual.size());
123
124 EXPECT_EQ(expected, actual);
David Srbecky2f6cdb02015-04-11 00:17:53 +0100125 }
David Srbecky2f6cdb02015-04-11 00:17:53 +0100126}
127
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800128} // namespace art