2012-07-18 21:59:03 +03:00
|
|
|
|
#pragma once
|
2006-11-30 21:19:59 +02:00
|
|
|
|
|
2016-07-13 13:03:37 +03:00
|
|
|
|
#include <memory>
|
|
|
|
|
|
2006-11-30 21:19:59 +02:00
|
|
|
|
#include "types.hh"
|
2015-07-20 02:16:16 +03:00
|
|
|
|
#include "util.hh"
|
2006-11-30 21:19:59 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Abstract destination of binary data. */
|
2015-07-20 02:16:16 +03:00
|
|
|
|
struct Sink
|
2006-11-30 21:19:59 +02:00
|
|
|
|
{
|
|
|
|
|
virtual ~Sink() { }
|
2011-12-15 18:19:53 +02:00
|
|
|
|
virtual void operator () (const unsigned char * data, size_t len) = 0;
|
2016-02-24 12:39:56 +02:00
|
|
|
|
virtual bool good() { return true; }
|
2016-05-04 16:46:25 +03:00
|
|
|
|
|
|
|
|
|
void operator () (const std::string & s)
|
|
|
|
|
{
|
|
|
|
|
(*this)((const unsigned char *) s.data(), s.size());
|
|
|
|
|
}
|
2011-12-15 18:19:53 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* A buffered abstract sink. */
|
|
|
|
|
struct BufferedSink : Sink
|
|
|
|
|
{
|
|
|
|
|
size_t bufSize, bufPos;
|
2016-07-13 13:03:37 +03:00
|
|
|
|
std::unique_ptr<unsigned char[]> buffer;
|
2011-12-15 18:19:53 +02:00
|
|
|
|
|
|
|
|
|
BufferedSink(size_t bufSize = 32 * 1024)
|
2016-07-13 13:03:37 +03:00
|
|
|
|
: bufSize(bufSize), bufPos(0), buffer(nullptr) { }
|
2011-12-16 21:44:13 +02:00
|
|
|
|
|
2016-02-24 12:39:56 +02:00
|
|
|
|
void operator () (const unsigned char * data, size_t len) override;
|
2015-07-20 02:16:16 +03:00
|
|
|
|
|
2016-05-04 16:46:25 +03:00
|
|
|
|
void operator () (const std::string & s)
|
|
|
|
|
{
|
|
|
|
|
Sink::operator()(s);
|
|
|
|
|
}
|
|
|
|
|
|
2011-12-15 18:19:53 +02:00
|
|
|
|
void flush();
|
2015-07-20 02:16:16 +03:00
|
|
|
|
|
2011-12-15 18:19:53 +02:00
|
|
|
|
virtual void write(const unsigned char * data, size_t len) = 0;
|
2006-11-30 21:19:59 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Abstract source of binary data. */
|
|
|
|
|
struct Source
|
|
|
|
|
{
|
|
|
|
|
virtual ~Source() { }
|
2015-07-20 02:16:16 +03:00
|
|
|
|
|
2016-11-26 01:37:43 +02:00
|
|
|
|
/* Store exactly ‘len’ bytes in the buffer pointed to by ‘data’.
|
2011-12-16 21:44:13 +02:00
|
|
|
|
It blocks until all the requested data is available, or throws
|
|
|
|
|
an error if it is not going to be available. */
|
|
|
|
|
void operator () (unsigned char * data, size_t len);
|
|
|
|
|
|
2016-11-26 01:37:43 +02:00
|
|
|
|
/* Store up to ‘len’ in the buffer pointed to by ‘data’, and
|
2018-03-16 17:59:31 +02:00
|
|
|
|
return the number of bytes stored. It blocks until at least
|
2011-12-16 21:44:13 +02:00
|
|
|
|
one byte is available. */
|
|
|
|
|
virtual size_t read(unsigned char * data, size_t len) = 0;
|
2016-02-24 12:39:56 +02:00
|
|
|
|
|
|
|
|
|
virtual bool good() { return true; }
|
2018-03-16 21:22:34 +02:00
|
|
|
|
|
|
|
|
|
std::string drain();
|
2006-11-30 21:19:59 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2011-12-15 18:19:53 +02:00
|
|
|
|
/* A buffered abstract source. */
|
|
|
|
|
struct BufferedSource : Source
|
2006-11-30 21:19:59 +02:00
|
|
|
|
{
|
2011-12-15 18:19:53 +02:00
|
|
|
|
size_t bufSize, bufPosIn, bufPosOut;
|
2016-07-13 13:03:37 +03:00
|
|
|
|
std::unique_ptr<unsigned char[]> buffer;
|
2006-11-30 21:19:59 +02:00
|
|
|
|
|
2011-12-15 18:19:53 +02:00
|
|
|
|
BufferedSource(size_t bufSize = 32 * 1024)
|
2016-07-13 13:03:37 +03:00
|
|
|
|
: bufSize(bufSize), bufPosIn(0), bufPosOut(0), buffer(nullptr) { }
|
2015-07-20 02:16:16 +03:00
|
|
|
|
|
2016-02-24 12:39:56 +02:00
|
|
|
|
size_t read(unsigned char * data, size_t len) override;
|
2015-07-20 02:16:16 +03:00
|
|
|
|
|
2013-06-07 16:02:14 +03:00
|
|
|
|
|
|
|
|
|
bool hasData();
|
2018-05-22 01:26:41 +03:00
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
/* Underlying read call, to be overridden. */
|
|
|
|
|
virtual size_t readUnbuffered(unsigned char * data, size_t len) = 0;
|
2006-11-30 21:19:59 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2011-12-15 18:19:53 +02:00
|
|
|
|
/* A sink that writes data to a file descriptor. */
|
|
|
|
|
struct FdSink : BufferedSink
|
2006-11-30 21:19:59 +02:00
|
|
|
|
{
|
|
|
|
|
int fd;
|
2016-02-26 17:16:08 +02:00
|
|
|
|
bool warn = false;
|
|
|
|
|
size_t written = 0;
|
2006-11-30 21:19:59 +02:00
|
|
|
|
|
2016-02-26 17:16:08 +02:00
|
|
|
|
FdSink() : fd(-1) { }
|
|
|
|
|
FdSink(int fd) : fd(fd) { }
|
2016-07-13 13:27:41 +03:00
|
|
|
|
FdSink(FdSink&&) = default;
|
2017-10-23 21:43:04 +03:00
|
|
|
|
|
|
|
|
|
FdSink& operator=(FdSink && s)
|
|
|
|
|
{
|
|
|
|
|
flush();
|
|
|
|
|
fd = s.fd;
|
|
|
|
|
s.fd = -1;
|
|
|
|
|
warn = s.warn;
|
|
|
|
|
written = s.written;
|
|
|
|
|
return *this;
|
|
|
|
|
}
|
|
|
|
|
|
2011-12-16 17:45:42 +02:00
|
|
|
|
~FdSink();
|
2015-07-20 02:16:16 +03:00
|
|
|
|
|
2016-02-24 12:39:56 +02:00
|
|
|
|
void write(const unsigned char * data, size_t len) override;
|
|
|
|
|
|
|
|
|
|
bool good() override;
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
bool _good = true;
|
2011-12-15 18:19:53 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* A source that reads data from a file descriptor. */
|
|
|
|
|
struct FdSource : BufferedSource
|
|
|
|
|
{
|
|
|
|
|
int fd;
|
2016-02-26 17:16:08 +02:00
|
|
|
|
size_t read = 0;
|
|
|
|
|
|
2011-12-15 18:19:53 +02:00
|
|
|
|
FdSource() : fd(-1) { }
|
|
|
|
|
FdSource(int fd) : fd(fd) { }
|
2017-10-23 21:43:04 +03:00
|
|
|
|
FdSource(FdSource&&) = default;
|
|
|
|
|
|
|
|
|
|
FdSource& operator=(FdSource && s)
|
|
|
|
|
{
|
|
|
|
|
fd = s.fd;
|
|
|
|
|
s.fd = -1;
|
|
|
|
|
read = s.read;
|
|
|
|
|
return *this;
|
|
|
|
|
}
|
|
|
|
|
|
2016-02-24 12:39:56 +02:00
|
|
|
|
bool good() override;
|
2018-05-22 01:26:41 +03:00
|
|
|
|
protected:
|
|
|
|
|
size_t readUnbuffered(unsigned char * data, size_t len) override;
|
2016-02-24 12:39:56 +02:00
|
|
|
|
private:
|
|
|
|
|
bool _good = true;
|
2006-11-30 21:19:59 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2006-12-13 01:05:01 +02:00
|
|
|
|
/* A sink that writes data to a string. */
|
|
|
|
|
struct StringSink : Sink
|
|
|
|
|
{
|
2016-03-04 17:49:56 +02:00
|
|
|
|
ref<std::string> s;
|
|
|
|
|
StringSink() : s(make_ref<std::string>()) { };
|
|
|
|
|
StringSink(ref<std::string> s) : s(s) { };
|
2016-02-24 12:39:56 +02:00
|
|
|
|
void operator () (const unsigned char * data, size_t len) override;
|
2006-12-13 01:05:01 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* A source that reads data from a string. */
|
|
|
|
|
struct StringSource : Source
|
|
|
|
|
{
|
2008-12-03 19:30:32 +02:00
|
|
|
|
const string & s;
|
2011-12-15 18:19:53 +02:00
|
|
|
|
size_t pos;
|
2008-12-03 19:30:32 +02:00
|
|
|
|
StringSource(const string & _s) : s(_s), pos(0) { }
|
2016-02-24 12:39:56 +02:00
|
|
|
|
size_t read(unsigned char * data, size_t len) override;
|
2006-12-13 01:05:01 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2017-02-07 20:21:54 +02:00
|
|
|
|
/* Adapter class of a Source that saves all data read to `s'. */
|
2017-03-01 17:07:15 +02:00
|
|
|
|
struct TeeSource : Source
|
2017-02-07 20:21:54 +02:00
|
|
|
|
{
|
|
|
|
|
Source & orig;
|
2017-03-01 17:07:15 +02:00
|
|
|
|
ref<std::string> data;
|
|
|
|
|
TeeSource(Source & orig)
|
|
|
|
|
: orig(orig), data(make_ref<std::string>()) { }
|
2017-02-07 20:21:54 +02:00
|
|
|
|
size_t read(unsigned char * data, size_t len)
|
|
|
|
|
{
|
|
|
|
|
size_t n = orig.read(data, len);
|
2017-03-01 17:07:15 +02:00
|
|
|
|
this->data->append((const char *) data, n);
|
2017-02-07 20:21:54 +02:00
|
|
|
|
return n;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2018-03-16 17:59:31 +02:00
|
|
|
|
/* Convert a function into a sink. */
|
|
|
|
|
struct LambdaSink : Sink
|
|
|
|
|
{
|
|
|
|
|
typedef std::function<void(const unsigned char *, size_t)> lambda_t;
|
|
|
|
|
|
|
|
|
|
lambda_t lambda;
|
|
|
|
|
|
|
|
|
|
LambdaSink(const lambda_t & lambda) : lambda(lambda) { }
|
|
|
|
|
|
|
|
|
|
virtual void operator () (const unsigned char * data, size_t len)
|
|
|
|
|
{
|
|
|
|
|
lambda(data, len);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2018-03-16 21:22:34 +02:00
|
|
|
|
/* Convert a function into a source. */
|
|
|
|
|
struct LambdaSource : Source
|
|
|
|
|
{
|
|
|
|
|
typedef std::function<size_t(unsigned char *, size_t)> lambda_t;
|
|
|
|
|
|
|
|
|
|
lambda_t lambda;
|
|
|
|
|
|
|
|
|
|
LambdaSource(const lambda_t & lambda) : lambda(lambda) { }
|
|
|
|
|
|
|
|
|
|
size_t read(unsigned char * data, size_t len) override
|
|
|
|
|
{
|
|
|
|
|
return lambda(data, len);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Convert a function that feeds data into a Sink into a Source. The
|
|
|
|
|
Source executes the function as a coroutine. */
|
2018-08-21 16:22:04 +03:00
|
|
|
|
std::unique_ptr<Source> sinkToSource(
|
|
|
|
|
std::function<void(Sink &)> fun,
|
|
|
|
|
std::function<void()> eof = []() {
|
|
|
|
|
throw EndOfFile("coroutine has finished");
|
|
|
|
|
});
|
2018-03-16 21:22:34 +02:00
|
|
|
|
|
|
|
|
|
|
2011-12-15 18:19:53 +02:00
|
|
|
|
void writePadding(size_t len, Sink & sink);
|
2011-12-16 23:29:46 +02:00
|
|
|
|
void writeString(const unsigned char * buf, size_t len, Sink & sink);
|
2006-11-30 21:19:59 +02:00
|
|
|
|
|
2015-07-20 02:16:16 +03:00
|
|
|
|
inline Sink & operator << (Sink & sink, uint64_t n)
|
|
|
|
|
{
|
|
|
|
|
unsigned char buf[8];
|
|
|
|
|
buf[0] = n & 0xff;
|
|
|
|
|
buf[1] = (n >> 8) & 0xff;
|
|
|
|
|
buf[2] = (n >> 16) & 0xff;
|
|
|
|
|
buf[3] = (n >> 24) & 0xff;
|
|
|
|
|
buf[4] = (n >> 32) & 0xff;
|
|
|
|
|
buf[5] = (n >> 40) & 0xff;
|
|
|
|
|
buf[6] = (n >> 48) & 0xff;
|
2018-05-02 14:56:34 +03:00
|
|
|
|
buf[7] = (unsigned char) (n >> 56) & 0xff;
|
2015-07-20 02:16:16 +03:00
|
|
|
|
sink(buf, sizeof(buf));
|
|
|
|
|
return sink;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Sink & operator << (Sink & sink, const string & s);
|
|
|
|
|
Sink & operator << (Sink & sink, const Strings & s);
|
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
2017-03-01 14:52:54 +02:00
|
|
|
|
MakeError(SerialisationError, Error)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
|
T readNum(Source & source)
|
|
|
|
|
{
|
|
|
|
|
unsigned char buf[8];
|
|
|
|
|
source(buf, sizeof(buf));
|
|
|
|
|
|
|
|
|
|
uint64_t n =
|
|
|
|
|
((unsigned long long) buf[0]) |
|
|
|
|
|
((unsigned long long) buf[1] << 8) |
|
|
|
|
|
((unsigned long long) buf[2] << 16) |
|
|
|
|
|
((unsigned long long) buf[3] << 24) |
|
|
|
|
|
((unsigned long long) buf[4] << 32) |
|
|
|
|
|
((unsigned long long) buf[5] << 40) |
|
|
|
|
|
((unsigned long long) buf[6] << 48) |
|
|
|
|
|
((unsigned long long) buf[7] << 56);
|
|
|
|
|
|
|
|
|
|
if (n > std::numeric_limits<T>::max())
|
2017-07-30 14:27:57 +03:00
|
|
|
|
throw SerialisationError("serialised integer %d is too large for type '%s'", n, typeid(T).name());
|
2017-03-01 14:52:54 +02:00
|
|
|
|
|
2018-05-02 14:56:34 +03:00
|
|
|
|
return (T) n;
|
2017-03-01 14:52:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
inline unsigned int readInt(Source & source)
|
|
|
|
|
{
|
|
|
|
|
return readNum<unsigned int>(source);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
inline uint64_t readLongLong(Source & source)
|
|
|
|
|
{
|
|
|
|
|
return readNum<uint64_t>(source);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2011-12-15 18:19:53 +02:00
|
|
|
|
void readPadding(size_t len, Source & source);
|
2011-12-16 23:29:46 +02:00
|
|
|
|
size_t readString(unsigned char * buf, size_t max, Source & source);
|
2006-11-30 21:19:59 +02:00
|
|
|
|
string readString(Source & source);
|
2011-12-17 00:31:25 +02:00
|
|
|
|
template<class T> T readStrings(Source & source);
|
2006-12-01 00:43:55 +02:00
|
|
|
|
|
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
|
|
|
|
Source & operator >> (Source & in, string & s);
|
|
|
|
|
|
2017-03-01 14:52:54 +02:00
|
|
|
|
template<typename T>
|
|
|
|
|
Source & operator >> (Source & in, T & n)
|
|
|
|
|
{
|
|
|
|
|
n = readNum<T>(in);
|
|
|
|
|
return in;
|
|
|
|
|
}
|
2006-11-30 21:19:59 +02:00
|
|
|
|
|
2017-03-01 14:52:54 +02:00
|
|
|
|
template<typename T>
|
|
|
|
|
Source & operator >> (Source & in, bool & b)
|
|
|
|
|
{
|
|
|
|
|
b = readNum<uint64_t>(in);
|
|
|
|
|
return in;
|
|
|
|
|
}
|
2009-03-22 19:36:43 +02:00
|
|
|
|
|
|
|
|
|
|
2006-11-30 21:19:59 +02:00
|
|
|
|
}
|