Nick Kledzik | e34182f | 2013-11-06 21:36:55 +0000 | [diff] [blame] | 1 | //===- lib/ReaderWriter/MachO/MachONormalizedFileBinaryReader.cpp ---------===// |
| 2 | // |
| 3 | // The LLVM Linker |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | |
| 10 | /// |
| 11 | /// \file For mach-o object files, this implementation converts from |
| 12 | /// mach-o on-disk binary format to in-memory normalized mach-o. |
| 13 | /// |
| 14 | /// +---------------+ |
| 15 | /// | binary mach-o | |
| 16 | /// +---------------+ |
| 17 | /// | |
| 18 | /// | |
| 19 | /// v |
| 20 | /// +------------+ |
| 21 | /// | normalized | |
| 22 | /// +------------+ |
| 23 | |
| 24 | #include "MachONormalizedFile.h" |
Nick Kledzik | 2458bec | 2014-07-16 19:49:02 +0000 | [diff] [blame] | 25 | #include "ArchHandler.h" |
Nick Kledzik | e34182f | 2013-11-06 21:36:55 +0000 | [diff] [blame] | 26 | #include "MachONormalizedFileBinaryUtils.h" |
Nick Kledzik | e34182f | 2013-11-06 21:36:55 +0000 | [diff] [blame] | 27 | #include "lld/Core/Error.h" |
| 28 | #include "lld/Core/LLVM.h" |
Nick Kledzik | 8fc67fb | 2014-08-13 23:55:41 +0000 | [diff] [blame] | 29 | #include "lld/Core/SharedLibraryFile.h" |
Nick Kledzik | e34182f | 2013-11-06 21:36:55 +0000 | [diff] [blame] | 30 | #include "llvm/ADT/SmallString.h" |
| 31 | #include "llvm/ADT/StringRef.h" |
| 32 | #include "llvm/ADT/StringSwitch.h" |
Rafael Espindola | c08ab8e | 2015-04-24 15:51:45 +0000 | [diff] [blame] | 33 | #include "llvm/ADT/STLExtras.h" |
Nick Kledzik | e34182f | 2013-11-06 21:36:55 +0000 | [diff] [blame] | 34 | #include "llvm/ADT/Twine.h" |
Nick Kledzik | 141330a | 2014-09-03 19:52:50 +0000 | [diff] [blame] | 35 | #include "llvm/Object/MachO.h" |
Nick Kledzik | e34182f | 2013-11-06 21:36:55 +0000 | [diff] [blame] | 36 | #include "llvm/Support/Casting.h" |
Rafael Espindola | 372bc70 | 2014-06-13 17:20:48 +0000 | [diff] [blame] | 37 | #include "llvm/Support/Errc.h" |
Nick Kledzik | e34182f | 2013-11-06 21:36:55 +0000 | [diff] [blame] | 38 | #include "llvm/Support/ErrorHandling.h" |
| 39 | #include "llvm/Support/FileOutputBuffer.h" |
| 40 | #include "llvm/Support/Host.h" |
| 41 | #include "llvm/Support/MachO.h" |
| 42 | #include "llvm/Support/MemoryBuffer.h" |
| 43 | #include "llvm/Support/raw_ostream.h" |
Nick Kledzik | e34182f | 2013-11-06 21:36:55 +0000 | [diff] [blame] | 44 | #include <functional> |
Rafael Espindola | 54427cc | 2014-06-12 17:15:58 +0000 | [diff] [blame] | 45 | #include <system_error> |
Nick Kledzik | e34182f | 2013-11-06 21:36:55 +0000 | [diff] [blame] | 46 | |
| 47 | using namespace llvm::MachO; |
Nick Kledzik | 141330a | 2014-09-03 19:52:50 +0000 | [diff] [blame] | 48 | using llvm::object::ExportEntry; |
| 49 | using llvm::object::MachOObjectFile; |
Nick Kledzik | e34182f | 2013-11-06 21:36:55 +0000 | [diff] [blame] | 50 | |
| 51 | namespace lld { |
| 52 | namespace mach_o { |
| 53 | namespace normalized { |
| 54 | |
| 55 | // Utility to call a lambda expression on each load command. |
Rafael Espindola | b1a4d3a | 2014-06-12 14:53:47 +0000 | [diff] [blame] | 56 | static std::error_code forEachLoadCommand( |
Tim Northover | 40d3ad3 | 2014-10-27 22:48:35 +0000 | [diff] [blame] | 57 | StringRef lcRange, unsigned lcCount, bool isBig, bool is64, |
Rafael Espindola | b1a4d3a | 2014-06-12 14:53:47 +0000 | [diff] [blame] | 58 | std::function<bool(uint32_t cmd, uint32_t size, const char *lc)> func) { |
Nick Kledzik | e34182f | 2013-11-06 21:36:55 +0000 | [diff] [blame] | 59 | const char* p = lcRange.begin(); |
| 60 | for (unsigned i=0; i < lcCount; ++i) { |
| 61 | const load_command *lc = reinterpret_cast<const load_command*>(p); |
| 62 | load_command lcCopy; |
| 63 | const load_command *slc = lc; |
Tim Northover | 40d3ad3 | 2014-10-27 22:48:35 +0000 | [diff] [blame] | 64 | if (isBig != llvm::sys::IsBigEndianHost) { |
Nick Kledzik | e34182f | 2013-11-06 21:36:55 +0000 | [diff] [blame] | 65 | memcpy(&lcCopy, lc, sizeof(load_command)); |
| 66 | swapStruct(lcCopy); |
| 67 | slc = &lcCopy; |
| 68 | } |
| 69 | if ( (p + slc->cmdsize) > lcRange.end() ) |
Rafael Espindola | 372bc70 | 2014-06-13 17:20:48 +0000 | [diff] [blame] | 70 | return make_error_code(llvm::errc::executable_format_error); |
Shankar Easwaran | 3d8de47 | 2014-01-27 03:09:26 +0000 | [diff] [blame] | 71 | |
Nick Kledzik | e34182f | 2013-11-06 21:36:55 +0000 | [diff] [blame] | 72 | if (func(slc->cmd, slc->cmdsize, p)) |
Rafael Espindola | b1a4d3a | 2014-06-12 14:53:47 +0000 | [diff] [blame] | 73 | return std::error_code(); |
Shankar Easwaran | 3d8de47 | 2014-01-27 03:09:26 +0000 | [diff] [blame] | 74 | |
Nick Kledzik | e34182f | 2013-11-06 21:36:55 +0000 | [diff] [blame] | 75 | p += slc->cmdsize; |
Shankar Easwaran | 3d8de47 | 2014-01-27 03:09:26 +0000 | [diff] [blame] | 76 | } |
| 77 | |
Rafael Espindola | b1a4d3a | 2014-06-12 14:53:47 +0000 | [diff] [blame] | 78 | return std::error_code(); |
Nick Kledzik | e34182f | 2013-11-06 21:36:55 +0000 | [diff] [blame] | 79 | } |
| 80 | |
Rafael Espindola | b1a4d3a | 2014-06-12 14:53:47 +0000 | [diff] [blame] | 81 | static std::error_code appendRelocations(Relocations &relocs, StringRef buffer, |
Tim Northover | 40d3ad3 | 2014-10-27 22:48:35 +0000 | [diff] [blame] | 82 | bool bigEndian, |
Rafael Espindola | b1a4d3a | 2014-06-12 14:53:47 +0000 | [diff] [blame] | 83 | uint32_t reloff, uint32_t nreloc) { |
Nick Kledzik | e34182f | 2013-11-06 21:36:55 +0000 | [diff] [blame] | 84 | if ((reloff + nreloc*8) > buffer.size()) |
Rafael Espindola | 372bc70 | 2014-06-13 17:20:48 +0000 | [diff] [blame] | 85 | return make_error_code(llvm::errc::executable_format_error); |
Shankar Easwaran | 3d8de47 | 2014-01-27 03:09:26 +0000 | [diff] [blame] | 86 | const any_relocation_info* relocsArray = |
Joey Gouly | 010b376 | 2014-01-14 22:32:38 +0000 | [diff] [blame] | 87 | reinterpret_cast<const any_relocation_info*>(buffer.begin()+reloff); |
Shankar Easwaran | 3d8de47 | 2014-01-27 03:09:26 +0000 | [diff] [blame] | 88 | |
Nick Kledzik | e34182f | 2013-11-06 21:36:55 +0000 | [diff] [blame] | 89 | for(uint32_t i=0; i < nreloc; ++i) { |
Tim Northover | 40d3ad3 | 2014-10-27 22:48:35 +0000 | [diff] [blame] | 90 | relocs.push_back(unpackRelocation(relocsArray[i], bigEndian)); |
Nick Kledzik | e34182f | 2013-11-06 21:36:55 +0000 | [diff] [blame] | 91 | } |
Rafael Espindola | b1a4d3a | 2014-06-12 14:53:47 +0000 | [diff] [blame] | 92 | return std::error_code(); |
Nick Kledzik | e34182f | 2013-11-06 21:36:55 +0000 | [diff] [blame] | 93 | } |
| 94 | |
Rafael Espindola | b1a4d3a | 2014-06-12 14:53:47 +0000 | [diff] [blame] | 95 | static std::error_code |
Tim Northover | 40d3ad3 | 2014-10-27 22:48:35 +0000 | [diff] [blame] | 96 | appendIndirectSymbols(IndirectSymbols &isyms, StringRef buffer, bool isBig, |
| 97 | uint32_t istOffset, uint32_t istCount, |
Nick Kledzik | 388f3d0 | 2014-05-28 01:16:35 +0000 | [diff] [blame] | 98 | uint32_t startIndex, uint32_t count) { |
| 99 | if ((istOffset + istCount*4) > buffer.size()) |
Rafael Espindola | 372bc70 | 2014-06-13 17:20:48 +0000 | [diff] [blame] | 100 | return make_error_code(llvm::errc::executable_format_error); |
Nick Kledzik | 388f3d0 | 2014-05-28 01:16:35 +0000 | [diff] [blame] | 101 | if (startIndex+count > istCount) |
Rafael Espindola | 372bc70 | 2014-06-13 17:20:48 +0000 | [diff] [blame] | 102 | return make_error_code(llvm::errc::executable_format_error); |
Tim Northover | 40d3ad3 | 2014-10-27 22:48:35 +0000 | [diff] [blame] | 103 | const uint8_t *indirectSymbolArray = (const uint8_t *)buffer.data(); |
Nick Kledzik | 388f3d0 | 2014-05-28 01:16:35 +0000 | [diff] [blame] | 104 | |
| 105 | for(uint32_t i=0; i < count; ++i) { |
Tim Northover | 40d3ad3 | 2014-10-27 22:48:35 +0000 | [diff] [blame] | 106 | isyms.push_back(read32( |
| 107 | indirectSymbolArray + (startIndex + i) * sizeof(uint32_t), isBig)); |
Nick Kledzik | 388f3d0 | 2014-05-28 01:16:35 +0000 | [diff] [blame] | 108 | } |
Rafael Espindola | b1a4d3a | 2014-06-12 14:53:47 +0000 | [diff] [blame] | 109 | return std::error_code(); |
Nick Kledzik | 388f3d0 | 2014-05-28 01:16:35 +0000 | [diff] [blame] | 110 | } |
| 111 | |
| 112 | |
Joey Gouly | 010b376 | 2014-01-14 22:32:38 +0000 | [diff] [blame] | 113 | template <typename T> static T readBigEndian(T t) { |
| 114 | if (llvm::sys::IsLittleEndianHost) |
Artyom Skrobov | f8874b0 | 2014-06-14 13:26:14 +0000 | [diff] [blame] | 115 | llvm::sys::swapByteOrder(t); |
Joey Gouly | 010b376 | 2014-01-14 22:32:38 +0000 | [diff] [blame] | 116 | return t; |
| 117 | } |
Nick Kledzik | e34182f | 2013-11-06 21:36:55 +0000 | [diff] [blame] | 118 | |
Nick Kledzik | 635f9c7 | 2014-09-04 20:08:30 +0000 | [diff] [blame] | 119 | |
Tim Northover | 40d3ad3 | 2014-10-27 22:48:35 +0000 | [diff] [blame] | 120 | static bool isMachOHeader(const mach_header *mh, bool &is64, bool &isBig) { |
| 121 | switch (read32(&mh->magic, false)) { |
Nick Kledzik | 635f9c7 | 2014-09-04 20:08:30 +0000 | [diff] [blame] | 122 | case llvm::MachO::MH_MAGIC: |
| 123 | is64 = false; |
Tim Northover | 40d3ad3 | 2014-10-27 22:48:35 +0000 | [diff] [blame] | 124 | isBig = false; |
Nick Kledzik | 635f9c7 | 2014-09-04 20:08:30 +0000 | [diff] [blame] | 125 | return true; |
| 126 | case llvm::MachO::MH_MAGIC_64: |
| 127 | is64 = true; |
Tim Northover | 40d3ad3 | 2014-10-27 22:48:35 +0000 | [diff] [blame] | 128 | isBig = false; |
Nick Kledzik | 635f9c7 | 2014-09-04 20:08:30 +0000 | [diff] [blame] | 129 | return true; |
| 130 | case llvm::MachO::MH_CIGAM: |
| 131 | is64 = false; |
Tim Northover | 40d3ad3 | 2014-10-27 22:48:35 +0000 | [diff] [blame] | 132 | isBig = true; |
Nick Kledzik | 635f9c7 | 2014-09-04 20:08:30 +0000 | [diff] [blame] | 133 | return true; |
| 134 | case llvm::MachO::MH_CIGAM_64: |
| 135 | is64 = true; |
Tim Northover | 40d3ad3 | 2014-10-27 22:48:35 +0000 | [diff] [blame] | 136 | isBig = true; |
Nick Kledzik | 635f9c7 | 2014-09-04 20:08:30 +0000 | [diff] [blame] | 137 | return true; |
| 138 | default: |
| 139 | return false; |
| 140 | } |
| 141 | } |
| 142 | |
| 143 | |
| 144 | bool isThinObjectFile(StringRef path, MachOLinkingContext::Arch &arch) { |
| 145 | // Try opening and mapping file at path. |
| 146 | ErrorOr<std::unique_ptr<MemoryBuffer>> b = MemoryBuffer::getFileOrSTDIN(path); |
| 147 | if (b.getError()) |
| 148 | return false; |
| 149 | |
| 150 | // If file length < 32 it is too small to be mach-o object file. |
| 151 | StringRef fileBuffer = b->get()->getBuffer(); |
| 152 | if (fileBuffer.size() < 32) |
| 153 | return false; |
| 154 | |
| 155 | // If file buffer does not start with MH_MAGIC (and variants), not obj file. |
| 156 | const mach_header *mh = reinterpret_cast<const mach_header *>( |
| 157 | fileBuffer.begin()); |
Tim Northover | 40d3ad3 | 2014-10-27 22:48:35 +0000 | [diff] [blame] | 158 | bool is64, isBig; |
| 159 | if (!isMachOHeader(mh, is64, isBig)) |
Nick Kledzik | 635f9c7 | 2014-09-04 20:08:30 +0000 | [diff] [blame] | 160 | return false; |
| 161 | |
| 162 | // If not MH_OBJECT, not object file. |
Tim Northover | 40d3ad3 | 2014-10-27 22:48:35 +0000 | [diff] [blame] | 163 | if (read32(&mh->filetype, isBig) != MH_OBJECT) |
Nick Kledzik | 635f9c7 | 2014-09-04 20:08:30 +0000 | [diff] [blame] | 164 | return false; |
| 165 | |
| 166 | // Lookup up arch from cpu/subtype pair. |
Tim Northover | 40d3ad3 | 2014-10-27 22:48:35 +0000 | [diff] [blame] | 167 | arch = MachOLinkingContext::archFromCpuType( |
| 168 | read32(&mh->cputype, isBig), |
| 169 | read32(&mh->cpusubtype, isBig)); |
Nick Kledzik | 635f9c7 | 2014-09-04 20:08:30 +0000 | [diff] [blame] | 170 | return true; |
| 171 | } |
| 172 | |
Nick Kledzik | 14b5d20 | 2014-10-08 01:48:10 +0000 | [diff] [blame] | 173 | |
| 174 | bool sliceFromFatFile(const MemoryBuffer &mb, MachOLinkingContext::Arch arch, |
| 175 | uint32_t &offset, uint32_t &size) { |
| 176 | const char *start = mb.getBufferStart(); |
| 177 | const llvm::MachO::fat_header *fh = |
| 178 | reinterpret_cast<const llvm::MachO::fat_header *>(start); |
| 179 | if (readBigEndian(fh->magic) != llvm::MachO::FAT_MAGIC) |
| 180 | return false; |
| 181 | uint32_t nfat_arch = readBigEndian(fh->nfat_arch); |
| 182 | const fat_arch *fstart = |
| 183 | reinterpret_cast<const fat_arch *>(start + sizeof(fat_header)); |
| 184 | const fat_arch *fend = |
| 185 | reinterpret_cast<const fat_arch *>(start + sizeof(fat_header) + |
| 186 | sizeof(fat_arch) * nfat_arch); |
| 187 | const uint32_t reqCpuType = MachOLinkingContext::cpuTypeFromArch(arch); |
| 188 | const uint32_t reqCpuSubtype = MachOLinkingContext::cpuSubtypeFromArch(arch); |
| 189 | for (const fat_arch *fa = fstart; fa < fend; ++fa) { |
| 190 | if ((readBigEndian(fa->cputype) == reqCpuType) && |
| 191 | (readBigEndian(fa->cpusubtype) == reqCpuSubtype)) { |
| 192 | offset = readBigEndian(fa->offset); |
| 193 | size = readBigEndian(fa->size); |
| 194 | if ((offset + size) > mb.getBufferSize()) |
| 195 | return false; |
| 196 | return true; |
| 197 | } |
| 198 | } |
| 199 | return false; |
| 200 | } |
| 201 | |
Nick Kledzik | e34182f | 2013-11-06 21:36:55 +0000 | [diff] [blame] | 202 | /// Reads a mach-o file and produces an in-memory normalized view. |
Joey Gouly | 010b376 | 2014-01-14 22:32:38 +0000 | [diff] [blame] | 203 | ErrorOr<std::unique_ptr<NormalizedFile>> |
| 204 | readBinary(std::unique_ptr<MemoryBuffer> &mb, |
| 205 | const MachOLinkingContext::Arch arch) { |
Nick Kledzik | e34182f | 2013-11-06 21:36:55 +0000 | [diff] [blame] | 206 | // Make empty NormalizedFile. |
| 207 | std::unique_ptr<NormalizedFile> f(new NormalizedFile()); |
| 208 | |
Joey Gouly | 010b376 | 2014-01-14 22:32:38 +0000 | [diff] [blame] | 209 | const char *start = mb->getBufferStart(); |
| 210 | size_t objSize = mb->getBufferSize(); |
Joey Gouly | 010b376 | 2014-01-14 22:32:38 +0000 | [diff] [blame] | 211 | const mach_header *mh = reinterpret_cast<const mach_header *>(start); |
Nick Kledzik | 14b5d20 | 2014-10-08 01:48:10 +0000 | [diff] [blame] | 212 | |
| 213 | uint32_t sliceOffset; |
| 214 | uint32_t sliceSize; |
| 215 | if (sliceFromFatFile(*mb, arch, sliceOffset, sliceSize)) { |
| 216 | start = &start[sliceOffset]; |
| 217 | objSize = sliceSize; |
Joey Gouly | 010b376 | 2014-01-14 22:32:38 +0000 | [diff] [blame] | 218 | mh = reinterpret_cast<const mach_header *>(start); |
| 219 | } |
| 220 | |
Nick Kledzik | 14b5d20 | 2014-10-08 01:48:10 +0000 | [diff] [blame] | 221 | // Determine endianness and pointer size for mach-o file. |
Tim Northover | 40d3ad3 | 2014-10-27 22:48:35 +0000 | [diff] [blame] | 222 | bool is64, isBig; |
| 223 | if (!isMachOHeader(mh, is64, isBig)) |
Rafael Espindola | 372bc70 | 2014-06-13 17:20:48 +0000 | [diff] [blame] | 224 | return make_error_code(llvm::errc::executable_format_error); |
Nick Kledzik | e34182f | 2013-11-06 21:36:55 +0000 | [diff] [blame] | 225 | |
| 226 | // Endian swap header, if needed. |
| 227 | mach_header headerCopy; |
| 228 | const mach_header *smh = mh; |
Tim Northover | 40d3ad3 | 2014-10-27 22:48:35 +0000 | [diff] [blame] | 229 | if (isBig != llvm::sys::IsBigEndianHost) { |
Nick Kledzik | e34182f | 2013-11-06 21:36:55 +0000 | [diff] [blame] | 230 | memcpy(&headerCopy, mh, sizeof(mach_header)); |
| 231 | swapStruct(headerCopy); |
| 232 | smh = &headerCopy; |
| 233 | } |
| 234 | |
| 235 | // Validate head and load commands fit in buffer. |
| 236 | const uint32_t lcCount = smh->ncmds; |
Joey Gouly | 010b376 | 2014-01-14 22:32:38 +0000 | [diff] [blame] | 237 | const char *lcStart = |
| 238 | start + (is64 ? sizeof(mach_header_64) : sizeof(mach_header)); |
Nick Kledzik | e34182f | 2013-11-06 21:36:55 +0000 | [diff] [blame] | 239 | StringRef lcRange(lcStart, smh->sizeofcmds); |
Joey Gouly | 010b376 | 2014-01-14 22:32:38 +0000 | [diff] [blame] | 240 | if (lcRange.end() > (start + objSize)) |
Rafael Espindola | 372bc70 | 2014-06-13 17:20:48 +0000 | [diff] [blame] | 241 | return make_error_code(llvm::errc::executable_format_error); |
Nick Kledzik | e34182f | 2013-11-06 21:36:55 +0000 | [diff] [blame] | 242 | |
Nick Kledzik | 378066c | 2014-06-30 22:57:33 +0000 | [diff] [blame] | 243 | // Get architecture from mach_header. |
Nick Kledzik | e34182f | 2013-11-06 21:36:55 +0000 | [diff] [blame] | 244 | f->arch = MachOLinkingContext::archFromCpuType(smh->cputype, smh->cpusubtype); |
Nick Kledzik | 378066c | 2014-06-30 22:57:33 +0000 | [diff] [blame] | 245 | if (f->arch != arch) { |
| 246 | return make_dynamic_error_code(Twine("file is wrong architecture. Expected " |
| 247 | "(" + MachOLinkingContext::nameFromArch(arch) |
| 248 | + ") found (" |
| 249 | + MachOLinkingContext::nameFromArch(f->arch) |
| 250 | + ")" )); |
| 251 | } |
Nick Kledzik | e34182f | 2013-11-06 21:36:55 +0000 | [diff] [blame] | 252 | // Copy file type and flags |
| 253 | f->fileType = HeaderFileType(smh->filetype); |
| 254 | f->flags = smh->flags; |
| 255 | |
| 256 | |
Nick Kledzik | 388f3d0 | 2014-05-28 01:16:35 +0000 | [diff] [blame] | 257 | // Pre-scan load commands looking for indirect symbol table. |
| 258 | uint32_t indirectSymbolTableOffset = 0; |
| 259 | uint32_t indirectSymbolTableCount = 0; |
Tim Northover | 40d3ad3 | 2014-10-27 22:48:35 +0000 | [diff] [blame] | 260 | std::error_code ec = forEachLoadCommand(lcRange, lcCount, isBig, is64, |
Rafael Espindola | b1a4d3a | 2014-06-12 14:53:47 +0000 | [diff] [blame] | 261 | [&](uint32_t cmd, uint32_t size, |
| 262 | const char *lc) -> bool { |
Nick Kledzik | 388f3d0 | 2014-05-28 01:16:35 +0000 | [diff] [blame] | 263 | if (cmd == LC_DYSYMTAB) { |
| 264 | const dysymtab_command *d = reinterpret_cast<const dysymtab_command*>(lc); |
Tim Northover | 40d3ad3 | 2014-10-27 22:48:35 +0000 | [diff] [blame] | 265 | indirectSymbolTableOffset = read32(&d->indirectsymoff, isBig); |
| 266 | indirectSymbolTableCount = read32(&d->nindirectsyms, isBig); |
Nick Kledzik | 388f3d0 | 2014-05-28 01:16:35 +0000 | [diff] [blame] | 267 | return true; |
| 268 | } |
| 269 | return false; |
| 270 | }); |
| 271 | if (ec) |
| 272 | return ec; |
| 273 | |
| 274 | // Walk load commands looking for segments/sections and the symbol table. |
Nick Kledzik | 2192137 | 2014-07-24 23:06:56 +0000 | [diff] [blame] | 275 | const data_in_code_entry *dataInCode = nullptr; |
Nick Kledzik | 141330a | 2014-09-03 19:52:50 +0000 | [diff] [blame] | 276 | const dyld_info_command *dyldInfo = nullptr; |
Nick Kledzik | 2192137 | 2014-07-24 23:06:56 +0000 | [diff] [blame] | 277 | uint32_t dataInCodeSize = 0; |
Tim Northover | 40d3ad3 | 2014-10-27 22:48:35 +0000 | [diff] [blame] | 278 | ec = forEachLoadCommand(lcRange, lcCount, isBig, is64, |
Nick Kledzik | 388f3d0 | 2014-05-28 01:16:35 +0000 | [diff] [blame] | 279 | [&] (uint32_t cmd, uint32_t size, const char* lc) -> bool { |
Nick Kledzik | 8fc67fb | 2014-08-13 23:55:41 +0000 | [diff] [blame] | 280 | switch(cmd) { |
| 281 | case LC_SEGMENT_64: |
| 282 | if (is64) { |
Shankar Easwaran | 3d8de47 | 2014-01-27 03:09:26 +0000 | [diff] [blame] | 283 | const segment_command_64 *seg = |
Nick Kledzik | e34182f | 2013-11-06 21:36:55 +0000 | [diff] [blame] | 284 | reinterpret_cast<const segment_command_64*>(lc); |
Tim Northover | 40d3ad3 | 2014-10-27 22:48:35 +0000 | [diff] [blame] | 285 | const unsigned sectionCount = read32(&seg->nsects, isBig); |
Nick Kledzik | e34182f | 2013-11-06 21:36:55 +0000 | [diff] [blame] | 286 | const section_64 *sects = reinterpret_cast<const section_64*> |
| 287 | (lc + sizeof(segment_command_64)); |
Shankar Easwaran | 3d8de47 | 2014-01-27 03:09:26 +0000 | [diff] [blame] | 288 | const unsigned lcSize = sizeof(segment_command_64) |
Nick Kledzik | e34182f | 2013-11-06 21:36:55 +0000 | [diff] [blame] | 289 | + sectionCount*sizeof(section_64); |
| 290 | // Verify sections don't extend beyond end of segment load command. |
Shankar Easwaran | 3d8de47 | 2014-01-27 03:09:26 +0000 | [diff] [blame] | 291 | if (lcSize > size) |
Rafael Espindola | 1d364c1 | 2014-06-03 04:41:30 +0000 | [diff] [blame] | 292 | return true; |
Nick Kledzik | e34182f | 2013-11-06 21:36:55 +0000 | [diff] [blame] | 293 | for (unsigned i=0; i < sectionCount; ++i) { |
| 294 | const section_64 *sect = §s[i]; |
| 295 | Section section; |
| 296 | section.segmentName = getString16(sect->segname); |
| 297 | section.sectionName = getString16(sect->sectname); |
Tim Northover | 40d3ad3 | 2014-10-27 22:48:35 +0000 | [diff] [blame] | 298 | section.type = (SectionType)(read32(§->flags, isBig) & |
| 299 | SECTION_TYPE); |
| 300 | section.attributes = read32(§->flags, isBig) & SECTION_ATTRIBUTES; |
Rui Ueyama | f006f4d | 2015-03-26 01:44:01 +0000 | [diff] [blame] | 301 | section.alignment = 1 << read32(§->align, isBig); |
Tim Northover | 40d3ad3 | 2014-10-27 22:48:35 +0000 | [diff] [blame] | 302 | section.address = read64(§->addr, isBig); |
Joey Gouly | 010b376 | 2014-01-14 22:32:38 +0000 | [diff] [blame] | 303 | const uint8_t *content = |
Simon Atanasyan | 55c2699 | 2014-11-14 07:15:43 +0000 | [diff] [blame] | 304 | (const uint8_t *)start + read32(§->offset, isBig); |
Tim Northover | 40d3ad3 | 2014-10-27 22:48:35 +0000 | [diff] [blame] | 305 | size_t contentSize = read64(§->size, isBig); |
Nick Kledzik | e34182f | 2013-11-06 21:36:55 +0000 | [diff] [blame] | 306 | // Note: this assign() is copying the content bytes. Ideally, |
| 307 | // we can use a custom allocator for vector to avoid the copy. |
Nick Kledzik | 6edd722 | 2014-01-11 01:07:43 +0000 | [diff] [blame] | 308 | section.content = llvm::makeArrayRef(content, contentSize); |
Tim Northover | 40d3ad3 | 2014-10-27 22:48:35 +0000 | [diff] [blame] | 309 | appendRelocations(section.relocations, mb->getBuffer(), isBig, |
| 310 | read32(§->reloff, isBig), |
| 311 | read32(§->nreloc, isBig)); |
Nick Kledzik | 388f3d0 | 2014-05-28 01:16:35 +0000 | [diff] [blame] | 312 | if (section.type == S_NON_LAZY_SYMBOL_POINTERS) { |
| 313 | appendIndirectSymbols(section.indirectSymbols, mb->getBuffer(), |
Tim Northover | 40d3ad3 | 2014-10-27 22:48:35 +0000 | [diff] [blame] | 314 | isBig, |
Nick Kledzik | 388f3d0 | 2014-05-28 01:16:35 +0000 | [diff] [blame] | 315 | indirectSymbolTableOffset, |
| 316 | indirectSymbolTableCount, |
Tim Northover | 40d3ad3 | 2014-10-27 22:48:35 +0000 | [diff] [blame] | 317 | read32(§->reserved1, isBig), |
| 318 | contentSize/4); |
Nick Kledzik | 388f3d0 | 2014-05-28 01:16:35 +0000 | [diff] [blame] | 319 | } |
Nick Kledzik | e34182f | 2013-11-06 21:36:55 +0000 | [diff] [blame] | 320 | f->sections.push_back(section); |
| 321 | } |
| 322 | } |
Nick Kledzik | 8fc67fb | 2014-08-13 23:55:41 +0000 | [diff] [blame] | 323 | break; |
| 324 | case LC_SEGMENT: |
| 325 | if (!is64) { |
Shankar Easwaran | 3d8de47 | 2014-01-27 03:09:26 +0000 | [diff] [blame] | 326 | const segment_command *seg = |
Nick Kledzik | e34182f | 2013-11-06 21:36:55 +0000 | [diff] [blame] | 327 | reinterpret_cast<const segment_command*>(lc); |
Tim Northover | 40d3ad3 | 2014-10-27 22:48:35 +0000 | [diff] [blame] | 328 | const unsigned sectionCount = read32(&seg->nsects, isBig); |
Nick Kledzik | e34182f | 2013-11-06 21:36:55 +0000 | [diff] [blame] | 329 | const section *sects = reinterpret_cast<const section*> |
| 330 | (lc + sizeof(segment_command)); |
Shankar Easwaran | 3d8de47 | 2014-01-27 03:09:26 +0000 | [diff] [blame] | 331 | const unsigned lcSize = sizeof(segment_command) |
Nick Kledzik | e34182f | 2013-11-06 21:36:55 +0000 | [diff] [blame] | 332 | + sectionCount*sizeof(section); |
| 333 | // Verify sections don't extend beyond end of segment load command. |
Shankar Easwaran | 3d8de47 | 2014-01-27 03:09:26 +0000 | [diff] [blame] | 334 | if (lcSize > size) |
Rafael Espindola | 1d364c1 | 2014-06-03 04:41:30 +0000 | [diff] [blame] | 335 | return true; |
Nick Kledzik | e34182f | 2013-11-06 21:36:55 +0000 | [diff] [blame] | 336 | for (unsigned i=0; i < sectionCount; ++i) { |
| 337 | const section *sect = §s[i]; |
| 338 | Section section; |
| 339 | section.segmentName = getString16(sect->segname); |
| 340 | section.sectionName = getString16(sect->sectname); |
Tim Northover | 40d3ad3 | 2014-10-27 22:48:35 +0000 | [diff] [blame] | 341 | section.type = (SectionType)(read32(§->flags, isBig) & |
| 342 | SECTION_TYPE); |
| 343 | section.attributes = |
Simon Atanasyan | 55c2699 | 2014-11-14 07:15:43 +0000 | [diff] [blame] | 344 | read32((const uint8_t *)§->flags, isBig) & SECTION_ATTRIBUTES; |
Rui Ueyama | f006f4d | 2015-03-26 01:44:01 +0000 | [diff] [blame] | 345 | section.alignment = 1 << read32(§->align, isBig); |
Tim Northover | 40d3ad3 | 2014-10-27 22:48:35 +0000 | [diff] [blame] | 346 | section.address = read32(§->addr, isBig); |
Joey Gouly | 010b376 | 2014-01-14 22:32:38 +0000 | [diff] [blame] | 347 | const uint8_t *content = |
Simon Atanasyan | 55c2699 | 2014-11-14 07:15:43 +0000 | [diff] [blame] | 348 | (const uint8_t *)start + read32(§->offset, isBig); |
Tim Northover | 40d3ad3 | 2014-10-27 22:48:35 +0000 | [diff] [blame] | 349 | size_t contentSize = read32(§->size, isBig); |
Nick Kledzik | e34182f | 2013-11-06 21:36:55 +0000 | [diff] [blame] | 350 | // Note: this assign() is copying the content bytes. Ideally, |
| 351 | // we can use a custom allocator for vector to avoid the copy. |
Nick Kledzik | 6edd722 | 2014-01-11 01:07:43 +0000 | [diff] [blame] | 352 | section.content = llvm::makeArrayRef(content, contentSize); |
Tim Northover | 40d3ad3 | 2014-10-27 22:48:35 +0000 | [diff] [blame] | 353 | appendRelocations(section.relocations, mb->getBuffer(), isBig, |
| 354 | read32(§->reloff, isBig), |
| 355 | read32(§->nreloc, isBig)); |
Nick Kledzik | 388f3d0 | 2014-05-28 01:16:35 +0000 | [diff] [blame] | 356 | if (section.type == S_NON_LAZY_SYMBOL_POINTERS) { |
Tim Northover | 40d3ad3 | 2014-10-27 22:48:35 +0000 | [diff] [blame] | 357 | appendIndirectSymbols( |
| 358 | section.indirectSymbols, mb->getBuffer(), isBig, |
| 359 | indirectSymbolTableOffset, indirectSymbolTableCount, |
| 360 | read32(§->reserved1, isBig), contentSize / 4); |
Nick Kledzik | 388f3d0 | 2014-05-28 01:16:35 +0000 | [diff] [blame] | 361 | } |
Nick Kledzik | e34182f | 2013-11-06 21:36:55 +0000 | [diff] [blame] | 362 | f->sections.push_back(section); |
| 363 | } |
| 364 | } |
Nick Kledzik | 8fc67fb | 2014-08-13 23:55:41 +0000 | [diff] [blame] | 365 | break; |
| 366 | case LC_SYMTAB: { |
Nick Kledzik | e34182f | 2013-11-06 21:36:55 +0000 | [diff] [blame] | 367 | const symtab_command *st = reinterpret_cast<const symtab_command*>(lc); |
Tim Northover | 40d3ad3 | 2014-10-27 22:48:35 +0000 | [diff] [blame] | 368 | const char *strings = start + read32(&st->stroff, isBig); |
| 369 | const uint32_t strSize = read32(&st->strsize, isBig); |
Nick Kledzik | e34182f | 2013-11-06 21:36:55 +0000 | [diff] [blame] | 370 | // Validate string pool and symbol table all in buffer. |
Simon Atanasyan | 55c2699 | 2014-11-14 07:15:43 +0000 | [diff] [blame] | 371 | if (read32((const uint8_t *)&st->stroff, isBig) + |
| 372 | read32((const uint8_t *)&st->strsize, isBig) > |
Tim Northover | 40d3ad3 | 2014-10-27 22:48:35 +0000 | [diff] [blame] | 373 | objSize) |
Rafael Espindola | 1d364c1 | 2014-06-03 04:41:30 +0000 | [diff] [blame] | 374 | return true; |
Nick Kledzik | e34182f | 2013-11-06 21:36:55 +0000 | [diff] [blame] | 375 | if (is64) { |
Tim Northover | 40d3ad3 | 2014-10-27 22:48:35 +0000 | [diff] [blame] | 376 | const uint32_t symOffset = read32(&st->symoff, isBig); |
| 377 | const uint32_t symCount = read32(&st->nsyms, isBig); |
Joey Gouly | 010b376 | 2014-01-14 22:32:38 +0000 | [diff] [blame] | 378 | if ( symOffset+(symCount*sizeof(nlist_64)) > objSize) |
Rafael Espindola | 1d364c1 | 2014-06-03 04:41:30 +0000 | [diff] [blame] | 379 | return true; |
Joey Gouly | 010b376 | 2014-01-14 22:32:38 +0000 | [diff] [blame] | 380 | const nlist_64 *symbols = |
| 381 | reinterpret_cast<const nlist_64 *>(start + symOffset); |
Nick Kledzik | e34182f | 2013-11-06 21:36:55 +0000 | [diff] [blame] | 382 | // Convert each nlist_64 to a lld::mach_o::normalized::Symbol. |
| 383 | for(uint32_t i=0; i < symCount; ++i) { |
| 384 | const nlist_64 *sin = &symbols[i]; |
| 385 | nlist_64 tempSym; |
Tim Northover | 40d3ad3 | 2014-10-27 22:48:35 +0000 | [diff] [blame] | 386 | if (isBig != llvm::sys::IsBigEndianHost) { |
Nick Kledzik | e34182f | 2013-11-06 21:36:55 +0000 | [diff] [blame] | 387 | tempSym = *sin; swapStruct(tempSym); sin = &tempSym; |
| 388 | } |
| 389 | Symbol sout; |
Shankar Easwaran | 3d8de47 | 2014-01-27 03:09:26 +0000 | [diff] [blame] | 390 | if (sin->n_strx > strSize) |
Rafael Espindola | 1d364c1 | 2014-06-03 04:41:30 +0000 | [diff] [blame] | 391 | return true; |
Nick Kledzik | e34182f | 2013-11-06 21:36:55 +0000 | [diff] [blame] | 392 | sout.name = &strings[sin->n_strx]; |
| 393 | sout.type = (NListType)(sin->n_type & N_TYPE); |
| 394 | sout.scope = (sin->n_type & (N_PEXT|N_EXT)); |
| 395 | sout.sect = sin->n_sect; |
| 396 | sout.desc = sin->n_desc; |
| 397 | sout.value = sin->n_value; |
| 398 | if (sout.type == N_UNDF) |
| 399 | f->undefinedSymbols.push_back(sout); |
Nick Kledzik | 3f69076 | 2014-06-27 18:25:01 +0000 | [diff] [blame] | 400 | else if (sin->n_type & N_EXT) |
Nick Kledzik | e34182f | 2013-11-06 21:36:55 +0000 | [diff] [blame] | 401 | f->globalSymbols.push_back(sout); |
| 402 | else |
| 403 | f->localSymbols.push_back(sout); |
| 404 | } |
Shankar Easwaran | 3d8de47 | 2014-01-27 03:09:26 +0000 | [diff] [blame] | 405 | } else { |
Tim Northover | 40d3ad3 | 2014-10-27 22:48:35 +0000 | [diff] [blame] | 406 | const uint32_t symOffset = read32(&st->symoff, isBig); |
| 407 | const uint32_t symCount = read32(&st->nsyms, isBig); |
Joey Gouly | 010b376 | 2014-01-14 22:32:38 +0000 | [diff] [blame] | 408 | if ( symOffset+(symCount*sizeof(nlist)) > objSize) |
Rafael Espindola | 1d364c1 | 2014-06-03 04:41:30 +0000 | [diff] [blame] | 409 | return true; |
Joey Gouly | 010b376 | 2014-01-14 22:32:38 +0000 | [diff] [blame] | 410 | const nlist *symbols = |
| 411 | reinterpret_cast<const nlist *>(start + symOffset); |
Nick Kledzik | e34182f | 2013-11-06 21:36:55 +0000 | [diff] [blame] | 412 | // Convert each nlist to a lld::mach_o::normalized::Symbol. |
| 413 | for(uint32_t i=0; i < symCount; ++i) { |
| 414 | const nlist *sin = &symbols[i]; |
| 415 | nlist tempSym; |
Tim Northover | 40d3ad3 | 2014-10-27 22:48:35 +0000 | [diff] [blame] | 416 | if (isBig != llvm::sys::IsBigEndianHost) { |
Nick Kledzik | e34182f | 2013-11-06 21:36:55 +0000 | [diff] [blame] | 417 | tempSym = *sin; swapStruct(tempSym); sin = &tempSym; |
| 418 | } |
| 419 | Symbol sout; |
Shankar Easwaran | 3d8de47 | 2014-01-27 03:09:26 +0000 | [diff] [blame] | 420 | if (sin->n_strx > strSize) |
Rafael Espindola | 1d364c1 | 2014-06-03 04:41:30 +0000 | [diff] [blame] | 421 | return true; |
Nick Kledzik | e34182f | 2013-11-06 21:36:55 +0000 | [diff] [blame] | 422 | sout.name = &strings[sin->n_strx]; |
| 423 | sout.type = (NListType)(sin->n_type & N_TYPE); |
| 424 | sout.scope = (sin->n_type & (N_PEXT|N_EXT)); |
| 425 | sout.sect = sin->n_sect; |
| 426 | sout.desc = sin->n_desc; |
| 427 | sout.value = sin->n_value; |
| 428 | if (sout.type == N_UNDF) |
| 429 | f->undefinedSymbols.push_back(sout); |
| 430 | else if (sout.scope == (SymbolScope)N_EXT) |
| 431 | f->globalSymbols.push_back(sout); |
| 432 | else |
| 433 | f->localSymbols.push_back(sout); |
| 434 | } |
| 435 | } |
Nick Kledzik | 8fc67fb | 2014-08-13 23:55:41 +0000 | [diff] [blame] | 436 | } |
| 437 | break; |
| 438 | case LC_ID_DYLIB: { |
Tim Northover | 301c4e6 | 2014-07-01 08:15:41 +0000 | [diff] [blame] | 439 | const dylib_command *dl = reinterpret_cast<const dylib_command*>(lc); |
Tim Northover | 40d3ad3 | 2014-10-27 22:48:35 +0000 | [diff] [blame] | 440 | f->installName = lc + read32(&dl->dylib.name, isBig); |
Jean-Daniel Dupas | edefccc | 2014-12-20 09:22:56 +0000 | [diff] [blame] | 441 | f->currentVersion = read32(&dl->dylib.current_version, isBig); |
| 442 | f->compatVersion = read32(&dl->dylib.compatibility_version, isBig); |
Nick Kledzik | 8fc67fb | 2014-08-13 23:55:41 +0000 | [diff] [blame] | 443 | } |
| 444 | break; |
| 445 | case LC_DATA_IN_CODE: { |
Nick Kledzik | 2192137 | 2014-07-24 23:06:56 +0000 | [diff] [blame] | 446 | const linkedit_data_command *ldc = |
| 447 | reinterpret_cast<const linkedit_data_command*>(lc); |
Tim Northover | 40d3ad3 | 2014-10-27 22:48:35 +0000 | [diff] [blame] | 448 | dataInCode = reinterpret_cast<const data_in_code_entry *>( |
| 449 | start + read32(&ldc->dataoff, isBig)); |
| 450 | dataInCodeSize = read32(&ldc->datasize, isBig); |
Nick Kledzik | 8fc67fb | 2014-08-13 23:55:41 +0000 | [diff] [blame] | 451 | } |
Nick Kledzik | 141330a | 2014-09-03 19:52:50 +0000 | [diff] [blame] | 452 | break; |
Nick Kledzik | 8fc67fb | 2014-08-13 23:55:41 +0000 | [diff] [blame] | 453 | case LC_LOAD_DYLIB: |
| 454 | case LC_LOAD_WEAK_DYLIB: |
| 455 | case LC_REEXPORT_DYLIB: |
| 456 | case LC_LOAD_UPWARD_DYLIB: { |
| 457 | const dylib_command *dl = reinterpret_cast<const dylib_command*>(lc); |
| 458 | DependentDylib entry; |
Tim Northover | 40d3ad3 | 2014-10-27 22:48:35 +0000 | [diff] [blame] | 459 | entry.path = lc + read32(&dl->dylib.name, isBig); |
Nick Kledzik | 8fc67fb | 2014-08-13 23:55:41 +0000 | [diff] [blame] | 460 | entry.kind = LoadCommandType(cmd); |
Nick Kledzik | 5b9e48b | 2014-11-19 02:21:53 +0000 | [diff] [blame] | 461 | entry.compatVersion = read32(&dl->dylib.compatibility_version, isBig); |
| 462 | entry.currentVersion = read32(&dl->dylib.current_version, isBig); |
Nick Kledzik | 8fc67fb | 2014-08-13 23:55:41 +0000 | [diff] [blame] | 463 | f->dependentDylibs.push_back(entry); |
Nick Kledzik | 5b9e48b | 2014-11-19 02:21:53 +0000 | [diff] [blame] | 464 | } |
Nick Kledzik | 8fc67fb | 2014-08-13 23:55:41 +0000 | [diff] [blame] | 465 | break; |
Jean-Daniel Dupas | 23dd15e | 2014-12-18 21:33:38 +0000 | [diff] [blame] | 466 | case LC_RPATH: { |
| 467 | const rpath_command *rpc = reinterpret_cast<const rpath_command *>(lc); |
| 468 | f->rpaths.push_back(lc + read32(&rpc->path, isBig)); |
| 469 | } |
| 470 | break; |
Nick Kledzik | 141330a | 2014-09-03 19:52:50 +0000 | [diff] [blame] | 471 | case LC_DYLD_INFO: |
| 472 | case LC_DYLD_INFO_ONLY: |
| 473 | dyldInfo = reinterpret_cast<const dyld_info_command*>(lc); |
| 474 | break; |
Tim Northover | 301c4e6 | 2014-07-01 08:15:41 +0000 | [diff] [blame] | 475 | } |
Nick Kledzik | e34182f | 2013-11-06 21:36:55 +0000 | [diff] [blame] | 476 | return false; |
| 477 | }); |
Shankar Easwaran | 3d8de47 | 2014-01-27 03:09:26 +0000 | [diff] [blame] | 478 | if (ec) |
Nick Kledzik | e34182f | 2013-11-06 21:36:55 +0000 | [diff] [blame] | 479 | return ec; |
| 480 | |
Nick Kledzik | 2192137 | 2014-07-24 23:06:56 +0000 | [diff] [blame] | 481 | if (dataInCode) { |
| 482 | // Convert on-disk data_in_code_entry array to DataInCode vector. |
| 483 | for (unsigned i=0; i < dataInCodeSize/sizeof(data_in_code_entry); ++i) { |
| 484 | DataInCode entry; |
Tim Northover | 40d3ad3 | 2014-10-27 22:48:35 +0000 | [diff] [blame] | 485 | entry.offset = read32(&dataInCode[i].offset, isBig); |
| 486 | entry.length = read16(&dataInCode[i].length, isBig); |
| 487 | entry.kind = |
Simon Atanasyan | 55c2699 | 2014-11-14 07:15:43 +0000 | [diff] [blame] | 488 | (DataRegionType)read16((const uint8_t *)&dataInCode[i].kind, isBig); |
Nick Kledzik | 2192137 | 2014-07-24 23:06:56 +0000 | [diff] [blame] | 489 | f->dataInCode.push_back(entry); |
| 490 | } |
| 491 | } |
| 492 | |
Nick Kledzik | 141330a | 2014-09-03 19:52:50 +0000 | [diff] [blame] | 493 | if (dyldInfo) { |
| 494 | // If any exports, extract and add to normalized exportInfo vector. |
| 495 | if (dyldInfo->export_size) { |
| 496 | const uint8_t *trieStart = reinterpret_cast<const uint8_t*>(start + |
| 497 | dyldInfo->export_off); |
| 498 | ArrayRef<uint8_t> trie(trieStart, dyldInfo->export_size); |
| 499 | for (const ExportEntry &trieExport : MachOObjectFile::exports(trie)) { |
| 500 | Export normExport; |
| 501 | normExport.name = trieExport.name().copy(f->ownedAllocations); |
| 502 | normExport.offset = trieExport.address(); |
| 503 | normExport.kind = ExportSymbolKind(trieExport.flags() & EXPORT_SYMBOL_FLAGS_KIND_MASK); |
| 504 | normExport.flags = trieExport.flags() & ~EXPORT_SYMBOL_FLAGS_KIND_MASK; |
| 505 | normExport.otherOffset = trieExport.other(); |
| 506 | if (!trieExport.otherName().empty()) |
| 507 | normExport.otherName = trieExport.otherName().copy(f->ownedAllocations); |
| 508 | f->exportInfo.push_back(normExport); |
| 509 | } |
| 510 | } |
| 511 | } |
| 512 | |
Nick Kledzik | e34182f | 2013-11-06 21:36:55 +0000 | [diff] [blame] | 513 | return std::move(f); |
| 514 | } |
| 515 | |
Rui Ueyama | 1d51042 | 2014-12-12 07:31:09 +0000 | [diff] [blame] | 516 | class MachOObjectReader : public Reader { |
Nick Kledzik | cc28bc1 | 2014-05-30 01:13:49 +0000 | [diff] [blame] | 517 | public: |
Rui Ueyama | 1d51042 | 2014-12-12 07:31:09 +0000 | [diff] [blame] | 518 | MachOObjectReader(MachOLinkingContext &ctx) : _ctx(ctx) {} |
Nick Kledzik | cc28bc1 | 2014-05-30 01:13:49 +0000 | [diff] [blame] | 519 | |
Rui Ueyama | 55f5b2b | 2015-04-04 02:44:36 +0000 | [diff] [blame] | 520 | bool canParse(file_magic magic, const MemoryBuffer &mb) const override { |
| 521 | return (magic == llvm::sys::fs::file_magic::macho_object && |
| 522 | mb.getBufferSize() > 32); |
Rui Ueyama | 1d51042 | 2014-12-12 07:31:09 +0000 | [diff] [blame] | 523 | } |
| 524 | |
Rafael Espindola | dedab91 | 2015-04-24 18:33:50 +0000 | [diff] [blame^] | 525 | ErrorOr<std::unique_ptr<File>> |
| 526 | loadFile(std::unique_ptr<MemoryBuffer> mb, |
| 527 | const Registry ®istry) const override { |
| 528 | std::unique_ptr<File> ret = |
| 529 | llvm::make_unique<MachOFile>(std::move(mb), &_ctx); |
| 530 | return std::move(ret); |
Rui Ueyama | 1d51042 | 2014-12-12 07:31:09 +0000 | [diff] [blame] | 531 | } |
| 532 | |
| 533 | private: |
| 534 | MachOLinkingContext &_ctx; |
| 535 | }; |
| 536 | |
| 537 | class MachODylibReader : public Reader { |
| 538 | public: |
| 539 | MachODylibReader(MachOLinkingContext &ctx) : _ctx(ctx) {} |
| 540 | |
Rui Ueyama | 55f5b2b | 2015-04-04 02:44:36 +0000 | [diff] [blame] | 541 | bool canParse(file_magic magic, const MemoryBuffer &mb) const override { |
Rui Ueyama | 1d51042 | 2014-12-12 07:31:09 +0000 | [diff] [blame] | 542 | switch (magic) { |
Nick Kledzik | 14b5d20 | 2014-10-08 01:48:10 +0000 | [diff] [blame] | 543 | case llvm::sys::fs::file_magic::macho_dynamically_linked_shared_lib: |
| 544 | case llvm::sys::fs::file_magic::macho_dynamically_linked_shared_lib_stub: |
Rui Ueyama | 55f5b2b | 2015-04-04 02:44:36 +0000 | [diff] [blame] | 545 | return mb.getBufferSize() > 32; |
Nick Kledzik | 14b5d20 | 2014-10-08 01:48:10 +0000 | [diff] [blame] | 546 | default: |
Nick Kledzik | cc28bc1 | 2014-05-30 01:13:49 +0000 | [diff] [blame] | 547 | return false; |
Nick Kledzik | 14b5d20 | 2014-10-08 01:48:10 +0000 | [diff] [blame] | 548 | } |
Nick Kledzik | cc28bc1 | 2014-05-30 01:13:49 +0000 | [diff] [blame] | 549 | } |
| 550 | |
Rafael Espindola | dedab91 | 2015-04-24 18:33:50 +0000 | [diff] [blame^] | 551 | ErrorOr<std::unique_ptr<File>> |
| 552 | loadFile(std::unique_ptr<MemoryBuffer> mb, |
| 553 | const Registry ®istry) const override { |
| 554 | std::unique_ptr<File> ret = |
| 555 | llvm::make_unique<MachODylibFile>(std::move(mb), &_ctx); |
| 556 | return std::move(ret); |
Nick Kledzik | cc28bc1 | 2014-05-30 01:13:49 +0000 | [diff] [blame] | 557 | } |
Rui Ueyama | 1d51042 | 2014-12-12 07:31:09 +0000 | [diff] [blame] | 558 | |
Nick Kledzik | cc28bc1 | 2014-05-30 01:13:49 +0000 | [diff] [blame] | 559 | private: |
Nick Kledzik | 8fc67fb | 2014-08-13 23:55:41 +0000 | [diff] [blame] | 560 | MachOLinkingContext &_ctx; |
Nick Kledzik | cc28bc1 | 2014-05-30 01:13:49 +0000 | [diff] [blame] | 561 | }; |
| 562 | |
Nick Kledzik | e34182f | 2013-11-06 21:36:55 +0000 | [diff] [blame] | 563 | } // namespace normalized |
| 564 | } // namespace mach_o |
Nick Kledzik | e555277 | 2013-12-19 21:58:00 +0000 | [diff] [blame] | 565 | |
Nick Kledzik | 8fc67fb | 2014-08-13 23:55:41 +0000 | [diff] [blame] | 566 | void Registry::addSupportMachOObjects(MachOLinkingContext &ctx) { |
Nick Kledzik | 2458bec | 2014-07-16 19:49:02 +0000 | [diff] [blame] | 567 | MachOLinkingContext::Arch arch = ctx.arch(); |
Rui Ueyama | 1d51042 | 2014-12-12 07:31:09 +0000 | [diff] [blame] | 568 | add(std::unique_ptr<Reader>(new mach_o::normalized::MachOObjectReader(ctx))); |
| 569 | add(std::unique_ptr<Reader>(new mach_o::normalized::MachODylibReader(ctx))); |
Shankar Easwaran | a1d3637 | 2015-02-22 23:54:38 +0000 | [diff] [blame] | 570 | addKindTable(Reference::KindNamespace::mach_o, ctx.archHandler().kindArch(), |
Nick Kledzik | 2458bec | 2014-07-16 19:49:02 +0000 | [diff] [blame] | 571 | ctx.archHandler().kindStrings()); |
Nick Kledzik | 6edd722 | 2014-01-11 01:07:43 +0000 | [diff] [blame] | 572 | add(std::unique_ptr<YamlIOTaggedDocumentHandler>( |
Nick Kledzik | 378066c | 2014-06-30 22:57:33 +0000 | [diff] [blame] | 573 | new mach_o::MachOYamlIOTaggedDocumentHandler(arch))); |
Nick Kledzik | e555277 | 2013-12-19 21:58:00 +0000 | [diff] [blame] | 574 | } |
| 575 | |
Nick Kledzik | 14b5d20 | 2014-10-08 01:48:10 +0000 | [diff] [blame] | 576 | |
Nick Kledzik | e34182f | 2013-11-06 21:36:55 +0000 | [diff] [blame] | 577 | } // namespace lld |