2006-11-30 21:19:59 +02:00
|
|
|
#include "serialise.hh"
|
|
|
|
#include "util.hh"
|
|
|
|
|
2008-05-21 14:17:31 +03:00
|
|
|
#include <cstring>
|
2011-12-15 14:32:08 +02:00
|
|
|
#include <cerrno>
|
2017-01-16 23:24:29 +02:00
|
|
|
#include <memory>
|
2008-05-21 14:17:31 +03:00
|
|
|
|
2018-03-16 21:22:34 +02:00
|
|
|
#include <boost/coroutine2/coroutine.hpp>
|
|
|
|
|
2006-11-30 21:19:59 +02:00
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
|
|
|
|
2020-12-02 15:00:43 +02:00
|
|
|
void BufferedSink::operator () (std::string_view data)
|
2006-11-30 21:19:59 +02:00
|
|
|
{
|
2020-12-02 15:00:43 +02:00
|
|
|
if (!buffer) buffer = decltype(buffer)(new char[bufSize]);
|
2015-07-20 02:16:16 +03:00
|
|
|
|
2020-12-02 15:00:43 +02:00
|
|
|
while (!data.empty()) {
|
2011-12-15 01:30:06 +02:00
|
|
|
/* Optimisation: bypass the buffer if the data exceeds the
|
2011-12-16 21:44:13 +02:00
|
|
|
buffer size. */
|
2020-12-02 15:00:43 +02:00
|
|
|
if (bufPos + data.size() >= bufSize) {
|
2011-12-16 21:44:13 +02:00
|
|
|
flush();
|
2020-12-02 15:00:43 +02:00
|
|
|
write(data);
|
2011-12-15 01:30:06 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* Otherwise, copy the bytes to the buffer. Flush the buffer
|
|
|
|
when it's full. */
|
2020-12-02 15:00:43 +02:00
|
|
|
size_t n = bufPos + data.size() > bufSize ? bufSize - bufPos : data.size();
|
|
|
|
memcpy(buffer.get() + bufPos, data.data(), n);
|
|
|
|
data.remove_prefix(n); bufPos += n;
|
2011-12-15 01:30:06 +02:00
|
|
|
if (bufPos == bufSize) flush();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-12-15 18:19:53 +02:00
|
|
|
void BufferedSink::flush()
|
2011-12-15 01:30:06 +02:00
|
|
|
{
|
2011-12-15 18:19:53 +02:00
|
|
|
if (bufPos == 0) return;
|
2011-12-16 17:45:42 +02:00
|
|
|
size_t n = bufPos;
|
|
|
|
bufPos = 0; // don't trigger the assert() in ~BufferedSink()
|
2020-12-02 15:00:43 +02:00
|
|
|
write({buffer.get(), n});
|
2011-12-16 17:45:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
FdSink::~FdSink()
|
|
|
|
{
|
|
|
|
try { flush(); } catch (...) { ignoreException(); }
|
2006-11-30 21:19:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-12-02 15:00:43 +02:00
|
|
|
void FdSink::write(std::string_view data)
|
2011-12-15 18:19:53 +02:00
|
|
|
{
|
2020-12-02 15:00:43 +02:00
|
|
|
written += data.size();
|
2016-02-24 12:39:56 +02:00
|
|
|
try {
|
2020-12-02 15:00:43 +02:00
|
|
|
writeFull(fd, data);
|
2016-02-24 12:39:56 +02:00
|
|
|
} catch (SysError & e) {
|
2018-02-13 13:05:25 +02:00
|
|
|
_good = false;
|
|
|
|
throw;
|
2016-02-24 12:39:56 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool FdSink::good()
|
|
|
|
{
|
|
|
|
return _good;
|
2011-12-15 18:19:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-12-02 15:10:56 +02:00
|
|
|
void Source::operator () (char * data, size_t len)
|
2011-12-16 21:44:13 +02:00
|
|
|
{
|
|
|
|
while (len) {
|
|
|
|
size_t n = read(data, len);
|
|
|
|
data += n; len -= n;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-09-13 15:39:11 +03:00
|
|
|
void Source::drainInto(Sink & sink)
|
2018-03-16 21:22:34 +02:00
|
|
|
{
|
|
|
|
std::string s;
|
2020-12-02 15:10:56 +02:00
|
|
|
std::vector<char> buf(8192);
|
2018-03-16 21:22:34 +02:00
|
|
|
while (true) {
|
|
|
|
size_t n;
|
|
|
|
try {
|
|
|
|
n = read(buf.data(), buf.size());
|
2020-12-02 15:10:56 +02:00
|
|
|
sink({buf.data(), n});
|
2018-03-16 21:22:34 +02:00
|
|
|
} catch (EndOfFile &) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2020-09-13 15:39:11 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
std::string Source::drain()
|
|
|
|
{
|
|
|
|
StringSink s;
|
|
|
|
drainInto(s);
|
2022-01-17 23:20:05 +02:00
|
|
|
return std::move(s.s);
|
2018-03-16 21:22:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-12-02 15:10:56 +02:00
|
|
|
size_t BufferedSource::read(char * data, size_t len)
|
2006-11-30 21:19:59 +02:00
|
|
|
{
|
2020-12-02 15:10:56 +02:00
|
|
|
if (!buffer) buffer = decltype(buffer)(new char[bufSize]);
|
2011-12-15 14:32:08 +02:00
|
|
|
|
2016-07-13 13:03:37 +03:00
|
|
|
if (!bufPosIn) bufPosIn = readUnbuffered(buffer.get(), bufSize);
|
2015-07-20 02:16:16 +03:00
|
|
|
|
2011-12-16 21:44:13 +02:00
|
|
|
/* Copy out the data in the buffer. */
|
|
|
|
size_t n = len > bufPosIn - bufPosOut ? bufPosIn - bufPosOut : len;
|
2016-07-13 13:03:37 +03:00
|
|
|
memcpy(data, buffer.get() + bufPosOut, n);
|
2011-12-16 21:44:13 +02:00
|
|
|
bufPosOut += n;
|
|
|
|
if (bufPosIn == bufPosOut) bufPosIn = bufPosOut = 0;
|
|
|
|
return n;
|
2006-11-30 21:19:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-06-07 16:02:14 +03:00
|
|
|
bool BufferedSource::hasData()
|
|
|
|
{
|
|
|
|
return bufPosOut < bufPosIn;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-12-02 15:10:56 +02:00
|
|
|
size_t FdSource::readUnbuffered(char * data, size_t len)
|
2011-12-15 18:19:53 +02:00
|
|
|
{
|
|
|
|
ssize_t n;
|
|
|
|
do {
|
|
|
|
checkInterrupt();
|
2020-12-02 15:10:56 +02:00
|
|
|
n = ::read(fd, data, len);
|
2011-12-15 18:19:53 +02:00
|
|
|
} while (n == -1 && errno == EINTR);
|
2016-02-24 12:39:56 +02:00
|
|
|
if (n == -1) { _good = false; throw SysError("reading from file"); }
|
|
|
|
if (n == 0) { _good = false; throw EndOfFile("unexpected end-of-file"); }
|
2016-02-26 17:16:08 +02:00
|
|
|
read += n;
|
2011-12-15 18:19:53 +02:00
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-02-24 12:39:56 +02:00
|
|
|
bool FdSource::good()
|
|
|
|
{
|
|
|
|
return _good;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-12-02 15:10:56 +02:00
|
|
|
size_t StringSource::read(char * data, size_t len)
|
2011-12-16 21:44:13 +02:00
|
|
|
{
|
|
|
|
if (pos == s.size()) throw EndOfFile("end of string reached");
|
2020-12-02 15:10:56 +02:00
|
|
|
size_t n = s.copy(data, len, pos);
|
2011-12-16 21:44:13 +02:00
|
|
|
pos += n;
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-07-31 17:35:05 +03:00
|
|
|
#if BOOST_VERSION >= 106300 && BOOST_VERSION < 106600
|
|
|
|
#error Coroutines are broken in this version of Boost!
|
|
|
|
#endif
|
|
|
|
|
2020-10-30 21:55:53 +02:00
|
|
|
/* A concrete datatype allow virtual dispatch of stack allocation methods. */
|
|
|
|
struct VirtualStackAllocator {
|
|
|
|
StackAllocator *allocator = StackAllocator::defaultAllocator;
|
|
|
|
|
|
|
|
boost::context::stack_context allocate() {
|
|
|
|
return allocator->allocate();
|
|
|
|
}
|
|
|
|
|
|
|
|
void deallocate(boost::context::stack_context sctx) {
|
|
|
|
allocator->deallocate(sctx);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/* This class reifies the default boost coroutine stack allocation strategy with
|
|
|
|
a virtual interface. */
|
|
|
|
class DefaultStackAllocator : public StackAllocator {
|
|
|
|
boost::coroutines2::default_stack stack;
|
|
|
|
|
|
|
|
boost::context::stack_context allocate() {
|
|
|
|
return stack.allocate();
|
|
|
|
}
|
|
|
|
|
|
|
|
void deallocate(boost::context::stack_context sctx) {
|
2020-11-10 05:24:55 +02:00
|
|
|
stack.deallocate(sctx);
|
2020-10-30 21:55:53 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
static DefaultStackAllocator defaultAllocatorSingleton;
|
|
|
|
|
|
|
|
StackAllocator *StackAllocator::defaultAllocator = &defaultAllocatorSingleton;
|
|
|
|
|
|
|
|
|
2023-02-03 18:50:01 +02:00
|
|
|
std::shared_ptr<DisableGC> (*DisableGC::create)() = []() {
|
|
|
|
return std::dynamic_pointer_cast<DisableGC>(std::make_shared<DisableGC>());
|
|
|
|
};
|
|
|
|
|
2019-12-10 10:47:38 +02:00
|
|
|
std::unique_ptr<FinishSink> sourceToSink(std::function<void(Source &)> fun)
|
|
|
|
{
|
|
|
|
struct SourceToSink : FinishSink
|
|
|
|
{
|
|
|
|
typedef boost::coroutines2::coroutine<bool> coro_t;
|
|
|
|
|
|
|
|
std::function<void(Source &)> fun;
|
|
|
|
std::optional<coro_t::push_type> coro;
|
|
|
|
|
|
|
|
SourceToSink(std::function<void(Source &)> fun) : fun(fun)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string_view cur;
|
|
|
|
|
|
|
|
void operator () (std::string_view in) override
|
|
|
|
{
|
|
|
|
if (in.empty()) return;
|
|
|
|
cur = in;
|
|
|
|
|
2023-02-03 18:50:01 +02:00
|
|
|
if (!coro) {
|
|
|
|
#if __APPLE__
|
|
|
|
/* Disable GC when entering the coroutine on macOS, since it doesn't find the main thread stack in this case */
|
|
|
|
auto disablegc = DisableGC::create();
|
|
|
|
#endif
|
2019-12-10 10:47:38 +02:00
|
|
|
coro = coro_t::push_type(VirtualStackAllocator{}, [&](coro_t::pull_type & yield) {
|
|
|
|
LambdaSource source([&](char *out, size_t out_len) {
|
|
|
|
if (cur.empty()) {
|
|
|
|
yield();
|
|
|
|
if (yield.get()) {
|
|
|
|
return (size_t)0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t n = std::min(cur.size(), out_len);
|
|
|
|
memcpy(out, cur.data(), n);
|
|
|
|
cur.remove_prefix(n);
|
|
|
|
return n;
|
|
|
|
});
|
|
|
|
fun(source);
|
|
|
|
});
|
2023-02-03 18:50:01 +02:00
|
|
|
}
|
2019-12-10 10:47:38 +02:00
|
|
|
|
|
|
|
if (!*coro) { abort(); }
|
|
|
|
|
2023-02-03 18:50:01 +02:00
|
|
|
if (!cur.empty()) {
|
|
|
|
#if __APPLE__
|
|
|
|
auto disablegc = DisableGC::create();
|
|
|
|
#endif
|
|
|
|
(*coro)(false);
|
|
|
|
}
|
2019-12-10 10:47:38 +02:00
|
|
|
}
|
|
|
|
|
2021-09-14 09:15:33 +03:00
|
|
|
void finish() override
|
|
|
|
{
|
2019-12-10 10:47:38 +02:00
|
|
|
if (!coro) return;
|
|
|
|
if (!*coro) abort();
|
2023-02-03 18:50:01 +02:00
|
|
|
{
|
|
|
|
#if __APPLE__
|
|
|
|
auto disablegc = DisableGC::create();
|
|
|
|
#endif
|
|
|
|
(*coro)(true);
|
|
|
|
}
|
2019-12-10 10:47:38 +02:00
|
|
|
if (*coro) abort();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
return std::make_unique<SourceToSink>(fun);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-08-21 16:22:04 +03:00
|
|
|
std::unique_ptr<Source> sinkToSource(
|
2020-07-16 02:19:41 +03:00
|
|
|
std::function<void(Sink &)> fun,
|
2018-08-21 16:22:04 +03:00
|
|
|
std::function<void()> eof)
|
2018-03-16 21:22:34 +02:00
|
|
|
{
|
|
|
|
struct SinkToSource : Source
|
|
|
|
{
|
2020-07-16 02:19:41 +03:00
|
|
|
typedef boost::coroutines2::coroutine<std::string> coro_t;
|
2018-03-16 21:22:34 +02:00
|
|
|
|
2020-07-16 02:19:41 +03:00
|
|
|
std::function<void(Sink &)> fun;
|
2018-08-21 16:22:04 +03:00
|
|
|
std::function<void()> eof;
|
2019-02-12 14:43:32 +02:00
|
|
|
std::optional<coro_t::pull_type> coro;
|
2018-03-16 21:22:34 +02:00
|
|
|
|
2020-07-16 02:19:41 +03:00
|
|
|
SinkToSource(std::function<void(Sink &)> fun, std::function<void()> eof)
|
2018-09-26 22:19:34 +03:00
|
|
|
: fun(fun), eof(eof)
|
2018-03-16 21:22:34 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-07-16 02:19:41 +03:00
|
|
|
std::string cur;
|
2018-03-16 21:22:34 +02:00
|
|
|
size_t pos = 0;
|
|
|
|
|
2020-12-02 15:10:56 +02:00
|
|
|
size_t read(char * data, size_t len) override
|
2018-03-16 21:22:34 +02:00
|
|
|
{
|
2023-02-03 18:50:01 +02:00
|
|
|
if (!coro) {
|
|
|
|
#if __APPLE__
|
|
|
|
auto disablegc = DisableGC::create();
|
|
|
|
#endif
|
2020-10-30 21:55:53 +02:00
|
|
|
coro = coro_t::pull_type(VirtualStackAllocator{}, [&](coro_t::push_type & yield) {
|
2020-12-02 15:00:43 +02:00
|
|
|
LambdaSink sink([&](std::string_view data) {
|
|
|
|
if (!data.empty()) yield(std::string(data));
|
|
|
|
});
|
2020-07-16 02:19:41 +03:00
|
|
|
fun(sink);
|
2018-09-26 22:19:34 +03:00
|
|
|
});
|
2023-02-03 18:50:01 +02:00
|
|
|
}
|
2018-09-26 22:19:34 +03:00
|
|
|
|
|
|
|
if (!*coro) { eof(); abort(); }
|
2018-03-16 21:22:34 +02:00
|
|
|
|
|
|
|
if (pos == cur.size()) {
|
2023-02-03 18:50:01 +02:00
|
|
|
if (!cur.empty()) {
|
|
|
|
#if __APPLE__
|
|
|
|
auto disablegc = DisableGC::create();
|
|
|
|
#endif
|
|
|
|
(*coro)();
|
|
|
|
}
|
2018-09-26 22:19:34 +03:00
|
|
|
cur = coro->get();
|
2018-03-16 21:22:34 +02:00
|
|
|
pos = 0;
|
|
|
|
}
|
|
|
|
|
2020-07-16 02:19:41 +03:00
|
|
|
auto n = std::min(cur.size() - pos, len);
|
2020-12-02 15:10:56 +02:00
|
|
|
memcpy(data, cur.data() + pos, n);
|
2020-07-16 02:19:41 +03:00
|
|
|
pos += n;
|
2018-03-16 21:22:34 +02:00
|
|
|
|
2020-07-16 02:19:41 +03:00
|
|
|
return n;
|
2018-03-16 21:22:34 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-08-21 16:22:04 +03:00
|
|
|
return std::make_unique<SinkToSource>(fun, eof);
|
2018-03-16 21:22:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-12-15 18:19:53 +02:00
|
|
|
void writePadding(size_t len, Sink & sink)
|
2006-11-30 21:19:59 +02:00
|
|
|
{
|
|
|
|
if (len % 8) {
|
2020-12-02 15:10:56 +02:00
|
|
|
char zero[8];
|
2006-11-30 21:19:59 +02:00
|
|
|
memset(zero, 0, sizeof(zero));
|
2020-12-02 15:10:56 +02:00
|
|
|
sink({zero, 8 - (len % 8)});
|
2006-11-30 21:19:59 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-12-02 15:00:43 +02:00
|
|
|
void writeString(std::string_view data, Sink & sink)
|
2006-11-30 21:19:59 +02:00
|
|
|
{
|
2020-12-02 15:00:43 +02:00
|
|
|
sink << data.size();
|
|
|
|
sink(data);
|
|
|
|
writePadding(data.size(), sink);
|
2006-11-30 21:19:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-01-17 20:28:42 +02:00
|
|
|
Sink & operator << (Sink & sink, std::string_view s)
|
2011-12-16 23:29:46 +02:00
|
|
|
{
|
2020-12-02 15:00:43 +02:00
|
|
|
writeString(s, sink);
|
2015-07-20 02:16:16 +03:00
|
|
|
return sink;
|
Allow remote builds without sending the derivation closure
Previously, to build a derivation remotely, we had to copy the entire
closure of the .drv file to the remote machine, even though we only
need the top-level derivation. This is very wasteful: the closure can
contain thousands of store paths, and in some Hydra use cases, include
source paths that are very large (e.g. Git/Mercurial checkouts).
So now there is a new operation, StoreAPI::buildDerivation(), that
performs a build from an in-memory representation of a derivation
(BasicDerivation) rather than from a on-disk .drv file. The only files
that need to be in the Nix store are the sources of the derivation
(drv.inputSrcs), and the needed output paths of the dependencies (as
described by drv.inputDrvs). "nix-store --serve" exposes this
interface.
Note that this is a privileged operation, because you can construct a
derivation that builds any store path whatsoever. Fixing this will
require changing the hashing scheme (i.e., the output paths should be
computed from the other fields in BasicDerivation, allowing them to be
verified without access to other derivations). However, this would be
quite nice because it would allow .drv-free building (e.g. "nix-env
-i" wouldn't have to write any .drv files to disk).
Fixes #173.
2015-07-17 18:57:40 +03:00
|
|
|
}
|
|
|
|
|
2011-12-16 23:29:46 +02:00
|
|
|
|
2011-12-17 00:31:25 +02:00
|
|
|
template<class T> void writeStrings(const T & ss, Sink & sink)
|
2006-12-01 00:43:55 +02:00
|
|
|
{
|
2015-07-20 02:16:16 +03:00
|
|
|
sink << ss.size();
|
2015-07-17 20:24:28 +03:00
|
|
|
for (auto & i : ss)
|
2015-07-20 02:16:16 +03:00
|
|
|
sink << i;
|
2006-12-01 00:43:55 +02:00
|
|
|
}
|
|
|
|
|
2015-07-20 02:16:16 +03:00
|
|
|
Sink & operator << (Sink & sink, const Strings & s)
|
Allow remote builds without sending the derivation closure
Previously, to build a derivation remotely, we had to copy the entire
closure of the .drv file to the remote machine, even though we only
need the top-level derivation. This is very wasteful: the closure can
contain thousands of store paths, and in some Hydra use cases, include
source paths that are very large (e.g. Git/Mercurial checkouts).
So now there is a new operation, StoreAPI::buildDerivation(), that
performs a build from an in-memory representation of a derivation
(BasicDerivation) rather than from a on-disk .drv file. The only files
that need to be in the Nix store are the sources of the derivation
(drv.inputSrcs), and the needed output paths of the dependencies (as
described by drv.inputDrvs). "nix-store --serve" exposes this
interface.
Note that this is a privileged operation, because you can construct a
derivation that builds any store path whatsoever. Fixing this will
require changing the hashing scheme (i.e., the output paths should be
computed from the other fields in BasicDerivation, allowing them to be
verified without access to other derivations). However, this would be
quite nice because it would allow .drv-free building (e.g. "nix-env
-i" wouldn't have to write any .drv files to disk).
Fixes #173.
2015-07-17 18:57:40 +03:00
|
|
|
{
|
2015-07-20 02:16:16 +03:00
|
|
|
writeStrings(s, sink);
|
|
|
|
return sink;
|
Allow remote builds without sending the derivation closure
Previously, to build a derivation remotely, we had to copy the entire
closure of the .drv file to the remote machine, even though we only
need the top-level derivation. This is very wasteful: the closure can
contain thousands of store paths, and in some Hydra use cases, include
source paths that are very large (e.g. Git/Mercurial checkouts).
So now there is a new operation, StoreAPI::buildDerivation(), that
performs a build from an in-memory representation of a derivation
(BasicDerivation) rather than from a on-disk .drv file. The only files
that need to be in the Nix store are the sources of the derivation
(drv.inputSrcs), and the needed output paths of the dependencies (as
described by drv.inputDrvs). "nix-store --serve" exposes this
interface.
Note that this is a privileged operation, because you can construct a
derivation that builds any store path whatsoever. Fixing this will
require changing the hashing scheme (i.e., the output paths should be
computed from the other fields in BasicDerivation, allowing them to be
verified without access to other derivations). However, this would be
quite nice because it would allow .drv-free building (e.g. "nix-env
-i" wouldn't have to write any .drv files to disk).
Fixes #173.
2015-07-17 18:57:40 +03:00
|
|
|
}
|
|
|
|
|
2015-07-20 02:16:16 +03:00
|
|
|
Sink & operator << (Sink & sink, const StringSet & s)
|
Allow remote builds without sending the derivation closure
Previously, to build a derivation remotely, we had to copy the entire
closure of the .drv file to the remote machine, even though we only
need the top-level derivation. This is very wasteful: the closure can
contain thousands of store paths, and in some Hydra use cases, include
source paths that are very large (e.g. Git/Mercurial checkouts).
So now there is a new operation, StoreAPI::buildDerivation(), that
performs a build from an in-memory representation of a derivation
(BasicDerivation) rather than from a on-disk .drv file. The only files
that need to be in the Nix store are the sources of the derivation
(drv.inputSrcs), and the needed output paths of the dependencies (as
described by drv.inputDrvs). "nix-store --serve" exposes this
interface.
Note that this is a privileged operation, because you can construct a
derivation that builds any store path whatsoever. Fixing this will
require changing the hashing scheme (i.e., the output paths should be
computed from the other fields in BasicDerivation, allowing them to be
verified without access to other derivations). However, this would be
quite nice because it would allow .drv-free building (e.g. "nix-env
-i" wouldn't have to write any .drv files to disk).
Fixes #173.
2015-07-17 18:57:40 +03:00
|
|
|
{
|
2015-07-20 02:16:16 +03:00
|
|
|
writeStrings(s, sink);
|
|
|
|
return sink;
|
Allow remote builds without sending the derivation closure
Previously, to build a derivation remotely, we had to copy the entire
closure of the .drv file to the remote machine, even though we only
need the top-level derivation. This is very wasteful: the closure can
contain thousands of store paths, and in some Hydra use cases, include
source paths that are very large (e.g. Git/Mercurial checkouts).
So now there is a new operation, StoreAPI::buildDerivation(), that
performs a build from an in-memory representation of a derivation
(BasicDerivation) rather than from a on-disk .drv file. The only files
that need to be in the Nix store are the sources of the derivation
(drv.inputSrcs), and the needed output paths of the dependencies (as
described by drv.inputDrvs). "nix-store --serve" exposes this
interface.
Note that this is a privileged operation, because you can construct a
derivation that builds any store path whatsoever. Fixing this will
require changing the hashing scheme (i.e., the output paths should be
computed from the other fields in BasicDerivation, allowing them to be
verified without access to other derivations). However, this would be
quite nice because it would allow .drv-free building (e.g. "nix-env
-i" wouldn't have to write any .drv files to disk).
Fixes #173.
2015-07-17 18:57:40 +03:00
|
|
|
}
|
|
|
|
|
2020-10-07 17:34:03 +03:00
|
|
|
Sink & operator << (Sink & sink, const Error & ex)
|
|
|
|
{
|
2022-12-07 13:58:58 +02:00
|
|
|
auto & info = ex.info();
|
2020-10-07 17:34:03 +03:00
|
|
|
sink
|
|
|
|
<< "Error"
|
|
|
|
<< info.level
|
2022-04-06 14:02:26 +03:00
|
|
|
<< "Error" // removed
|
2021-01-21 01:27:36 +02:00
|
|
|
<< info.msg.str()
|
2020-10-07 17:34:03 +03:00
|
|
|
<< 0 // FIXME: info.errPos
|
|
|
|
<< info.traces.size();
|
|
|
|
for (auto & trace : info.traces) {
|
|
|
|
sink << 0; // FIXME: trace.pos
|
|
|
|
sink << trace.hint.str();
|
|
|
|
}
|
|
|
|
return sink;
|
|
|
|
}
|
|
|
|
|
2006-12-01 00:43:55 +02:00
|
|
|
|
2011-12-15 18:19:53 +02:00
|
|
|
void readPadding(size_t len, Source & source)
|
2006-11-30 21:19:59 +02:00
|
|
|
{
|
|
|
|
if (len % 8) {
|
2020-12-02 15:10:56 +02:00
|
|
|
char zero[8];
|
2011-12-15 18:19:53 +02:00
|
|
|
size_t n = 8 - (len % 8);
|
2006-11-30 21:19:59 +02:00
|
|
|
source(zero, n);
|
|
|
|
for (unsigned int i = 0; i < n; i++)
|
2009-03-22 19:36:43 +02:00
|
|
|
if (zero[i]) throw SerialisationError("non-zero padding");
|
2006-11-30 21:19:59 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-12-02 15:10:56 +02:00
|
|
|
size_t readString(char * buf, size_t max, Source & source)
|
2011-12-16 23:29:46 +02:00
|
|
|
{
|
2017-03-01 14:52:54 +02:00
|
|
|
auto len = readNum<size_t>(source);
|
2018-09-26 13:03:58 +03:00
|
|
|
if (len > max) throw SerialisationError("string is too long");
|
2011-12-16 23:29:46 +02:00
|
|
|
source(buf, len);
|
|
|
|
readPadding(len, source);
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
2015-07-20 02:16:16 +03:00
|
|
|
|
2022-02-25 17:00:00 +02:00
|
|
|
std::string readString(Source & source, size_t max)
|
2006-11-30 21:19:59 +02:00
|
|
|
{
|
2017-03-01 14:52:54 +02:00
|
|
|
auto len = readNum<size_t>(source);
|
2018-09-26 13:03:58 +03:00
|
|
|
if (len > max) throw SerialisationError("string is too long");
|
2017-03-01 15:54:11 +02:00
|
|
|
std::string res(len, 0);
|
2020-12-02 15:10:56 +02:00
|
|
|
source(res.data(), len);
|
2006-11-30 21:19:59 +02:00
|
|
|
readPadding(len, source);
|
2017-03-01 15:54:11 +02:00
|
|
|
return res;
|
2006-11-30 21:19:59 +02:00
|
|
|
}
|
|
|
|
|
2022-02-25 17:00:00 +02:00
|
|
|
Source & operator >> (Source & in, std::string & s)
|
Allow remote builds without sending the derivation closure
Previously, to build a derivation remotely, we had to copy the entire
closure of the .drv file to the remote machine, even though we only
need the top-level derivation. This is very wasteful: the closure can
contain thousands of store paths, and in some Hydra use cases, include
source paths that are very large (e.g. Git/Mercurial checkouts).
So now there is a new operation, StoreAPI::buildDerivation(), that
performs a build from an in-memory representation of a derivation
(BasicDerivation) rather than from a on-disk .drv file. The only files
that need to be in the Nix store are the sources of the derivation
(drv.inputSrcs), and the needed output paths of the dependencies (as
described by drv.inputDrvs). "nix-store --serve" exposes this
interface.
Note that this is a privileged operation, because you can construct a
derivation that builds any store path whatsoever. Fixing this will
require changing the hashing scheme (i.e., the output paths should be
computed from the other fields in BasicDerivation, allowing them to be
verified without access to other derivations). However, this would be
quite nice because it would allow .drv-free building (e.g. "nix-env
-i" wouldn't have to write any .drv files to disk).
Fixes #173.
2015-07-17 18:57:40 +03:00
|
|
|
{
|
|
|
|
s = readString(in);
|
|
|
|
return in;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-12-17 00:31:25 +02:00
|
|
|
template<class T> T readStrings(Source & source)
|
2006-12-01 00:43:55 +02:00
|
|
|
{
|
2017-03-01 14:52:54 +02:00
|
|
|
auto count = readNum<size_t>(source);
|
2011-12-17 00:31:25 +02:00
|
|
|
T ss;
|
2006-12-01 00:43:55 +02:00
|
|
|
while (count--)
|
2011-12-17 00:31:25 +02:00
|
|
|
ss.insert(ss.end(), readString(source));
|
2006-12-01 00:43:55 +02:00
|
|
|
return ss;
|
|
|
|
}
|
|
|
|
|
2011-12-17 00:31:25 +02:00
|
|
|
template Paths readStrings(Source & source);
|
|
|
|
template PathSet readStrings(Source & source);
|
|
|
|
|
2006-12-01 00:43:55 +02:00
|
|
|
|
2020-10-07 17:34:03 +03:00
|
|
|
Error readError(Source & source)
|
|
|
|
{
|
|
|
|
auto type = readString(source);
|
|
|
|
assert(type == "Error");
|
2021-01-21 01:27:36 +02:00
|
|
|
auto level = (Verbosity) readInt(source);
|
2022-04-06 14:02:26 +03:00
|
|
|
auto name = readString(source); // removed
|
2021-01-21 01:27:36 +02:00
|
|
|
auto msg = readString(source);
|
|
|
|
ErrorInfo info {
|
|
|
|
.level = level,
|
2023-03-02 16:44:19 +02:00
|
|
|
.msg = hintformat(fmt("%s", msg)),
|
2021-01-21 01:27:36 +02:00
|
|
|
};
|
2020-10-07 17:34:03 +03:00
|
|
|
auto havePos = readNum<size_t>(source);
|
|
|
|
assert(havePos == 0);
|
|
|
|
auto nrTraces = readNum<size_t>(source);
|
|
|
|
for (size_t i = 0; i < nrTraces; ++i) {
|
|
|
|
havePos = readNum<size_t>(source);
|
|
|
|
assert(havePos == 0);
|
|
|
|
info.traces.push_back(Trace {
|
2023-03-02 16:44:19 +02:00
|
|
|
.hint = hintformat(fmt("%s", readString(source)))
|
2020-10-07 17:34:03 +03:00
|
|
|
});
|
|
|
|
}
|
|
|
|
return Error(std::move(info));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-12-02 15:00:43 +02:00
|
|
|
void StringSink::operator () (std::string_view data)
|
2014-06-10 14:30:09 +03:00
|
|
|
{
|
2022-01-17 23:20:05 +02:00
|
|
|
s.append(data);
|
2014-06-10 14:30:09 +03:00
|
|
|
}
|
|
|
|
|
2020-12-02 15:10:56 +02:00
|
|
|
size_t ChainSource::read(char * data, size_t len)
|
2020-07-16 02:14:30 +03:00
|
|
|
{
|
|
|
|
if (useSecond) {
|
|
|
|
return source2.read(data, len);
|
|
|
|
} else {
|
|
|
|
try {
|
|
|
|
return source1.read(data, len);
|
|
|
|
} catch (EndOfFile &) {
|
|
|
|
useSecond = true;
|
|
|
|
return this->read(data, len);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-06-10 14:30:09 +03:00
|
|
|
|
2006-11-30 21:19:59 +02:00
|
|
|
}
|