aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Cohen <jeffc@jolt-lang.org>2005-01-14 04:09:39 +0000
committerJeff Cohen <jeffc@jolt-lang.org>2005-01-14 04:09:39 +0000
commit3bbbcc113b4ff3bb5769d10c7e452cefcf812510 (patch)
treed7c2f2dc20c065cb00dba7349e56cc5534c2d4d1
parent62582720e61988b2fcee171f1a7cfecf415ed4f3 (diff)
Fix and improve win32 path validation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19545 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/System/Win32/Path.inc32
1 files changed, 22 insertions, 10 deletions
diff --git a/lib/System/Win32/Path.inc b/lib/System/Win32/Path.inc
index a8862380e9..7f891f43f9 100644
--- a/lib/System/Win32/Path.inc
+++ b/lib/System/Win32/Path.inc
@@ -55,17 +55,29 @@ Path::isValid() const {
!= std::string::npos)
return false;
- // A file or directory name may not end in a period.
- if (path[len-1] == '.')
- return false;
- if (len >= 2 && path[len-2] == '.' && path[len-1] == '/')
- return false;
+ // Check each component for legality.
+ for (pos = 0; pos < len; ++pos) {
+ // A component may not end in a space.
+ if (path[pos] == ' ') {
+ if (path[pos+1] == '/' || path[pos+1] == '\0')
+ return false;
+ }
- // A file or directory name may not end in a space.
- if (path[len-1] == ' ')
- return false;
- if (len >= 2 && path[len-2] == ' ' && path[len-1] == '/')
- return false;
+ // A component may not end in a period.
+ if (path[pos] == '.') {
+ if (path[pos+1] == '/' || path[pos+1] == '\0') {
+ // Unless it is the pseudo-directory "."...
+ if (pos == 0 || path[pos-1] == '/' || path[pos-1] == ':')
+ return true;
+ // or "..".
+ if (pos > 0 && path[pos-1] == '.') {
+ if (pos == 1 || path[pos-2] == '/' || path[pos-2] == ':')
+ return true;
+ }
+ return false;
+ }
+ }
+ }
return true;
}