aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2021-02-27 19:12:25 +0200
committerMartin Storsjö <martin@martin.st>2021-03-05 10:49:01 +0200
commit99c7b532946508efcf6cd978d86ee24b2a66d096 (patch)
treedcff67f5ba14babaa8289f08ac48ff98041159c9
parent1773eec6928f4e37b377e23b84d7a2a07d0d1d0d (diff)
downloadllvm-99c7b532946508efcf6cd978d86ee24b2a66d096.zip
llvm-99c7b532946508efcf6cd978d86ee24b2a66d096.tar.gz
llvm-99c7b532946508efcf6cd978d86ee24b2a66d096.tar.bz2
[libcxx] Avoid infinite recursion in create_directories, if the root directory doesn't exist
Differential Revision: https://reviews.llvm.org/D97618
-rw-r--r--libcxx/src/filesystem/operations.cpp2
-rw-r--r--libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.create_directories/create_directories.pass.cpp14
2 files changed, 16 insertions, 0 deletions
diff --git a/libcxx/src/filesystem/operations.cpp b/libcxx/src/filesystem/operations.cpp
index f112168..35f6937 100644
--- a/libcxx/src/filesystem/operations.cpp
+++ b/libcxx/src/filesystem/operations.cpp
@@ -1019,6 +1019,8 @@ bool __create_directories(const path& p, error_code* ec) {
if (not status_known(parent_st))
return err.report(m_ec);
if (not exists(parent_st)) {
+ if (parent == p)
+ return err.report(errc::invalid_argument);
__create_directories(parent, ec);
if (ec && *ec) {
return false;
diff --git a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.create_directories/create_directories.pass.cpp b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.create_directories/create_directories.pass.cpp
index 9ce450a..54820ca 100644
--- a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.create_directories/create_directories.pass.cpp
+++ b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.create_directories/create_directories.pass.cpp
@@ -138,4 +138,18 @@ TEST_CASE(dest_final_part_is_file)
TEST_CHECK(!exists(dir));
}
+#ifdef _WIN32
+TEST_CASE(nonexistent_root)
+{
+ std::error_code ec = GetTestEC();
+ // If Q:\ doesn't exist, create_directories would try to recurse upwards
+ // to parent_path() until it finds a directory that does exist. As the
+ // whole path is the root name, parent_path() returns itself, and it
+ // would recurse indefinitely, unless the recursion is broken.
+ if (!exists("Q:\\"))
+ TEST_CHECK(fs::create_directories("Q:\\", ec) == false);
+ TEST_CHECK(fs::create_directories("\\\\nonexistentserver", ec) == false);
+}
+#endif
+
TEST_SUITE_END()