blob: 2870584cdcfc383f5ff56557a39fdc608f1137c8 [file] [log] [blame]
Michael J. Spencerd3b7b122011-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"
Rafael Espindola747bc072013-07-09 03:39:35 +000015#include "llvm/ADT/SmallString.h"
16#include "llvm/ADT/Twine.h"
Michael J. Spencere03ea9c2011-11-02 19:33:12 +000017#include "llvm/Support/Endian.h"
Michael J. Spencerd3b7b122011-09-27 19:36:55 +000018#include "llvm/Support/MemoryBuffer.h"
Rafael Espindola4b83cb52015-07-14 22:18:43 +000019#include "llvm/Support/Path.h"
Michael J. Spencerd3b7b122011-09-27 19:36:55 +000020
21using namespace llvm;
22using namespace object;
Rui Ueyama3206b792015-03-02 21:19:12 +000023using namespace llvm::support::endian;
Michael J. Spencerd3b7b122011-09-27 19:36:55 +000024
Craig Topperd3a34f82013-07-16 01:17:10 +000025static const char *const Magic = "!<arch>\n";
Rafael Espindola9d102062014-12-16 01:43:41 +000026static const char *const ThinMagic = "!<thin>\n";
Michael J. Spencerd3b7b122011-09-27 19:36:55 +000027
David Blaikiea379b1812011-12-20 02:50:00 +000028void Archive::anchor() { }
29
Kevin Enderby6524bd82016-07-19 20:47:07 +000030static Error
31malformedError(Twine Msg) {
32 std::string StringMsg = "truncated or malformed archive (" + Msg.str() + ")";
33 return make_error<GenericBinaryError>(std::move(StringMsg),
34 object_error::parse_failed);
35}
36
Kevin Enderby95b08422016-07-25 20:36:36 +000037ArchiveMemberHeader::ArchiveMemberHeader(const Archive *Parent,
38 const char *RawHeaderPtr,
39 uint64_t Size, Error *Err)
40 : Parent(Parent),
41 ArMemHdr(reinterpret_cast<const ArMemHdrType *>(RawHeaderPtr)) {
42 if (RawHeaderPtr == nullptr)
43 return;
44 ErrorAsOutParameter ErrAsOutParam(Err);
45
Kevin Enderby95b08422016-07-25 20:36:36 +000046 if (Size < sizeof(ArMemHdrType)) {
47 if (Err) {
Kevin Enderby31b07f12016-07-29 22:32:02 +000048 std::string Msg("remaining size of archive too small for next archive "
49 "member header ");
Kevin Enderbyf4586032016-07-29 17:44:13 +000050 Expected<StringRef> NameOrErr = getName(Size);
51 if (!NameOrErr) {
52 consumeError(NameOrErr.takeError());
53 uint64_t Offset = RawHeaderPtr - Parent->getData().data();
54 *Err = malformedError(Msg + "at offset " + Twine(Offset));
55 } else
Kevin Enderby31b07f12016-07-29 22:32:02 +000056 *Err = malformedError(Msg + "for " + NameOrErr.get());
Kevin Enderby95b08422016-07-25 20:36:36 +000057 }
58 return;
59 }
60 if (ArMemHdr->Terminator[0] != '`' || ArMemHdr->Terminator[1] != '\n') {
61 if (Err) {
62 std::string Buf;
63 raw_string_ostream OS(Buf);
64 OS.write_escaped(llvm::StringRef(ArMemHdr->Terminator,
65 sizeof(ArMemHdr->Terminator)));
66 OS.flush();
Kevin Enderby31b07f12016-07-29 22:32:02 +000067 std::string Msg("terminator characters in archive member \"" + Buf +
68 "\" not the correct \"`\\n\" values for the archive "
69 "member header ");
Kevin Enderbyf4586032016-07-29 17:44:13 +000070 Expected<StringRef> NameOrErr = getName(Size);
71 if (!NameOrErr) {
72 consumeError(NameOrErr.takeError());
73 uint64_t Offset = RawHeaderPtr - Parent->getData().data();
74 *Err = malformedError(Msg + "at offset " + Twine(Offset));
75 } else
Kevin Enderby31b07f12016-07-29 22:32:02 +000076 *Err = malformedError(Msg + "for " + NameOrErr.get());
Kevin Enderby95b08422016-07-25 20:36:36 +000077 }
78 return;
79 }
80}
81
Kevin Enderbyf4586032016-07-29 17:44:13 +000082// This gets the raw name from the ArMemHdr->Name field and checks that it is
83// valid for the kind of archive. If it is not valid it returns an Error.
84Expected<StringRef> ArchiveMemberHeader::getRawName() const {
Rafael Espindola747bc072013-07-09 03:39:35 +000085 char EndCond;
Kevin Enderbyf4586032016-07-29 17:44:13 +000086 auto Kind = Parent->kind();
87 if (Kind == Archive::K_BSD || Kind == Archive::K_DARWIN64) {
88 if (ArMemHdr->Name[0] == ' ') {
89 uint64_t Offset = reinterpret_cast<const char *>(ArMemHdr) -
90 Parent->getData().data();
91 return malformedError("name contains a leading space for archive member "
92 "header at offset " + Twine(Offset));
93 }
94 EndCond = ' ';
95 }
96 else if (ArMemHdr->Name[0] == '/' || ArMemHdr->Name[0] == '#')
Rafael Espindola747bc072013-07-09 03:39:35 +000097 EndCond = ' ';
98 else
99 EndCond = '/';
100 llvm::StringRef::size_type end =
Kevin Enderby95b08422016-07-25 20:36:36 +0000101 llvm::StringRef(ArMemHdr->Name, sizeof(ArMemHdr->Name)).find(EndCond);
Rafael Espindola747bc072013-07-09 03:39:35 +0000102 if (end == llvm::StringRef::npos)
Kevin Enderby95b08422016-07-25 20:36:36 +0000103 end = sizeof(ArMemHdr->Name);
104 assert(end <= sizeof(ArMemHdr->Name) && end > 0);
Rafael Espindola747bc072013-07-09 03:39:35 +0000105 // Don't include the EndCond if there is one.
Kevin Enderby95b08422016-07-25 20:36:36 +0000106 return llvm::StringRef(ArMemHdr->Name, end);
Rafael Espindola747bc072013-07-09 03:39:35 +0000107}
108
Kevin Enderbyf4586032016-07-29 17:44:13 +0000109// This gets the name looking up long names. Size is the size of the archive
110// member including the header, so the size of any name following the header
111// is checked to make sure it does not overflow.
112Expected<StringRef> ArchiveMemberHeader::getName(uint64_t Size) const {
113
114 // This can be called from the ArchiveMemberHeader constructor when the
115 // archive header is truncated to produce an error message with the name.
116 // Make sure the name field is not truncated.
117 if (Size < offsetof(ArMemHdrType, Name) + sizeof(ArMemHdr->Name)) {
118 uint64_t ArchiveOffset = reinterpret_cast<const char *>(ArMemHdr) -
119 Parent->getData().data();
120 return malformedError("archive header truncated before the name field "
121 "for archive member header at offset " +
122 Twine(ArchiveOffset));
123 }
124
125 // The raw name itself can be invalid.
126 Expected<StringRef> NameOrErr = getRawName();
127 if (!NameOrErr)
128 return NameOrErr.takeError();
129 StringRef Name = NameOrErr.get();
130
131 // Check if it's a special name.
132 if (Name[0] == '/') {
133 if (Name.size() == 1) // Linker member.
134 return Name;
135 if (Name.size() == 2 && Name[1] == '/') // String table.
136 return Name;
137 // It's a long name.
138 // Get the string table offset.
139 std::size_t StringOffset;
140 if (Name.substr(1).rtrim(' ').getAsInteger(10, StringOffset)) {
141 std::string Buf;
142 raw_string_ostream OS(Buf);
Kevin Enderby31b07f12016-07-29 22:32:02 +0000143 OS.write_escaped(Name.substr(1).rtrim(' '));
Kevin Enderbyf4586032016-07-29 17:44:13 +0000144 OS.flush();
145 uint64_t ArchiveOffset = reinterpret_cast<const char *>(ArMemHdr) -
146 Parent->getData().data();
147 return malformedError("long name offset characters after the '/' are "
148 "not all decimal numbers: '" + Buf + "' for "
149 "archive member header at offset " +
150 Twine(ArchiveOffset));
151 }
152
153 // Verify it.
154 if (StringOffset >= Parent->getStringTable().size()) {
155 uint64_t ArchiveOffset = reinterpret_cast<const char *>(ArMemHdr) -
156 Parent->getData().data();
157 return malformedError("long name offset " + Twine(StringOffset) + " past "
158 "the end of the string table for archive member "
159 "header at offset " + Twine(ArchiveOffset));
160 }
161 const char *addr = Parent->getStringTable().begin() + StringOffset;
162
163 // GNU long file names end with a "/\n".
164 if (Parent->kind() == Archive::K_GNU ||
165 Parent->kind() == Archive::K_MIPS64) {
166 StringRef::size_type End = StringRef(addr).find('\n');
167 return StringRef(addr, End - 1);
168 }
David Blaikiecd842ec2016-08-01 21:50:43 +0000169 return addr;
170 }
171
172 if (Name.startswith("#1/")) {
Kevin Enderbyf4586032016-07-29 17:44:13 +0000173 uint64_t NameLength;
174 if (Name.substr(3).rtrim(' ').getAsInteger(10, NameLength)) {
175 std::string Buf;
176 raw_string_ostream OS(Buf);
Kevin Enderby31b07f12016-07-29 22:32:02 +0000177 OS.write_escaped(Name.substr(3).rtrim(' '));
Kevin Enderbyf4586032016-07-29 17:44:13 +0000178 OS.flush();
179 uint64_t ArchiveOffset = reinterpret_cast<const char *>(ArMemHdr) -
180 Parent->getData().data();
181 return malformedError("long name length characters after the #1/ are "
182 "not all decimal numbers: '" + Buf + "' for "
183 "archive member header at offset " +
184 Twine(ArchiveOffset));
185 }
186 if (getSizeOf() + NameLength > Size) {
187 uint64_t ArchiveOffset = reinterpret_cast<const char *>(ArMemHdr) -
188 Parent->getData().data();
189 return malformedError("long name length: " + Twine(NameLength) +
190 " extends past the end of the member or archive "
191 "for archive member header at offset " +
192 Twine(ArchiveOffset));
193 }
194 return StringRef(reinterpret_cast<const char *>(ArMemHdr) + getSizeOf(),
195 NameLength).rtrim('\0');
Kevin Enderbyf4586032016-07-29 17:44:13 +0000196 }
David Blaikiecd842ec2016-08-01 21:50:43 +0000197
198 // It is not a long name so trim the blanks at the end of the name.
199 if (Name[Name.size() - 1] != '/')
200 return Name.rtrim(' ');
201
Kevin Enderbyf4586032016-07-29 17:44:13 +0000202 // It's a simple name.
David Blaikiecd842ec2016-08-01 21:50:43 +0000203 return Name.drop_back(1);
Kevin Enderbyf4586032016-07-29 17:44:13 +0000204}
205
Kevin Enderby6524bd82016-07-19 20:47:07 +0000206Expected<uint32_t> ArchiveMemberHeader::getSize() const {
Rafael Espindola8e9385e2013-07-09 12:45:11 +0000207 uint32_t Ret;
Kevin Enderby95b08422016-07-25 20:36:36 +0000208 if (llvm::StringRef(ArMemHdr->Size,
209 sizeof(ArMemHdr->Size)).rtrim(" ").getAsInteger(10, Ret)) {
Kevin Enderby6524bd82016-07-19 20:47:07 +0000210 std::string Buf;
211 raw_string_ostream OS(Buf);
Kevin Enderby95b08422016-07-25 20:36:36 +0000212 OS.write_escaped(llvm::StringRef(ArMemHdr->Size,
213 sizeof(ArMemHdr->Size)).rtrim(" "));
Kevin Enderby6524bd82016-07-19 20:47:07 +0000214 OS.flush();
Kevin Enderby95b08422016-07-25 20:36:36 +0000215 uint64_t Offset = reinterpret_cast<const char *>(ArMemHdr) -
216 Parent->getData().data();
Kevin Enderby6524bd82016-07-19 20:47:07 +0000217 return malformedError("characters in size field in archive header are not "
Kevin Enderby95b08422016-07-25 20:36:36 +0000218 "all decimal numbers: '" + Buf + "' for archive "
219 "member header at offset " + Twine(Offset));
Kevin Enderby6524bd82016-07-19 20:47:07 +0000220 }
Rafael Espindola8e9385e2013-07-09 12:45:11 +0000221 return Ret;
Rafael Espindola747bc072013-07-09 03:39:35 +0000222}
223
Vedant Kumar4031d9f2016-08-03 19:02:50 +0000224Expected<sys::fs::perms> ArchiveMemberHeader::getAccessMode() const {
Rafael Espindola8115e1d2013-07-09 12:49:24 +0000225 unsigned Ret;
Kevin Enderby95b08422016-07-25 20:36:36 +0000226 if (StringRef(ArMemHdr->AccessMode,
Vedant Kumar4031d9f2016-08-03 19:02:50 +0000227 sizeof(ArMemHdr->AccessMode)).rtrim(' ').getAsInteger(8, Ret)) {
228 std::string Buf;
229 raw_string_ostream OS(Buf);
230 OS.write_escaped(llvm::StringRef(ArMemHdr->AccessMode,
231 sizeof(ArMemHdr->AccessMode)).rtrim(" "));
232 OS.flush();
233 uint64_t Offset = reinterpret_cast<const char *>(ArMemHdr) -
234 Parent->getData().data();
235 return malformedError("characters in AccessMode field in archive header "
236 "are not all decimal numbers: '" + Buf + "' for the "
237 "archive member header at offset " + Twine(Offset));
238 }
Rafael Espindola8115e1d2013-07-09 12:49:24 +0000239 return static_cast<sys::fs::perms>(Ret);
240}
241
Vedant Kumar4031d9f2016-08-03 19:02:50 +0000242Expected<sys::TimeValue> ArchiveMemberHeader::getLastModified() const {
Rafael Espindola8115e1d2013-07-09 12:49:24 +0000243 unsigned Seconds;
Kevin Enderby95b08422016-07-25 20:36:36 +0000244 if (StringRef(ArMemHdr->LastModified,
245 sizeof(ArMemHdr->LastModified)).rtrim(' ')
Vedant Kumar4031d9f2016-08-03 19:02:50 +0000246 .getAsInteger(10, Seconds)) {
247 std::string Buf;
248 raw_string_ostream OS(Buf);
249 OS.write_escaped(llvm::StringRef(ArMemHdr->LastModified,
250 sizeof(ArMemHdr->LastModified)).rtrim(" "));
251 OS.flush();
252 uint64_t Offset = reinterpret_cast<const char *>(ArMemHdr) -
253 Parent->getData().data();
254 return malformedError("characters in LastModified field in archive header "
255 "are not all decimal numbers: '" + Buf + "' for the "
256 "archive member header at offset " + Twine(Offset));
257 }
Rafael Espindola8115e1d2013-07-09 12:49:24 +0000258
259 sys::TimeValue Ret;
260 Ret.fromEpochTime(Seconds);
261 return Ret;
262}
263
Vedant Kumar4031d9f2016-08-03 19:02:50 +0000264Expected<unsigned> ArchiveMemberHeader::getUID() const {
Rafael Espindola8115e1d2013-07-09 12:49:24 +0000265 unsigned Ret;
Kevin Enderby95b08422016-07-25 20:36:36 +0000266 StringRef User = StringRef(ArMemHdr->UID, sizeof(ArMemHdr->UID)).rtrim(' ');
Saleem Abdulrasoolaecbdf72016-07-05 00:23:05 +0000267 if (User.empty())
268 return 0;
Vedant Kumar4031d9f2016-08-03 19:02:50 +0000269 if (User.getAsInteger(10, Ret)) {
270 std::string Buf;
271 raw_string_ostream OS(Buf);
272 OS.write_escaped(User);
273 OS.flush();
274 uint64_t Offset = reinterpret_cast<const char *>(ArMemHdr) -
275 Parent->getData().data();
276 return malformedError("characters in UID field in archive header "
277 "are not all decimal numbers: '" + Buf + "' for the "
278 "archive member header at offset " + Twine(Offset));
279 }
Rafael Espindola8115e1d2013-07-09 12:49:24 +0000280 return Ret;
281}
282
Vedant Kumar4031d9f2016-08-03 19:02:50 +0000283Expected<unsigned> ArchiveMemberHeader::getGID() const {
Rafael Espindola8115e1d2013-07-09 12:49:24 +0000284 unsigned Ret;
Kevin Enderby95b08422016-07-25 20:36:36 +0000285 StringRef Group = StringRef(ArMemHdr->GID, sizeof(ArMemHdr->GID)).rtrim(' ');
Saleem Abdulrasoolaecbdf72016-07-05 00:23:05 +0000286 if (Group.empty())
287 return 0;
Vedant Kumar4031d9f2016-08-03 19:02:50 +0000288 if (Group.getAsInteger(10, Ret)) {
289 std::string Buf;
290 raw_string_ostream OS(Buf);
291 OS.write_escaped(Group);
292 OS.flush();
293 uint64_t Offset = reinterpret_cast<const char *>(ArMemHdr) -
294 Parent->getData().data();
295 return malformedError("characters in GID field in archive header "
296 "are not all decimal numbers: '" + Buf + "' for the "
297 "archive member header at offset " + Twine(Offset));
298 }
Rafael Espindola8115e1d2013-07-09 12:49:24 +0000299 return Ret;
300}
301
Rafael Espindola43358762015-10-31 21:44:42 +0000302Archive::Child::Child(const Archive *Parent, StringRef Data,
303 uint16_t StartOfFile)
Kevin Enderby95b08422016-07-25 20:36:36 +0000304 : Parent(Parent), Header(Parent, Data.data(), Data.size(), nullptr),
305 Data(Data), StartOfFile(StartOfFile) {
306}
Rafael Espindola43358762015-10-31 21:44:42 +0000307
Kevin Enderby6524bd82016-07-19 20:47:07 +0000308Archive::Child::Child(const Archive *Parent, const char *Start, Error *Err)
Kevin Enderby95b08422016-07-25 20:36:36 +0000309 : Parent(Parent), Header(Parent, Start, Parent->getData().size() -
310 (Start - Parent->getData().data()), Err) {
Rafael Espindola0f3de642013-07-09 05:26:25 +0000311 if (!Start)
Rafael Espindola747bc072013-07-09 03:39:35 +0000312 return;
Kevin Enderby2c182702016-08-04 21:54:19 +0000313
314 // If we are pointed to real data, Start is not a nullptr, then there must be
315 // a non-null Err pointer available to report malformed data on. Only in
316 // the case sentinel value is being constructed is Err is permitted to be a
317 // nullptr.
318 assert(Err && "Err can't be nullptr if Start is not a nullptr");
319
Lang Hames5e51a2e2016-07-22 16:11:25 +0000320 ErrorAsOutParameter ErrAsOutParam(Err);
Rafael Espindola0f3de642013-07-09 05:26:25 +0000321
Kevin Enderby2c182702016-08-04 21:54:19 +0000322 // If there was an error in the construction of the Header
323 // then just return with the error now set.
324 if (*Err)
Kevin Enderby95b08422016-07-25 20:36:36 +0000325 return;
326
327 uint64_t Size = Header.getSizeOf();
Rafael Espindola9d102062014-12-16 01:43:41 +0000328 Data = StringRef(Start, Size);
Kevin Enderbyf4586032016-07-29 17:44:13 +0000329 Expected<bool> isThinOrErr = isThinMember();
330 if (!isThinOrErr) {
Kevin Enderby2c182702016-08-04 21:54:19 +0000331 *Err = isThinOrErr.takeError();
Kevin Enderbyf4586032016-07-29 17:44:13 +0000332 return;
333 }
334 bool isThin = isThinOrErr.get();
335 if (!isThin) {
Kevin Enderby6524bd82016-07-19 20:47:07 +0000336 Expected<uint64_t> MemberSize = getRawSize();
337 if (!MemberSize) {
Kevin Enderby2c182702016-08-04 21:54:19 +0000338 *Err = MemberSize.takeError();
Kevin Enderby7a969422015-11-05 19:24:56 +0000339 return;
Kevin Enderby6524bd82016-07-19 20:47:07 +0000340 }
Kevin Enderby7a969422015-11-05 19:24:56 +0000341 Size += MemberSize.get();
Rafael Espindolabe9ab262015-07-22 19:34:26 +0000342 Data = StringRef(Start, Size);
343 }
Rafael Espindola0f3de642013-07-09 05:26:25 +0000344
Rafael Espindola747bc072013-07-09 03:39:35 +0000345 // Setup StartOfFile and PaddingBytes.
Kevin Enderby95b08422016-07-25 20:36:36 +0000346 StartOfFile = Header.getSizeOf();
Rafael Espindola747bc072013-07-09 03:39:35 +0000347 // Don't include attached name.
Kevin Enderbyf4586032016-07-29 17:44:13 +0000348 Expected<StringRef> NameOrErr = getRawName();
349 if (!NameOrErr){
Kevin Enderby2c182702016-08-04 21:54:19 +0000350 *Err = NameOrErr.takeError();
Kevin Enderbyf4586032016-07-29 17:44:13 +0000351 return;
352 }
353 StringRef Name = NameOrErr.get();
Rafael Espindola747bc072013-07-09 03:39:35 +0000354 if (Name.startswith("#1/")) {
355 uint64_t NameSize;
Kevin Enderbyf4586032016-07-29 17:44:13 +0000356 if (Name.substr(3).rtrim(' ').getAsInteger(10, NameSize)) {
Kevin Enderby2c182702016-08-04 21:54:19 +0000357 std::string Buf;
358 raw_string_ostream OS(Buf);
359 OS.write_escaped(Name.substr(3).rtrim(' '));
360 OS.flush();
361 uint64_t Offset = Start - Parent->getData().data();
362 *Err = malformedError("long name length characters after the #1/ are "
363 "not all decimal numbers: '" + Buf + "' for "
364 "archive member header at offset " +
365 Twine(Offset));
366 return;
Kevin Enderbyf4586032016-07-29 17:44:13 +0000367 }
Rafael Espindola747bc072013-07-09 03:39:35 +0000368 StartOfFile += NameSize;
369 }
370}
371
Kevin Enderby6524bd82016-07-19 20:47:07 +0000372Expected<uint64_t> Archive::Child::getSize() const {
Kevin Enderby1c1add42015-10-13 20:48:04 +0000373 if (Parent->IsThin) {
Kevin Enderby95b08422016-07-25 20:36:36 +0000374 Expected<uint32_t> Size = Header.getSize();
Kevin Enderby6524bd82016-07-19 20:47:07 +0000375 if (!Size)
376 return Size.takeError();
Kevin Enderby1c1add42015-10-13 20:48:04 +0000377 return Size.get();
378 }
Rafael Espindola9d102062014-12-16 01:43:41 +0000379 return Data.size() - StartOfFile;
380}
381
Kevin Enderby6524bd82016-07-19 20:47:07 +0000382Expected<uint64_t> Archive::Child::getRawSize() const {
Kevin Enderby95b08422016-07-25 20:36:36 +0000383 return Header.getSize();
Kevin Enderby13023a12015-01-15 23:19:11 +0000384}
385
Kevin Enderbyf4586032016-07-29 17:44:13 +0000386Expected<bool> Archive::Child::isThinMember() const {
387 Expected<StringRef> NameOrErr = Header.getRawName();
388 if (!NameOrErr)
389 return NameOrErr.takeError();
390 StringRef Name = NameOrErr.get();
Rafael Espindolabe9ab262015-07-22 19:34:26 +0000391 return Parent->IsThin && Name != "/" && Name != "//";
392}
393
Kevin Enderby27e85bd2016-08-03 21:57:47 +0000394Expected<std::string> Archive::Child::getFullName() const {
Kevin Enderbyf4586032016-07-29 17:44:13 +0000395 Expected<bool> isThin = isThinMember();
396 if (!isThin)
Kevin Enderby27e85bd2016-08-03 21:57:47 +0000397 return isThin.takeError();
Kevin Enderbyf4586032016-07-29 17:44:13 +0000398 assert(isThin.get());
399 Expected<StringRef> NameOrErr = getName();
400 if (!NameOrErr)
Kevin Enderby27e85bd2016-08-03 21:57:47 +0000401 return NameOrErr.takeError();
Rafael Espindola694210c2016-05-02 13:45:06 +0000402 StringRef Name = *NameOrErr;
403 if (sys::path::is_absolute(Name))
404 return Name;
405
406 SmallString<128> FullName = sys::path::parent_path(
407 Parent->getMemoryBufferRef().getBufferIdentifier());
408 sys::path::append(FullName, Name);
409 return StringRef(FullName);
410}
411
Kevin Enderby27e85bd2016-08-03 21:57:47 +0000412Expected<StringRef> Archive::Child::getBuffer() const {
Kevin Enderbyf4586032016-07-29 17:44:13 +0000413 Expected<bool> isThinOrErr = isThinMember();
414 if (!isThinOrErr)
Kevin Enderby27e85bd2016-08-03 21:57:47 +0000415 return isThinOrErr.takeError();
Kevin Enderbyf4586032016-07-29 17:44:13 +0000416 bool isThin = isThinOrErr.get();
417 if (!isThin) {
Kevin Enderby6524bd82016-07-19 20:47:07 +0000418 Expected<uint32_t> Size = getSize();
419 if (!Size)
Kevin Enderby27e85bd2016-08-03 21:57:47 +0000420 return Size.takeError();
Kevin Enderby7a969422015-11-05 19:24:56 +0000421 return StringRef(Data.data() + StartOfFile, Size.get());
422 }
Kevin Enderby27e85bd2016-08-03 21:57:47 +0000423 Expected<std::string> FullNameOrErr = getFullName();
424 if (!FullNameOrErr)
425 return FullNameOrErr.takeError();
426 const std::string &FullName = *FullNameOrErr;
Rafael Espindola4b83cb52015-07-14 22:18:43 +0000427 ErrorOr<std::unique_ptr<MemoryBuffer>> Buf = MemoryBuffer::getFile(FullName);
428 if (std::error_code EC = Buf.getError())
Kevin Enderby27e85bd2016-08-03 21:57:47 +0000429 return errorCodeToError(EC);
Rafael Espindola4b83cb52015-07-14 22:18:43 +0000430 Parent->ThinBuffers.push_back(std::move(*Buf));
431 return Parent->ThinBuffers.back()->getBuffer();
432}
433
Kevin Enderby6524bd82016-07-19 20:47:07 +0000434Expected<Archive::Child> Archive::Child::getNext() const {
Rafael Espindola747bc072013-07-09 03:39:35 +0000435 size_t SpaceToSkip = Data.size();
436 // If it's odd, add 1 to make it even.
437 if (SpaceToSkip & 1)
Kevin Enderbyda9dd052015-10-21 17:13:20 +0000438 ++SpaceToSkip;
Rafael Espindola747bc072013-07-09 03:39:35 +0000439
Kevin Enderbyda9dd052015-10-21 17:13:20 +0000440 const char *NextLoc = Data.data() + SpaceToSkip;
Rafael Espindola747bc072013-07-09 03:39:35 +0000441
Kevin Enderby7a969422015-11-05 19:24:56 +0000442 // Check to see if this is at the end of the archive.
443 if (NextLoc == Parent->Data.getBufferEnd())
444 return Child(Parent, nullptr, nullptr);
Rafael Espindola747bc072013-07-09 03:39:35 +0000445
Kevin Enderby7a969422015-11-05 19:24:56 +0000446 // Check to see if this is past the end of the archive.
Kevin Enderby95b08422016-07-25 20:36:36 +0000447 if (NextLoc > Parent->Data.getBufferEnd()) {
Kevin Enderby31b07f12016-07-29 22:32:02 +0000448 std::string Msg("offset to next archive member past the end of the archive "
449 "after member ");
Kevin Enderbyf4586032016-07-29 17:44:13 +0000450 Expected<StringRef> NameOrErr = getName();
451 if (!NameOrErr) {
452 consumeError(NameOrErr.takeError());
Kevin Enderby95b08422016-07-25 20:36:36 +0000453 uint64_t Offset = Data.data() - Parent->getData().data();
454 return malformedError(Msg + "at offset " + Twine(Offset));
455 } else
Kevin Enderby31b07f12016-07-29 22:32:02 +0000456 return malformedError(Msg + NameOrErr.get());
Kevin Enderby95b08422016-07-25 20:36:36 +0000457 }
Kevin Enderby7a969422015-11-05 19:24:56 +0000458
Kevin Enderby6524bd82016-07-19 20:47:07 +0000459 Error Err;
460 Child Ret(Parent, NextLoc, &Err);
461 if (Err)
462 return std::move(Err);
Kevin Enderby7a969422015-11-05 19:24:56 +0000463 return Ret;
Rafael Espindola747bc072013-07-09 03:39:35 +0000464}
465
Kevin Enderby13023a12015-01-15 23:19:11 +0000466uint64_t Archive::Child::getChildOffset() const {
467 const char *a = Parent->Data.getBuffer().data();
468 const char *c = Data.data();
469 uint64_t offset = c - a;
470 return offset;
471}
472
Kevin Enderbyf4586032016-07-29 17:44:13 +0000473Expected<StringRef> Archive::Child::getName() const {
474 Expected<uint64_t> RawSizeOrErr = getRawSize();
475 if (!RawSizeOrErr)
476 return RawSizeOrErr.takeError();
477 uint64_t RawSize = RawSizeOrErr.get();
478 Expected<StringRef> NameOrErr = Header.getName(Header.getSizeOf() + RawSize);
479 if (!NameOrErr)
480 return NameOrErr.takeError();
481 StringRef Name = NameOrErr.get();
482 return Name;
Michael J. Spencerd3b7b122011-09-27 19:36:55 +0000483}
484
Kevin Enderbyf4586032016-07-29 17:44:13 +0000485Expected<MemoryBufferRef> Archive::Child::getMemoryBufferRef() const {
486 Expected<StringRef> NameOrErr = getName();
487 if (!NameOrErr)
488 return NameOrErr.takeError();
Rafael Espindolaae460022014-06-16 16:08:36 +0000489 StringRef Name = NameOrErr.get();
Kevin Enderby27e85bd2016-08-03 21:57:47 +0000490 Expected<StringRef> Buf = getBuffer();
491 if (!Buf)
492 return Buf.takeError();
Rafael Espindola4b83cb52015-07-14 22:18:43 +0000493 return MemoryBufferRef(*Buf, Name);
Rafael Espindolaae460022014-06-16 16:08:36 +0000494}
495
Kevin Enderbyac9e1552016-05-17 17:10:12 +0000496Expected<std::unique_ptr<Binary>>
Rafael Espindolaae460022014-06-16 16:08:36 +0000497Archive::Child::getAsBinary(LLVMContext *Context) const {
Kevin Enderbyf4586032016-07-29 17:44:13 +0000498 Expected<MemoryBufferRef> BuffOrErr = getMemoryBufferRef();
499 if (!BuffOrErr)
500 return BuffOrErr.takeError();
Rafael Espindolac3f9b5a2014-06-23 21:53:12 +0000501
Kevin Enderby3fcdf6a2016-04-06 22:14:09 +0000502 auto BinaryOrErr = createBinary(BuffOrErr.get(), Context);
503 if (BinaryOrErr)
504 return std::move(*BinaryOrErr);
Kevin Enderbyac9e1552016-05-17 17:10:12 +0000505 return BinaryOrErr.takeError();
Michael J. Spencerd3b7b122011-09-27 19:36:55 +0000506}
507
Kevin Enderbyc60a3212016-06-29 20:35:44 +0000508Expected<std::unique_ptr<Archive>> Archive::create(MemoryBufferRef Source) {
509 Error Err;
510 std::unique_ptr<Archive> Ret(new Archive(Source, Err));
511 if (Err)
512 return std::move(Err);
Rafael Espindolaf5577132014-07-31 03:36:00 +0000513 return std::move(Ret);
Rafael Espindola692410e2014-01-21 23:06:54 +0000514}
515
Rafael Espindola43358762015-10-31 21:44:42 +0000516void Archive::setFirstRegular(const Child &C) {
517 FirstRegularData = C.Data;
518 FirstRegularStartOfFile = C.StartOfFile;
519}
520
Kevin Enderbyc60a3212016-06-29 20:35:44 +0000521Archive::Archive(MemoryBufferRef Source, Error &Err)
Rafael Espindola43358762015-10-31 21:44:42 +0000522 : Binary(Binary::ID_Archive, Source) {
Lang Hames5e51a2e2016-07-22 16:11:25 +0000523 ErrorAsOutParameter ErrAsOutParam(&Err);
Rafael Espindola9d102062014-12-16 01:43:41 +0000524 StringRef Buffer = Data.getBuffer();
Michael J. Spencerd3b7b122011-09-27 19:36:55 +0000525 // Check for sufficient magic.
Rafael Espindola9d102062014-12-16 01:43:41 +0000526 if (Buffer.startswith(ThinMagic)) {
527 IsThin = true;
528 } else if (Buffer.startswith(Magic)) {
529 IsThin = false;
530 } else {
Kevin Enderbyc60a3212016-06-29 20:35:44 +0000531 Err = make_error<GenericBinaryError>("File too small to be an archive",
532 object_error::invalid_file_type);
Michael J. Spencerd3b7b122011-09-27 19:36:55 +0000533 return;
534 }
535
Kevin Enderbyf4586032016-07-29 17:44:13 +0000536 // Make sure Format is initialized before any call to
537 // ArchiveMemberHeader::getName() is made. This could be a valid empty
538 // archive which is the same in all formats. So claiming it to be gnu to is
539 // fine if not totally correct before we look for a string table or table of
540 // contents.
541 Format = K_GNU;
542
Michael J. Spencere03ea9c2011-11-02 19:33:12 +0000543 // Get the special members.
Lang Hamesfc209622016-07-14 02:24:01 +0000544 child_iterator I = child_begin(Err, false);
545 if (Err)
Kevin Enderby7a969422015-11-05 19:24:56 +0000546 return;
547 child_iterator E = child_end();
Michael J. Spencerd3b7b122011-09-27 19:36:55 +0000548
Kevin Enderbyf4586032016-07-29 17:44:13 +0000549 // See if this is a valid empty archive and if so return.
Kevin Enderby7a969422015-11-05 19:24:56 +0000550 if (I == E) {
Kevin Enderbyc60a3212016-06-29 20:35:44 +0000551 Err = Error::success();
Rafael Espindola88ae7dd2013-07-03 15:57:14 +0000552 return;
553 }
Lang Hamesfc209622016-07-14 02:24:01 +0000554 const Child *C = &*I;
Rafael Espindola88ae7dd2013-07-03 15:57:14 +0000555
Kevin Enderby7a969422015-11-05 19:24:56 +0000556 auto Increment = [&]() {
557 ++I;
Lang Hamesfc209622016-07-14 02:24:01 +0000558 if (Err)
Kevin Enderby7a969422015-11-05 19:24:56 +0000559 return true;
Lang Hamesfc209622016-07-14 02:24:01 +0000560 C = &*I;
Kevin Enderby7a969422015-11-05 19:24:56 +0000561 return false;
562 };
563
Kevin Enderbyf4586032016-07-29 17:44:13 +0000564 Expected<StringRef> NameOrErr = C->getRawName();
565 if (!NameOrErr) {
566 Err = NameOrErr.takeError();
567 return;
568 }
569 StringRef Name = NameOrErr.get();
Michael J. Spencerd3b7b122011-09-27 19:36:55 +0000570
Shankar Easwaran15b28be2012-11-13 18:38:42 +0000571 // Below is the pattern that is used to figure out the archive format
572 // GNU archive format
Rafael Espindola88ae7dd2013-07-03 15:57:14 +0000573 // First member : / (may exist, if it exists, points to the symbol table )
Shankar Easwaran15b28be2012-11-13 18:38:42 +0000574 // Second member : // (may exist, if it exists, points to the string table)
575 // Note : The string table is used if the filename exceeds 15 characters
576 // BSD archive format
Rafael Espindola55509922013-07-10 22:07:59 +0000577 // First member : __.SYMDEF or "__.SYMDEF SORTED" (the symbol table)
578 // There is no string table, if the filename exceeds 15 characters or has a
579 // embedded space, the filename has #1/<size>, The size represents the size
Shankar Easwaran15b28be2012-11-13 18:38:42 +0000580 // of the filename that needs to be read after the archive header
581 // COFF archive format
582 // First member : /
583 // Second member : / (provides a directory of symbols)
Rui Ueyamaf4d0a8c2013-06-03 00:27:03 +0000584 // Third member : // (may exist, if it exists, contains the string table)
585 // Note: Microsoft PE/COFF Spec 8.3 says that the third member is present
586 // even if the string table is empty. However, lib.exe does not in fact
587 // seem to create the third member if there's no member whose filename
588 // exceeds 15 characters. So the third member is optional.
Rafael Espindola88ae7dd2013-07-03 15:57:14 +0000589
Kevin Enderbyae108ff2016-06-17 22:16:06 +0000590 if (Name == "__.SYMDEF" || Name == "__.SYMDEF_64") {
591 if (Name == "__.SYMDEF")
592 Format = K_BSD;
593 else // Name == "__.SYMDEF_64"
594 Format = K_DARWIN64;
Kevin Enderby27e85bd2016-08-03 21:57:47 +0000595 // We know that the symbol table is not an external file, but we still must
596 // check any Expected<> return value.
597 Expected<StringRef> BufOrErr = C->getBuffer();
598 if (!BufOrErr) {
599 Err = BufOrErr.takeError();
600 return;
601 }
602 SymbolTable = BufOrErr.get();
Kevin Enderby7a969422015-11-05 19:24:56 +0000603 if (Increment())
604 return;
605 setFirstRegular(*C);
606
Kevin Enderbyc60a3212016-06-29 20:35:44 +0000607 Err = Error::success();
Rafael Espindola88ae7dd2013-07-03 15:57:14 +0000608 return;
609 }
610
Rafael Espindola55509922013-07-10 22:07:59 +0000611 if (Name.startswith("#1/")) {
612 Format = K_BSD;
613 // We know this is BSD, so getName will work since there is no string table.
Kevin Enderbyf4586032016-07-29 17:44:13 +0000614 Expected<StringRef> NameOrErr = C->getName();
615 if (!NameOrErr) {
616 Err = NameOrErr.takeError();
Rafael Espindola55509922013-07-10 22:07:59 +0000617 return;
Kevin Enderbyc60a3212016-06-29 20:35:44 +0000618 }
Rafael Espindolaae460022014-06-16 16:08:36 +0000619 Name = NameOrErr.get();
Nick Kledzikf44dbda2014-11-12 01:37:45 +0000620 if (Name == "__.SYMDEF SORTED" || Name == "__.SYMDEF") {
Kevin Enderby27e85bd2016-08-03 21:57:47 +0000621 // We know that the symbol table is not an external file, but we still
622 // must check any Expected<> return value.
623 Expected<StringRef> BufOrErr = C->getBuffer();
624 if (!BufOrErr) {
625 Err = BufOrErr.takeError();
626 return;
627 }
628 SymbolTable = BufOrErr.get();
Kevin Enderby7a969422015-11-05 19:24:56 +0000629 if (Increment())
630 return;
Rafael Espindola3e2b21c2013-07-12 20:21:39 +0000631 }
Kevin Enderbyae108ff2016-06-17 22:16:06 +0000632 else if (Name == "__.SYMDEF_64 SORTED" || Name == "__.SYMDEF_64") {
633 Format = K_DARWIN64;
Kevin Enderby27e85bd2016-08-03 21:57:47 +0000634 // We know that the symbol table is not an external file, but we still
635 // must check any Expected<> return value.
636 Expected<StringRef> BufOrErr = C->getBuffer();
637 if (!BufOrErr) {
638 Err = BufOrErr.takeError();
639 return;
640 }
641 SymbolTable = BufOrErr.get();
Kevin Enderbyae108ff2016-06-17 22:16:06 +0000642 if (Increment())
643 return;
644 }
Kevin Enderby7a969422015-11-05 19:24:56 +0000645 setFirstRegular(*C);
Rafael Espindola55509922013-07-10 22:07:59 +0000646 return;
647 }
648
Simon Atanasyan1d902b72015-02-17 18:54:22 +0000649 // MIPS 64-bit ELF archives use a special format of a symbol table.
650 // This format is marked by `ar_name` field equals to "/SYM64/".
651 // For detailed description see page 96 in the following document:
652 // http://techpubs.sgi.com/library/manuals/4000/007-4658-001/pdf/007-4658-001.pdf
653
654 bool has64SymTable = false;
655 if (Name == "/" || Name == "/SYM64/") {
Kevin Enderby27e85bd2016-08-03 21:57:47 +0000656 // We know that the symbol table is not an external file, but we still
657 // must check any Expected<> return value.
658 Expected<StringRef> BufOrErr = C->getBuffer();
659 if (!BufOrErr) {
660 Err = BufOrErr.takeError();
661 return;
662 }
663 SymbolTable = BufOrErr.get();
Simon Atanasyan1d902b72015-02-17 18:54:22 +0000664 if (Name == "/SYM64/")
665 has64SymTable = true;
Rafael Espindola88ae7dd2013-07-03 15:57:14 +0000666
Kevin Enderby7a969422015-11-05 19:24:56 +0000667 if (Increment())
668 return;
669 if (I == E) {
Kevin Enderbyc60a3212016-06-29 20:35:44 +0000670 Err = Error::success();
Michael J. Spencer04614ff2013-01-10 00:07:38 +0000671 return;
672 }
Kevin Enderbyf4586032016-07-29 17:44:13 +0000673 Expected<StringRef> NameOrErr = C->getRawName();
674 if (!NameOrErr) {
675 Err = NameOrErr.takeError();
676 return;
677 }
678 Name = NameOrErr.get();
Rafael Espindola88ae7dd2013-07-03 15:57:14 +0000679 }
680
Rafael Espindola6cc2dc72013-07-05 03:35:15 +0000681 if (Name == "//") {
Simon Atanasyan1d902b72015-02-17 18:54:22 +0000682 Format = has64SymTable ? K_MIPS64 : K_GNU;
Kevin Enderby27e85bd2016-08-03 21:57:47 +0000683 // The string table is never an external member, but we still
684 // must check any Expected<> return value.
685 Expected<StringRef> BufOrErr = C->getBuffer();
686 if (!BufOrErr) {
687 Err = BufOrErr.takeError();
688 return;
689 }
690 StringTable = BufOrErr.get();
Kevin Enderby7a969422015-11-05 19:24:56 +0000691 if (Increment())
692 return;
693 setFirstRegular(*C);
Kevin Enderbyc60a3212016-06-29 20:35:44 +0000694 Err = Error::success();
Rafael Espindola88ae7dd2013-07-03 15:57:14 +0000695 return;
696 }
697
Rafael Espindola6cc2dc72013-07-05 03:35:15 +0000698 if (Name[0] != '/') {
Simon Atanasyan1d902b72015-02-17 18:54:22 +0000699 Format = has64SymTable ? K_MIPS64 : K_GNU;
Kevin Enderby7a969422015-11-05 19:24:56 +0000700 setFirstRegular(*C);
Kevin Enderbyc60a3212016-06-29 20:35:44 +0000701 Err = Error::success();
Rafael Espindola88ae7dd2013-07-03 15:57:14 +0000702 return;
703 }
704
Rafael Espindola6cc2dc72013-07-05 03:35:15 +0000705 if (Name != "/") {
Kevin Enderbyc60a3212016-06-29 20:35:44 +0000706 Err = errorCodeToError(object_error::parse_failed);
Rafael Espindola88ae7dd2013-07-03 15:57:14 +0000707 return;
708 }
709
710 Format = K_COFF;
Kevin Enderby27e85bd2016-08-03 21:57:47 +0000711 // We know that the symbol table is not an external file, but we still
712 // must check any Expected<> return value.
713 Expected<StringRef> BufOrErr = C->getBuffer();
714 if (!BufOrErr) {
715 Err = BufOrErr.takeError();
716 return;
717 }
718 SymbolTable = BufOrErr.get();
Rafael Espindola88ae7dd2013-07-03 15:57:14 +0000719
Kevin Enderby7a969422015-11-05 19:24:56 +0000720 if (Increment())
721 return;
722
723 if (I == E) {
724 setFirstRegular(*C);
Kevin Enderbyc60a3212016-06-29 20:35:44 +0000725 Err = Error::success();
Rafael Espindola88ae7dd2013-07-03 15:57:14 +0000726 return;
727 }
728
Kevin Enderbyf4586032016-07-29 17:44:13 +0000729 NameOrErr = C->getRawName();
730 if (!NameOrErr) {
731 Err = NameOrErr.takeError();
732 return;
733 }
734 Name = NameOrErr.get();
Rafael Espindola88ae7dd2013-07-03 15:57:14 +0000735
Rafael Espindola3e2b21c2013-07-12 20:21:39 +0000736 if (Name == "//") {
Kevin Enderby27e85bd2016-08-03 21:57:47 +0000737 // The string table is never an external member, but we still
738 // must check any Expected<> return value.
739 Expected<StringRef> BufOrErr = C->getBuffer();
740 if (!BufOrErr) {
741 Err = BufOrErr.takeError();
742 return;
743 }
744 StringTable = BufOrErr.get();
Kevin Enderby7a969422015-11-05 19:24:56 +0000745 if (Increment())
746 return;
Rafael Espindola3e2b21c2013-07-12 20:21:39 +0000747 }
Rafael Espindola88ae7dd2013-07-03 15:57:14 +0000748
Kevin Enderby7a969422015-11-05 19:24:56 +0000749 setFirstRegular(*C);
Kevin Enderbyc60a3212016-06-29 20:35:44 +0000750 Err = Error::success();
Michael J. Spencerd3b7b122011-09-27 19:36:55 +0000751}
752
Lang Hamesfc209622016-07-14 02:24:01 +0000753Archive::child_iterator Archive::child_begin(Error &Err,
754 bool SkipInternal) const {
Rafael Espindola48af1c22014-08-19 18:44:46 +0000755 if (Data.getBufferSize() == 8) // empty archive.
Rafael Espindola23a97502014-01-21 16:09:45 +0000756 return child_end();
Rafael Espindola3e2b21c2013-07-12 20:21:39 +0000757
758 if (SkipInternal)
Lang Hamesfc209622016-07-14 02:24:01 +0000759 return child_iterator(Child(this, FirstRegularData,
760 FirstRegularStartOfFile),
761 &Err);
Rafael Espindola3e2b21c2013-07-12 20:21:39 +0000762
Rafael Espindola48af1c22014-08-19 18:44:46 +0000763 const char *Loc = Data.getBufferStart() + strlen(Magic);
Kevin Enderby6524bd82016-07-19 20:47:07 +0000764 Child C(this, Loc, &Err);
765 if (Err)
Lang Hamesfc209622016-07-14 02:24:01 +0000766 return child_end();
Lang Hamesfc209622016-07-14 02:24:01 +0000767 return child_iterator(C, &Err);
Michael J. Spencerd3b7b122011-09-27 19:36:55 +0000768}
769
Rafael Espindola23a97502014-01-21 16:09:45 +0000770Archive::child_iterator Archive::child_end() const {
Lang Hamesfc209622016-07-14 02:24:01 +0000771 return child_iterator(Child(this, nullptr, nullptr), nullptr);
Michael J. Spencerd3b7b122011-09-27 19:36:55 +0000772}
Michael J. Spencere03ea9c2011-11-02 19:33:12 +0000773
Rafael Espindolaae460022014-06-16 16:08:36 +0000774StringRef Archive::Symbol::getName() const {
Rafael Espindola2b054162015-07-14 01:06:16 +0000775 return Parent->getSymbolTable().begin() + StringIndex;
Michael J. Spencere03ea9c2011-11-02 19:33:12 +0000776}
777
Kevin Enderby27e85bd2016-08-03 21:57:47 +0000778Expected<Archive::Child> Archive::Symbol::getMember() const {
Rafael Espindola2b054162015-07-14 01:06:16 +0000779 const char *Buf = Parent->getSymbolTable().begin();
Simon Atanasyan1d902b72015-02-17 18:54:22 +0000780 const char *Offsets = Buf;
Kevin Enderbyae108ff2016-06-17 22:16:06 +0000781 if (Parent->kind() == K_MIPS64 || Parent->kind() == K_DARWIN64)
Simon Atanasyan1d902b72015-02-17 18:54:22 +0000782 Offsets += sizeof(uint64_t);
783 else
784 Offsets += sizeof(uint32_t);
Michael J. Spencer4e92d5b2012-11-14 00:04:13 +0000785 uint32_t Offset = 0;
Shankar Easwaran15b28be2012-11-13 18:38:42 +0000786 if (Parent->kind() == K_GNU) {
Rui Ueyama3206b792015-03-02 21:19:12 +0000787 Offset = read32be(Offsets + SymbolIndex * 4);
Simon Atanasyan1d902b72015-02-17 18:54:22 +0000788 } else if (Parent->kind() == K_MIPS64) {
Rui Ueyama3206b792015-03-02 21:19:12 +0000789 Offset = read64be(Offsets + SymbolIndex * 8);
Shankar Easwaran15b28be2012-11-13 18:38:42 +0000790 } else if (Parent->kind() == K_BSD) {
Kevin Enderby8c50dbb2014-07-08 22:10:02 +0000791 // The SymbolIndex is an index into the ranlib structs that start at
792 // Offsets (the first uint32_t is the number of bytes of the ranlib
793 // structs). The ranlib structs are a pair of uint32_t's the first
794 // being a string table offset and the second being the offset into
795 // the archive of the member that defines the symbol. Which is what
796 // is needed here.
Rui Ueyama3206b792015-03-02 21:19:12 +0000797 Offset = read32le(Offsets + SymbolIndex * 8 + 4);
Kevin Enderbyae108ff2016-06-17 22:16:06 +0000798 } else if (Parent->kind() == K_DARWIN64) {
799 // The SymbolIndex is an index into the ranlib_64 structs that start at
800 // Offsets (the first uint64_t is the number of bytes of the ranlib_64
801 // structs). The ranlib_64 structs are a pair of uint64_t's the first
802 // being a string table offset and the second being the offset into
803 // the archive of the member that defines the symbol. Which is what
804 // is needed here.
805 Offset = read64le(Offsets + SymbolIndex * 16 + 8);
Shankar Easwaran15b28be2012-11-13 18:38:42 +0000806 } else {
Michael J. Spencer4e92d5b2012-11-14 00:04:13 +0000807 // Skip offsets.
Rui Ueyama3206b792015-03-02 21:19:12 +0000808 uint32_t MemberCount = read32le(Buf);
809 Buf += MemberCount * 4 + 4;
Michael J. Spencer4e92d5b2012-11-14 00:04:13 +0000810
Rui Ueyama3206b792015-03-02 21:19:12 +0000811 uint32_t SymbolCount = read32le(Buf);
Michael J. Spencer4e92d5b2012-11-14 00:04:13 +0000812 if (SymbolIndex >= SymbolCount)
Kevin Enderby27e85bd2016-08-03 21:57:47 +0000813 return errorCodeToError(object_error::parse_failed);
Michael J. Spencer4e92d5b2012-11-14 00:04:13 +0000814
Matt Beaumont-Gay68e0b6a2012-11-14 00:21:27 +0000815 // Skip SymbolCount to get to the indices table.
Rui Ueyama3206b792015-03-02 21:19:12 +0000816 const char *Indices = Buf + 4;
Michael J. Spencer4e92d5b2012-11-14 00:04:13 +0000817
818 // Get the index of the offset in the file member offset table for this
819 // symbol.
Rui Ueyama3206b792015-03-02 21:19:12 +0000820 uint16_t OffsetIndex = read16le(Indices + SymbolIndex * 2);
Michael J. Spencer4e92d5b2012-11-14 00:04:13 +0000821 // Subtract 1 since OffsetIndex is 1 based.
822 --OffsetIndex;
823
824 if (OffsetIndex >= MemberCount)
Kevin Enderby27e85bd2016-08-03 21:57:47 +0000825 return errorCodeToError(object_error::parse_failed);
Michael J. Spencer4e92d5b2012-11-14 00:04:13 +0000826
Rui Ueyama3206b792015-03-02 21:19:12 +0000827 Offset = read32le(Offsets + OffsetIndex * 4);
Shankar Easwaran15b28be2012-11-13 18:38:42 +0000828 }
Michael J. Spencere03ea9c2011-11-02 19:33:12 +0000829
Michael J. Spencer4e92d5b2012-11-14 00:04:13 +0000830 const char *Loc = Parent->getData().begin() + Offset;
Kevin Enderby6524bd82016-07-19 20:47:07 +0000831 Error Err;
832 Child C(Parent, Loc, &Err);
833 if (Err)
Kevin Enderby27e85bd2016-08-03 21:57:47 +0000834 return std::move(Err);
Kevin Enderby7a969422015-11-05 19:24:56 +0000835 return C;
Michael J. Spencere03ea9c2011-11-02 19:33:12 +0000836}
837
838Archive::Symbol Archive::Symbol::getNext() const {
839 Symbol t(*this);
Kevin Enderby8c50dbb2014-07-08 22:10:02 +0000840 if (Parent->kind() == K_BSD) {
841 // t.StringIndex is an offset from the start of the __.SYMDEF or
842 // "__.SYMDEF SORTED" member into the string table for the ranlib
843 // struct indexed by t.SymbolIndex . To change t.StringIndex to the
844 // offset in the string table for t.SymbolIndex+1 we subtract the
845 // its offset from the start of the string table for t.SymbolIndex
846 // and add the offset of the string table for t.SymbolIndex+1.
847
848 // The __.SYMDEF or "__.SYMDEF SORTED" member starts with a uint32_t
849 // which is the number of bytes of ranlib structs that follow. The ranlib
850 // structs are a pair of uint32_t's the first being a string table offset
851 // and the second being the offset into the archive of the member that
852 // define the symbol. After that the next uint32_t is the byte count of
853 // the string table followed by the string table.
Rafael Espindola2b054162015-07-14 01:06:16 +0000854 const char *Buf = Parent->getSymbolTable().begin();
Kevin Enderby8c50dbb2014-07-08 22:10:02 +0000855 uint32_t RanlibCount = 0;
Rui Ueyama3206b792015-03-02 21:19:12 +0000856 RanlibCount = read32le(Buf) / 8;
Kevin Enderby8c50dbb2014-07-08 22:10:02 +0000857 // If t.SymbolIndex + 1 will be past the count of symbols (the RanlibCount)
858 // don't change the t.StringIndex as we don't want to reference a ranlib
859 // past RanlibCount.
860 if (t.SymbolIndex + 1 < RanlibCount) {
861 const char *Ranlibs = Buf + 4;
862 uint32_t CurRanStrx = 0;
863 uint32_t NextRanStrx = 0;
Rui Ueyama3206b792015-03-02 21:19:12 +0000864 CurRanStrx = read32le(Ranlibs + t.SymbolIndex * 8);
865 NextRanStrx = read32le(Ranlibs + (t.SymbolIndex + 1) * 8);
Kevin Enderby8c50dbb2014-07-08 22:10:02 +0000866 t.StringIndex -= CurRanStrx;
867 t.StringIndex += NextRanStrx;
868 }
869 } else {
870 // Go to one past next null.
Rafael Espindola2b054162015-07-14 01:06:16 +0000871 t.StringIndex = Parent->getSymbolTable().find('\0', t.StringIndex) + 1;
Kevin Enderby8c50dbb2014-07-08 22:10:02 +0000872 }
Michael J. Spencere03ea9c2011-11-02 19:33:12 +0000873 ++t.SymbolIndex;
874 return t;
875}
876
Rafael Espindola23a97502014-01-21 16:09:45 +0000877Archive::symbol_iterator Archive::symbol_begin() const {
Rafael Espindolab6b5f52e2013-07-29 12:40:31 +0000878 if (!hasSymbolTable())
Rafael Espindolafbcafc02013-07-10 20:14:22 +0000879 return symbol_iterator(Symbol(this, 0, 0));
880
Rafael Espindola2b054162015-07-14 01:06:16 +0000881 const char *buf = getSymbolTable().begin();
Shankar Easwaran15b28be2012-11-13 18:38:42 +0000882 if (kind() == K_GNU) {
883 uint32_t symbol_count = 0;
Rui Ueyama3206b792015-03-02 21:19:12 +0000884 symbol_count = read32be(buf);
Shankar Easwaran15b28be2012-11-13 18:38:42 +0000885 buf += sizeof(uint32_t) + (symbol_count * (sizeof(uint32_t)));
Simon Atanasyan1d902b72015-02-17 18:54:22 +0000886 } else if (kind() == K_MIPS64) {
Rui Ueyama3206b792015-03-02 21:19:12 +0000887 uint64_t symbol_count = read64be(buf);
Simon Atanasyan1d902b72015-02-17 18:54:22 +0000888 buf += sizeof(uint64_t) + (symbol_count * (sizeof(uint64_t)));
Shankar Easwaran15b28be2012-11-13 18:38:42 +0000889 } else if (kind() == K_BSD) {
Kevin Enderby8c50dbb2014-07-08 22:10:02 +0000890 // The __.SYMDEF or "__.SYMDEF SORTED" member starts with a uint32_t
891 // which is the number of bytes of ranlib structs that follow. The ranlib
892 // structs are a pair of uint32_t's the first being a string table offset
893 // and the second being the offset into the archive of the member that
894 // define the symbol. After that the next uint32_t is the byte count of
895 // the string table followed by the string table.
896 uint32_t ranlib_count = 0;
Rui Ueyama3206b792015-03-02 21:19:12 +0000897 ranlib_count = read32le(buf) / 8;
Kevin Enderby8c50dbb2014-07-08 22:10:02 +0000898 const char *ranlibs = buf + 4;
899 uint32_t ran_strx = 0;
Rui Ueyama3206b792015-03-02 21:19:12 +0000900 ran_strx = read32le(ranlibs);
Kevin Enderby8c50dbb2014-07-08 22:10:02 +0000901 buf += sizeof(uint32_t) + (ranlib_count * (2 * (sizeof(uint32_t))));
902 // Skip the byte count of the string table.
903 buf += sizeof(uint32_t);
904 buf += ran_strx;
Kevin Enderbyae108ff2016-06-17 22:16:06 +0000905 } else if (kind() == K_DARWIN64) {
906 // The __.SYMDEF_64 or "__.SYMDEF_64 SORTED" member starts with a uint64_t
907 // which is the number of bytes of ranlib_64 structs that follow. The
908 // ranlib_64 structs are a pair of uint64_t's the first being a string
909 // table offset and the second being the offset into the archive of the
910 // member that define the symbol. After that the next uint64_t is the byte
911 // count of the string table followed by the string table.
912 uint64_t ranlib_count = 0;
913 ranlib_count = read64le(buf) / 16;
914 const char *ranlibs = buf + 8;
915 uint64_t ran_strx = 0;
916 ran_strx = read64le(ranlibs);
917 buf += sizeof(uint64_t) + (ranlib_count * (2 * (sizeof(uint64_t))));
918 // Skip the byte count of the string table.
919 buf += sizeof(uint64_t);
920 buf += ran_strx;
Shankar Easwaran15b28be2012-11-13 18:38:42 +0000921 } else {
922 uint32_t member_count = 0;
923 uint32_t symbol_count = 0;
Rui Ueyama3206b792015-03-02 21:19:12 +0000924 member_count = read32le(buf);
Shankar Easwaran15b28be2012-11-13 18:38:42 +0000925 buf += 4 + (member_count * 4); // Skip offsets.
Rui Ueyama3206b792015-03-02 21:19:12 +0000926 symbol_count = read32le(buf);
Shankar Easwaran15b28be2012-11-13 18:38:42 +0000927 buf += 4 + (symbol_count * 2); // Skip indices.
928 }
Rafael Espindola2b054162015-07-14 01:06:16 +0000929 uint32_t string_start_offset = buf - getSymbolTable().begin();
Michael J. Spencere03ea9c2011-11-02 19:33:12 +0000930 return symbol_iterator(Symbol(this, 0, string_start_offset));
931}
932
Rafael Espindola23a97502014-01-21 16:09:45 +0000933Archive::symbol_iterator Archive::symbol_end() const {
Rui Ueyama407e0972015-05-26 16:20:40 +0000934 return symbol_iterator(Symbol(this, getNumberOfSymbols(), 0));
935}
Rafael Espindolafbcafc02013-07-10 20:14:22 +0000936
Rui Ueyama407e0972015-05-26 16:20:40 +0000937uint32_t Archive::getNumberOfSymbols() const {
Rafael Espindola483ad202015-10-08 18:06:20 +0000938 if (!hasSymbolTable())
939 return 0;
Rafael Espindola2b054162015-07-14 01:06:16 +0000940 const char *buf = getSymbolTable().begin();
Rui Ueyama407e0972015-05-26 16:20:40 +0000941 if (kind() == K_GNU)
942 return read32be(buf);
943 if (kind() == K_MIPS64)
944 return read64be(buf);
945 if (kind() == K_BSD)
946 return read32le(buf) / 8;
Kevin Enderbyae108ff2016-06-17 22:16:06 +0000947 if (kind() == K_DARWIN64)
948 return read64le(buf) / 16;
Rui Ueyama407e0972015-05-26 16:20:40 +0000949 uint32_t member_count = 0;
950 member_count = read32le(buf);
951 buf += 4 + (member_count * 4); // Skip offsets.
952 return read32le(buf);
Michael J. Spencere03ea9c2011-11-02 19:33:12 +0000953}
Shankar Easwaran15b28be2012-11-13 18:38:42 +0000954
Lang Hames69f49022016-07-14 20:44:27 +0000955Expected<Optional<Archive::Child>> Archive::findSym(StringRef name) const {
Rafael Espindola23a97502014-01-21 16:09:45 +0000956 Archive::symbol_iterator bs = symbol_begin();
957 Archive::symbol_iterator es = symbol_end();
Rafael Espindolaae460022014-06-16 16:08:36 +0000958
Shankar Easwaran15b28be2012-11-13 18:38:42 +0000959 for (; bs != es; ++bs) {
Rafael Espindolaae460022014-06-16 16:08:36 +0000960 StringRef SymName = bs->getName();
961 if (SymName == name) {
Lang Hames69f49022016-07-14 20:44:27 +0000962 if (auto MemberOrErr = bs->getMember())
963 return Child(*MemberOrErr);
964 else
Kevin Enderby27e85bd2016-08-03 21:57:47 +0000965 return MemberOrErr.takeError();
Shankar Easwaran15b28be2012-11-13 18:38:42 +0000966 }
967 }
Lang Hames69f49022016-07-14 20:44:27 +0000968 return Optional<Child>();
Shankar Easwaran15b28be2012-11-13 18:38:42 +0000969}
Rafael Espindolab6b5f52e2013-07-29 12:40:31 +0000970
Rafael Espindola4a782fb2015-10-31 21:03:29 +0000971bool Archive::hasSymbolTable() const { return !SymbolTable.empty(); }