about summary refs log tree commit diff
path: root/third_party
diff options
context:
space:
mode:
Diffstat (limited to 'third_party')
-rw-r--r--third_party/nix/src/libstore/remote-store.cc62
-rw-r--r--third_party/nix/src/libstore/remote-store.hh14
2 files changed, 0 insertions, 76 deletions
diff --git a/third_party/nix/src/libstore/remote-store.cc b/third_party/nix/src/libstore/remote-store.cc
index 784a95d2e9..41881f8ef9 100644
--- a/third_party/nix/src/libstore/remote-store.cc
+++ b/third_party/nix/src/libstore/remote-store.cc
@@ -69,56 +69,6 @@ ref<RemoteStore::Connection> RemoteStore::openConnectionWrapper() {
   }
 }
 
-UDSRemoteStore::UDSRemoteStore(const Params& params)
-    : Store(params), LocalFSStore(params), RemoteStore(params) {}
-
-UDSRemoteStore::UDSRemoteStore(std::string socket_path, const Params& params)
-    : Store(params),
-      LocalFSStore(params),
-      RemoteStore(params),
-      path(socket_path) {}
-
-std::string UDSRemoteStore::getUri() {
-  if (path) {
-    return std::string("unix://") + *path;
-  }
-  return "daemon";
-}
-
-ref<RemoteStore::Connection> UDSRemoteStore::openConnection() {
-  auto conn = make_ref<Connection>();
-
-  /* Connect to a daemon that does the privileged work for us. */
-  conn->fd = socket(PF_UNIX, SOCK_STREAM | SOCK_CLOEXEC, 0);
-  if (!conn->fd) {
-    throw SysError("cannot create Unix domain socket");
-  }
-  closeOnExec(conn->fd.get());
-
-  std::string socketPath = path ? *path : settings.nixDaemonSocketFile;
-
-  struct sockaddr_un addr;
-  addr.sun_family = AF_UNIX;
-  strncpy(addr.sun_path, socketPath.c_str(), sizeof(addr.sun_path));
-  if (addr.sun_path[sizeof(addr.sun_path) - 1] != '\0') {
-    throw Error(format("socket path '%1%' is too long") % socketPath);
-  }
-
-  if (::connect(conn->fd.get(), reinterpret_cast<struct sockaddr*>(&addr),
-                sizeof(addr)) == -1) {
-    throw SysError(format("cannot connect to daemon at '%1%'") % socketPath);
-  }
-
-  conn->from.fd = conn->fd.get();
-  conn->to.fd = conn->fd.get();
-
-  conn->startTime = std::chrono::steady_clock::now();
-
-  initConnection(*conn);
-
-  return conn;
-}
-
 void RemoteStore::initConnection(Connection& conn) {
   /* Send the magic greeting, check for the reply. */
   try {
@@ -727,16 +677,4 @@ std::exception_ptr RemoteStore::Connection::processStderr(Sink* sink,
   return nullptr;
 }
 
-static std::string uriScheme = "unix://";
-
-static RegisterStoreImplementation regStore(
-    [](const std::string& uri,
-       const Store::Params& params) -> std::shared_ptr<Store> {
-      if (std::string(uri, 0, uriScheme.size()) != uriScheme) {
-        return nullptr;
-      }
-      return std::make_shared<UDSRemoteStore>(
-          std::string(uri, uriScheme.size()), params);
-    });
-
 }  // namespace nix
diff --git a/third_party/nix/src/libstore/remote-store.hh b/third_party/nix/src/libstore/remote-store.hh
index 927d083354..a6829226ca 100644
--- a/third_party/nix/src/libstore/remote-store.hh
+++ b/third_party/nix/src/libstore/remote-store.hh
@@ -136,18 +136,4 @@ class RemoteStore : public virtual Store {
   std::atomic_bool failed{false};
 };
 
-class UDSRemoteStore : public LocalFSStore, public RemoteStore {
- public:
-  UDSRemoteStore(const Params& params);
-  UDSRemoteStore(std::string path, const Params& params);
-
-  std::string getUri() override;
-
-  bool sameMachine() override { return true; }
-
- private:
-  ref<RemoteStore::Connection> openConnection() override;
-  std::optional<std::string> path;
-};
-
 }  // namespace nix