2016-04-29 21:14:44 +03:00
|
|
|
|
#include "primops.hh"
|
|
|
|
|
#include "eval-inline.hh"
|
|
|
|
|
#include "download.hh"
|
|
|
|
|
#include "store-api.hh"
|
2017-07-27 17:16:08 +03:00
|
|
|
|
#include "pathlocks.hh"
|
2018-08-17 17:29:32 +03:00
|
|
|
|
#include "hash.hh"
|
2016-04-29 21:14:44 +03:00
|
|
|
|
|
2017-07-27 18:15:09 +03:00
|
|
|
|
#include <sys/time.h>
|
|
|
|
|
|
2017-07-27 19:08:23 +03:00
|
|
|
|
#include <regex>
|
|
|
|
|
|
2017-10-30 12:49:03 +02:00
|
|
|
|
#include <nlohmann/json.hpp>
|
|
|
|
|
|
2017-10-30 10:57:38 +02:00
|
|
|
|
using namespace std::string_literals;
|
|
|
|
|
|
2016-04-29 21:14:44 +03:00
|
|
|
|
namespace nix {
|
|
|
|
|
|
2017-11-03 14:52:32 +02:00
|
|
|
|
struct GitInfo
|
|
|
|
|
{
|
|
|
|
|
Path storePath;
|
|
|
|
|
std::string rev;
|
|
|
|
|
std::string shortRev;
|
|
|
|
|
uint64_t revCount = 0;
|
|
|
|
|
};
|
|
|
|
|
|
2018-01-16 19:50:38 +02:00
|
|
|
|
std::regex revRegex("^[0-9a-fA-F]{40}$");
|
|
|
|
|
|
2017-10-30 12:49:03 +02:00
|
|
|
|
GitInfo exportGit(ref<Store> store, const std::string & uri,
|
2017-12-22 22:18:29 +02:00
|
|
|
|
std::experimental::optional<std::string> ref, std::string rev,
|
2017-10-30 10:57:38 +02:00
|
|
|
|
const std::string & name)
|
2016-04-29 22:04:40 +03:00
|
|
|
|
{
|
2018-03-27 20:02:22 +03:00
|
|
|
|
if (evalSettings.pureEval && rev == "")
|
2018-01-16 19:50:38 +02:00
|
|
|
|
throw Error("in pure evaluation mode, 'fetchGit' requires a Git revision");
|
|
|
|
|
|
2017-10-30 20:57:40 +02:00
|
|
|
|
if (!ref && rev == "" && hasPrefix(uri, "/") && pathExists(uri + "/.git")) {
|
|
|
|
|
|
|
|
|
|
bool clean = true;
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
runProgram("git", true, { "-C", uri, "diff-index", "--quiet", "HEAD", "--" });
|
|
|
|
|
} catch (ExecError e) {
|
|
|
|
|
if (!WIFEXITED(e.status) || WEXITSTATUS(e.status) != 1) throw;
|
|
|
|
|
clean = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!clean) {
|
|
|
|
|
|
|
|
|
|
/* This is an unclean working tree. So copy all tracked
|
|
|
|
|
files. */
|
|
|
|
|
|
|
|
|
|
GitInfo gitInfo;
|
|
|
|
|
gitInfo.rev = "0000000000000000000000000000000000000000";
|
|
|
|
|
gitInfo.shortRev = std::string(gitInfo.rev, 0, 7);
|
|
|
|
|
|
|
|
|
|
auto files = tokenizeString<std::set<std::string>>(
|
|
|
|
|
runProgram("git", true, { "-C", uri, "ls-files", "-z" }), "\0"s);
|
|
|
|
|
|
|
|
|
|
PathFilter filter = [&](const Path & p) -> bool {
|
|
|
|
|
assert(hasPrefix(p, uri));
|
|
|
|
|
std::string file(p, uri.size() + 1);
|
2017-11-03 14:48:02 +02:00
|
|
|
|
|
|
|
|
|
auto st = lstat(p);
|
|
|
|
|
|
|
|
|
|
if (S_ISDIR(st.st_mode)) {
|
2017-11-21 20:12:47 +02:00
|
|
|
|
auto prefix = file + "/";
|
|
|
|
|
auto i = files.lower_bound(prefix);
|
|
|
|
|
return i != files.end() && hasPrefix(*i, prefix);
|
2017-11-03 14:48:02 +02:00
|
|
|
|
}
|
|
|
|
|
|
2017-10-30 20:57:40 +02:00
|
|
|
|
return files.count(file);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
gitInfo.storePath = store->addToStore("source", uri, true, htSHA256, filter);
|
|
|
|
|
|
|
|
|
|
return gitInfo;
|
|
|
|
|
}
|
2017-12-22 22:18:29 +02:00
|
|
|
|
|
|
|
|
|
// clean working tree, but no ref or rev specified. Use 'HEAD'.
|
|
|
|
|
rev = chomp(runProgram("git", true, { "-C", uri, "rev-parse", "HEAD" }));
|
|
|
|
|
ref = "HEAD"s;
|
2017-10-30 20:57:40 +02:00
|
|
|
|
}
|
|
|
|
|
|
2018-02-28 23:03:54 +02:00
|
|
|
|
if (!ref) ref = "HEAD"s;
|
2017-10-30 20:57:40 +02:00
|
|
|
|
|
2018-01-16 19:50:38 +02:00
|
|
|
|
if (rev != "" && !std::regex_match(rev, revRegex))
|
|
|
|
|
throw Error("invalid Git revision '%s'", rev);
|
2017-07-27 19:08:23 +03:00
|
|
|
|
|
2018-11-20 21:59:44 +02:00
|
|
|
|
deletePath(getCacheDir() + "/nix/git");
|
|
|
|
|
|
2018-08-17 17:29:32 +03:00
|
|
|
|
Path cacheDir = getCacheDir() + "/nix/gitv2/" + hashString(htSHA256, uri).to_string(Base32, false);
|
2016-04-29 22:04:40 +03:00
|
|
|
|
|
|
|
|
|
if (!pathExists(cacheDir)) {
|
2018-08-17 17:29:32 +03:00
|
|
|
|
createDirs(dirOf(cacheDir));
|
2016-04-29 22:04:40 +03:00
|
|
|
|
runProgram("git", true, { "init", "--bare", cacheDir });
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-20 21:59:44 +02:00
|
|
|
|
Path localRefFile = cacheDir + "/refs/heads/" + *ref;
|
2016-04-29 22:04:40 +03:00
|
|
|
|
|
2017-11-24 04:50:01 +02:00
|
|
|
|
bool doFetch;
|
2017-07-27 18:15:09 +03:00
|
|
|
|
time_t now = time(0);
|
2017-11-24 04:50:01 +02:00
|
|
|
|
/* If a rev was specified, we need to fetch if it's not in the
|
|
|
|
|
repo. */
|
|
|
|
|
if (rev != "") {
|
|
|
|
|
try {
|
|
|
|
|
runProgram("git", true, { "-C", cacheDir, "cat-file", "-e", rev });
|
|
|
|
|
doFetch = false;
|
|
|
|
|
} catch (ExecError & e) {
|
|
|
|
|
if (WIFEXITED(e.status)) {
|
|
|
|
|
doFetch = true;
|
|
|
|
|
} else {
|
|
|
|
|
throw;
|
|
|
|
|
}
|
2017-11-03 14:33:15 +02:00
|
|
|
|
}
|
2017-11-24 04:50:01 +02:00
|
|
|
|
} else {
|
|
|
|
|
/* If the local ref is older than ‘tarball-ttl’ seconds, do a
|
|
|
|
|
git fetch to update the local ref to the remote ref. */
|
|
|
|
|
struct stat st;
|
|
|
|
|
doFetch = stat(localRefFile.c_str(), &st) != 0 ||
|
2018-03-19 12:57:15 +02:00
|
|
|
|
st.st_mtime + settings.tarballTtl <= now;
|
2017-11-24 04:50:01 +02:00
|
|
|
|
}
|
|
|
|
|
if (doFetch)
|
|
|
|
|
{
|
|
|
|
|
Activity act(*logger, lvlTalkative, actUnknown, fmt("fetching Git repository '%s'", uri));
|
|
|
|
|
|
|
|
|
|
// FIXME: git stderr messes up our progress indicator, so
|
|
|
|
|
// we're using --quiet for now. Should process its stderr.
|
2018-11-20 21:59:44 +02:00
|
|
|
|
runProgram("git", true, { "-C", cacheDir, "fetch", "--quiet", "--force", "--", uri, fmt("%s:%s", *ref, *ref) });
|
2017-11-24 04:50:01 +02:00
|
|
|
|
|
|
|
|
|
struct timeval times[2];
|
|
|
|
|
times[0].tv_sec = now;
|
|
|
|
|
times[0].tv_usec = 0;
|
|
|
|
|
times[1].tv_sec = now;
|
|
|
|
|
times[1].tv_usec = 0;
|
|
|
|
|
|
|
|
|
|
utimes(localRefFile.c_str(), times);
|
2017-07-27 18:15:09 +03:00
|
|
|
|
}
|
2016-04-29 22:04:40 +03:00
|
|
|
|
|
2017-07-27 19:08:23 +03:00
|
|
|
|
// FIXME: check whether rev is an ancestor of ref.
|
2017-10-30 12:49:03 +02:00
|
|
|
|
GitInfo gitInfo;
|
|
|
|
|
gitInfo.rev = rev != "" ? rev : chomp(readFile(localRefFile));
|
|
|
|
|
gitInfo.shortRev = std::string(gitInfo.rev, 0, 7);
|
2016-04-29 22:04:40 +03:00
|
|
|
|
|
2018-03-13 11:28:23 +02:00
|
|
|
|
printTalkative("using revision %s of repo '%s'", gitInfo.rev, uri);
|
2017-07-27 17:16:08 +03:00
|
|
|
|
|
2017-10-30 12:49:03 +02:00
|
|
|
|
std::string storeLinkName = hashString(htSHA512, name + std::string("\0"s) + gitInfo.rev).to_string(Base32, false);
|
2017-10-30 10:57:38 +02:00
|
|
|
|
Path storeLink = cacheDir + "/" + storeLinkName + ".link";
|
2017-11-01 17:32:53 +02:00
|
|
|
|
PathLocks storeLinkLock({storeLink}, fmt("waiting for lock on '%1%'...", storeLink)); // FIXME: broken
|
2017-07-27 17:16:08 +03:00
|
|
|
|
|
2017-10-30 12:49:03 +02:00
|
|
|
|
try {
|
|
|
|
|
auto json = nlohmann::json::parse(readFile(storeLink));
|
|
|
|
|
|
2017-10-30 13:55:17 +02:00
|
|
|
|
assert(json["name"] == name && json["rev"] == gitInfo.rev);
|
2017-10-30 12:49:03 +02:00
|
|
|
|
|
|
|
|
|
gitInfo.storePath = json["storePath"];
|
|
|
|
|
|
|
|
|
|
if (store->isValidPath(gitInfo.storePath)) {
|
|
|
|
|
gitInfo.revCount = json["revCount"];
|
|
|
|
|
return gitInfo;
|
2017-07-27 17:16:08 +03:00
|
|
|
|
}
|
2017-10-30 12:49:03 +02:00
|
|
|
|
|
|
|
|
|
} catch (SysError & e) {
|
|
|
|
|
if (e.errNo != ENOENT) throw;
|
2017-07-27 17:16:08 +03:00
|
|
|
|
}
|
2016-04-29 22:04:40 +03:00
|
|
|
|
|
|
|
|
|
// FIXME: should pipe this, or find some better way to extract a
|
|
|
|
|
// revision.
|
2017-10-30 12:49:03 +02:00
|
|
|
|
auto tar = runProgram("git", true, { "-C", cacheDir, "archive", gitInfo.rev });
|
2016-04-29 22:04:40 +03:00
|
|
|
|
|
|
|
|
|
Path tmpDir = createTempDir();
|
|
|
|
|
AutoDelete delTmpDir(tmpDir, true);
|
|
|
|
|
|
|
|
|
|
runProgram("tar", true, { "x", "-C", tmpDir }, tar);
|
|
|
|
|
|
2017-10-30 12:49:03 +02:00
|
|
|
|
gitInfo.storePath = store->addToStore(name, tmpDir);
|
|
|
|
|
|
|
|
|
|
gitInfo.revCount = std::stoull(runProgram("git", true, { "-C", cacheDir, "rev-list", "--count", gitInfo.rev }));
|
|
|
|
|
|
|
|
|
|
nlohmann::json json;
|
|
|
|
|
json["storePath"] = gitInfo.storePath;
|
|
|
|
|
json["uri"] = uri;
|
|
|
|
|
json["name"] = name;
|
|
|
|
|
json["rev"] = gitInfo.rev;
|
|
|
|
|
json["revCount"] = gitInfo.revCount;
|
2017-07-27 17:16:08 +03:00
|
|
|
|
|
2017-10-30 12:49:03 +02:00
|
|
|
|
writeFile(storeLink, json.dump());
|
2017-07-27 17:16:08 +03:00
|
|
|
|
|
2017-10-30 12:49:03 +02:00
|
|
|
|
return gitInfo;
|
2016-04-29 22:04:40 +03:00
|
|
|
|
}
|
|
|
|
|
|
2017-10-30 11:25:08 +02:00
|
|
|
|
static void prim_fetchGit(EvalState & state, const Pos & pos, Value * * args, Value & v)
|
2016-04-29 21:14:44 +03:00
|
|
|
|
{
|
|
|
|
|
std::string url;
|
2017-10-30 20:57:40 +02:00
|
|
|
|
std::experimental::optional<std::string> ref;
|
2017-07-27 19:08:23 +03:00
|
|
|
|
std::string rev;
|
2017-10-30 10:57:38 +02:00
|
|
|
|
std::string name = "source";
|
2017-10-30 14:18:28 +02:00
|
|
|
|
PathSet context;
|
2016-04-29 21:14:44 +03:00
|
|
|
|
|
|
|
|
|
state.forceValue(*args[0]);
|
|
|
|
|
|
|
|
|
|
if (args[0]->type == tAttrs) {
|
|
|
|
|
|
|
|
|
|
state.forceAttrs(*args[0], pos);
|
|
|
|
|
|
|
|
|
|
for (auto & attr : *args[0]->attrs) {
|
2017-10-30 10:57:38 +02:00
|
|
|
|
string n(attr.name);
|
2017-10-30 14:18:28 +02:00
|
|
|
|
if (n == "url")
|
2017-03-02 12:46:28 +02:00
|
|
|
|
url = state.coerceToString(*attr.pos, *attr.value, context, false, false);
|
2017-10-30 10:57:38 +02:00
|
|
|
|
else if (n == "ref")
|
2017-07-27 19:08:23 +03:00
|
|
|
|
ref = state.forceStringNoCtx(*attr.value, *attr.pos);
|
2017-10-30 10:57:38 +02:00
|
|
|
|
else if (n == "rev")
|
2016-04-29 21:14:44 +03:00
|
|
|
|
rev = state.forceStringNoCtx(*attr.value, *attr.pos);
|
2017-10-30 10:57:38 +02:00
|
|
|
|
else if (n == "name")
|
|
|
|
|
name = state.forceStringNoCtx(*attr.value, *attr.pos);
|
2016-04-29 21:14:44 +03:00
|
|
|
|
else
|
2017-10-30 11:25:08 +02:00
|
|
|
|
throw EvalError("unsupported argument '%s' to 'fetchGit', at %s", attr.name, *attr.pos);
|
2016-04-29 21:14:44 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (url.empty())
|
2017-07-30 14:27:57 +03:00
|
|
|
|
throw EvalError(format("'url' argument required, at %1%") % pos);
|
2016-04-29 21:14:44 +03:00
|
|
|
|
|
|
|
|
|
} else
|
2017-10-30 14:18:28 +02:00
|
|
|
|
url = state.coerceToString(pos, *args[0], context, false, false);
|
|
|
|
|
|
2017-10-30 13:39:59 +02:00
|
|
|
|
// FIXME: git externals probably can be used to bypass the URI
|
|
|
|
|
// whitelist. Ah well.
|
|
|
|
|
state.checkURI(url);
|
|
|
|
|
|
2017-10-30 12:49:03 +02:00
|
|
|
|
auto gitInfo = exportGit(state.store, url, ref, rev, name);
|
2016-04-29 21:14:44 +03:00
|
|
|
|
|
2017-10-30 12:49:03 +02:00
|
|
|
|
state.mkAttrs(v, 8);
|
|
|
|
|
mkString(*state.allocAttr(v, state.sOutPath), gitInfo.storePath, PathSet({gitInfo.storePath}));
|
|
|
|
|
mkString(*state.allocAttr(v, state.symbols.create("rev")), gitInfo.rev);
|
|
|
|
|
mkString(*state.allocAttr(v, state.symbols.create("shortRev")), gitInfo.shortRev);
|
|
|
|
|
mkInt(*state.allocAttr(v, state.symbols.create("revCount")), gitInfo.revCount);
|
|
|
|
|
v.attrs->sort();
|
2018-01-16 19:50:38 +02:00
|
|
|
|
|
|
|
|
|
if (state.allowedPaths)
|
|
|
|
|
state.allowedPaths->insert(gitInfo.storePath);
|
2016-04-29 21:14:44 +03:00
|
|
|
|
}
|
|
|
|
|
|
2017-10-30 11:25:08 +02:00
|
|
|
|
static RegisterPrimOp r("fetchGit", 1, prim_fetchGit);
|
2016-04-29 21:14:44 +03:00
|
|
|
|
|
|
|
|
|
}
|