2016-02-25 18:43:19 +02:00
|
|
|
#include "nar-accessor.hh"
|
|
|
|
#include "archive.hh"
|
|
|
|
|
|
|
|
#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
|
|
|
|
{
|
2023-11-01 15:36:40 +02:00
|
|
|
FSAccessor::Stat stat;
|
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
|
|
|
{
|
2022-01-17 23:20:05 +02:00
|
|
|
std::optional<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
|
|
|
|
2020-07-31 16:43:25 +03:00
|
|
|
void createMember(const Path & path, NarMember member)
|
|
|
|
{
|
2017-12-07 01:50:46 +02:00
|
|
|
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 {
|
2023-11-01 15:36:40 +02:00
|
|
|
if (parents.top()->stat.type != FSAccessor::Type::tDirectory)
|
2017-12-07 01:50:46 +02:00
|
|
|
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
|
|
|
|
2022-09-22 22:47:43 +03:00
|
|
|
void closeRegularFile() override
|
|
|
|
{ }
|
|
|
|
|
2017-12-07 01:50:46 +02:00
|
|
|
void isExecutable() override
|
|
|
|
{
|
2023-11-01 15:36:40 +02:00
|
|
|
parents.top()->stat.isExecutable = true;
|
2017-12-07 01:50:46 +02:00
|
|
|
}
|
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());
|
2023-11-01 15:36:40 +02:00
|
|
|
auto & st = parents.top()->stat;
|
|
|
|
st.fileSize = (uint64_t) size;
|
|
|
|
st.narOffset = pos;
|
2017-12-07 01:50:46 +02:00
|
|
|
}
|
2016-02-25 18:43:19 +02:00
|
|
|
|
2020-12-02 15:00:43 +02:00
|
|
|
void receiveContents(std::string_view data) override
|
2020-07-13 18:30:42 +03:00
|
|
|
{ }
|
2017-12-07 01:50:46 +02:00
|
|
|
|
2022-02-25 17:00:00 +02:00
|
|
|
void createSymlink(const Path & path, const std::string & target) override
|
2017-12-07 01:50:46 +02:00
|
|
|
{
|
|
|
|
createMember(path,
|
2023-11-01 15:36:40 +02:00
|
|
|
NarMember{
|
|
|
|
.stat = {.type = FSAccessor::Type::tSymlink},
|
|
|
|
.target = target});
|
2016-02-25 18:43:19 +02:00
|
|
|
}
|
2020-07-13 18:30:42 +03:00
|
|
|
|
2020-12-02 15:10:56 +02:00
|
|
|
size_t read(char * data, size_t len) override
|
2020-07-13 18:30:42 +03:00
|
|
|
{
|
|
|
|
auto n = source.read(data, len);
|
|
|
|
pos += n;
|
|
|
|
return n;
|
|
|
|
}
|
2017-12-07 01:50:46 +02:00
|
|
|
};
|
|
|
|
|
2022-01-17 23:20:05 +02:00
|
|
|
NarAccessor(std::string && _nar) : nar(_nar)
|
2017-12-07 01:50:46 +02:00
|
|
|
{
|
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") {
|
2023-11-01 15:36:40 +02:00
|
|
|
member.stat = {.type = FSAccessor::Type::tDirectory};
|
2017-12-07 01:50:46 +02:00
|
|
|
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") {
|
2023-11-01 15:36:40 +02:00
|
|
|
member.stat = {
|
|
|
|
.type = FSAccessor::Type::tRegular,
|
|
|
|
.fileSize = v["size"],
|
|
|
|
.isExecutable = v.value("executable", false),
|
|
|
|
.narOffset = v["narOffset"]
|
|
|
|
};
|
2017-12-07 01:50:46 +02:00
|
|
|
} else if (type == "symlink") {
|
2023-11-01 15:36:40 +02:00
|
|
|
member.stat = {.type = FSAccessor::Type::tSymlink};
|
2017-12-07 01:50:46 +02:00
|
|
|
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
|
2023-11-01 15:36:40 +02:00
|
|
|
if (current->stat.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
|
|
|
}
|
|
|
|
|
2023-11-01 15:36:40 +02:00
|
|
|
std::optional<Stat> stat(const Path & path) override
|
2016-02-25 18:43:19 +02:00
|
|
|
{
|
2017-12-07 01:50:46 +02:00
|
|
|
auto i = find(path);
|
2017-05-15 11:17:53 +03:00
|
|
|
if (i == nullptr)
|
2023-11-01 15:36:40 +02:00
|
|
|
return std::nullopt;
|
|
|
|
return i->stat;
|
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
|
|
|
|
2023-11-01 15:36:40 +02:00
|
|
|
if (i.stat.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;
|
|
|
|
}
|
|
|
|
|
2020-12-15 11:54:24 +02:00
|
|
|
std::string readFile(const Path & path, bool requireValidPath = true) override
|
2016-02-25 18:43:19 +02:00
|
|
|
{
|
2017-12-07 01:50:46 +02:00
|
|
|
auto i = get(path);
|
2023-11-01 15:36:40 +02:00
|
|
|
if (i.stat.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
|
|
|
|
2023-11-01 15:36:40 +02:00
|
|
|
if (getNarBytes) return getNarBytes(i.stat.narOffset, i.stat.fileSize);
|
2017-12-07 01:50:46 +02:00
|
|
|
|
|
|
|
assert(nar);
|
2023-11-01 15:36:40 +02:00
|
|
|
return std::string(*nar, i.stat.narOffset, i.stat.fileSize);
|
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);
|
2023-11-01 15:36:40 +02:00
|
|
|
if (i.stat.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
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2022-01-17 23:20:05 +02:00
|
|
|
ref<FSAccessor> makeNarAccessor(std::string && nar)
|
2016-02-25 18:43:19 +02:00
|
|
|
{
|
2022-01-17 23:20:05 +02:00
|
|
|
return make_ref<NarAccessor>(std::move(nar));
|
2016-02-25 18:43:19 +02:00
|
|
|
}
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2022-11-16 17:49:49 +02:00
|
|
|
using nlohmann::json;
|
|
|
|
json listNar(ref<FSAccessor> accessor, const Path & path, bool recurse)
|
2017-11-14 15:23:53 +02:00
|
|
|
{
|
|
|
|
auto st = accessor->stat(path);
|
2023-11-01 15:36:40 +02:00
|
|
|
if (!st)
|
|
|
|
throw Error("path '%s' does not exist in NAR", path);
|
2017-11-14 15:23:53 +02:00
|
|
|
|
2022-11-16 17:49:49 +02:00
|
|
|
json obj = json::object();
|
2017-11-14 15:23:53 +02:00
|
|
|
|
2023-11-01 15:36:40 +02:00
|
|
|
switch (st->type) {
|
2017-11-14 15:23:53 +02:00
|
|
|
case FSAccessor::Type::tRegular:
|
2022-11-16 17:49:49 +02:00
|
|
|
obj["type"] = "regular";
|
2023-11-01 15:36:40 +02:00
|
|
|
obj["size"] = st->fileSize;
|
|
|
|
if (st->isExecutable)
|
2022-11-16 17:49:49 +02:00
|
|
|
obj["executable"] = true;
|
2023-11-01 15:36:40 +02:00
|
|
|
if (st->narOffset)
|
|
|
|
obj["narOffset"] = st->narOffset;
|
2017-11-14 15:23:53 +02:00
|
|
|
break;
|
|
|
|
case FSAccessor::Type::tDirectory:
|
2022-11-16 17:49:49 +02:00
|
|
|
obj["type"] = "directory";
|
2017-11-14 15:23:53 +02:00
|
|
|
{
|
2022-11-16 17:49:49 +02:00
|
|
|
obj["entries"] = json::object();
|
|
|
|
json &res2 = obj["entries"];
|
2017-11-14 15:23:53 +02:00
|
|
|
for (auto & name : accessor->readDirectory(path)) {
|
2017-11-14 15:31:28 +02:00
|
|
|
if (recurse) {
|
2022-11-16 17:49:49 +02:00
|
|
|
res2[name] = listNar(accessor, path + "/" + name, true);
|
2017-11-14 15:31:28 +02:00
|
|
|
} else
|
2022-11-16 17:49:49 +02:00
|
|
|
res2[name] = json::object();
|
2017-11-14 15:23:53 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case FSAccessor::Type::tSymlink:
|
2022-11-16 17:49:49 +02:00
|
|
|
obj["type"] = "symlink";
|
|
|
|
obj["target"] = accessor->readLink(path);
|
2017-11-14 15:23:53 +02:00
|
|
|
break;
|
|
|
|
}
|
2022-11-16 17:49:49 +02:00
|
|
|
return obj;
|
2017-11-14 15:23:53 +02:00
|
|
|
}
|
|
|
|
|
2016-02-25 18:43:19 +02:00
|
|
|
}
|