aboutsummaryrefslogtreecommitdiff
path: root/src/libstore
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2017-11-14 18:44:05 +0100
committerEelco Dolstra <edolstra@gmail.com>2017-11-14 18:44:05 +0100
commitec5b04862ba48e6d7e61c8bf730ae37d48b6f70a (patch)
treeb904eb55d71ee13ebdee6cab728fae69bd474b79 /src/libstore
parentd6dbda7004fda4af1fc89c5c947b4d1595a8c436 (diff)
nix sign-paths: Support binary caches
Diffstat (limited to 'src/libstore')
-rw-r--r--src/libstore/binary-cache-store.cc47
-rw-r--r--src/libstore/binary-cache-store.hh5
2 files changed, 37 insertions, 15 deletions
diff --git a/src/libstore/binary-cache-store.cc b/src/libstore/binary-cache-store.cc
index 93caba67e..68af85bf1 100644
--- a/src/libstore/binary-cache-store.cc
+++ b/src/libstore/binary-cache-store.cc
@@ -73,6 +73,23 @@ Path BinaryCacheStore::narInfoFileFor(const Path & storePath)
return storePathToHash(storePath) + ".narinfo";
}
+void BinaryCacheStore::writeNarInfo(ref<NarInfo> narInfo)
+{
+ auto narInfoFile = narInfoFileFor(narInfo->path);
+
+ upsertFile(narInfoFile, narInfo->to_string(), "text/x-nix-narinfo");
+
+ auto hashPart = storePathToHash(narInfo->path);
+
+ {
+ auto state_(state.lock());
+ state_->pathInfoCache.upsert(hashPart, std::shared_ptr<NarInfo>(narInfo));
+ }
+
+ if (diskCache)
+ diskCache->upsertNarInfo(getUri(), hashPart, std::shared_ptr<NarInfo>(narInfo));
+}
+
void BinaryCacheStore::addToStore(const ValidPathInfo & info, const ref<std::string> & nar,
RepairFlag repair, CheckSigsFlag checkSigs, std::shared_ptr<FSAccessor> accessor)
{
@@ -89,8 +106,6 @@ void BinaryCacheStore::addToStore(const ValidPathInfo & info, const ref<std::str
% info.path % ref);
}
- auto narInfoFile = narInfoFileFor(info.path);
-
assert(nar->compare(0, narMagic.size(), narMagic) == 0);
auto narInfo = make_ref<NarInfo>(info);
@@ -168,17 +183,7 @@ void BinaryCacheStore::addToStore(const ValidPathInfo & info, const ref<std::str
/* Atomically write the NAR info file.*/
if (secretKey) narInfo->sign(*secretKey);
- upsertFile(narInfoFile, narInfo->to_string(), "text/x-nix-narinfo");
-
- auto hashPart = storePathToHash(narInfo->path);
-
- {
- auto state_(state.lock());
- state_->pathInfoCache.upsert(hashPart, std::shared_ptr<NarInfo>(narInfo));
- }
-
- if (diskCache)
- diskCache->upsertNarInfo(getUri(), hashPart, std::shared_ptr<NarInfo>(narInfo));
+ writeNarInfo(narInfo);
stats.narInfoWrite++;
}
@@ -293,6 +298,22 @@ ref<FSAccessor> BinaryCacheStore::getFSAccessor()
return make_ref<RemoteFSAccessor>(ref<Store>(shared_from_this()), localNarCache);
}
+void BinaryCacheStore::addSignatures(const Path & storePath, const StringSet & sigs)
+{
+ /* Note: this is inherently racy since there is no locking on
+ binary caches. In particular, with S3 this unreliable, even
+ when addSignatures() is called sequentially on a path, because
+ S3 might return an outdated cached version. */
+
+ auto narInfo = make_ref<NarInfo>((NarInfo &) *queryPathInfo(storePath));
+
+ narInfo->sigs.insert(sigs.begin(), sigs.end());
+
+ auto narInfoFile = narInfoFileFor(narInfo->path);
+
+ writeNarInfo(narInfo);
+}
+
std::shared_ptr<std::string> BinaryCacheStore::getBuildLog(const Path & path)
{
Path drvPath;
diff --git a/src/libstore/binary-cache-store.hh b/src/libstore/binary-cache-store.hh
index d3b0e0bd9..8492ff600 100644
--- a/src/libstore/binary-cache-store.hh
+++ b/src/libstore/binary-cache-store.hh
@@ -59,6 +59,8 @@ private:
std::string narInfoFileFor(const Path & storePath);
+ void writeNarInfo(ref<NarInfo> narInfo);
+
public:
bool isValidPathUncached(const Path & path) override;
@@ -119,8 +121,7 @@ public:
ref<FSAccessor> getFSAccessor() override;
- void addSignatures(const Path & storePath, const StringSet & sigs) override
- { unsupported(); }
+ void addSignatures(const Path & storePath, const StringSet & sigs) override;
std::shared_ptr<std::string> getBuildLog(const Path & path) override;