checkStoreName: give more precise/verbose error information

$ sudo ./inst/bin/nix-instantiate -E '"${./.git}"'
error: The path name '.git' is invalid: it is illegal to start the
name with a period. Path names are alphanumeric and can include the
symbols +-._?= and must not begin with a period. Note: If '.git' is a
source file and you cannot rename it on disk,
builtins.path { name = ... } can be used to give it an alternative
name.
This commit is contained in:
Graham Christensen 2019-06-27 14:21:22 -04:00
parent 324a5dc92f
commit 17d3ec3405
No known key found for this signature in database
GPG Key ID: ACA1C1D120C83D5C
1 changed files with 10 additions and 3 deletions

View File

@ -86,18 +86,25 @@ string storePathToHash(const Path & path)
void checkStoreName(const string & name)
{
string validChars = "+-._?=";
auto baseError = format("The path name '%2%' is invalid: %3%. "
"Path names are alphanumeric and can include the symbols %1% "
"and must not begin with a period. "
"Note: If '%2%' is a source file and you cannot rename it on "
"disk, builtins.path { name = ... } can be used to give it an "
"alternative name.") % validChars % name;
/* Disallow names starting with a dot for possible security
reasons (e.g., "." and ".."). */
if (string(name, 0, 1) == ".")
throw Error(format("illegal name: '%1%'") % name);
throw Error(baseError % "it is illegal to start the name with a period");
for (auto & i : name)
if (!((i >= 'A' && i <= 'Z') ||
(i >= 'a' && i <= 'z') ||
(i >= '0' && i <= '9') ||
validChars.find(i) != string::npos))
{
throw Error(format("invalid character '%1%' in name '%2%'")
% i % name);
throw Error(baseError % (format("the '%1%' character is invalid") % i));
}
}