diff options
author | Shea Levy <shea@shealevy.com> | 2011-12-21T17·14+0000 |
---|---|---|
committer | Shea Levy <shea@shealevy.com> | 2011-12-21T17·14+0000 |
commit | f3c88f297d837f73d8123cb12564d237d7d0df87 (patch) | |
tree | dafa5b25fe9ea570f173191d2bc7bd0a7a4d91aa /src | |
parent | b19a0f63dbb0c4910f4d9dcb391ca424ff3faeaa (diff) |
Detect and reject mutually-referential outputs
There is probably a more efficient way to do this.
Diffstat (limited to 'src')
-rw-r--r-- | src/libstore/build.cc | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/libstore/build.cc b/src/libstore/build.cc index a8ef9b23efaf..2ebcbf5a8fc3 100644 --- a/src/libstore/build.cc +++ b/src/libstore/build.cc @@ -1986,6 +1986,15 @@ void DerivationGoal::computeClosure() info.deriver = drvPath; infos.push_back(info); } + + /* Mutually recursive outputs are not allowed */ + foreach (ValidPathInfos::iterator, i, infos) + foreach (ValidPathInfos::iterator, j, infos) + if ((i->path != j->path) && + (i->references.find(j->path) != i->references.end()) && + (j->references.find(i->path) != j->references.end())) + throw BuildError(format("Mutually referential outputs are not allowed: outputs `%1%' and `%2%' refer to each other") % i->path % j->path); + worker.store.registerValidPaths(infos); /* It is now safe to delete the lock files, since all future |