2020-10-11 19:01:53 +03:00
|
|
|
#include "uds-remote-store.hh"
|
2023-10-25 07:43:36 +03:00
|
|
|
#include "unix-domain-socket.hh"
|
2023-03-23 16:06:45 +02:00
|
|
|
#include "worker-protocol.hh"
|
2020-10-11 20:18:26 +03:00
|
|
|
|
2024-04-18 23:49:52 +03:00
|
|
|
#include <cstring>
|
2020-10-11 20:18:26 +03:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2024-04-18 23:49:52 +03:00
|
|
|
#ifdef _WIN32
|
|
|
|
# include <winsock2.h>
|
|
|
|
# include <afunix.h>
|
|
|
|
#else
|
|
|
|
# include <sys/socket.h>
|
|
|
|
# include <sys/un.h>
|
|
|
|
#endif
|
2020-10-11 20:18:26 +03:00
|
|
|
|
2020-10-11 19:01:53 +03:00
|
|
|
namespace nix {
|
2020-10-11 20:18:26 +03:00
|
|
|
|
2023-06-12 12:10:55 +03:00
|
|
|
std::string UDSRemoteStoreConfig::doc()
|
|
|
|
{
|
|
|
|
return
|
|
|
|
#include "uds-remote-store.md"
|
|
|
|
;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-10-11 20:18:26 +03:00
|
|
|
UDSRemoteStore::UDSRemoteStore(const Params & params)
|
|
|
|
: StoreConfig(params)
|
2020-12-20 17:33:12 +02:00
|
|
|
, LocalFSStoreConfig(params)
|
|
|
|
, RemoteStoreConfig(params)
|
|
|
|
, UDSRemoteStoreConfig(params)
|
2020-10-11 20:18:26 +03:00
|
|
|
, Store(params)
|
|
|
|
, LocalFSStore(params)
|
|
|
|
, RemoteStore(params)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
UDSRemoteStore::UDSRemoteStore(
|
2024-01-25 17:31:52 +02:00
|
|
|
std::string_view scheme,
|
|
|
|
PathView socket_path,
|
2023-03-23 16:23:13 +02:00
|
|
|
const Params & params)
|
2020-10-11 20:18:26 +03:00
|
|
|
: UDSRemoteStore(params)
|
|
|
|
{
|
2024-01-25 17:31:52 +02:00
|
|
|
if (!socket_path.empty())
|
|
|
|
path.emplace(socket_path);
|
2020-10-11 20:18:26 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
std::string UDSRemoteStore::getUri()
|
|
|
|
{
|
|
|
|
if (path) {
|
|
|
|
return std::string("unix://") + *path;
|
|
|
|
} else {
|
2024-01-25 17:31:52 +02:00
|
|
|
// unix:// with no path also works. Change what we return?
|
2020-10-11 20:18:26 +03:00
|
|
|
return "daemon";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-09-23 19:01:04 +03:00
|
|
|
void UDSRemoteStore::Connection::closeWrite()
|
|
|
|
{
|
2024-04-18 23:49:52 +03:00
|
|
|
shutdown(toSocket(fd.get()), SHUT_WR);
|
2021-09-23 19:01:04 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-10-11 20:18:26 +03:00
|
|
|
ref<RemoteStore::Connection> UDSRemoteStore::openConnection()
|
|
|
|
{
|
|
|
|
auto conn = make_ref<Connection>();
|
|
|
|
|
|
|
|
/* Connect to a daemon that does the privileged work for us. */
|
2021-08-16 21:03:32 +03:00
|
|
|
conn->fd = createUnixDomainSocket();
|
2020-10-11 20:18:26 +03:00
|
|
|
|
2024-04-18 23:49:52 +03:00
|
|
|
nix::connect(toSocket(conn->fd.get()), path ? *path : settings.nixDaemonSocketFile);
|
2020-10-11 20:18:26 +03:00
|
|
|
|
|
|
|
conn->from.fd = conn->fd.get();
|
|
|
|
conn->to.fd = conn->fd.get();
|
|
|
|
|
|
|
|
conn->startTime = std::chrono::steady_clock::now();
|
|
|
|
|
|
|
|
return conn;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-03-23 16:06:45 +02:00
|
|
|
void UDSRemoteStore::addIndirectRoot(const Path & path)
|
|
|
|
{
|
|
|
|
auto conn(getConnection());
|
|
|
|
conn->to << WorkerProto::Op::AddIndirectRoot << path;
|
|
|
|
conn.processStderr();
|
|
|
|
readInt(conn->from);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-10-11 20:18:26 +03:00
|
|
|
static RegisterStoreImplementation<UDSRemoteStore, UDSRemoteStoreConfig> regUDSRemoteStore;
|
|
|
|
|
|
|
|
}
|