lix/src/libstore/ssh-store.cc

88 lines
2.4 KiB
C++
Raw Normal View History

2016-09-12 12:03:29 +00:00
#include "store-api.hh"
#include "remote-store.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 {
2016-09-12 12:03:29 +00:00
class SSHStore : public RemoteStore
{
public:
const Setting<Path> sshKey{(Store*) this, "", "ssh-key", "path to an SSH private key"};
const Setting<bool> compress{(Store*) this, false, "compress", "whether to compress the connection"};
const Setting<Path> remoteProgram{(Store*) this, "nix-daemon", "remote-program", "path to the nix-daemon executable on the remote system"};
const Setting<std::string> remoteStore{(Store*) this, "", "remote-store", "URI of the store on the remote system"};
SSHStore(
const Params & params)
: SSHStore("dummy", params)
{
}
SSHStore(const std::string & host, const Params & params)
: Store(params)
, RemoteStore(params)
, host(host)
, master(
host,
sshKey,
// Use SSH master only if using more than 1 connection.
connections->capacity() > 1,
compress)
{
}
2016-09-12 12:03:29 +00:00
static std::vector<std::string> uriPrefixes() { return {"ssh-ng"}; }
std::string getUri() override
{
return uriPrefixes()[0] + "://" + host;
}
2016-09-12 12:03:29 +00:00
2019-11-26 20:07:44 +00:00
bool sameMachine() override
{ return false; }
2016-09-12 12:03:29 +00:00
private:
struct Connection : RemoteStore::Connection
{
std::unique_ptr<SSHMaster::Connection> sshConn;
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>();
conn->sshConn = master.startCommand(
fmt("%s --stdio", remoteProgram)
+ (remoteStore.get() == "" ? "" : " --store " + shellEscape(remoteStore.get())));
conn->to = FdSink(conn->sshConn->in.get());
conn->from = FdSource(conn->sshConn->out.get());
2016-09-02 18:31:38 +00:00
initConnection(*conn);
return conn;
}
2020-09-09 09:18:12 +00:00
static RegisterStoreImplementation<SSHStore> regStore;
2016-09-02 18:31:38 +00:00
}