chiark / gitweb /
util: rm_rf_children_dangerous: delete all descendants dangerously
authorTom Gundersen <teg@jklm.no>
Mon, 3 Sep 2012 13:40:37 +0000 (15:40 +0200)
committerLennart Poettering <lennart@poettering.net>
Tue, 11 Sep 2012 00:55:29 +0000 (02:55 +0200)
Call rm_rf_children_dangerous() recursively rather than falling back to
rm_rf_children(). This fixes a bug in systemd-tmpfiles.

The problem can easily be reproduced by:

  # mount /dev/sda1 /mnt
  # mkdir /mnt/test
  # echo "D /mnt" > /root/test.conf
  # systemd-tmpfiles --remove /root/test.conf
  Attempted to remove disk file system, and we can't allow that.
  rm_rf(/root/test): Operation not permitted

Reported-by: Lukas Jirkovsky <l.jirkovsky@gmail.com>
src/shared/util.c

index 4f5cb26e3c34926bd0c409408b9a50683b492d4f..eaf2721381fc3c3d2b44ce84a179ad7f67ab7d99 100644 (file)
@@ -3358,7 +3358,7 @@ int rm_rf_children_dangerous(int fd, bool only_dirs, bool honour_sticky, struct
                                 continue;
                         }
 
-                        r = rm_rf_children(subdir_fd, only_dirs, honour_sticky, root_dev);
+                        r = rm_rf_children_dangerous(subdir_fd, only_dirs, honour_sticky, root_dev);
                         if (r < 0 && ret == 0)
                                 ret = r;