2017-02-07 20:28:40 +02:00
|
|
|
#include "archive.hh"
|
|
|
|
#include "pool.hh"
|
|
|
|
#include "remote-store.hh"
|
|
|
|
#include "serve-protocol.hh"
|
|
|
|
#include "store-api.hh"
|
|
|
|
#include "worker-protocol.hh"
|
2017-03-03 20:05:50 +02:00
|
|
|
#include "ssh.hh"
|
2017-05-01 17:08:13 +03:00
|
|
|
#include "derivations.hh"
|
2017-02-07 20:28:40 +02:00
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
2020-09-10 11:55:51 +03:00
|
|
|
struct LegacySSHStoreConfig : virtual StoreConfig
|
2017-02-07 20:28:40 +02:00
|
|
|
{
|
2020-09-10 11:55:51 +03:00
|
|
|
using StoreConfig::StoreConfig;
|
2017-04-13 16:55:38 +03:00
|
|
|
const Setting<int> maxConnections{this, 1, "max-connections", "maximum number of concurrent SSH connections"};
|
|
|
|
const Setting<Path> sshKey{this, "", "ssh-key", "path to an SSH private key"};
|
|
|
|
const Setting<bool> compress{this, false, "compress", "whether to compress the connection"};
|
2018-03-21 16:10:46 +02:00
|
|
|
const Setting<Path> remoteProgram{this, "nix-store", "remote-program", "path to the nix-store executable on the remote system"};
|
2018-08-03 19:07:46 +03:00
|
|
|
const Setting<std::string> remoteStore{this, "", "remote-store", "URI of the store on the remote system"};
|
2020-09-10 11:55:51 +03:00
|
|
|
};
|
2017-04-13 16:55:38 +03:00
|
|
|
|
2020-09-10 11:55:51 +03:00
|
|
|
struct LegacySSHStore : public Store, public virtual LegacySSHStoreConfig
|
|
|
|
{
|
2017-05-02 13:01:46 +03:00
|
|
|
// Hack for getting remote build log output.
|
2020-09-10 11:55:51 +03:00
|
|
|
// Intentionally not in `StoreConfig` so that it doesn't appear in the
|
|
|
|
// documentation
|
2017-05-02 13:01:46 +03:00
|
|
|
const Setting<int> logFD{this, -1, "log-fd", "file descriptor to which SSH's stderr is connected"};
|
|
|
|
|
2017-02-07 20:28:40 +02:00
|
|
|
struct Connection
|
|
|
|
{
|
2017-03-03 20:05:50 +02:00
|
|
|
std::unique_ptr<SSHMaster::Connection> sshConn;
|
2017-02-07 20:28:40 +02:00
|
|
|
FdSink to;
|
|
|
|
FdSource from;
|
2017-05-01 17:08:13 +03:00
|
|
|
int remoteVersion;
|
2018-08-03 22:10:03 +03:00
|
|
|
bool good = true;
|
2017-02-07 20:28:40 +02:00
|
|
|
};
|
|
|
|
|
2017-03-03 20:05:50 +02:00
|
|
|
std::string host;
|
2017-02-07 20:28:40 +02:00
|
|
|
|
|
|
|
ref<Pool<Connection>> connections;
|
|
|
|
|
2017-03-03 20:05:50 +02:00
|
|
|
SSHMaster master;
|
2017-02-07 20:28:40 +02:00
|
|
|
|
2020-09-11 12:11:05 +03:00
|
|
|
static std::set<std::string> uriSchemes() { return {"ssh"}; }
|
2020-09-08 15:50:23 +03:00
|
|
|
|
2020-09-11 12:11:05 +03:00
|
|
|
LegacySSHStore(const string & scheme, const string & host, const Params & params)
|
2020-09-11 12:06:18 +03:00
|
|
|
: StoreConfig(params)
|
2020-09-10 11:55:51 +03:00
|
|
|
, Store(params)
|
2017-02-07 20:28:40 +02:00
|
|
|
, host(host)
|
|
|
|
, connections(make_ref<Pool<Connection>>(
|
2017-04-13 16:55:38 +03:00
|
|
|
std::max(1, (int) maxConnections),
|
2017-02-07 20:28:40 +02:00
|
|
|
[this]() { return openConnection(); },
|
2018-08-03 22:10:03 +03:00
|
|
|
[](const ref<Connection> & r) { return r->good; }
|
2017-02-07 20:28:40 +02:00
|
|
|
))
|
2017-03-03 20:05:50 +02:00
|
|
|
, master(
|
|
|
|
host,
|
2017-04-13 16:55:38 +03:00
|
|
|
sshKey,
|
2017-03-03 20:05:50 +02:00
|
|
|
// Use SSH master only if using more than 1 connection.
|
|
|
|
connections->capacity() > 1,
|
2017-05-02 13:01:46 +03:00
|
|
|
compress,
|
|
|
|
logFD)
|
2017-02-07 20:28:40 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
ref<Connection> openConnection()
|
|
|
|
{
|
|
|
|
auto conn = make_ref<Connection>();
|
2018-08-03 19:07:46 +03:00
|
|
|
conn->sshConn = master.startCommand(
|
2018-08-06 18:27:08 +03:00
|
|
|
fmt("%s --serve --write", remoteProgram)
|
2018-08-03 19:07:46 +03:00
|
|
|
+ (remoteStore.get() == "" ? "" : " --store " + shellEscape(remoteStore.get())));
|
2017-03-03 20:05:50 +02:00
|
|
|
conn->to = FdSink(conn->sshConn->in.get());
|
|
|
|
conn->from = FdSource(conn->sshConn->out.get());
|
2017-02-07 20:28:40 +02:00
|
|
|
|
|
|
|
try {
|
|
|
|
conn->to << SERVE_MAGIC_1 << SERVE_PROTOCOL_VERSION;
|
|
|
|
conn->to.flush();
|
|
|
|
|
|
|
|
unsigned int magic = readInt(conn->from);
|
|
|
|
if (magic != SERVE_MAGIC_2)
|
2017-07-30 14:27:57 +03:00
|
|
|
throw Error("protocol mismatch with 'nix-store --serve' on '%s'", host);
|
2017-05-01 17:08:13 +03:00
|
|
|
conn->remoteVersion = readInt(conn->from);
|
|
|
|
if (GET_PROTOCOL_MAJOR(conn->remoteVersion) != 0x200)
|
2017-07-30 14:27:57 +03:00
|
|
|
throw Error("unsupported 'nix-store --serve' protocol version on '%s'", host);
|
2017-02-07 20:28:40 +02:00
|
|
|
|
|
|
|
} catch (EndOfFile & e) {
|
2017-07-30 14:27:57 +03:00
|
|
|
throw Error("cannot connect to '%1%'", host);
|
2017-02-07 20:28:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return conn;
|
|
|
|
};
|
|
|
|
|
|
|
|
string getUri() override
|
|
|
|
{
|
2020-09-11 12:11:05 +03:00
|
|
|
return *uriSchemes().begin() + "://" + host;
|
2017-02-07 20:28:40 +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
|
2017-02-07 20:28:40 +02:00
|
|
|
{
|
2018-03-27 23:16:01 +03:00
|
|
|
try {
|
2017-02-07 20:28:40 +02:00
|
|
|
auto conn(connections->get());
|
|
|
|
|
2020-08-06 21:31:48 +03:00
|
|
|
/* No longer support missing NAR hash */
|
|
|
|
assert(GET_PROTOCOL_MINOR(conn->remoteVersion) >= 4);
|
|
|
|
|
2019-12-05 20:11:09 +02:00
|
|
|
debug("querying remote host '%s' for info on '%s'", host, printStorePath(path));
|
2017-02-07 20:28:40 +02:00
|
|
|
|
2019-12-05 20:11:09 +02:00
|
|
|
conn->to << cmdQueryPathInfos << PathSet{printStorePath(path)};
|
2017-02-07 20:28:40 +02:00
|
|
|
conn->to.flush();
|
|
|
|
|
2019-12-05 20:11:09 +02:00
|
|
|
auto p = readString(conn->from);
|
|
|
|
if (p.empty()) return callback(nullptr);
|
2020-08-06 21:31:48 +03:00
|
|
|
auto path2 = parseStorePath(p);
|
|
|
|
assert(path == path2);
|
|
|
|
/* Hash will be set below. FIXME construct ValidPathInfo at end. */
|
|
|
|
auto info = std::make_shared<ValidPathInfo>(path, Hash::dummy);
|
2017-02-07 20:28:40 +02:00
|
|
|
|
|
|
|
PathSet references;
|
2019-12-05 20:11:09 +02:00
|
|
|
auto deriver = readString(conn->from);
|
|
|
|
if (deriver != "")
|
|
|
|
info->deriver = parseStorePath(deriver);
|
|
|
|
info->references = readStorePaths<StorePathSet>(*this, conn->from);
|
2017-02-07 20:28:40 +02:00
|
|
|
readLongLong(conn->from); // download size
|
|
|
|
info->narSize = readLongLong(conn->from);
|
|
|
|
|
2020-08-06 21:31:48 +03:00
|
|
|
{
|
2017-09-08 17:55:27 +03:00
|
|
|
auto s = readString(conn->from);
|
2020-08-06 21:31:48 +03:00
|
|
|
if (s == "")
|
|
|
|
throw Error("NAR hash is now mandatory");
|
|
|
|
info->narHash = Hash::parseAnyPrefixed(s);
|
2017-09-08 17:55:27 +03:00
|
|
|
}
|
2020-08-06 21:31:48 +03:00
|
|
|
info->ca = parseContentAddressOpt(readString(conn->from));
|
|
|
|
info->sigs = readStrings<StringSet>(conn->from);
|
2017-09-08 17:55:27 +03:00
|
|
|
|
2017-02-07 20:28:40 +02:00
|
|
|
auto s = readString(conn->from);
|
|
|
|
assert(s == "");
|
|
|
|
|
2018-03-27 23:16:01 +03:00
|
|
|
callback(std::move(info));
|
|
|
|
} catch (...) { callback.rethrow(); }
|
2017-02-07 20:28:40 +02:00
|
|
|
}
|
|
|
|
|
2018-03-22 00:12:22 +02:00
|
|
|
void addToStore(const ValidPathInfo & info, Source & source,
|
2020-07-13 18:37:44 +03:00
|
|
|
RepairFlag repair, CheckSigsFlag checkSigs) override
|
2017-02-07 20:28:40 +02:00
|
|
|
{
|
2019-12-05 20:11:09 +02:00
|
|
|
debug("adding path '%s' to remote host '%s'", printStorePath(info.path), host);
|
2017-02-07 20:28:40 +02:00
|
|
|
|
|
|
|
auto conn(connections->get());
|
|
|
|
|
2018-08-31 02:00:01 +03:00
|
|
|
if (GET_PROTOCOL_MINOR(conn->remoteVersion) >= 5) {
|
2018-08-03 22:10:03 +03:00
|
|
|
|
|
|
|
conn->to
|
|
|
|
<< cmdAddToStoreNar
|
2019-12-05 20:11:09 +02:00
|
|
|
<< printStorePath(info.path)
|
|
|
|
<< (info.deriver ? printStorePath(*info.deriver) : "")
|
2020-08-05 21:42:48 +03:00
|
|
|
<< info.narHash.to_string(Base16, false);
|
2019-12-05 20:11:09 +02:00
|
|
|
writeStorePaths(*this, conn->to, info.references);
|
|
|
|
conn->to
|
2018-08-03 22:10:03 +03:00
|
|
|
<< info.registrationTime
|
|
|
|
<< info.narSize
|
|
|
|
<< info.ultimate
|
|
|
|
<< info.sigs
|
2020-06-02 03:37:43 +03:00
|
|
|
<< renderContentAddress(info.ca);
|
2018-08-03 22:10:03 +03:00
|
|
|
try {
|
|
|
|
copyNAR(source, conn->to);
|
|
|
|
} catch (...) {
|
|
|
|
conn->good = false;
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
conn->to.flush();
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
conn->to
|
|
|
|
<< cmdImportPaths
|
|
|
|
<< 1;
|
|
|
|
try {
|
|
|
|
copyNAR(source, conn->to);
|
|
|
|
} catch (...) {
|
|
|
|
conn->good = false;
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
conn->to
|
|
|
|
<< exportMagic
|
2019-12-05 20:11:09 +02:00
|
|
|
<< printStorePath(info.path);
|
|
|
|
writeStorePaths(*this, conn->to, info.references);
|
|
|
|
conn->to
|
|
|
|
<< (info.deriver ? printStorePath(*info.deriver) : "")
|
2018-08-03 22:10:03 +03:00
|
|
|
<< 0
|
|
|
|
<< 0;
|
|
|
|
conn->to.flush();
|
|
|
|
|
|
|
|
}
|
2017-02-07 20:28:40 +02:00
|
|
|
|
|
|
|
if (readInt(conn->from) != 1)
|
2019-12-05 20:11:09 +02:00
|
|
|
throw Error("failed to add path '%s' to remote host '%s'", printStorePath(info.path), host);
|
2017-02-07 20:28:40 +02:00
|
|
|
}
|
|
|
|
|
2019-12-05 20:11:09 +02:00
|
|
|
void narFromPath(const StorePath & path, Sink & sink) override
|
2017-02-07 20:28:40 +02:00
|
|
|
{
|
|
|
|
auto conn(connections->get());
|
|
|
|
|
2019-12-05 20:11:09 +02:00
|
|
|
conn->to << cmdDumpStorePath << printStorePath(path);
|
2017-02-07 20:28:40 +02:00
|
|
|
conn->to.flush();
|
2018-03-21 23:56:02 +02:00
|
|
|
copyNAR(conn->from, sink);
|
2017-02-07 20:28:40 +02:00
|
|
|
}
|
|
|
|
|
2019-12-05 20:11:09 +02:00
|
|
|
std::optional<StorePath> queryPathFromHashPart(const std::string & hashPart) override
|
2019-01-18 14:34:23 +02:00
|
|
|
{ unsupported("queryPathFromHashPart"); }
|
2017-02-07 20:28:40 +02:00
|
|
|
|
2019-12-05 20:11:09 +02:00
|
|
|
StorePath addToStore(const string & name, const Path & srcPath,
|
2020-03-29 08:04:55 +03:00
|
|
|
FileIngestionMethod method, HashType hashAlgo,
|
2017-06-28 19:11:01 +03:00
|
|
|
PathFilter & filter, RepairFlag repair) override
|
2019-01-18 14:34:23 +02:00
|
|
|
{ unsupported("addToStore"); }
|
2017-02-07 20:28:40 +02:00
|
|
|
|
2019-12-05 20:11:09 +02:00
|
|
|
StorePath addTextToStore(const string & name, const string & s,
|
|
|
|
const StorePathSet & references, RepairFlag repair) override
|
2019-01-18 14:34:23 +02:00
|
|
|
{ unsupported("addTextToStore"); }
|
2017-02-07 20:28:40 +02:00
|
|
|
|
2020-08-12 06:13:17 +03:00
|
|
|
private:
|
|
|
|
|
|
|
|
void putBuildSettings(Connection & conn)
|
|
|
|
{
|
|
|
|
conn.to
|
|
|
|
<< settings.maxSilentTime
|
|
|
|
<< settings.buildTimeout;
|
|
|
|
if (GET_PROTOCOL_MINOR(conn.remoteVersion) >= 2)
|
|
|
|
conn.to
|
|
|
|
<< settings.maxLogSize;
|
|
|
|
if (GET_PROTOCOL_MINOR(conn.remoteVersion) >= 3)
|
|
|
|
conn.to
|
|
|
|
<< settings.buildRepeat
|
|
|
|
<< settings.enforceDeterminism;
|
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
2019-12-05 20:11:09 +02:00
|
|
|
BuildResult buildDerivation(const StorePath & drvPath, const BasicDerivation & drv,
|
2017-02-07 20:28:40 +02:00
|
|
|
BuildMode buildMode) override
|
2017-05-01 17:08:13 +03:00
|
|
|
{
|
|
|
|
auto conn(connections->get());
|
|
|
|
|
|
|
|
conn->to
|
|
|
|
<< cmdBuildDerivation
|
2019-12-05 20:11:09 +02:00
|
|
|
<< printStorePath(drvPath);
|
|
|
|
writeDerivation(conn->to, *this, drv);
|
2020-08-12 06:13:17 +03:00
|
|
|
|
|
|
|
putBuildSettings(*conn);
|
2017-05-01 17:08:13 +03:00
|
|
|
|
|
|
|
conn->to.flush();
|
|
|
|
|
|
|
|
BuildResult status;
|
|
|
|
status.status = (BuildResult::Status) readInt(conn->from);
|
|
|
|
conn->from >> status.errorMsg;
|
|
|
|
|
|
|
|
if (GET_PROTOCOL_MINOR(conn->remoteVersion) >= 3)
|
|
|
|
conn->from >> status.timesBuilt >> status.isNonDeterministic >> status.startTime >> status.stopTime;
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
2017-02-07 20:28:40 +02:00
|
|
|
|
2020-08-12 06:13:17 +03:00
|
|
|
void buildPaths(const std::vector<StorePathWithOutputs> & drvPaths, BuildMode buildMode) override
|
|
|
|
{
|
|
|
|
auto conn(connections->get());
|
|
|
|
|
|
|
|
conn->to << cmdBuildPaths;
|
|
|
|
Strings ss;
|
|
|
|
for (auto & p : drvPaths)
|
|
|
|
ss.push_back(p.to_string(*this));
|
|
|
|
conn->to << ss;
|
|
|
|
|
|
|
|
putBuildSettings(*conn);
|
|
|
|
|
|
|
|
conn->to.flush();
|
|
|
|
|
|
|
|
BuildResult result;
|
|
|
|
result.status = (BuildResult::Status) readInt(conn->from);
|
|
|
|
|
|
|
|
if (!result.success()) {
|
|
|
|
conn->from >> result.errorMsg;
|
|
|
|
throw Error(result.status, result.errorMsg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-05 20:11:09 +02:00
|
|
|
void ensurePath(const StorePath & path) override
|
2019-01-18 14:34:23 +02:00
|
|
|
{ unsupported("ensurePath"); }
|
2017-02-07 20:28:40 +02:00
|
|
|
|
2019-12-05 20:11:09 +02:00
|
|
|
void computeFSClosure(const StorePathSet & paths,
|
|
|
|
StorePathSet & out, bool flipDirection = false,
|
2017-03-16 12:44:01 +02:00
|
|
|
bool includeOutputs = false, bool includeDerivers = false) override
|
|
|
|
{
|
|
|
|
if (flipDirection || includeDerivers) {
|
|
|
|
Store::computeFSClosure(paths, out, flipDirection, includeOutputs, includeDerivers);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto conn(connections->get());
|
|
|
|
|
|
|
|
conn->to
|
|
|
|
<< cmdQueryClosure
|
2019-12-05 20:11:09 +02:00
|
|
|
<< includeOutputs;
|
|
|
|
writeStorePaths(*this, conn->to, paths);
|
2017-03-16 12:44:01 +02:00
|
|
|
conn->to.flush();
|
|
|
|
|
2019-12-05 20:11:09 +02:00
|
|
|
for (auto & i : readStorePaths<StorePathSet>(*this, conn->from))
|
2020-06-16 23:20:18 +03:00
|
|
|
out.insert(i);
|
2017-03-16 12:44:01 +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
|
2017-03-16 14:50:01 +02:00
|
|
|
{
|
|
|
|
auto conn(connections->get());
|
|
|
|
|
|
|
|
conn->to
|
|
|
|
<< cmdQueryValidPaths
|
|
|
|
<< false // lock
|
2019-12-05 20:11:09 +02:00
|
|
|
<< maybeSubstitute;
|
|
|
|
writeStorePaths(*this, conn->to, paths);
|
2017-03-16 14:50:01 +02:00
|
|
|
conn->to.flush();
|
|
|
|
|
2019-12-05 20:11:09 +02:00
|
|
|
return readStorePaths<StorePathSet>(*this, conn->from);
|
2017-03-16 14:50:01 +02:00
|
|
|
}
|
2017-05-02 15:18:46 +03:00
|
|
|
|
|
|
|
void connect() override
|
|
|
|
{
|
|
|
|
auto conn(connections->get());
|
|
|
|
}
|
2018-08-31 00:28:47 +03:00
|
|
|
|
|
|
|
unsigned int getProtocol() override
|
|
|
|
{
|
|
|
|
auto conn(connections->get());
|
|
|
|
return conn->remoteVersion;
|
|
|
|
}
|
2017-02-07 20:28:40 +02:00
|
|
|
};
|
|
|
|
|
2020-09-10 11:55:51 +03:00
|
|
|
static RegisterStoreImplementation<LegacySSHStore, LegacySSHStoreConfig> regStore;
|
2017-02-07 20:28:40 +02:00
|
|
|
|
|
|
|
}
|