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-11-30 19:35:50 +01:00
|
|
|
|
2006-12-03 03:08:13 +01:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
2006-11-30 20:54:43 +01:00
|
|
|
#include <iostream>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2006-11-30 19:35:50 +01:00
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
|
|
|
|
|
|
|
RemoteStore::RemoteStore()
|
|
|
|
{
|
2006-11-30 20:54:43 +01:00
|
|
|
toChild.create();
|
|
|
|
fromChild.create();
|
|
|
|
|
|
|
|
|
|
|
|
/* Start the worker. */
|
|
|
|
string worker = "nix-worker";
|
|
|
|
|
|
|
|
child = fork();
|
|
|
|
|
|
|
|
switch (child) {
|
|
|
|
|
|
|
|
case -1:
|
|
|
|
throw SysError("unable to fork");
|
|
|
|
|
|
|
|
case 0:
|
|
|
|
try { /* child */
|
|
|
|
|
|
|
|
fromChild.readSide.close();
|
|
|
|
if (dup2(fromChild.writeSide, STDOUT_FILENO) == -1)
|
|
|
|
throw SysError("dupping write side");
|
|
|
|
|
|
|
|
toChild.writeSide.close();
|
|
|
|
if (dup2(toChild.readSide, STDIN_FILENO) == -1)
|
|
|
|
throw SysError("dupping read side");
|
|
|
|
|
2006-12-03 03:08:13 +01:00
|
|
|
int fdDebug = open("/tmp/worker-log", O_WRONLY | O_CREAT | O_TRUNC, 0644);
|
|
|
|
assert(fdDebug != -1);
|
|
|
|
if (dup2(fdDebug, STDERR_FILENO) == -1)
|
|
|
|
throw SysError("dupping stderr");
|
|
|
|
close(fdDebug);
|
2006-11-30 20:54:43 +01:00
|
|
|
|
2006-12-03 03:08:13 +01:00
|
|
|
execlp(worker.c_str(), worker.c_str(),
|
|
|
|
"-vvv", "--slave", NULL);
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
fromChild.writeSide.close();
|
|
|
|
toChild.readSide.close();
|
|
|
|
|
|
|
|
from.fd = fromChild.readSide;
|
|
|
|
to.fd = toChild.writeSide;
|
|
|
|
|
|
|
|
|
|
|
|
/* Send the magic greeting, check for the reply. */
|
2006-12-03 03:22:04 +01:00
|
|
|
try {
|
|
|
|
writeInt(WORKER_MAGIC_1, to);
|
|
|
|
unsigned int magic = readInt(from);
|
|
|
|
if (magic != WORKER_MAGIC_2) throw Error("protocol mismatch");
|
|
|
|
} catch (Error & e) {
|
|
|
|
throw Error(format("cannot start worker process `%1%' (%2%)")
|
|
|
|
% worker % e.msg());
|
|
|
|
}
|
2006-11-30 19:35:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
RemoteStore::~RemoteStore()
|
|
|
|
{
|
2006-12-03 03:08:13 +01:00
|
|
|
try {
|
|
|
|
fromChild.readSide.close();
|
|
|
|
toChild.writeSide.close();
|
|
|
|
child.wait(true);
|
|
|
|
} catch (Error & e) {
|
|
|
|
printMsg(lvlError, format("error (ignored): %1%") % e.msg());
|
|
|
|
}
|
2006-11-30 19:35:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool RemoteStore::isValidPath(const Path & path)
|
|
|
|
{
|
2006-11-30 21:13:59 +01:00
|
|
|
writeInt(wopIsValidPath, to);
|
|
|
|
writeString(path, to);
|
|
|
|
unsigned int reply = readInt(from);
|
|
|
|
return reply != 0;
|
2006-11-30 19:35:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-11-30 23:43:55 +01:00
|
|
|
Substitutes RemoteStore::querySubstitutes(const Path & path)
|
2006-11-30 19:35:50 +01:00
|
|
|
{
|
2006-11-30 23:43:55 +01:00
|
|
|
throw Error("not implemented 2");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool RemoteStore::hasSubstitutes(const Path & path)
|
|
|
|
{
|
|
|
|
writeInt(wopHasSubstitutes, to);
|
|
|
|
writeString(path, to);
|
|
|
|
unsigned int reply = readInt(from);
|
|
|
|
return reply != 0;
|
2006-11-30 19:35:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Hash RemoteStore::queryPathHash(const Path & path)
|
|
|
|
{
|
2006-12-02 15:27:24 +01:00
|
|
|
writeInt(wopQueryPathHash, to);
|
|
|
|
writeString(path, to);
|
|
|
|
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)
|
|
|
|
{
|
2006-11-30 23:43:55 +01:00
|
|
|
writeInt(wopQueryReferences, to);
|
|
|
|
writeString(path, to);
|
|
|
|
PathSet references2 = readStringSet(from);
|
|
|
|
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)
|
|
|
|
{
|
2006-11-30 23:43:55 +01:00
|
|
|
writeInt(wopQueryReferrers, to);
|
|
|
|
writeString(path, to);
|
|
|
|
PathSet referrers2 = readStringSet(from);
|
|
|
|
referrers.insert(referrers2.begin(), referrers2.end());
|
2006-11-30 19:35:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-01 21:51:18 +01:00
|
|
|
Path RemoteStore::addToStore(const Path & _srcPath, bool fixed,
|
|
|
|
bool recursive, string hashAlgo)
|
2006-11-30 19:35:50 +01:00
|
|
|
{
|
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);
|
2006-12-01 21:51:18 +01:00
|
|
|
writeInt(fixed ? 1 : 0, to);
|
2006-12-01 19:00:01 +01:00
|
|
|
writeInt(recursive ? 1 : 0, to);
|
|
|
|
writeString(hashAlgo, to);
|
|
|
|
dumpPath(srcPath, to);
|
|
|
|
Path path = readString(from);
|
|
|
|
return path;
|
2006-11-30 19:35:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Path RemoteStore::addTextToStore(const string & suffix, const string & s,
|
|
|
|
const PathSet & references)
|
|
|
|
{
|
2006-11-30 21:45:20 +01:00
|
|
|
writeInt(wopAddTextToStore, to);
|
|
|
|
writeString(suffix, to);
|
|
|
|
writeString(s, to);
|
2006-11-30 23:43:55 +01:00
|
|
|
writeStringSet(references, to);
|
2006-11-30 21:45:20 +01:00
|
|
|
|
|
|
|
Path path = readString(from);
|
|
|
|
return path;
|
2006-11-30 19:35:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void RemoteStore::buildDerivations(const PathSet & drvPaths)
|
|
|
|
{
|
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
|
|
|
{
|
2006-11-30 23:43:55 +01:00
|
|
|
writeInt(wopEnsurePath, to);
|
|
|
|
writeString(path, to);
|
|
|
|
readInt(from);
|
2006-11-30 19:35:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-02 17:41:36 +01:00
|
|
|
void RemoteStore::addTempRoot(const Path & path)
|
|
|
|
{
|
|
|
|
writeInt(wopAddTempRoot, to);
|
|
|
|
writeString(path, to);
|
|
|
|
readInt(from);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void RemoteStore::syncWithGC()
|
|
|
|
{
|
|
|
|
writeInt(wopSyncWithGC, to);
|
|
|
|
readInt(from);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-03 03:08:13 +01:00
|
|
|
void RemoteStore::processStderr()
|
|
|
|
{
|
|
|
|
unsigned int msg;
|
|
|
|
while ((msg = readInt(from)) == STDERR_NEXT) {
|
|
|
|
string s = readString(from);
|
|
|
|
writeToStderr((unsigned char *) s.c_str(), s.size());
|
|
|
|
}
|
|
|
|
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
|
|
|
}
|