Michael J. Spencer | d3b7b12 | 2011-09-27 19:36:55 +0000 | [diff] [blame] | 1 | //===- 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 Espindola | 747bc07 | 2013-07-09 03:39:35 +0000 | [diff] [blame] | 15 | #include "llvm/ADT/SmallString.h" |
| 16 | #include "llvm/ADT/Twine.h" |
Michael J. Spencer | e03ea9c | 2011-11-02 19:33:12 +0000 | [diff] [blame] | 17 | #include "llvm/Support/Endian.h" |
Michael J. Spencer | d3b7b12 | 2011-09-27 19:36:55 +0000 | [diff] [blame] | 18 | #include "llvm/Support/MemoryBuffer.h" |
Rafael Espindola | 4b83cb5 | 2015-07-14 22:18:43 +0000 | [diff] [blame] | 19 | #include "llvm/Support/Path.h" |
Michael J. Spencer | d3b7b12 | 2011-09-27 19:36:55 +0000 | [diff] [blame] | 20 | |
| 21 | using namespace llvm; |
| 22 | using namespace object; |
Rui Ueyama | 3206b79 | 2015-03-02 21:19:12 +0000 | [diff] [blame] | 23 | using namespace llvm::support::endian; |
Michael J. Spencer | d3b7b12 | 2011-09-27 19:36:55 +0000 | [diff] [blame] | 24 | |
Craig Topper | d3a34f8 | 2013-07-16 01:17:10 +0000 | [diff] [blame] | 25 | static const char *const Magic = "!<arch>\n"; |
Rafael Espindola | 9d10206 | 2014-12-16 01:43:41 +0000 | [diff] [blame] | 26 | static const char *const ThinMagic = "!<thin>\n"; |
Michael J. Spencer | d3b7b12 | 2011-09-27 19:36:55 +0000 | [diff] [blame] | 27 | |
David Blaikie | a379b181 | 2011-12-20 02:50:00 +0000 | [diff] [blame] | 28 | void Archive::anchor() { } |
| 29 | |
Kevin Enderby | 6524bd8 | 2016-07-19 20:47:07 +0000 | [diff] [blame] | 30 | static Error |
| 31 | malformedError(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 Enderby | 95b0842 | 2016-07-25 20:36:36 +0000 | [diff] [blame] | 37 | ArchiveMemberHeader::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 Enderby | 95b0842 | 2016-07-25 20:36:36 +0000 | [diff] [blame] | 46 | if (Size < sizeof(ArMemHdrType)) { |
| 47 | if (Err) { |
Kevin Enderby | 31b07f1 | 2016-07-29 22:32:02 +0000 | [diff] [blame] | 48 | std::string Msg("remaining size of archive too small for next archive " |
| 49 | "member header "); |
Kevin Enderby | f458603 | 2016-07-29 17:44:13 +0000 | [diff] [blame] | 50 | 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 Enderby | 31b07f1 | 2016-07-29 22:32:02 +0000 | [diff] [blame] | 56 | *Err = malformedError(Msg + "for " + NameOrErr.get()); |
Kevin Enderby | 95b0842 | 2016-07-25 20:36:36 +0000 | [diff] [blame] | 57 | } |
| 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 Enderby | 31b07f1 | 2016-07-29 22:32:02 +0000 | [diff] [blame] | 67 | std::string Msg("terminator characters in archive member \"" + Buf + |
| 68 | "\" not the correct \"`\\n\" values for the archive " |
| 69 | "member header "); |
Kevin Enderby | f458603 | 2016-07-29 17:44:13 +0000 | [diff] [blame] | 70 | 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 Enderby | 31b07f1 | 2016-07-29 22:32:02 +0000 | [diff] [blame] | 76 | *Err = malformedError(Msg + "for " + NameOrErr.get()); |
Kevin Enderby | 95b0842 | 2016-07-25 20:36:36 +0000 | [diff] [blame] | 77 | } |
| 78 | return; |
| 79 | } |
| 80 | } |
| 81 | |
Kevin Enderby | f458603 | 2016-07-29 17:44:13 +0000 | [diff] [blame] | 82 | // 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. |
| 84 | Expected<StringRef> ArchiveMemberHeader::getRawName() const { |
Rafael Espindola | 747bc07 | 2013-07-09 03:39:35 +0000 | [diff] [blame] | 85 | char EndCond; |
Kevin Enderby | f458603 | 2016-07-29 17:44:13 +0000 | [diff] [blame] | 86 | 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 Espindola | 747bc07 | 2013-07-09 03:39:35 +0000 | [diff] [blame] | 97 | EndCond = ' '; |
| 98 | else |
| 99 | EndCond = '/'; |
| 100 | llvm::StringRef::size_type end = |
Kevin Enderby | 95b0842 | 2016-07-25 20:36:36 +0000 | [diff] [blame] | 101 | llvm::StringRef(ArMemHdr->Name, sizeof(ArMemHdr->Name)).find(EndCond); |
Rafael Espindola | 747bc07 | 2013-07-09 03:39:35 +0000 | [diff] [blame] | 102 | if (end == llvm::StringRef::npos) |
Kevin Enderby | 95b0842 | 2016-07-25 20:36:36 +0000 | [diff] [blame] | 103 | end = sizeof(ArMemHdr->Name); |
| 104 | assert(end <= sizeof(ArMemHdr->Name) && end > 0); |
Rafael Espindola | 747bc07 | 2013-07-09 03:39:35 +0000 | [diff] [blame] | 105 | // Don't include the EndCond if there is one. |
Kevin Enderby | 95b0842 | 2016-07-25 20:36:36 +0000 | [diff] [blame] | 106 | return llvm::StringRef(ArMemHdr->Name, end); |
Rafael Espindola | 747bc07 | 2013-07-09 03:39:35 +0000 | [diff] [blame] | 107 | } |
| 108 | |
Kevin Enderby | f458603 | 2016-07-29 17:44:13 +0000 | [diff] [blame] | 109 | // 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. |
| 112 | Expected<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 Enderby | 31b07f1 | 2016-07-29 22:32:02 +0000 | [diff] [blame] | 143 | OS.write_escaped(Name.substr(1).rtrim(' ')); |
Kevin Enderby | f458603 | 2016-07-29 17:44:13 +0000 | [diff] [blame] | 144 | 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 Blaikie | cd842ec | 2016-08-01 21:50:43 +0000 | [diff] [blame] | 169 | return addr; |
| 170 | } |
| 171 | |
| 172 | if (Name.startswith("#1/")) { |
Kevin Enderby | f458603 | 2016-07-29 17:44:13 +0000 | [diff] [blame] | 173 | uint64_t NameLength; |
| 174 | if (Name.substr(3).rtrim(' ').getAsInteger(10, NameLength)) { |
| 175 | std::string Buf; |
| 176 | raw_string_ostream OS(Buf); |
Kevin Enderby | 31b07f1 | 2016-07-29 22:32:02 +0000 | [diff] [blame] | 177 | OS.write_escaped(Name.substr(3).rtrim(' ')); |
Kevin Enderby | f458603 | 2016-07-29 17:44:13 +0000 | [diff] [blame] | 178 | 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 Enderby | f458603 | 2016-07-29 17:44:13 +0000 | [diff] [blame] | 196 | } |
David Blaikie | cd842ec | 2016-08-01 21:50:43 +0000 | [diff] [blame] | 197 | |
| 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 Enderby | f458603 | 2016-07-29 17:44:13 +0000 | [diff] [blame] | 202 | // It's a simple name. |
David Blaikie | cd842ec | 2016-08-01 21:50:43 +0000 | [diff] [blame] | 203 | return Name.drop_back(1); |
Kevin Enderby | f458603 | 2016-07-29 17:44:13 +0000 | [diff] [blame] | 204 | } |
| 205 | |
Kevin Enderby | 6524bd8 | 2016-07-19 20:47:07 +0000 | [diff] [blame] | 206 | Expected<uint32_t> ArchiveMemberHeader::getSize() const { |
Rafael Espindola | 8e9385e | 2013-07-09 12:45:11 +0000 | [diff] [blame] | 207 | uint32_t Ret; |
Kevin Enderby | 95b0842 | 2016-07-25 20:36:36 +0000 | [diff] [blame] | 208 | if (llvm::StringRef(ArMemHdr->Size, |
| 209 | sizeof(ArMemHdr->Size)).rtrim(" ").getAsInteger(10, Ret)) { |
Kevin Enderby | 6524bd8 | 2016-07-19 20:47:07 +0000 | [diff] [blame] | 210 | std::string Buf; |
| 211 | raw_string_ostream OS(Buf); |
Kevin Enderby | 95b0842 | 2016-07-25 20:36:36 +0000 | [diff] [blame] | 212 | OS.write_escaped(llvm::StringRef(ArMemHdr->Size, |
| 213 | sizeof(ArMemHdr->Size)).rtrim(" ")); |
Kevin Enderby | 6524bd8 | 2016-07-19 20:47:07 +0000 | [diff] [blame] | 214 | OS.flush(); |
Kevin Enderby | 95b0842 | 2016-07-25 20:36:36 +0000 | [diff] [blame] | 215 | uint64_t Offset = reinterpret_cast<const char *>(ArMemHdr) - |
| 216 | Parent->getData().data(); |
Kevin Enderby | 6524bd8 | 2016-07-19 20:47:07 +0000 | [diff] [blame] | 217 | return malformedError("characters in size field in archive header are not " |
Kevin Enderby | 95b0842 | 2016-07-25 20:36:36 +0000 | [diff] [blame] | 218 | "all decimal numbers: '" + Buf + "' for archive " |
| 219 | "member header at offset " + Twine(Offset)); |
Kevin Enderby | 6524bd8 | 2016-07-19 20:47:07 +0000 | [diff] [blame] | 220 | } |
Rafael Espindola | 8e9385e | 2013-07-09 12:45:11 +0000 | [diff] [blame] | 221 | return Ret; |
Rafael Espindola | 747bc07 | 2013-07-09 03:39:35 +0000 | [diff] [blame] | 222 | } |
| 223 | |
Vedant Kumar | 4031d9f | 2016-08-03 19:02:50 +0000 | [diff] [blame] | 224 | Expected<sys::fs::perms> ArchiveMemberHeader::getAccessMode() const { |
Rafael Espindola | 8115e1d | 2013-07-09 12:49:24 +0000 | [diff] [blame] | 225 | unsigned Ret; |
Kevin Enderby | 95b0842 | 2016-07-25 20:36:36 +0000 | [diff] [blame] | 226 | if (StringRef(ArMemHdr->AccessMode, |
Vedant Kumar | 4031d9f | 2016-08-03 19:02:50 +0000 | [diff] [blame] | 227 | 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 Espindola | 8115e1d | 2013-07-09 12:49:24 +0000 | [diff] [blame] | 239 | return static_cast<sys::fs::perms>(Ret); |
| 240 | } |
| 241 | |
Pavel Labath | bff47b5 | 2016-10-24 13:38:27 +0000 | [diff] [blame] | 242 | Expected<sys::TimePoint<std::chrono::seconds>> |
| 243 | ArchiveMemberHeader::getLastModified() const { |
Rafael Espindola | 8115e1d | 2013-07-09 12:49:24 +0000 | [diff] [blame] | 244 | unsigned Seconds; |
Kevin Enderby | 95b0842 | 2016-07-25 20:36:36 +0000 | [diff] [blame] | 245 | if (StringRef(ArMemHdr->LastModified, |
| 246 | sizeof(ArMemHdr->LastModified)).rtrim(' ') |
Vedant Kumar | 4031d9f | 2016-08-03 19:02:50 +0000 | [diff] [blame] | 247 | .getAsInteger(10, Seconds)) { |
| 248 | std::string Buf; |
| 249 | raw_string_ostream OS(Buf); |
| 250 | OS.write_escaped(llvm::StringRef(ArMemHdr->LastModified, |
| 251 | sizeof(ArMemHdr->LastModified)).rtrim(" ")); |
| 252 | OS.flush(); |
| 253 | uint64_t Offset = reinterpret_cast<const char *>(ArMemHdr) - |
| 254 | Parent->getData().data(); |
| 255 | return malformedError("characters in LastModified field in archive header " |
| 256 | "are not all decimal numbers: '" + Buf + "' for the " |
| 257 | "archive member header at offset " + Twine(Offset)); |
| 258 | } |
Rafael Espindola | 8115e1d | 2013-07-09 12:49:24 +0000 | [diff] [blame] | 259 | |
Pavel Labath | bff47b5 | 2016-10-24 13:38:27 +0000 | [diff] [blame] | 260 | return sys::toTimePoint(Seconds); |
Rafael Espindola | 8115e1d | 2013-07-09 12:49:24 +0000 | [diff] [blame] | 261 | } |
| 262 | |
Vedant Kumar | 4031d9f | 2016-08-03 19:02:50 +0000 | [diff] [blame] | 263 | Expected<unsigned> ArchiveMemberHeader::getUID() const { |
Rafael Espindola | 8115e1d | 2013-07-09 12:49:24 +0000 | [diff] [blame] | 264 | unsigned Ret; |
Kevin Enderby | 95b0842 | 2016-07-25 20:36:36 +0000 | [diff] [blame] | 265 | StringRef User = StringRef(ArMemHdr->UID, sizeof(ArMemHdr->UID)).rtrim(' '); |
Saleem Abdulrasool | aecbdf7 | 2016-07-05 00:23:05 +0000 | [diff] [blame] | 266 | if (User.empty()) |
| 267 | return 0; |
Vedant Kumar | 4031d9f | 2016-08-03 19:02:50 +0000 | [diff] [blame] | 268 | if (User.getAsInteger(10, Ret)) { |
| 269 | std::string Buf; |
| 270 | raw_string_ostream OS(Buf); |
| 271 | OS.write_escaped(User); |
| 272 | OS.flush(); |
| 273 | uint64_t Offset = reinterpret_cast<const char *>(ArMemHdr) - |
| 274 | Parent->getData().data(); |
| 275 | return malformedError("characters in UID field in archive header " |
| 276 | "are not all decimal numbers: '" + Buf + "' for the " |
| 277 | "archive member header at offset " + Twine(Offset)); |
| 278 | } |
Rafael Espindola | 8115e1d | 2013-07-09 12:49:24 +0000 | [diff] [blame] | 279 | return Ret; |
| 280 | } |
| 281 | |
Vedant Kumar | 4031d9f | 2016-08-03 19:02:50 +0000 | [diff] [blame] | 282 | Expected<unsigned> ArchiveMemberHeader::getGID() const { |
Rafael Espindola | 8115e1d | 2013-07-09 12:49:24 +0000 | [diff] [blame] | 283 | unsigned Ret; |
Kevin Enderby | 95b0842 | 2016-07-25 20:36:36 +0000 | [diff] [blame] | 284 | StringRef Group = StringRef(ArMemHdr->GID, sizeof(ArMemHdr->GID)).rtrim(' '); |
Saleem Abdulrasool | aecbdf7 | 2016-07-05 00:23:05 +0000 | [diff] [blame] | 285 | if (Group.empty()) |
| 286 | return 0; |
Vedant Kumar | 4031d9f | 2016-08-03 19:02:50 +0000 | [diff] [blame] | 287 | if (Group.getAsInteger(10, Ret)) { |
| 288 | std::string Buf; |
| 289 | raw_string_ostream OS(Buf); |
| 290 | OS.write_escaped(Group); |
| 291 | OS.flush(); |
| 292 | uint64_t Offset = reinterpret_cast<const char *>(ArMemHdr) - |
| 293 | Parent->getData().data(); |
| 294 | return malformedError("characters in GID field in archive header " |
| 295 | "are not all decimal numbers: '" + Buf + "' for the " |
| 296 | "archive member header at offset " + Twine(Offset)); |
| 297 | } |
Rafael Espindola | 8115e1d | 2013-07-09 12:49:24 +0000 | [diff] [blame] | 298 | return Ret; |
| 299 | } |
| 300 | |
Rafael Espindola | 4335876 | 2015-10-31 21:44:42 +0000 | [diff] [blame] | 301 | Archive::Child::Child(const Archive *Parent, StringRef Data, |
| 302 | uint16_t StartOfFile) |
Kevin Enderby | 95b0842 | 2016-07-25 20:36:36 +0000 | [diff] [blame] | 303 | : Parent(Parent), Header(Parent, Data.data(), Data.size(), nullptr), |
| 304 | Data(Data), StartOfFile(StartOfFile) { |
| 305 | } |
Rafael Espindola | 4335876 | 2015-10-31 21:44:42 +0000 | [diff] [blame] | 306 | |
Kevin Enderby | 6524bd8 | 2016-07-19 20:47:07 +0000 | [diff] [blame] | 307 | Archive::Child::Child(const Archive *Parent, const char *Start, Error *Err) |
Lang Hames | a5e873e | 2016-10-05 21:20:00 +0000 | [diff] [blame] | 308 | : Parent(Parent), |
| 309 | Header(Parent, Start, |
| 310 | Parent |
| 311 | ? Parent->getData().size() - (Start - Parent->getData().data()) |
| 312 | : 0, Err) { |
Rafael Espindola | 0f3de64 | 2013-07-09 05:26:25 +0000 | [diff] [blame] | 313 | if (!Start) |
Rafael Espindola | 747bc07 | 2013-07-09 03:39:35 +0000 | [diff] [blame] | 314 | return; |
Kevin Enderby | 2c18270 | 2016-08-04 21:54:19 +0000 | [diff] [blame] | 315 | |
| 316 | // If we are pointed to real data, Start is not a nullptr, then there must be |
| 317 | // a non-null Err pointer available to report malformed data on. Only in |
| 318 | // the case sentinel value is being constructed is Err is permitted to be a |
| 319 | // nullptr. |
| 320 | assert(Err && "Err can't be nullptr if Start is not a nullptr"); |
| 321 | |
Lang Hames | 5e51a2e | 2016-07-22 16:11:25 +0000 | [diff] [blame] | 322 | ErrorAsOutParameter ErrAsOutParam(Err); |
Rafael Espindola | 0f3de64 | 2013-07-09 05:26:25 +0000 | [diff] [blame] | 323 | |
Kevin Enderby | 2c18270 | 2016-08-04 21:54:19 +0000 | [diff] [blame] | 324 | // If there was an error in the construction of the Header |
| 325 | // then just return with the error now set. |
| 326 | if (*Err) |
Kevin Enderby | 95b0842 | 2016-07-25 20:36:36 +0000 | [diff] [blame] | 327 | return; |
| 328 | |
| 329 | uint64_t Size = Header.getSizeOf(); |
Rafael Espindola | 9d10206 | 2014-12-16 01:43:41 +0000 | [diff] [blame] | 330 | Data = StringRef(Start, Size); |
Kevin Enderby | f458603 | 2016-07-29 17:44:13 +0000 | [diff] [blame] | 331 | Expected<bool> isThinOrErr = isThinMember(); |
| 332 | if (!isThinOrErr) { |
Kevin Enderby | 2c18270 | 2016-08-04 21:54:19 +0000 | [diff] [blame] | 333 | *Err = isThinOrErr.takeError(); |
Kevin Enderby | f458603 | 2016-07-29 17:44:13 +0000 | [diff] [blame] | 334 | return; |
| 335 | } |
| 336 | bool isThin = isThinOrErr.get(); |
| 337 | if (!isThin) { |
Kevin Enderby | 6524bd8 | 2016-07-19 20:47:07 +0000 | [diff] [blame] | 338 | Expected<uint64_t> MemberSize = getRawSize(); |
| 339 | if (!MemberSize) { |
Kevin Enderby | 2c18270 | 2016-08-04 21:54:19 +0000 | [diff] [blame] | 340 | *Err = MemberSize.takeError(); |
Kevin Enderby | 7a96942 | 2015-11-05 19:24:56 +0000 | [diff] [blame] | 341 | return; |
Kevin Enderby | 6524bd8 | 2016-07-19 20:47:07 +0000 | [diff] [blame] | 342 | } |
Kevin Enderby | 7a96942 | 2015-11-05 19:24:56 +0000 | [diff] [blame] | 343 | Size += MemberSize.get(); |
Rafael Espindola | be9ab26 | 2015-07-22 19:34:26 +0000 | [diff] [blame] | 344 | Data = StringRef(Start, Size); |
| 345 | } |
Rafael Espindola | 0f3de64 | 2013-07-09 05:26:25 +0000 | [diff] [blame] | 346 | |
Rafael Espindola | 747bc07 | 2013-07-09 03:39:35 +0000 | [diff] [blame] | 347 | // Setup StartOfFile and PaddingBytes. |
Kevin Enderby | 95b0842 | 2016-07-25 20:36:36 +0000 | [diff] [blame] | 348 | StartOfFile = Header.getSizeOf(); |
Rafael Espindola | 747bc07 | 2013-07-09 03:39:35 +0000 | [diff] [blame] | 349 | // Don't include attached name. |
Kevin Enderby | f458603 | 2016-07-29 17:44:13 +0000 | [diff] [blame] | 350 | Expected<StringRef> NameOrErr = getRawName(); |
| 351 | if (!NameOrErr){ |
Kevin Enderby | 2c18270 | 2016-08-04 21:54:19 +0000 | [diff] [blame] | 352 | *Err = NameOrErr.takeError(); |
Kevin Enderby | f458603 | 2016-07-29 17:44:13 +0000 | [diff] [blame] | 353 | return; |
| 354 | } |
| 355 | StringRef Name = NameOrErr.get(); |
Rafael Espindola | 747bc07 | 2013-07-09 03:39:35 +0000 | [diff] [blame] | 356 | if (Name.startswith("#1/")) { |
| 357 | uint64_t NameSize; |
Kevin Enderby | f458603 | 2016-07-29 17:44:13 +0000 | [diff] [blame] | 358 | if (Name.substr(3).rtrim(' ').getAsInteger(10, NameSize)) { |
Kevin Enderby | 2c18270 | 2016-08-04 21:54:19 +0000 | [diff] [blame] | 359 | std::string Buf; |
| 360 | raw_string_ostream OS(Buf); |
| 361 | OS.write_escaped(Name.substr(3).rtrim(' ')); |
| 362 | OS.flush(); |
| 363 | uint64_t Offset = Start - Parent->getData().data(); |
| 364 | *Err = malformedError("long name length characters after the #1/ are " |
| 365 | "not all decimal numbers: '" + Buf + "' for " |
| 366 | "archive member header at offset " + |
| 367 | Twine(Offset)); |
| 368 | return; |
Kevin Enderby | f458603 | 2016-07-29 17:44:13 +0000 | [diff] [blame] | 369 | } |
Rafael Espindola | 747bc07 | 2013-07-09 03:39:35 +0000 | [diff] [blame] | 370 | StartOfFile += NameSize; |
| 371 | } |
| 372 | } |
| 373 | |
Kevin Enderby | 6524bd8 | 2016-07-19 20:47:07 +0000 | [diff] [blame] | 374 | Expected<uint64_t> Archive::Child::getSize() const { |
Kevin Enderby | 1c1add4 | 2015-10-13 20:48:04 +0000 | [diff] [blame] | 375 | if (Parent->IsThin) { |
Kevin Enderby | 95b0842 | 2016-07-25 20:36:36 +0000 | [diff] [blame] | 376 | Expected<uint32_t> Size = Header.getSize(); |
Kevin Enderby | 6524bd8 | 2016-07-19 20:47:07 +0000 | [diff] [blame] | 377 | if (!Size) |
| 378 | return Size.takeError(); |
Kevin Enderby | 1c1add4 | 2015-10-13 20:48:04 +0000 | [diff] [blame] | 379 | return Size.get(); |
| 380 | } |
Rafael Espindola | 9d10206 | 2014-12-16 01:43:41 +0000 | [diff] [blame] | 381 | return Data.size() - StartOfFile; |
| 382 | } |
| 383 | |
Kevin Enderby | 6524bd8 | 2016-07-19 20:47:07 +0000 | [diff] [blame] | 384 | Expected<uint64_t> Archive::Child::getRawSize() const { |
Kevin Enderby | 95b0842 | 2016-07-25 20:36:36 +0000 | [diff] [blame] | 385 | return Header.getSize(); |
Kevin Enderby | 13023a1 | 2015-01-15 23:19:11 +0000 | [diff] [blame] | 386 | } |
| 387 | |
Kevin Enderby | f458603 | 2016-07-29 17:44:13 +0000 | [diff] [blame] | 388 | Expected<bool> Archive::Child::isThinMember() const { |
| 389 | Expected<StringRef> NameOrErr = Header.getRawName(); |
| 390 | if (!NameOrErr) |
| 391 | return NameOrErr.takeError(); |
| 392 | StringRef Name = NameOrErr.get(); |
Rafael Espindola | be9ab26 | 2015-07-22 19:34:26 +0000 | [diff] [blame] | 393 | return Parent->IsThin && Name != "/" && Name != "//"; |
| 394 | } |
| 395 | |
Kevin Enderby | 27e85bd | 2016-08-03 21:57:47 +0000 | [diff] [blame] | 396 | Expected<std::string> Archive::Child::getFullName() const { |
Kevin Enderby | f458603 | 2016-07-29 17:44:13 +0000 | [diff] [blame] | 397 | Expected<bool> isThin = isThinMember(); |
| 398 | if (!isThin) |
Kevin Enderby | 27e85bd | 2016-08-03 21:57:47 +0000 | [diff] [blame] | 399 | return isThin.takeError(); |
Kevin Enderby | f458603 | 2016-07-29 17:44:13 +0000 | [diff] [blame] | 400 | assert(isThin.get()); |
| 401 | Expected<StringRef> NameOrErr = getName(); |
| 402 | if (!NameOrErr) |
Kevin Enderby | 27e85bd | 2016-08-03 21:57:47 +0000 | [diff] [blame] | 403 | return NameOrErr.takeError(); |
Rafael Espindola | 694210c | 2016-05-02 13:45:06 +0000 | [diff] [blame] | 404 | StringRef Name = *NameOrErr; |
| 405 | if (sys::path::is_absolute(Name)) |
| 406 | return Name; |
| 407 | |
| 408 | SmallString<128> FullName = sys::path::parent_path( |
| 409 | Parent->getMemoryBufferRef().getBufferIdentifier()); |
| 410 | sys::path::append(FullName, Name); |
| 411 | return StringRef(FullName); |
| 412 | } |
| 413 | |
Kevin Enderby | 27e85bd | 2016-08-03 21:57:47 +0000 | [diff] [blame] | 414 | Expected<StringRef> Archive::Child::getBuffer() const { |
Kevin Enderby | f458603 | 2016-07-29 17:44:13 +0000 | [diff] [blame] | 415 | Expected<bool> isThinOrErr = isThinMember(); |
| 416 | if (!isThinOrErr) |
Kevin Enderby | 27e85bd | 2016-08-03 21:57:47 +0000 | [diff] [blame] | 417 | return isThinOrErr.takeError(); |
Kevin Enderby | f458603 | 2016-07-29 17:44:13 +0000 | [diff] [blame] | 418 | bool isThin = isThinOrErr.get(); |
| 419 | if (!isThin) { |
Kevin Enderby | 6524bd8 | 2016-07-19 20:47:07 +0000 | [diff] [blame] | 420 | Expected<uint32_t> Size = getSize(); |
| 421 | if (!Size) |
Kevin Enderby | 27e85bd | 2016-08-03 21:57:47 +0000 | [diff] [blame] | 422 | return Size.takeError(); |
Kevin Enderby | 7a96942 | 2015-11-05 19:24:56 +0000 | [diff] [blame] | 423 | return StringRef(Data.data() + StartOfFile, Size.get()); |
| 424 | } |
Kevin Enderby | 27e85bd | 2016-08-03 21:57:47 +0000 | [diff] [blame] | 425 | Expected<std::string> FullNameOrErr = getFullName(); |
| 426 | if (!FullNameOrErr) |
| 427 | return FullNameOrErr.takeError(); |
| 428 | const std::string &FullName = *FullNameOrErr; |
Rafael Espindola | 4b83cb5 | 2015-07-14 22:18:43 +0000 | [diff] [blame] | 429 | ErrorOr<std::unique_ptr<MemoryBuffer>> Buf = MemoryBuffer::getFile(FullName); |
| 430 | if (std::error_code EC = Buf.getError()) |
Kevin Enderby | 27e85bd | 2016-08-03 21:57:47 +0000 | [diff] [blame] | 431 | return errorCodeToError(EC); |
Rafael Espindola | 4b83cb5 | 2015-07-14 22:18:43 +0000 | [diff] [blame] | 432 | Parent->ThinBuffers.push_back(std::move(*Buf)); |
| 433 | return Parent->ThinBuffers.back()->getBuffer(); |
| 434 | } |
| 435 | |
Kevin Enderby | 6524bd8 | 2016-07-19 20:47:07 +0000 | [diff] [blame] | 436 | Expected<Archive::Child> Archive::Child::getNext() const { |
Rafael Espindola | 747bc07 | 2013-07-09 03:39:35 +0000 | [diff] [blame] | 437 | size_t SpaceToSkip = Data.size(); |
| 438 | // If it's odd, add 1 to make it even. |
| 439 | if (SpaceToSkip & 1) |
Kevin Enderby | da9dd05 | 2015-10-21 17:13:20 +0000 | [diff] [blame] | 440 | ++SpaceToSkip; |
Rafael Espindola | 747bc07 | 2013-07-09 03:39:35 +0000 | [diff] [blame] | 441 | |
Kevin Enderby | da9dd05 | 2015-10-21 17:13:20 +0000 | [diff] [blame] | 442 | const char *NextLoc = Data.data() + SpaceToSkip; |
Rafael Espindola | 747bc07 | 2013-07-09 03:39:35 +0000 | [diff] [blame] | 443 | |
Kevin Enderby | 7a96942 | 2015-11-05 19:24:56 +0000 | [diff] [blame] | 444 | // Check to see if this is at the end of the archive. |
| 445 | if (NextLoc == Parent->Data.getBufferEnd()) |
Lang Hames | a5e873e | 2016-10-05 21:20:00 +0000 | [diff] [blame] | 446 | return Child(nullptr, nullptr, nullptr); |
Rafael Espindola | 747bc07 | 2013-07-09 03:39:35 +0000 | [diff] [blame] | 447 | |
Kevin Enderby | 7a96942 | 2015-11-05 19:24:56 +0000 | [diff] [blame] | 448 | // Check to see if this is past the end of the archive. |
Kevin Enderby | 95b0842 | 2016-07-25 20:36:36 +0000 | [diff] [blame] | 449 | if (NextLoc > Parent->Data.getBufferEnd()) { |
Kevin Enderby | 31b07f1 | 2016-07-29 22:32:02 +0000 | [diff] [blame] | 450 | std::string Msg("offset to next archive member past the end of the archive " |
| 451 | "after member "); |
Kevin Enderby | f458603 | 2016-07-29 17:44:13 +0000 | [diff] [blame] | 452 | Expected<StringRef> NameOrErr = getName(); |
| 453 | if (!NameOrErr) { |
| 454 | consumeError(NameOrErr.takeError()); |
Kevin Enderby | 95b0842 | 2016-07-25 20:36:36 +0000 | [diff] [blame] | 455 | uint64_t Offset = Data.data() - Parent->getData().data(); |
| 456 | return malformedError(Msg + "at offset " + Twine(Offset)); |
| 457 | } else |
Kevin Enderby | 31b07f1 | 2016-07-29 22:32:02 +0000 | [diff] [blame] | 458 | return malformedError(Msg + NameOrErr.get()); |
Kevin Enderby | 95b0842 | 2016-07-25 20:36:36 +0000 | [diff] [blame] | 459 | } |
Kevin Enderby | 7a96942 | 2015-11-05 19:24:56 +0000 | [diff] [blame] | 460 | |
Mehdi Amini | 41af430 | 2016-11-11 04:28:40 +0000 | [diff] [blame] | 461 | Error Err = Error::success(); |
Kevin Enderby | 6524bd8 | 2016-07-19 20:47:07 +0000 | [diff] [blame] | 462 | Child Ret(Parent, NextLoc, &Err); |
| 463 | if (Err) |
| 464 | return std::move(Err); |
Kevin Enderby | 7a96942 | 2015-11-05 19:24:56 +0000 | [diff] [blame] | 465 | return Ret; |
Rafael Espindola | 747bc07 | 2013-07-09 03:39:35 +0000 | [diff] [blame] | 466 | } |
| 467 | |
Kevin Enderby | 13023a1 | 2015-01-15 23:19:11 +0000 | [diff] [blame] | 468 | uint64_t Archive::Child::getChildOffset() const { |
| 469 | const char *a = Parent->Data.getBuffer().data(); |
| 470 | const char *c = Data.data(); |
| 471 | uint64_t offset = c - a; |
| 472 | return offset; |
| 473 | } |
| 474 | |
Kevin Enderby | f458603 | 2016-07-29 17:44:13 +0000 | [diff] [blame] | 475 | Expected<StringRef> Archive::Child::getName() const { |
| 476 | Expected<uint64_t> RawSizeOrErr = getRawSize(); |
| 477 | if (!RawSizeOrErr) |
| 478 | return RawSizeOrErr.takeError(); |
| 479 | uint64_t RawSize = RawSizeOrErr.get(); |
| 480 | Expected<StringRef> NameOrErr = Header.getName(Header.getSizeOf() + RawSize); |
| 481 | if (!NameOrErr) |
| 482 | return NameOrErr.takeError(); |
| 483 | StringRef Name = NameOrErr.get(); |
| 484 | return Name; |
Michael J. Spencer | d3b7b12 | 2011-09-27 19:36:55 +0000 | [diff] [blame] | 485 | } |
| 486 | |
Kevin Enderby | f458603 | 2016-07-29 17:44:13 +0000 | [diff] [blame] | 487 | Expected<MemoryBufferRef> Archive::Child::getMemoryBufferRef() const { |
| 488 | Expected<StringRef> NameOrErr = getName(); |
| 489 | if (!NameOrErr) |
| 490 | return NameOrErr.takeError(); |
Rafael Espindola | ae46002 | 2014-06-16 16:08:36 +0000 | [diff] [blame] | 491 | StringRef Name = NameOrErr.get(); |
Kevin Enderby | 27e85bd | 2016-08-03 21:57:47 +0000 | [diff] [blame] | 492 | Expected<StringRef> Buf = getBuffer(); |
| 493 | if (!Buf) |
| 494 | return Buf.takeError(); |
Rafael Espindola | 4b83cb5 | 2015-07-14 22:18:43 +0000 | [diff] [blame] | 495 | return MemoryBufferRef(*Buf, Name); |
Rafael Espindola | ae46002 | 2014-06-16 16:08:36 +0000 | [diff] [blame] | 496 | } |
| 497 | |
Kevin Enderby | ac9e155 | 2016-05-17 17:10:12 +0000 | [diff] [blame] | 498 | Expected<std::unique_ptr<Binary>> |
Rafael Espindola | ae46002 | 2014-06-16 16:08:36 +0000 | [diff] [blame] | 499 | Archive::Child::getAsBinary(LLVMContext *Context) const { |
Kevin Enderby | f458603 | 2016-07-29 17:44:13 +0000 | [diff] [blame] | 500 | Expected<MemoryBufferRef> BuffOrErr = getMemoryBufferRef(); |
| 501 | if (!BuffOrErr) |
| 502 | return BuffOrErr.takeError(); |
Rafael Espindola | c3f9b5a | 2014-06-23 21:53:12 +0000 | [diff] [blame] | 503 | |
Kevin Enderby | 3fcdf6a | 2016-04-06 22:14:09 +0000 | [diff] [blame] | 504 | auto BinaryOrErr = createBinary(BuffOrErr.get(), Context); |
| 505 | if (BinaryOrErr) |
| 506 | return std::move(*BinaryOrErr); |
Kevin Enderby | ac9e155 | 2016-05-17 17:10:12 +0000 | [diff] [blame] | 507 | return BinaryOrErr.takeError(); |
Michael J. Spencer | d3b7b12 | 2011-09-27 19:36:55 +0000 | [diff] [blame] | 508 | } |
| 509 | |
Kevin Enderby | c60a321 | 2016-06-29 20:35:44 +0000 | [diff] [blame] | 510 | Expected<std::unique_ptr<Archive>> Archive::create(MemoryBufferRef Source) { |
Mehdi Amini | 41af430 | 2016-11-11 04:28:40 +0000 | [diff] [blame] | 511 | Error Err = Error::success(); |
Kevin Enderby | c60a321 | 2016-06-29 20:35:44 +0000 | [diff] [blame] | 512 | std::unique_ptr<Archive> Ret(new Archive(Source, Err)); |
| 513 | if (Err) |
| 514 | return std::move(Err); |
Rafael Espindola | f557713 | 2014-07-31 03:36:00 +0000 | [diff] [blame] | 515 | return std::move(Ret); |
Rafael Espindola | 692410e | 2014-01-21 23:06:54 +0000 | [diff] [blame] | 516 | } |
| 517 | |
Rafael Espindola | 4335876 | 2015-10-31 21:44:42 +0000 | [diff] [blame] | 518 | void Archive::setFirstRegular(const Child &C) { |
| 519 | FirstRegularData = C.Data; |
| 520 | FirstRegularStartOfFile = C.StartOfFile; |
| 521 | } |
| 522 | |
Kevin Enderby | c60a321 | 2016-06-29 20:35:44 +0000 | [diff] [blame] | 523 | Archive::Archive(MemoryBufferRef Source, Error &Err) |
Rafael Espindola | 4335876 | 2015-10-31 21:44:42 +0000 | [diff] [blame] | 524 | : Binary(Binary::ID_Archive, Source) { |
Lang Hames | 5e51a2e | 2016-07-22 16:11:25 +0000 | [diff] [blame] | 525 | ErrorAsOutParameter ErrAsOutParam(&Err); |
Rafael Espindola | 9d10206 | 2014-12-16 01:43:41 +0000 | [diff] [blame] | 526 | StringRef Buffer = Data.getBuffer(); |
Michael J. Spencer | d3b7b12 | 2011-09-27 19:36:55 +0000 | [diff] [blame] | 527 | // Check for sufficient magic. |
Rafael Espindola | 9d10206 | 2014-12-16 01:43:41 +0000 | [diff] [blame] | 528 | if (Buffer.startswith(ThinMagic)) { |
| 529 | IsThin = true; |
| 530 | } else if (Buffer.startswith(Magic)) { |
| 531 | IsThin = false; |
| 532 | } else { |
Kevin Enderby | c60a321 | 2016-06-29 20:35:44 +0000 | [diff] [blame] | 533 | Err = make_error<GenericBinaryError>("File too small to be an archive", |
| 534 | object_error::invalid_file_type); |
Michael J. Spencer | d3b7b12 | 2011-09-27 19:36:55 +0000 | [diff] [blame] | 535 | return; |
| 536 | } |
| 537 | |
Kevin Enderby | f458603 | 2016-07-29 17:44:13 +0000 | [diff] [blame] | 538 | // Make sure Format is initialized before any call to |
| 539 | // ArchiveMemberHeader::getName() is made. This could be a valid empty |
| 540 | // archive which is the same in all formats. So claiming it to be gnu to is |
| 541 | // fine if not totally correct before we look for a string table or table of |
| 542 | // contents. |
| 543 | Format = K_GNU; |
| 544 | |
Michael J. Spencer | e03ea9c | 2011-11-02 19:33:12 +0000 | [diff] [blame] | 545 | // Get the special members. |
Lang Hames | fc20962 | 2016-07-14 02:24:01 +0000 | [diff] [blame] | 546 | child_iterator I = child_begin(Err, false); |
| 547 | if (Err) |
Kevin Enderby | 7a96942 | 2015-11-05 19:24:56 +0000 | [diff] [blame] | 548 | return; |
| 549 | child_iterator E = child_end(); |
Michael J. Spencer | d3b7b12 | 2011-09-27 19:36:55 +0000 | [diff] [blame] | 550 | |
Kevin Enderby | f458603 | 2016-07-29 17:44:13 +0000 | [diff] [blame] | 551 | // See if this is a valid empty archive and if so return. |
Kevin Enderby | 7a96942 | 2015-11-05 19:24:56 +0000 | [diff] [blame] | 552 | if (I == E) { |
Kevin Enderby | c60a321 | 2016-06-29 20:35:44 +0000 | [diff] [blame] | 553 | Err = Error::success(); |
Rafael Espindola | 88ae7dd | 2013-07-03 15:57:14 +0000 | [diff] [blame] | 554 | return; |
| 555 | } |
Lang Hames | fc20962 | 2016-07-14 02:24:01 +0000 | [diff] [blame] | 556 | const Child *C = &*I; |
Rafael Espindola | 88ae7dd | 2013-07-03 15:57:14 +0000 | [diff] [blame] | 557 | |
Kevin Enderby | 7a96942 | 2015-11-05 19:24:56 +0000 | [diff] [blame] | 558 | auto Increment = [&]() { |
| 559 | ++I; |
Lang Hames | fc20962 | 2016-07-14 02:24:01 +0000 | [diff] [blame] | 560 | if (Err) |
Kevin Enderby | 7a96942 | 2015-11-05 19:24:56 +0000 | [diff] [blame] | 561 | return true; |
Lang Hames | fc20962 | 2016-07-14 02:24:01 +0000 | [diff] [blame] | 562 | C = &*I; |
Kevin Enderby | 7a96942 | 2015-11-05 19:24:56 +0000 | [diff] [blame] | 563 | return false; |
| 564 | }; |
| 565 | |
Kevin Enderby | f458603 | 2016-07-29 17:44:13 +0000 | [diff] [blame] | 566 | Expected<StringRef> NameOrErr = C->getRawName(); |
| 567 | if (!NameOrErr) { |
| 568 | Err = NameOrErr.takeError(); |
| 569 | return; |
| 570 | } |
| 571 | StringRef Name = NameOrErr.get(); |
Michael J. Spencer | d3b7b12 | 2011-09-27 19:36:55 +0000 | [diff] [blame] | 572 | |
Shankar Easwaran | 15b28be | 2012-11-13 18:38:42 +0000 | [diff] [blame] | 573 | // Below is the pattern that is used to figure out the archive format |
| 574 | // GNU archive format |
Rafael Espindola | 88ae7dd | 2013-07-03 15:57:14 +0000 | [diff] [blame] | 575 | // First member : / (may exist, if it exists, points to the symbol table ) |
Shankar Easwaran | 15b28be | 2012-11-13 18:38:42 +0000 | [diff] [blame] | 576 | // Second member : // (may exist, if it exists, points to the string table) |
| 577 | // Note : The string table is used if the filename exceeds 15 characters |
| 578 | // BSD archive format |
Rafael Espindola | 5550992 | 2013-07-10 22:07:59 +0000 | [diff] [blame] | 579 | // First member : __.SYMDEF or "__.SYMDEF SORTED" (the symbol table) |
| 580 | // There is no string table, if the filename exceeds 15 characters or has a |
| 581 | // embedded space, the filename has #1/<size>, The size represents the size |
Shankar Easwaran | 15b28be | 2012-11-13 18:38:42 +0000 | [diff] [blame] | 582 | // of the filename that needs to be read after the archive header |
| 583 | // COFF archive format |
| 584 | // First member : / |
| 585 | // Second member : / (provides a directory of symbols) |
Rui Ueyama | f4d0a8c | 2013-06-03 00:27:03 +0000 | [diff] [blame] | 586 | // Third member : // (may exist, if it exists, contains the string table) |
| 587 | // Note: Microsoft PE/COFF Spec 8.3 says that the third member is present |
| 588 | // even if the string table is empty. However, lib.exe does not in fact |
| 589 | // seem to create the third member if there's no member whose filename |
| 590 | // exceeds 15 characters. So the third member is optional. |
Rafael Espindola | 88ae7dd | 2013-07-03 15:57:14 +0000 | [diff] [blame] | 591 | |
Kevin Enderby | ae108ff | 2016-06-17 22:16:06 +0000 | [diff] [blame] | 592 | if (Name == "__.SYMDEF" || Name == "__.SYMDEF_64") { |
| 593 | if (Name == "__.SYMDEF") |
| 594 | Format = K_BSD; |
| 595 | else // Name == "__.SYMDEF_64" |
| 596 | Format = K_DARWIN64; |
Kevin Enderby | 27e85bd | 2016-08-03 21:57:47 +0000 | [diff] [blame] | 597 | // We know that the symbol table is not an external file, but we still must |
| 598 | // check any Expected<> return value. |
| 599 | Expected<StringRef> BufOrErr = C->getBuffer(); |
| 600 | if (!BufOrErr) { |
| 601 | Err = BufOrErr.takeError(); |
| 602 | return; |
| 603 | } |
| 604 | SymbolTable = BufOrErr.get(); |
Kevin Enderby | 7a96942 | 2015-11-05 19:24:56 +0000 | [diff] [blame] | 605 | if (Increment()) |
| 606 | return; |
| 607 | setFirstRegular(*C); |
| 608 | |
Kevin Enderby | c60a321 | 2016-06-29 20:35:44 +0000 | [diff] [blame] | 609 | Err = Error::success(); |
Rafael Espindola | 88ae7dd | 2013-07-03 15:57:14 +0000 | [diff] [blame] | 610 | return; |
| 611 | } |
| 612 | |
Rafael Espindola | 5550992 | 2013-07-10 22:07:59 +0000 | [diff] [blame] | 613 | if (Name.startswith("#1/")) { |
| 614 | Format = K_BSD; |
| 615 | // We know this is BSD, so getName will work since there is no string table. |
Kevin Enderby | f458603 | 2016-07-29 17:44:13 +0000 | [diff] [blame] | 616 | Expected<StringRef> NameOrErr = C->getName(); |
| 617 | if (!NameOrErr) { |
| 618 | Err = NameOrErr.takeError(); |
Rafael Espindola | 5550992 | 2013-07-10 22:07:59 +0000 | [diff] [blame] | 619 | return; |
Kevin Enderby | c60a321 | 2016-06-29 20:35:44 +0000 | [diff] [blame] | 620 | } |
Rafael Espindola | ae46002 | 2014-06-16 16:08:36 +0000 | [diff] [blame] | 621 | Name = NameOrErr.get(); |
Nick Kledzik | f44dbda | 2014-11-12 01:37:45 +0000 | [diff] [blame] | 622 | if (Name == "__.SYMDEF SORTED" || Name == "__.SYMDEF") { |
Kevin Enderby | 27e85bd | 2016-08-03 21:57:47 +0000 | [diff] [blame] | 623 | // We know that the symbol table is not an external file, but we still |
| 624 | // must check any Expected<> return value. |
| 625 | Expected<StringRef> BufOrErr = C->getBuffer(); |
| 626 | if (!BufOrErr) { |
| 627 | Err = BufOrErr.takeError(); |
| 628 | return; |
| 629 | } |
| 630 | SymbolTable = BufOrErr.get(); |
Kevin Enderby | 7a96942 | 2015-11-05 19:24:56 +0000 | [diff] [blame] | 631 | if (Increment()) |
| 632 | return; |
Rafael Espindola | 3e2b21c | 2013-07-12 20:21:39 +0000 | [diff] [blame] | 633 | } |
Kevin Enderby | ae108ff | 2016-06-17 22:16:06 +0000 | [diff] [blame] | 634 | else if (Name == "__.SYMDEF_64 SORTED" || Name == "__.SYMDEF_64") { |
| 635 | Format = K_DARWIN64; |
Kevin Enderby | 27e85bd | 2016-08-03 21:57:47 +0000 | [diff] [blame] | 636 | // We know that the symbol table is not an external file, but we still |
| 637 | // must check any Expected<> return value. |
| 638 | Expected<StringRef> BufOrErr = C->getBuffer(); |
| 639 | if (!BufOrErr) { |
| 640 | Err = BufOrErr.takeError(); |
| 641 | return; |
| 642 | } |
| 643 | SymbolTable = BufOrErr.get(); |
Kevin Enderby | ae108ff | 2016-06-17 22:16:06 +0000 | [diff] [blame] | 644 | if (Increment()) |
| 645 | return; |
| 646 | } |
Kevin Enderby | 7a96942 | 2015-11-05 19:24:56 +0000 | [diff] [blame] | 647 | setFirstRegular(*C); |
Rafael Espindola | 5550992 | 2013-07-10 22:07:59 +0000 | [diff] [blame] | 648 | return; |
| 649 | } |
| 650 | |
Simon Atanasyan | 1d902b7 | 2015-02-17 18:54:22 +0000 | [diff] [blame] | 651 | // MIPS 64-bit ELF archives use a special format of a symbol table. |
| 652 | // This format is marked by `ar_name` field equals to "/SYM64/". |
| 653 | // For detailed description see page 96 in the following document: |
| 654 | // http://techpubs.sgi.com/library/manuals/4000/007-4658-001/pdf/007-4658-001.pdf |
| 655 | |
| 656 | bool has64SymTable = false; |
| 657 | if (Name == "/" || Name == "/SYM64/") { |
Kevin Enderby | 27e85bd | 2016-08-03 21:57:47 +0000 | [diff] [blame] | 658 | // We know that the symbol table is not an external file, but we still |
| 659 | // must check any Expected<> return value. |
| 660 | Expected<StringRef> BufOrErr = C->getBuffer(); |
| 661 | if (!BufOrErr) { |
| 662 | Err = BufOrErr.takeError(); |
| 663 | return; |
| 664 | } |
| 665 | SymbolTable = BufOrErr.get(); |
Simon Atanasyan | 1d902b7 | 2015-02-17 18:54:22 +0000 | [diff] [blame] | 666 | if (Name == "/SYM64/") |
| 667 | has64SymTable = true; |
Rafael Espindola | 88ae7dd | 2013-07-03 15:57:14 +0000 | [diff] [blame] | 668 | |
Kevin Enderby | 7a96942 | 2015-11-05 19:24:56 +0000 | [diff] [blame] | 669 | if (Increment()) |
| 670 | return; |
| 671 | if (I == E) { |
Kevin Enderby | c60a321 | 2016-06-29 20:35:44 +0000 | [diff] [blame] | 672 | Err = Error::success(); |
Michael J. Spencer | 04614ff | 2013-01-10 00:07:38 +0000 | [diff] [blame] | 673 | return; |
| 674 | } |
Kevin Enderby | f458603 | 2016-07-29 17:44:13 +0000 | [diff] [blame] | 675 | Expected<StringRef> NameOrErr = C->getRawName(); |
| 676 | if (!NameOrErr) { |
| 677 | Err = NameOrErr.takeError(); |
| 678 | return; |
| 679 | } |
| 680 | Name = NameOrErr.get(); |
Rafael Espindola | 88ae7dd | 2013-07-03 15:57:14 +0000 | [diff] [blame] | 681 | } |
| 682 | |
Rafael Espindola | 6cc2dc7 | 2013-07-05 03:35:15 +0000 | [diff] [blame] | 683 | if (Name == "//") { |
Simon Atanasyan | 1d902b7 | 2015-02-17 18:54:22 +0000 | [diff] [blame] | 684 | Format = has64SymTable ? K_MIPS64 : K_GNU; |
Kevin Enderby | 27e85bd | 2016-08-03 21:57:47 +0000 | [diff] [blame] | 685 | // The string table is never an external member, but we still |
| 686 | // must check any Expected<> return value. |
| 687 | Expected<StringRef> BufOrErr = C->getBuffer(); |
| 688 | if (!BufOrErr) { |
| 689 | Err = BufOrErr.takeError(); |
| 690 | return; |
| 691 | } |
| 692 | StringTable = BufOrErr.get(); |
Kevin Enderby | 7a96942 | 2015-11-05 19:24:56 +0000 | [diff] [blame] | 693 | if (Increment()) |
| 694 | return; |
| 695 | setFirstRegular(*C); |
Kevin Enderby | c60a321 | 2016-06-29 20:35:44 +0000 | [diff] [blame] | 696 | Err = Error::success(); |
Rafael Espindola | 88ae7dd | 2013-07-03 15:57:14 +0000 | [diff] [blame] | 697 | return; |
| 698 | } |
| 699 | |
Rafael Espindola | 6cc2dc7 | 2013-07-05 03:35:15 +0000 | [diff] [blame] | 700 | if (Name[0] != '/') { |
Simon Atanasyan | 1d902b7 | 2015-02-17 18:54:22 +0000 | [diff] [blame] | 701 | Format = has64SymTable ? K_MIPS64 : K_GNU; |
Kevin Enderby | 7a96942 | 2015-11-05 19:24:56 +0000 | [diff] [blame] | 702 | setFirstRegular(*C); |
Kevin Enderby | c60a321 | 2016-06-29 20:35:44 +0000 | [diff] [blame] | 703 | Err = Error::success(); |
Rafael Espindola | 88ae7dd | 2013-07-03 15:57:14 +0000 | [diff] [blame] | 704 | return; |
| 705 | } |
| 706 | |
Rafael Espindola | 6cc2dc7 | 2013-07-05 03:35:15 +0000 | [diff] [blame] | 707 | if (Name != "/") { |
Kevin Enderby | c60a321 | 2016-06-29 20:35:44 +0000 | [diff] [blame] | 708 | Err = errorCodeToError(object_error::parse_failed); |
Rafael Espindola | 88ae7dd | 2013-07-03 15:57:14 +0000 | [diff] [blame] | 709 | return; |
| 710 | } |
| 711 | |
| 712 | Format = K_COFF; |
Kevin Enderby | 27e85bd | 2016-08-03 21:57:47 +0000 | [diff] [blame] | 713 | // We know that the symbol table is not an external file, but we still |
| 714 | // must check any Expected<> return value. |
| 715 | Expected<StringRef> BufOrErr = C->getBuffer(); |
| 716 | if (!BufOrErr) { |
| 717 | Err = BufOrErr.takeError(); |
| 718 | return; |
| 719 | } |
| 720 | SymbolTable = BufOrErr.get(); |
Rafael Espindola | 88ae7dd | 2013-07-03 15:57:14 +0000 | [diff] [blame] | 721 | |
Kevin Enderby | 7a96942 | 2015-11-05 19:24:56 +0000 | [diff] [blame] | 722 | if (Increment()) |
| 723 | return; |
| 724 | |
| 725 | if (I == E) { |
| 726 | setFirstRegular(*C); |
Kevin Enderby | c60a321 | 2016-06-29 20:35:44 +0000 | [diff] [blame] | 727 | Err = Error::success(); |
Rafael Espindola | 88ae7dd | 2013-07-03 15:57:14 +0000 | [diff] [blame] | 728 | return; |
| 729 | } |
| 730 | |
Kevin Enderby | f458603 | 2016-07-29 17:44:13 +0000 | [diff] [blame] | 731 | NameOrErr = C->getRawName(); |
| 732 | if (!NameOrErr) { |
| 733 | Err = NameOrErr.takeError(); |
| 734 | return; |
| 735 | } |
| 736 | Name = NameOrErr.get(); |
Rafael Espindola | 88ae7dd | 2013-07-03 15:57:14 +0000 | [diff] [blame] | 737 | |
Rafael Espindola | 3e2b21c | 2013-07-12 20:21:39 +0000 | [diff] [blame] | 738 | if (Name == "//") { |
Kevin Enderby | 27e85bd | 2016-08-03 21:57:47 +0000 | [diff] [blame] | 739 | // The string table is never an external member, but we still |
| 740 | // must check any Expected<> return value. |
| 741 | Expected<StringRef> BufOrErr = C->getBuffer(); |
| 742 | if (!BufOrErr) { |
| 743 | Err = BufOrErr.takeError(); |
| 744 | return; |
| 745 | } |
| 746 | StringTable = BufOrErr.get(); |
Kevin Enderby | 7a96942 | 2015-11-05 19:24:56 +0000 | [diff] [blame] | 747 | if (Increment()) |
| 748 | return; |
Rafael Espindola | 3e2b21c | 2013-07-12 20:21:39 +0000 | [diff] [blame] | 749 | } |
Rafael Espindola | 88ae7dd | 2013-07-03 15:57:14 +0000 | [diff] [blame] | 750 | |
Kevin Enderby | 7a96942 | 2015-11-05 19:24:56 +0000 | [diff] [blame] | 751 | setFirstRegular(*C); |
Kevin Enderby | c60a321 | 2016-06-29 20:35:44 +0000 | [diff] [blame] | 752 | Err = Error::success(); |
Michael J. Spencer | d3b7b12 | 2011-09-27 19:36:55 +0000 | [diff] [blame] | 753 | } |
| 754 | |
Lang Hames | fc20962 | 2016-07-14 02:24:01 +0000 | [diff] [blame] | 755 | Archive::child_iterator Archive::child_begin(Error &Err, |
| 756 | bool SkipInternal) const { |
Rui Ueyama | 14a5ca0 | 2016-09-30 17:54:31 +0000 | [diff] [blame] | 757 | if (isEmpty()) |
Rafael Espindola | 23a9750 | 2014-01-21 16:09:45 +0000 | [diff] [blame] | 758 | return child_end(); |
Rafael Espindola | 3e2b21c | 2013-07-12 20:21:39 +0000 | [diff] [blame] | 759 | |
| 760 | if (SkipInternal) |
Lang Hames | fc20962 | 2016-07-14 02:24:01 +0000 | [diff] [blame] | 761 | return child_iterator(Child(this, FirstRegularData, |
| 762 | FirstRegularStartOfFile), |
| 763 | &Err); |
Rafael Espindola | 3e2b21c | 2013-07-12 20:21:39 +0000 | [diff] [blame] | 764 | |
Rafael Espindola | 48af1c2 | 2014-08-19 18:44:46 +0000 | [diff] [blame] | 765 | const char *Loc = Data.getBufferStart() + strlen(Magic); |
Kevin Enderby | 6524bd8 | 2016-07-19 20:47:07 +0000 | [diff] [blame] | 766 | Child C(this, Loc, &Err); |
| 767 | if (Err) |
Lang Hames | fc20962 | 2016-07-14 02:24:01 +0000 | [diff] [blame] | 768 | return child_end(); |
Lang Hames | fc20962 | 2016-07-14 02:24:01 +0000 | [diff] [blame] | 769 | return child_iterator(C, &Err); |
Michael J. Spencer | d3b7b12 | 2011-09-27 19:36:55 +0000 | [diff] [blame] | 770 | } |
| 771 | |
Rafael Espindola | 23a9750 | 2014-01-21 16:09:45 +0000 | [diff] [blame] | 772 | Archive::child_iterator Archive::child_end() const { |
Lang Hames | a5e873e | 2016-10-05 21:20:00 +0000 | [diff] [blame] | 773 | return child_iterator(Child(nullptr, nullptr, nullptr), nullptr); |
Michael J. Spencer | d3b7b12 | 2011-09-27 19:36:55 +0000 | [diff] [blame] | 774 | } |
Michael J. Spencer | e03ea9c | 2011-11-02 19:33:12 +0000 | [diff] [blame] | 775 | |
Rafael Espindola | ae46002 | 2014-06-16 16:08:36 +0000 | [diff] [blame] | 776 | StringRef Archive::Symbol::getName() const { |
Rafael Espindola | 2b05416 | 2015-07-14 01:06:16 +0000 | [diff] [blame] | 777 | return Parent->getSymbolTable().begin() + StringIndex; |
Michael J. Spencer | e03ea9c | 2011-11-02 19:33:12 +0000 | [diff] [blame] | 778 | } |
| 779 | |
Kevin Enderby | 27e85bd | 2016-08-03 21:57:47 +0000 | [diff] [blame] | 780 | Expected<Archive::Child> Archive::Symbol::getMember() const { |
Rafael Espindola | 2b05416 | 2015-07-14 01:06:16 +0000 | [diff] [blame] | 781 | const char *Buf = Parent->getSymbolTable().begin(); |
Simon Atanasyan | 1d902b7 | 2015-02-17 18:54:22 +0000 | [diff] [blame] | 782 | const char *Offsets = Buf; |
Kevin Enderby | ae108ff | 2016-06-17 22:16:06 +0000 | [diff] [blame] | 783 | if (Parent->kind() == K_MIPS64 || Parent->kind() == K_DARWIN64) |
Simon Atanasyan | 1d902b7 | 2015-02-17 18:54:22 +0000 | [diff] [blame] | 784 | Offsets += sizeof(uint64_t); |
| 785 | else |
| 786 | Offsets += sizeof(uint32_t); |
Michael J. Spencer | 4e92d5b | 2012-11-14 00:04:13 +0000 | [diff] [blame] | 787 | uint32_t Offset = 0; |
Shankar Easwaran | 15b28be | 2012-11-13 18:38:42 +0000 | [diff] [blame] | 788 | if (Parent->kind() == K_GNU) { |
Rui Ueyama | 3206b79 | 2015-03-02 21:19:12 +0000 | [diff] [blame] | 789 | Offset = read32be(Offsets + SymbolIndex * 4); |
Simon Atanasyan | 1d902b7 | 2015-02-17 18:54:22 +0000 | [diff] [blame] | 790 | } else if (Parent->kind() == K_MIPS64) { |
Rui Ueyama | 3206b79 | 2015-03-02 21:19:12 +0000 | [diff] [blame] | 791 | Offset = read64be(Offsets + SymbolIndex * 8); |
Shankar Easwaran | 15b28be | 2012-11-13 18:38:42 +0000 | [diff] [blame] | 792 | } else if (Parent->kind() == K_BSD) { |
Kevin Enderby | 8c50dbb | 2014-07-08 22:10:02 +0000 | [diff] [blame] | 793 | // The SymbolIndex is an index into the ranlib structs that start at |
| 794 | // Offsets (the first uint32_t is the number of bytes of the ranlib |
| 795 | // structs). The ranlib structs are a pair of uint32_t's the first |
| 796 | // being a string table offset and the second being the offset into |
| 797 | // the archive of the member that defines the symbol. Which is what |
| 798 | // is needed here. |
Rui Ueyama | 3206b79 | 2015-03-02 21:19:12 +0000 | [diff] [blame] | 799 | Offset = read32le(Offsets + SymbolIndex * 8 + 4); |
Kevin Enderby | ae108ff | 2016-06-17 22:16:06 +0000 | [diff] [blame] | 800 | } else if (Parent->kind() == K_DARWIN64) { |
| 801 | // The SymbolIndex is an index into the ranlib_64 structs that start at |
| 802 | // Offsets (the first uint64_t is the number of bytes of the ranlib_64 |
| 803 | // structs). The ranlib_64 structs are a pair of uint64_t's the first |
| 804 | // being a string table offset and the second being the offset into |
| 805 | // the archive of the member that defines the symbol. Which is what |
| 806 | // is needed here. |
| 807 | Offset = read64le(Offsets + SymbolIndex * 16 + 8); |
Shankar Easwaran | 15b28be | 2012-11-13 18:38:42 +0000 | [diff] [blame] | 808 | } else { |
Michael J. Spencer | 4e92d5b | 2012-11-14 00:04:13 +0000 | [diff] [blame] | 809 | // Skip offsets. |
Rui Ueyama | 3206b79 | 2015-03-02 21:19:12 +0000 | [diff] [blame] | 810 | uint32_t MemberCount = read32le(Buf); |
| 811 | Buf += MemberCount * 4 + 4; |
Michael J. Spencer | 4e92d5b | 2012-11-14 00:04:13 +0000 | [diff] [blame] | 812 | |
Rui Ueyama | 3206b79 | 2015-03-02 21:19:12 +0000 | [diff] [blame] | 813 | uint32_t SymbolCount = read32le(Buf); |
Michael J. Spencer | 4e92d5b | 2012-11-14 00:04:13 +0000 | [diff] [blame] | 814 | if (SymbolIndex >= SymbolCount) |
Kevin Enderby | 27e85bd | 2016-08-03 21:57:47 +0000 | [diff] [blame] | 815 | return errorCodeToError(object_error::parse_failed); |
Michael J. Spencer | 4e92d5b | 2012-11-14 00:04:13 +0000 | [diff] [blame] | 816 | |
Matt Beaumont-Gay | 68e0b6a | 2012-11-14 00:21:27 +0000 | [diff] [blame] | 817 | // Skip SymbolCount to get to the indices table. |
Rui Ueyama | 3206b79 | 2015-03-02 21:19:12 +0000 | [diff] [blame] | 818 | const char *Indices = Buf + 4; |
Michael J. Spencer | 4e92d5b | 2012-11-14 00:04:13 +0000 | [diff] [blame] | 819 | |
| 820 | // Get the index of the offset in the file member offset table for this |
| 821 | // symbol. |
Rui Ueyama | 3206b79 | 2015-03-02 21:19:12 +0000 | [diff] [blame] | 822 | uint16_t OffsetIndex = read16le(Indices + SymbolIndex * 2); |
Michael J. Spencer | 4e92d5b | 2012-11-14 00:04:13 +0000 | [diff] [blame] | 823 | // Subtract 1 since OffsetIndex is 1 based. |
| 824 | --OffsetIndex; |
| 825 | |
| 826 | if (OffsetIndex >= MemberCount) |
Kevin Enderby | 27e85bd | 2016-08-03 21:57:47 +0000 | [diff] [blame] | 827 | return errorCodeToError(object_error::parse_failed); |
Michael J. Spencer | 4e92d5b | 2012-11-14 00:04:13 +0000 | [diff] [blame] | 828 | |
Rui Ueyama | 3206b79 | 2015-03-02 21:19:12 +0000 | [diff] [blame] | 829 | Offset = read32le(Offsets + OffsetIndex * 4); |
Shankar Easwaran | 15b28be | 2012-11-13 18:38:42 +0000 | [diff] [blame] | 830 | } |
Michael J. Spencer | e03ea9c | 2011-11-02 19:33:12 +0000 | [diff] [blame] | 831 | |
Michael J. Spencer | 4e92d5b | 2012-11-14 00:04:13 +0000 | [diff] [blame] | 832 | const char *Loc = Parent->getData().begin() + Offset; |
Mehdi Amini | 41af430 | 2016-11-11 04:28:40 +0000 | [diff] [blame] | 833 | Error Err = Error::success(); |
Kevin Enderby | 6524bd8 | 2016-07-19 20:47:07 +0000 | [diff] [blame] | 834 | Child C(Parent, Loc, &Err); |
| 835 | if (Err) |
Kevin Enderby | 27e85bd | 2016-08-03 21:57:47 +0000 | [diff] [blame] | 836 | return std::move(Err); |
Kevin Enderby | 7a96942 | 2015-11-05 19:24:56 +0000 | [diff] [blame] | 837 | return C; |
Michael J. Spencer | e03ea9c | 2011-11-02 19:33:12 +0000 | [diff] [blame] | 838 | } |
| 839 | |
| 840 | Archive::Symbol Archive::Symbol::getNext() const { |
| 841 | Symbol t(*this); |
Kevin Enderby | 8c50dbb | 2014-07-08 22:10:02 +0000 | [diff] [blame] | 842 | if (Parent->kind() == K_BSD) { |
| 843 | // t.StringIndex is an offset from the start of the __.SYMDEF or |
| 844 | // "__.SYMDEF SORTED" member into the string table for the ranlib |
| 845 | // struct indexed by t.SymbolIndex . To change t.StringIndex to the |
| 846 | // offset in the string table for t.SymbolIndex+1 we subtract the |
| 847 | // its offset from the start of the string table for t.SymbolIndex |
| 848 | // and add the offset of the string table for t.SymbolIndex+1. |
| 849 | |
| 850 | // The __.SYMDEF or "__.SYMDEF SORTED" member starts with a uint32_t |
| 851 | // which is the number of bytes of ranlib structs that follow. The ranlib |
| 852 | // structs are a pair of uint32_t's the first being a string table offset |
| 853 | // and the second being the offset into the archive of the member that |
| 854 | // define the symbol. After that the next uint32_t is the byte count of |
| 855 | // the string table followed by the string table. |
Rafael Espindola | 2b05416 | 2015-07-14 01:06:16 +0000 | [diff] [blame] | 856 | const char *Buf = Parent->getSymbolTable().begin(); |
Kevin Enderby | 8c50dbb | 2014-07-08 22:10:02 +0000 | [diff] [blame] | 857 | uint32_t RanlibCount = 0; |
Rui Ueyama | 3206b79 | 2015-03-02 21:19:12 +0000 | [diff] [blame] | 858 | RanlibCount = read32le(Buf) / 8; |
Kevin Enderby | 8c50dbb | 2014-07-08 22:10:02 +0000 | [diff] [blame] | 859 | // If t.SymbolIndex + 1 will be past the count of symbols (the RanlibCount) |
| 860 | // don't change the t.StringIndex as we don't want to reference a ranlib |
| 861 | // past RanlibCount. |
| 862 | if (t.SymbolIndex + 1 < RanlibCount) { |
| 863 | const char *Ranlibs = Buf + 4; |
| 864 | uint32_t CurRanStrx = 0; |
| 865 | uint32_t NextRanStrx = 0; |
Rui Ueyama | 3206b79 | 2015-03-02 21:19:12 +0000 | [diff] [blame] | 866 | CurRanStrx = read32le(Ranlibs + t.SymbolIndex * 8); |
| 867 | NextRanStrx = read32le(Ranlibs + (t.SymbolIndex + 1) * 8); |
Kevin Enderby | 8c50dbb | 2014-07-08 22:10:02 +0000 | [diff] [blame] | 868 | t.StringIndex -= CurRanStrx; |
| 869 | t.StringIndex += NextRanStrx; |
| 870 | } |
| 871 | } else { |
| 872 | // Go to one past next null. |
Rafael Espindola | 2b05416 | 2015-07-14 01:06:16 +0000 | [diff] [blame] | 873 | t.StringIndex = Parent->getSymbolTable().find('\0', t.StringIndex) + 1; |
Kevin Enderby | 8c50dbb | 2014-07-08 22:10:02 +0000 | [diff] [blame] | 874 | } |
Michael J. Spencer | e03ea9c | 2011-11-02 19:33:12 +0000 | [diff] [blame] | 875 | ++t.SymbolIndex; |
| 876 | return t; |
| 877 | } |
| 878 | |
Rafael Espindola | 23a9750 | 2014-01-21 16:09:45 +0000 | [diff] [blame] | 879 | Archive::symbol_iterator Archive::symbol_begin() const { |
Rafael Espindola | b6b5f52e | 2013-07-29 12:40:31 +0000 | [diff] [blame] | 880 | if (!hasSymbolTable()) |
Rafael Espindola | fbcafc0 | 2013-07-10 20:14:22 +0000 | [diff] [blame] | 881 | return symbol_iterator(Symbol(this, 0, 0)); |
| 882 | |
Rafael Espindola | 2b05416 | 2015-07-14 01:06:16 +0000 | [diff] [blame] | 883 | const char *buf = getSymbolTable().begin(); |
Shankar Easwaran | 15b28be | 2012-11-13 18:38:42 +0000 | [diff] [blame] | 884 | if (kind() == K_GNU) { |
| 885 | uint32_t symbol_count = 0; |
Rui Ueyama | 3206b79 | 2015-03-02 21:19:12 +0000 | [diff] [blame] | 886 | symbol_count = read32be(buf); |
Shankar Easwaran | 15b28be | 2012-11-13 18:38:42 +0000 | [diff] [blame] | 887 | buf += sizeof(uint32_t) + (symbol_count * (sizeof(uint32_t))); |
Simon Atanasyan | 1d902b7 | 2015-02-17 18:54:22 +0000 | [diff] [blame] | 888 | } else if (kind() == K_MIPS64) { |
Rui Ueyama | 3206b79 | 2015-03-02 21:19:12 +0000 | [diff] [blame] | 889 | uint64_t symbol_count = read64be(buf); |
Simon Atanasyan | 1d902b7 | 2015-02-17 18:54:22 +0000 | [diff] [blame] | 890 | buf += sizeof(uint64_t) + (symbol_count * (sizeof(uint64_t))); |
Shankar Easwaran | 15b28be | 2012-11-13 18:38:42 +0000 | [diff] [blame] | 891 | } else if (kind() == K_BSD) { |
Kevin Enderby | 8c50dbb | 2014-07-08 22:10:02 +0000 | [diff] [blame] | 892 | // The __.SYMDEF or "__.SYMDEF SORTED" member starts with a uint32_t |
| 893 | // which is the number of bytes of ranlib structs that follow. The ranlib |
| 894 | // structs are a pair of uint32_t's the first being a string table offset |
| 895 | // and the second being the offset into the archive of the member that |
| 896 | // define the symbol. After that the next uint32_t is the byte count of |
| 897 | // the string table followed by the string table. |
| 898 | uint32_t ranlib_count = 0; |
Rui Ueyama | 3206b79 | 2015-03-02 21:19:12 +0000 | [diff] [blame] | 899 | ranlib_count = read32le(buf) / 8; |
Kevin Enderby | 8c50dbb | 2014-07-08 22:10:02 +0000 | [diff] [blame] | 900 | const char *ranlibs = buf + 4; |
| 901 | uint32_t ran_strx = 0; |
Rui Ueyama | 3206b79 | 2015-03-02 21:19:12 +0000 | [diff] [blame] | 902 | ran_strx = read32le(ranlibs); |
Kevin Enderby | 8c50dbb | 2014-07-08 22:10:02 +0000 | [diff] [blame] | 903 | buf += sizeof(uint32_t) + (ranlib_count * (2 * (sizeof(uint32_t)))); |
| 904 | // Skip the byte count of the string table. |
| 905 | buf += sizeof(uint32_t); |
| 906 | buf += ran_strx; |
Kevin Enderby | ae108ff | 2016-06-17 22:16:06 +0000 | [diff] [blame] | 907 | } else if (kind() == K_DARWIN64) { |
| 908 | // The __.SYMDEF_64 or "__.SYMDEF_64 SORTED" member starts with a uint64_t |
| 909 | // which is the number of bytes of ranlib_64 structs that follow. The |
| 910 | // ranlib_64 structs are a pair of uint64_t's the first being a string |
| 911 | // table offset and the second being the offset into the archive of the |
| 912 | // member that define the symbol. After that the next uint64_t is the byte |
| 913 | // count of the string table followed by the string table. |
| 914 | uint64_t ranlib_count = 0; |
| 915 | ranlib_count = read64le(buf) / 16; |
| 916 | const char *ranlibs = buf + 8; |
| 917 | uint64_t ran_strx = 0; |
| 918 | ran_strx = read64le(ranlibs); |
| 919 | buf += sizeof(uint64_t) + (ranlib_count * (2 * (sizeof(uint64_t)))); |
| 920 | // Skip the byte count of the string table. |
| 921 | buf += sizeof(uint64_t); |
| 922 | buf += ran_strx; |
Shankar Easwaran | 15b28be | 2012-11-13 18:38:42 +0000 | [diff] [blame] | 923 | } else { |
| 924 | uint32_t member_count = 0; |
| 925 | uint32_t symbol_count = 0; |
Rui Ueyama | 3206b79 | 2015-03-02 21:19:12 +0000 | [diff] [blame] | 926 | member_count = read32le(buf); |
Shankar Easwaran | 15b28be | 2012-11-13 18:38:42 +0000 | [diff] [blame] | 927 | buf += 4 + (member_count * 4); // Skip offsets. |
Rui Ueyama | 3206b79 | 2015-03-02 21:19:12 +0000 | [diff] [blame] | 928 | symbol_count = read32le(buf); |
Shankar Easwaran | 15b28be | 2012-11-13 18:38:42 +0000 | [diff] [blame] | 929 | buf += 4 + (symbol_count * 2); // Skip indices. |
| 930 | } |
Rafael Espindola | 2b05416 | 2015-07-14 01:06:16 +0000 | [diff] [blame] | 931 | uint32_t string_start_offset = buf - getSymbolTable().begin(); |
Michael J. Spencer | e03ea9c | 2011-11-02 19:33:12 +0000 | [diff] [blame] | 932 | return symbol_iterator(Symbol(this, 0, string_start_offset)); |
| 933 | } |
| 934 | |
Rafael Espindola | 23a9750 | 2014-01-21 16:09:45 +0000 | [diff] [blame] | 935 | Archive::symbol_iterator Archive::symbol_end() const { |
Rui Ueyama | 407e097 | 2015-05-26 16:20:40 +0000 | [diff] [blame] | 936 | return symbol_iterator(Symbol(this, getNumberOfSymbols(), 0)); |
| 937 | } |
Rafael Espindola | fbcafc0 | 2013-07-10 20:14:22 +0000 | [diff] [blame] | 938 | |
Rui Ueyama | 407e097 | 2015-05-26 16:20:40 +0000 | [diff] [blame] | 939 | uint32_t Archive::getNumberOfSymbols() const { |
Rafael Espindola | 483ad20 | 2015-10-08 18:06:20 +0000 | [diff] [blame] | 940 | if (!hasSymbolTable()) |
| 941 | return 0; |
Rafael Espindola | 2b05416 | 2015-07-14 01:06:16 +0000 | [diff] [blame] | 942 | const char *buf = getSymbolTable().begin(); |
Rui Ueyama | 407e097 | 2015-05-26 16:20:40 +0000 | [diff] [blame] | 943 | if (kind() == K_GNU) |
| 944 | return read32be(buf); |
| 945 | if (kind() == K_MIPS64) |
| 946 | return read64be(buf); |
| 947 | if (kind() == K_BSD) |
| 948 | return read32le(buf) / 8; |
Kevin Enderby | ae108ff | 2016-06-17 22:16:06 +0000 | [diff] [blame] | 949 | if (kind() == K_DARWIN64) |
| 950 | return read64le(buf) / 16; |
Rui Ueyama | 407e097 | 2015-05-26 16:20:40 +0000 | [diff] [blame] | 951 | uint32_t member_count = 0; |
| 952 | member_count = read32le(buf); |
| 953 | buf += 4 + (member_count * 4); // Skip offsets. |
| 954 | return read32le(buf); |
Michael J. Spencer | e03ea9c | 2011-11-02 19:33:12 +0000 | [diff] [blame] | 955 | } |
Shankar Easwaran | 15b28be | 2012-11-13 18:38:42 +0000 | [diff] [blame] | 956 | |
Lang Hames | 69f4902 | 2016-07-14 20:44:27 +0000 | [diff] [blame] | 957 | Expected<Optional<Archive::Child>> Archive::findSym(StringRef name) const { |
Rafael Espindola | 23a9750 | 2014-01-21 16:09:45 +0000 | [diff] [blame] | 958 | Archive::symbol_iterator bs = symbol_begin(); |
| 959 | Archive::symbol_iterator es = symbol_end(); |
Rafael Espindola | ae46002 | 2014-06-16 16:08:36 +0000 | [diff] [blame] | 960 | |
Shankar Easwaran | 15b28be | 2012-11-13 18:38:42 +0000 | [diff] [blame] | 961 | for (; bs != es; ++bs) { |
Rafael Espindola | ae46002 | 2014-06-16 16:08:36 +0000 | [diff] [blame] | 962 | StringRef SymName = bs->getName(); |
| 963 | if (SymName == name) { |
Lang Hames | 69f4902 | 2016-07-14 20:44:27 +0000 | [diff] [blame] | 964 | if (auto MemberOrErr = bs->getMember()) |
| 965 | return Child(*MemberOrErr); |
| 966 | else |
Kevin Enderby | 27e85bd | 2016-08-03 21:57:47 +0000 | [diff] [blame] | 967 | return MemberOrErr.takeError(); |
Shankar Easwaran | 15b28be | 2012-11-13 18:38:42 +0000 | [diff] [blame] | 968 | } |
| 969 | } |
Lang Hames | 69f4902 | 2016-07-14 20:44:27 +0000 | [diff] [blame] | 970 | return Optional<Child>(); |
Shankar Easwaran | 15b28be | 2012-11-13 18:38:42 +0000 | [diff] [blame] | 971 | } |
Rafael Espindola | b6b5f52e | 2013-07-29 12:40:31 +0000 | [diff] [blame] | 972 | |
Rui Ueyama | 14a5ca0 | 2016-09-30 17:54:31 +0000 | [diff] [blame] | 973 | // Returns true if archive file contains no member file. |
| 974 | bool Archive::isEmpty() const { return Data.getBufferSize() == 8; } |
| 975 | |
Rafael Espindola | 4a782fb | 2015-10-31 21:03:29 +0000 | [diff] [blame] | 976 | bool Archive::hasSymbolTable() const { return !SymbolTable.empty(); } |