2018-11-29 18:18:36 +00:00
|
|
|
|
#include "fetchGit.hh"
|
2016-04-29 18:14:44 +00:00
|
|
|
|
#include "primops.hh"
|
|
|
|
|
#include "eval-inline.hh"
|
|
|
|
|
#include "download.hh"
|
|
|
|
|
#include "store-api.hh"
|
2017-07-27 14:16:08 +00:00
|
|
|
|
#include "pathlocks.hh"
|
2018-08-17 14:29:32 +00:00
|
|
|
|
#include "hash.hh"
|
2016-04-29 18:14:44 +00:00
|
|
|
|
|
2017-07-27 15:15:09 +00:00
|
|
|
|
#include <sys/time.h>
|
|
|
|
|
|
2017-07-27 16:08:23 +00:00
|
|
|
|
#include <regex>
|
|
|
|
|
|
2017-10-30 10:49:03 +00:00
|
|
|
|
#include <nlohmann/json.hpp>
|
|
|
|
|
|
2017-10-30 08:57:38 +00:00
|
|
|
|
using namespace std::string_literals;
|
|
|
|
|
|
2016-04-29 18:14:44 +00:00
|
|
|
|
namespace nix {
|
|
|
|
|
|
2019-02-12 17:23:11 +00:00
|
|
|
|
extern std::regex revRegex;
|
2018-01-16 17:50:38 +00:00
|
|
|
|
|
2019-04-19 12:06:27 +00:00
|
|
|
|
GitInfo exportGit(ref<Store> store, std::string uri,
|
2019-04-19 09:34:23 +00:00
|
|
|
|
std::optional<std::string> ref,
|
|
|
|
|
std::optional<Hash> rev,
|
2017-10-30 08:57:38 +00:00
|
|
|
|
const std::string & name)
|
2016-04-29 19:04:40 +00:00
|
|
|
|
{
|
2019-04-19 09:34:23 +00:00
|
|
|
|
assert(!rev || rev->type == htSHA1);
|
|
|
|
|
|
2019-04-19 12:06:27 +00:00
|
|
|
|
bool isLocal = hasPrefix(uri, "/") && pathExists(uri + "/.git");
|
|
|
|
|
|
|
|
|
|
// If this is a local directory (but not a file:// URI) and no ref
|
|
|
|
|
// or revision is given, then allow the use of an unclean working
|
|
|
|
|
// tree.
|
|
|
|
|
if (!ref && !rev && isLocal) {
|
2017-10-30 18:57:40 +00:00
|
|
|
|
|
|
|
|
|
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;
|
2019-04-19 09:16:14 +00:00
|
|
|
|
gitInfo.ref = "HEAD";
|
2017-10-30 18:57:40 +00:00
|
|
|
|
|
|
|
|
|
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 12:48:02 +00:00
|
|
|
|
|
|
|
|
|
auto st = lstat(p);
|
|
|
|
|
|
|
|
|
|
if (S_ISDIR(st.st_mode)) {
|
2017-11-21 18:12:47 +00:00
|
|
|
|
auto prefix = file + "/";
|
|
|
|
|
auto i = files.lower_bound(prefix);
|
|
|
|
|
return i != files.end() && hasPrefix(*i, prefix);
|
2017-11-03 12:48:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-10-30 18:57:40 +00:00
|
|
|
|
return files.count(file);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
gitInfo.storePath = store->addToStore("source", uri, true, htSHA256, filter);
|
2019-04-19 12:15:51 +00:00
|
|
|
|
gitInfo.revCount = std::stoull(runProgram("git", true, { "-C", uri, "rev-list", "--count", "HEAD" }));
|
2017-10-30 18:57:40 +00:00
|
|
|
|
|
|
|
|
|
return gitInfo;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-19 12:06:27 +00:00
|
|
|
|
if (!ref) ref = isLocal ? "HEAD" : "master";
|
|
|
|
|
|
|
|
|
|
// Don't clone file:// URIs (but otherwise treat them the same as
|
|
|
|
|
// remote URIs, i.e. don't use the working tree or HEAD).
|
|
|
|
|
static bool forceHttp = getEnv("_NIX_FORCE_HTTP") == "1"; // for testing
|
|
|
|
|
if (!forceHttp && hasPrefix(uri, "file://")) {
|
|
|
|
|
uri = std::string(uri, 7);
|
|
|
|
|
isLocal = true;
|
|
|
|
|
}
|
2017-10-30 18:57:40 +00:00
|
|
|
|
|
2018-11-20 19:59:44 +00:00
|
|
|
|
deletePath(getCacheDir() + "/nix/git");
|
|
|
|
|
|
2018-08-17 14:29:32 +00:00
|
|
|
|
Path cacheDir = getCacheDir() + "/nix/gitv2/" + hashString(htSHA256, uri).to_string(Base32, false);
|
2019-04-19 12:06:27 +00:00
|
|
|
|
Path repoDir;
|
2016-04-29 19:04:40 +00:00
|
|
|
|
|
2019-04-19 12:06:27 +00:00
|
|
|
|
if (isLocal) {
|
2016-04-29 19:04:40 +00:00
|
|
|
|
|
2019-04-19 12:06:27 +00:00
|
|
|
|
if (!rev)
|
|
|
|
|
rev = Hash(chomp(runProgram("git", true, { "-C", uri, "rev-parse", *ref })), htSHA1);
|
2016-04-29 19:04:40 +00:00
|
|
|
|
|
2019-04-19 12:06:27 +00:00
|
|
|
|
if (!pathExists(cacheDir))
|
|
|
|
|
createDirs(cacheDir);
|
|
|
|
|
|
|
|
|
|
repoDir = uri;
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
|
|
repoDir = cacheDir;
|
|
|
|
|
|
|
|
|
|
if (!pathExists(cacheDir)) {
|
|
|
|
|
createDirs(dirOf(cacheDir));
|
|
|
|
|
runProgram("git", true, { "init", "--bare", repoDir });
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Path localRefFile = repoDir + "/refs/heads/" + *ref;
|
|
|
|
|
|
|
|
|
|
bool doFetch;
|
|
|
|
|
time_t now = time(0);
|
|
|
|
|
|
|
|
|
|
/* If a rev was specified, we need to fetch if it's not in the
|
|
|
|
|
repo. */
|
|
|
|
|
if (rev) {
|
|
|
|
|
try {
|
|
|
|
|
runProgram("git", true, { "-C", repoDir, "cat-file", "-e", rev->gitRev() });
|
|
|
|
|
doFetch = false;
|
|
|
|
|
} catch (ExecError & e) {
|
|
|
|
|
if (WIFEXITED(e.status)) {
|
|
|
|
|
doFetch = true;
|
|
|
|
|
} else {
|
|
|
|
|
throw;
|
|
|
|
|
}
|
2017-11-24 02:50:01 +00:00
|
|
|
|
}
|
2019-04-19 12:06:27 +00: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 ||
|
|
|
|
|
st.st_mtime + settings.tarballTtl <= now;
|
2017-11-03 12:33:15 +00:00
|
|
|
|
}
|
2017-11-24 02:50:01 +00:00
|
|
|
|
|
2019-04-19 12:06:27 +00: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.
|
|
|
|
|
runProgram("git", true, { "-C", repoDir, "fetch", "--quiet", "--force", "--", uri, fmt("%s:%s", *ref, *ref) });
|
2017-11-24 02:50:01 +00:00
|
|
|
|
|
2019-04-19 12:06:27 +00: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-11-24 02:50:01 +00:00
|
|
|
|
|
2019-04-19 12:06:27 +00:00
|
|
|
|
if (!rev)
|
|
|
|
|
rev = Hash(chomp(readFile(localRefFile)), htSHA1);
|
2017-07-27 15:15:09 +00:00
|
|
|
|
}
|
2016-04-29 19:04:40 +00:00
|
|
|
|
|
2017-07-27 16:08:23 +00:00
|
|
|
|
// FIXME: check whether rev is an ancestor of ref.
|
2017-10-30 10:49:03 +00:00
|
|
|
|
GitInfo gitInfo;
|
2019-04-19 09:16:14 +00:00
|
|
|
|
gitInfo.ref = *ref;
|
2019-04-19 12:06:27 +00:00
|
|
|
|
gitInfo.rev = *rev;
|
2016-04-29 19:04:40 +00:00
|
|
|
|
|
2018-03-13 09:28:23 +00:00
|
|
|
|
printTalkative("using revision %s of repo '%s'", gitInfo.rev, uri);
|
2017-07-27 14:16:08 +00:00
|
|
|
|
|
2019-04-19 09:34:23 +00:00
|
|
|
|
std::string storeLinkName = hashString(htSHA512,
|
|
|
|
|
name + std::string("\0"s) + gitInfo.rev.gitRev()).to_string(Base32, false);
|
2017-10-30 08:57:38 +00:00
|
|
|
|
Path storeLink = cacheDir + "/" + storeLinkName + ".link";
|
2017-11-01 15:32:53 +00:00
|
|
|
|
PathLocks storeLinkLock({storeLink}, fmt("waiting for lock on '%1%'...", storeLink)); // FIXME: broken
|
2017-07-27 14:16:08 +00:00
|
|
|
|
|
2017-10-30 10:49:03 +00:00
|
|
|
|
try {
|
|
|
|
|
auto json = nlohmann::json::parse(readFile(storeLink));
|
|
|
|
|
|
2019-04-19 09:34:23 +00:00
|
|
|
|
assert(json["name"] == name && Hash((std::string) json["rev"], htSHA1) == gitInfo.rev);
|
2017-10-30 10:49:03 +00:00
|
|
|
|
|
2019-04-19 12:06:27 +00:00
|
|
|
|
Path storePath = json["storePath"];
|
2017-10-30 10:49:03 +00:00
|
|
|
|
|
2019-04-19 12:06:27 +00:00
|
|
|
|
if (store->isValidPath(storePath)) {
|
|
|
|
|
gitInfo.storePath = storePath;
|
2017-10-30 10:49:03 +00:00
|
|
|
|
gitInfo.revCount = json["revCount"];
|
|
|
|
|
return gitInfo;
|
2017-07-27 14:16:08 +00:00
|
|
|
|
}
|
2017-10-30 10:49:03 +00:00
|
|
|
|
|
|
|
|
|
} catch (SysError & e) {
|
|
|
|
|
if (e.errNo != ENOENT) throw;
|
2017-07-27 14:16:08 +00:00
|
|
|
|
}
|
2016-04-29 19:04:40 +00:00
|
|
|
|
|
|
|
|
|
// FIXME: should pipe this, or find some better way to extract a
|
|
|
|
|
// revision.
|
2019-04-19 12:06:27 +00:00
|
|
|
|
auto tar = runProgram("git", true, { "-C", repoDir, "archive", gitInfo.rev.gitRev() });
|
2016-04-29 19:04:40 +00:00
|
|
|
|
|
|
|
|
|
Path tmpDir = createTempDir();
|
|
|
|
|
AutoDelete delTmpDir(tmpDir, true);
|
|
|
|
|
|
|
|
|
|
runProgram("tar", true, { "x", "-C", tmpDir }, tar);
|
|
|
|
|
|
2017-10-30 10:49:03 +00:00
|
|
|
|
gitInfo.storePath = store->addToStore(name, tmpDir);
|
|
|
|
|
|
2019-04-19 12:06:27 +00:00
|
|
|
|
gitInfo.revCount = std::stoull(runProgram("git", true, { "-C", repoDir, "rev-list", "--count", gitInfo.rev.gitRev() }));
|
2017-10-30 10:49:03 +00:00
|
|
|
|
|
|
|
|
|
nlohmann::json json;
|
|
|
|
|
json["storePath"] = gitInfo.storePath;
|
|
|
|
|
json["uri"] = uri;
|
|
|
|
|
json["name"] = name;
|
2019-04-19 09:34:23 +00:00
|
|
|
|
json["rev"] = gitInfo.rev.gitRev();
|
2019-04-19 12:15:51 +00:00
|
|
|
|
json["revCount"] = gitInfo.revCount;
|
2017-07-27 14:16:08 +00:00
|
|
|
|
|
2017-10-30 10:49:03 +00:00
|
|
|
|
writeFile(storeLink, json.dump());
|
2017-07-27 14:16:08 +00:00
|
|
|
|
|
2017-10-30 10:49:03 +00:00
|
|
|
|
return gitInfo;
|
2016-04-29 19:04:40 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-10-30 09:25:08 +00:00
|
|
|
|
static void prim_fetchGit(EvalState & state, const Pos & pos, Value * * args, Value & v)
|
2016-04-29 18:14:44 +00:00
|
|
|
|
{
|
|
|
|
|
std::string url;
|
2019-02-12 12:43:32 +00:00
|
|
|
|
std::optional<std::string> ref;
|
2019-04-19 09:34:23 +00:00
|
|
|
|
std::optional<Hash> rev;
|
2017-10-30 08:57:38 +00:00
|
|
|
|
std::string name = "source";
|
2017-10-30 12:18:28 +00:00
|
|
|
|
PathSet context;
|
2016-04-29 18:14:44 +00:00
|
|
|
|
|
|
|
|
|
state.forceValue(*args[0]);
|
|
|
|
|
|
|
|
|
|
if (args[0]->type == tAttrs) {
|
|
|
|
|
|
|
|
|
|
state.forceAttrs(*args[0], pos);
|
|
|
|
|
|
|
|
|
|
for (auto & attr : *args[0]->attrs) {
|
2017-10-30 08:57:38 +00:00
|
|
|
|
string n(attr.name);
|
2017-10-30 12:18:28 +00:00
|
|
|
|
if (n == "url")
|
2017-03-02 10:46:28 +00:00
|
|
|
|
url = state.coerceToString(*attr.pos, *attr.value, context, false, false);
|
2017-10-30 08:57:38 +00:00
|
|
|
|
else if (n == "ref")
|
2017-07-27 16:08:23 +00:00
|
|
|
|
ref = state.forceStringNoCtx(*attr.value, *attr.pos);
|
2017-10-30 08:57:38 +00:00
|
|
|
|
else if (n == "rev")
|
2019-04-19 09:34:23 +00:00
|
|
|
|
rev = Hash(state.forceStringNoCtx(*attr.value, *attr.pos), htSHA1);
|
2017-10-30 08:57:38 +00:00
|
|
|
|
else if (n == "name")
|
|
|
|
|
name = state.forceStringNoCtx(*attr.value, *attr.pos);
|
2016-04-29 18:14:44 +00:00
|
|
|
|
else
|
2017-10-30 09:25:08 +00:00
|
|
|
|
throw EvalError("unsupported argument '%s' to 'fetchGit', at %s", attr.name, *attr.pos);
|
2016-04-29 18:14:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (url.empty())
|
2017-07-30 11:27:57 +00:00
|
|
|
|
throw EvalError(format("'url' argument required, at %1%") % pos);
|
2016-04-29 18:14:44 +00:00
|
|
|
|
|
|
|
|
|
} else
|
2017-10-30 12:18:28 +00:00
|
|
|
|
url = state.coerceToString(pos, *args[0], context, false, false);
|
|
|
|
|
|
2017-10-30 11:39:59 +00:00
|
|
|
|
// FIXME: git externals probably can be used to bypass the URI
|
|
|
|
|
// whitelist. Ah well.
|
|
|
|
|
state.checkURI(url);
|
|
|
|
|
|
2019-04-19 09:34:23 +00:00
|
|
|
|
if (evalSettings.pureEval && !rev)
|
2019-02-12 20:05:44 +00:00
|
|
|
|
throw Error("in pure evaluation mode, 'fetchGit' requires a Git revision");
|
|
|
|
|
|
2017-10-30 10:49:03 +00:00
|
|
|
|
auto gitInfo = exportGit(state.store, url, ref, rev, name);
|
2016-04-29 18:14:44 +00:00
|
|
|
|
|
2017-10-30 10:49:03 +00:00
|
|
|
|
state.mkAttrs(v, 8);
|
|
|
|
|
mkString(*state.allocAttr(v, state.sOutPath), gitInfo.storePath, PathSet({gitInfo.storePath}));
|
2019-04-19 09:34:23 +00:00
|
|
|
|
mkString(*state.allocAttr(v, state.symbols.create("rev")), gitInfo.rev.gitRev());
|
|
|
|
|
mkString(*state.allocAttr(v, state.symbols.create("shortRev")), gitInfo.rev.gitShortRev());
|
2019-04-19 12:15:51 +00:00
|
|
|
|
mkInt(*state.allocAttr(v, state.symbols.create("revCount")), gitInfo.revCount);
|
2017-10-30 10:49:03 +00:00
|
|
|
|
v.attrs->sort();
|
2018-01-16 17:50:38 +00:00
|
|
|
|
|
|
|
|
|
if (state.allowedPaths)
|
|
|
|
|
state.allowedPaths->insert(gitInfo.storePath);
|
2016-04-29 18:14:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-10-30 09:25:08 +00:00
|
|
|
|
static RegisterPrimOp r("fetchGit", 1, prim_fetchGit);
|
2016-04-29 18:14:44 +00:00
|
|
|
|
|
|
|
|
|
}
|