blob: 472e0727c33bfc6044952ee0ca429e5ea3a58938 [file] [log] [blame]
Eric Christopher6256b032011-04-22 03:19:48 +00001//===- MachOObjectFile.cpp - Mach-O object file binding ---------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file defines the MachOObjectFile class, which binds the MachOObject
11// class to the generic ObjectFile wrapper.
12//
13//===----------------------------------------------------------------------===//
14
15#include "llvm/ADT/Triple.h"
Owen Andersonf7c93a32011-10-11 17:32:27 +000016#include "llvm/Object/MachO.h"
Eric Christopher6256b032011-04-22 03:19:48 +000017#include "llvm/Object/MachOFormat.h"
Eric Christopher6256b032011-04-22 03:19:48 +000018#include "llvm/Support/MemoryBuffer.h"
19
20#include <cctype>
21#include <cstring>
22#include <limits>
23
24using namespace llvm;
25using namespace object;
26
27namespace llvm {
Owen Andersonf7c93a32011-10-11 17:32:27 +000028namespace object {
Eric Christopher6256b032011-04-22 03:19:48 +000029
Benjamin Kramer0fcab072011-09-08 20:52:17 +000030MachOObjectFile::MachOObjectFile(MemoryBuffer *Object, MachOObject *MOO,
31 error_code &ec)
32 : ObjectFile(Binary::isMachO, Object, ec),
33 MachOObj(MOO),
34 RegisteredStringTable(std::numeric_limits<uint32_t>::max()) {
35 DataRefImpl DRI;
36 DRI.d.a = DRI.d.b = 0;
37 moveToNextSection(DRI);
38 uint32_t LoadCommandCount = MachOObj->getHeader().NumLoadCommands;
39 while (DRI.d.a < LoadCommandCount) {
40 Sections.push_back(DRI);
Benjamin Kramer0fcab072011-09-08 20:52:17 +000041 DRI.d.b++;
42 moveToNextSection(DRI);
43 }
44}
45
46
Eric Christopher6256b032011-04-22 03:19:48 +000047ObjectFile *ObjectFile::createMachOObjectFile(MemoryBuffer *Buffer) {
Michael J. Spencer001c9202011-06-25 17:54:50 +000048 error_code ec;
Eric Christopher6256b032011-04-22 03:19:48 +000049 std::string Err;
50 MachOObject *MachOObj = MachOObject::LoadFromBuffer(Buffer, &Err);
51 if (!MachOObj)
52 return NULL;
Michael J. Spencer001c9202011-06-25 17:54:50 +000053 return new MachOObjectFile(Buffer, MachOObj, ec);
Eric Christopher6256b032011-04-22 03:19:48 +000054}
55
56/*===-- Symbols -----------------------------------------------------------===*/
57
58void MachOObjectFile::moveToNextSymbol(DataRefImpl &DRI) const {
59 uint32_t LoadCommandCount = MachOObj->getHeader().NumLoadCommands;
60 while (DRI.d.a < LoadCommandCount) {
61 LoadCommandInfo LCI = MachOObj->getLoadCommandInfo(DRI.d.a);
62 if (LCI.Command.Type == macho::LCT_Symtab) {
63 InMemoryStruct<macho::SymtabLoadCommand> SymtabLoadCmd;
64 MachOObj->ReadSymtabLoadCommand(LCI, SymtabLoadCmd);
65 if (DRI.d.b < SymtabLoadCmd->NumSymbolTableEntries)
66 return;
67 }
68
69 DRI.d.a++;
70 DRI.d.b = 0;
71 }
72}
73
74void MachOObjectFile::getSymbolTableEntry(DataRefImpl DRI,
75 InMemoryStruct<macho::SymbolTableEntry> &Res) const {
76 InMemoryStruct<macho::SymtabLoadCommand> SymtabLoadCmd;
77 LoadCommandInfo LCI = MachOObj->getLoadCommandInfo(DRI.d.a);
78 MachOObj->ReadSymtabLoadCommand(LCI, SymtabLoadCmd);
79
80 if (RegisteredStringTable != DRI.d.a) {
81 MachOObj->RegisterStringTable(*SymtabLoadCmd);
82 RegisteredStringTable = DRI.d.a;
83 }
84
85 MachOObj->ReadSymbolTableEntry(SymtabLoadCmd->SymbolTableOffset, DRI.d.b,
86 Res);
87}
88
Benjamin Kramer32fb2af2011-07-15 17:32:45 +000089void MachOObjectFile::getSymbol64TableEntry(DataRefImpl DRI,
90 InMemoryStruct<macho::Symbol64TableEntry> &Res) const {
91 InMemoryStruct<macho::SymtabLoadCommand> SymtabLoadCmd;
92 LoadCommandInfo LCI = MachOObj->getLoadCommandInfo(DRI.d.a);
93 MachOObj->ReadSymtabLoadCommand(LCI, SymtabLoadCmd);
94
95 if (RegisteredStringTable != DRI.d.a) {
96 MachOObj->RegisterStringTable(*SymtabLoadCmd);
97 RegisteredStringTable = DRI.d.a;
98 }
99
100 MachOObj->ReadSymbol64TableEntry(SymtabLoadCmd->SymbolTableOffset, DRI.d.b,
101 Res);
102}
103
Eric Christopher6256b032011-04-22 03:19:48 +0000104
Michael J. Spencer25b15772011-06-25 17:55:23 +0000105error_code MachOObjectFile::getSymbolNext(DataRefImpl DRI,
106 SymbolRef &Result) const {
Eric Christopher6256b032011-04-22 03:19:48 +0000107 DRI.d.b++;
108 moveToNextSymbol(DRI);
Michael J. Spencer25b15772011-06-25 17:55:23 +0000109 Result = SymbolRef(DRI, this);
110 return object_error::success;
Eric Christopher6256b032011-04-22 03:19:48 +0000111}
112
Michael J. Spencer25b15772011-06-25 17:55:23 +0000113error_code MachOObjectFile::getSymbolName(DataRefImpl DRI,
114 StringRef &Result) const {
Benjamin Kramer32fb2af2011-07-15 17:32:45 +0000115 if (MachOObj->is64Bit()) {
116 InMemoryStruct<macho::Symbol64TableEntry> Entry;
117 getSymbol64TableEntry(DRI, Entry);
118 Result = MachOObj->getStringAtIndex(Entry->StringIndex);
119 } else {
120 InMemoryStruct<macho::SymbolTableEntry> Entry;
121 getSymbolTableEntry(DRI, Entry);
122 Result = MachOObj->getStringAtIndex(Entry->StringIndex);
123 }
Michael J. Spencer25b15772011-06-25 17:55:23 +0000124 return object_error::success;
Eric Christopher6256b032011-04-22 03:19:48 +0000125}
126
Benjamin Kramerac241fe2011-09-14 01:22:52 +0000127error_code MachOObjectFile::getSymbolOffset(DataRefImpl DRI,
Michael J. Spencer25b15772011-06-25 17:55:23 +0000128 uint64_t &Result) const {
Owen Anderson95f8db42011-10-12 22:37:10 +0000129 uint64_t SectionOffset;
130 uint8_t SectionIndex;
Benjamin Kramer32fb2af2011-07-15 17:32:45 +0000131 if (MachOObj->is64Bit()) {
132 InMemoryStruct<macho::Symbol64TableEntry> Entry;
133 getSymbol64TableEntry(DRI, Entry);
134 Result = Entry->Value;
Owen Anderson95f8db42011-10-12 22:37:10 +0000135 SectionIndex = Entry->SectionIndex;
Benjamin Kramer32fb2af2011-07-15 17:32:45 +0000136 } else {
137 InMemoryStruct<macho::SymbolTableEntry> Entry;
138 getSymbolTableEntry(DRI, Entry);
139 Result = Entry->Value;
Owen Anderson95f8db42011-10-12 22:37:10 +0000140 SectionIndex = Entry->SectionIndex;
Benjamin Kramer32fb2af2011-07-15 17:32:45 +0000141 }
Owen Anderson95f8db42011-10-12 22:37:10 +0000142 getSectionAddress(Sections[SectionIndex-1], SectionOffset);
143 Result -= SectionOffset;
144
Michael J. Spencer25b15772011-06-25 17:55:23 +0000145 return object_error::success;
Eric Christopher6256b032011-04-22 03:19:48 +0000146}
147
Benjamin Kramerac241fe2011-09-14 01:22:52 +0000148error_code MachOObjectFile::getSymbolAddress(DataRefImpl DRI,
149 uint64_t &Result) const {
Benjamin Kramerac241fe2011-09-14 01:22:52 +0000150 if (MachOObj->is64Bit()) {
151 InMemoryStruct<macho::Symbol64TableEntry> Entry;
152 getSymbol64TableEntry(DRI, Entry);
Owen Anderson95f8db42011-10-12 22:37:10 +0000153 Result = Entry->Value;
Benjamin Kramerac241fe2011-09-14 01:22:52 +0000154 } else {
155 InMemoryStruct<macho::SymbolTableEntry> Entry;
156 getSymbolTableEntry(DRI, Entry);
Owen Anderson95f8db42011-10-12 22:37:10 +0000157 Result = Entry->Value;
Benjamin Kramerac241fe2011-09-14 01:22:52 +0000158 }
Benjamin Kramerac241fe2011-09-14 01:22:52 +0000159 return object_error::success;
160}
161
Michael J. Spencer25b15772011-06-25 17:55:23 +0000162error_code MachOObjectFile::getSymbolSize(DataRefImpl DRI,
163 uint64_t &Result) const {
164 Result = UnknownAddressOrSize;
165 return object_error::success;
Eric Christopher6256b032011-04-22 03:19:48 +0000166}
167
Michael J. Spencer25b15772011-06-25 17:55:23 +0000168error_code MachOObjectFile::getSymbolNMTypeChar(DataRefImpl DRI,
169 char &Result) const {
Benjamin Kramer32fb2af2011-07-15 17:32:45 +0000170 uint8_t Type, Flags;
171 if (MachOObj->is64Bit()) {
172 InMemoryStruct<macho::Symbol64TableEntry> Entry;
173 getSymbol64TableEntry(DRI, Entry);
174 Type = Entry->Type;
175 Flags = Entry->Flags;
176 } else {
177 InMemoryStruct<macho::SymbolTableEntry> Entry;
178 getSymbolTableEntry(DRI, Entry);
179 Type = Entry->Type;
180 Flags = Entry->Flags;
181 }
Eric Christopher6256b032011-04-22 03:19:48 +0000182
183 char Char;
Benjamin Kramer32fb2af2011-07-15 17:32:45 +0000184 switch (Type & macho::STF_TypeMask) {
Eric Christopher6256b032011-04-22 03:19:48 +0000185 case macho::STT_Undefined:
186 Char = 'u';
187 break;
188 case macho::STT_Absolute:
189 case macho::STT_Section:
190 Char = 's';
191 break;
192 default:
193 Char = '?';
194 break;
195 }
196
Benjamin Kramer32fb2af2011-07-15 17:32:45 +0000197 if (Flags & (macho::STF_External | macho::STF_PrivateExtern))
Eric Christopher6256b032011-04-22 03:19:48 +0000198 Char = toupper(Char);
Michael J. Spencer25b15772011-06-25 17:55:23 +0000199 Result = Char;
200 return object_error::success;
Eric Christopher6256b032011-04-22 03:19:48 +0000201}
202
Michael J. Spencer25b15772011-06-25 17:55:23 +0000203error_code MachOObjectFile::isSymbolInternal(DataRefImpl DRI,
204 bool &Result) const {
Benjamin Kramer32fb2af2011-07-15 17:32:45 +0000205 if (MachOObj->is64Bit()) {
206 InMemoryStruct<macho::Symbol64TableEntry> Entry;
207 getSymbol64TableEntry(DRI, Entry);
208 Result = Entry->Flags & macho::STF_StabsEntryMask;
209 } else {
210 InMemoryStruct<macho::SymbolTableEntry> Entry;
211 getSymbolTableEntry(DRI, Entry);
212 Result = Entry->Flags & macho::STF_StabsEntryMask;
213 }
Michael J. Spencer25b15772011-06-25 17:55:23 +0000214 return object_error::success;
Eric Christopher6256b032011-04-22 03:19:48 +0000215}
216
Benjamin Kramerac241fe2011-09-14 01:22:52 +0000217error_code MachOObjectFile::isSymbolGlobal(DataRefImpl Symb, bool &Res) const {
218
219 if (MachOObj->is64Bit()) {
220 InMemoryStruct<macho::Symbol64TableEntry> Entry;
221 getSymbol64TableEntry(Symb, Entry);
222 Res = Entry->Type & MachO::NlistMaskExternal;
223 } else {
224 InMemoryStruct<macho::SymbolTableEntry> Entry;
225 getSymbolTableEntry(Symb, Entry);
226 Res = Entry->Type & MachO::NlistMaskExternal;
227 }
228 return object_error::success;
229}
230
Michael J. Spencerc38c36a2011-10-17 23:54:22 +0000231error_code MachOObjectFile::isSymbolWeak(DataRefImpl Symb, bool &Res) const {
232
233 if (MachOObj->is64Bit()) {
234 InMemoryStruct<macho::Symbol64TableEntry> Entry;
235 getSymbol64TableEntry(Symb, Entry);
236 Res = Entry->Flags & (MachO::NListDescWeakRef | MachO::NListDescWeakDef);
237 } else {
238 InMemoryStruct<macho::SymbolTableEntry> Entry;
239 getSymbolTableEntry(Symb, Entry);
240 Res = Entry->Flags & (MachO::NListDescWeakRef | MachO::NListDescWeakDef);
241 }
242 return object_error::success;
243}
244
Michael J. Spencer9b2b8122011-10-17 23:54:46 +0000245error_code MachOObjectFile::isSymbolAbsolute(DataRefImpl Symb, bool &Res) const{
246 uint8_t n_type;
247 if (MachOObj->is64Bit()) {
248 InMemoryStruct<macho::Symbol64TableEntry> Entry;
249 getSymbol64TableEntry(Symb, Entry);
250 n_type = Entry->Type;
251 } else {
252 InMemoryStruct<macho::SymbolTableEntry> Entry;
253 getSymbolTableEntry(Symb, Entry);
254 n_type = Entry->Type;
255 }
256
257 Res = (n_type & MachO::NlistMaskType) == MachO::NListTypeAbsolute;
258 return object_error::success;
259}
260
261error_code MachOObjectFile::getSymbolSection(DataRefImpl Symb,
262 section_iterator &Res) const {
263 uint8_t index;
264 if (MachOObj->is64Bit()) {
265 InMemoryStruct<macho::Symbol64TableEntry> Entry;
266 getSymbol64TableEntry(Symb, Entry);
267 index = Entry->SectionIndex;
268 } else {
269 InMemoryStruct<macho::SymbolTableEntry> Entry;
270 getSymbolTableEntry(Symb, Entry);
271 index = Entry->SectionIndex;
272 }
273
274 if (index == 0)
275 Res = end_sections();
276 else
277 Res = section_iterator(SectionRef(Sections[index], this));
278
279 return object_error::success;
280}
281
Benjamin Kramerac241fe2011-09-14 01:22:52 +0000282error_code MachOObjectFile::getSymbolType(DataRefImpl Symb,
Michael J. Spencer1130a792011-10-17 20:19:29 +0000283 SymbolRef::Type &Res) const {
Benjamin Kramerac241fe2011-09-14 01:22:52 +0000284 uint8_t n_type;
285 if (MachOObj->is64Bit()) {
286 InMemoryStruct<macho::Symbol64TableEntry> Entry;
287 getSymbol64TableEntry(Symb, Entry);
288 n_type = Entry->Type;
289 } else {
290 InMemoryStruct<macho::SymbolTableEntry> Entry;
291 getSymbolTableEntry(Symb, Entry);
292 n_type = Entry->Type;
293 }
294 Res = SymbolRef::ST_Other;
Owen Anderson10a8c622011-10-12 22:23:12 +0000295
296 // If this is a STAB debugging symbol, we can do nothing more.
297 if (n_type & MachO::NlistMaskStab)
298 return object_error::success;
299
Benjamin Kramerac241fe2011-09-14 01:22:52 +0000300 switch (n_type & MachO::NlistMaskType) {
301 case MachO::NListTypeUndefined :
302 Res = SymbolRef::ST_External;
303 break;
304 case MachO::NListTypeSection :
305 Res = SymbolRef::ST_Function;
306 break;
307 }
308 return object_error::success;
309}
310
311
Michael J. Spencer4344b1e2011-10-07 19:25:32 +0000312symbol_iterator MachOObjectFile::begin_symbols() const {
Eric Christopher6256b032011-04-22 03:19:48 +0000313 // DRI.d.a = segment number; DRI.d.b = symbol index.
314 DataRefImpl DRI;
315 DRI.d.a = DRI.d.b = 0;
316 moveToNextSymbol(DRI);
317 return symbol_iterator(SymbolRef(DRI, this));
318}
319
Michael J. Spencer4344b1e2011-10-07 19:25:32 +0000320symbol_iterator MachOObjectFile::end_symbols() const {
Eric Christopher6256b032011-04-22 03:19:48 +0000321 DataRefImpl DRI;
322 DRI.d.a = MachOObj->getHeader().NumLoadCommands;
323 DRI.d.b = 0;
324 return symbol_iterator(SymbolRef(DRI, this));
325}
326
327
328/*===-- Sections ----------------------------------------------------------===*/
329
330void MachOObjectFile::moveToNextSection(DataRefImpl &DRI) const {
331 uint32_t LoadCommandCount = MachOObj->getHeader().NumLoadCommands;
332 while (DRI.d.a < LoadCommandCount) {
333 LoadCommandInfo LCI = MachOObj->getLoadCommandInfo(DRI.d.a);
334 if (LCI.Command.Type == macho::LCT_Segment) {
335 InMemoryStruct<macho::SegmentLoadCommand> SegmentLoadCmd;
336 MachOObj->ReadSegmentLoadCommand(LCI, SegmentLoadCmd);
337 if (DRI.d.b < SegmentLoadCmd->NumSections)
338 return;
339 } else if (LCI.Command.Type == macho::LCT_Segment64) {
340 InMemoryStruct<macho::Segment64LoadCommand> Segment64LoadCmd;
341 MachOObj->ReadSegment64LoadCommand(LCI, Segment64LoadCmd);
342 if (DRI.d.b < Segment64LoadCmd->NumSections)
343 return;
344 }
345
346 DRI.d.a++;
347 DRI.d.b = 0;
348 }
349}
350
Michael J. Spencer25b15772011-06-25 17:55:23 +0000351error_code MachOObjectFile::getSectionNext(DataRefImpl DRI,
352 SectionRef &Result) const {
Eric Christopher6256b032011-04-22 03:19:48 +0000353 DRI.d.b++;
354 moveToNextSection(DRI);
Michael J. Spencer25b15772011-06-25 17:55:23 +0000355 Result = SectionRef(DRI, this);
356 return object_error::success;
Eric Christopher6256b032011-04-22 03:19:48 +0000357}
358
359void
360MachOObjectFile::getSection(DataRefImpl DRI,
361 InMemoryStruct<macho::Section> &Res) const {
362 InMemoryStruct<macho::SegmentLoadCommand> SLC;
363 LoadCommandInfo LCI = MachOObj->getLoadCommandInfo(DRI.d.a);
364 MachOObj->ReadSegmentLoadCommand(LCI, SLC);
365 MachOObj->ReadSection(LCI, DRI.d.b, Res);
366}
367
Michael J. Spencer4344b1e2011-10-07 19:25:32 +0000368std::size_t MachOObjectFile::getSectionIndex(DataRefImpl Sec) const {
369 SectionList::const_iterator loc =
370 std::find(Sections.begin(), Sections.end(), Sec);
371 assert(loc != Sections.end() && "Sec is not a valid section!");
372 return std::distance(Sections.begin(), loc);
373}
374
Benjamin Kramer7d145782011-07-15 00:14:48 +0000375void
376MachOObjectFile::getSection64(DataRefImpl DRI,
377 InMemoryStruct<macho::Section64> &Res) const {
378 InMemoryStruct<macho::Segment64LoadCommand> SLC;
379 LoadCommandInfo LCI = MachOObj->getLoadCommandInfo(DRI.d.a);
380 MachOObj->ReadSegment64LoadCommand(LCI, SLC);
381 MachOObj->ReadSection64(LCI, DRI.d.b, Res);
382}
383
384static bool is64BitLoadCommand(const MachOObject *MachOObj, DataRefImpl DRI) {
385 LoadCommandInfo LCI = MachOObj->getLoadCommandInfo(DRI.d.a);
386 if (LCI.Command.Type == macho::LCT_Segment64)
387 return true;
388 assert(LCI.Command.Type == macho::LCT_Segment && "Unexpected Type.");
389 return false;
390}
391
Michael J. Spencer25b15772011-06-25 17:55:23 +0000392error_code MachOObjectFile::getSectionName(DataRefImpl DRI,
393 StringRef &Result) const {
Benjamin Kramer7d145782011-07-15 00:14:48 +0000394 // FIXME: thread safety.
Michael J. Spencer25b15772011-06-25 17:55:23 +0000395 static char result[34];
Benjamin Kramer7d145782011-07-15 00:14:48 +0000396 if (is64BitLoadCommand(MachOObj, DRI)) {
397 InMemoryStruct<macho::Segment64LoadCommand> SLC;
398 LoadCommandInfo LCI = MachOObj->getLoadCommandInfo(DRI.d.a);
399 MachOObj->ReadSegment64LoadCommand(LCI, SLC);
400 InMemoryStruct<macho::Section64> Sect;
401 MachOObj->ReadSection64(LCI, DRI.d.b, Sect);
402
Benjamin Kramer291e7672011-07-15 00:29:02 +0000403 strcpy(result, Sect->SegmentName);
Benjamin Kramer7d145782011-07-15 00:14:48 +0000404 strcat(result, ",");
405 strcat(result, Sect->Name);
406 } else {
407 InMemoryStruct<macho::SegmentLoadCommand> SLC;
408 LoadCommandInfo LCI = MachOObj->getLoadCommandInfo(DRI.d.a);
409 MachOObj->ReadSegmentLoadCommand(LCI, SLC);
410 InMemoryStruct<macho::Section> Sect;
411 MachOObj->ReadSection(LCI, DRI.d.b, Sect);
412
Benjamin Kramer291e7672011-07-15 00:29:02 +0000413 strcpy(result, Sect->SegmentName);
Benjamin Kramer7d145782011-07-15 00:14:48 +0000414 strcat(result, ",");
415 strcat(result, Sect->Name);
416 }
Michael J. Spencer25b15772011-06-25 17:55:23 +0000417 Result = StringRef(result);
418 return object_error::success;
Eric Christopher6256b032011-04-22 03:19:48 +0000419}
420
Michael J. Spencer25b15772011-06-25 17:55:23 +0000421error_code MachOObjectFile::getSectionAddress(DataRefImpl DRI,
422 uint64_t &Result) const {
Benjamin Kramer7d145782011-07-15 00:14:48 +0000423 if (is64BitLoadCommand(MachOObj, DRI)) {
424 InMemoryStruct<macho::Section64> Sect;
425 getSection64(DRI, Sect);
426 Result = Sect->Address;
427 } else {
428 InMemoryStruct<macho::Section> Sect;
429 getSection(DRI, Sect);
430 Result = Sect->Address;
431 }
Michael J. Spencer25b15772011-06-25 17:55:23 +0000432 return object_error::success;
Eric Christopher6256b032011-04-22 03:19:48 +0000433}
434
Michael J. Spencer25b15772011-06-25 17:55:23 +0000435error_code MachOObjectFile::getSectionSize(DataRefImpl DRI,
436 uint64_t &Result) const {
Benjamin Kramer7d145782011-07-15 00:14:48 +0000437 if (is64BitLoadCommand(MachOObj, DRI)) {
438 InMemoryStruct<macho::Section64> Sect;
439 getSection64(DRI, Sect);
440 Result = Sect->Size;
441 } else {
442 InMemoryStruct<macho::Section> Sect;
443 getSection(DRI, Sect);
444 Result = Sect->Size;
445 }
Michael J. Spencer25b15772011-06-25 17:55:23 +0000446 return object_error::success;
Eric Christopher6256b032011-04-22 03:19:48 +0000447}
448
Michael J. Spencer25b15772011-06-25 17:55:23 +0000449error_code MachOObjectFile::getSectionContents(DataRefImpl DRI,
450 StringRef &Result) const {
Benjamin Kramer7d145782011-07-15 00:14:48 +0000451 if (is64BitLoadCommand(MachOObj, DRI)) {
452 InMemoryStruct<macho::Section64> Sect;
453 getSection64(DRI, Sect);
454 Result = MachOObj->getData(Sect->Offset, Sect->Size);
455 } else {
456 InMemoryStruct<macho::Section> Sect;
457 getSection(DRI, Sect);
458 Result = MachOObj->getData(Sect->Offset, Sect->Size);
459 }
Michael J. Spencer25b15772011-06-25 17:55:23 +0000460 return object_error::success;
Eric Christopher6256b032011-04-22 03:19:48 +0000461}
462
Michael J. Spencere2f2f072011-10-10 21:55:43 +0000463error_code MachOObjectFile::getSectionAlignment(DataRefImpl DRI,
464 uint64_t &Result) const {
465 if (is64BitLoadCommand(MachOObj, DRI)) {
466 InMemoryStruct<macho::Section64> Sect;
467 getSection64(DRI, Sect);
Michael J. Spencer15565ad2011-10-10 23:36:56 +0000468 Result = uint64_t(1) << Sect->Align;
Michael J. Spencere2f2f072011-10-10 21:55:43 +0000469 } else {
470 InMemoryStruct<macho::Section> Sect;
471 getSection(DRI, Sect);
Michael J. Spencer15565ad2011-10-10 23:36:56 +0000472 Result = uint64_t(1) << Sect->Align;
Michael J. Spencere2f2f072011-10-10 21:55:43 +0000473 }
474 return object_error::success;
475}
476
Michael J. Spencer25b15772011-06-25 17:55:23 +0000477error_code MachOObjectFile::isSectionText(DataRefImpl DRI,
478 bool &Result) const {
Benjamin Kramer7d145782011-07-15 00:14:48 +0000479 if (is64BitLoadCommand(MachOObj, DRI)) {
480 InMemoryStruct<macho::Section64> Sect;
481 getSection64(DRI, Sect);
482 Result = !strcmp(Sect->Name, "__text");
483 } else {
484 InMemoryStruct<macho::Section> Sect;
485 getSection(DRI, Sect);
486 Result = !strcmp(Sect->Name, "__text");
487 }
Michael J. Spencer25b15772011-06-25 17:55:23 +0000488 return object_error::success;
Eric Christopher6256b032011-04-22 03:19:48 +0000489}
490
Michael J. Spencer13afc5e2011-09-28 20:57:30 +0000491error_code MachOObjectFile::isSectionData(DataRefImpl DRI,
492 bool &Result) const {
493 // FIXME: Unimplemented.
494 Result = false;
495 return object_error::success;
496}
497
498error_code MachOObjectFile::isSectionBSS(DataRefImpl DRI,
499 bool &Result) const {
500 // FIXME: Unimplemented.
501 Result = false;
502 return object_error::success;
503}
504
Benjamin Kramer07ea23a2011-07-15 18:39:21 +0000505error_code MachOObjectFile::sectionContainsSymbol(DataRefImpl Sec,
506 DataRefImpl Symb,
507 bool &Result) const {
Michael J. Spencer1130a792011-10-17 20:19:29 +0000508 SymbolRef::Type ST;
Owen Andersoncd749882011-10-12 22:21:32 +0000509 getSymbolType(Symb, ST);
510 if (ST == SymbolRef::ST_External) {
511 Result = false;
512 return object_error::success;
513 }
514
515 uint64_t SectBegin, SectEnd;
516 getSectionAddress(Sec, SectBegin);
517 getSectionSize(Sec, SectEnd);
518 SectEnd += SectBegin;
519
Benjamin Kramer07ea23a2011-07-15 18:39:21 +0000520 if (MachOObj->is64Bit()) {
521 InMemoryStruct<macho::Symbol64TableEntry> Entry;
522 getSymbol64TableEntry(Symb, Entry);
Owen Andersoncd749882011-10-12 22:21:32 +0000523 uint64_t SymAddr= Entry->Value;
524 Result = (SymAddr >= SectBegin) && (SymAddr < SectEnd);
Benjamin Kramer07ea23a2011-07-15 18:39:21 +0000525 } else {
526 InMemoryStruct<macho::SymbolTableEntry> Entry;
527 getSymbolTableEntry(Symb, Entry);
Owen Andersoncd749882011-10-12 22:21:32 +0000528 uint64_t SymAddr= Entry->Value;
529 Result = (SymAddr >= SectBegin) && (SymAddr < SectEnd);
Benjamin Kramer07ea23a2011-07-15 18:39:21 +0000530 }
Owen Andersoncd749882011-10-12 22:21:32 +0000531
Benjamin Kramer07ea23a2011-07-15 18:39:21 +0000532 return object_error::success;
533}
534
Michael J. Spencer4344b1e2011-10-07 19:25:32 +0000535relocation_iterator MachOObjectFile::getSectionRelBegin(DataRefImpl Sec) const {
536 DataRefImpl ret;
537 ret.d.a = 0;
538 ret.d.b = getSectionIndex(Sec);
539 return relocation_iterator(RelocationRef(ret, this));
540}
541relocation_iterator MachOObjectFile::getSectionRelEnd(DataRefImpl Sec) const {
542 uint32_t last_reloc;
543 if (is64BitLoadCommand(MachOObj, Sec)) {
544 InMemoryStruct<macho::Section64> Sect;
545 getSection64(Sec, Sect);
546 last_reloc = Sect->NumRelocationTableEntries;
547 } else {
548 InMemoryStruct<macho::Section> Sect;
549 getSection(Sec, Sect);
550 last_reloc = Sect->NumRelocationTableEntries;
551 }
552 DataRefImpl ret;
553 ret.d.a = last_reloc;
554 ret.d.b = getSectionIndex(Sec);
555 return relocation_iterator(RelocationRef(ret, this));
556}
557
558section_iterator MachOObjectFile::begin_sections() const {
Eric Christopher6256b032011-04-22 03:19:48 +0000559 DataRefImpl DRI;
560 DRI.d.a = DRI.d.b = 0;
561 moveToNextSection(DRI);
562 return section_iterator(SectionRef(DRI, this));
563}
564
Michael J. Spencer4344b1e2011-10-07 19:25:32 +0000565section_iterator MachOObjectFile::end_sections() const {
Eric Christopher6256b032011-04-22 03:19:48 +0000566 DataRefImpl DRI;
567 DRI.d.a = MachOObj->getHeader().NumLoadCommands;
568 DRI.d.b = 0;
569 return section_iterator(SectionRef(DRI, this));
570}
571
Benjamin Kramer0fcab072011-09-08 20:52:17 +0000572/*===-- Relocations -------------------------------------------------------===*/
573
574void MachOObjectFile::
575getRelocation(DataRefImpl Rel,
576 InMemoryStruct<macho::RelocationEntry> &Res) const {
577 uint32_t relOffset;
578 if (MachOObj->is64Bit()) {
579 InMemoryStruct<macho::Section64> Sect;
580 getSection64(Sections[Rel.d.b], Sect);
581 relOffset = Sect->RelocationTableOffset;
582 } else {
583 InMemoryStruct<macho::Section> Sect;
584 getSection(Sections[Rel.d.b], Sect);
585 relOffset = Sect->RelocationTableOffset;
586 }
587 MachOObj->ReadRelocationEntry(relOffset, Rel.d.a, Res);
588}
589error_code MachOObjectFile::getRelocationNext(DataRefImpl Rel,
590 RelocationRef &Res) const {
591 ++Rel.d.a;
Benjamin Kramer0fcab072011-09-08 20:52:17 +0000592 Res = RelocationRef(Rel, this);
593 return object_error::success;
594}
595error_code MachOObjectFile::getRelocationAddress(DataRefImpl Rel,
596 uint64_t &Res) const {
597 const uint8_t* sectAddress = base();
598 if (MachOObj->is64Bit()) {
599 InMemoryStruct<macho::Section64> Sect;
600 getSection64(Sections[Rel.d.b], Sect);
601 sectAddress += Sect->Offset;
602 } else {
603 InMemoryStruct<macho::Section> Sect;
604 getSection(Sections[Rel.d.b], Sect);
605 sectAddress += Sect->Offset;
606 }
607 InMemoryStruct<macho::RelocationEntry> RE;
608 getRelocation(Rel, RE);
609 Res = reinterpret_cast<uintptr_t>(sectAddress + RE->Word0);
610 return object_error::success;
611}
612error_code MachOObjectFile::getRelocationSymbol(DataRefImpl Rel,
613 SymbolRef &Res) const {
614 InMemoryStruct<macho::RelocationEntry> RE;
615 getRelocation(Rel, RE);
616 uint32_t SymbolIdx = RE->Word1 & 0xffffff;
617 bool isExtern = (RE->Word1 >> 27) & 1;
618
619 DataRefImpl Sym;
620 Sym.d.a = Sym.d.b = 0;
621 moveToNextSymbol(Sym);
Benjamin Kramer0fcab072011-09-08 20:52:17 +0000622 if (isExtern) {
623 for (unsigned i = 0; i < SymbolIdx; i++) {
624 Sym.d.b++;
625 moveToNextSymbol(Sym);
Nick Lewycky58856ea2011-09-09 00:16:50 +0000626 assert(Sym.d.a < MachOObj->getHeader().NumLoadCommands &&
Benjamin Kramer0fcab072011-09-08 20:52:17 +0000627 "Relocation symbol index out of range!");
628 }
629 }
630 Res = SymbolRef(Sym, this);
631 return object_error::success;
632}
633error_code MachOObjectFile::getRelocationType(DataRefImpl Rel,
634 uint32_t &Res) const {
635 InMemoryStruct<macho::RelocationEntry> RE;
636 getRelocation(Rel, RE);
637 Res = RE->Word1;
638 return object_error::success;
639}
Michael J. Spencer4344b1e2011-10-07 19:25:32 +0000640error_code MachOObjectFile::getRelocationTypeName(DataRefImpl Rel,
641 SmallVectorImpl<char> &Result) const {
642 return object_error::success;
643}
Benjamin Kramer0fcab072011-09-08 20:52:17 +0000644error_code MachOObjectFile::getRelocationAdditionalInfo(DataRefImpl Rel,
645 int64_t &Res) const {
646 InMemoryStruct<macho::RelocationEntry> RE;
647 getRelocation(Rel, RE);
648 bool isExtern = (RE->Word1 >> 27) & 1;
649 Res = 0;
650 if (!isExtern) {
651 const uint8_t* sectAddress = base();
652 if (MachOObj->is64Bit()) {
653 InMemoryStruct<macho::Section64> Sect;
654 getSection64(Sections[Rel.d.b], Sect);
655 sectAddress += Sect->Offset;
656 } else {
657 InMemoryStruct<macho::Section> Sect;
658 getSection(Sections[Rel.d.b], Sect);
659 sectAddress += Sect->Offset;
660 }
661 Res = reinterpret_cast<uintptr_t>(sectAddress);
662 }
663 return object_error::success;
664}
Michael J. Spencer4344b1e2011-10-07 19:25:32 +0000665error_code MachOObjectFile::getRelocationValueString(DataRefImpl Rel,
666 SmallVectorImpl<char> &Result) const {
667 return object_error::success;
Benjamin Kramer0fcab072011-09-08 20:52:17 +0000668}
669
Eric Christopher6256b032011-04-22 03:19:48 +0000670/*===-- Miscellaneous -----------------------------------------------------===*/
671
672uint8_t MachOObjectFile::getBytesInAddress() const {
673 return MachOObj->is64Bit() ? 8 : 4;
674}
675
676StringRef MachOObjectFile::getFileFormatName() const {
677 if (!MachOObj->is64Bit()) {
678 switch (MachOObj->getHeader().CPUType) {
Eric Christopherf4b2f932011-04-22 06:34:01 +0000679 case llvm::MachO::CPUTypeI386:
Eric Christopher9ab1d7f2011-04-22 04:08:58 +0000680 return "Mach-O 32-bit i386";
Eric Christopherf4b2f932011-04-22 06:34:01 +0000681 case llvm::MachO::CPUTypeARM:
Eric Christopher9ab1d7f2011-04-22 04:08:58 +0000682 return "Mach-O arm";
Eric Christopherf4b2f932011-04-22 06:34:01 +0000683 case llvm::MachO::CPUTypePowerPC:
Eric Christopher9ab1d7f2011-04-22 04:08:58 +0000684 return "Mach-O 32-bit ppc";
685 default:
Eric Christopherf4b2f932011-04-22 06:34:01 +0000686 assert((MachOObj->getHeader().CPUType & llvm::MachO::CPUArchABI64) == 0 &&
Eric Christopher9ab1d7f2011-04-22 04:08:58 +0000687 "64-bit object file when we're not 64-bit?");
688 return "Mach-O 32-bit unknown";
Eric Christopher6256b032011-04-22 03:19:48 +0000689 }
690 }
691
692 switch (MachOObj->getHeader().CPUType) {
Eric Christopherf4b2f932011-04-22 06:34:01 +0000693 case llvm::MachO::CPUTypeX86_64:
Eric Christopher9ab1d7f2011-04-22 04:08:58 +0000694 return "Mach-O 64-bit x86-64";
Eric Christopherf4b2f932011-04-22 06:34:01 +0000695 case llvm::MachO::CPUTypePowerPC64:
Eric Christopher9ab1d7f2011-04-22 04:08:58 +0000696 return "Mach-O 64-bit ppc64";
Eric Christopher6256b032011-04-22 03:19:48 +0000697 default:
Eric Christopherf4b2f932011-04-22 06:34:01 +0000698 assert((MachOObj->getHeader().CPUType & llvm::MachO::CPUArchABI64) == 1 &&
Eric Christopher9ab1d7f2011-04-22 04:08:58 +0000699 "32-bit object file when we're 64-bit?");
700 return "Mach-O 64-bit unknown";
Eric Christopher6256b032011-04-22 03:19:48 +0000701 }
702}
703
704unsigned MachOObjectFile::getArch() const {
705 switch (MachOObj->getHeader().CPUType) {
Eric Christopherf4b2f932011-04-22 06:34:01 +0000706 case llvm::MachO::CPUTypeI386:
Eric Christopher6256b032011-04-22 03:19:48 +0000707 return Triple::x86;
Eric Christopherf4b2f932011-04-22 06:34:01 +0000708 case llvm::MachO::CPUTypeX86_64:
Eric Christopher6256b032011-04-22 03:19:48 +0000709 return Triple::x86_64;
Eric Christopherf4b2f932011-04-22 06:34:01 +0000710 case llvm::MachO::CPUTypeARM:
Eric Christopher6256b032011-04-22 03:19:48 +0000711 return Triple::arm;
Eric Christopherf4b2f932011-04-22 06:34:01 +0000712 case llvm::MachO::CPUTypePowerPC:
Eric Christopher6256b032011-04-22 03:19:48 +0000713 return Triple::ppc;
Eric Christopherf4b2f932011-04-22 06:34:01 +0000714 case llvm::MachO::CPUTypePowerPC64:
Eric Christopher6256b032011-04-22 03:19:48 +0000715 return Triple::ppc64;
716 default:
717 return Triple::UnknownArch;
718 }
719}
720
Owen Andersonf7c93a32011-10-11 17:32:27 +0000721} // end namespace object
Eric Christopher6256b032011-04-22 03:19:48 +0000722} // end namespace llvm