Skip to content
Snippets Groups Projects
Commit 3f05ce15 authored by Justin Bogner's avatar Justin Bogner
Browse files

Frontend: Disentangle removePathTraversal from concatenating paths

This reimplements part of r211303 in a bit of a cleaner way. Doing so
allows us to use a proper absolute path when calling addFileMapping
rather than relying on a substring being one, which should fix the
tests on Windows.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@211338 91177308-0d34-0410-b5e6-96231b3b80d8
parent ff6e3ae7
No related branches found
No related tags found
No related merge requests found
...@@ -57,13 +57,14 @@ void ModuleDependencyCollector::writeFileMap() { ...@@ -57,13 +57,14 @@ void ModuleDependencyCollector::writeFileMap() {
VFSWriter.write(OS); VFSWriter.write(OS);
} }
/// Append the absolute path in Nested to the path given by Root. This will /// Remove traversal (ie, . or ..) from the given absolute path.
/// remove directory traversal from the resulting nested path. static void removePathTraversal(SmallVectorImpl<char> &Path) {
static void appendNestedPath(SmallVectorImpl<char> &Root, StringRef Nested) {
using namespace llvm::sys; using namespace llvm::sys;
SmallVector<StringRef, 16> ComponentStack; SmallVector<StringRef, 16> ComponentStack;
StringRef P(Path.data(), Path.size());
StringRef Rel = path::relative_path(Nested); // Skip the root path, then look for traversal in the components.
StringRef Rel = path::relative_path(P);
for (StringRef C : llvm::make_range(path::begin(Rel), path::end(Rel))) { for (StringRef C : llvm::make_range(path::begin(Rel), path::end(Rel))) {
if (C == ".") if (C == ".")
continue; continue;
...@@ -73,9 +74,14 @@ static void appendNestedPath(SmallVectorImpl<char> &Root, StringRef Nested) { ...@@ -73,9 +74,14 @@ static void appendNestedPath(SmallVectorImpl<char> &Root, StringRef Nested) {
} else } else
ComponentStack.push_back(C); ComponentStack.push_back(C);
} }
// The stack is now the path without any directory traversal. // The stack is now the path without any directory traversal.
SmallString<256> Buffer = path::root_path(P);
for (StringRef C : ComponentStack) for (StringRef C : ComponentStack)
path::append(Root, C); path::append(Buffer, C);
// Put the result in Path.
Path.swap(Buffer);
} }
std::error_code ModuleDependencyListener::copyToRoot(StringRef Src) { std::error_code ModuleDependencyListener::copyToRoot(StringRef Src) {
...@@ -84,10 +90,11 @@ std::error_code ModuleDependencyListener::copyToRoot(StringRef Src) { ...@@ -84,10 +90,11 @@ std::error_code ModuleDependencyListener::copyToRoot(StringRef Src) {
// We need an absolute path to append to the root. // We need an absolute path to append to the root.
SmallString<256> AbsoluteSrc = Src; SmallString<256> AbsoluteSrc = Src;
fs::make_absolute(AbsoluteSrc); fs::make_absolute(AbsoluteSrc);
removePathTraversal(AbsoluteSrc);
// Build the destination path. // Build the destination path.
SmallString<256> Dest = Collector.getDest(); SmallString<256> Dest = Collector.getDest();
size_t RootLen = Dest.size(); path::append(Dest, path::relative_path(AbsoluteSrc));
appendNestedPath(Dest, AbsoluteSrc);
// Copy the file into place. // Copy the file into place.
if (std::error_code EC = fs::create_directories(path::parent_path(Dest), if (std::error_code EC = fs::create_directories(path::parent_path(Dest),
...@@ -96,7 +103,7 @@ std::error_code ModuleDependencyListener::copyToRoot(StringRef Src) { ...@@ -96,7 +103,7 @@ std::error_code ModuleDependencyListener::copyToRoot(StringRef Src) {
if (std::error_code EC = fs::copy_file(AbsoluteSrc.str(), Dest.str())) if (std::error_code EC = fs::copy_file(AbsoluteSrc.str(), Dest.str()))
return EC; return EC;
// Use the absolute path under the root for the file mapping. // Use the absolute path under the root for the file mapping.
Collector.addFileMapping(Dest.substr(RootLen), Dest.str()); Collector.addFileMapping(AbsoluteSrc.str(), Dest.str());
return std::error_code(); return std::error_code();
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment