blob: 10d6360fcc20bd20a8869f42536763cb5544511f [file] [log] [blame]
Brian Carlstrom700c8d32012-11-05 10:42:02 -08001/*
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 Carlstromfc0e3212013-07-17 14:40:12 -070017#ifndef ART_RUNTIME_ELF_FILE_H_
18#define ART_RUNTIME_ELF_FILE_H_
Brian Carlstrom700c8d32012-11-05 10:42:02 -080019
Ian Rogersd4c4d952014-10-16 20:31:53 -070020#include <memory>
Tong Shen62d1ca32014-09-03 17:24:56 -070021#include <string>
Brian Carlstrom700c8d32012-11-05 10:42:02 -080022
Ian Rogersd4c4d952014-10-16 20:31:53 -070023#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 Carlstrom700c8d32012-11-05 10:42:02 -080027
28namespace art {
Ian Rogersd4c4d952014-10-16 20:31:53 -070029template <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>
32class ElfFileImpl;
33
34// Explicitly instantiated in elf_file.cc
35typedef 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;
37typedef 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 Carlstrom700c8d32012-11-05 10:42:02 -080039
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.
43class ElfFile {
44 public:
Ian Rogers8d31bbd2013-10-13 10:44:14 -070045 static ElfFile* Open(File* file, bool writable, bool program_header_only, std::string* error_msg);
Alex Light3470ab42014-06-18 10:35:45 -070046 // Open with specific mmap flags, Always maps in the whole file, not just the
47 // program header sections.
48 static ElfFile* Open(File* file, int mmap_prot, int mmap_flags, std::string* error_msg);
Brian Carlstrom700c8d32012-11-05 10:42:02 -080049 ~ElfFile();
50
51 // Load segments into memory based on PT_LOAD program headers
Ian Rogers8d31bbd2013-10-13 10:44:14 -070052 bool Load(bool executable, std::string* error_msg);
Brian Carlstrom700c8d32012-11-05 10:42:02 -080053
Ian Rogers13735952014-10-08 12:43:28 -070054 const uint8_t* FindDynamicSymbolAddress(const std::string& symbol_name) const;
Tong Shen62d1ca32014-09-03 17:24:56 -070055
56 size_t Size() const;
57
Ian Rogers13735952014-10-08 12:43:28 -070058 uint8_t* Begin() const;
Tong Shen62d1ca32014-09-03 17:24:56 -070059
Ian Rogers13735952014-10-08 12:43:28 -070060 uint8_t* End() const;
Tong Shen62d1ca32014-09-03 17:24:56 -070061
62 const File& GetFile() const;
63
64 bool GetSectionOffsetAndSize(const char* section_name, uint64_t* offset, uint64_t* size);
65
66 uint64_t FindSymbolAddress(unsigned section_type,
67 const std::string& symbol_name,
68 bool build_map);
69
70 size_t GetLoadedSize() const;
71
72 // Strip an ELF file of unneeded debugging information.
73 // Returns true on success, false on failure.
74 static bool Strip(File* file, std::string* error_msg);
75
76 // Fixup an ELF file so that that oat header will be loaded at oat_begin.
77 // Returns true on success, false on failure.
78 static bool Fixup(File* file, uintptr_t oat_data_begin);
79
80 bool Fixup(uintptr_t base_address);
81
Ian Rogersd4c4d952014-10-16 20:31:53 -070082 bool Is64Bit() const {
83 return elf64_.get() != nullptr;
84 }
85
86 ElfFileImpl32* GetImpl32() const {
87 return elf32_.get();
88 }
89
90 ElfFileImpl64* GetImpl64() const {
91 return elf64_.get();
92 }
Yevgeny Roubane3ea8382014-08-08 16:29:38 +070093
Brian Carlstrom700c8d32012-11-05 10:42:02 -080094 private:
Tong Shen62d1ca32014-09-03 17:24:56 -070095 explicit ElfFile(ElfFileImpl32* elf32);
96 explicit ElfFile(ElfFileImpl64* elf64);
Brian Carlstrom700c8d32012-11-05 10:42:02 -080097
Ian Rogersd4c4d952014-10-16 20:31:53 -070098 const std::unique_ptr<ElfFileImpl32> elf32_;
99 const std::unique_ptr<ElfFileImpl64> elf64_;
100
101 DISALLOW_COPY_AND_ASSIGN(ElfFile);
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800102};
103
104} // namespace art
105
Brian Carlstromfc0e3212013-07-17 14:40:12 -0700106#endif // ART_RUNTIME_ELF_FILE_H_