Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2012 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 | fc0e321 | 2013-07-17 14:40:12 -0700 | [diff] [blame] | 17 | #ifndef ART_RUNTIME_ELF_FILE_H_ |
| 18 | #define ART_RUNTIME_ELF_FILE_H_ |
Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 19 | |
Ian Rogers | d4c4d95 | 2014-10-16 20:31:53 -0700 | [diff] [blame] | 20 | #include <memory> |
Tong Shen | 62d1ca3 | 2014-09-03 17:24:56 -0700 | [diff] [blame] | 21 | #include <string> |
Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 22 | |
Ian Rogers | d4c4d95 | 2014-10-16 20:31:53 -0700 | [diff] [blame] | 23 | #include "base/macros.h" |
| 24 | // Explicitly include our own elf.h to avoid Linux and other dependencies. |
| 25 | #include "./elf.h" |
| 26 | #include "os.h" |
Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 27 | |
| 28 | namespace art { |
Ian Rogers | d4c4d95 | 2014-10-16 20:31:53 -0700 | [diff] [blame] | 29 | template <typename Elf_Ehdr, typename Elf_Phdr, typename Elf_Shdr, typename Elf_Word, |
| 30 | typename Elf_Sword, typename Elf_Addr, typename Elf_Sym, typename Elf_Rel, |
| 31 | typename Elf_Rela, typename Elf_Dyn, typename Elf_Off> |
| 32 | class ElfFileImpl; |
| 33 | |
| 34 | // Explicitly instantiated in elf_file.cc |
| 35 | typedef ElfFileImpl<Elf32_Ehdr, Elf32_Phdr, Elf32_Shdr, Elf32_Word, Elf32_Sword, |
| 36 | Elf32_Addr, Elf32_Sym, Elf32_Rel, Elf32_Rela, Elf32_Dyn, Elf32_Off> ElfFileImpl32; |
| 37 | typedef ElfFileImpl<Elf64_Ehdr, Elf64_Phdr, Elf64_Shdr, Elf64_Word, Elf64_Sword, |
| 38 | Elf64_Addr, Elf64_Sym, Elf64_Rel, Elf64_Rela, Elf64_Dyn, Elf64_Off> ElfFileImpl64; |
Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 39 | |
| 40 | // Used for compile time and runtime for ElfFile access. Because of |
| 41 | // the need for use at runtime, cannot directly use LLVM classes such as |
| 42 | // ELFObjectFile. |
| 43 | class ElfFile { |
| 44 | public: |
Igor Murashkin | 4677476 | 2014-10-22 11:37:02 -0700 | [diff] [blame] | 45 | static ElfFile* Open(File* file, bool writable, bool program_header_only, std::string* error_msg, |
| 46 | uint8_t* requested_base = nullptr); // TODO: move arg to before error_msg. |
Alex Light | 3470ab4 | 2014-06-18 10:35:45 -0700 | [diff] [blame] | 47 | // Open with specific mmap flags, Always maps in the whole file, not just the |
| 48 | // program header sections. |
| 49 | static ElfFile* Open(File* file, int mmap_prot, int mmap_flags, std::string* error_msg); |
Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 50 | ~ElfFile(); |
| 51 | |
| 52 | // Load segments into memory based on PT_LOAD program headers |
Ian Rogers | 8d31bbd | 2013-10-13 10:44:14 -0700 | [diff] [blame] | 53 | bool Load(bool executable, std::string* error_msg); |
Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 54 | |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 55 | const uint8_t* FindDynamicSymbolAddress(const std::string& symbol_name) const; |
Tong Shen | 62d1ca3 | 2014-09-03 17:24:56 -0700 | [diff] [blame] | 56 | |
| 57 | size_t Size() const; |
| 58 | |
Igor Murashkin | 4677476 | 2014-10-22 11:37:02 -0700 | [diff] [blame] | 59 | // The start of the memory map address range for this ELF file. |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 60 | uint8_t* Begin() const; |
Tong Shen | 62d1ca3 | 2014-09-03 17:24:56 -0700 | [diff] [blame] | 61 | |
Igor Murashkin | 4677476 | 2014-10-22 11:37:02 -0700 | [diff] [blame] | 62 | // The end of the memory map address range for this ELF file. |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 63 | uint8_t* End() const; |
Tong Shen | 62d1ca3 | 2014-09-03 17:24:56 -0700 | [diff] [blame] | 64 | |
| 65 | const File& GetFile() const; |
| 66 | |
| 67 | bool GetSectionOffsetAndSize(const char* section_name, uint64_t* offset, uint64_t* size); |
| 68 | |
| 69 | uint64_t FindSymbolAddress(unsigned section_type, |
| 70 | const std::string& symbol_name, |
| 71 | bool build_map); |
| 72 | |
| 73 | size_t GetLoadedSize() const; |
| 74 | |
| 75 | // Strip an ELF file of unneeded debugging information. |
| 76 | // Returns true on success, false on failure. |
| 77 | static bool Strip(File* file, std::string* error_msg); |
| 78 | |
| 79 | // Fixup an ELF file so that that oat header will be loaded at oat_begin. |
| 80 | // Returns true on success, false on failure. |
| 81 | static bool Fixup(File* file, uintptr_t oat_data_begin); |
| 82 | |
| 83 | bool Fixup(uintptr_t base_address); |
| 84 | |
Ian Rogers | d4c4d95 | 2014-10-16 20:31:53 -0700 | [diff] [blame] | 85 | bool Is64Bit() const { |
| 86 | return elf64_.get() != nullptr; |
| 87 | } |
| 88 | |
| 89 | ElfFileImpl32* GetImpl32() const { |
| 90 | return elf32_.get(); |
| 91 | } |
| 92 | |
| 93 | ElfFileImpl64* GetImpl64() const { |
| 94 | return elf64_.get(); |
| 95 | } |
Yevgeny Rouban | e3ea838 | 2014-08-08 16:29:38 +0700 | [diff] [blame] | 96 | |
Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 97 | private: |
Tong Shen | 62d1ca3 | 2014-09-03 17:24:56 -0700 | [diff] [blame] | 98 | explicit ElfFile(ElfFileImpl32* elf32); |
| 99 | explicit ElfFile(ElfFileImpl64* elf64); |
Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 100 | |
Ian Rogers | d4c4d95 | 2014-10-16 20:31:53 -0700 | [diff] [blame] | 101 | const std::unique_ptr<ElfFileImpl32> elf32_; |
| 102 | const std::unique_ptr<ElfFileImpl64> elf64_; |
| 103 | |
| 104 | DISALLOW_COPY_AND_ASSIGN(ElfFile); |
Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 105 | }; |
| 106 | |
| 107 | } // namespace art |
| 108 | |
Brian Carlstrom | fc0e321 | 2013-07-17 14:40:12 -0700 | [diff] [blame] | 109 | #endif // ART_RUNTIME_ELF_FILE_H_ |