blob: 6bd087d01d097b70f137bc5795714e8f12fbe23d [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"
Michael J. Spencerc8a55a62011-11-02 19:33:12 +000016#include "llvm/Support/Endian.h"
Michael J. Spencera51d7d92011-09-27 19:36:55 +000017#include "llvm/Support/MemoryBuffer.h"
18
19using namespace llvm;
20using namespace object;
21
Benjamin Kramere1a44272012-02-22 13:42:11 +000022static const char *Magic = "!<arch>\n";
Michael J. Spencera51d7d92011-09-27 19:36:55 +000023
Michael J. Spenceraaf98ea2011-10-25 22:30:42 +000024static bool isInternalMember(const ArchiveMemberHeader &amh) {
Craig Toppere3298102012-05-24 06:35:32 +000025 static const char *const internals[] = {
Michael J. Spenceraaf98ea2011-10-25 22:30:42 +000026 "/",
Rafael Espindola250bfb12013-06-14 23:25:53 +000027 "//"
Craig Toppere3298102012-05-24 06:35:32 +000028 };
Michael J. Spenceraaf98ea2011-10-25 22:30:42 +000029
30 StringRef name = amh.getName();
31 for (std::size_t i = 0; i < sizeof(internals) / sizeof(*internals); ++i) {
32 if (name == internals[i])
33 return true;
34 }
35 return false;
36}
37
David Blaikie2d24e2a2011-12-20 02:50:00 +000038void Archive::anchor() { }
39
Michael J. Spencera51d7d92011-09-27 19:36:55 +000040error_code Archive::Child::getName(StringRef &Result) const {
41 StringRef name = ToHeader(Data.data())->getName();
42 // Check if it's a special name.
43 if (name[0] == '/') {
44 if (name.size() == 1) { // Linker member.
45 Result = name;
46 return object_error::success;
47 }
48 if (name.size() == 2 && name[1] == '/') { // String table.
49 Result = name;
50 return object_error::success;
51 }
52 // It's a long name.
53 // Get the offset.
Michael J. Spencerbf82b072013-01-10 00:07:38 +000054 std::size_t offset;
Michael J. Spencer7932c412013-01-10 01:05:34 +000055 if (name.substr(1).rtrim(" ").getAsInteger(10, offset))
56 llvm_unreachable("Long name offset is not an integer");
Michael J. Spencera51d7d92011-09-27 19:36:55 +000057 const char *addr = Parent->StringTable->Data.begin()
58 + sizeof(ArchiveMemberHeader)
Michael J. Spencere92800d2013-01-09 22:58:43 +000059 + offset;
Michael J. Spencera51d7d92011-09-27 19:36:55 +000060 // Verify it.
61 if (Parent->StringTable == Parent->end_children()
62 || addr < (Parent->StringTable->Data.begin()
63 + sizeof(ArchiveMemberHeader))
64 || addr > (Parent->StringTable->Data.begin()
65 + sizeof(ArchiveMemberHeader)
66 + Parent->StringTable->getSize()))
67 return object_error::parse_failed;
Shankar Easwaran206252c2012-11-13 18:38:42 +000068
69 // GNU long file names end with a /.
70 if (Parent->kind() == K_GNU) {
71 StringRef::size_type End = StringRef(addr).find('/');
72 Result = StringRef(addr, End);
73 } else {
74 Result = addr;
75 }
Michael J. Spencera51d7d92011-09-27 19:36:55 +000076 return object_error::success;
Michael J. Spenceraaf98ea2011-10-25 22:30:42 +000077 } else if (name.startswith("#1/")) {
Michael J. Spencere92800d2013-01-09 22:58:43 +000078 uint64_t name_size;
Michael J. Spencer7932c412013-01-10 01:05:34 +000079 if (name.substr(3).rtrim(" ").getAsInteger(10, name_size))
80 llvm_unreachable("Long name length is not an ingeter");
81 Result = Data.substr(sizeof(ArchiveMemberHeader), name_size);
Michael J. Spenceraaf98ea2011-10-25 22:30:42 +000082 return object_error::success;
Michael J. Spencera51d7d92011-09-27 19:36:55 +000083 }
84 // It's a simple name.
85 if (name[name.size() - 1] == '/')
86 Result = name.substr(0, name.size() - 1);
87 else
88 Result = name;
89 return object_error::success;
90}
91
Michael J. Spencera51d7d92011-09-27 19:36:55 +000092error_code Archive::Child::getAsBinary(OwningPtr<Binary> &Result) const {
93 OwningPtr<Binary> ret;
Michael J. Spencer0f76e642013-02-03 10:48:50 +000094 OwningPtr<MemoryBuffer> Buff;
95 if (error_code ec = getMemoryBuffer(Buff))
96 return ec;
97 if (error_code ec = createBinary(Buff.take(), ret))
Michael J. Spencera51d7d92011-09-27 19:36:55 +000098 return ec;
99 Result.swap(ret);
100 return object_error::success;
101}
102
103Archive::Archive(MemoryBuffer *source, error_code &ec)
David Meyer6f9489a2012-03-09 20:41:57 +0000104 : Binary(Binary::ID_Archive, source) {
Michael J. Spencera51d7d92011-09-27 19:36:55 +0000105 // Check for sufficient magic.
106 if (!source || source->getBufferSize()
107 < (8 + sizeof(ArchiveMemberHeader) + 2) // Smallest archive.
108 || StringRef(source->getBufferStart(), 8) != Magic) {
109 ec = object_error::invalid_file_type;
110 return;
111 }
112
Michael J. Spencerc8a55a62011-11-02 19:33:12 +0000113 // Get the special members.
114 child_iterator i = begin_children(false);
Michael J. Spencera51d7d92011-09-27 19:36:55 +0000115 child_iterator e = end_children();
Michael J. Spencera51d7d92011-09-27 19:36:55 +0000116
Shankar Easwaran206252c2012-11-13 18:38:42 +0000117 StringRef name;
118 if ((ec = i->getName(name)))
119 return;
Michael J. Spencera51d7d92011-09-27 19:36:55 +0000120
Shankar Easwaran206252c2012-11-13 18:38:42 +0000121 // Below is the pattern that is used to figure out the archive format
122 // GNU archive format
123 // First member : / (points to the symbol table )
124 // Second member : // (may exist, if it exists, points to the string table)
125 // Note : The string table is used if the filename exceeds 15 characters
126 // BSD archive format
127 // First member : __.SYMDEF (points to the symbol table)
128 // There is no string table, if the filename exceeds 15 characters or has a
129 // embedded space, the filename has #1/<size>, The size represents the size
130 // of the filename that needs to be read after the archive header
131 // COFF archive format
132 // First member : /
133 // Second member : / (provides a directory of symbols)
Rui Ueyama891c0cd2013-06-03 00:27:03 +0000134 // Third member : // (may exist, if it exists, contains the string table)
135 // Note: Microsoft PE/COFF Spec 8.3 says that the third member is present
136 // even if the string table is empty. However, lib.exe does not in fact
137 // seem to create the third member if there's no member whose filename
138 // exceeds 15 characters. So the third member is optional.
Shankar Easwaran206252c2012-11-13 18:38:42 +0000139 if (name == "/") {
140 SymbolTable = i;
141 StringTable = e;
142 if (i != e) ++i;
Michael J. Spencerbf82b072013-01-10 00:07:38 +0000143 if (i == e) {
144 ec = object_error::parse_failed;
145 return;
146 }
Shankar Easwaran206252c2012-11-13 18:38:42 +0000147 if ((ec = i->getName(name)))
148 return;
149 if (name[0] != '/') {
150 Format = K_GNU;
151 } else if ((name.size() > 1) && (name == "//")) {
152 Format = K_GNU;
153 StringTable = i;
154 ++i;
Rui Ueyama891c0cd2013-06-03 00:27:03 +0000155 } else {
Shankar Easwaran206252c2012-11-13 18:38:42 +0000156 Format = K_COFF;
157 if (i != e) {
158 SymbolTable = i;
159 ++i;
160 }
161 if (i != e) {
Rui Ueyama891c0cd2013-06-03 00:27:03 +0000162 if ((ec = i->getName(name)))
163 return;
164 if (name == "//")
165 StringTable = i;
Shankar Easwaran206252c2012-11-13 18:38:42 +0000166 }
167 }
168 } else if (name == "__.SYMDEF") {
169 Format = K_BSD;
170 SymbolTable = i;
171 StringTable = e;
172 }
Michael J. Spencera51d7d92011-09-27 19:36:55 +0000173 ec = object_error::success;
174}
175
Michael J. Spenceraaf98ea2011-10-25 22:30:42 +0000176Archive::child_iterator Archive::begin_children(bool skip_internal) const {
Benjamin Kramere1a44272012-02-22 13:42:11 +0000177 const char *Loc = Data->getBufferStart() + strlen(Magic);
Michael J. Spencera51d7d92011-09-27 19:36:55 +0000178 size_t Size = sizeof(ArchiveMemberHeader) +
179 ToHeader(Loc)->getSize();
Michael J. Spenceraaf98ea2011-10-25 22:30:42 +0000180 Child c(this, StringRef(Loc, Size));
181 // Skip internals at the beginning of an archive.
182 if (skip_internal && isInternalMember(*ToHeader(Loc)))
183 return c.getNext();
184 return c;
Michael J. Spencera51d7d92011-09-27 19:36:55 +0000185}
186
Michael J. Spencer58618932011-10-08 00:17:45 +0000187Archive::child_iterator Archive::end_children() const {
Michael J. Spencera51d7d92011-09-27 19:36:55 +0000188 return Child(this, StringRef(0, 0));
189}
Michael J. Spencerc8a55a62011-11-02 19:33:12 +0000190
191error_code Archive::Symbol::getName(StringRef &Result) const {
Michael J. Spencer0f76e642013-02-03 10:48:50 +0000192 Result = StringRef(Parent->SymbolTable->getBuffer().begin() + StringIndex);
Michael J. Spencerc8a55a62011-11-02 19:33:12 +0000193 return object_error::success;
194}
195
196error_code Archive::Symbol::getMember(child_iterator &Result) const {
Michael J. Spencer0f76e642013-02-03 10:48:50 +0000197 const char *Buf = Parent->SymbolTable->getBuffer().begin();
Michael J. Spencer768a7072012-11-14 00:04:13 +0000198 const char *Offsets = Buf + 4;
199 uint32_t Offset = 0;
Shankar Easwaran206252c2012-11-13 18:38:42 +0000200 if (Parent->kind() == K_GNU) {
Michael J. Spencer768a7072012-11-14 00:04:13 +0000201 Offset = *(reinterpret_cast<const support::ubig32_t*>(Offsets)
202 + SymbolIndex);
Shankar Easwaran206252c2012-11-13 18:38:42 +0000203 } else if (Parent->kind() == K_BSD) {
Matt Beaumont-Gay7af4b9b2012-11-14 17:58:11 +0000204 llvm_unreachable("BSD format is not supported");
Shankar Easwaran206252c2012-11-13 18:38:42 +0000205 } else {
Michael J. Spencer768a7072012-11-14 00:04:13 +0000206 uint32_t MemberCount = *reinterpret_cast<const support::ulittle32_t*>(Buf);
207
208 // Skip offsets.
209 Buf += sizeof(support::ulittle32_t)
210 + (MemberCount * sizeof(support::ulittle32_t));
211
212 uint32_t SymbolCount = *reinterpret_cast<const support::ulittle32_t*>(Buf);
213
214 if (SymbolIndex >= SymbolCount)
215 return object_error::parse_failed;
216
Matt Beaumont-Gayf1c2a6b2012-11-14 00:21:27 +0000217 // Skip SymbolCount to get to the indices table.
218 const char *Indices = Buf + sizeof(support::ulittle32_t);
Michael J. Spencer768a7072012-11-14 00:04:13 +0000219
220 // Get the index of the offset in the file member offset table for this
221 // symbol.
222 uint16_t OffsetIndex =
Matt Beaumont-Gayf1c2a6b2012-11-14 00:21:27 +0000223 *(reinterpret_cast<const support::ulittle16_t*>(Indices)
Shankar Easwaran206252c2012-11-13 18:38:42 +0000224 + SymbolIndex);
Michael J. Spencer768a7072012-11-14 00:04:13 +0000225 // Subtract 1 since OffsetIndex is 1 based.
226 --OffsetIndex;
227
228 if (OffsetIndex >= MemberCount)
229 return object_error::parse_failed;
230
231 Offset = *(reinterpret_cast<const support::ulittle32_t*>(Offsets)
232 + OffsetIndex);
Shankar Easwaran206252c2012-11-13 18:38:42 +0000233 }
Michael J. Spencerc8a55a62011-11-02 19:33:12 +0000234
Michael J. Spencer768a7072012-11-14 00:04:13 +0000235 const char *Loc = Parent->getData().begin() + Offset;
Michael J. Spencerc8a55a62011-11-02 19:33:12 +0000236 size_t Size = sizeof(ArchiveMemberHeader) +
237 ToHeader(Loc)->getSize();
238 Result = Child(Parent, StringRef(Loc, Size));
239
240 return object_error::success;
241}
242
243Archive::Symbol Archive::Symbol::getNext() const {
244 Symbol t(*this);
Benjamin Kramerefd2d5e2011-11-04 13:52:17 +0000245 // Go to one past next null.
246 t.StringIndex =
Michael J. Spencer0f76e642013-02-03 10:48:50 +0000247 Parent->SymbolTable->getBuffer().find('\0', t.StringIndex) + 1;
Michael J. Spencerc8a55a62011-11-02 19:33:12 +0000248 ++t.SymbolIndex;
249 return t;
250}
251
252Archive::symbol_iterator Archive::begin_symbols() const {
Michael J. Spencer0f76e642013-02-03 10:48:50 +0000253 const char *buf = SymbolTable->getBuffer().begin();
Shankar Easwaran206252c2012-11-13 18:38:42 +0000254 if (kind() == K_GNU) {
255 uint32_t symbol_count = 0;
256 symbol_count = *reinterpret_cast<const support::ubig32_t*>(buf);
257 buf += sizeof(uint32_t) + (symbol_count * (sizeof(uint32_t)));
258 } else if (kind() == K_BSD) {
Matt Beaumont-Gay7af4b9b2012-11-14 17:58:11 +0000259 llvm_unreachable("BSD archive format is not supported");
Shankar Easwaran206252c2012-11-13 18:38:42 +0000260 } else {
261 uint32_t member_count = 0;
262 uint32_t symbol_count = 0;
263 member_count = *reinterpret_cast<const support::ulittle32_t*>(buf);
264 buf += 4 + (member_count * 4); // Skip offsets.
265 symbol_count = *reinterpret_cast<const support::ulittle32_t*>(buf);
266 buf += 4 + (symbol_count * 2); // Skip indices.
267 }
Michael J. Spencer0f76e642013-02-03 10:48:50 +0000268 uint32_t string_start_offset = buf - SymbolTable->getBuffer().begin();
Michael J. Spencerc8a55a62011-11-02 19:33:12 +0000269 return symbol_iterator(Symbol(this, 0, string_start_offset));
270}
271
272Archive::symbol_iterator Archive::end_symbols() const {
Michael J. Spencer0f76e642013-02-03 10:48:50 +0000273 const char *buf = SymbolTable->getBuffer().begin();
Shankar Easwaran206252c2012-11-13 18:38:42 +0000274 uint32_t symbol_count = 0;
275 if (kind() == K_GNU) {
276 symbol_count = *reinterpret_cast<const support::ubig32_t*>(buf);
277 buf += sizeof(uint32_t) + (symbol_count * (sizeof(uint32_t)));
278 } else if (kind() == K_BSD) {
Matt Beaumont-Gay7af4b9b2012-11-14 17:58:11 +0000279 llvm_unreachable("BSD archive format is not supported");
Shankar Easwaran206252c2012-11-13 18:38:42 +0000280 } else {
281 uint32_t member_count = 0;
282 member_count = *reinterpret_cast<const support::ulittle32_t*>(buf);
283 buf += 4 + (member_count * 4); // Skip offsets.
284 symbol_count = *reinterpret_cast<const support::ulittle32_t*>(buf);
285 }
Michael J. Spencerc8a55a62011-11-02 19:33:12 +0000286 return symbol_iterator(
287 Symbol(this, symbol_count, 0));
288}
Shankar Easwaran206252c2012-11-13 18:38:42 +0000289
290Archive::child_iterator Archive::findSym(StringRef name) const {
291 Archive::symbol_iterator bs = begin_symbols();
292 Archive::symbol_iterator es = end_symbols();
293 Archive::child_iterator result;
294
295 StringRef symname;
296 for (; bs != es; ++bs) {
297 if (bs->getName(symname))
298 return end_children();
299 if (symname == name) {
300 if (bs->getMember(result))
301 return end_children();
302 return result;
303 }
304 }
305 return end_children();
306}