2012-07-18 21:59:03 +03:00
|
|
|
#pragma once
|
2006-11-30 20:35:50 +02:00
|
|
|
|
2016-02-23 17:40:16 +02:00
|
|
|
#include <limits>
|
2006-11-30 20:35:50 +02:00
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include "store-api.hh"
|
|
|
|
|
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
|
|
|
|
2006-11-30 21:54:43 +02:00
|
|
|
class Pipe;
|
|
|
|
class Pid;
|
|
|
|
struct FdSink;
|
|
|
|
struct FdSource;
|
2016-02-23 16:00:59 +02:00
|
|
|
template<typename T> class Pool;
|
2018-10-17 00:36:15 +03:00
|
|
|
struct ConnectionHandle;
|
2006-11-30 21:54:43 +02:00
|
|
|
|
2020-09-10 11:55:51 +03:00
|
|
|
struct RemoteStoreConfig : virtual StoreConfig
|
2006-11-30 20:35:50 +02:00
|
|
|
{
|
2020-09-10 11:55:51 +03:00
|
|
|
using StoreConfig::StoreConfig;
|
2006-11-30 20:35:50 +02:00
|
|
|
|
2020-09-10 11:55:51 +03:00
|
|
|
const Setting<int> maxConnections{(StoreConfig*) this, 1,
|
2017-04-13 16:55:38 +03:00
|
|
|
"max-connections", "maximum number of concurrent connections to the Nix daemon"};
|
|
|
|
|
2020-09-10 11:55:51 +03:00
|
|
|
const Setting<unsigned int> maxConnectionAge{(StoreConfig*) this, std::numeric_limits<unsigned int>::max(),
|
2017-09-14 19:10:38 +03:00
|
|
|
"max-connection-age", "number of seconds to reuse a connection"};
|
2020-09-10 11:55:51 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
/* FIXME: RemoteStore is a misnomer - should be something like
|
|
|
|
DaemonStore. */
|
2020-12-20 17:33:12 +02:00
|
|
|
class RemoteStore : public virtual RemoteStoreConfig, public virtual Store
|
2020-09-10 11:55:51 +03:00
|
|
|
{
|
|
|
|
public:
|
2017-09-14 19:10:38 +03:00
|
|
|
|
2019-10-11 19:48:59 +03:00
|
|
|
virtual bool sameMachine() = 0;
|
|
|
|
|
2017-03-03 20:05:50 +02:00
|
|
|
RemoteStore(const Params & params);
|
2015-03-25 18:06:12 +02:00
|
|
|
|
2006-11-30 20:35:50 +02:00
|
|
|
/* Implementations of abstract store API methods. */
|
2015-03-25 18:06:12 +02:00
|
|
|
|
2019-12-05 20:11:09 +02:00
|
|
|
bool isValidPathUncached(const StorePath & path) override;
|
2006-11-30 20:35:50 +02:00
|
|
|
|
2019-12-05 20:11:09 +02:00
|
|
|
StorePathSet queryValidPaths(const StorePathSet & paths,
|
2017-06-28 19:11:01 +03:00
|
|
|
SubstituteFlag maybeSubstitute = NoSubstitute) override;
|
2015-03-25 18:06:12 +02:00
|
|
|
|
2019-12-05 20:11:09 +02:00
|
|
|
StorePathSet queryAllValidPaths() override;
|
2015-03-25 18:06:12 +02:00
|
|
|
|
2019-12-05 20:11:09 +02:00
|
|
|
void queryPathInfoUncached(const StorePath & path,
|
2018-09-25 19:54:16 +03:00
|
|
|
Callback<std::shared_ptr<const ValidPathInfo>> callback) noexcept override;
|
2006-11-30 20:35:50 +02:00
|
|
|
|
2019-12-05 20:11:09 +02:00
|
|
|
void queryReferrers(const StorePath & path, StorePathSet & referrers) override;
|
2015-03-25 18:06:12 +02:00
|
|
|
|
2019-12-05 20:11:09 +02:00
|
|
|
StorePathSet queryValidDerivers(const StorePath & path) override;
|
2012-12-20 19:41:44 +02:00
|
|
|
|
2019-12-05 20:11:09 +02:00
|
|
|
StorePathSet queryDerivationOutputs(const StorePath & path) override;
|
2015-03-25 18:06:12 +02:00
|
|
|
|
2020-08-20 17:12:51 +03:00
|
|
|
std::map<std::string, std::optional<StorePath>> queryPartialDerivationOutputMap(const StorePath & path) override;
|
2019-12-05 20:11:09 +02:00
|
|
|
std::optional<StorePath> queryPathFromHashPart(const std::string & hashPart) override;
|
2015-03-25 18:06:12 +02:00
|
|
|
|
2019-12-05 20:11:09 +02:00
|
|
|
StorePathSet querySubstitutablePaths(const StorePathSet & paths) override;
|
2015-03-25 18:06:12 +02:00
|
|
|
|
2020-06-17 22:03:05 +03:00
|
|
|
void querySubstitutablePathInfos(const StorePathCAMap & paths,
|
|
|
|
SubstitutablePathInfos & infos) override;
|
2015-03-25 18:06:12 +02:00
|
|
|
|
2020-09-18 12:58:45 +03:00
|
|
|
/* Add a content-addressable store path. `dump` will be drained. */
|
2020-09-22 12:40:19 +03:00
|
|
|
ref<const ValidPathInfo> addCAToStore(
|
|
|
|
Source & dump,
|
2022-02-15 16:08:06 +02:00
|
|
|
std::string_view name,
|
2020-09-22 12:40:19 +03:00
|
|
|
ContentAddressMethod caMethod,
|
|
|
|
const StorePathSet & references,
|
|
|
|
RepairFlag repair);
|
2020-09-17 21:19:15 +03:00
|
|
|
|
2020-09-18 12:58:45 +03:00
|
|
|
/* Add a content-addressable store path. Does not support references. `dump` will be drained. */
|
2022-02-15 16:08:06 +02:00
|
|
|
StorePath addToStoreFromDump(Source & dump, std::string_view name,
|
2021-11-09 11:24:49 +02:00
|
|
|
FileIngestionMethod method = FileIngestionMethod::Recursive, HashType hashAlgo = htSHA256, RepairFlag repair = NoRepair, const StorePathSet & references = StorePathSet()) override;
|
2020-09-17 20:27:11 +03:00
|
|
|
|
2018-03-22 00:42:21 +02:00
|
|
|
void addToStore(const ValidPathInfo & info, Source & nar,
|
2020-07-13 18:37:44 +03:00
|
|
|
RepairFlag repair, CheckSigsFlag checkSigs) override;
|
2016-05-04 14:36:54 +03:00
|
|
|
|
2021-07-26 14:31:09 +03:00
|
|
|
void addMultipleToStore(
|
|
|
|
Source & source,
|
|
|
|
RepairFlag repair,
|
|
|
|
CheckSigsFlag checkSigs) override;
|
|
|
|
|
2019-12-05 20:11:09 +02:00
|
|
|
StorePath addTextToStore(const string & name, const string & s,
|
|
|
|
const StorePathSet & references, RepairFlag repair) override;
|
2006-11-30 20:35:50 +02:00
|
|
|
|
2020-10-08 18:36:51 +03:00
|
|
|
void registerDrvOutput(const Realisation & info) override;
|
|
|
|
|
2021-10-27 12:36:51 +03:00
|
|
|
void queryRealisationUncached(const DrvOutput &,
|
|
|
|
Callback<std::shared_ptr<const Realisation>> callback) noexcept override;
|
2020-10-08 18:36:51 +03:00
|
|
|
|
2021-07-19 16:43:08 +03:00
|
|
|
void buildPaths(const std::vector<DerivedPath> & paths, BuildMode buildMode, std::shared_ptr<Store> evalStore) override;
|
2006-11-30 20:35:50 +02:00
|
|
|
|
2019-12-05 20:11:09 +02:00
|
|
|
BuildResult buildDerivation(const StorePath & drvPath, const BasicDerivation & drv,
|
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
|
|
|
BuildMode buildMode) override;
|
|
|
|
|
2019-12-05 20:11:09 +02:00
|
|
|
void ensurePath(const StorePath & path) override;
|
2006-11-30 20:35:50 +02:00
|
|
|
|
2019-12-05 20:11:09 +02:00
|
|
|
void addTempRoot(const StorePath & path) override;
|
2006-12-02 18:41:36 +02:00
|
|
|
|
2015-09-18 02:22:06 +03:00
|
|
|
void addIndirectRoot(const Path & path) override;
|
2015-03-25 18:06:12 +02:00
|
|
|
|
2019-03-14 14:50:07 +02:00
|
|
|
Roots findRoots(bool censor) override;
|
2006-12-05 04:18:46 +02:00
|
|
|
|
2015-09-18 02:22:06 +03:00
|
|
|
void collectGarbage(const GCOptions & options, GCResults & results) override;
|
2015-03-25 18:06:12 +02:00
|
|
|
|
2015-09-18 02:22:06 +03:00
|
|
|
void optimiseStore() override;
|
|
|
|
|
2017-06-28 19:11:01 +03:00
|
|
|
bool verifyStore(bool checkContents, RepairFlag repair) override;
|
2014-09-01 23:21:42 +03:00
|
|
|
|
2019-12-05 20:11:09 +02:00
|
|
|
void addSignatures(const StorePath & storePath, const StringSet & sigs) override;
|
2016-04-05 16:30:22 +03:00
|
|
|
|
2021-04-05 16:48:18 +03:00
|
|
|
void queryMissing(const std::vector<DerivedPath> & targets,
|
2019-12-05 20:11:09 +02:00
|
|
|
StorePathSet & willBuild, StorePathSet & willSubstitute, StorePathSet & unknown,
|
2020-07-30 14:10:49 +03:00
|
|
|
uint64_t & downloadSize, uint64_t & narSize) override;
|
2017-04-06 19:40:19 +03:00
|
|
|
|
2022-01-17 20:45:21 +02:00
|
|
|
void addBuildLog(const StorePath & drvPath, std::string_view log) override;
|
|
|
|
|
2022-01-25 22:14:27 +02:00
|
|
|
std::optional<std::string> getVersion() override;
|
|
|
|
|
2017-05-02 15:18:46 +03:00
|
|
|
void connect() override;
|
|
|
|
|
2018-08-31 00:28:47 +03:00
|
|
|
unsigned int getProtocol() override;
|
|
|
|
|
2017-09-14 19:10:38 +03:00
|
|
|
void flushBadConnections();
|
|
|
|
|
2016-02-23 16:00:59 +02:00
|
|
|
struct Connection
|
|
|
|
{
|
|
|
|
FdSink to;
|
|
|
|
FdSource from;
|
|
|
|
unsigned int daemonVersion;
|
2022-01-25 22:14:27 +02:00
|
|
|
std::optional<std::string> daemonNixVersion;
|
2017-09-14 19:10:38 +03:00
|
|
|
std::chrono::time_point<std::chrono::steady_clock> startTime;
|
2006-12-03 04:08:13 +02:00
|
|
|
|
2016-09-02 21:31:38 +03:00
|
|
|
virtual ~Connection();
|
2016-02-23 17:40:16 +02:00
|
|
|
|
2021-09-23 19:01:04 +03:00
|
|
|
virtual void closeWrite() = 0;
|
|
|
|
|
2020-08-27 15:48:08 +03:00
|
|
|
std::exception_ptr processStderr(Sink * sink = 0, Source * source = 0, bool flush = true);
|
2016-02-23 16:00:59 +02:00
|
|
|
};
|
2006-12-04 15:28:14 +02:00
|
|
|
|
2017-03-03 20:35:34 +02:00
|
|
|
ref<Connection> openConnectionWrapper();
|
|
|
|
|
2020-08-19 22:34:47 +03:00
|
|
|
protected:
|
|
|
|
|
2016-09-02 21:15:04 +03:00
|
|
|
virtual ref<Connection> openConnection() = 0;
|
|
|
|
|
|
|
|
void initConnection(Connection & conn);
|
|
|
|
|
2016-02-23 16:00:59 +02:00
|
|
|
ref<Pool<Connection>> connections;
|
2007-09-18 12:11:20 +03:00
|
|
|
|
2018-03-05 14:42:15 +02:00
|
|
|
virtual void setOptions(Connection & conn);
|
|
|
|
|
2021-11-05 17:17:49 +02:00
|
|
|
void setOptions() override;
|
|
|
|
|
2018-10-17 00:36:15 +03:00
|
|
|
ConnectionHandle getConnection();
|
|
|
|
|
2018-10-26 20:34:29 +03:00
|
|
|
friend struct ConnectionHandle;
|
2018-10-17 00:36:15 +03:00
|
|
|
|
2020-09-07 12:26:09 +03:00
|
|
|
virtual ref<FSAccessor> getFSAccessor() override;
|
|
|
|
|
|
|
|
virtual void narFromPath(const StorePath & path, Sink & sink) override;
|
|
|
|
|
2016-09-02 21:15:04 +03:00
|
|
|
private:
|
|
|
|
|
2017-03-03 20:35:34 +02:00
|
|
|
std::atomic_bool failed{false};
|
|
|
|
|
2016-09-02 21:15:04 +03:00
|
|
|
};
|
2007-09-18 12:11:20 +03:00
|
|
|
|
2006-11-30 20:35:50 +02:00
|
|
|
|
|
|
|
}
|