blob: c8a9692423767e52ba3d6e7e9a1452847922fcc6 [file] [log] [blame]
Michael J. Spencera51d7d92011-09-27 19:36:55 +00001//===- Archive.cpp - ar File Format implementation --------------*- 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 ArchiveObjectFile class.
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/Object/Archive.h"
15#include "llvm/ADT/APInt.h"
Rafael Espindola5263d0a2013-07-09 03:39:35 +000016#include "llvm/ADT/SmallString.h"
17#include "llvm/ADT/Twine.h"
Michael J. Spencerc8a55a62011-11-02 19:33:12 +000018#include "llvm/Support/Endian.h"
Michael J. Spencera51d7d92011-09-27 19:36:55 +000019#include "llvm/Support/MemoryBuffer.h"
20
21using namespace llvm;
22using namespace object;
23
Benjamin Kramere1a44272012-02-22 13:42:11 +000024static const char *Magic = "!<arch>\n";
Michael J. Spencera51d7d92011-09-27 19:36:55 +000025
Michael J. Spenceraaf98ea2011-10-25 22:30:42 +000026static bool isInternalMember(const ArchiveMemberHeader &amh) {
Craig Toppere3298102012-05-24 06:35:32 +000027 static const char *const internals[] = {
Michael J. Spenceraaf98ea2011-10-25 22:30:42 +000028 "/",
Rafael Espindola250bfb12013-06-14 23:25:53 +000029 "//"
Craig Toppere3298102012-05-24 06:35:32 +000030 };
Michael J. Spenceraaf98ea2011-10-25 22:30:42 +000031
32 StringRef name = amh.getName();
33 for (std::size_t i = 0; i < sizeof(internals) / sizeof(*internals); ++i) {
34 if (name == internals[i])
35 return true;
36 }
37 return false;
38}
39
David Blaikie2d24e2a2011-12-20 02:50:00 +000040void Archive::anchor() { }
41
Rafael Espindola5263d0a2013-07-09 03:39:35 +000042StringRef ArchiveMemberHeader::getName() const {
43 char EndCond;
44 if (Name[0] == '/' || Name[0] == '#')
45 EndCond = ' ';
46 else
47 EndCond = '/';
48 llvm::StringRef::size_type end =
49 llvm::StringRef(Name, sizeof(Name)).find(EndCond);
50 if (end == llvm::StringRef::npos)
51 end = sizeof(Name);
52 assert(end <= sizeof(Name) && end > 0);
53 // Don't include the EndCond if there is one.
54 return llvm::StringRef(Name, end);
55}
56
57uint64_t ArchiveMemberHeader::getSize() const {
58 uint64_t ret;
59 if (llvm::StringRef(Size, sizeof(Size)).rtrim(" ").getAsInteger(10, ret))
60 llvm_unreachable("Size is not an integer.");
61 return ret;
62}
63
Rafael Espindolabe6b9102013-07-09 05:26:25 +000064Archive::Child::Child(const Archive *Parent, const char *Start)
65 : Parent(Parent) {
66 if (!Start)
Rafael Espindola5263d0a2013-07-09 03:39:35 +000067 return;
Rafael Espindolabe6b9102013-07-09 05:26:25 +000068
69 const ArchiveMemberHeader *Header = ToHeader(Start);
70 Data = StringRef(Start, sizeof(ArchiveMemberHeader) + Header->getSize());
71
Rafael Espindola5263d0a2013-07-09 03:39:35 +000072 // Setup StartOfFile and PaddingBytes.
73 StartOfFile = sizeof(ArchiveMemberHeader);
74 // Don't include attached name.
Rafael Espindolabe6b9102013-07-09 05:26:25 +000075 StringRef Name = Header->getName();
Rafael Espindola5263d0a2013-07-09 03:39:35 +000076 if (Name.startswith("#1/")) {
77 uint64_t NameSize;
78 if (Name.substr(3).rtrim(" ").getAsInteger(10, NameSize))
79 llvm_unreachable("Long name length is not an integer");
80 StartOfFile += NameSize;
81 }
82}
83
84Archive::Child Archive::Child::getNext() const {
85 size_t SpaceToSkip = Data.size();
86 // If it's odd, add 1 to make it even.
87 if (SpaceToSkip & 1)
88 ++SpaceToSkip;
89
90 const char *NextLoc = Data.data() + SpaceToSkip;
91
92 // Check to see if this is past the end of the archive.
93 if (NextLoc >= Parent->Data->getBufferEnd())
Rafael Espindolabe6b9102013-07-09 05:26:25 +000094 return Child(Parent, NULL);
Rafael Espindola5263d0a2013-07-09 03:39:35 +000095
Rafael Espindolabe6b9102013-07-09 05:26:25 +000096 return Child(Parent, NextLoc);
Rafael Espindola5263d0a2013-07-09 03:39:35 +000097}
98
Michael J. Spencera51d7d92011-09-27 19:36:55 +000099error_code Archive::Child::getName(StringRef &Result) const {
Rafael Espindola4a0bf542013-07-05 03:35:15 +0000100 StringRef name = getRawName();
Michael J. Spencera51d7d92011-09-27 19:36:55 +0000101 // Check if it's a special name.
102 if (name[0] == '/') {
103 if (name.size() == 1) { // Linker member.
104 Result = name;
105 return object_error::success;
106 }
107 if (name.size() == 2 && name[1] == '/') { // String table.
108 Result = name;
109 return object_error::success;
110 }
111 // It's a long name.
112 // Get the offset.
Michael J. Spencerbf82b072013-01-10 00:07:38 +0000113 std::size_t offset;
Michael J. Spencer7932c412013-01-10 01:05:34 +0000114 if (name.substr(1).rtrim(" ").getAsInteger(10, offset))
115 llvm_unreachable("Long name offset is not an integer");
Michael J. Spencera51d7d92011-09-27 19:36:55 +0000116 const char *addr = Parent->StringTable->Data.begin()
117 + sizeof(ArchiveMemberHeader)
Michael J. Spencere92800d2013-01-09 22:58:43 +0000118 + offset;
Michael J. Spencera51d7d92011-09-27 19:36:55 +0000119 // Verify it.
120 if (Parent->StringTable == Parent->end_children()
121 || addr < (Parent->StringTable->Data.begin()
122 + sizeof(ArchiveMemberHeader))
123 || addr > (Parent->StringTable->Data.begin()
124 + sizeof(ArchiveMemberHeader)
125 + Parent->StringTable->getSize()))
126 return object_error::parse_failed;
Shankar Easwaran206252c2012-11-13 18:38:42 +0000127
128 // GNU long file names end with a /.
129 if (Parent->kind() == K_GNU) {
130 StringRef::size_type End = StringRef(addr).find('/');
131 Result = StringRef(addr, End);
132 } else {
133 Result = addr;
134 }
Michael J. Spencera51d7d92011-09-27 19:36:55 +0000135 return object_error::success;
Michael J. Spenceraaf98ea2011-10-25 22:30:42 +0000136 } else if (name.startswith("#1/")) {
Michael J. Spencere92800d2013-01-09 22:58:43 +0000137 uint64_t name_size;
Michael J. Spencer7932c412013-01-10 01:05:34 +0000138 if (name.substr(3).rtrim(" ").getAsInteger(10, name_size))
139 llvm_unreachable("Long name length is not an ingeter");
140 Result = Data.substr(sizeof(ArchiveMemberHeader), name_size);
Michael J. Spenceraaf98ea2011-10-25 22:30:42 +0000141 return object_error::success;
Michael J. Spencera51d7d92011-09-27 19:36:55 +0000142 }
143 // It's a simple name.
144 if (name[name.size() - 1] == '/')
145 Result = name.substr(0, name.size() - 1);
146 else
147 Result = name;
148 return object_error::success;
149}
150
Rafael Espindola5263d0a2013-07-09 03:39:35 +0000151error_code Archive::Child::getMemoryBuffer(OwningPtr<MemoryBuffer> &Result,
152 bool FullPath) const {
153 StringRef Name;
154 if (error_code ec = getName(Name))
155 return ec;
156 SmallString<128> Path;
157 Result.reset(MemoryBuffer::getMemBuffer(
158 getBuffer(), FullPath ? (Twine(Parent->getFileName()) + "(" + Name + ")")
159 .toStringRef(Path)
160 : Name,
161 false));
162 return error_code::success();
163}
164
Michael J. Spencera51d7d92011-09-27 19:36:55 +0000165error_code Archive::Child::getAsBinary(OwningPtr<Binary> &Result) const {
166 OwningPtr<Binary> ret;
Michael J. Spencer0f76e642013-02-03 10:48:50 +0000167 OwningPtr<MemoryBuffer> Buff;
168 if (error_code ec = getMemoryBuffer(Buff))
169 return ec;
170 if (error_code ec = createBinary(Buff.take(), ret))
Michael J. Spencera51d7d92011-09-27 19:36:55 +0000171 return ec;
172 Result.swap(ret);
173 return object_error::success;
174}
175
176Archive::Archive(MemoryBuffer *source, error_code &ec)
David Meyer6f9489a2012-03-09 20:41:57 +0000177 : Binary(Binary::ID_Archive, source) {
Michael J. Spencera51d7d92011-09-27 19:36:55 +0000178 // Check for sufficient magic.
179 if (!source || source->getBufferSize()
Rafael Espindola6d88f9b2013-07-04 19:40:23 +0000180 < (8 + sizeof(ArchiveMemberHeader)) // Smallest archive.
Michael J. Spencera51d7d92011-09-27 19:36:55 +0000181 || StringRef(source->getBufferStart(), 8) != Magic) {
182 ec = object_error::invalid_file_type;
183 return;
184 }
185
Michael J. Spencerc8a55a62011-11-02 19:33:12 +0000186 // Get the special members.
187 child_iterator i = begin_children(false);
Michael J. Spencera51d7d92011-09-27 19:36:55 +0000188 child_iterator e = end_children();
Michael J. Spencera51d7d92011-09-27 19:36:55 +0000189
Rafael Espindola09a7f602013-07-03 15:57:14 +0000190 if (i == e) {
191 ec = object_error::parse_failed;
192 return;
193 }
194
Rafael Espindola4a0bf542013-07-05 03:35:15 +0000195 StringRef Name = i->getRawName();
Michael J. Spencera51d7d92011-09-27 19:36:55 +0000196
Shankar Easwaran206252c2012-11-13 18:38:42 +0000197 // Below is the pattern that is used to figure out the archive format
198 // GNU archive format
Rafael Espindola09a7f602013-07-03 15:57:14 +0000199 // First member : / (may exist, if it exists, points to the symbol table )
Shankar Easwaran206252c2012-11-13 18:38:42 +0000200 // Second member : // (may exist, if it exists, points to the string table)
201 // Note : The string table is used if the filename exceeds 15 characters
202 // BSD archive format
203 // First member : __.SYMDEF (points to the symbol table)
204 // There is no string table, if the filename exceeds 15 characters or has a
205 // embedded space, the filename has #1/<size>, The size represents the size
206 // of the filename that needs to be read after the archive header
207 // COFF archive format
208 // First member : /
209 // Second member : / (provides a directory of symbols)
Rui Ueyama891c0cd2013-06-03 00:27:03 +0000210 // Third member : // (may exist, if it exists, contains the string table)
211 // Note: Microsoft PE/COFF Spec 8.3 says that the third member is present
212 // even if the string table is empty. However, lib.exe does not in fact
213 // seem to create the third member if there's no member whose filename
214 // exceeds 15 characters. So the third member is optional.
Rafael Espindola09a7f602013-07-03 15:57:14 +0000215
Rafael Espindola4a0bf542013-07-05 03:35:15 +0000216 if (Name == "__.SYMDEF") {
Rafael Espindola09a7f602013-07-03 15:57:14 +0000217 Format = K_BSD;
218 SymbolTable = i;
219 ec = object_error::success;
220 return;
221 }
222
Rafael Espindola4a0bf542013-07-05 03:35:15 +0000223 if (Name == "/") {
Shankar Easwaran206252c2012-11-13 18:38:42 +0000224 SymbolTable = i;
Rafael Espindola09a7f602013-07-03 15:57:14 +0000225
226 ++i;
Michael J. Spencerbf82b072013-01-10 00:07:38 +0000227 if (i == e) {
228 ec = object_error::parse_failed;
229 return;
230 }
Rafael Espindola4a0bf542013-07-05 03:35:15 +0000231 Name = i->getRawName();
Rafael Espindola09a7f602013-07-03 15:57:14 +0000232 }
233
Rafael Espindola4a0bf542013-07-05 03:35:15 +0000234 if (Name == "//") {
Rafael Espindola09a7f602013-07-03 15:57:14 +0000235 Format = K_GNU;
236 StringTable = i;
237 ec = object_error::success;
238 return;
239 }
240
Rafael Espindola4a0bf542013-07-05 03:35:15 +0000241 if (Name[0] != '/') {
Rafael Espindola09a7f602013-07-03 15:57:14 +0000242 Format = K_GNU;
243 ec = object_error::success;
244 return;
245 }
246
Rafael Espindola4a0bf542013-07-05 03:35:15 +0000247 if (Name != "/") {
Rafael Espindola09a7f602013-07-03 15:57:14 +0000248 ec = object_error::parse_failed;
249 return;
250 }
251
252 Format = K_COFF;
253 SymbolTable = i;
254
255 ++i;
256 if (i == e) {
257 ec = object_error::success;
258 return;
259 }
260
Rafael Espindola4a0bf542013-07-05 03:35:15 +0000261 Name = i->getRawName();
Rafael Espindola09a7f602013-07-03 15:57:14 +0000262
Rafael Espindola4a0bf542013-07-05 03:35:15 +0000263 if (Name == "//")
Rafael Espindola09a7f602013-07-03 15:57:14 +0000264 StringTable = i;
265
Michael J. Spencera51d7d92011-09-27 19:36:55 +0000266 ec = object_error::success;
267}
268
Michael J. Spenceraaf98ea2011-10-25 22:30:42 +0000269Archive::child_iterator Archive::begin_children(bool skip_internal) const {
Benjamin Kramere1a44272012-02-22 13:42:11 +0000270 const char *Loc = Data->getBufferStart() + strlen(Magic);
Rafael Espindolabe6b9102013-07-09 05:26:25 +0000271 Child c(this, Loc);
Michael J. Spenceraaf98ea2011-10-25 22:30:42 +0000272 // Skip internals at the beginning of an archive.
273 if (skip_internal && isInternalMember(*ToHeader(Loc)))
274 return c.getNext();
275 return c;
Michael J. Spencera51d7d92011-09-27 19:36:55 +0000276}
277
Michael J. Spencer58618932011-10-08 00:17:45 +0000278Archive::child_iterator Archive::end_children() const {
Rafael Espindolabe6b9102013-07-09 05:26:25 +0000279 return Child(this, NULL);
Michael J. Spencera51d7d92011-09-27 19:36:55 +0000280}
Michael J. Spencerc8a55a62011-11-02 19:33:12 +0000281
282error_code Archive::Symbol::getName(StringRef &Result) const {
Michael J. Spencer0f76e642013-02-03 10:48:50 +0000283 Result = StringRef(Parent->SymbolTable->getBuffer().begin() + StringIndex);
Michael J. Spencerc8a55a62011-11-02 19:33:12 +0000284 return object_error::success;
285}
286
287error_code Archive::Symbol::getMember(child_iterator &Result) const {
Michael J. Spencer0f76e642013-02-03 10:48:50 +0000288 const char *Buf = Parent->SymbolTable->getBuffer().begin();
Michael J. Spencer768a7072012-11-14 00:04:13 +0000289 const char *Offsets = Buf + 4;
290 uint32_t Offset = 0;
Shankar Easwaran206252c2012-11-13 18:38:42 +0000291 if (Parent->kind() == K_GNU) {
Michael J. Spencer768a7072012-11-14 00:04:13 +0000292 Offset = *(reinterpret_cast<const support::ubig32_t*>(Offsets)
293 + SymbolIndex);
Shankar Easwaran206252c2012-11-13 18:38:42 +0000294 } else if (Parent->kind() == K_BSD) {
Matt Beaumont-Gay7af4b9b2012-11-14 17:58:11 +0000295 llvm_unreachable("BSD format is not supported");
Shankar Easwaran206252c2012-11-13 18:38:42 +0000296 } else {
Michael J. Spencer768a7072012-11-14 00:04:13 +0000297 uint32_t MemberCount = *reinterpret_cast<const support::ulittle32_t*>(Buf);
298
299 // Skip offsets.
300 Buf += sizeof(support::ulittle32_t)
301 + (MemberCount * sizeof(support::ulittle32_t));
302
303 uint32_t SymbolCount = *reinterpret_cast<const support::ulittle32_t*>(Buf);
304
305 if (SymbolIndex >= SymbolCount)
306 return object_error::parse_failed;
307
Matt Beaumont-Gayf1c2a6b2012-11-14 00:21:27 +0000308 // Skip SymbolCount to get to the indices table.
309 const char *Indices = Buf + sizeof(support::ulittle32_t);
Michael J. Spencer768a7072012-11-14 00:04:13 +0000310
311 // Get the index of the offset in the file member offset table for this
312 // symbol.
313 uint16_t OffsetIndex =
Matt Beaumont-Gayf1c2a6b2012-11-14 00:21:27 +0000314 *(reinterpret_cast<const support::ulittle16_t*>(Indices)
Shankar Easwaran206252c2012-11-13 18:38:42 +0000315 + SymbolIndex);
Michael J. Spencer768a7072012-11-14 00:04:13 +0000316 // Subtract 1 since OffsetIndex is 1 based.
317 --OffsetIndex;
318
319 if (OffsetIndex >= MemberCount)
320 return object_error::parse_failed;
321
322 Offset = *(reinterpret_cast<const support::ulittle32_t*>(Offsets)
323 + OffsetIndex);
Shankar Easwaran206252c2012-11-13 18:38:42 +0000324 }
Michael J. Spencerc8a55a62011-11-02 19:33:12 +0000325
Michael J. Spencer768a7072012-11-14 00:04:13 +0000326 const char *Loc = Parent->getData().begin() + Offset;
Rafael Espindolabe6b9102013-07-09 05:26:25 +0000327 Result = Child(Parent, Loc);
Michael J. Spencerc8a55a62011-11-02 19:33:12 +0000328
329 return object_error::success;
330}
331
332Archive::Symbol Archive::Symbol::getNext() const {
333 Symbol t(*this);
Benjamin Kramerefd2d5e2011-11-04 13:52:17 +0000334 // Go to one past next null.
335 t.StringIndex =
Michael J. Spencer0f76e642013-02-03 10:48:50 +0000336 Parent->SymbolTable->getBuffer().find('\0', t.StringIndex) + 1;
Michael J. Spencerc8a55a62011-11-02 19:33:12 +0000337 ++t.SymbolIndex;
338 return t;
339}
340
341Archive::symbol_iterator Archive::begin_symbols() const {
Michael J. Spencer0f76e642013-02-03 10:48:50 +0000342 const char *buf = SymbolTable->getBuffer().begin();
Shankar Easwaran206252c2012-11-13 18:38:42 +0000343 if (kind() == K_GNU) {
344 uint32_t symbol_count = 0;
345 symbol_count = *reinterpret_cast<const support::ubig32_t*>(buf);
346 buf += sizeof(uint32_t) + (symbol_count * (sizeof(uint32_t)));
347 } else if (kind() == K_BSD) {
Matt Beaumont-Gay7af4b9b2012-11-14 17:58:11 +0000348 llvm_unreachable("BSD archive format is not supported");
Shankar Easwaran206252c2012-11-13 18:38:42 +0000349 } else {
350 uint32_t member_count = 0;
351 uint32_t symbol_count = 0;
352 member_count = *reinterpret_cast<const support::ulittle32_t*>(buf);
353 buf += 4 + (member_count * 4); // Skip offsets.
354 symbol_count = *reinterpret_cast<const support::ulittle32_t*>(buf);
355 buf += 4 + (symbol_count * 2); // Skip indices.
356 }
Michael J. Spencer0f76e642013-02-03 10:48:50 +0000357 uint32_t string_start_offset = buf - SymbolTable->getBuffer().begin();
Michael J. Spencerc8a55a62011-11-02 19:33:12 +0000358 return symbol_iterator(Symbol(this, 0, string_start_offset));
359}
360
361Archive::symbol_iterator Archive::end_symbols() const {
Michael J. Spencer0f76e642013-02-03 10:48:50 +0000362 const char *buf = SymbolTable->getBuffer().begin();
Shankar Easwaran206252c2012-11-13 18:38:42 +0000363 uint32_t symbol_count = 0;
364 if (kind() == K_GNU) {
365 symbol_count = *reinterpret_cast<const support::ubig32_t*>(buf);
Shankar Easwaran206252c2012-11-13 18:38:42 +0000366 } else if (kind() == K_BSD) {
Matt Beaumont-Gay7af4b9b2012-11-14 17:58:11 +0000367 llvm_unreachable("BSD archive format is not supported");
Shankar Easwaran206252c2012-11-13 18:38:42 +0000368 } else {
369 uint32_t member_count = 0;
370 member_count = *reinterpret_cast<const support::ulittle32_t*>(buf);
371 buf += 4 + (member_count * 4); // Skip offsets.
372 symbol_count = *reinterpret_cast<const support::ulittle32_t*>(buf);
373 }
Michael J. Spencerc8a55a62011-11-02 19:33:12 +0000374 return symbol_iterator(
375 Symbol(this, symbol_count, 0));
376}
Shankar Easwaran206252c2012-11-13 18:38:42 +0000377
378Archive::child_iterator Archive::findSym(StringRef name) const {
379 Archive::symbol_iterator bs = begin_symbols();
380 Archive::symbol_iterator es = end_symbols();
381 Archive::child_iterator result;
382
383 StringRef symname;
384 for (; bs != es; ++bs) {
385 if (bs->getName(symname))
386 return end_children();
387 if (symname == name) {
388 if (bs->getMember(result))
389 return end_children();
390 return result;
391 }
392 }
393 return end_children();
394}