blob: 6f4877925841440c0a36756dbf60879f939f31de [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 { \
Chih-Hung Hsieh1a0de6a2016-08-26 15:06:11 -070041 void* addr = reinterpret_cast<void*>((ef)->FindSymbolAddress(SHT_DYNSYM, \
42 symbol_name, \
43 build_map)); \
Brian Carlstrom31050c62013-12-15 12:36:09 -080044 EXPECT_NE(nullptr, addr); \
45 EXPECT_LT(static_cast<uintptr_t>(ART_BASE_ADDRESS), reinterpret_cast<uintptr_t>(addr)); \
Chih-Hung Hsieh1a0de6a2016-08-26 15:06:11 -070046 if ((expected_value) == nullptr) { \
47 (expected_value) = addr; \
Brian Carlstrom31050c62013-12-15 12:36:09 -080048 } \
49 EXPECT_EQ(expected_value, addr); \
Chih-Hung Hsieh1a0de6a2016-08-26 15:06:11 -070050 EXPECT_EQ(expected_value, (ef)->FindDynamicSymbolAddress(symbol_name)); \
Brian Carlstrom31050c62013-12-15 12:36:09 -080051 } 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;
Brian Carlstromf5b0f2c2016-10-14 01:04:26 -070097 CHECK(ef->Load(file.get(), 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
Alexey Alexandrovab40c112016-09-19 09:33:49 -0700104TEST_F(ElfWriterTest, CheckBuildIdPresent) {
105 std::string elf_location = GetCoreOatLocation();
106 std::string elf_filename = GetSystemImageFilename(elf_location.c_str(), kRuntimeISA);
107 LOG(INFO) << "elf_filename=" << elf_filename;
108
109 std::unique_ptr<File> file(OS::OpenFileForReading(elf_filename.c_str()));
110 ASSERT_TRUE(file.get() != nullptr);
111 {
112 std::string error_msg;
113 std::unique_ptr<ElfFile> ef(ElfFile::Open(file.get(),
114 false,
115 false,
116 /*low_4gb*/false,
117 &error_msg));
118 CHECK(ef.get() != nullptr) << error_msg;
119 EXPECT_TRUE(ef->HasSection(".note.gnu.build-id"));
120 }
121}
122
David Srbecky2f6cdb02015-04-11 00:17:53 +0100123TEST_F(ElfWriterTest, EncodeDecodeOatPatches) {
David Srbeckyf8980872015-05-22 17:04:47 +0100124 const std::vector<std::vector<uintptr_t>> test_data {
125 { 0, 4, 8, 15, 128, 200 },
126 { 8, 8 + 127 },
127 { 8, 8 + 128 },
128 { },
129 };
130 for (const auto& patch_locations : test_data) {
131 constexpr int32_t delta = 0x11235813;
David Srbecky2f6cdb02015-04-11 00:17:53 +0100132
David Srbeckyf8980872015-05-22 17:04:47 +0100133 // Encode patch locations.
134 std::vector<uint8_t> oat_patches;
Vladimir Marko10c13562015-11-25 14:33:36 +0000135 ElfBuilder<ElfTypes32>::EncodeOatPatches(ArrayRef<const uintptr_t>(patch_locations),
136 &oat_patches);
David Srbecky2f6cdb02015-04-11 00:17:53 +0100137
David Srbeckyf8980872015-05-22 17:04:47 +0100138 // Create buffer to be patched.
139 std::vector<uint8_t> initial_data(256);
140 for (size_t i = 0; i < initial_data.size(); i++) {
141 initial_data[i] = i;
142 }
143
144 // Patch manually.
145 std::vector<uint8_t> expected = initial_data;
146 for (uintptr_t location : patch_locations) {
147 typedef __attribute__((__aligned__(1))) uint32_t UnalignedAddress;
148 *reinterpret_cast<UnalignedAddress*>(expected.data() + location) += delta;
149 }
150
151 // Decode and apply patch locations.
152 std::vector<uint8_t> actual = initial_data;
153 ElfFileImpl32::ApplyOatPatches(
154 oat_patches.data(), oat_patches.data() + oat_patches.size(), delta,
155 actual.data(), actual.data() + actual.size());
156
157 EXPECT_EQ(expected, actual);
David Srbecky2f6cdb02015-04-11 00:17:53 +0100158 }
David Srbecky2f6cdb02015-04-11 00:17:53 +0100159}
160
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800161} // namespace art