2003-06-20 10:40:25 +00:00
|
|
|
|
#include "archive.hh"
|
Eliminate the "store" global variable
Also, move a few free-standing functions into StoreAPI and Derivation.
Also, introduce a non-nullable smart pointer, ref<T>, which is just a
wrapper around std::shared_ptr ensuring that the pointer is never
null. (For reference-counted values, this is better than passing a
"T&", because the latter doesn't maintain the refcount. Usually, the
caller will have a shared_ptr keeping the value alive, but that's not
always the case, e.g., when passing a reference to a std::thread via
std::bind.)
2016-02-04 13:28:26 +00:00
|
|
|
|
#include "derivations.hh"
|
2003-09-03 11:20:18 +00:00
|
|
|
|
#include "dotgraph.hh"
|
Eliminate the "store" global variable
Also, move a few free-standing functions into StoreAPI and Derivation.
Also, introduce a non-nullable smart pointer, ref<T>, which is just a
wrapper around std::shared_ptr ensuring that the pointer is never
null. (For reference-counted values, this is better than passing a
"T&", because the latter doesn't maintain the refcount. Usually, the
caller will have a shared_ptr keeping the value alive, but that's not
always the case, e.g., when passing a reference to a std::thread via
std::bind.)
2016-02-04 13:28:26 +00:00
|
|
|
|
#include "globals.hh"
|
2006-11-30 17:43:04 +00:00
|
|
|
|
#include "local-store.hh"
|
Eliminate the "store" global variable
Also, move a few free-standing functions into StoreAPI and Derivation.
Also, introduce a non-nullable smart pointer, ref<T>, which is just a
wrapper around std::shared_ptr ensuring that the pointer is never
null. (For reference-counted values, this is better than passing a
"T&", because the latter doesn't maintain the refcount. Usually, the
caller will have a shared_ptr keeping the value alive, but that's not
always the case, e.g., when passing a reference to a std::thread via
std::bind.)
2016-02-04 13:28:26 +00:00
|
|
|
|
#include "monitor-fd.hh"
|
2014-02-10 12:43:13 +00:00
|
|
|
|
#include "serve-protocol.hh"
|
Eliminate the "store" global variable
Also, move a few free-standing functions into StoreAPI and Derivation.
Also, introduce a non-nullable smart pointer, ref<T>, which is just a
wrapper around std::shared_ptr ensuring that the pointer is never
null. (For reference-counted values, this is better than passing a
"T&", because the latter doesn't maintain the refcount. Usually, the
caller will have a shared_ptr keeping the value alive, but that's not
always the case, e.g., when passing a reference to a std::thread via
std::bind.)
2016-02-04 13:28:26 +00:00
|
|
|
|
#include "shared.hh"
|
|
|
|
|
#include "util.hh"
|
2014-02-14 11:31:10 +00:00
|
|
|
|
#include "worker-protocol.hh"
|
Eliminate the "store" global variable
Also, move a few free-standing functions into StoreAPI and Derivation.
Also, introduce a non-nullable smart pointer, ref<T>, which is just a
wrapper around std::shared_ptr ensuring that the pointer is never
null. (For reference-counted values, this is better than passing a
"T&", because the latter doesn't maintain the refcount. Usually, the
caller will have a shared_ptr keeping the value alive, but that's not
always the case, e.g., when passing a reference to a std::thread via
std::bind.)
2016-02-04 13:28:26 +00:00
|
|
|
|
#include "xmlgraph.hh"
|
2016-04-29 15:47:03 +00:00
|
|
|
|
#include "compression.hh"
|
2003-03-24 11:50:20 +00:00
|
|
|
|
|
2010-10-04 17:55:38 +00:00
|
|
|
|
#include <iostream>
|
|
|
|
|
#include <algorithm>
|
2012-05-30 04:00:02 +00:00
|
|
|
|
#include <cstdio>
|
|
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
|
2015-02-10 10:54:06 +00:00
|
|
|
|
#if HAVE_SODIUM
|
2015-02-04 15:43:32 +00:00
|
|
|
|
#include <sodium.h>
|
2015-02-10 10:54:06 +00:00
|
|
|
|
#endif
|
2015-02-04 15:43:32 +00:00
|
|
|
|
|
2003-03-24 11:50:20 +00:00
|
|
|
|
|
2006-09-04 21:06:23 +00:00
|
|
|
|
using namespace nix;
|
|
|
|
|
using std::cin;
|
|
|
|
|
using std::cout;
|
|
|
|
|
|
|
|
|
|
|
2003-06-17 21:12:58 +00:00
|
|
|
|
typedef void (* Operation) (Strings opFlags, Strings opArgs);
|
2003-04-02 15:34:05 +00:00
|
|
|
|
|
|
|
|
|
|
2005-02-01 12:36:25 +00:00
|
|
|
|
static Path gcRoot;
|
|
|
|
|
static int rootNr = 0;
|
2005-02-01 13:48:46 +00:00
|
|
|
|
static bool indirectRoot = false;
|
2013-12-20 13:09:12 +00:00
|
|
|
|
static bool noOutput = false;
|
2016-02-04 13:48:42 +00:00
|
|
|
|
static std::shared_ptr<Store> store;
|
2005-02-01 12:36:25 +00:00
|
|
|
|
|
|
|
|
|
|
2016-02-04 14:10:47 +00:00
|
|
|
|
ref<LocalStore> ensureLocalStore()
|
2008-06-09 13:52:45 +00:00
|
|
|
|
{
|
2016-02-04 14:10:47 +00:00
|
|
|
|
auto store2 = std::dynamic_pointer_cast<LocalStore>(store);
|
2010-04-26 12:43:42 +00:00
|
|
|
|
if (!store2) throw Error("you don't have sufficient rights to use this command");
|
2016-02-04 14:10:47 +00:00
|
|
|
|
return ref<LocalStore>(store2);
|
2008-06-09 13:52:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-10-28 16:33:54 +00:00
|
|
|
|
static Path useDeriver(Path path)
|
2012-07-30 23:55:41 +00:00
|
|
|
|
{
|
2015-05-13 16:03:22 +00:00
|
|
|
|
if (isDerivation(path)) return path;
|
2016-04-19 16:50:15 +00:00
|
|
|
|
Path drvPath = store->queryPathInfo(path)->deriver;
|
2015-05-13 16:03:22 +00:00
|
|
|
|
if (drvPath == "")
|
|
|
|
|
throw Error(format("deriver of path ‘%1%’ is not known") % path);
|
|
|
|
|
return drvPath;
|
2006-10-28 16:33:54 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2011-12-30 17:25:19 +00:00
|
|
|
|
/* Realise the given path. For a derivation that means build it; for
|
|
|
|
|
other paths it means ensure their validity. */
|
2014-02-26 15:32:46 +00:00
|
|
|
|
static PathSet realisePath(Path path, bool build = true)
|
2005-01-25 10:55:33 +00:00
|
|
|
|
{
|
2012-11-26 14:39:10 +00:00
|
|
|
|
DrvPathWithOutputs p = parseDrvPathWithOutputs(path);
|
|
|
|
|
|
|
|
|
|
if (isDerivation(p.first)) {
|
2016-05-04 14:04:52 +00:00
|
|
|
|
if (build) store->buildPaths({path});
|
Eliminate the "store" global variable
Also, move a few free-standing functions into StoreAPI and Derivation.
Also, introduce a non-nullable smart pointer, ref<T>, which is just a
wrapper around std::shared_ptr ensuring that the pointer is never
null. (For reference-counted values, this is better than passing a
"T&", because the latter doesn't maintain the refcount. Usually, the
caller will have a shared_ptr keeping the value alive, but that's not
always the case, e.g., when passing a reference to a std::thread via
std::bind.)
2016-02-04 13:28:26 +00:00
|
|
|
|
Derivation drv = store->derivationFromPath(p.first);
|
2012-08-24 20:58:11 +00:00
|
|
|
|
rootNr++;
|
2011-12-30 17:25:19 +00:00
|
|
|
|
|
2012-11-26 14:39:10 +00:00
|
|
|
|
if (p.second.empty())
|
2015-07-17 17:24:28 +00:00
|
|
|
|
for (auto & i : drv.outputs) p.second.insert(i.first);
|
2012-11-26 14:39:10 +00:00
|
|
|
|
|
2011-12-30 17:25:19 +00:00
|
|
|
|
PathSet outputs;
|
2015-07-17 17:24:28 +00:00
|
|
|
|
for (auto & j : p.second) {
|
|
|
|
|
DerivationOutputs::iterator i = drv.outputs.find(j);
|
2012-11-26 14:39:10 +00:00
|
|
|
|
if (i == drv.outputs.end())
|
2015-07-17 17:24:28 +00:00
|
|
|
|
throw Error(format("derivation ‘%1%’ does not have an output named ‘%2%’") % p.first % j);
|
2011-12-30 17:25:19 +00:00
|
|
|
|
Path outPath = i->second.path;
|
|
|
|
|
if (gcRoot == "")
|
|
|
|
|
printGCWarning();
|
2012-08-24 20:58:11 +00:00
|
|
|
|
else {
|
|
|
|
|
Path rootName = gcRoot;
|
2015-10-29 12:26:55 +00:00
|
|
|
|
if (rootNr > 1) rootName += "-" + std::to_string(rootNr);
|
2012-08-24 20:58:11 +00:00
|
|
|
|
if (i->first != "out") rootName += "-" + i->first;
|
2016-02-11 15:14:42 +00:00
|
|
|
|
outPath = store->addPermRoot(outPath, rootName, indirectRoot);
|
2012-08-24 20:58:11 +00:00
|
|
|
|
}
|
2011-12-30 17:25:19 +00:00
|
|
|
|
outputs.insert(outPath);
|
|
|
|
|
}
|
|
|
|
|
return outputs;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else {
|
2012-10-02 20:00:09 +00:00
|
|
|
|
if (build) store->ensurePath(path);
|
2014-08-20 15:00:17 +00:00
|
|
|
|
else if (!store->isValidPath(path)) throw Error(format("path ‘%1%’ does not exist and cannot be created") % path);
|
2014-02-26 15:32:46 +00:00
|
|
|
|
if (gcRoot == "")
|
|
|
|
|
printGCWarning();
|
|
|
|
|
else {
|
|
|
|
|
Path rootName = gcRoot;
|
|
|
|
|
rootNr++;
|
2015-10-29 12:26:55 +00:00
|
|
|
|
if (rootNr > 1) rootName += "-" + std::to_string(rootNr);
|
2016-02-11 15:14:42 +00:00
|
|
|
|
path = store->addPermRoot(path, rootName, indirectRoot);
|
2014-02-26 15:32:46 +00:00
|
|
|
|
}
|
2016-05-04 14:04:52 +00:00
|
|
|
|
return {path};
|
2005-01-25 10:55:33 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Realise the given paths. */
|
|
|
|
|
static void opRealise(Strings opFlags, Strings opArgs)
|
2003-03-14 16:43:14 +00:00
|
|
|
|
{
|
2008-08-04 13:44:46 +00:00
|
|
|
|
bool dryRun = false;
|
2014-02-18 00:01:14 +00:00
|
|
|
|
BuildMode buildMode = bmNormal;
|
2012-11-19 23:27:25 +00:00
|
|
|
|
bool ignoreUnknown = false;
|
2012-07-30 23:55:41 +00:00
|
|
|
|
|
2015-07-17 17:24:28 +00:00
|
|
|
|
for (auto & i : opFlags)
|
|
|
|
|
if (i == "--dry-run") dryRun = true;
|
|
|
|
|
else if (i == "--repair") buildMode = bmRepair;
|
|
|
|
|
else if (i == "--check") buildMode = bmCheck;
|
2016-01-31 11:06:45 +00:00
|
|
|
|
else if (i == "--hash") buildMode = bmHash;
|
2015-07-17 17:24:28 +00:00
|
|
|
|
else if (i == "--ignore-unknown") ignoreUnknown = true;
|
|
|
|
|
else throw UsageError(format("unknown flag ‘%1%’") % i);
|
2003-03-13 16:28:32 +00:00
|
|
|
|
|
2012-11-19 23:27:25 +00:00
|
|
|
|
Paths paths;
|
2015-07-17 17:24:28 +00:00
|
|
|
|
for (auto & i : opArgs) {
|
|
|
|
|
DrvPathWithOutputs p = parseDrvPathWithOutputs(i);
|
2012-11-26 14:39:10 +00:00
|
|
|
|
paths.push_back(makeDrvPathWithOutputs(followLinksToStorePath(p.first), p.second));
|
|
|
|
|
}
|
2012-11-19 23:27:25 +00:00
|
|
|
|
|
|
|
|
|
unsigned long long downloadSize, narSize;
|
|
|
|
|
PathSet willBuild, willSubstitute, unknown;
|
Eliminate the "store" global variable
Also, move a few free-standing functions into StoreAPI and Derivation.
Also, introduce a non-nullable smart pointer, ref<T>, which is just a
wrapper around std::shared_ptr ensuring that the pointer is never
null. (For reference-counted values, this is better than passing a
"T&", because the latter doesn't maintain the refcount. Usually, the
caller will have a shared_ptr keeping the value alive, but that's not
always the case, e.g., when passing a reference to a std::thread via
std::bind.)
2016-02-04 13:28:26 +00:00
|
|
|
|
store->queryMissing(PathSet(paths.begin(), paths.end()),
|
2012-11-19 23:27:25 +00:00
|
|
|
|
willBuild, willSubstitute, unknown, downloadSize, narSize);
|
|
|
|
|
|
|
|
|
|
if (ignoreUnknown) {
|
|
|
|
|
Paths paths2;
|
2015-07-17 17:24:28 +00:00
|
|
|
|
for (auto & i : paths)
|
|
|
|
|
if (unknown.find(i) == unknown.end()) paths2.push_back(i);
|
2012-11-19 23:27:25 +00:00
|
|
|
|
paths = paths2;
|
|
|
|
|
unknown = PathSet();
|
|
|
|
|
}
|
2012-07-30 23:55:41 +00:00
|
|
|
|
|
2015-03-04 14:43:04 +00:00
|
|
|
|
if (settings.get("print-missing", true))
|
2016-02-04 13:48:42 +00:00
|
|
|
|
printMissing(ref<Store>(store), willBuild, willSubstitute, unknown, downloadSize, narSize);
|
2012-07-30 23:55:41 +00:00
|
|
|
|
|
2008-08-04 13:44:46 +00:00
|
|
|
|
if (dryRun) return;
|
2012-07-30 23:55:41 +00:00
|
|
|
|
|
2012-06-27 20:58:15 +00:00
|
|
|
|
/* Build all paths at the same time to exploit parallelism. */
|
2014-02-18 00:01:14 +00:00
|
|
|
|
store->buildPaths(PathSet(paths.begin(), paths.end()), buildMode);
|
2005-01-19 15:02:02 +00:00
|
|
|
|
|
2012-11-19 23:27:25 +00:00
|
|
|
|
if (!ignoreUnknown)
|
2015-07-17 17:24:28 +00:00
|
|
|
|
for (auto & i : paths) {
|
|
|
|
|
PathSet paths = realisePath(i, false);
|
2013-12-20 12:10:14 +00:00
|
|
|
|
if (!noOutput)
|
2015-07-17 17:24:28 +00:00
|
|
|
|
for (auto & j : paths)
|
|
|
|
|
cout << format("%1%\n") % j;
|
2012-11-19 23:27:25 +00:00
|
|
|
|
}
|
2003-04-02 15:34:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2005-04-07 14:01:51 +00:00
|
|
|
|
/* Add files to the Nix store and print the resulting paths. */
|
2003-06-17 21:12:58 +00:00
|
|
|
|
static void opAdd(Strings opFlags, Strings opArgs)
|
2003-04-02 15:34:05 +00:00
|
|
|
|
{
|
2003-06-17 21:12:58 +00:00
|
|
|
|
if (!opFlags.empty()) throw UsageError("unknown flag");
|
2003-04-02 15:34:05 +00:00
|
|
|
|
|
2015-03-25 16:06:12 +00:00
|
|
|
|
for (auto & i : opArgs)
|
|
|
|
|
cout << format("%1%\n") % store->addToStore(baseNameOf(i), i);
|
2003-03-13 16:28:32 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2005-04-07 14:01:51 +00:00
|
|
|
|
/* Preload the output of a fixed-output derivation into the Nix
|
|
|
|
|
store. */
|
|
|
|
|
static void opAddFixed(Strings opFlags, Strings opArgs)
|
|
|
|
|
{
|
|
|
|
|
bool recursive = false;
|
2012-07-30 23:55:41 +00:00
|
|
|
|
|
2015-07-17 17:24:28 +00:00
|
|
|
|
for (auto & i : opFlags)
|
|
|
|
|
if (i == "--recursive") recursive = true;
|
|
|
|
|
else throw UsageError(format("unknown flag ‘%1%’") % i);
|
2005-04-07 14:01:51 +00:00
|
|
|
|
|
|
|
|
|
if (opArgs.empty())
|
|
|
|
|
throw UsageError("first argument must be hash algorithm");
|
2012-07-30 23:55:41 +00:00
|
|
|
|
|
2008-12-03 16:10:17 +00:00
|
|
|
|
HashType hashAlgo = parseHashType(opArgs.front());
|
2005-04-07 14:01:51 +00:00
|
|
|
|
opArgs.pop_front();
|
|
|
|
|
|
2015-03-25 16:06:12 +00:00
|
|
|
|
for (auto & i : opArgs)
|
|
|
|
|
cout << format("%1%\n") % store->addToStore(baseNameOf(i), i, recursive, hashAlgo);
|
2005-04-07 14:01:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Hack to support caching in `nix-prefetch-url'. */
|
|
|
|
|
static void opPrintFixedPath(Strings opFlags, Strings opArgs)
|
|
|
|
|
{
|
|
|
|
|
bool recursive = false;
|
2012-07-30 23:55:41 +00:00
|
|
|
|
|
2015-07-17 17:24:28 +00:00
|
|
|
|
for (auto i : opFlags)
|
|
|
|
|
if (i == "--recursive") recursive = true;
|
|
|
|
|
else throw UsageError(format("unknown flag ‘%1%’") % i);
|
2005-04-07 14:01:51 +00:00
|
|
|
|
|
2008-12-03 15:06:30 +00:00
|
|
|
|
if (opArgs.size() != 3)
|
2014-08-20 15:00:17 +00:00
|
|
|
|
throw UsageError(format("‘--print-fixed-path’ requires three arguments"));
|
2012-07-30 23:55:41 +00:00
|
|
|
|
|
2005-04-07 14:01:51 +00:00
|
|
|
|
Strings::iterator i = opArgs.begin();
|
2008-12-03 16:10:17 +00:00
|
|
|
|
HashType hashAlgo = parseHashType(*i++);
|
2005-04-07 14:01:51 +00:00
|
|
|
|
string hash = *i++;
|
|
|
|
|
string name = *i++;
|
|
|
|
|
|
|
|
|
|
cout << format("%1%\n") %
|
2006-11-13 16:48:27 +00:00
|
|
|
|
makeFixedOutputPath(recursive, hashAlgo,
|
2008-12-03 16:10:17 +00:00
|
|
|
|
parseHash16or32(hashAlgo, hash), name);
|
2005-04-07 14:01:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2011-12-30 17:25:19 +00:00
|
|
|
|
static PathSet maybeUseOutputs(const Path & storePath, bool useOutput, bool forceRealise)
|
2003-07-29 10:43:12 +00:00
|
|
|
|
{
|
2005-01-25 10:55:33 +00:00
|
|
|
|
if (forceRealise) realisePath(storePath);
|
2005-01-19 14:36:00 +00:00
|
|
|
|
if (useOutput && isDerivation(storePath)) {
|
Eliminate the "store" global variable
Also, move a few free-standing functions into StoreAPI and Derivation.
Also, introduce a non-nullable smart pointer, ref<T>, which is just a
wrapper around std::shared_ptr ensuring that the pointer is never
null. (For reference-counted values, this is better than passing a
"T&", because the latter doesn't maintain the refcount. Usually, the
caller will have a shared_ptr keeping the value alive, but that's not
always the case, e.g., when passing a reference to a std::thread via
std::bind.)
2016-02-04 13:28:26 +00:00
|
|
|
|
Derivation drv = store->derivationFromPath(storePath);
|
2011-12-30 17:25:19 +00:00
|
|
|
|
PathSet outputs;
|
2015-07-17 17:24:28 +00:00
|
|
|
|
for (auto & i : drv.outputs)
|
|
|
|
|
outputs.insert(i.second.path);
|
2011-12-30 17:25:19 +00:00
|
|
|
|
return outputs;
|
2005-01-19 14:36:00 +00:00
|
|
|
|
}
|
2016-05-04 14:04:52 +00:00
|
|
|
|
else return {storePath};
|
2003-07-29 10:43:12 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2005-02-17 15:57:46 +00:00
|
|
|
|
/* Some code to print a tree representation of a derivation dependency
|
|
|
|
|
graph. Topological sorting is used to keep the tree relatively
|
|
|
|
|
flat. */
|
|
|
|
|
|
|
|
|
|
const string treeConn = "+---";
|
|
|
|
|
const string treeLine = "| ";
|
|
|
|
|
const string treeNull = " ";
|
|
|
|
|
|
|
|
|
|
|
2005-04-08 12:57:16 +00:00
|
|
|
|
static void printTree(const Path & path,
|
2005-02-17 15:57:46 +00:00
|
|
|
|
const string & firstPad, const string & tailPad, PathSet & done)
|
|
|
|
|
{
|
2005-04-08 12:57:16 +00:00
|
|
|
|
if (done.find(path) != done.end()) {
|
|
|
|
|
cout << format("%1%%2% [...]\n") % firstPad % path;
|
2005-02-17 15:57:46 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
2005-04-08 12:57:16 +00:00
|
|
|
|
done.insert(path);
|
2005-02-17 15:57:46 +00:00
|
|
|
|
|
2005-04-08 12:57:16 +00:00
|
|
|
|
cout << format("%1%%2%\n") % firstPad % path;
|
|
|
|
|
|
2016-04-19 16:50:15 +00:00
|
|
|
|
auto references = store->queryPathInfo(path)->references;
|
2012-07-30 23:55:41 +00:00
|
|
|
|
|
2005-02-22 15:23:24 +00:00
|
|
|
|
/* Topologically sort under the relation A < B iff A \in
|
2005-02-17 15:57:46 +00:00
|
|
|
|
closure(B). That is, if derivation A is an (possibly indirect)
|
|
|
|
|
input of B, then A is printed first. This has the effect of
|
|
|
|
|
flattening the tree, preventing deeply nested structures. */
|
Eliminate the "store" global variable
Also, move a few free-standing functions into StoreAPI and Derivation.
Also, introduce a non-nullable smart pointer, ref<T>, which is just a
wrapper around std::shared_ptr ensuring that the pointer is never
null. (For reference-counted values, this is better than passing a
"T&", because the latter doesn't maintain the refcount. Usually, the
caller will have a shared_ptr keeping the value alive, but that's not
always the case, e.g., when passing a reference to a std::thread via
std::bind.)
2016-02-04 13:28:26 +00:00
|
|
|
|
Paths sorted = store->topoSortPaths(references);
|
2005-02-17 15:57:46 +00:00
|
|
|
|
reverse(sorted.begin(), sorted.end());
|
|
|
|
|
|
2015-07-17 17:24:28 +00:00
|
|
|
|
for (auto i = sorted.begin(); i != sorted.end(); ++i) {
|
|
|
|
|
auto j = i; ++j;
|
2005-04-08 12:57:16 +00:00
|
|
|
|
printTree(*i, tailPad + treeConn,
|
2005-02-17 15:57:46 +00:00
|
|
|
|
j == sorted.end() ? tailPad + treeNull : tailPad + treeLine,
|
|
|
|
|
done);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-07-08 13:22:08 +00:00
|
|
|
|
/* Perform various sorts of queries. */
|
|
|
|
|
static void opQuery(Strings opFlags, Strings opArgs)
|
|
|
|
|
{
|
2014-10-14 10:15:39 +00:00
|
|
|
|
enum QueryType
|
|
|
|
|
{ qDefault, qOutputs, qRequisites, qReferences, qReferrers
|
|
|
|
|
, qReferrersClosure, qDeriver, qBinding, qHash, qSize
|
|
|
|
|
, qTree, qGraph, qXml, qResolve, qRoots };
|
|
|
|
|
QueryType query = qDefault;
|
2005-01-19 14:36:00 +00:00
|
|
|
|
bool useOutput = false;
|
|
|
|
|
bool includeOutputs = false;
|
2005-01-25 10:55:33 +00:00
|
|
|
|
bool forceRealise = false;
|
2005-02-07 14:32:44 +00:00
|
|
|
|
string bindingName;
|
2003-07-21 14:46:01 +00:00
|
|
|
|
|
2015-07-17 17:24:28 +00:00
|
|
|
|
for (auto & i : opFlags) {
|
2014-10-14 10:15:39 +00:00
|
|
|
|
QueryType prev = query;
|
2015-07-17 17:24:28 +00:00
|
|
|
|
if (i == "--outputs") query = qOutputs;
|
|
|
|
|
else if (i == "--requisites" || i == "-R") query = qRequisites;
|
|
|
|
|
else if (i == "--references") query = qReferences;
|
|
|
|
|
else if (i == "--referrers" || i == "--referers") query = qReferrers;
|
|
|
|
|
else if (i == "--referrers-closure" || i == "--referers-closure") query = qReferrersClosure;
|
|
|
|
|
else if (i == "--deriver" || i == "-d") query = qDeriver;
|
|
|
|
|
else if (i == "--binding" || i == "-b") {
|
2005-02-07 14:32:44 +00:00
|
|
|
|
if (opArgs.size() == 0)
|
|
|
|
|
throw UsageError("expected binding name");
|
|
|
|
|
bindingName = opArgs.front();
|
|
|
|
|
opArgs.pop_front();
|
|
|
|
|
query = qBinding;
|
|
|
|
|
}
|
2015-07-17 17:24:28 +00:00
|
|
|
|
else if (i == "--hash") query = qHash;
|
|
|
|
|
else if (i == "--size") query = qSize;
|
|
|
|
|
else if (i == "--tree") query = qTree;
|
|
|
|
|
else if (i == "--graph") query = qGraph;
|
|
|
|
|
else if (i == "--xml") query = qXml;
|
|
|
|
|
else if (i == "--resolve") query = qResolve;
|
|
|
|
|
else if (i == "--roots") query = qRoots;
|
|
|
|
|
else if (i == "--use-output" || i == "-u") useOutput = true;
|
|
|
|
|
else if (i == "--force-realise" || i == "--force-realize" || i == "-f") forceRealise = true;
|
|
|
|
|
else if (i == "--include-outputs") includeOutputs = true;
|
|
|
|
|
else throw UsageError(format("unknown flag ‘%1%’") % i);
|
2014-10-14 10:15:39 +00:00
|
|
|
|
if (prev != qDefault && prev != query)
|
2015-07-17 17:24:28 +00:00
|
|
|
|
throw UsageError(format("query type ‘%1%’ conflicts with earlier flag") % i);
|
2014-10-14 10:15:39 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (query == qDefault) query = qOutputs;
|
2003-07-21 14:46:01 +00:00
|
|
|
|
|
2014-08-20 19:26:37 +00:00
|
|
|
|
RunPager pager;
|
|
|
|
|
|
2003-07-21 14:46:01 +00:00
|
|
|
|
switch (query) {
|
2012-07-30 23:55:41 +00:00
|
|
|
|
|
2005-01-19 14:36:00 +00:00
|
|
|
|
case qOutputs: {
|
2015-07-17 17:24:28 +00:00
|
|
|
|
for (auto & i : opArgs) {
|
|
|
|
|
i = followLinksToStorePath(i);
|
|
|
|
|
if (forceRealise) realisePath(i);
|
Eliminate the "store" global variable
Also, move a few free-standing functions into StoreAPI and Derivation.
Also, introduce a non-nullable smart pointer, ref<T>, which is just a
wrapper around std::shared_ptr ensuring that the pointer is never
null. (For reference-counted values, this is better than passing a
"T&", because the latter doesn't maintain the refcount. Usually, the
caller will have a shared_ptr keeping the value alive, but that's not
always the case, e.g., when passing a reference to a std::thread via
std::bind.)
2016-02-04 13:28:26 +00:00
|
|
|
|
Derivation drv = store->derivationFromPath(i);
|
2015-07-17 17:24:28 +00:00
|
|
|
|
for (auto & j : drv.outputs)
|
|
|
|
|
cout << format("%1%\n") % j.second.path;
|
2003-07-21 14:46:01 +00:00
|
|
|
|
}
|
2003-07-08 13:22:08 +00:00
|
|
|
|
break;
|
2003-07-10 13:41:28 +00:00
|
|
|
|
}
|
2003-07-08 13:22:08 +00:00
|
|
|
|
|
2005-01-19 16:59:56 +00:00
|
|
|
|
case qRequisites:
|
|
|
|
|
case qReferences:
|
2005-12-13 21:04:48 +00:00
|
|
|
|
case qReferrers:
|
|
|
|
|
case qReferrersClosure: {
|
2005-01-19 14:36:00 +00:00
|
|
|
|
PathSet paths;
|
2015-07-17 17:24:28 +00:00
|
|
|
|
for (auto & i : opArgs) {
|
|
|
|
|
PathSet ps = maybeUseOutputs(followLinksToStorePath(i), useOutput, forceRealise);
|
|
|
|
|
for (auto & j : ps) {
|
Eliminate the "store" global variable
Also, move a few free-standing functions into StoreAPI and Derivation.
Also, introduce a non-nullable smart pointer, ref<T>, which is just a
wrapper around std::shared_ptr ensuring that the pointer is never
null. (For reference-counted values, this is better than passing a
"T&", because the latter doesn't maintain the refcount. Usually, the
caller will have a shared_ptr keeping the value alive, but that's not
always the case, e.g., when passing a reference to a std::thread via
std::bind.)
2016-02-04 13:28:26 +00:00
|
|
|
|
if (query == qRequisites) store->computeFSClosure(j, paths, false, includeOutputs);
|
2016-04-19 16:50:15 +00:00
|
|
|
|
else if (query == qReferences) {
|
|
|
|
|
for (auto & p : store->queryPathInfo(j)->references)
|
|
|
|
|
paths.insert(p);
|
|
|
|
|
}
|
2015-07-17 17:24:28 +00:00
|
|
|
|
else if (query == qReferrers) store->queryReferrers(j, paths);
|
Eliminate the "store" global variable
Also, move a few free-standing functions into StoreAPI and Derivation.
Also, introduce a non-nullable smart pointer, ref<T>, which is just a
wrapper around std::shared_ptr ensuring that the pointer is never
null. (For reference-counted values, this is better than passing a
"T&", because the latter doesn't maintain the refcount. Usually, the
caller will have a shared_ptr keeping the value alive, but that's not
always the case, e.g., when passing a reference to a std::thread via
std::bind.)
2016-02-04 13:28:26 +00:00
|
|
|
|
else if (query == qReferrersClosure) store->computeFSClosure(j, paths, true);
|
2011-12-30 17:25:19 +00:00
|
|
|
|
}
|
2003-07-21 14:46:01 +00:00
|
|
|
|
}
|
Eliminate the "store" global variable
Also, move a few free-standing functions into StoreAPI and Derivation.
Also, introduce a non-nullable smart pointer, ref<T>, which is just a
wrapper around std::shared_ptr ensuring that the pointer is never
null. (For reference-counted values, this is better than passing a
"T&", because the latter doesn't maintain the refcount. Usually, the
caller will have a shared_ptr keeping the value alive, but that's not
always the case, e.g., when passing a reference to a std::thread via
std::bind.)
2016-02-04 13:28:26 +00:00
|
|
|
|
Paths sorted = store->topoSortPaths(paths);
|
2012-07-30 23:55:41 +00:00
|
|
|
|
for (Paths::reverse_iterator i = sorted.rbegin();
|
2007-02-21 22:45:10 +00:00
|
|
|
|
i != sorted.rend(); ++i)
|
|
|
|
|
cout << format("%s\n") % *i;
|
2003-07-21 14:46:01 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2005-02-07 13:40:40 +00:00
|
|
|
|
case qDeriver:
|
2015-07-17 17:24:28 +00:00
|
|
|
|
for (auto & i : opArgs) {
|
2016-04-19 16:50:15 +00:00
|
|
|
|
Path deriver = store->queryPathInfo(followLinksToStorePath(i))->deriver;
|
2005-02-07 13:40:40 +00:00
|
|
|
|
cout << format("%1%\n") %
|
|
|
|
|
(deriver == "" ? "unknown-deriver" : deriver);
|
|
|
|
|
}
|
|
|
|
|
break;
|
2005-02-07 14:32:44 +00:00
|
|
|
|
|
|
|
|
|
case qBinding:
|
2015-07-17 17:24:28 +00:00
|
|
|
|
for (auto & i : opArgs) {
|
|
|
|
|
Path path = useDeriver(followLinksToStorePath(i));
|
Eliminate the "store" global variable
Also, move a few free-standing functions into StoreAPI and Derivation.
Also, introduce a non-nullable smart pointer, ref<T>, which is just a
wrapper around std::shared_ptr ensuring that the pointer is never
null. (For reference-counted values, this is better than passing a
"T&", because the latter doesn't maintain the refcount. Usually, the
caller will have a shared_ptr keeping the value alive, but that's not
always the case, e.g., when passing a reference to a std::thread via
std::bind.)
2016-02-04 13:28:26 +00:00
|
|
|
|
Derivation drv = store->derivationFromPath(path);
|
2005-02-07 14:32:44 +00:00
|
|
|
|
StringPairs::iterator j = drv.env.find(bindingName);
|
|
|
|
|
if (j == drv.env.end())
|
2014-08-20 15:00:17 +00:00
|
|
|
|
throw Error(format("derivation ‘%1%’ has no environment binding named ‘%2%’")
|
2006-10-28 16:33:54 +00:00
|
|
|
|
% path % bindingName);
|
2005-02-07 14:32:44 +00:00
|
|
|
|
cout << format("%1%\n") % j->second;
|
|
|
|
|
}
|
|
|
|
|
break;
|
2005-02-07 13:40:40 +00:00
|
|
|
|
|
2005-03-02 15:57:06 +00:00
|
|
|
|
case qHash:
|
2010-11-17 12:40:52 +00:00
|
|
|
|
case qSize:
|
2015-07-17 17:24:28 +00:00
|
|
|
|
for (auto & i : opArgs) {
|
|
|
|
|
PathSet paths = maybeUseOutputs(followLinksToStorePath(i), useOutput, forceRealise);
|
|
|
|
|
for (auto & j : paths) {
|
2016-04-19 16:50:15 +00:00
|
|
|
|
auto info = store->queryPathInfo(j);
|
2011-12-30 17:25:19 +00:00
|
|
|
|
if (query == qHash) {
|
2016-04-19 16:50:15 +00:00
|
|
|
|
assert(info->narHash.type == htSHA256);
|
|
|
|
|
cout << format("sha256:%1%\n") % printHash32(info->narHash);
|
2012-07-30 23:55:41 +00:00
|
|
|
|
} else if (query == qSize)
|
2016-04-19 16:50:15 +00:00
|
|
|
|
cout << format("%1%\n") % info->narSize;
|
2011-12-30 17:25:19 +00:00
|
|
|
|
}
|
2005-03-02 15:57:06 +00:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
2005-02-17 15:57:46 +00:00
|
|
|
|
case qTree: {
|
|
|
|
|
PathSet done;
|
2015-07-17 17:24:28 +00:00
|
|
|
|
for (auto & i : opArgs)
|
|
|
|
|
printTree(followLinksToStorePath(i), "", "", done);
|
2005-02-17 15:57:46 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
2012-07-30 23:55:41 +00:00
|
|
|
|
|
2003-07-28 12:19:23 +00:00
|
|
|
|
case qGraph: {
|
2003-10-08 15:06:59 +00:00
|
|
|
|
PathSet roots;
|
2015-07-17 17:24:28 +00:00
|
|
|
|
for (auto & i : opArgs) {
|
|
|
|
|
PathSet paths = maybeUseOutputs(followLinksToStorePath(i), useOutput, forceRealise);
|
2011-12-30 17:25:19 +00:00
|
|
|
|
roots.insert(paths.begin(), paths.end());
|
|
|
|
|
}
|
2016-02-04 14:10:47 +00:00
|
|
|
|
printDotGraph(ref<Store>(store), roots);
|
2010-05-31 16:36:24 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case qXml: {
|
|
|
|
|
PathSet roots;
|
2015-07-17 17:24:28 +00:00
|
|
|
|
for (auto & i : opArgs) {
|
|
|
|
|
PathSet paths = maybeUseOutputs(followLinksToStorePath(i), useOutput, forceRealise);
|
2011-12-30 17:25:19 +00:00
|
|
|
|
roots.insert(paths.begin(), paths.end());
|
|
|
|
|
}
|
2016-02-04 14:10:47 +00:00
|
|
|
|
printXmlGraph(ref<Store>(store), roots);
|
2003-07-28 12:19:23 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2007-01-13 19:50:42 +00:00
|
|
|
|
case qResolve: {
|
2015-07-17 17:24:28 +00:00
|
|
|
|
for (auto & i : opArgs)
|
|
|
|
|
cout << format("%1%\n") % followLinksToStorePath(i);
|
2007-01-13 19:50:42 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
2012-07-30 23:55:41 +00:00
|
|
|
|
|
2009-11-23 18:16:25 +00:00
|
|
|
|
case qRoots: {
|
|
|
|
|
PathSet referrers;
|
2015-07-17 17:24:28 +00:00
|
|
|
|
for (auto & i : opArgs) {
|
|
|
|
|
PathSet paths = maybeUseOutputs(followLinksToStorePath(i), useOutput, forceRealise);
|
|
|
|
|
for (auto & j : paths)
|
Eliminate the "store" global variable
Also, move a few free-standing functions into StoreAPI and Derivation.
Also, introduce a non-nullable smart pointer, ref<T>, which is just a
wrapper around std::shared_ptr ensuring that the pointer is never
null. (For reference-counted values, this is better than passing a
"T&", because the latter doesn't maintain the refcount. Usually, the
caller will have a shared_ptr keeping the value alive, but that's not
always the case, e.g., when passing a reference to a std::thread via
std::bind.)
2016-02-04 13:28:26 +00:00
|
|
|
|
store->computeFSClosure(j, referrers, true,
|
2012-12-20 17:41:44 +00:00
|
|
|
|
settings.gcKeepOutputs, settings.gcKeepDerivations);
|
2011-12-30 17:25:19 +00:00
|
|
|
|
}
|
2009-11-23 18:16:25 +00:00
|
|
|
|
Roots roots = store->findRoots();
|
2015-07-17 17:24:28 +00:00
|
|
|
|
for (auto & i : roots)
|
|
|
|
|
if (referrers.find(i.second) != referrers.end())
|
|
|
|
|
cout << format("%1%\n") % i.first;
|
2009-11-23 18:16:25 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
2012-07-30 23:55:41 +00:00
|
|
|
|
|
2003-07-08 13:22:08 +00:00
|
|
|
|
default:
|
|
|
|
|
abort();
|
|
|
|
|
}
|
|
|
|
|
}
|
2003-07-10 18:48:11 +00:00
|
|
|
|
|
|
|
|
|
|
2012-01-17 23:07:22 +00:00
|
|
|
|
static string shellEscape(const string & s)
|
|
|
|
|
{
|
|
|
|
|
string r;
|
2015-07-17 17:24:28 +00:00
|
|
|
|
for (auto & i : s)
|
|
|
|
|
if (i == '\'') r += "'\\''"; else r += i;
|
2012-01-17 23:07:22 +00:00
|
|
|
|
return r;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void opPrintEnv(Strings opFlags, Strings opArgs)
|
|
|
|
|
{
|
|
|
|
|
if (!opFlags.empty()) throw UsageError("unknown flag");
|
2014-08-20 15:00:17 +00:00
|
|
|
|
if (opArgs.size() != 1) throw UsageError("‘--print-env’ requires one derivation store path");
|
2012-01-17 23:07:22 +00:00
|
|
|
|
|
|
|
|
|
Path drvPath = opArgs.front();
|
Eliminate the "store" global variable
Also, move a few free-standing functions into StoreAPI and Derivation.
Also, introduce a non-nullable smart pointer, ref<T>, which is just a
wrapper around std::shared_ptr ensuring that the pointer is never
null. (For reference-counted values, this is better than passing a
"T&", because the latter doesn't maintain the refcount. Usually, the
caller will have a shared_ptr keeping the value alive, but that's not
always the case, e.g., when passing a reference to a std::thread via
std::bind.)
2016-02-04 13:28:26 +00:00
|
|
|
|
Derivation drv = store->derivationFromPath(drvPath);
|
2012-01-17 23:07:22 +00:00
|
|
|
|
|
|
|
|
|
/* Print each environment variable in the derivation in a format
|
|
|
|
|
that can be sourced by the shell. */
|
2015-07-17 17:24:28 +00:00
|
|
|
|
for (auto & i : drv.env)
|
|
|
|
|
cout << format("export %1%; %1%='%2%'\n") % i.first % shellEscape(i.second);
|
2012-01-17 23:07:22 +00:00
|
|
|
|
|
|
|
|
|
/* Also output the arguments. This doesn't preserve whitespace in
|
|
|
|
|
arguments. */
|
|
|
|
|
cout << "export _args; _args='";
|
2015-07-17 17:24:28 +00:00
|
|
|
|
bool first = true;
|
|
|
|
|
for (auto & i : drv.args) {
|
|
|
|
|
if (!first) cout << ' ';
|
|
|
|
|
first = false;
|
|
|
|
|
cout << shellEscape(i);
|
2012-01-17 23:07:22 +00:00
|
|
|
|
}
|
|
|
|
|
cout << "'\n";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-10-28 16:33:54 +00:00
|
|
|
|
static void opReadLog(Strings opFlags, Strings opArgs)
|
|
|
|
|
{
|
|
|
|
|
if (!opFlags.empty()) throw UsageError("unknown flag");
|
|
|
|
|
|
2014-08-20 13:12:58 +00:00
|
|
|
|
RunPager pager;
|
|
|
|
|
|
2015-07-17 17:24:28 +00:00
|
|
|
|
for (auto & i : opArgs) {
|
|
|
|
|
Path path = useDeriver(followLinksToStorePath(i));
|
2012-07-30 23:55:41 +00:00
|
|
|
|
|
2014-05-21 15:19:36 +00:00
|
|
|
|
string baseName = baseNameOf(path);
|
|
|
|
|
bool found = false;
|
|
|
|
|
|
|
|
|
|
for (int j = 0; j < 2; j++) {
|
2013-03-08 00:24:59 +00:00
|
|
|
|
|
|
|
|
|
Path logPath =
|
|
|
|
|
j == 0
|
|
|
|
|
? (format("%1%/%2%/%3%/%4%") % settings.nixLogDir % drvsLogDir % string(baseName, 0, 2) % string(baseName, 2)).str()
|
|
|
|
|
: (format("%1%/%2%/%3%") % settings.nixLogDir % drvsLogDir % baseName).str();
|
|
|
|
|
Path logBz2Path = logPath + ".bz2";
|
|
|
|
|
|
|
|
|
|
if (pathExists(logPath)) {
|
|
|
|
|
/* !!! Make this run in O(1) memory. */
|
|
|
|
|
string log = readFile(logPath);
|
2014-12-12 13:35:44 +00:00
|
|
|
|
writeFull(STDOUT_FILENO, log);
|
2014-05-21 15:19:36 +00:00
|
|
|
|
found = true;
|
2013-03-08 00:24:59 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
2013-03-07 22:55:55 +00:00
|
|
|
|
|
2013-03-08 00:24:59 +00:00
|
|
|
|
else if (pathExists(logBz2Path)) {
|
2016-05-04 11:36:54 +00:00
|
|
|
|
std::cout << *decompress("bzip2", readFile(logBz2Path));
|
2014-05-21 15:19:36 +00:00
|
|
|
|
found = true;
|
2013-03-08 00:24:59 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
2013-03-07 22:55:55 +00:00
|
|
|
|
}
|
2014-05-21 15:19:36 +00:00
|
|
|
|
|
|
|
|
|
if (!found) {
|
|
|
|
|
for (auto & i : settings.logServers) {
|
|
|
|
|
string prefix = i;
|
|
|
|
|
if (!prefix.empty() && prefix.back() != '/') prefix += '/';
|
|
|
|
|
string url = prefix + baseName;
|
|
|
|
|
try {
|
|
|
|
|
string log = runProgram(CURL, true, {"--fail", "--location", "--silent", "--", url});
|
|
|
|
|
std::cout << "(using build log from " << url << ")" << std::endl;
|
|
|
|
|
std::cout << log;
|
|
|
|
|
found = true;
|
|
|
|
|
break;
|
|
|
|
|
} catch (ExecError & e) {
|
|
|
|
|
/* Ignore errors from curl. FIXME: actually, might be
|
|
|
|
|
nice to print a warning on HTTP status != 404. */
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-20 15:00:17 +00:00
|
|
|
|
if (!found) throw Error(format("build log of derivation ‘%1%’ is not available") % path);
|
2006-10-28 16:33:54 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2008-01-29 18:17:36 +00:00
|
|
|
|
static void opDumpDB(Strings opFlags, Strings opArgs)
|
2004-02-14 21:44:18 +00:00
|
|
|
|
{
|
2008-01-29 18:17:36 +00:00
|
|
|
|
if (!opFlags.empty()) throw UsageError("unknown flag");
|
|
|
|
|
if (!opArgs.empty())
|
|
|
|
|
throw UsageError("no arguments expected");
|
2012-07-11 14:49:04 +00:00
|
|
|
|
PathSet validPaths = store->queryAllValidPaths();
|
2015-07-17 17:24:28 +00:00
|
|
|
|
for (auto & i : validPaths)
|
2016-05-04 14:04:52 +00:00
|
|
|
|
cout << store->makeValidityRegistration({i}, true, true);
|
2008-01-29 18:17:36 +00:00
|
|
|
|
}
|
2006-11-13 16:48:27 +00:00
|
|
|
|
|
2005-03-23 11:25:20 +00:00
|
|
|
|
|
2008-01-29 18:17:36 +00:00
|
|
|
|
static void registerValidity(bool reregister, bool hashGiven, bool canonicalise)
|
|
|
|
|
{
|
2005-03-23 13:07:28 +00:00
|
|
|
|
ValidPathInfos infos;
|
2012-07-30 23:55:41 +00:00
|
|
|
|
|
2005-03-23 11:25:20 +00:00
|
|
|
|
while (1) {
|
2008-01-29 18:17:36 +00:00
|
|
|
|
ValidPathInfo info = decodeValidPathInfo(cin, hashGiven);
|
2007-08-12 00:29:28 +00:00
|
|
|
|
if (info.path == "") break;
|
2006-11-30 17:43:04 +00:00
|
|
|
|
if (!store->isValidPath(info.path) || reregister) {
|
2005-03-23 12:06:57 +00:00
|
|
|
|
/* !!! races */
|
2008-01-29 18:17:36 +00:00
|
|
|
|
if (canonicalise)
|
2013-03-08 00:24:59 +00:00
|
|
|
|
canonicalisePathMetaData(info.path, -1);
|
2010-11-16 17:11:46 +00:00
|
|
|
|
if (!hashGiven) {
|
|
|
|
|
HashResult hash = hashPath(htSHA256, info.path);
|
2016-02-16 10:49:12 +00:00
|
|
|
|
info.narHash = hash.first;
|
2010-11-16 17:11:46 +00:00
|
|
|
|
info.narSize = hash.second;
|
|
|
|
|
}
|
2005-03-23 13:07:28 +00:00
|
|
|
|
infos.push_back(info);
|
2005-03-23 12:06:57 +00:00
|
|
|
|
}
|
2005-03-23 11:25:20 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-02-04 14:10:47 +00:00
|
|
|
|
ensureLocalStore()->registerValidPaths(infos);
|
2004-02-14 21:44:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2008-01-29 18:17:36 +00:00
|
|
|
|
static void opLoadDB(Strings opFlags, Strings opArgs)
|
|
|
|
|
{
|
|
|
|
|
if (!opFlags.empty()) throw UsageError("unknown flag");
|
|
|
|
|
if (!opArgs.empty())
|
|
|
|
|
throw UsageError("no arguments expected");
|
|
|
|
|
registerValidity(true, true, false);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void opRegisterValidity(Strings opFlags, Strings opArgs)
|
|
|
|
|
{
|
|
|
|
|
bool reregister = false; // !!! maybe this should be the default
|
|
|
|
|
bool hashGiven = false;
|
2012-07-30 23:55:41 +00:00
|
|
|
|
|
2015-07-17 17:24:28 +00:00
|
|
|
|
for (auto & i : opFlags)
|
|
|
|
|
if (i == "--reregister") reregister = true;
|
|
|
|
|
else if (i == "--hash-given") hashGiven = true;
|
|
|
|
|
else throw UsageError(format("unknown flag ‘%1%’") % i);
|
2008-01-29 18:17:36 +00:00
|
|
|
|
|
|
|
|
|
if (!opArgs.empty()) throw UsageError("no arguments expected");
|
|
|
|
|
|
|
|
|
|
registerValidity(reregister, hashGiven, true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2005-03-23 11:25:20 +00:00
|
|
|
|
static void opCheckValidity(Strings opFlags, Strings opArgs)
|
2004-02-14 21:44:18 +00:00
|
|
|
|
{
|
2007-02-21 17:57:59 +00:00
|
|
|
|
bool printInvalid = false;
|
2012-07-30 23:55:41 +00:00
|
|
|
|
|
2015-07-17 17:24:28 +00:00
|
|
|
|
for (auto & i : opFlags)
|
|
|
|
|
if (i == "--print-invalid") printInvalid = true;
|
|
|
|
|
else throw UsageError(format("unknown flag ‘%1%’") % i);
|
2004-02-14 21:44:18 +00:00
|
|
|
|
|
2015-07-17 17:24:28 +00:00
|
|
|
|
for (auto & i : opArgs) {
|
|
|
|
|
Path path = followLinksToStorePath(i);
|
2011-09-06 12:06:30 +00:00
|
|
|
|
if (!store->isValidPath(path)) {
|
2007-02-21 17:57:59 +00:00
|
|
|
|
if (printInvalid)
|
|
|
|
|
cout << format("%1%\n") % path;
|
|
|
|
|
else
|
2014-08-20 15:00:17 +00:00
|
|
|
|
throw Error(format("path ‘%1%’ is not valid") % path);
|
2011-09-06 12:06:30 +00:00
|
|
|
|
}
|
2007-02-21 17:57:59 +00:00
|
|
|
|
}
|
2004-02-14 21:44:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-08-25 11:43:49 +00:00
|
|
|
|
static void opGC(Strings opFlags, Strings opArgs)
|
|
|
|
|
{
|
2009-11-23 17:23:12 +00:00
|
|
|
|
bool printRoots = false;
|
2008-06-18 09:34:17 +00:00
|
|
|
|
GCOptions options;
|
|
|
|
|
options.action = GCOptions::gcDeleteDead;
|
2012-07-30 23:55:41 +00:00
|
|
|
|
|
2008-06-18 09:34:17 +00:00
|
|
|
|
GCResults results;
|
2012-07-30 23:55:41 +00:00
|
|
|
|
|
2004-08-25 11:43:49 +00:00
|
|
|
|
/* Do what? */
|
2015-07-17 17:24:28 +00:00
|
|
|
|
for (auto i = opFlags.begin(); i != opFlags.end(); ++i)
|
2009-11-23 17:23:12 +00:00
|
|
|
|
if (*i == "--print-roots") printRoots = true;
|
2008-06-18 09:34:17 +00:00
|
|
|
|
else if (*i == "--print-live") options.action = GCOptions::gcReturnLive;
|
|
|
|
|
else if (*i == "--print-dead") options.action = GCOptions::gcReturnDead;
|
|
|
|
|
else if (*i == "--delete") options.action = GCOptions::gcDeleteDead;
|
2009-03-26 11:02:07 +00:00
|
|
|
|
else if (*i == "--max-freed") {
|
2014-02-17 13:48:50 +00:00
|
|
|
|
long long maxFreed = getIntArg<long long>(*i, i, opFlags.end(), true);
|
2012-08-01 23:14:30 +00:00
|
|
|
|
options.maxFreed = maxFreed >= 0 ? maxFreed : 0;
|
2009-03-26 11:02:07 +00:00
|
|
|
|
}
|
2014-08-20 15:00:17 +00:00
|
|
|
|
else throw UsageError(format("bad sub-operation ‘%1%’ in GC") % *i);
|
2005-01-27 15:21:29 +00:00
|
|
|
|
|
2008-09-17 14:52:35 +00:00
|
|
|
|
if (!opArgs.empty()) throw UsageError("no arguments expected");
|
2004-08-25 11:43:49 +00:00
|
|
|
|
|
2009-11-23 17:23:12 +00:00
|
|
|
|
if (printRoots) {
|
|
|
|
|
Roots roots = store->findRoots();
|
2015-07-17 17:24:28 +00:00
|
|
|
|
for (auto & i : roots)
|
|
|
|
|
cout << i.first << " -> " << i.second << std::endl;
|
2009-11-23 17:23:12 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else {
|
|
|
|
|
PrintFreed freed(options.action == GCOptions::gcDeleteDead, results);
|
|
|
|
|
store->collectGarbage(options, results);
|
|
|
|
|
|
|
|
|
|
if (options.action != GCOptions::gcDeleteDead)
|
2015-07-17 17:24:28 +00:00
|
|
|
|
for (auto & i : results.paths)
|
|
|
|
|
cout << i << std::endl;
|
2009-11-23 17:23:12 +00:00
|
|
|
|
}
|
2004-08-25 11:43:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2005-12-23 21:08:42 +00:00
|
|
|
|
/* Remove paths from the Nix store if possible (i.e., if they do not
|
|
|
|
|
have any remaining referrers and are not reachable from any GC
|
|
|
|
|
roots). */
|
|
|
|
|
static void opDelete(Strings opFlags, Strings opArgs)
|
|
|
|
|
{
|
2008-06-18 09:34:17 +00:00
|
|
|
|
GCOptions options;
|
|
|
|
|
options.action = GCOptions::gcDeleteSpecific;
|
2012-07-30 23:55:41 +00:00
|
|
|
|
|
2015-07-17 17:24:28 +00:00
|
|
|
|
for (auto & i : opFlags)
|
|
|
|
|
if (i == "--ignore-liveness") options.ignoreLiveness = true;
|
|
|
|
|
else throw UsageError(format("unknown flag ‘%1%’") % i);
|
2005-12-23 21:08:42 +00:00
|
|
|
|
|
2015-07-17 17:24:28 +00:00
|
|
|
|
for (auto & i : opArgs)
|
|
|
|
|
options.pathsToDelete.insert(followLinksToStorePath(i));
|
2012-07-30 23:55:41 +00:00
|
|
|
|
|
2008-06-18 09:34:17 +00:00
|
|
|
|
GCResults results;
|
2008-09-17 10:02:55 +00:00
|
|
|
|
PrintFreed freed(true, results);
|
2008-06-18 09:34:17 +00:00
|
|
|
|
store->collectGarbage(options, results);
|
2005-12-23 21:08:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-07-08 10:00:46 +00:00
|
|
|
|
/* Dump a path as a Nix archive. The archive is written to standard
|
2003-06-23 14:08:34 +00:00
|
|
|
|
output. */
|
2003-06-18 14:34:43 +00:00
|
|
|
|
static void opDump(Strings opFlags, Strings opArgs)
|
|
|
|
|
{
|
|
|
|
|
if (!opFlags.empty()) throw UsageError("unknown flag");
|
|
|
|
|
if (opArgs.size() != 1) throw UsageError("only one argument allowed");
|
|
|
|
|
|
2006-11-30 19:19:59 +00:00
|
|
|
|
FdSink sink(STDOUT_FILENO);
|
2003-10-08 15:06:59 +00:00
|
|
|
|
string path = *opArgs.begin();
|
2003-06-23 14:08:34 +00:00
|
|
|
|
dumpPath(path, sink);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-10-05 22:57:07 +00:00
|
|
|
|
/* Restore a value from a Nix archive. The archive is read from
|
2003-06-23 14:08:34 +00:00
|
|
|
|
standard input. */
|
|
|
|
|
static void opRestore(Strings opFlags, Strings opArgs)
|
|
|
|
|
{
|
|
|
|
|
if (!opFlags.empty()) throw UsageError("unknown flag");
|
|
|
|
|
if (opArgs.size() != 1) throw UsageError("only one argument allowed");
|
|
|
|
|
|
2006-11-30 19:19:59 +00:00
|
|
|
|
FdSource source(STDIN_FILENO);
|
2003-06-23 14:08:34 +00:00
|
|
|
|
restorePath(*opArgs.begin(), source);
|
2003-06-18 14:34:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2007-02-20 23:17:20 +00:00
|
|
|
|
static void opExport(Strings opFlags, Strings opArgs)
|
|
|
|
|
{
|
2015-07-17 17:24:28 +00:00
|
|
|
|
for (auto & i : opFlags)
|
2016-05-03 13:11:14 +00:00
|
|
|
|
throw UsageError(format("unknown flag ‘%1%’") % i);
|
2007-02-21 23:00:31 +00:00
|
|
|
|
|
2007-02-20 23:17:20 +00:00
|
|
|
|
FdSink sink(STDOUT_FILENO);
|
2016-05-04 11:36:54 +00:00
|
|
|
|
store->exportPaths(opArgs, sink);
|
2007-02-20 23:17:20 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2007-02-21 15:45:32 +00:00
|
|
|
|
static void opImport(Strings opFlags, Strings opArgs)
|
|
|
|
|
{
|
2015-07-17 17:24:28 +00:00
|
|
|
|
for (auto & i : opFlags)
|
2016-05-03 13:11:14 +00:00
|
|
|
|
throw UsageError(format("unknown flag ‘%1%’") % i);
|
2012-07-30 23:55:41 +00:00
|
|
|
|
|
2007-02-21 15:45:32 +00:00
|
|
|
|
if (!opArgs.empty()) throw UsageError("no arguments expected");
|
2012-07-30 23:55:41 +00:00
|
|
|
|
|
2007-02-21 15:45:32 +00:00
|
|
|
|
FdSource source(STDIN_FILENO);
|
2016-05-03 13:11:14 +00:00
|
|
|
|
Paths paths = store->importPaths(source, 0);
|
2011-12-16 22:31:25 +00:00
|
|
|
|
|
2015-07-17 17:24:28 +00:00
|
|
|
|
for (auto & i : paths)
|
|
|
|
|
cout << format("%1%\n") % i << std::flush;
|
2007-02-21 15:45:32 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-06-17 21:12:58 +00:00
|
|
|
|
/* Initialise the Nix databases. */
|
|
|
|
|
static void opInit(Strings opFlags, Strings opArgs)
|
2003-05-26 09:44:18 +00:00
|
|
|
|
{
|
2003-06-17 21:12:58 +00:00
|
|
|
|
if (!opFlags.empty()) throw UsageError("unknown flag");
|
|
|
|
|
if (!opArgs.empty())
|
2004-06-20 19:17:54 +00:00
|
|
|
|
throw UsageError("no arguments expected");
|
2006-11-30 17:43:04 +00:00
|
|
|
|
/* Doesn't do anything right now; database tables are initialised
|
|
|
|
|
automatically. */
|
2003-03-21 15:53:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-07-17 12:27:55 +00:00
|
|
|
|
/* Verify the consistency of the Nix environment. */
|
|
|
|
|
static void opVerify(Strings opFlags, Strings opArgs)
|
|
|
|
|
{
|
2005-02-08 13:48:53 +00:00
|
|
|
|
if (!opArgs.empty())
|
|
|
|
|
throw UsageError("no arguments expected");
|
|
|
|
|
|
|
|
|
|
bool checkContents = false;
|
2012-10-02 19:04:59 +00:00
|
|
|
|
bool repair = false;
|
2012-07-30 23:55:41 +00:00
|
|
|
|
|
2015-07-17 17:24:28 +00:00
|
|
|
|
for (auto & i : opFlags)
|
|
|
|
|
if (i == "--check-contents") checkContents = true;
|
|
|
|
|
else if (i == "--repair") repair = true;
|
|
|
|
|
else throw UsageError(format("unknown flag ‘%1%’") % i);
|
2012-07-30 23:55:41 +00:00
|
|
|
|
|
2015-06-02 00:21:15 +00:00
|
|
|
|
if (store->verifyStore(checkContents, repair)) {
|
2012-10-02 19:04:59 +00:00
|
|
|
|
printMsg(lvlError, "warning: not all errors were fixed");
|
2014-08-13 01:50:44 +00:00
|
|
|
|
throw Exit(1);
|
2012-10-02 19:04:59 +00:00
|
|
|
|
}
|
2003-07-17 12:27:55 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2011-09-06 12:06:30 +00:00
|
|
|
|
/* Verify whether the contents of the given store path have not changed. */
|
|
|
|
|
static void opVerifyPath(Strings opFlags, Strings opArgs)
|
|
|
|
|
{
|
|
|
|
|
if (!opFlags.empty())
|
|
|
|
|
throw UsageError("no flags expected");
|
|
|
|
|
|
2014-08-13 01:50:44 +00:00
|
|
|
|
int status = 0;
|
|
|
|
|
|
2015-07-17 17:24:28 +00:00
|
|
|
|
for (auto & i : opArgs) {
|
|
|
|
|
Path path = followLinksToStorePath(i);
|
2014-08-20 15:00:17 +00:00
|
|
|
|
printMsg(lvlTalkative, format("checking path ‘%1%’...") % path);
|
2016-04-19 16:50:15 +00:00
|
|
|
|
auto info = store->queryPathInfo(path);
|
|
|
|
|
HashSink sink(info->narHash.type);
|
2016-03-22 13:21:45 +00:00
|
|
|
|
store->narFromPath(path, sink);
|
2016-03-21 16:55:57 +00:00
|
|
|
|
auto current = sink.finish();
|
2016-04-19 16:50:15 +00:00
|
|
|
|
if (current.first != info->narHash) {
|
2011-09-06 12:06:30 +00:00
|
|
|
|
printMsg(lvlError,
|
2014-08-20 15:00:17 +00:00
|
|
|
|
format("path ‘%1%’ was modified! expected hash ‘%2%’, got ‘%3%’")
|
2016-04-19 16:50:15 +00:00
|
|
|
|
% path % printHash(info->narHash) % printHash(current.first));
|
2014-08-13 01:50:44 +00:00
|
|
|
|
status = 1;
|
2011-09-06 12:06:30 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2014-08-13 01:50:44 +00:00
|
|
|
|
|
|
|
|
|
throw Exit(status);
|
2011-09-06 12:06:30 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2012-10-02 18:08:59 +00:00
|
|
|
|
/* Repair the contents of the given path by redownloading it using a
|
|
|
|
|
substituter (if available). */
|
|
|
|
|
static void opRepairPath(Strings opFlags, Strings opArgs)
|
|
|
|
|
{
|
|
|
|
|
if (!opFlags.empty())
|
|
|
|
|
throw UsageError("no flags expected");
|
|
|
|
|
|
2015-07-17 17:24:28 +00:00
|
|
|
|
for (auto & i : opArgs) {
|
|
|
|
|
Path path = followLinksToStorePath(i);
|
2016-02-04 14:10:47 +00:00
|
|
|
|
ensureLocalStore()->repairPath(path);
|
2012-10-02 18:08:59 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2007-10-09 22:14:27 +00:00
|
|
|
|
/* Optimise the disk space usage of the Nix store by hard-linking
|
|
|
|
|
files with the same contents. */
|
|
|
|
|
static void opOptimise(Strings opFlags, Strings opArgs)
|
|
|
|
|
{
|
2012-07-23 16:08:34 +00:00
|
|
|
|
if (!opArgs.empty() || !opFlags.empty())
|
2007-10-09 22:14:27 +00:00
|
|
|
|
throw UsageError("no arguments expected");
|
|
|
|
|
|
2014-09-01 20:21:42 +00:00
|
|
|
|
store->optimiseStore();
|
2007-10-09 22:14:27 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-02-14 10:48:42 +00:00
|
|
|
|
/* Serve the nix store in a way usable by a restricted ssh user. */
|
2014-02-06 16:52:03 +00:00
|
|
|
|
static void opServe(Strings opFlags, Strings opArgs)
|
|
|
|
|
{
|
2014-07-10 09:51:22 +00:00
|
|
|
|
bool writeAllowed = false;
|
2015-07-17 17:24:28 +00:00
|
|
|
|
for (auto & i : opFlags)
|
|
|
|
|
if (i == "--write") writeAllowed = true;
|
|
|
|
|
else throw UsageError(format("unknown flag ‘%1%’") % i);
|
2014-07-10 09:51:22 +00:00
|
|
|
|
|
|
|
|
|
if (!opArgs.empty()) throw UsageError("no arguments expected");
|
2014-02-10 11:52:48 +00:00
|
|
|
|
|
2014-02-06 16:52:03 +00:00
|
|
|
|
FdSource in(STDIN_FILENO);
|
|
|
|
|
FdSink out(STDOUT_FILENO);
|
|
|
|
|
|
2014-02-10 12:43:13 +00:00
|
|
|
|
/* Exchange the greeting. */
|
|
|
|
|
unsigned int magic = readInt(in);
|
|
|
|
|
if (magic != SERVE_MAGIC_1) throw Error("protocol mismatch");
|
2015-07-19 23:16:16 +00:00
|
|
|
|
out << SERVE_MAGIC_2 << SERVE_PROTOCOL_VERSION;
|
2014-02-10 12:43:13 +00:00
|
|
|
|
out.flush();
|
2015-10-06 15:33:30 +00:00
|
|
|
|
unsigned int clientVersion = readInt(in);
|
2014-02-10 12:43:13 +00:00
|
|
|
|
|
Allow remote builds without sending the derivation closure
Previously, to build a derivation remotely, we had to copy the entire
closure of the .drv file to the remote machine, even though we only
need the top-level derivation. This is very wasteful: the closure can
contain thousands of store paths, and in some Hydra use cases, include
source paths that are very large (e.g. Git/Mercurial checkouts).
So now there is a new operation, StoreAPI::buildDerivation(), that
performs a build from an in-memory representation of a derivation
(BasicDerivation) rather than from a on-disk .drv file. The only files
that need to be in the Nix store are the sources of the derivation
(drv.inputSrcs), and the needed output paths of the dependencies (as
described by drv.inputDrvs). "nix-store --serve" exposes this
interface.
Note that this is a privileged operation, because you can construct a
derivation that builds any store path whatsoever. Fixing this will
require changing the hashing scheme (i.e., the output paths should be
computed from the other fields in BasicDerivation, allowing them to be
verified without access to other derivations). However, this would be
quite nice because it would allow .drv-free building (e.g. "nix-env
-i" wouldn't have to write any .drv files to disk).
Fixes #173.
2015-07-17 15:57:40 +00:00
|
|
|
|
auto getBuildSettings = [&]() {
|
|
|
|
|
// FIXME: changing options here doesn't work if we're
|
|
|
|
|
// building through the daemon.
|
|
|
|
|
verbosity = lvlError;
|
|
|
|
|
settings.keepLog = false;
|
|
|
|
|
settings.useSubstitutes = false;
|
|
|
|
|
settings.maxSilentTime = readInt(in);
|
|
|
|
|
settings.buildTimeout = readInt(in);
|
2015-10-06 15:33:30 +00:00
|
|
|
|
if (GET_PROTOCOL_MINOR(clientVersion) >= 2)
|
|
|
|
|
settings.maxLogSize = readInt(in);
|
Allow remote builds without sending the derivation closure
Previously, to build a derivation remotely, we had to copy the entire
closure of the .drv file to the remote machine, even though we only
need the top-level derivation. This is very wasteful: the closure can
contain thousands of store paths, and in some Hydra use cases, include
source paths that are very large (e.g. Git/Mercurial checkouts).
So now there is a new operation, StoreAPI::buildDerivation(), that
performs a build from an in-memory representation of a derivation
(BasicDerivation) rather than from a on-disk .drv file. The only files
that need to be in the Nix store are the sources of the derivation
(drv.inputSrcs), and the needed output paths of the dependencies (as
described by drv.inputDrvs). "nix-store --serve" exposes this
interface.
Note that this is a privileged operation, because you can construct a
derivation that builds any store path whatsoever. Fixing this will
require changing the hashing scheme (i.e., the output paths should be
computed from the other fields in BasicDerivation, allowing them to be
verified without access to other derivations). However, this would be
quite nice because it would allow .drv-free building (e.g. "nix-env
-i" wouldn't have to write any .drv files to disk).
Fixes #173.
2015-07-17 15:57:40 +00:00
|
|
|
|
};
|
|
|
|
|
|
2014-07-10 09:51:22 +00:00
|
|
|
|
while (true) {
|
|
|
|
|
ServeCommand cmd;
|
|
|
|
|
try {
|
|
|
|
|
cmd = (ServeCommand) readInt(in);
|
|
|
|
|
} catch (EndOfFile & e) {
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch (cmd) {
|
2014-07-10 18:43:04 +00:00
|
|
|
|
|
2014-07-10 09:51:22 +00:00
|
|
|
|
case cmdQueryValidPaths: {
|
|
|
|
|
bool lock = readInt(in);
|
2014-07-10 18:43:04 +00:00
|
|
|
|
bool substitute = readInt(in);
|
2014-07-10 09:51:22 +00:00
|
|
|
|
PathSet paths = readStorePaths<PathSet>(in);
|
|
|
|
|
if (lock && writeAllowed)
|
|
|
|
|
for (auto & path : paths)
|
|
|
|
|
store->addTempRoot(path);
|
2014-07-10 18:43:04 +00:00
|
|
|
|
|
|
|
|
|
/* If requested, substitute missing paths. This
|
|
|
|
|
implements nix-copy-closure's --use-substitutes
|
|
|
|
|
flag. */
|
|
|
|
|
if (substitute && writeAllowed) {
|
|
|
|
|
/* Filter out .drv files (we don't want to build anything). */
|
|
|
|
|
PathSet paths2;
|
|
|
|
|
for (auto & path : paths)
|
|
|
|
|
if (!isDerivation(path)) paths2.insert(path);
|
|
|
|
|
unsigned long long downloadSize, narSize;
|
|
|
|
|
PathSet willBuild, willSubstitute, unknown;
|
Eliminate the "store" global variable
Also, move a few free-standing functions into StoreAPI and Derivation.
Also, introduce a non-nullable smart pointer, ref<T>, which is just a
wrapper around std::shared_ptr ensuring that the pointer is never
null. (For reference-counted values, this is better than passing a
"T&", because the latter doesn't maintain the refcount. Usually, the
caller will have a shared_ptr keeping the value alive, but that's not
always the case, e.g., when passing a reference to a std::thread via
std::bind.)
2016-02-04 13:28:26 +00:00
|
|
|
|
store->queryMissing(PathSet(paths2.begin(), paths2.end()),
|
2014-07-10 18:43:04 +00:00
|
|
|
|
willBuild, willSubstitute, unknown, downloadSize, narSize);
|
|
|
|
|
/* FIXME: should use ensurePath(), but it only
|
|
|
|
|
does one path at a time. */
|
|
|
|
|
if (!willSubstitute.empty())
|
|
|
|
|
try {
|
|
|
|
|
store->buildPaths(willSubstitute);
|
|
|
|
|
} catch (Error & e) {
|
|
|
|
|
printMsg(lvlError, format("warning: %1%") % e.msg());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-19 23:16:16 +00:00
|
|
|
|
out << store->queryValidPaths(paths);
|
2014-07-10 09:51:22 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
2014-07-10 18:43:04 +00:00
|
|
|
|
|
2014-07-10 09:51:22 +00:00
|
|
|
|
case cmdQueryPathInfos: {
|
|
|
|
|
PathSet paths = readStorePaths<PathSet>(in);
|
|
|
|
|
// !!! Maybe we want a queryPathInfos?
|
2015-07-17 17:24:28 +00:00
|
|
|
|
for (auto & i : paths) {
|
2016-04-19 16:50:15 +00:00
|
|
|
|
try {
|
|
|
|
|
auto info = store->queryPathInfo(i);
|
|
|
|
|
out << info->path << info->deriver << info->references;
|
|
|
|
|
// !!! Maybe we want compression?
|
|
|
|
|
out << info->narSize // downloadSize
|
|
|
|
|
<< info->narSize;
|
|
|
|
|
} catch (InvalidPath &) {
|
|
|
|
|
}
|
2014-02-10 12:43:13 +00:00
|
|
|
|
}
|
2015-07-19 23:16:16 +00:00
|
|
|
|
out << "";
|
2014-07-10 09:51:22 +00:00
|
|
|
|
break;
|
2014-02-10 12:43:13 +00:00
|
|
|
|
}
|
2014-07-10 18:43:04 +00:00
|
|
|
|
|
2014-07-10 09:51:22 +00:00
|
|
|
|
case cmdDumpStorePath:
|
|
|
|
|
dumpPath(readStorePath(in), out);
|
|
|
|
|
break;
|
2014-07-10 18:43:04 +00:00
|
|
|
|
|
2014-07-10 12:15:12 +00:00
|
|
|
|
case cmdImportPaths: {
|
2014-07-11 14:02:19 +00:00
|
|
|
|
if (!writeAllowed) throw Error("importing paths is not allowed");
|
2016-05-03 13:11:14 +00:00
|
|
|
|
store->importPaths(in, 0);
|
2015-07-19 23:16:16 +00:00
|
|
|
|
out << 1; // indicate success
|
2014-07-10 09:51:22 +00:00
|
|
|
|
break;
|
2014-07-10 12:15:12 +00:00
|
|
|
|
}
|
2014-07-10 18:43:04 +00:00
|
|
|
|
|
2014-07-11 14:02:19 +00:00
|
|
|
|
case cmdExportPaths: {
|
2016-05-03 13:11:14 +00:00
|
|
|
|
readInt(in); // obsolete
|
Eliminate the "store" global variable
Also, move a few free-standing functions into StoreAPI and Derivation.
Also, introduce a non-nullable smart pointer, ref<T>, which is just a
wrapper around std::shared_ptr ensuring that the pointer is never
null. (For reference-counted values, this is better than passing a
"T&", because the latter doesn't maintain the refcount. Usually, the
caller will have a shared_ptr keeping the value alive, but that's not
always the case, e.g., when passing a reference to a std::thread via
std::bind.)
2016-02-04 13:28:26 +00:00
|
|
|
|
Paths sorted = store->topoSortPaths(readStorePaths<PathSet>(in));
|
2014-07-14 10:19:27 +00:00
|
|
|
|
reverse(sorted.begin(), sorted.end());
|
2016-05-03 13:11:14 +00:00
|
|
|
|
store->exportPaths(sorted, out);
|
2014-07-11 14:02:19 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
Allow remote builds without sending the derivation closure
Previously, to build a derivation remotely, we had to copy the entire
closure of the .drv file to the remote machine, even though we only
need the top-level derivation. This is very wasteful: the closure can
contain thousands of store paths, and in some Hydra use cases, include
source paths that are very large (e.g. Git/Mercurial checkouts).
So now there is a new operation, StoreAPI::buildDerivation(), that
performs a build from an in-memory representation of a derivation
(BasicDerivation) rather than from a on-disk .drv file. The only files
that need to be in the Nix store are the sources of the derivation
(drv.inputSrcs), and the needed output paths of the dependencies (as
described by drv.inputDrvs). "nix-store --serve" exposes this
interface.
Note that this is a privileged operation, because you can construct a
derivation that builds any store path whatsoever. Fixing this will
require changing the hashing scheme (i.e., the output paths should be
computed from the other fields in BasicDerivation, allowing them to be
verified without access to other derivations). However, this would be
quite nice because it would allow .drv-free building (e.g. "nix-env
-i" wouldn't have to write any .drv files to disk).
Fixes #173.
2015-07-17 15:57:40 +00:00
|
|
|
|
case cmdBuildPaths: { /* Used by build-remote.pl. */
|
2014-07-24 09:52:52 +00:00
|
|
|
|
|
2014-07-11 14:02:19 +00:00
|
|
|
|
if (!writeAllowed) throw Error("building paths is not allowed");
|
|
|
|
|
PathSet paths = readStorePaths<PathSet>(in);
|
|
|
|
|
|
Allow remote builds without sending the derivation closure
Previously, to build a derivation remotely, we had to copy the entire
closure of the .drv file to the remote machine, even though we only
need the top-level derivation. This is very wasteful: the closure can
contain thousands of store paths, and in some Hydra use cases, include
source paths that are very large (e.g. Git/Mercurial checkouts).
So now there is a new operation, StoreAPI::buildDerivation(), that
performs a build from an in-memory representation of a derivation
(BasicDerivation) rather than from a on-disk .drv file. The only files
that need to be in the Nix store are the sources of the derivation
(drv.inputSrcs), and the needed output paths of the dependencies (as
described by drv.inputDrvs). "nix-store --serve" exposes this
interface.
Note that this is a privileged operation, because you can construct a
derivation that builds any store path whatsoever. Fixing this will
require changing the hashing scheme (i.e., the output paths should be
computed from the other fields in BasicDerivation, allowing them to be
verified without access to other derivations). However, this would be
quite nice because it would allow .drv-free building (e.g. "nix-env
-i" wouldn't have to write any .drv files to disk).
Fixes #173.
2015-07-17 15:57:40 +00:00
|
|
|
|
getBuildSettings();
|
2014-07-11 14:02:19 +00:00
|
|
|
|
|
|
|
|
|
try {
|
2014-07-24 09:52:52 +00:00
|
|
|
|
MonitorFdHup monitor(in.fd);
|
2014-07-11 14:02:19 +00:00
|
|
|
|
store->buildPaths(paths);
|
2015-07-19 23:16:16 +00:00
|
|
|
|
out << 0;
|
2014-07-11 14:02:19 +00:00
|
|
|
|
} catch (Error & e) {
|
2014-07-24 10:43:59 +00:00
|
|
|
|
assert(e.status);
|
2015-07-19 23:16:16 +00:00
|
|
|
|
out << e.status << e.msg();
|
2014-07-11 14:02:19 +00:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
Allow remote builds without sending the derivation closure
Previously, to build a derivation remotely, we had to copy the entire
closure of the .drv file to the remote machine, even though we only
need the top-level derivation. This is very wasteful: the closure can
contain thousands of store paths, and in some Hydra use cases, include
source paths that are very large (e.g. Git/Mercurial checkouts).
So now there is a new operation, StoreAPI::buildDerivation(), that
performs a build from an in-memory representation of a derivation
(BasicDerivation) rather than from a on-disk .drv file. The only files
that need to be in the Nix store are the sources of the derivation
(drv.inputSrcs), and the needed output paths of the dependencies (as
described by drv.inputDrvs). "nix-store --serve" exposes this
interface.
Note that this is a privileged operation, because you can construct a
derivation that builds any store path whatsoever. Fixing this will
require changing the hashing scheme (i.e., the output paths should be
computed from the other fields in BasicDerivation, allowing them to be
verified without access to other derivations). However, this would be
quite nice because it would allow .drv-free building (e.g. "nix-env
-i" wouldn't have to write any .drv files to disk).
Fixes #173.
2015-07-17 15:57:40 +00:00
|
|
|
|
case cmdBuildDerivation: { /* Used by hydra-queue-runner. */
|
|
|
|
|
|
|
|
|
|
if (!writeAllowed) throw Error("building paths is not allowed");
|
|
|
|
|
|
|
|
|
|
Path drvPath = readStorePath(in); // informational only
|
|
|
|
|
BasicDerivation drv;
|
|
|
|
|
in >> drv;
|
|
|
|
|
|
|
|
|
|
getBuildSettings();
|
|
|
|
|
|
|
|
|
|
MonitorFdHup monitor(in.fd);
|
|
|
|
|
auto status = store->buildDerivation(drvPath, drv);
|
|
|
|
|
|
2015-07-19 23:16:16 +00:00
|
|
|
|
out << status.status << status.errorMsg;
|
Allow remote builds without sending the derivation closure
Previously, to build a derivation remotely, we had to copy the entire
closure of the .drv file to the remote machine, even though we only
need the top-level derivation. This is very wasteful: the closure can
contain thousands of store paths, and in some Hydra use cases, include
source paths that are very large (e.g. Git/Mercurial checkouts).
So now there is a new operation, StoreAPI::buildDerivation(), that
performs a build from an in-memory representation of a derivation
(BasicDerivation) rather than from a on-disk .drv file. The only files
that need to be in the Nix store are the sources of the derivation
(drv.inputSrcs), and the needed output paths of the dependencies (as
described by drv.inputDrvs). "nix-store --serve" exposes this
interface.
Note that this is a privileged operation, because you can construct a
derivation that builds any store path whatsoever. Fixing this will
require changing the hashing scheme (i.e., the output paths should be
computed from the other fields in BasicDerivation, allowing them to be
verified without access to other derivations). However, this would be
quite nice because it would allow .drv-free building (e.g. "nix-env
-i" wouldn't have to write any .drv files to disk).
Fixes #173.
2015-07-17 15:57:40 +00:00
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2014-07-24 14:00:29 +00:00
|
|
|
|
case cmdQueryClosure: {
|
|
|
|
|
bool includeOutputs = readInt(in);
|
|
|
|
|
PathSet paths = readStorePaths<PathSet>(in);
|
|
|
|
|
PathSet closure;
|
|
|
|
|
for (auto & i : paths)
|
Eliminate the "store" global variable
Also, move a few free-standing functions into StoreAPI and Derivation.
Also, introduce a non-nullable smart pointer, ref<T>, which is just a
wrapper around std::shared_ptr ensuring that the pointer is never
null. (For reference-counted values, this is better than passing a
"T&", because the latter doesn't maintain the refcount. Usually, the
caller will have a shared_ptr keeping the value alive, but that's not
always the case, e.g., when passing a reference to a std::thread via
std::bind.)
2016-02-04 13:28:26 +00:00
|
|
|
|
store->computeFSClosure(i, closure, false, includeOutputs);
|
2015-07-19 23:16:16 +00:00
|
|
|
|
out << closure;
|
2014-07-24 14:00:29 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2014-07-10 09:51:22 +00:00
|
|
|
|
default:
|
|
|
|
|
throw Error(format("unknown serve command %1%") % cmd);
|
|
|
|
|
}
|
2014-07-11 14:02:19 +00:00
|
|
|
|
|
|
|
|
|
out.flush();
|
2014-02-10 12:43:13 +00:00
|
|
|
|
}
|
2014-02-06 16:52:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2015-02-04 15:43:32 +00:00
|
|
|
|
static void opGenerateBinaryCacheKey(Strings opFlags, Strings opArgs)
|
|
|
|
|
{
|
2015-07-17 17:24:28 +00:00
|
|
|
|
for (auto & i : opFlags)
|
|
|
|
|
throw UsageError(format("unknown flag ‘%1%’") % i);
|
2015-02-04 15:43:32 +00:00
|
|
|
|
|
2015-02-18 10:19:44 +00:00
|
|
|
|
if (opArgs.size() != 3) throw UsageError("three arguments expected");
|
|
|
|
|
auto i = opArgs.begin();
|
|
|
|
|
string keyName = *i++;
|
|
|
|
|
string secretKeyFile = *i++;
|
|
|
|
|
string publicKeyFile = *i++;
|
2015-02-04 15:43:32 +00:00
|
|
|
|
|
2015-02-10 10:54:06 +00:00
|
|
|
|
#if HAVE_SODIUM
|
2015-12-22 16:14:04 +00:00
|
|
|
|
if (sodium_init() == -1)
|
|
|
|
|
throw Error("could not initialise libsodium");
|
2015-02-04 15:43:32 +00:00
|
|
|
|
|
|
|
|
|
unsigned char pk[crypto_sign_PUBLICKEYBYTES];
|
|
|
|
|
unsigned char sk[crypto_sign_SECRETKEYBYTES];
|
|
|
|
|
if (crypto_sign_keypair(pk, sk) != 0)
|
|
|
|
|
throw Error("key generation failed");
|
|
|
|
|
|
2015-02-18 10:19:44 +00:00
|
|
|
|
writeFile(publicKeyFile, keyName + ":" + base64Encode(string((char *) pk, crypto_sign_PUBLICKEYBYTES)));
|
|
|
|
|
umask(0077);
|
|
|
|
|
writeFile(secretKeyFile, keyName + ":" + base64Encode(string((char *) sk, crypto_sign_SECRETKEYBYTES)));
|
2015-02-10 10:54:06 +00:00
|
|
|
|
#else
|
|
|
|
|
throw Error("Nix was not compiled with libsodium, required for signed binary cache support");
|
|
|
|
|
#endif
|
2015-02-04 15:43:32 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2015-07-23 12:19:49 +00:00
|
|
|
|
static void opVersion(Strings opFlags, Strings opArgs)
|
|
|
|
|
{
|
|
|
|
|
printVersion("nix-store");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-07-04 15:42:03 +00:00
|
|
|
|
/* Scan the arguments; find the operation, set global flags, put all
|
|
|
|
|
other flags in a list, and put all other arguments in another
|
|
|
|
|
list. */
|
2014-08-13 01:50:44 +00:00
|
|
|
|
int main(int argc, char * * argv)
|
2003-03-24 17:49:56 +00:00
|
|
|
|
{
|
2014-08-13 01:50:44 +00:00
|
|
|
|
return handleExceptions(argv[0], [&]() {
|
|
|
|
|
initNix();
|
|
|
|
|
|
|
|
|
|
Strings opFlags, opArgs;
|
|
|
|
|
Operation op = 0;
|
|
|
|
|
|
|
|
|
|
parseCmdLine(argc, argv, [&](Strings::iterator & arg, const Strings::iterator & end) {
|
|
|
|
|
Operation oldOp = op;
|
|
|
|
|
|
|
|
|
|
if (*arg == "--help")
|
|
|
|
|
showManPage("nix-store");
|
|
|
|
|
else if (*arg == "--version")
|
2015-07-23 12:19:49 +00:00
|
|
|
|
op = opVersion;
|
2014-08-13 01:50:44 +00:00
|
|
|
|
else if (*arg == "--realise" || *arg == "--realize" || *arg == "-r")
|
|
|
|
|
op = opRealise;
|
|
|
|
|
else if (*arg == "--add" || *arg == "-A")
|
|
|
|
|
op = opAdd;
|
|
|
|
|
else if (*arg == "--add-fixed")
|
|
|
|
|
op = opAddFixed;
|
|
|
|
|
else if (*arg == "--print-fixed-path")
|
|
|
|
|
op = opPrintFixedPath;
|
|
|
|
|
else if (*arg == "--delete")
|
|
|
|
|
op = opDelete;
|
|
|
|
|
else if (*arg == "--query" || *arg == "-q")
|
|
|
|
|
op = opQuery;
|
|
|
|
|
else if (*arg == "--print-env")
|
|
|
|
|
op = opPrintEnv;
|
|
|
|
|
else if (*arg == "--read-log" || *arg == "-l")
|
|
|
|
|
op = opReadLog;
|
|
|
|
|
else if (*arg == "--dump-db")
|
|
|
|
|
op = opDumpDB;
|
|
|
|
|
else if (*arg == "--load-db")
|
|
|
|
|
op = opLoadDB;
|
|
|
|
|
else if (*arg == "--register-validity")
|
|
|
|
|
op = opRegisterValidity;
|
|
|
|
|
else if (*arg == "--check-validity")
|
|
|
|
|
op = opCheckValidity;
|
|
|
|
|
else if (*arg == "--gc")
|
|
|
|
|
op = opGC;
|
|
|
|
|
else if (*arg == "--dump")
|
|
|
|
|
op = opDump;
|
|
|
|
|
else if (*arg == "--restore")
|
|
|
|
|
op = opRestore;
|
|
|
|
|
else if (*arg == "--export")
|
|
|
|
|
op = opExport;
|
|
|
|
|
else if (*arg == "--import")
|
|
|
|
|
op = opImport;
|
|
|
|
|
else if (*arg == "--init")
|
|
|
|
|
op = opInit;
|
|
|
|
|
else if (*arg == "--verify")
|
|
|
|
|
op = opVerify;
|
|
|
|
|
else if (*arg == "--verify-path")
|
|
|
|
|
op = opVerifyPath;
|
|
|
|
|
else if (*arg == "--repair-path")
|
|
|
|
|
op = opRepairPath;
|
|
|
|
|
else if (*arg == "--optimise" || *arg == "--optimize")
|
|
|
|
|
op = opOptimise;
|
2015-02-04 15:43:32 +00:00
|
|
|
|
else if (*arg == "--serve")
|
|
|
|
|
op = opServe;
|
|
|
|
|
else if (*arg == "--generate-binary-cache-key")
|
|
|
|
|
op = opGenerateBinaryCacheKey;
|
2014-08-13 01:50:44 +00:00
|
|
|
|
else if (*arg == "--add-root")
|
|
|
|
|
gcRoot = absPath(getArg(*arg, arg, end));
|
|
|
|
|
else if (*arg == "--indirect")
|
|
|
|
|
indirectRoot = true;
|
|
|
|
|
else if (*arg == "--no-output")
|
|
|
|
|
noOutput = true;
|
|
|
|
|
else if (*arg != "" && arg->at(0) == '-') {
|
|
|
|
|
opFlags.push_back(*arg);
|
|
|
|
|
if (*arg == "--max-freed" || *arg == "--max-links" || *arg == "--max-atime") /* !!! hack */
|
|
|
|
|
opFlags.push_back(getArg(*arg, arg, end));
|
2008-06-18 14:20:16 +00:00
|
|
|
|
}
|
2014-08-13 01:50:44 +00:00
|
|
|
|
else
|
|
|
|
|
opArgs.push_back(*arg);
|
2003-05-25 22:42:19 +00:00
|
|
|
|
|
2014-08-13 01:50:44 +00:00
|
|
|
|
if (oldOp && oldOp != op)
|
|
|
|
|
throw UsageError("only one operation may be specified");
|
2003-03-20 16:53:00 +00:00
|
|
|
|
|
2014-08-13 01:50:44 +00:00
|
|
|
|
return true;
|
|
|
|
|
});
|
2003-10-14 15:33:00 +00:00
|
|
|
|
|
2014-08-13 01:50:44 +00:00
|
|
|
|
if (!op) throw UsageError("no operation specified");
|
2003-03-14 16:43:14 +00:00
|
|
|
|
|
2014-08-13 01:50:44 +00:00
|
|
|
|
if (op != opDump && op != opRestore) /* !!! hack */
|
2016-02-24 16:33:53 +00:00
|
|
|
|
store = openStore();
|
2003-03-24 17:49:56 +00:00
|
|
|
|
|
2014-08-13 01:50:44 +00:00
|
|
|
|
op(opFlags, opArgs);
|
|
|
|
|
});
|
|
|
|
|
}
|