nix-super/src/libstore/ssh.hh

65 lines
1.4 KiB
C++
Raw Normal View History

#pragma once
///@file
2017-03-03 20:28:27 +02:00
#include "sync.hh"
#include "processes.hh"
#include "file-system.hh"
namespace nix {
class SSHMaster
{
private:
2017-03-03 20:28:27 +02:00
const std::string host;
bool fakeSSH;
2017-03-03 20:28:27 +02:00
const std::string keyFile;
const std::string sshPublicHostKey;
2017-03-03 20:28:27 +02:00
const bool useMaster;
const bool compress;
const int logFD;
2017-03-03 20:28:27 +02:00
struct State
{
#ifndef _WIN32 // TODO re-enable on Windows, once we can start processes.
2017-03-03 20:28:27 +02:00
Pid sshMaster;
#endif
2017-03-03 20:28:27 +02:00
std::unique_ptr<AutoDelete> tmpDir;
Path socketPath;
};
Sync<State> state_;
void addCommonSSHOpts(Strings & args);
2023-05-16 15:48:04 +03:00
bool isMasterRunning();
#ifndef _WIN32 // TODO re-enable on Windows, once we can start processes.
Path startMaster();
#endif
public:
SSHMaster(const std::string & host, const std::string & keyFile, const std::string & sshPublicHostKey, bool useMaster, bool compress, int logFD = -1);
struct Connection
{
#ifndef _WIN32 // TODO re-enable on Windows, once we can start processes.
Pid sshPid;
#endif
AutoCloseFD out, in;
};
/**
* @param command The command (arg vector) to execute.
*
* @param extraSShArgs Extra args to pass to SSH (not the command to
* execute). Will not be used when "fake SSHing" to the local
* machine.
*/
std::unique_ptr<Connection> startCommand(
Strings && command,
Strings && extraSshArgs = {});
};
}