lix/src/libstore/ssh-store.cc

116 lines
3.2 KiB
C++
Raw Normal View History

#include "ssh-store-config.hh"
2016-09-12 12:03:29 +00:00
#include "store-api.hh"
#include "local-fs-store.hh"
2016-09-12 12:03:29 +00:00
#include "remote-store.hh"
#include "remote-store-connection.hh"
2016-09-02 18:31:38 +00:00
#include "remote-fs-accessor.hh"
#include "archive.hh"
#include "worker-protocol.hh"
#include "pool.hh"
#include "ssh.hh"
2016-09-02 18:31:38 +00:00
namespace nix {
struct SSHStoreConfig : virtual RemoteStoreConfig, virtual CommonSSHStoreConfig
2016-09-12 12:03:29 +00:00
{
using RemoteStoreConfig::RemoteStoreConfig;
2023-03-23 08:11:15 +00:00
using CommonSSHStoreConfig::CommonSSHStoreConfig;
const Setting<Path> remoteProgram{this, "nix-daemon", "remote-program",
2023-03-23 08:35:35 +00:00
"Path to the `nix-daemon` executable on the remote machine."};
const std::string name() override { return "Experimental SSH Store"; }
std::string doc() override
{
return
#include "ssh-store.md"
;
}
};
2017-02-07 18:20:15 +00:00
class SSHStore : public virtual SSHStoreConfig, public virtual RemoteStore
2016-09-12 12:03:29 +00:00
{
public:
// Hack for getting remote build log output.
// Intentionally not in `SSHStoreConfig` so that it doesn't appear in
// the documentation
const Setting<int> logFD{(StoreConfig*) this, -1, "log-fd", "file descriptor to which SSH's stderr is connected"};
2016-09-12 12:03:29 +00:00
2020-09-14 12:12:47 +00:00
SSHStore(const std::string & scheme, const std::string & host, const Params & params)
: StoreConfig(params)
, RemoteStoreConfig(params)
2023-03-23 08:11:15 +00:00
, CommonSSHStoreConfig(params)
, SSHStoreConfig(params)
, Store(params)
, RemoteStore(params)
, host(host)
, master(
host,
sshKey,
sshPublicHostKey,
// Use SSH master only if using more than 1 connection.
connections->capacity() > 1,
compress,
logFD)
{
}
2016-09-12 12:03:29 +00:00
static std::set<std::string> uriSchemes() { return {"ssh-ng"}; }
std::string getUri() override
{
return *uriSchemes().begin() + "://" + host;
}
2016-09-12 12:03:29 +00:00
// FIXME extend daemon protocol, move implementation to RemoteStore
std::optional<std::string> getBuildLogExact(const StorePath & path) override
{ unsupported("getBuildLogExact"); }
protected:
2016-09-12 12:03:29 +00:00
struct Connection : RemoteStore::Connection
{
std::unique_ptr<SSHMaster::Connection> sshConn;
void closeWrite() override
{
sshConn->in.close();
}
2016-09-12 12:03:29 +00:00
};
ref<RemoteStore::Connection> openConnection() override;
std::string host;
SSHMaster master;
void setOptions(RemoteStore::Connection & conn) override
{
/* TODO Add a way to explicitly ask for some options to be
forwarded. One option: A way to query the daemon for its
settings, and then a series of params to SSHStore like
forward-cores or forward-overridden-cores that only
override the requested settings.
*/
};
2016-09-12 12:03:29 +00:00
};
2016-09-02 18:31:38 +00:00
ref<RemoteStore::Connection> SSHStore::openConnection()
{
auto conn = make_ref<Connection>();
std::string command = remoteProgram + " --stdio";
if (remoteStore.get() != "")
command += " --store " + shellEscape(remoteStore.get());
conn->sshConn = master.startCommand(command);
conn->to = FdSink(conn->sshConn->in.get());
conn->from = FdSource(conn->sshConn->out.get());
2016-09-02 18:31:38 +00:00
return conn;
}
static RegisterStoreImplementation<SSHStore, SSHStoreConfig> regSSHStore;
2016-09-02 18:31:38 +00:00
}