aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/libstore/binary-cache-store.cc11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/libstore/binary-cache-store.cc b/src/libstore/binary-cache-store.cc
index 4445bfd27..93863b95f 100644
--- a/src/libstore/binary-cache-store.cc
+++ b/src/libstore/binary-cache-store.cc
@@ -50,6 +50,17 @@ Path BinaryCacheStore::narInfoFileFor(const Path & storePath)
void BinaryCacheStore::addToCache(const ValidPathInfo & info,
const string & nar)
{
+ /* Verify that all references are valid. This may do some .narinfo
+ reads, but typically they'll already be cached. */
+ for (auto & ref : info.references)
+ try {
+ if (ref != info.path)
+ queryPathInfo(ref);
+ } catch (InvalidPath &) {
+ throw Error(format("cannot add ā€˜%sā€™ to the binary cache because the reference ā€˜%sā€™ is not valid")
+ % info.path % ref);
+ }
+
auto narInfoFile = narInfoFileFor(info.path);
if (fileExists(narInfoFile)) return;