#include "store-api.hh" #include "remote-store.hh" #include "remote-fs-accessor.hh" #include "archive.hh" #include "worker-protocol.hh" #include "pool.hh" #include "ssh.hh" namespace nix { static std::string uriScheme = "ssh-ng://"; class SSHStore : public RemoteStore { public: const Setting sshKey{(Store*) this, "", "ssh-key", "path to an SSH private key"}; const Setting compress{(Store*) this, false, "compress", "whether to compress the connection"}; const Setting remoteProgram{(Store*) this, "nix-daemon", "remote-program", "path to the nix-daemon executable on the remote system"}; const Setting remoteStore{(Store*) this, "", "remote-store", "URI of the store on the remote system"}; 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) { } std::string getUri() override { return uriScheme + host; } bool sameMachine() override { return false; } void narFromPath(const StorePath & path, Sink & sink) override; ref getFSAccessor() override; private: struct Connection : RemoteStore::Connection { std::unique_ptr sshConn; }; ref 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. */ }; }; void SSHStore::narFromPath(const StorePath & path, Sink & sink) { auto conn(connections->get()); conn->to << wopNarFromPath << printStorePath(path); conn->processStderr(); copyNAR(conn->from, sink); } ref SSHStore::getFSAccessor() { return make_ref(ref(shared_from_this())); } ref SSHStore::openConnection() { auto conn = make_ref(); 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()); initConnection(*conn); return conn; } static RegisterStoreImplementation regStore([]( const std::string & uri, const Store::Params & params) -> std::shared_ptr { if (std::string(uri, 0, uriScheme.size()) != uriScheme) return 0; return std::make_shared(std::string(uri, uriScheme.size()), params); }); }