2003-06-23 15:27:59 +02:00
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
#include <sys/wait.h>
|
2003-10-15 14:42:39 +02:00
|
|
|
#include <unistd.h>
|
2003-06-23 15:27:59 +02:00
|
|
|
|
2003-07-07 09:43:58 +02:00
|
|
|
#include "store.hh"
|
2003-06-16 15:33:38 +02:00
|
|
|
#include "globals.hh"
|
|
|
|
#include "db.hh"
|
2003-06-23 15:27:59 +02:00
|
|
|
#include "archive.hh"
|
2003-08-04 09:09:36 +02:00
|
|
|
#include "pathlocks.hh"
|
2003-06-23 15:27:59 +02:00
|
|
|
|
|
|
|
|
2003-10-15 14:42:39 +02:00
|
|
|
/* Nix database. */
|
|
|
|
static Database nixDB;
|
|
|
|
|
|
|
|
|
|
|
|
/* Database tables. */
|
|
|
|
|
|
|
|
/* dbValidPaths :: Path -> ()
|
|
|
|
|
|
|
|
The existence of a key $p$ indicates that path $p$ is valid (that
|
|
|
|
is, produced by a succesful build). */
|
|
|
|
static TableId dbValidPaths;
|
|
|
|
|
|
|
|
/* dbSuccessors :: Path -> Path
|
|
|
|
|
|
|
|
Each pair $(p_1, p_2)$ in this mapping records the fact that the
|
|
|
|
Nix expression stored at path $p_1$ has a successor expression
|
|
|
|
stored at path $p_2$.
|
|
|
|
|
|
|
|
Note that a term $y$ is a successor of $x$ iff there exists a
|
|
|
|
sequence of rewrite steps that rewrites $x$ into $y$.
|
|
|
|
*/
|
|
|
|
static TableId dbSuccessors;
|
|
|
|
|
|
|
|
/* dbSuccessorsRev :: Path -> [Path]
|
|
|
|
|
|
|
|
The reverse mapping of dbSuccessors (i.e., it stores the
|
|
|
|
predecessors of a Nix expression).
|
|
|
|
*/
|
|
|
|
static TableId dbSuccessorsRev;
|
|
|
|
|
|
|
|
/* dbSubstitutes :: Path -> [Path]
|
|
|
|
|
|
|
|
Each pair $(p, [ps])$ tells Nix that it can realise any of the
|
|
|
|
Nix expressions stored at paths $ps$ to produce a path $p$.
|
|
|
|
|
|
|
|
The main purpose of this is for distributed caching of derivates.
|
|
|
|
One system can compute a derivate and put it on a website (as a Nix
|
|
|
|
archive), for instance, and then another system can register a
|
|
|
|
substitute for that derivate. The substitute in this case might be
|
|
|
|
a Nix expression that fetches the Nix archive.
|
|
|
|
*/
|
|
|
|
static TableId dbSubstitutes;
|
|
|
|
|
|
|
|
/* dbSubstitutesRev :: Path -> [Path]
|
|
|
|
|
|
|
|
The reverse mapping of dbSubstitutes.
|
|
|
|
*/
|
|
|
|
static TableId dbSubstitutesRev;
|
|
|
|
|
|
|
|
|
|
|
|
void openDB()
|
|
|
|
{
|
|
|
|
nixDB.open(nixDBPath);
|
|
|
|
dbValidPaths = nixDB.openTable("validpaths");
|
|
|
|
dbSuccessors = nixDB.openTable("successors");
|
|
|
|
dbSuccessorsRev = nixDB.openTable("successors-rev");
|
|
|
|
dbSubstitutes = nixDB.openTable("substitutes");
|
|
|
|
dbSubstitutesRev = nixDB.openTable("substitutes-rev");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void initDB()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void createStoreTransaction(Transaction & txn)
|
|
|
|
{
|
|
|
|
Transaction txn2(nixDB);
|
|
|
|
txn2.moveTo(txn);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Path copying. */
|
|
|
|
|
2003-06-23 15:27:59 +02:00
|
|
|
struct CopySink : DumpSink
|
|
|
|
{
|
|
|
|
int fd;
|
|
|
|
virtual void operator () (const unsigned char * data, unsigned int len)
|
|
|
|
{
|
2003-07-20 23:11:43 +02:00
|
|
|
writeFull(fd, data, len);
|
2003-06-23 15:27:59 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct CopySource : RestoreSource
|
|
|
|
{
|
|
|
|
int fd;
|
2003-07-20 23:11:43 +02:00
|
|
|
virtual void operator () (unsigned char * data, unsigned int len)
|
2003-06-23 15:27:59 +02:00
|
|
|
{
|
2003-07-20 23:11:43 +02:00
|
|
|
readFull(fd, data, len);
|
2003-06-23 15:27:59 +02:00
|
|
|
}
|
|
|
|
};
|
2003-06-16 15:33:38 +02:00
|
|
|
|
|
|
|
|
2003-10-08 17:06:59 +02:00
|
|
|
void copyPath(const Path & src, const Path & dst)
|
2003-06-16 15:33:38 +02:00
|
|
|
{
|
2003-07-31 18:05:35 +02:00
|
|
|
debug(format("copying `%1%' to `%2%'") % src % dst);
|
|
|
|
|
2003-06-23 15:27:59 +02:00
|
|
|
/* Unfortunately C++ doesn't support coprocedures, so we have no
|
|
|
|
nice way to chain CopySink and CopySource together. Instead we
|
|
|
|
fork off a child to run the sink. (Fork-less platforms should
|
|
|
|
use a thread). */
|
|
|
|
|
|
|
|
/* Create a pipe. */
|
|
|
|
int fds[2];
|
|
|
|
if (pipe(fds) == -1) throw SysError("creating pipe");
|
|
|
|
|
|
|
|
/* Fork. */
|
|
|
|
pid_t pid;
|
|
|
|
switch (pid = fork()) {
|
|
|
|
|
|
|
|
case -1:
|
|
|
|
throw SysError("unable to fork");
|
|
|
|
|
|
|
|
case 0: /* child */
|
|
|
|
try {
|
|
|
|
close(fds[1]);
|
|
|
|
CopySource source;
|
|
|
|
source.fd = fds[0];
|
|
|
|
restorePath(dst, source);
|
|
|
|
_exit(0);
|
|
|
|
} catch (exception & e) {
|
|
|
|
cerr << "error: " << e.what() << endl;
|
|
|
|
}
|
|
|
|
_exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
close(fds[0]);
|
|
|
|
|
|
|
|
/* Parent. */
|
|
|
|
|
|
|
|
CopySink sink;
|
|
|
|
sink.fd = fds[1];
|
|
|
|
dumpPath(src, sink);
|
|
|
|
|
|
|
|
/* Wait for the child to finish. */
|
|
|
|
int status;
|
|
|
|
if (waitpid(pid, &status, 0) != pid)
|
|
|
|
throw SysError("waiting for child");
|
|
|
|
|
|
|
|
if (!WIFEXITED(status) || WEXITSTATUS(status) != 0)
|
|
|
|
throw Error("cannot copy file: child died");
|
2003-06-16 15:33:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-10-10 16:46:28 +02:00
|
|
|
void registerSuccessor(const Transaction & txn,
|
2003-10-10 17:14:29 +02:00
|
|
|
const Path & srcPath, const Path & sucPath)
|
2003-10-10 16:46:28 +02:00
|
|
|
{
|
|
|
|
Path known;
|
2003-10-10 17:14:29 +02:00
|
|
|
if (nixDB.queryString(txn, dbSuccessors, srcPath, known) &&
|
|
|
|
known != sucPath)
|
2003-10-10 16:46:28 +02:00
|
|
|
{
|
|
|
|
throw Error(format(
|
|
|
|
"the `impossible' happened: expression in path "
|
|
|
|
"`%1%' appears to have multiple successors "
|
|
|
|
"(known `%2%', new `%3%'")
|
2003-10-10 17:14:29 +02:00
|
|
|
% srcPath % known % sucPath);
|
2003-10-10 16:46:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Paths revs;
|
2003-10-10 17:14:29 +02:00
|
|
|
nixDB.queryStrings(txn, dbSuccessorsRev, sucPath, revs);
|
2003-10-16 18:29:57 +02:00
|
|
|
if (find(revs.begin(), revs.end(), srcPath) == revs.end())
|
|
|
|
revs.push_back(srcPath);
|
2003-10-10 16:46:28 +02:00
|
|
|
|
2003-10-10 17:14:29 +02:00
|
|
|
nixDB.setString(txn, dbSuccessors, srcPath, sucPath);
|
|
|
|
nixDB.setStrings(txn, dbSuccessorsRev, sucPath, revs);
|
2003-10-10 16:46:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-10-15 14:42:39 +02:00
|
|
|
bool querySuccessor(const Path & srcPath, Path & sucPath)
|
|
|
|
{
|
|
|
|
return nixDB.queryString(noTxn, dbSuccessors, srcPath, sucPath);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-10-10 17:25:21 +02:00
|
|
|
Paths queryPredecessors(const Path & sucPath)
|
|
|
|
{
|
|
|
|
Paths revs;
|
|
|
|
nixDB.queryStrings(noTxn, dbSuccessorsRev, sucPath, revs);
|
|
|
|
return revs;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-10-08 17:06:59 +02:00
|
|
|
void registerSubstitute(const Path & srcPath, const Path & subPath)
|
2003-07-10 17:11:48 +02:00
|
|
|
{
|
2003-10-10 16:46:28 +02:00
|
|
|
Transaction txn(nixDB);
|
2003-07-10 17:11:48 +02:00
|
|
|
|
2003-10-10 16:46:28 +02:00
|
|
|
Paths subs;
|
|
|
|
nixDB.queryStrings(txn, dbSubstitutes, srcPath, subs);
|
2003-07-16 22:00:51 +02:00
|
|
|
|
2003-10-10 16:46:28 +02:00
|
|
|
if (find(subs.begin(), subs.end(), subPath) != subs.end()) {
|
|
|
|
/* Nothing to do if the substitute is already known. */
|
|
|
|
txn.abort();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
subs.push_front(subPath); /* new substitutes take precedence */
|
|
|
|
|
|
|
|
Paths revs;
|
|
|
|
nixDB.queryStrings(txn, dbSubstitutesRev, subPath, revs);
|
2003-10-16 18:29:57 +02:00
|
|
|
if (find(revs.begin(), revs.end(), srcPath) == revs.end())
|
|
|
|
revs.push_back(srcPath);
|
2003-07-31 18:05:35 +02:00
|
|
|
|
2003-10-08 17:06:59 +02:00
|
|
|
nixDB.setStrings(txn, dbSubstitutes, srcPath, subs);
|
2003-10-10 16:46:28 +02:00
|
|
|
nixDB.setStrings(txn, dbSubstitutesRev, subPath, revs);
|
|
|
|
|
2003-07-31 18:05:35 +02:00
|
|
|
txn.commit();
|
2003-07-10 17:11:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-10-16 18:29:57 +02:00
|
|
|
Paths querySubstitutes(const Path & srcPath)
|
|
|
|
{
|
|
|
|
Paths subPaths;
|
|
|
|
nixDB.queryStrings(noTxn, dbSubstitutes, srcPath, subPaths);
|
|
|
|
return subPaths;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-10-08 17:06:59 +02:00
|
|
|
void registerValidPath(const Transaction & txn, const Path & _path)
|
2003-07-07 11:25:26 +02:00
|
|
|
{
|
2003-10-08 17:06:59 +02:00
|
|
|
Path path(canonPath(_path));
|
|
|
|
debug(format("registering path `%1%'") % path);
|
|
|
|
nixDB.setString(txn, dbValidPaths, path, "");
|
|
|
|
}
|
2003-07-07 11:25:26 +02:00
|
|
|
|
2003-07-31 18:05:35 +02:00
|
|
|
|
2003-10-08 17:06:59 +02:00
|
|
|
bool isValidPath(const Path & path)
|
|
|
|
{
|
|
|
|
string s;
|
|
|
|
return nixDB.queryString(noTxn, dbValidPaths, path, s);
|
2003-07-07 11:25:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-11-22 19:45:56 +01:00
|
|
|
static void invalidatePath(const Path & path, Transaction & txn)
|
2003-07-08 11:54:47 +02:00
|
|
|
{
|
2003-07-31 18:05:35 +02:00
|
|
|
debug(format("unregistering path `%1%'") % path);
|
2003-07-08 11:54:47 +02:00
|
|
|
|
2003-10-08 17:06:59 +02:00
|
|
|
nixDB.delPair(txn, dbValidPaths, path);
|
2003-07-16 22:00:51 +02:00
|
|
|
|
2003-11-22 19:45:56 +01:00
|
|
|
/* Remove any successor mappings to this path (but not *from*
|
|
|
|
it). */
|
|
|
|
Paths revs;
|
|
|
|
nixDB.queryStrings(txn, dbSuccessorsRev, path, revs);
|
|
|
|
for (Paths::iterator i = revs.begin(); i != revs.end(); ++i)
|
|
|
|
nixDB.delPair(txn, dbSuccessors, *i);
|
|
|
|
nixDB.delPair(txn, dbSuccessorsRev, path);
|
|
|
|
|
|
|
|
/* Remove any substitute mappings to this path. */
|
|
|
|
revs.clear();
|
|
|
|
nixDB.queryStrings(txn, dbSubstitutesRev, path, revs);
|
|
|
|
for (Paths::iterator i = revs.begin(); i != revs.end(); ++i) {
|
|
|
|
Paths subs;
|
|
|
|
nixDB.queryStrings(txn, dbSubstitutes, *i, subs);
|
|
|
|
remove(subs.begin(), subs.end(), path);
|
|
|
|
if (subs.size() > 0)
|
|
|
|
nixDB.setStrings(txn, dbSubstitutes, *i, subs);
|
|
|
|
else
|
|
|
|
nixDB.delPair(txn, dbSubstitutes, *i);
|
|
|
|
}
|
|
|
|
nixDB.delPair(txn, dbSubstitutesRev, path);
|
2003-07-08 11:54:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-10-08 17:06:59 +02:00
|
|
|
static bool isInPrefix(const string & path, const string & _prefix)
|
2003-07-07 11:25:26 +02:00
|
|
|
{
|
|
|
|
string prefix = canonPath(_prefix + "/");
|
|
|
|
return string(path, 0, prefix.size()) == prefix;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-10-08 17:06:59 +02:00
|
|
|
Path addToStore(const Path & _srcPath)
|
2003-07-07 11:25:26 +02:00
|
|
|
{
|
2003-10-08 17:06:59 +02:00
|
|
|
Path srcPath(absPath(_srcPath));
|
|
|
|
debug(format("adding `%1%' to the store") % srcPath);
|
2003-07-07 11:25:26 +02:00
|
|
|
|
2003-10-08 17:06:59 +02:00
|
|
|
Hash h = hashPath(srcPath);
|
2003-07-10 17:11:48 +02:00
|
|
|
|
2003-10-08 17:06:59 +02:00
|
|
|
string baseName = baseNameOf(srcPath);
|
|
|
|
Path dstPath = canonPath(nixStore + "/" + (string) h + "-" + baseName);
|
2003-07-10 17:11:48 +02:00
|
|
|
|
2003-10-08 17:06:59 +02:00
|
|
|
if (!isValidPath(dstPath)) {
|
2003-07-10 17:11:48 +02:00
|
|
|
|
2003-10-08 17:06:59 +02:00
|
|
|
/* The first check above is an optimisation to prevent
|
|
|
|
unnecessary lock acquisition. */
|
2003-07-22 17:15:15 +02:00
|
|
|
|
2003-10-08 17:06:59 +02:00
|
|
|
PathSet lockPaths;
|
|
|
|
lockPaths.insert(dstPath);
|
|
|
|
PathLocks outputLock(lockPaths);
|
2003-07-22 17:15:15 +02:00
|
|
|
|
2003-10-08 17:06:59 +02:00
|
|
|
if (!isValidPath(dstPath)) {
|
|
|
|
copyPath(srcPath, dstPath);
|
2003-08-01 11:01:51 +02:00
|
|
|
|
2003-10-08 17:06:59 +02:00
|
|
|
Transaction txn(nixDB);
|
|
|
|
registerValidPath(txn, dstPath);
|
|
|
|
txn.commit();
|
2003-08-01 11:01:51 +02:00
|
|
|
}
|
2003-11-22 19:45:56 +01:00
|
|
|
|
|
|
|
outputLock.setDeletion(true);
|
2003-06-16 15:33:38 +02:00
|
|
|
}
|
2003-08-04 09:09:36 +02:00
|
|
|
|
2003-10-08 17:06:59 +02:00
|
|
|
return dstPath;
|
2003-06-16 15:33:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-10-15 14:42:39 +02:00
|
|
|
void addTextToStore(const Path & dstPath, const string & s)
|
|
|
|
{
|
|
|
|
if (!isValidPath(dstPath)) {
|
|
|
|
|
2003-10-23 12:51:55 +02:00
|
|
|
PathSet lockPaths;
|
|
|
|
lockPaths.insert(dstPath);
|
|
|
|
PathLocks outputLock(lockPaths);
|
|
|
|
|
|
|
|
if (!isValidPath(dstPath)) {
|
2003-11-22 16:58:34 +01:00
|
|
|
writeStringToFile(dstPath, s);
|
2003-10-15 14:42:39 +02:00
|
|
|
|
2003-10-23 12:51:55 +02:00
|
|
|
Transaction txn(nixDB);
|
|
|
|
registerValidPath(txn, dstPath);
|
|
|
|
txn.commit();
|
|
|
|
}
|
2003-11-22 19:45:56 +01:00
|
|
|
|
|
|
|
outputLock.setDeletion(true);
|
2003-10-15 14:42:39 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-10-08 17:06:59 +02:00
|
|
|
void deleteFromStore(const Path & _path)
|
2003-06-23 16:40:49 +02:00
|
|
|
{
|
2003-10-08 17:06:59 +02:00
|
|
|
Path path(canonPath(_path));
|
|
|
|
|
2003-07-09 18:12:40 +02:00
|
|
|
if (!isInPrefix(path, nixStore))
|
2003-10-08 17:06:59 +02:00
|
|
|
throw Error(format("path `%1%' is not in the store") % path);
|
2003-07-08 11:54:47 +02:00
|
|
|
|
2003-11-22 19:45:56 +01:00
|
|
|
Transaction txn(nixDB);
|
|
|
|
invalidatePath(path, txn);
|
|
|
|
txn.commit();
|
2003-07-08 11:54:47 +02:00
|
|
|
|
2003-06-27 16:56:12 +02:00
|
|
|
deletePath(path);
|
2003-06-23 16:40:49 +02:00
|
|
|
}
|
2003-07-17 14:27:55 +02:00
|
|
|
|
|
|
|
|
|
|
|
void verifyStore()
|
|
|
|
{
|
2003-07-31 21:49:11 +02:00
|
|
|
Transaction txn(nixDB);
|
|
|
|
|
2003-10-10 17:14:29 +02:00
|
|
|
Paths paths;
|
2003-11-22 19:45:56 +01:00
|
|
|
PathSet validPaths;
|
2003-10-10 17:14:29 +02:00
|
|
|
nixDB.enumTable(txn, dbValidPaths, paths);
|
2003-07-17 14:27:55 +02:00
|
|
|
|
2003-11-22 19:45:56 +01:00
|
|
|
for (Paths::iterator i = paths.begin(); i != paths.end(); ++i)
|
2003-07-17 14:27:55 +02:00
|
|
|
{
|
2003-10-10 17:14:29 +02:00
|
|
|
Path path = *i;
|
2003-07-17 14:27:55 +02:00
|
|
|
if (!pathExists(path)) {
|
|
|
|
debug(format("path `%1%' disappeared") % path);
|
2003-11-22 19:45:56 +01:00
|
|
|
invalidatePath(path, txn);
|
|
|
|
} else
|
|
|
|
validPaths.insert(path);
|
2003-07-17 14:27:55 +02:00
|
|
|
}
|
|
|
|
|
2003-11-22 19:45:56 +01:00
|
|
|
Paths sucs;
|
|
|
|
nixDB.enumTable(txn, dbSuccessors, sucs);
|
|
|
|
for (Paths::iterator i = sucs.begin(); i != sucs.end(); ++i) {
|
|
|
|
/* Note that *i itself does not have to be valid, just its
|
|
|
|
successor. */
|
|
|
|
Path sucPath;
|
|
|
|
if (nixDB.queryString(txn, dbSuccessors, *i, sucPath) &&
|
|
|
|
validPaths.find(sucPath) == validPaths.end())
|
2003-07-17 14:27:55 +02:00
|
|
|
{
|
2003-11-22 19:45:56 +01:00
|
|
|
debug(format("found successor mapping to non-existent path `%1%'") % sucPath);
|
|
|
|
nixDB.delPair(txn, dbSuccessors, *i);
|
2003-07-17 14:27:55 +02:00
|
|
|
}
|
2003-11-22 19:45:56 +01:00
|
|
|
}
|
2003-07-17 14:27:55 +02:00
|
|
|
|
2003-11-22 19:45:56 +01:00
|
|
|
Paths rsucs;
|
|
|
|
nixDB.enumTable(txn, dbSuccessorsRev, rsucs);
|
|
|
|
for (Paths::iterator i = rsucs.begin(); i != rsucs.end(); ++i) {
|
|
|
|
if (validPaths.find(*i) == validPaths.end()) {
|
|
|
|
debug(format("found reverse successor mapping for non-existent path `%1%'") % *i);
|
|
|
|
nixDB.delPair(txn, dbSuccessorsRev, *i);
|
|
|
|
}
|
2003-07-17 14:27:55 +02:00
|
|
|
}
|
|
|
|
|
2003-11-22 19:45:56 +01:00
|
|
|
#if 0
|
2003-10-10 17:14:29 +02:00
|
|
|
Paths sucs;
|
2003-07-31 21:49:11 +02:00
|
|
|
nixDB.enumTable(txn, dbSuccessors, sucs);
|
2003-07-17 14:27:55 +02:00
|
|
|
|
2003-10-10 17:14:29 +02:00
|
|
|
for (Paths::iterator i = sucs.begin(); i != sucs.end(); i++) {
|
|
|
|
Path srcPath = *i;
|
|
|
|
|
|
|
|
Path sucPath;
|
|
|
|
if (!nixDB.queryString(txn, dbSuccessors, srcPath, sucPath)) abort();
|
|
|
|
|
|
|
|
Paths revs;
|
|
|
|
nixDB.queryStrings(txn, dbSuccessorsRev, sucPath, revs);
|
|
|
|
|
|
|
|
if (find(revs.begin(), revs.end(), srcPath) == revs.end()) {
|
|
|
|
debug(format("reverse successor mapping from `%1%' to `%2%' missing")
|
|
|
|
% srcPath % sucPath);
|
|
|
|
revs.push_back(srcPath);
|
|
|
|
nixDB.setStrings(txn, dbSuccessorsRev, sucPath, revs);
|
2003-07-17 14:27:55 +02:00
|
|
|
}
|
|
|
|
}
|
2003-11-22 19:45:56 +01:00
|
|
|
#endif
|
2003-07-31 21:49:11 +02:00
|
|
|
|
|
|
|
txn.commit();
|
2003-07-17 14:27:55 +02:00
|
|
|
}
|