summaryrefslogtreecommitdiff
path: root/src/support/archive.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/support/archive.cpp')
-rw-r--r--src/support/archive.cpp62
1 files changed, 39 insertions, 23 deletions
diff --git a/src/support/archive.cpp b/src/support/archive.cpp
index b9ca827e4..66f9c192a 100644
--- a/src/support/archive.cpp
+++ b/src/support/archive.cpp
@@ -16,19 +16,19 @@
#include "support/archive.h"
-#include <cstring>
#include "support/utilities.h"
+#include <cstring>
static const char* const magic = "!<arch>\n";
class ArchiveMemberHeader {
- public:
+public:
uint8_t fileName[16];
uint8_t timestamp[12];
uint8_t UID[6];
uint8_t GID[6];
uint8_t accessMode[8];
- uint8_t size[10]; // Size of data only, not including padding or header
+ uint8_t size[10]; // Size of data only, not including padding or header
uint8_t magic[2];
std::string getName() const;
@@ -42,11 +42,12 @@ std::string ArchiveMemberHeader::getName() const {
// Special name (string table or reference, or symbol table)
endChar = ' ';
} else {
- endChar = '/'; // regular name
+ endChar = '/'; // regular name
}
auto* end =
- static_cast<const uint8_t*>(memchr(fileName, endChar, sizeof(fileName)));
- if (!end) end = fileName + sizeof(fileName);
+ static_cast<const uint8_t*>(memchr(fileName, endChar, sizeof(fileName)));
+ if (!end)
+ end = fileName + sizeof(fileName);
return std::string((char*)(fileName), end - fileName);
}
@@ -60,7 +61,9 @@ uint32_t ArchiveMemberHeader::getSize() const {
return static_cast<uint32_t>(sizeInt);
}
-Archive::Archive(Buffer& b, bool& error) : data(b), symbolTable({nullptr, 0}), stringTable({nullptr, 0}), firstRegularData(nullptr) {
+Archive::Archive(Buffer& b, bool& error)
+ : data(b), symbolTable({nullptr, 0}), stringTable({nullptr, 0}),
+ firstRegularData(nullptr) {
error = false;
if (data.size() < strlen(magic) ||
memcmp(data.data(), magic, strlen(magic))) {
@@ -78,14 +81,16 @@ Archive::Archive(Buffer& b, bool& error) : data(b), symbolTable({nullptr, 0}), s
return;
}
child_iterator end = child_end();
- if (it == end) return; // Empty archive.
+ if (it == end)
+ return; // Empty archive.
const Child* c = &*it;
auto increment = [&]() {
++it;
error = it.hasError();
- if (error) return true;
+ if (error)
+ return true;
c = &*it;
return false;
};
@@ -93,13 +98,15 @@ Archive::Archive(Buffer& b, bool& error) : data(b), symbolTable({nullptr, 0}), s
std::string name = c->getRawName();
if (name == "/") {
symbolTable = c->getBuffer();
- if (increment() || it == end) return;
+ if (increment() || it == end)
+ return;
name = c->getRawName();
}
if (name == "//") {
stringTable = c->getBuffer();
- if (increment() || it == end) return;
+ if (increment() || it == end)
+ return;
setFirstRegular(*c);
return;
}
@@ -112,8 +119,9 @@ Archive::Archive(Buffer& b, bool& error) : data(b), symbolTable({nullptr, 0}), s
}
Archive::Child::Child(const Archive* parent, const uint8_t* data, bool* error)
- : parent(parent), data(data) {
- if (!data) return;
+ : parent(parent), data(data) {
+ if (!data)
+ return;
len = sizeof(ArchiveMemberHeader) + getHeader()->getSize();
startOfFile = sizeof(ArchiveMemberHeader);
}
@@ -129,8 +137,10 @@ std::string Archive::Child::getRawName() const {
}
Archive::Child Archive::Child::getNext(bool& error) const {
- uint32_t nextOffset = len + (len & 1); // Members are aligned to even byte boundaries.
- if ((size_t)(data - (const uint8_t*)parent->data.data() + nextOffset) >= parent->data.size()) { // End of the archive.
+ // Members are aligned to even byte boundaries.
+ uint32_t nextOffset = len + (len & 1);
+ if ((size_t)(data - (const uint8_t*)parent->data.data() + nextOffset) >=
+ parent->data.size()) { // End of the archive.
return Child();
}
return Child(parent, data + nextOffset, &error);
@@ -140,10 +150,10 @@ std::string Archive::Child::getName() const {
std::string name = getRawName();
// Check if it's a special name.
if (name[0] == '/') {
- if (name.size() == 1) { // Linker member.
+ if (name.size() == 1) { // Linker member.
return name;
}
- if (name.size() == 2 && name[1] == '/') { // String table.
+ if (name.size() == 2 && name[1] == '/') { // String table.
return name;
}
// It's a long name.
@@ -170,7 +180,8 @@ std::string Archive::Child::getName() const {
}
Archive::child_iterator Archive::child_begin(bool SkipInternal) const {
- if (data.size() == 0) return child_end();
+ if (data.size() == 0)
+ return child_end();
if (SkipInternal) {
child_iterator it;
@@ -197,7 +208,7 @@ struct Symbol {
++symbolIndex;
}
};
-}
+} // namespace
static uint32_t read32be(const uint8_t* buf) {
return static_cast<uint32_t>(buf[0]) << 24 |
@@ -206,15 +217,20 @@ static uint32_t read32be(const uint8_t* buf) {
}
void Archive::dump() const {
- printf("Archive data %p len %zu, firstRegularData %p\n", data.data(),
- data.size(), firstRegularData);
+ printf("Archive data %p len %zu, firstRegularData %p\n",
+ data.data(),
+ data.size(),
+ firstRegularData);
printf("Symbol table %p, len %u\n", symbolTable.data, symbolTable.len);
printf("string table %p, len %u\n", stringTable.data, stringTable.len);
const uint8_t* buf = symbolTable.data;
if (!buf) {
for (auto c = child_begin(), e = child_end(); c != e; ++c) {
- printf("Child %p, len %u, name %s, size %u\n", c->data, c->len,
- c->getName().c_str(), c->getSize());
+ printf("Child %p, len %u, name %s, size %u\n",
+ c->data,
+ c->len,
+ c->getName().c_str(),
+ c->getSize());
}
return;
}