forked from lix-project/lix
Merge pull request #9985 from alois31/symlink-resolution
Restore `builtins.pathExists` behavior on broken symlinks
(cherry picked from commit d53c8901ef7f2033855dd99063522e3d56a19dab)
===
note that this variant differs markedly from the source commit because
we haven't endured quite as much lazy trees.
Change-Id: I0facf282f21fe0db4134be5c65a8368c1b3a06fc
This commit is contained in:
parent
1342c8f18e
commit
b14f88e0d4
|
@ -1540,11 +1540,12 @@ static void prim_pathExists(EvalState & state, const PosIdx pos, Value * * args,
|
||||||
|| arg.str().ends_with("/."));
|
|| arg.str().ends_with("/."));
|
||||||
|
|
||||||
try {
|
try {
|
||||||
auto checked = state.checkSourcePath(path);
|
auto checked = state
|
||||||
auto exists = checked.pathExists();
|
.checkSourcePath(path)
|
||||||
if (exists && mustBeDir) {
|
.resolveSymlinks(mustBeDir ? SymlinkResolution::Full : SymlinkResolution::Ancestors);
|
||||||
exists = checked.lstat().type == InputAccessor::tDirectory;
|
|
||||||
}
|
auto st = checked.maybeLstat();
|
||||||
|
auto exists = st && (!mustBeDir || st->type == InputAccessor::tDirectory);
|
||||||
v.mkBool(exists);
|
v.mkBool(exists);
|
||||||
} catch (SysError & e) {
|
} catch (SysError & e) {
|
||||||
/* Don't give away info from errors while canonicalising
|
/* Don't give away info from errors while canonicalising
|
||||||
|
|
|
@ -56,7 +56,7 @@ InputAccessor::DirEntries SourcePath::readDirectory() const
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
SourcePath SourcePath::resolveSymlinks() const
|
SourcePath SourcePath::resolveSymlinks(SymlinkResolution mode) const
|
||||||
{
|
{
|
||||||
SourcePath res(CanonPath::root);
|
SourcePath res(CanonPath::root);
|
||||||
|
|
||||||
|
@ -66,6 +66,8 @@ SourcePath SourcePath::resolveSymlinks() const
|
||||||
for (auto & c : path)
|
for (auto & c : path)
|
||||||
todo.push_back(std::string(c));
|
todo.push_back(std::string(c));
|
||||||
|
|
||||||
|
bool resolve_last = mode == SymlinkResolution::Full;
|
||||||
|
|
||||||
while (!todo.empty()) {
|
while (!todo.empty()) {
|
||||||
auto c = *todo.begin();
|
auto c = *todo.begin();
|
||||||
todo.pop_front();
|
todo.pop_front();
|
||||||
|
@ -75,14 +77,16 @@ SourcePath SourcePath::resolveSymlinks() const
|
||||||
res.path.pop();
|
res.path.pop();
|
||||||
else {
|
else {
|
||||||
res.path.push(c);
|
res.path.push(c);
|
||||||
if (auto st = res.maybeLstat(); st && st->type == InputAccessor::tSymlink) {
|
if (resolve_last || !todo.empty()) {
|
||||||
if (!linksAllowed--)
|
if (auto st = res.maybeLstat(); st && st->type == InputAccessor::tSymlink) {
|
||||||
throw Error("infinite symlink recursion in path '%s'", path);
|
if (!linksAllowed--)
|
||||||
auto target = res.readLink();
|
throw Error("infinite symlink recursion in path '%s'", path);
|
||||||
res.path.pop();
|
auto target = res.readLink();
|
||||||
if (hasPrefix(target, "/"))
|
res.path.pop();
|
||||||
res.path = CanonPath::root;
|
if (hasPrefix(target, "/"))
|
||||||
todo.splice(todo.begin(), tokenizeString<std::list<std::string>>(target, "/"));
|
res.path = CanonPath::root;
|
||||||
|
todo.splice(todo.begin(), tokenizeString<std::list<std::string>>(target, "/"));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,6 +12,26 @@
|
||||||
|
|
||||||
namespace nix {
|
namespace nix {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Note there is a decent chance this type soon goes away because the problem is solved another way.
|
||||||
|
* See the discussion in https://github.com/NixOS/nix/pull/9985.
|
||||||
|
*/
|
||||||
|
enum class SymlinkResolution {
|
||||||
|
/**
|
||||||
|
* Resolve symlinks in the ancestors only.
|
||||||
|
*
|
||||||
|
* Only the last component of the result is possibly a symlink.
|
||||||
|
*/
|
||||||
|
Ancestors,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Resolve symlinks fully, realpath(3)-style.
|
||||||
|
*
|
||||||
|
* No component of the result will be a symlink.
|
||||||
|
*/
|
||||||
|
Full,
|
||||||
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* An abstraction for accessing source files during
|
* An abstraction for accessing source files during
|
||||||
* evaluation. Currently, it's just a wrapper around `CanonPath` that
|
* evaluation. Currently, it's just a wrapper around `CanonPath` that
|
||||||
|
@ -121,11 +141,14 @@ struct SourcePath
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Resolve any symlinks in this `SourcePath` (including its
|
* Resolve any symlinks in this `SourcePath` according to the
|
||||||
* parents). The result is a `SourcePath` in which no element is a
|
* given resolution mode.
|
||||||
* symlink.
|
*
|
||||||
|
* @param mode might only be a temporary solution for this.
|
||||||
|
* See the discussion in https://github.com/NixOS/nix/pull/9985.
|
||||||
*/
|
*/
|
||||||
SourcePath resolveSymlinks() const;
|
SourcePath resolveSymlinks(
|
||||||
|
SymlinkResolution mode = SymlinkResolution::Full) const;
|
||||||
};
|
};
|
||||||
|
|
||||||
std::ostream & operator << (std::ostream & str, const SourcePath & path);
|
std::ostream & operator << (std::ostream & str, const SourcePath & path);
|
||||||
|
|
|
@ -27,3 +27,6 @@ builtins.pathExists (./lib.nix)
|
||||||
&& !builtins.pathExists (builtins.toPath (builtins.toString ./bla.nix))
|
&& !builtins.pathExists (builtins.toPath (builtins.toString ./bla.nix))
|
||||||
&& builtins.pathExists ./lib.nix
|
&& builtins.pathExists ./lib.nix
|
||||||
&& !builtins.pathExists ./bla.nix
|
&& !builtins.pathExists ./bla.nix
|
||||||
|
&& builtins.pathExists ./symlink-resolution/foo/overlays/overlay.nix
|
||||||
|
&& builtins.pathExists ./symlink-resolution/broken
|
||||||
|
&& builtins.pathExists (builtins.toString ./symlink-resolution/foo/overlays + "/.")
|
||||||
|
|
1
tests/functional/lang/symlink-resolution/broken
Symbolic link
1
tests/functional/lang/symlink-resolution/broken
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
nonexistent
|
Loading…
Reference in a new issue