Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 1 | /* |
| 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 Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 17 | #include "elf_file.h" |
| 18 | |
Ian Rogers | d4c4d95 | 2014-10-16 20:31:53 -0700 | [diff] [blame] | 19 | #include "base/unix_file/fd_file.h" |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 20 | #include "common_compiler_test.h" |
David Srbecky | 2f6cdb0 | 2015-04-11 00:17:53 +0100 | [diff] [blame] | 21 | #include "elf_file.h" |
| 22 | #include "elf_file_impl.h" |
| 23 | #include "elf_writer_quick.h" |
Vladimir Marko | 7452797 | 2016-11-29 15:57:32 +0000 | [diff] [blame^] | 24 | #include "linker/elf_builder.h" |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 25 | #include "oat.h" |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 26 | #include "utils.h" |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 27 | |
Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 28 | namespace art { |
Vladimir Marko | 7452797 | 2016-11-29 15:57:32 +0000 | [diff] [blame^] | 29 | namespace linker { |
Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 30 | |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 31 | class ElfWriterTest : public CommonCompilerTest { |
Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 32 | protected: |
| 33 | virtual void SetUp() { |
| 34 | ReserveImageSpace(); |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 35 | CommonCompilerTest::SetUp(); |
Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 36 | } |
| 37 | }; |
| 38 | |
Brian Carlstrom | 31050c6 | 2013-12-15 12:36:09 -0800 | [diff] [blame] | 39 | #define EXPECT_ELF_FILE_ADDRESS(ef, expected_value, symbol_name, build_map) \ |
| 40 | do { \ |
Chih-Hung Hsieh | 1a0de6a | 2016-08-26 15:06:11 -0700 | [diff] [blame] | 41 | void* addr = reinterpret_cast<void*>((ef)->FindSymbolAddress(SHT_DYNSYM, \ |
| 42 | symbol_name, \ |
| 43 | build_map)); \ |
Brian Carlstrom | 31050c6 | 2013-12-15 12:36:09 -0800 | [diff] [blame] | 44 | EXPECT_NE(nullptr, addr); \ |
Chih-Hung Hsieh | 1a0de6a | 2016-08-26 15:06:11 -0700 | [diff] [blame] | 45 | if ((expected_value) == nullptr) { \ |
| 46 | (expected_value) = addr; \ |
Brian Carlstrom | 31050c6 | 2013-12-15 12:36:09 -0800 | [diff] [blame] | 47 | } \ |
| 48 | EXPECT_EQ(expected_value, addr); \ |
Chih-Hung Hsieh | 1a0de6a | 2016-08-26 15:06:11 -0700 | [diff] [blame] | 49 | EXPECT_EQ(expected_value, (ef)->FindDynamicSymbolAddress(symbol_name)); \ |
Brian Carlstrom | 31050c6 | 2013-12-15 12:36:09 -0800 | [diff] [blame] | 50 | } while (false) |
Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 51 | |
Brian Carlstrom | 6a47b9d | 2013-05-17 10:58:25 -0700 | [diff] [blame] | 52 | TEST_F(ElfWriterTest, dlsym) { |
Igor Murashkin | 3774335 | 2014-11-13 14:38:00 -0800 | [diff] [blame] | 53 | std::string elf_location = GetCoreOatLocation(); |
Brian Carlstrom | 2afe494 | 2014-05-19 10:25:33 -0700 | [diff] [blame] | 54 | std::string elf_filename = GetSystemImageFilename(elf_location.c_str(), kRuntimeISA); |
Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 55 | LOG(INFO) << "elf_filename=" << elf_filename; |
| 56 | |
| 57 | UnreserveImageSpace(); |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 58 | void* dl_oatdata = nullptr; |
| 59 | void* dl_oatexec = nullptr; |
| 60 | void* dl_oatlastword = nullptr; |
Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 61 | |
Ian Rogers | 700a402 | 2014-05-19 16:49:03 -0700 | [diff] [blame] | 62 | std::unique_ptr<File> file(OS::OpenFileForReading(elf_filename.c_str())); |
Richard Uhler | 67e1dc5 | 2017-02-06 16:50:17 +0000 | [diff] [blame] | 63 | ASSERT_TRUE(file.get() != nullptr) << elf_filename; |
Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 64 | { |
Ian Rogers | 8d31bbd | 2013-10-13 10:44:14 -0700 | [diff] [blame] | 65 | std::string error_msg; |
Mathieu Chartier | bcb6a72 | 2016-03-08 16:49:58 -0800 | [diff] [blame] | 66 | std::unique_ptr<ElfFile> ef(ElfFile::Open(file.get(), |
| 67 | false, |
| 68 | false, |
| 69 | /*low_4gb*/false, |
| 70 | &error_msg)); |
Ian Rogers | 8d31bbd | 2013-10-13 10:44:14 -0700 | [diff] [blame] | 71 | CHECK(ef.get() != nullptr) << error_msg; |
Brian Carlstrom | 265091e | 2013-01-30 14:08:26 -0800 | [diff] [blame] | 72 | EXPECT_ELF_FILE_ADDRESS(ef, dl_oatdata, "oatdata", false); |
| 73 | EXPECT_ELF_FILE_ADDRESS(ef, dl_oatexec, "oatexec", false); |
| 74 | EXPECT_ELF_FILE_ADDRESS(ef, dl_oatlastword, "oatlastword", false); |
| 75 | } |
| 76 | { |
Ian Rogers | 8d31bbd | 2013-10-13 10:44:14 -0700 | [diff] [blame] | 77 | std::string error_msg; |
Mathieu Chartier | bcb6a72 | 2016-03-08 16:49:58 -0800 | [diff] [blame] | 78 | std::unique_ptr<ElfFile> ef(ElfFile::Open(file.get(), |
| 79 | false, |
| 80 | false, |
| 81 | /*low_4gb*/false, |
| 82 | &error_msg)); |
Ian Rogers | 8d31bbd | 2013-10-13 10:44:14 -0700 | [diff] [blame] | 83 | CHECK(ef.get() != nullptr) << error_msg; |
Brian Carlstrom | 265091e | 2013-01-30 14:08:26 -0800 | [diff] [blame] | 84 | EXPECT_ELF_FILE_ADDRESS(ef, dl_oatdata, "oatdata", true); |
| 85 | EXPECT_ELF_FILE_ADDRESS(ef, dl_oatexec, "oatexec", true); |
| 86 | EXPECT_ELF_FILE_ADDRESS(ef, dl_oatlastword, "oatlastword", true); |
Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 87 | } |
| 88 | { |
Richard Uhler | 67e1dc5 | 2017-02-06 16:50:17 +0000 | [diff] [blame] | 89 | uint8_t* base = reinterpret_cast<uint8_t*>(ART_BASE_ADDRESS); |
Ian Rogers | 8d31bbd | 2013-10-13 10:44:14 -0700 | [diff] [blame] | 90 | std::string error_msg; |
Mathieu Chartier | bcb6a72 | 2016-03-08 16:49:58 -0800 | [diff] [blame] | 91 | std::unique_ptr<ElfFile> ef(ElfFile::Open(file.get(), |
| 92 | false, |
| 93 | true, |
| 94 | /*low_4gb*/false, |
Richard Uhler | 67e1dc5 | 2017-02-06 16:50:17 +0000 | [diff] [blame] | 95 | &error_msg, |
| 96 | base)); |
Ian Rogers | 8d31bbd | 2013-10-13 10:44:14 -0700 | [diff] [blame] | 97 | CHECK(ef.get() != nullptr) << error_msg; |
Brian Carlstrom | f5b0f2c | 2016-10-14 01:04:26 -0700 | [diff] [blame] | 98 | CHECK(ef->Load(file.get(), false, /*low_4gb*/false, &error_msg)) << error_msg; |
Richard Uhler | 67e1dc5 | 2017-02-06 16:50:17 +0000 | [diff] [blame] | 99 | EXPECT_EQ(reinterpret_cast<uintptr_t>(dl_oatdata) + reinterpret_cast<uintptr_t>(base), |
| 100 | reinterpret_cast<uintptr_t>(ef->FindDynamicSymbolAddress("oatdata"))); |
| 101 | EXPECT_EQ(reinterpret_cast<uintptr_t>(dl_oatexec) + reinterpret_cast<uintptr_t>(base), |
| 102 | reinterpret_cast<uintptr_t>(ef->FindDynamicSymbolAddress("oatexec"))); |
| 103 | EXPECT_EQ(reinterpret_cast<uintptr_t>(dl_oatlastword) + reinterpret_cast<uintptr_t>(base), |
| 104 | reinterpret_cast<uintptr_t>(ef->FindDynamicSymbolAddress("oatlastword"))); |
Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 105 | } |
| 106 | } |
| 107 | |
Alexey Alexandrov | ab40c11 | 2016-09-19 09:33:49 -0700 | [diff] [blame] | 108 | TEST_F(ElfWriterTest, CheckBuildIdPresent) { |
| 109 | std::string elf_location = GetCoreOatLocation(); |
| 110 | std::string elf_filename = GetSystemImageFilename(elf_location.c_str(), kRuntimeISA); |
| 111 | LOG(INFO) << "elf_filename=" << elf_filename; |
| 112 | |
| 113 | std::unique_ptr<File> file(OS::OpenFileForReading(elf_filename.c_str())); |
| 114 | ASSERT_TRUE(file.get() != nullptr); |
| 115 | { |
| 116 | std::string error_msg; |
| 117 | std::unique_ptr<ElfFile> ef(ElfFile::Open(file.get(), |
| 118 | false, |
| 119 | false, |
| 120 | /*low_4gb*/false, |
| 121 | &error_msg)); |
| 122 | CHECK(ef.get() != nullptr) << error_msg; |
| 123 | EXPECT_TRUE(ef->HasSection(".note.gnu.build-id")); |
| 124 | } |
| 125 | } |
| 126 | |
David Srbecky | 2f6cdb0 | 2015-04-11 00:17:53 +0100 | [diff] [blame] | 127 | TEST_F(ElfWriterTest, EncodeDecodeOatPatches) { |
David Srbecky | f898087 | 2015-05-22 17:04:47 +0100 | [diff] [blame] | 128 | const std::vector<std::vector<uintptr_t>> test_data { |
| 129 | { 0, 4, 8, 15, 128, 200 }, |
| 130 | { 8, 8 + 127 }, |
| 131 | { 8, 8 + 128 }, |
| 132 | { }, |
| 133 | }; |
| 134 | for (const auto& patch_locations : test_data) { |
| 135 | constexpr int32_t delta = 0x11235813; |
David Srbecky | 2f6cdb0 | 2015-04-11 00:17:53 +0100 | [diff] [blame] | 136 | |
David Srbecky | f898087 | 2015-05-22 17:04:47 +0100 | [diff] [blame] | 137 | // Encode patch locations. |
| 138 | std::vector<uint8_t> oat_patches; |
Vladimir Marko | 10c1356 | 2015-11-25 14:33:36 +0000 | [diff] [blame] | 139 | ElfBuilder<ElfTypes32>::EncodeOatPatches(ArrayRef<const uintptr_t>(patch_locations), |
| 140 | &oat_patches); |
David Srbecky | 2f6cdb0 | 2015-04-11 00:17:53 +0100 | [diff] [blame] | 141 | |
David Srbecky | f898087 | 2015-05-22 17:04:47 +0100 | [diff] [blame] | 142 | // Create buffer to be patched. |
| 143 | std::vector<uint8_t> initial_data(256); |
| 144 | for (size_t i = 0; i < initial_data.size(); i++) { |
| 145 | initial_data[i] = i; |
| 146 | } |
| 147 | |
| 148 | // Patch manually. |
| 149 | std::vector<uint8_t> expected = initial_data; |
| 150 | for (uintptr_t location : patch_locations) { |
| 151 | typedef __attribute__((__aligned__(1))) uint32_t UnalignedAddress; |
| 152 | *reinterpret_cast<UnalignedAddress*>(expected.data() + location) += delta; |
| 153 | } |
| 154 | |
| 155 | // Decode and apply patch locations. |
| 156 | std::vector<uint8_t> actual = initial_data; |
| 157 | ElfFileImpl32::ApplyOatPatches( |
| 158 | oat_patches.data(), oat_patches.data() + oat_patches.size(), delta, |
| 159 | actual.data(), actual.data() + actual.size()); |
| 160 | |
| 161 | EXPECT_EQ(expected, actual); |
David Srbecky | 2f6cdb0 | 2015-04-11 00:17:53 +0100 | [diff] [blame] | 162 | } |
David Srbecky | 2f6cdb0 | 2015-04-11 00:17:53 +0100 | [diff] [blame] | 163 | } |
| 164 | |
Vladimir Marko | 7452797 | 2016-11-29 15:57:32 +0000 | [diff] [blame^] | 165 | } // namespace linker |
Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 166 | } // namespace art |