2012-07-18 18:59:03 +00:00
|
|
|
#pragma once
|
2006-11-30 18:35:50 +00:00
|
|
|
|
2016-02-23 15:40:16 +00:00
|
|
|
#include <limits>
|
2006-11-30 18:35:50 +00:00
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include "store-api.hh"
|
|
|
|
|
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
|
|
|
|
2006-11-30 19:54:43 +00:00
|
|
|
class Pipe;
|
|
|
|
class Pid;
|
|
|
|
struct FdSink;
|
|
|
|
struct FdSource;
|
2016-02-23 14:00:59 +00:00
|
|
|
template<typename T> class Pool;
|
2018-10-16 21:36:15 +00:00
|
|
|
struct ConnectionHandle;
|
2006-11-30 19:54:43 +00:00
|
|
|
|
|
|
|
|
2016-02-25 16:43:19 +00:00
|
|
|
/* FIXME: RemoteStore is a misnomer - should be something like
|
|
|
|
DaemonStore. */
|
2016-09-02 18:15:04 +00:00
|
|
|
class RemoteStore : public virtual Store
|
2006-11-30 18:35:50 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2017-04-13 13:55:38 +00:00
|
|
|
const Setting<int> maxConnections{(Store*) this, 1,
|
|
|
|
"max-connections", "maximum number of concurrent connections to the Nix daemon"};
|
|
|
|
|
2017-09-14 16:10:38 +00:00
|
|
|
const Setting<unsigned int> maxConnectionAge{(Store*) this, std::numeric_limits<unsigned int>::max(),
|
|
|
|
"max-connection-age", "number of seconds to reuse a connection"};
|
|
|
|
|
2019-10-11 16:48:59 +00:00
|
|
|
virtual bool sameMachine() = 0;
|
|
|
|
|
2017-03-03 18:05:50 +00:00
|
|
|
RemoteStore(const Params & params);
|
2015-03-25 16:06:12 +00:00
|
|
|
|
2006-11-30 18:35:50 +00:00
|
|
|
/* Implementations of abstract store API methods. */
|
2015-03-25 16:06:12 +00:00
|
|
|
|
2016-04-19 16:50:15 +00:00
|
|
|
bool isValidPathUncached(const Path & path) override;
|
2006-11-30 18:35:50 +00:00
|
|
|
|
2017-06-28 16:11:01 +00:00
|
|
|
PathSet queryValidPaths(const PathSet & paths,
|
|
|
|
SubstituteFlag maybeSubstitute = NoSubstitute) override;
|
2015-03-25 16:06:12 +00:00
|
|
|
|
2015-09-17 23:22:06 +00:00
|
|
|
PathSet queryAllValidPaths() override;
|
2015-03-25 16:06:12 +00:00
|
|
|
|
2016-09-16 16:54:14 +00:00
|
|
|
void queryPathInfoUncached(const Path & path,
|
2019-09-03 11:00:55 +00:00
|
|
|
Callback<std::shared_ptr<ValidPathInfo>> callback) noexcept override;
|
2006-11-30 18:35:50 +00:00
|
|
|
|
2015-09-17 23:22:06 +00:00
|
|
|
void queryReferrers(const Path & path, PathSet & referrers) override;
|
2015-03-25 16:06:12 +00:00
|
|
|
|
2015-09-17 23:22:06 +00:00
|
|
|
PathSet queryValidDerivers(const Path & path) override;
|
2012-12-20 17:41:44 +00:00
|
|
|
|
2015-09-17 23:22:06 +00:00
|
|
|
PathSet queryDerivationOutputs(const Path & path) override;
|
2015-03-25 16:06:12 +00:00
|
|
|
|
2015-09-17 23:22:06 +00:00
|
|
|
StringSet queryDerivationOutputNames(const Path & path) override;
|
2011-11-06 06:28:20 +00:00
|
|
|
|
2015-09-17 23:22:06 +00:00
|
|
|
Path queryPathFromHashPart(const string & hashPart) override;
|
2015-03-25 16:06:12 +00:00
|
|
|
|
2015-09-17 23:22:06 +00:00
|
|
|
PathSet querySubstitutablePaths(const PathSet & paths) override;
|
2015-03-25 16:06:12 +00:00
|
|
|
|
download-from-binary-cache: parallelise fetching of NAR info files
Getting substitute information using the binary cache substituter has
non-trivial latency overhead. A package or NixOS system configuration
can have hundreds of dependencies, and in the worst case (when the
local info cache is empty) we have to do a separate HTTP request for
each of these. If the ping time to the server is t, getting N info
files will take tN seconds; e.g., with a ping time of 0.1s to
nixos.org, sequentially downloading 1000 info files (a typical NixOS
config) will take at least 100 seconds.
To fix this problem, the binary cache substituter can now perform
requests in parallel. This required changing the substituter
interface to support a function querySubstitutablePathInfos() that
queries multiple paths at the same time, and rewriting queryMissing()
to take advantage of parallelism. (Due to local caching,
parallelising queryMissing() is sufficient for most use cases, since
it's almost always called before building a derivation and thus fills
the local info cache.)
For example, parallelism speeds up querying all 1056 paths in a
particular NixOS system configuration from 116s to 2.6s. It works so
well because the eccentricity of the top-level derivation in the
dependency graph is only 9. So we only need 10 round-trips (when
using an unlimited number of parallel connections) to get everything.
Currently we do a maximum of 150 parallel connections to the server.
Thus it's important that the binary cache server (e.g. nixos.org) has
a high connection limit. Alternatively we could use HTTP pipelining,
but WWW::Curl doesn't support it and libcurl has a hard-coded limit of
5 requests per pipeline.
2012-07-06 23:08:20 +00:00
|
|
|
void querySubstitutablePathInfos(const PathSet & paths,
|
2015-09-17 23:22:06 +00:00
|
|
|
SubstitutablePathInfos & infos) override;
|
2015-03-25 16:06:12 +00:00
|
|
|
|
2018-03-21 22:42:21 +00:00
|
|
|
void addToStore(const ValidPathInfo & info, Source & nar,
|
2017-06-28 16:11:01 +00:00
|
|
|
RepairFlag repair, CheckSigsFlag checkSigs,
|
2016-10-21 16:09:30 +00:00
|
|
|
std::shared_ptr<FSAccessor> accessor) override;
|
2016-05-04 11:36:54 +00:00
|
|
|
|
2015-03-25 16:06:12 +00:00
|
|
|
Path addToStore(const string & name, const Path & srcPath,
|
2008-12-03 16:10:17 +00:00
|
|
|
bool recursive = true, HashType hashAlgo = htSHA256,
|
2017-06-28 16:11:01 +00:00
|
|
|
PathFilter & filter = defaultPathFilter, RepairFlag repair = NoRepair) override;
|
2006-11-30 18:35:50 +00:00
|
|
|
|
2008-12-03 15:06:30 +00:00
|
|
|
Path addTextToStore(const string & name, const string & s,
|
2017-06-28 16:11:01 +00:00
|
|
|
const PathSet & references, RepairFlag repair) override;
|
2006-11-30 18:35:50 +00:00
|
|
|
|
2015-09-17 23:22:06 +00:00
|
|
|
void buildPaths(const PathSet & paths, BuildMode buildMode) override;
|
2006-11-30 18:35:50 +00: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 15:57:40 +00:00
|
|
|
BuildResult buildDerivation(const Path & drvPath, const BasicDerivation & drv,
|
|
|
|
BuildMode buildMode) override;
|
|
|
|
|
2015-09-17 23:22:06 +00:00
|
|
|
void ensurePath(const Path & path) override;
|
2006-11-30 18:35:50 +00:00
|
|
|
|
2015-09-17 23:22:06 +00:00
|
|
|
void addTempRoot(const Path & path) override;
|
2006-12-02 16:41:36 +00:00
|
|
|
|
2015-09-17 23:22:06 +00:00
|
|
|
void addIndirectRoot(const Path & path) override;
|
2015-03-25 16:06:12 +00:00
|
|
|
|
2015-09-17 23:22:06 +00:00
|
|
|
void syncWithGC() override;
|
2015-03-25 16:06:12 +00:00
|
|
|
|
2019-03-14 12:50:07 +00:00
|
|
|
Roots findRoots(bool censor) override;
|
2006-12-05 02:18:46 +00:00
|
|
|
|
2015-09-17 23:22:06 +00:00
|
|
|
void collectGarbage(const GCOptions & options, GCResults & results) override;
|
2015-03-25 16:06:12 +00:00
|
|
|
|
2015-09-17 23:22:06 +00:00
|
|
|
void optimiseStore() override;
|
|
|
|
|
2017-06-28 16:11:01 +00:00
|
|
|
bool verifyStore(bool checkContents, RepairFlag repair) override;
|
2014-09-01 20:21:42 +00:00
|
|
|
|
2016-04-05 13:30:22 +00:00
|
|
|
void addSignatures(const Path & storePath, const StringSet & sigs) override;
|
|
|
|
|
2017-04-06 16:40:19 +00:00
|
|
|
void queryMissing(const PathSet & targets,
|
|
|
|
PathSet & willBuild, PathSet & willSubstitute, PathSet & unknown,
|
|
|
|
unsigned long long & downloadSize, unsigned long long & narSize) override;
|
|
|
|
|
2017-05-02 12:18:46 +00:00
|
|
|
void connect() override;
|
|
|
|
|
2018-08-30 21:28:47 +00:00
|
|
|
unsigned int getProtocol() override;
|
|
|
|
|
2017-09-14 16:10:38 +00:00
|
|
|
void flushBadConnections();
|
|
|
|
|
2016-09-02 18:15:04 +00:00
|
|
|
protected:
|
2008-12-11 14:30:25 +00:00
|
|
|
|
2016-02-23 14:00:59 +00:00
|
|
|
struct Connection
|
|
|
|
{
|
2018-10-16 20:58:01 +00:00
|
|
|
AutoCloseFD fd;
|
2016-02-23 14:00:59 +00:00
|
|
|
FdSink to;
|
|
|
|
FdSource from;
|
|
|
|
unsigned int daemonVersion;
|
2017-09-14 16:10:38 +00:00
|
|
|
std::chrono::time_point<std::chrono::steady_clock> startTime;
|
2006-12-03 02:08:13 +00:00
|
|
|
|
2016-09-02 18:31:38 +00:00
|
|
|
virtual ~Connection();
|
2016-02-23 15:40:16 +00:00
|
|
|
|
2018-10-16 21:36:15 +00:00
|
|
|
std::exception_ptr processStderr(Sink * sink = 0, Source * source = 0);
|
2016-02-23 14:00:59 +00:00
|
|
|
};
|
2006-12-04 13:28:14 +00:00
|
|
|
|
2017-03-03 18:35:34 +00:00
|
|
|
ref<Connection> openConnectionWrapper();
|
|
|
|
|
2016-09-02 18:15:04 +00:00
|
|
|
virtual ref<Connection> openConnection() = 0;
|
|
|
|
|
|
|
|
void initConnection(Connection & conn);
|
|
|
|
|
2016-02-23 14:00:59 +00:00
|
|
|
ref<Pool<Connection>> connections;
|
2007-09-18 09:11:20 +00:00
|
|
|
|
2018-03-05 12:42:15 +00:00
|
|
|
virtual void setOptions(Connection & conn);
|
|
|
|
|
2018-10-16 21:36:15 +00:00
|
|
|
ConnectionHandle getConnection();
|
|
|
|
|
2018-10-26 17:34:29 +00:00
|
|
|
friend struct ConnectionHandle;
|
2018-10-16 21:36:15 +00:00
|
|
|
|
2016-09-02 18:15:04 +00:00
|
|
|
private:
|
|
|
|
|
2017-03-03 18:35:34 +00:00
|
|
|
std::atomic_bool failed{false};
|
|
|
|
|
2016-09-02 18:15:04 +00:00
|
|
|
};
|
2007-09-18 09:11:20 +00:00
|
|
|
|
2016-09-02 18:15:04 +00:00
|
|
|
class UDSRemoteStore : public LocalFSStore, public RemoteStore
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2017-03-03 18:05:50 +00:00
|
|
|
UDSRemoteStore(const Params & params);
|
2018-01-15 02:20:22 +00:00
|
|
|
UDSRemoteStore(std::string path, const Params & params);
|
2016-09-02 18:15:04 +00:00
|
|
|
|
|
|
|
std::string getUri() override;
|
|
|
|
|
2019-10-11 16:48:59 +00:00
|
|
|
bool sameMachine()
|
|
|
|
{ return true; }
|
|
|
|
|
2016-09-02 18:15:04 +00:00
|
|
|
private:
|
|
|
|
|
|
|
|
ref<RemoteStore::Connection> openConnection() override;
|
2019-02-12 12:43:32 +00:00
|
|
|
std::optional<std::string> path;
|
2006-11-30 18:35:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
}
|