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 18:09:28 +02:00
|
|
|
SourceAccessor::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
|
|
|
};
|
|
|
|
|
2023-11-01 18:09:28 +02:00
|
|
|
struct NarAccessor : public SourceAccessor
|
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:43:20 +02:00
|
|
|
if (parents.top()->stat.type != 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
|
|
|
|
{
|
2023-11-07 14:38:52 +02:00
|
|
|
createMember(path, NarMember{ .stat = {
|
|
|
|
.type = Type::tDirectory,
|
|
|
|
.fileSize = 0,
|
|
|
|
.isExecutable = false,
|
|
|
|
.narOffset = 0
|
|
|
|
} });
|
2017-12-07 01:50:46 +02:00
|
|
|
}
|
2016-02-25 18:43:19 +02:00
|
|
|
|
2017-12-07 01:50:46 +02:00
|
|
|
void createRegularFile(const Path & path) override
|
|
|
|
{
|
2023-11-07 14:38:52 +02:00
|
|
|
createMember(path, NarMember{ .stat = {
|
|
|
|
.type = Type::tRegular,
|
|
|
|
.fileSize = 0,
|
|
|
|
.isExecutable = false,
|
|
|
|
.narOffset = 0
|
|
|
|
} });
|
2017-12-07 01:50:46 +02:00
|
|
|
}
|
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
|
|
|
{
|
2023-11-01 15:36:40 +02:00
|
|
|
auto & st = parents.top()->stat;
|
2023-11-07 14:39:10 +02:00
|
|
|
st.fileSize = size;
|
2023-11-01 15:36:40 +02:00
|
|
|
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{
|
2023-11-01 15:43:20 +02:00
|
|
|
.stat = {.type = Type::tSymlink},
|
2023-11-01 15:36:40 +02:00
|
|
|
.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:43:20 +02:00
|
|
|
member.stat = {.type = 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 = {
|
2023-11-01 15:43:20 +02:00
|
|
|
.type = Type::tRegular,
|
2023-11-01 15:36:40 +02:00
|
|
|
.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:43:20 +02:00
|
|
|
member.stat = {.type = 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
|
|
|
}
|
|
|
|
|
2023-11-01 18:09:28 +02:00
|
|
|
NarMember * find(const CanonPath & path)
|
2016-02-25 18:43:19 +02:00
|
|
|
{
|
2017-12-07 01:50:46 +02:00
|
|
|
NarMember * current = &root;
|
2017-05-15 20:32:51 +03:00
|
|
|
|
2023-11-01 18:09:28 +02:00
|
|
|
for (auto & i : path) {
|
|
|
|
if (current->stat.type != Type::tDirectory) return nullptr;
|
|
|
|
auto child = current->children.find(std::string(i));
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
return current;
|
2017-05-15 11:17:53 +03:00
|
|
|
}
|
|
|
|
|
2023-11-01 18:09:28 +02:00
|
|
|
NarMember & get(const CanonPath & path) {
|
2017-05-15 11:17:53 +03:00
|
|
|
auto result = find(path);
|
2023-11-01 18:09:28 +02:00
|
|
|
if (!result)
|
2017-12-07 01:50:46 +02:00
|
|
|
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 18:09:28 +02:00
|
|
|
std::optional<Stat> maybeLstat(const CanonPath & path) override
|
2016-02-25 18:43:19 +02:00
|
|
|
{
|
2017-12-07 01:50:46 +02:00
|
|
|
auto i = find(path);
|
2023-11-01 18:09:28 +02:00
|
|
|
if (!i)
|
2023-11-01 15:36:40 +02:00
|
|
|
return std::nullopt;
|
|
|
|
return i->stat;
|
2016-02-25 18:43:19 +02:00
|
|
|
}
|
|
|
|
|
2023-11-01 18:09:28 +02:00
|
|
|
DirEntries readDirectory(const CanonPath & path) override
|
2016-02-25 18:43:19 +02:00
|
|
|
{
|
2017-12-07 01:50:46 +02:00
|
|
|
auto i = get(path);
|
2016-02-25 18:43:19 +02:00
|
|
|
|
2023-11-01 15:43:20 +02:00
|
|
|
if (i.stat.type != 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
|
|
|
|
2023-11-01 16:33:19 +02:00
|
|
|
DirEntries res;
|
2017-12-07 01:50:46 +02:00
|
|
|
for (auto & child : i.children)
|
2023-11-01 16:33:19 +02:00
|
|
|
res.insert_or_assign(child.first, std::nullopt);
|
2017-05-15 11:17:53 +03:00
|
|
|
|
2016-02-25 18:43:19 +02:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2023-11-01 18:09:28 +02:00
|
|
|
std::string readFile(const CanonPath & path) 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:43:20 +02:00
|
|
|
if (i.stat.type != 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 16:39: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 16:39:40 +02:00
|
|
|
return std::string(*nar, *i.stat.narOffset, *i.stat.fileSize);
|
2016-02-25 18:43:19 +02:00
|
|
|
}
|
|
|
|
|
2023-11-01 18:09:28 +02:00
|
|
|
std::string readLink(const CanonPath & path) 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:43:20 +02:00
|
|
|
if (i.stat.type != 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
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2023-11-01 18:09:28 +02:00
|
|
|
ref<SourceAccessor> 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
|
|
|
}
|
|
|
|
|
2023-11-01 18:09:28 +02:00
|
|
|
ref<SourceAccessor> makeNarAccessor(Source & source)
|
2020-07-13 18:30:42 +03:00
|
|
|
{
|
|
|
|
return make_ref<NarAccessor>(source);
|
|
|
|
}
|
|
|
|
|
2023-11-01 18:09:28 +02:00
|
|
|
ref<SourceAccessor> makeLazyNarAccessor(const std::string & listing,
|
2017-12-07 01:50:46 +02:00
|
|
|
GetNarBytes getNarBytes)
|
|
|
|
{
|
|
|
|
return make_ref<NarAccessor>(listing, getNarBytes);
|
|
|
|
}
|
|
|
|
|
2022-11-16 17:49:49 +02:00
|
|
|
using nlohmann::json;
|
2023-11-01 18:09:28 +02:00
|
|
|
json listNar(ref<SourceAccessor> accessor, const CanonPath & path, bool recurse)
|
2017-11-14 15:23:53 +02:00
|
|
|
{
|
2023-11-01 18:09:28 +02:00
|
|
|
auto st = accessor->lstat(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 18:09:28 +02:00
|
|
|
switch (st.type) {
|
2023-11-01 15:43:20 +02:00
|
|
|
case SourceAccessor::Type::tRegular:
|
2022-11-16 17:49:49 +02:00
|
|
|
obj["type"] = "regular";
|
2023-11-01 18:09:28 +02:00
|
|
|
if (st.fileSize)
|
|
|
|
obj["size"] = *st.fileSize;
|
|
|
|
if (st.isExecutable)
|
2022-11-16 17:49:49 +02:00
|
|
|
obj["executable"] = true;
|
2023-11-01 18:09:28 +02:00
|
|
|
if (st.narOffset && *st.narOffset)
|
|
|
|
obj["narOffset"] = *st.narOffset;
|
2017-11-14 15:23:53 +02:00
|
|
|
break;
|
2023-11-01 15:43:20 +02:00
|
|
|
case SourceAccessor::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"];
|
2023-11-01 16:33:19 +02:00
|
|
|
for (auto & [name, type] : accessor->readDirectory(path)) {
|
2017-11-14 15:31:28 +02:00
|
|
|
if (recurse) {
|
2023-11-01 18:09:28 +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;
|
2023-11-01 15:43:20 +02:00
|
|
|
case SourceAccessor::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;
|
2023-11-01 15:43:20 +02:00
|
|
|
case SourceAccessor::Type::tMisc:
|
|
|
|
assert(false); // cannot happen for NARs
|
2017-11-14 15:23:53 +02:00
|
|
|
}
|
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
|
|
|
}
|