]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
rm-rf: refuse combining REMOVE_ONLY_DIRECTORIES and REMOVE_SUBVOLUME for now
authorLennart Poettering <lennart@poettering.net>
Fri, 29 Mar 2019 15:09:49 +0000 (16:09 +0100)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Mon, 1 Apr 2019 20:40:05 +0000 (05:40 +0900)
It's not easy to implement such a combined operation race-freely since
dropping a subvolume will drop all its contents, including any
non-directories.

Hence, let's just not support this combination for now. Which isn't much
of a loss, since we never combine these flags anyway.

src/basic/rm-rf.c

index 0c957c9b3a8c22588ddab818f90ecf8f92f5f344..acc0f88cd24a6918e369db701717b5c8db86d18e 100644 (file)
@@ -165,6 +165,11 @@ int rm_rf(const char *path, RemoveFlags flags) {
 
         assert(path);
 
+        /* For now, don't support dropping subvols when also only dropping directories, since we can't do
+         * this race-freely. */
+        if (FLAGS_SET(flags, REMOVE_ONLY_DIRECTORIES|REMOVE_SUBVOLUME))
+                return -EINVAL;
+
         /* We refuse to clean the root file system with this
          * call. This is extra paranoia to never cause a really
          * seriously broken system. */