2016-02-25 18:43:19 +02:00
|
|
|
#include "nar-accessor.hh"
|
|
|
|
#include "archive.hh"
|
2017-11-14 15:23:53 +02:00
|
|
|
#include "json.hh"
|
2016-02-25 18:43:19 +02:00
|
|
|
|
|
|
|
#include <map>
|
2017-05-15 11:17:53 +03:00
|
|
|
#include <stack>
|
|
|
|
#include <algorithm>
|
2016-02-25 18:43:19 +02:00
|
|
|
|
2017-12-07 01:50:46 +02:00
|
|
|
#include <nlohmann/json.hpp>
|
|
|
|
|
2016-02-25 18:43:19 +02:00
|
|
|
namespace nix {
|
|
|
|
|
|
|
|
struct NarMember
|
|
|
|
{
|
2017-12-06 23:44:08 +02:00
|
|
|
FSAccessor::Type type = FSAccessor::Type::tMissing;
|
2016-02-25 18:43:19 +02:00
|
|
|
|
2017-12-06 23:44:08 +02:00
|
|
|
bool isExecutable = false;
|
2016-02-25 18:43:19 +02:00
|
|
|
|
|
|
|
/* If this is a regular file, position of the contents of this
|
|
|
|
file in the NAR. */
|
2020-07-13 18:30:42 +03:00
|
|
|
uint64_t start = 0, size = 0;
|
2016-02-25 18:43:19 +02:00
|
|
|
|
|
|
|
std::string target;
|
2017-05-15 11:17:53 +03:00
|
|
|
|
|
|
|
/* If this is a directory, all the children of the directory. */
|
|
|
|
std::map<std::string, NarMember> children;
|
2016-02-25 18:43:19 +02:00
|
|
|
};
|
|
|
|
|
2017-12-07 01:50:46 +02:00
|
|
|
struct NarAccessor : public FSAccessor
|
2016-02-25 18:43:19 +02:00
|
|
|
{
|
2017-12-07 01:50:46 +02:00
|
|
|
std::shared_ptr<const std::string> nar;
|
2016-02-25 18:43:19 +02:00
|
|
|
|
2017-12-07 01:50:46 +02:00
|
|
|
GetNarBytes getNarBytes;
|
2016-02-25 18:43:19 +02:00
|
|
|
|
2017-12-07 01:50:46 +02:00
|
|
|
NarMember root;
|
|
|
|
|
2020-07-13 18:30:42 +03:00
|
|
|
struct NarIndexer : ParseSink, Source
|
2016-02-25 18:43:19 +02:00
|
|
|
{
|
2017-12-07 01:50:46 +02:00
|
|
|
NarAccessor & acc;
|
2020-07-13 18:30:42 +03:00
|
|
|
Source & source;
|
2016-02-25 18:43:19 +02:00
|
|
|
|
2017-12-07 01:50:46 +02:00
|
|
|
std::stack<NarMember *> parents;
|
|
|
|
|
|
|
|
bool isExec = false;
|
|
|
|
|
2020-07-13 18:30:42 +03:00
|
|
|
uint64_t pos = 0;
|
|
|
|
|
|
|
|
NarIndexer(NarAccessor & acc, Source & source)
|
|
|
|
: acc(acc), source(source)
|
2017-12-07 01:50:46 +02:00
|
|
|
{ }
|
2017-05-15 11:17:53 +03:00
|
|
|
|
2017-12-07 01:50:46 +02:00
|
|
|
void createMember(const Path & path, NarMember member) {
|
|
|
|
size_t level = std::count(path.begin(), path.end(), '/');
|
|
|
|
while (parents.size() > level) parents.pop();
|
|
|
|
|
|
|
|
if (parents.empty()) {
|
|
|
|
acc.root = std::move(member);
|
|
|
|
parents.push(&acc.root);
|
|
|
|
} else {
|
|
|
|
if (parents.top()->type != FSAccessor::Type::tDirectory)
|
|
|
|
throw Error("NAR file missing parent directory of path '%s'", path);
|
|
|
|
auto result = parents.top()->children.emplace(baseNameOf(path), std::move(member));
|
|
|
|
parents.push(&result.first->second);
|
2017-05-15 11:17:53 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-07 01:50:46 +02:00
|
|
|
void createDirectory(const Path & path) override
|
|
|
|
{
|
|
|
|
createMember(path, {FSAccessor::Type::tDirectory, false, 0, 0});
|
|
|
|
}
|
2016-02-25 18:43:19 +02:00
|
|
|
|
2017-12-07 01:50:46 +02:00
|
|
|
void createRegularFile(const Path & path) override
|
|
|
|
{
|
|
|
|
createMember(path, {FSAccessor::Type::tRegular, false, 0, 0});
|
|
|
|
}
|
2016-02-25 18:43:19 +02:00
|
|
|
|
2017-12-07 01:50:46 +02:00
|
|
|
void isExecutable() override
|
|
|
|
{
|
|
|
|
parents.top()->isExecutable = true;
|
|
|
|
}
|
2016-02-25 18:43:19 +02:00
|
|
|
|
2020-07-30 14:10:49 +03:00
|
|
|
void preallocateContents(uint64_t size) override
|
2017-12-07 01:50:46 +02:00
|
|
|
{
|
2020-07-13 18:30:42 +03:00
|
|
|
assert(size <= std::numeric_limits<uint64_t>::max());
|
|
|
|
parents.top()->size = (uint64_t) size;
|
2017-12-07 01:50:46 +02:00
|
|
|
parents.top()->start = pos;
|
|
|
|
}
|
2016-02-25 18:43:19 +02:00
|
|
|
|
2020-07-30 14:00:30 +03:00
|
|
|
void receiveContents(unsigned char * data, size_t len) override
|
2020-07-13 18:30:42 +03:00
|
|
|
{ }
|
2017-12-07 01:50:46 +02:00
|
|
|
|
|
|
|
void createSymlink(const Path & path, const string & target) override
|
|
|
|
{
|
|
|
|
createMember(path,
|
|
|
|
NarMember{FSAccessor::Type::tSymlink, false, 0, 0, target});
|
2016-02-25 18:43:19 +02:00
|
|
|
}
|
2020-07-13 18:30:42 +03:00
|
|
|
|
|
|
|
size_t read(unsigned char * data, size_t len) override
|
|
|
|
{
|
|
|
|
auto n = source.read(data, len);
|
|
|
|
pos += n;
|
|
|
|
return n;
|
|
|
|
}
|
2017-12-07 01:50:46 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
NarAccessor(ref<const std::string> nar) : nar(nar)
|
|
|
|
{
|
2020-07-13 18:30:42 +03:00
|
|
|
StringSource source(*nar);
|
|
|
|
NarIndexer indexer(*this, source);
|
|
|
|
parseDump(indexer, indexer);
|
|
|
|
}
|
|
|
|
|
|
|
|
NarAccessor(Source & source)
|
|
|
|
{
|
|
|
|
NarIndexer indexer(*this, source);
|
2017-12-07 01:50:46 +02:00
|
|
|
parseDump(indexer, indexer);
|
2016-02-25 18:43:19 +02:00
|
|
|
}
|
|
|
|
|
2017-12-07 01:50:46 +02:00
|
|
|
NarAccessor(const std::string & listing, GetNarBytes getNarBytes)
|
|
|
|
: getNarBytes(getNarBytes)
|
2016-02-25 18:43:19 +02:00
|
|
|
{
|
2017-12-07 01:50:46 +02:00
|
|
|
using json = nlohmann::json;
|
|
|
|
|
|
|
|
std::function<void(NarMember &, json &)> recurse;
|
|
|
|
|
|
|
|
recurse = [&](NarMember & member, json & v) {
|
|
|
|
std::string type = v["type"];
|
|
|
|
|
|
|
|
if (type == "directory") {
|
|
|
|
member.type = FSAccessor::Type::tDirectory;
|
|
|
|
for (auto i = v["entries"].begin(); i != v["entries"].end(); ++i) {
|
|
|
|
std::string name = i.key();
|
|
|
|
recurse(member.children[name], i.value());
|
|
|
|
}
|
|
|
|
} else if (type == "regular") {
|
|
|
|
member.type = FSAccessor::Type::tRegular;
|
|
|
|
member.size = v["size"];
|
|
|
|
member.isExecutable = v.value("executable", false);
|
|
|
|
member.start = v["narOffset"];
|
|
|
|
} else if (type == "symlink") {
|
|
|
|
member.type = FSAccessor::Type::tSymlink;
|
|
|
|
member.target = v.value("target", "");
|
|
|
|
} else return;
|
|
|
|
};
|
|
|
|
|
|
|
|
json v = json::parse(listing);
|
|
|
|
recurse(root, v);
|
2016-02-25 18:43:19 +02:00
|
|
|
}
|
|
|
|
|
2017-12-07 01:50:46 +02:00
|
|
|
NarMember * find(const Path & path)
|
2016-02-25 18:43:19 +02:00
|
|
|
{
|
2017-05-15 11:17:53 +03:00
|
|
|
Path canon = path == "" ? "" : canonPath(path);
|
2017-12-07 01:50:46 +02:00
|
|
|
NarMember * current = &root;
|
2017-05-15 20:32:51 +03:00
|
|
|
auto end = path.end();
|
2017-12-07 01:50:46 +02:00
|
|
|
for (auto it = path.begin(); it != end; ) {
|
2017-05-15 20:32:51 +03:00
|
|
|
// because it != end, the remaining component is non-empty so we need
|
|
|
|
// a directory
|
2017-12-07 01:50:46 +02:00
|
|
|
if (current->type != FSAccessor::Type::tDirectory) return nullptr;
|
2017-05-15 20:32:51 +03:00
|
|
|
|
|
|
|
// skip slash (canonPath above ensures that this is always a slash)
|
|
|
|
assert(*it == '/');
|
|
|
|
it += 1;
|
|
|
|
|
|
|
|
// lookup current component
|
|
|
|
auto next = std::find(it, end, '/');
|
|
|
|
auto child = current->children.find(std::string(it, next));
|
2017-12-07 01:50:46 +02:00
|
|
|
if (child == current->children.end()) return nullptr;
|
2017-05-15 20:32:51 +03:00
|
|
|
current = &child->second;
|
|
|
|
|
|
|
|
it = next;
|
|
|
|
}
|
|
|
|
|
|
|
|
return current;
|
2017-05-15 11:17:53 +03:00
|
|
|
}
|
|
|
|
|
2017-12-07 01:50:46 +02:00
|
|
|
NarMember & get(const Path & path) {
|
2017-05-15 11:17:53 +03:00
|
|
|
auto result = find(path);
|
2017-12-07 01:50:46 +02:00
|
|
|
if (result == nullptr)
|
|
|
|
throw Error("NAR file does not contain path '%1%'", path);
|
2017-05-15 11:17:53 +03:00
|
|
|
return *result;
|
2016-02-25 18:43:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Stat stat(const Path & path) override
|
|
|
|
{
|
2017-12-07 01:50:46 +02:00
|
|
|
auto i = find(path);
|
2017-05-15 11:17:53 +03:00
|
|
|
if (i == nullptr)
|
2016-02-25 18:43:19 +02:00
|
|
|
return {FSAccessor::Type::tMissing, 0, false};
|
2017-12-06 23:44:08 +02:00
|
|
|
return {i->type, i->size, i->isExecutable, i->start};
|
2016-02-25 18:43:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
StringSet readDirectory(const Path & path) override
|
|
|
|
{
|
2017-12-07 01:50:46 +02:00
|
|
|
auto i = get(path);
|
2016-02-25 18:43:19 +02:00
|
|
|
|
2017-05-15 11:17:53 +03:00
|
|
|
if (i.type != FSAccessor::Type::tDirectory)
|
2020-04-22 02:07:07 +03:00
|
|
|
throw Error("path '%1%' inside NAR file is not a directory", path);
|
2016-02-25 18:43:19 +02:00
|
|
|
|
|
|
|
StringSet res;
|
2017-12-07 01:50:46 +02:00
|
|
|
for (auto & child : i.children)
|
2017-05-15 11:17:53 +03:00
|
|
|
res.insert(child.first);
|
|
|
|
|
2016-02-25 18:43:19 +02:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string readFile(const Path & path) override
|
|
|
|
{
|
2017-12-07 01:50:46 +02:00
|
|
|
auto i = get(path);
|
2017-05-15 11:17:53 +03:00
|
|
|
if (i.type != FSAccessor::Type::tRegular)
|
2020-04-22 02:07:07 +03:00
|
|
|
throw Error("path '%1%' inside NAR file is not a regular file", path);
|
2017-12-07 01:50:46 +02:00
|
|
|
|
|
|
|
if (getNarBytes) return getNarBytes(i.start, i.size);
|
|
|
|
|
|
|
|
assert(nar);
|
2017-05-15 11:17:53 +03:00
|
|
|
return std::string(*nar, i.start, i.size);
|
2016-02-25 18:43:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string readLink(const Path & path) override
|
|
|
|
{
|
2017-12-07 01:50:46 +02:00
|
|
|
auto i = get(path);
|
2017-05-15 11:17:53 +03:00
|
|
|
if (i.type != FSAccessor::Type::tSymlink)
|
2020-04-22 02:07:07 +03:00
|
|
|
throw Error("path '%1%' inside NAR file is not a symlink", path);
|
2017-05-15 11:17:53 +03:00
|
|
|
return i.target;
|
2016-02-25 18:43:19 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
ref<FSAccessor> makeNarAccessor(ref<const std::string> nar)
|
|
|
|
{
|
|
|
|
return make_ref<NarAccessor>(nar);
|
|
|
|
}
|
|
|
|
|
2020-07-13 18:30:42 +03:00
|
|
|
ref<FSAccessor> makeNarAccessor(Source & source)
|
|
|
|
{
|
|
|
|
return make_ref<NarAccessor>(source);
|
|
|
|
}
|
|
|
|
|
2017-12-07 01:50:46 +02:00
|
|
|
ref<FSAccessor> makeLazyNarAccessor(const std::string & listing,
|
|
|
|
GetNarBytes getNarBytes)
|
|
|
|
{
|
|
|
|
return make_ref<NarAccessor>(listing, getNarBytes);
|
|
|
|
}
|
|
|
|
|
2017-11-14 15:31:28 +02:00
|
|
|
void listNar(JSONPlaceholder & res, ref<FSAccessor> accessor,
|
|
|
|
const Path & path, bool recurse)
|
2017-11-14 15:23:53 +02:00
|
|
|
{
|
|
|
|
auto st = accessor->stat(path);
|
|
|
|
|
|
|
|
auto obj = res.object();
|
|
|
|
|
|
|
|
switch (st.type) {
|
|
|
|
case FSAccessor::Type::tRegular:
|
|
|
|
obj.attr("type", "regular");
|
|
|
|
obj.attr("size", st.fileSize);
|
|
|
|
if (st.isExecutable)
|
|
|
|
obj.attr("executable", true);
|
2017-12-06 23:44:08 +02:00
|
|
|
if (st.narOffset)
|
|
|
|
obj.attr("narOffset", st.narOffset);
|
2017-11-14 15:23:53 +02:00
|
|
|
break;
|
|
|
|
case FSAccessor::Type::tDirectory:
|
|
|
|
obj.attr("type", "directory");
|
|
|
|
{
|
|
|
|
auto res2 = obj.object("entries");
|
|
|
|
for (auto & name : accessor->readDirectory(path)) {
|
2017-11-14 15:31:28 +02:00
|
|
|
if (recurse) {
|
|
|
|
auto res3 = res2.placeholder(name);
|
|
|
|
listNar(res3, accessor, path + "/" + name, true);
|
|
|
|
} else
|
|
|
|
res2.object(name);
|
2017-11-14 15:23:53 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case FSAccessor::Type::tSymlink:
|
|
|
|
obj.attr("type", "symlink");
|
|
|
|
obj.attr("target", accessor->readLink(path));
|
|
|
|
break;
|
|
|
|
default:
|
2017-11-14 15:49:06 +02:00
|
|
|
throw Error("path '%s' does not exist in NAR", path);
|
2017-11-14 15:23:53 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-25 18:43:19 +02:00
|
|
|
}
|