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"
|
2017-03-03 18:05:50 +00:00
|
|
|
#include "ssh.hh"
|
2016-09-02 18:31:38 +00:00
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
2020-09-10 08:55:51 +00:00
|
|
|
struct SSHStoreConfig : virtual RemoteStoreConfig
|
2016-09-12 12:03:29 +00:00
|
|
|
{
|
2020-09-10 08:55:51 +00:00
|
|
|
using RemoteStoreConfig::RemoteStoreConfig;
|
2020-09-11 09:06:18 +00:00
|
|
|
|
2020-09-10 08:55:51 +00:00
|
|
|
const Setting<Path> sshKey{(StoreConfig*) this, "", "ssh-key", "path to an SSH private key"};
|
2021-02-25 01:52:22 +00:00
|
|
|
const Setting<std::string> sshPublicHostKey{(StoreConfig*) this, "", "base64-ssh-public-host-key", "The public half of the host's SSH key"};
|
2020-09-10 08:55:51 +00:00
|
|
|
const Setting<bool> compress{(StoreConfig*) this, false, "compress", "whether to compress the connection"};
|
|
|
|
const Setting<Path> remoteProgram{(StoreConfig*) this, "nix-daemon", "remote-program", "path to the nix-daemon executable on the remote system"};
|
|
|
|
const Setting<std::string> remoteStore{(StoreConfig*) this, "", "remote-store", "URI of the store on the remote system"};
|
2020-09-14 12:04:02 +00:00
|
|
|
|
|
|
|
const std::string name() override { return "SSH Store"; }
|
2020-09-10 08:55:51 +00:00
|
|
|
};
|
2017-02-07 18:20:15 +00:00
|
|
|
|
2020-12-20 15:33:12 +00:00
|
|
|
class SSHStore : public virtual SSHStoreConfig, public virtual RemoteStore
|
2016-09-12 12:03:29 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2020-09-14 12:12:47 +00:00
|
|
|
SSHStore(const std::string & scheme, const std::string & host, const Params & params)
|
2020-09-11 09:06:18 +00:00
|
|
|
: StoreConfig(params)
|
2020-12-20 15:33:12 +00:00
|
|
|
, RemoteStoreConfig(params)
|
|
|
|
, SSHStoreConfig(params)
|
2020-09-11 09:06:18 +00:00
|
|
|
, Store(params)
|
2017-03-03 18:05:50 +00:00
|
|
|
, RemoteStore(params)
|
|
|
|
, host(host)
|
|
|
|
, master(
|
|
|
|
host,
|
2017-04-13 13:55:38 +00:00
|
|
|
sshKey,
|
2021-02-25 01:52:22 +00:00
|
|
|
sshPublicHostKey,
|
2017-03-03 18:05:50 +00:00
|
|
|
// Use SSH master only if using more than 1 connection.
|
|
|
|
connections->capacity() > 1,
|
2017-04-13 13:55:38 +00:00
|
|
|
compress)
|
2017-03-03 18:05:50 +00:00
|
|
|
{
|
|
|
|
}
|
2016-09-12 12:03:29 +00:00
|
|
|
|
2020-09-11 09:11:05 +00:00
|
|
|
static std::set<std::string> uriSchemes() { return {"ssh-ng"}; }
|
2020-09-08 12:50:23 +00:00
|
|
|
|
2017-03-03 18:05:50 +00:00
|
|
|
std::string getUri() override
|
|
|
|
{
|
2020-09-11 09:11:05 +00:00
|
|
|
return *uriSchemes().begin() + "://" + host;
|
2017-03-03 18:05:50 +00:00
|
|
|
}
|
2016-09-12 12:03:29 +00:00
|
|
|
|
2022-03-08 18:20:39 +00:00
|
|
|
// FIXME extend daemon protocol, move implementation to RemoteStore
|
2022-12-15 20:58:54 +00:00
|
|
|
std::optional<std::string> getBuildLogExact(const StorePath & path) override
|
|
|
|
{ unsupported("getBuildLogExact"); }
|
2022-03-08 18:20:39 +00:00
|
|
|
|
2016-09-12 12:03:29 +00:00
|
|
|
private:
|
|
|
|
|
|
|
|
struct Connection : RemoteStore::Connection
|
|
|
|
{
|
2017-03-03 18:05:50 +00:00
|
|
|
std::unique_ptr<SSHMaster::Connection> sshConn;
|
2021-09-23 16:01:04 +00:00
|
|
|
|
|
|
|
void closeWrite() override
|
|
|
|
{
|
|
|
|
sshConn->in.close();
|
|
|
|
}
|
2016-09-12 12:03:29 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
ref<RemoteStore::Connection> openConnection() override;
|
|
|
|
|
2017-03-03 18:05:50 +00:00
|
|
|
std::string host;
|
2016-08-10 14:44:39 +00:00
|
|
|
|
2017-03-03 18:05:50 +00:00
|
|
|
SSHMaster master;
|
2018-03-05 12:42:15 +00:00
|
|
|
|
|
|
|
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>();
|
2020-02-03 22:18:34 +00:00
|
|
|
conn->sshConn = master.startCommand(
|
|
|
|
fmt("%s --stdio", remoteProgram)
|
|
|
|
+ (remoteStore.get() == "" ? "" : " --store " + shellEscape(remoteStore.get())));
|
2017-03-03 18:05:50 +00:00
|
|
|
conn->to = FdSink(conn->sshConn->in.get());
|
|
|
|
conn->from = FdSource(conn->sshConn->out.get());
|
2016-09-02 18:31:38 +00:00
|
|
|
return conn;
|
|
|
|
}
|
|
|
|
|
2020-10-06 11:36:55 +00:00
|
|
|
static RegisterStoreImplementation<SSHStore, SSHStoreConfig> regSSHStore;
|
2016-09-02 18:31:38 +00:00
|
|
|
|
|
|
|
}
|