2006-11-30 20:54:43 +01:00
|
|
|
#include "serialise.hh"
|
|
|
|
#include "util.hh"
|
2006-11-30 19:35:50 +01:00
|
|
|
#include "remote-store.hh"
|
2006-11-30 21:13:59 +01:00
|
|
|
#include "worker-protocol.hh"
|
2006-11-30 21:45:20 +01:00
|
|
|
#include "archive.hh"
|
2006-12-04 14:09:16 +01:00
|
|
|
#include "globals.hh"
|
2006-11-30 19:35:50 +01:00
|
|
|
|
2006-12-03 03:08:13 +01:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
2006-12-03 03:36:44 +01:00
|
|
|
#include <sys/socket.h>
|
2006-12-04 15:21:39 +01:00
|
|
|
#include <sys/un.h>
|
2006-12-03 03:08:13 +01:00
|
|
|
#include <fcntl.h>
|
|
|
|
|
2006-11-30 20:54:43 +01:00
|
|
|
#include <iostream>
|
|
|
|
#include <unistd.h>
|
2010-06-24 19:51:04 +02:00
|
|
|
#include <cstring>
|
2006-11-30 20:54:43 +01:00
|
|
|
|
2006-11-30 19:35:50 +01:00
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
|
|
|
|
2006-12-05 02:31:45 +01:00
|
|
|
Path readStorePath(Source & from)
|
|
|
|
{
|
|
|
|
Path path = readString(from);
|
|
|
|
assertStorePath(path);
|
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
PathSet readStorePaths(Source & from)
|
|
|
|
{
|
|
|
|
PathSet paths = readStringSet(from);
|
2009-04-21 13:52:16 +02:00
|
|
|
foreach (PathSet::iterator, i, paths) assertStorePath(*i);
|
2006-12-05 02:31:45 +01:00
|
|
|
return paths;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-11-30 19:35:50 +01:00
|
|
|
RemoteStore::RemoteStore()
|
2006-12-04 14:28:14 +01:00
|
|
|
{
|
2008-12-11 15:30:25 +01:00
|
|
|
initialised = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void RemoteStore::openConnection()
|
|
|
|
{
|
|
|
|
if (initialised) return;
|
|
|
|
initialised = true;
|
|
|
|
|
2006-12-04 14:28:14 +01:00
|
|
|
string remoteMode = getEnv("NIX_REMOTE");
|
|
|
|
|
|
|
|
if (remoteMode == "slave")
|
|
|
|
/* Fork off a setuid worker to do the privileged work. */
|
|
|
|
forkSlave();
|
|
|
|
else if (remoteMode == "daemon")
|
|
|
|
/* Connect to a daemon that does the privileged work for
|
|
|
|
us. */
|
2006-12-04 15:21:39 +01:00
|
|
|
connectToDaemon();
|
2006-12-04 14:28:14 +01:00
|
|
|
else
|
|
|
|
throw Error(format("invalid setting for NIX_REMOTE, `%1%'")
|
|
|
|
% remoteMode);
|
|
|
|
|
2006-12-04 15:21:39 +01:00
|
|
|
from.fd = fdSocket;
|
|
|
|
to.fd = fdSocket;
|
|
|
|
|
2006-12-04 14:28:14 +01:00
|
|
|
/* Send the magic greeting, check for the reply. */
|
|
|
|
try {
|
|
|
|
writeInt(WORKER_MAGIC_1, to);
|
|
|
|
unsigned int magic = readInt(from);
|
|
|
|
if (magic != WORKER_MAGIC_2) throw Error("protocol mismatch");
|
2007-09-18 11:11:20 +02:00
|
|
|
|
2007-11-16 17:15:26 +01:00
|
|
|
daemonVersion = readInt(from);
|
2007-09-18 11:11:20 +02:00
|
|
|
if (GET_PROTOCOL_MAJOR(daemonVersion) != GET_PROTOCOL_MAJOR(PROTOCOL_VERSION))
|
|
|
|
throw Error("Nix daemon protocol version not supported");
|
|
|
|
writeInt(PROTOCOL_VERSION, to);
|
2006-12-04 18:17:13 +01:00
|
|
|
processStderr();
|
2008-12-11 15:30:25 +01:00
|
|
|
}
|
|
|
|
catch (Error & e) {
|
2006-12-04 14:28:14 +01:00
|
|
|
throw Error(format("cannot start worker (%1%)")
|
|
|
|
% e.msg());
|
|
|
|
}
|
2007-09-18 11:11:20 +02:00
|
|
|
|
|
|
|
setOptions();
|
2006-12-04 14:28:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void RemoteStore::forkSlave()
|
2006-11-30 19:35:50 +01:00
|
|
|
{
|
2006-12-03 03:36:44 +01:00
|
|
|
int sockets[2];
|
|
|
|
if (socketpair(AF_UNIX, SOCK_STREAM, 0, sockets) == -1)
|
|
|
|
throw SysError("cannot create sockets");
|
2006-11-30 20:54:43 +01:00
|
|
|
|
2006-12-04 15:21:39 +01:00
|
|
|
fdSocket = sockets[0];
|
2006-12-03 03:36:44 +01:00
|
|
|
AutoCloseFD fdChild = sockets[1];
|
2006-11-30 20:54:43 +01:00
|
|
|
|
|
|
|
/* Start the worker. */
|
2006-12-04 14:09:16 +01:00
|
|
|
Path worker = getEnv("NIX_WORKER");
|
|
|
|
if (worker == "")
|
|
|
|
worker = nixBinDir + "/nix-worker";
|
2006-11-30 20:54:43 +01:00
|
|
|
|
|
|
|
child = fork();
|
|
|
|
|
|
|
|
switch (child) {
|
|
|
|
|
|
|
|
case -1:
|
|
|
|
throw SysError("unable to fork");
|
|
|
|
|
|
|
|
case 0:
|
|
|
|
try { /* child */
|
2006-12-03 03:36:44 +01:00
|
|
|
|
|
|
|
if (dup2(fdChild, STDOUT_FILENO) == -1)
|
2006-11-30 20:54:43 +01:00
|
|
|
throw SysError("dupping write side");
|
|
|
|
|
2006-12-03 03:36:44 +01:00
|
|
|
if (dup2(fdChild, STDIN_FILENO) == -1)
|
2006-11-30 20:54:43 +01:00
|
|
|
throw SysError("dupping read side");
|
|
|
|
|
2006-12-04 15:21:39 +01:00
|
|
|
close(fdSocket);
|
2006-12-03 03:36:44 +01:00
|
|
|
close(fdChild);
|
|
|
|
|
2010-08-30 16:53:03 +02:00
|
|
|
execlp(worker.c_str(), worker.c_str(), "--slave", NULL);
|
2006-12-03 03:08:13 +01:00
|
|
|
|
2006-11-30 20:54:43 +01:00
|
|
|
throw SysError(format("executing `%1%'") % worker);
|
|
|
|
|
|
|
|
} catch (std::exception & e) {
|
|
|
|
std::cerr << format("child error: %1%\n") % e.what();
|
|
|
|
}
|
|
|
|
quickExit(1);
|
|
|
|
}
|
|
|
|
|
2006-12-03 03:36:44 +01:00
|
|
|
fdChild.close();
|
2006-11-30 20:54:43 +01:00
|
|
|
|
2006-12-04 15:21:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void RemoteStore::connectToDaemon()
|
|
|
|
{
|
|
|
|
fdSocket = socket(PF_UNIX, SOCK_STREAM, 0);
|
|
|
|
if (fdSocket == -1)
|
|
|
|
throw SysError("cannot create Unix domain socket");
|
|
|
|
|
|
|
|
string socketPath = nixStateDir + DEFAULT_SOCKET_PATH;
|
|
|
|
|
2008-04-09 07:57:01 +02:00
|
|
|
/* Urgh, sockaddr_un allows path names of only 108 characters. So
|
|
|
|
chdir to the socket directory so that we can pass a relative
|
|
|
|
path name. !!! this is probably a bad idea in multi-threaded
|
|
|
|
applications... */
|
|
|
|
AutoCloseFD fdPrevDir = open(".", O_RDONLY);
|
|
|
|
if (fdPrevDir == -1) throw SysError("couldn't open current directory");
|
|
|
|
chdir(dirOf(socketPath).c_str());
|
|
|
|
Path socketPathRel = "./" + baseNameOf(socketPath);
|
|
|
|
|
2006-12-04 15:21:39 +01:00
|
|
|
struct sockaddr_un addr;
|
|
|
|
addr.sun_family = AF_UNIX;
|
2008-04-09 07:57:01 +02:00
|
|
|
if (socketPathRel.size() >= sizeof(addr.sun_path))
|
|
|
|
throw Error(format("socket path `%1%' is too long") % socketPathRel);
|
2010-06-24 19:51:04 +02:00
|
|
|
using namespace std;
|
2008-04-09 07:57:01 +02:00
|
|
|
strcpy(addr.sun_path, socketPathRel.c_str());
|
2006-12-04 15:21:39 +01:00
|
|
|
|
|
|
|
if (connect(fdSocket, (struct sockaddr *) &addr, sizeof(addr)) == -1)
|
|
|
|
throw SysError(format("cannot connect to daemon at `%1%'") % socketPath);
|
2008-04-09 07:57:01 +02:00
|
|
|
|
|
|
|
if (fchdir(fdPrevDir) == -1)
|
|
|
|
throw SysError("couldn't change back to previous directory");
|
2006-11-30 19:35:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
RemoteStore::~RemoteStore()
|
|
|
|
{
|
2006-12-03 03:08:13 +01:00
|
|
|
try {
|
2006-12-04 15:21:39 +01:00
|
|
|
fdSocket.close();
|
|
|
|
if (child != -1)
|
|
|
|
child.wait(true);
|
2007-05-01 17:16:17 +02:00
|
|
|
} catch (...) {
|
|
|
|
ignoreException();
|
2006-12-03 03:08:13 +01:00
|
|
|
}
|
2006-11-30 19:35:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-09-18 11:11:20 +02:00
|
|
|
void RemoteStore::setOptions()
|
|
|
|
{
|
|
|
|
writeInt(wopSetOptions, to);
|
|
|
|
writeInt(keepFailed, to);
|
|
|
|
writeInt(keepGoing, to);
|
|
|
|
writeInt(tryFallback, to);
|
|
|
|
writeInt(verbosity, to);
|
|
|
|
writeInt(maxBuildJobs, to);
|
|
|
|
writeInt(maxSilentTime, to);
|
2007-11-16 17:15:26 +01:00
|
|
|
if (GET_PROTOCOL_MINOR(daemonVersion) >= 2)
|
|
|
|
writeInt(useBuildHook, to);
|
2008-11-12 12:08:27 +01:00
|
|
|
if (GET_PROTOCOL_MINOR(daemonVersion) >= 4) {
|
2008-11-11 16:11:10 +01:00
|
|
|
writeInt(buildVerbosity, to);
|
2008-11-12 12:08:27 +01:00
|
|
|
writeInt(logType, to);
|
|
|
|
writeInt(printBuildTrace, to);
|
|
|
|
}
|
2010-11-17 15:31:42 +01:00
|
|
|
if (GET_PROTOCOL_MINOR(daemonVersion) >= 6)
|
2010-08-12 11:21:50 +02:00
|
|
|
writeInt(buildCores, to);
|
2007-09-18 11:11:20 +02:00
|
|
|
processStderr();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-11-30 19:35:50 +01:00
|
|
|
bool RemoteStore::isValidPath(const Path & path)
|
|
|
|
{
|
2008-12-11 15:30:25 +01:00
|
|
|
openConnection();
|
2006-11-30 21:13:59 +01:00
|
|
|
writeInt(wopIsValidPath, to);
|
|
|
|
writeString(path, to);
|
2006-12-04 18:55:14 +01:00
|
|
|
processStderr();
|
2006-11-30 21:13:59 +01:00
|
|
|
unsigned int reply = readInt(from);
|
|
|
|
return reply != 0;
|
2006-11-30 19:35:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-01-29 19:17:36 +01:00
|
|
|
PathSet RemoteStore::queryValidPaths()
|
|
|
|
{
|
2008-12-11 15:30:25 +01:00
|
|
|
openConnection();
|
2010-02-26 13:05:01 +01:00
|
|
|
writeInt(wopQueryValidPaths, to);
|
|
|
|
processStderr();
|
|
|
|
return readStorePaths(from);
|
2008-01-29 19:17:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-11-30 23:43:55 +01:00
|
|
|
bool RemoteStore::hasSubstitutes(const Path & path)
|
|
|
|
{
|
2008-12-11 15:30:25 +01:00
|
|
|
openConnection();
|
2006-11-30 23:43:55 +01:00
|
|
|
writeInt(wopHasSubstitutes, to);
|
|
|
|
writeString(path, to);
|
2006-12-04 18:55:14 +01:00
|
|
|
processStderr();
|
2006-11-30 23:43:55 +01:00
|
|
|
unsigned int reply = readInt(from);
|
|
|
|
return reply != 0;
|
2006-11-30 19:35:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-08-02 14:54:35 +02:00
|
|
|
bool RemoteStore::querySubstitutablePathInfo(const Path & path,
|
|
|
|
SubstitutablePathInfo & info)
|
|
|
|
{
|
2008-12-11 15:30:25 +01:00
|
|
|
openConnection();
|
2008-08-14 15:02:19 +02:00
|
|
|
if (GET_PROTOCOL_MINOR(daemonVersion) < 3) return false;
|
2008-08-04 13:44:50 +02:00
|
|
|
writeInt(wopQuerySubstitutablePathInfo, to);
|
|
|
|
writeString(path, to);
|
|
|
|
processStderr();
|
|
|
|
unsigned int reply = readInt(from);
|
|
|
|
if (reply == 0) return false;
|
|
|
|
info.deriver = readString(from);
|
|
|
|
if (info.deriver != "") assertStorePath(info.deriver);
|
|
|
|
info.references = readStorePaths(from);
|
|
|
|
info.downloadSize = readLongLong(from);
|
2010-11-17 15:31:42 +01:00
|
|
|
info.narSize = GET_PROTOCOL_MINOR(daemonVersion) >= 7 ? readLongLong(from) : 0;
|
2008-08-04 13:44:50 +02:00
|
|
|
return true;
|
2008-08-02 14:54:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-11-16 18:11:46 +01:00
|
|
|
ValidPathInfo RemoteStore::queryPathInfo(const Path & path)
|
|
|
|
{
|
2010-11-17 13:08:01 +01:00
|
|
|
openConnection();
|
|
|
|
writeInt(wopQueryPathInfo, to);
|
|
|
|
writeString(path, to);
|
|
|
|
processStderr();
|
|
|
|
ValidPathInfo info;
|
|
|
|
info.path = path;
|
|
|
|
info.deriver = readString(from);
|
|
|
|
if (info.deriver != "") assertStorePath(info.deriver);
|
|
|
|
info.hash = parseHash(htSHA256, readString(from));
|
|
|
|
info.references = readStorePaths(from);
|
|
|
|
info.registrationTime = readInt(from);
|
|
|
|
info.narSize = readLongLong(from);
|
|
|
|
return info;
|
2010-11-16 18:11:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-11-30 19:35:50 +01:00
|
|
|
Hash RemoteStore::queryPathHash(const Path & path)
|
|
|
|
{
|
2008-12-11 15:30:25 +01:00
|
|
|
openConnection();
|
2006-12-02 15:27:24 +01:00
|
|
|
writeInt(wopQueryPathHash, to);
|
|
|
|
writeString(path, to);
|
2006-12-04 18:55:14 +01:00
|
|
|
processStderr();
|
2006-12-02 15:27:24 +01:00
|
|
|
string hash = readString(from);
|
|
|
|
return parseHash(htSHA256, hash);
|
2006-11-30 19:35:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-11-30 23:43:55 +01:00
|
|
|
void RemoteStore::queryReferences(const Path & path,
|
2006-11-30 19:35:50 +01:00
|
|
|
PathSet & references)
|
|
|
|
{
|
2008-12-11 15:30:25 +01:00
|
|
|
openConnection();
|
2006-11-30 23:43:55 +01:00
|
|
|
writeInt(wopQueryReferences, to);
|
|
|
|
writeString(path, to);
|
2006-12-04 18:55:14 +01:00
|
|
|
processStderr();
|
2006-12-05 02:31:45 +01:00
|
|
|
PathSet references2 = readStorePaths(from);
|
2006-11-30 23:43:55 +01:00
|
|
|
references.insert(references2.begin(), references2.end());
|
2006-11-30 19:35:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-11-30 23:43:55 +01:00
|
|
|
void RemoteStore::queryReferrers(const Path & path,
|
2006-11-30 19:35:50 +01:00
|
|
|
PathSet & referrers)
|
|
|
|
{
|
2008-12-11 15:30:25 +01:00
|
|
|
openConnection();
|
2006-11-30 23:43:55 +01:00
|
|
|
writeInt(wopQueryReferrers, to);
|
|
|
|
writeString(path, to);
|
2006-12-04 18:55:14 +01:00
|
|
|
processStderr();
|
2006-12-05 02:31:45 +01:00
|
|
|
PathSet referrers2 = readStorePaths(from);
|
2006-11-30 23:43:55 +01:00
|
|
|
referrers.insert(referrers2.begin(), referrers2.end());
|
2006-11-30 19:35:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-06-12 18:53:44 +02:00
|
|
|
Path RemoteStore::queryDeriver(const Path & path)
|
|
|
|
{
|
2008-12-11 15:30:25 +01:00
|
|
|
openConnection();
|
2007-06-12 18:53:44 +02:00
|
|
|
writeInt(wopQueryDeriver, to);
|
|
|
|
writeString(path, to);
|
|
|
|
processStderr();
|
2007-11-16 17:15:26 +01:00
|
|
|
Path drvPath = readString(from);
|
|
|
|
if (drvPath != "") assertStorePath(drvPath);
|
|
|
|
return drvPath;
|
2007-06-12 18:53:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-02-22 13:44:36 +01:00
|
|
|
PathSet RemoteStore::queryDerivationOutputs(const Path & path)
|
|
|
|
{
|
2010-02-25 16:52:22 +01:00
|
|
|
openConnection();
|
|
|
|
writeInt(wopQueryDerivationOutputs, to);
|
|
|
|
writeString(path, to);
|
|
|
|
processStderr();
|
|
|
|
return readStorePaths(from);
|
2010-02-22 13:44:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-12-03 16:06:30 +01:00
|
|
|
Path RemoteStore::addToStore(const Path & _srcPath,
|
2008-12-03 17:10:17 +01:00
|
|
|
bool recursive, HashType hashAlgo, PathFilter & filter)
|
2006-11-30 19:35:50 +01:00
|
|
|
{
|
2008-12-11 15:30:25 +01:00
|
|
|
openConnection();
|
|
|
|
|
2006-12-01 21:51:18 +01:00
|
|
|
Path srcPath(absPath(_srcPath));
|
2006-12-01 19:00:01 +01:00
|
|
|
|
2006-11-30 21:45:20 +01:00
|
|
|
writeInt(wopAddToStore, to);
|
|
|
|
writeString(baseNameOf(srcPath), to);
|
2008-12-03 16:06:30 +01:00
|
|
|
/* backwards compatibility hack */
|
2008-12-03 17:10:17 +01:00
|
|
|
writeInt((hashAlgo == htSHA256 && recursive) ? 0 : 1, to);
|
2006-12-01 19:00:01 +01:00
|
|
|
writeInt(recursive ? 1 : 0, to);
|
2008-12-03 17:10:17 +01:00
|
|
|
writeString(printHashType(hashAlgo), to);
|
2006-12-13 00:05:01 +01:00
|
|
|
dumpPath(srcPath, to, filter);
|
2006-12-04 18:55:14 +01:00
|
|
|
processStderr();
|
2007-06-12 18:53:44 +02:00
|
|
|
return readStorePath(from);
|
2006-11-30 19:35:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-12-03 16:06:30 +01:00
|
|
|
Path RemoteStore::addTextToStore(const string & name, const string & s,
|
2006-11-30 19:35:50 +01:00
|
|
|
const PathSet & references)
|
|
|
|
{
|
2008-12-11 15:30:25 +01:00
|
|
|
openConnection();
|
2006-11-30 21:45:20 +01:00
|
|
|
writeInt(wopAddTextToStore, to);
|
2008-12-03 16:06:30 +01:00
|
|
|
writeString(name, to);
|
2006-11-30 21:45:20 +01:00
|
|
|
writeString(s, to);
|
2006-11-30 23:43:55 +01:00
|
|
|
writeStringSet(references, to);
|
2006-11-30 21:45:20 +01:00
|
|
|
|
2006-12-04 18:55:14 +01:00
|
|
|
processStderr();
|
2007-06-12 18:53:44 +02:00
|
|
|
return readStorePath(from);
|
2006-11-30 19:35:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-02-21 00:17:20 +01:00
|
|
|
void RemoteStore::exportPath(const Path & path, bool sign,
|
|
|
|
Sink & sink)
|
|
|
|
{
|
2008-12-11 15:30:25 +01:00
|
|
|
openConnection();
|
2007-02-21 17:34:00 +01:00
|
|
|
writeInt(wopExportPath, to);
|
|
|
|
writeString(path, to);
|
|
|
|
writeInt(sign ? 1 : 0, to);
|
|
|
|
processStderr(&sink); /* sink receives the actual data */
|
|
|
|
readInt(from);
|
2007-02-21 00:17:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-02-21 16:45:32 +01:00
|
|
|
Path RemoteStore::importPath(bool requireSignature, Source & source)
|
|
|
|
{
|
2008-12-11 15:30:25 +01:00
|
|
|
openConnection();
|
2007-02-21 18:34:02 +01:00
|
|
|
writeInt(wopImportPath, to);
|
|
|
|
/* We ignore requireSignature, since the worker forces it to true
|
2008-12-11 15:30:25 +01:00
|
|
|
anyway. */
|
2007-02-21 18:34:02 +01:00
|
|
|
processStderr(0, &source);
|
2007-06-12 18:53:44 +02:00
|
|
|
return readStorePath(from);
|
2007-02-21 16:45:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-11-30 19:35:50 +01:00
|
|
|
void RemoteStore::buildDerivations(const PathSet & drvPaths)
|
|
|
|
{
|
2008-12-11 15:30:25 +01:00
|
|
|
openConnection();
|
2006-11-30 23:43:55 +01:00
|
|
|
writeInt(wopBuildDerivations, to);
|
|
|
|
writeStringSet(drvPaths, to);
|
2006-12-03 03:08:13 +01:00
|
|
|
processStderr();
|
2006-11-30 23:43:55 +01:00
|
|
|
readInt(from);
|
2006-11-30 19:35:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-11-30 23:43:55 +01:00
|
|
|
void RemoteStore::ensurePath(const Path & path)
|
2006-11-30 19:35:50 +01:00
|
|
|
{
|
2008-12-11 15:30:25 +01:00
|
|
|
openConnection();
|
2006-11-30 23:43:55 +01:00
|
|
|
writeInt(wopEnsurePath, to);
|
|
|
|
writeString(path, to);
|
2006-12-04 18:55:14 +01:00
|
|
|
processStderr();
|
2006-11-30 23:43:55 +01:00
|
|
|
readInt(from);
|
2006-11-30 19:35:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-02 17:41:36 +01:00
|
|
|
void RemoteStore::addTempRoot(const Path & path)
|
|
|
|
{
|
2008-12-11 15:30:25 +01:00
|
|
|
openConnection();
|
2006-12-02 17:41:36 +01:00
|
|
|
writeInt(wopAddTempRoot, to);
|
|
|
|
writeString(path, to);
|
2006-12-04 18:55:14 +01:00
|
|
|
processStderr();
|
2006-12-02 17:41:36 +01:00
|
|
|
readInt(from);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-05 00:29:16 +01:00
|
|
|
void RemoteStore::addIndirectRoot(const Path & path)
|
|
|
|
{
|
2008-12-11 15:30:25 +01:00
|
|
|
openConnection();
|
2006-12-05 00:29:16 +01:00
|
|
|
writeInt(wopAddIndirectRoot, to);
|
|
|
|
writeString(path, to);
|
|
|
|
processStderr();
|
|
|
|
readInt(from);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-02 17:41:36 +01:00
|
|
|
void RemoteStore::syncWithGC()
|
|
|
|
{
|
2008-12-11 15:30:25 +01:00
|
|
|
openConnection();
|
2006-12-02 17:41:36 +01:00
|
|
|
writeInt(wopSyncWithGC, to);
|
2006-12-04 18:55:14 +01:00
|
|
|
processStderr();
|
2006-12-02 17:41:36 +01:00
|
|
|
readInt(from);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-05 02:31:45 +01:00
|
|
|
Roots RemoteStore::findRoots()
|
|
|
|
{
|
2008-12-11 15:30:25 +01:00
|
|
|
openConnection();
|
2006-12-05 02:31:45 +01:00
|
|
|
writeInt(wopFindRoots, to);
|
|
|
|
processStderr();
|
|
|
|
unsigned int count = readInt(from);
|
|
|
|
Roots result;
|
|
|
|
while (count--) {
|
|
|
|
Path link = readString(from);
|
|
|
|
Path target = readStorePath(from);
|
|
|
|
result[link] = target;
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-06-18 11:34:17 +02:00
|
|
|
void RemoteStore::collectGarbage(const GCOptions & options, GCResults & results)
|
2006-12-05 03:18:46 +01:00
|
|
|
{
|
2008-12-11 15:30:25 +01:00
|
|
|
openConnection();
|
|
|
|
|
2006-12-05 03:18:46 +01:00
|
|
|
writeInt(wopCollectGarbage, to);
|
2008-06-18 11:34:17 +02:00
|
|
|
writeInt(options.action, to);
|
|
|
|
writeStringSet(options.pathsToDelete, to);
|
|
|
|
writeInt(options.ignoreLiveness, to);
|
|
|
|
writeLongLong(options.maxFreed, to);
|
|
|
|
writeInt(options.maxLinks, to);
|
2008-12-16 13:23:35 +01:00
|
|
|
if (GET_PROTOCOL_MINOR(daemonVersion) >= 5) {
|
2009-11-20 18:12:38 +01:00
|
|
|
/* removed options */
|
|
|
|
writeInt(0, to);
|
|
|
|
writeInt(0, to);
|
2008-12-16 13:23:35 +01:00
|
|
|
}
|
2006-12-05 03:18:46 +01:00
|
|
|
|
|
|
|
processStderr();
|
|
|
|
|
2008-06-18 11:34:17 +02:00
|
|
|
results.paths = readStringSet(from);
|
|
|
|
results.bytesFreed = readLongLong(from);
|
|
|
|
results.blocksFreed = readLongLong(from);
|
2006-12-05 03:18:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-05-04 12:45:10 +02:00
|
|
|
PathSet RemoteStore::queryFailedPaths()
|
|
|
|
{
|
|
|
|
openConnection();
|
|
|
|
writeInt(wopQueryFailedPaths, to);
|
|
|
|
processStderr();
|
|
|
|
return readStorePaths(from);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void RemoteStore::clearFailedPaths(const PathSet & paths)
|
|
|
|
{
|
|
|
|
openConnection();
|
|
|
|
writeInt(wopClearFailedPaths, to);
|
|
|
|
writeStringSet(paths, to);
|
|
|
|
processStderr();
|
|
|
|
readInt(from);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-02-21 18:34:02 +01:00
|
|
|
void RemoteStore::processStderr(Sink * sink, Source * source)
|
2006-12-03 03:08:13 +01:00
|
|
|
{
|
|
|
|
unsigned int msg;
|
2007-02-21 18:34:02 +01:00
|
|
|
while ((msg = readInt(from)) == STDERR_NEXT
|
|
|
|
|| msg == STDERR_READ || msg == STDERR_WRITE) {
|
|
|
|
if (msg == STDERR_WRITE) {
|
|
|
|
string s = readString(from);
|
2007-02-21 17:34:00 +01:00
|
|
|
if (!sink) throw Error("no sink");
|
|
|
|
(*sink)((const unsigned char *) s.c_str(), s.size());
|
|
|
|
}
|
2007-02-21 18:34:02 +01:00
|
|
|
else if (msg == STDERR_READ) {
|
|
|
|
if (!source) throw Error("no source");
|
|
|
|
unsigned int len = readInt(from);
|
|
|
|
unsigned char * buf = new unsigned char[len];
|
|
|
|
AutoDeleteArray<unsigned char> d(buf);
|
|
|
|
(*source)(buf, len);
|
|
|
|
writeString(string((const char *) buf, len), to);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
string s = readString(from);
|
|
|
|
writeToStderr((const unsigned char *) s.c_str(), s.size());
|
|
|
|
}
|
2006-12-03 03:08:13 +01:00
|
|
|
}
|
|
|
|
if (msg == STDERR_ERROR)
|
|
|
|
throw Error(readString(from));
|
|
|
|
else if (msg != STDERR_LAST)
|
|
|
|
throw Error("protocol error processing standard error");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-11-30 19:35:50 +01:00
|
|
|
}
|