blob: 449f51418433d0410d40b5e221cb98a3e5935939 [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"
David Srbecky6d8c8f02015-10-26 10:57:09 +000024#include "elf_builder.h"
David Srbecky2f6cdb02015-04-11 00:17:53 +010025#include "elf_writer_quick.h"
Brian Carlstroma1ce1fe2014-02-24 23:23:58 -080026#include "oat.h"
Ian Rogerse63db272014-07-15 15:36:11 -070027#include "utils.h"
Brian Carlstroma1ce1fe2014-02-24 23:23:58 -080028
Brian Carlstrom700c8d32012-11-05 10:42:02 -080029namespace art {
30
Brian Carlstroma1ce1fe2014-02-24 23:23:58 -080031class ElfWriterTest : public CommonCompilerTest {
Brian Carlstrom700c8d32012-11-05 10:42:02 -080032 protected:
33 virtual void SetUp() {
34 ReserveImageSpace();
Brian Carlstroma1ce1fe2014-02-24 23:23:58 -080035 CommonCompilerTest::SetUp();
Brian Carlstrom700c8d32012-11-05 10:42:02 -080036 }
37};
38
Brian Carlstrom31050c62013-12-15 12:36:09 -080039#define EXPECT_ELF_FILE_ADDRESS(ef, expected_value, symbol_name, build_map) \
40 do { \
Nicolas Geoffray50cfe742014-02-19 13:27:42 +000041 void* addr = reinterpret_cast<void*>(ef->FindSymbolAddress(SHT_DYNSYM, \
Brian Carlstrom31050c62013-12-15 12:36:09 -080042 symbol_name, \
43 build_map)); \
44 EXPECT_NE(nullptr, addr); \
45 EXPECT_LT(static_cast<uintptr_t>(ART_BASE_ADDRESS), reinterpret_cast<uintptr_t>(addr)); \
46 if (expected_value == nullptr) { \
47 expected_value = addr; \
48 } \
49 EXPECT_EQ(expected_value, addr); \
50 EXPECT_EQ(expected_value, ef->FindDynamicSymbolAddress(symbol_name)); \
51 } while (false)
Brian Carlstrom700c8d32012-11-05 10:42:02 -080052
Brian Carlstrom6a47b9d2013-05-17 10:58:25 -070053TEST_F(ElfWriterTest, dlsym) {
Igor Murashkin37743352014-11-13 14:38:00 -080054 std::string elf_location = GetCoreOatLocation();
Brian Carlstrom2afe4942014-05-19 10:25:33 -070055 std::string elf_filename = GetSystemImageFilename(elf_location.c_str(), kRuntimeISA);
Brian Carlstrom700c8d32012-11-05 10:42:02 -080056 LOG(INFO) << "elf_filename=" << elf_filename;
57
58 UnreserveImageSpace();
Mathieu Chartier2cebb242015-04-21 16:50:40 -070059 void* dl_oatdata = nullptr;
60 void* dl_oatexec = nullptr;
61 void* dl_oatlastword = nullptr;
Brian Carlstrom700c8d32012-11-05 10:42:02 -080062
Ian Rogers700a4022014-05-19 16:49:03 -070063 std::unique_ptr<File> file(OS::OpenFileForReading(elf_filename.c_str()));
Mathieu Chartier2cebb242015-04-21 16:50:40 -070064 ASSERT_TRUE(file.get() != nullptr);
Brian Carlstrom700c8d32012-11-05 10:42:02 -080065 {
Ian Rogers8d31bbd2013-10-13 10:44:14 -070066 std::string error_msg;
Mathieu Chartierbcb6a722016-03-08 16:49:58 -080067 std::unique_ptr<ElfFile> ef(ElfFile::Open(file.get(),
68 false,
69 false,
70 /*low_4gb*/false,
71 &error_msg));
Ian Rogers8d31bbd2013-10-13 10:44:14 -070072 CHECK(ef.get() != nullptr) << error_msg;
Brian Carlstrom265091e2013-01-30 14:08:26 -080073 EXPECT_ELF_FILE_ADDRESS(ef, dl_oatdata, "oatdata", false);
74 EXPECT_ELF_FILE_ADDRESS(ef, dl_oatexec, "oatexec", false);
75 EXPECT_ELF_FILE_ADDRESS(ef, dl_oatlastword, "oatlastword", false);
76 }
77 {
Ian Rogers8d31bbd2013-10-13 10:44:14 -070078 std::string error_msg;
Mathieu Chartierbcb6a722016-03-08 16:49:58 -080079 std::unique_ptr<ElfFile> ef(ElfFile::Open(file.get(),
80 false,
81 false,
82 /*low_4gb*/false,
83 &error_msg));
Ian Rogers8d31bbd2013-10-13 10:44:14 -070084 CHECK(ef.get() != nullptr) << error_msg;
Brian Carlstrom265091e2013-01-30 14:08:26 -080085 EXPECT_ELF_FILE_ADDRESS(ef, dl_oatdata, "oatdata", true);
86 EXPECT_ELF_FILE_ADDRESS(ef, dl_oatexec, "oatexec", true);
87 EXPECT_ELF_FILE_ADDRESS(ef, dl_oatlastword, "oatlastword", true);
Brian Carlstrom700c8d32012-11-05 10:42:02 -080088 }
89 {
Ian Rogers8d31bbd2013-10-13 10:44:14 -070090 std::string error_msg;
Mathieu Chartierbcb6a722016-03-08 16:49:58 -080091 std::unique_ptr<ElfFile> ef(ElfFile::Open(file.get(),
92 false,
93 true,
94 /*low_4gb*/false,
95 &error_msg));
Ian Rogers8d31bbd2013-10-13 10:44:14 -070096 CHECK(ef.get() != nullptr) << error_msg;
Mathieu Chartierbcb6a722016-03-08 16:49:58 -080097 CHECK(ef->Load(false, /*low_4gb*/false, &error_msg)) << error_msg;
Brian Carlstrom700c8d32012-11-05 10:42:02 -080098 EXPECT_EQ(dl_oatdata, ef->FindDynamicSymbolAddress("oatdata"));
99 EXPECT_EQ(dl_oatexec, ef->FindDynamicSymbolAddress("oatexec"));
100 EXPECT_EQ(dl_oatlastword, ef->FindDynamicSymbolAddress("oatlastword"));
101 }
102}
103
David Srbecky2f6cdb02015-04-11 00:17:53 +0100104TEST_F(ElfWriterTest, EncodeDecodeOatPatches) {
David Srbeckyf8980872015-05-22 17:04:47 +0100105 const std::vector<std::vector<uintptr_t>> test_data {
106 { 0, 4, 8, 15, 128, 200 },
107 { 8, 8 + 127 },
108 { 8, 8 + 128 },
109 { },
110 };
111 for (const auto& patch_locations : test_data) {
112 constexpr int32_t delta = 0x11235813;
David Srbecky2f6cdb02015-04-11 00:17:53 +0100113
David Srbeckyf8980872015-05-22 17:04:47 +0100114 // Encode patch locations.
115 std::vector<uint8_t> oat_patches;
Vladimir Marko10c13562015-11-25 14:33:36 +0000116 ElfBuilder<ElfTypes32>::EncodeOatPatches(ArrayRef<const uintptr_t>(patch_locations),
117 &oat_patches);
David Srbecky2f6cdb02015-04-11 00:17:53 +0100118
David Srbeckyf8980872015-05-22 17:04:47 +0100119 // Create buffer to be patched.
120 std::vector<uint8_t> initial_data(256);
121 for (size_t i = 0; i < initial_data.size(); i++) {
122 initial_data[i] = i;
123 }
124
125 // Patch manually.
126 std::vector<uint8_t> expected = initial_data;
127 for (uintptr_t location : patch_locations) {
128 typedef __attribute__((__aligned__(1))) uint32_t UnalignedAddress;
129 *reinterpret_cast<UnalignedAddress*>(expected.data() + location) += delta;
130 }
131
132 // Decode and apply patch locations.
133 std::vector<uint8_t> actual = initial_data;
134 ElfFileImpl32::ApplyOatPatches(
135 oat_patches.data(), oat_patches.data() + oat_patches.size(), delta,
136 actual.data(), actual.data() + actual.size());
137
138 EXPECT_EQ(expected, actual);
David Srbecky2f6cdb02015-04-11 00:17:53 +0100139 }
David Srbecky2f6cdb02015-04-11 00:17:53 +0100140}
141
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800142} // namespace art