summaryrefslogtreecommitdiff
path: root/rdiff-backup
diff options
context:
space:
mode:
authorbescoto <bescoto@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109>2004-05-31 05:04:10 +0000
committerbescoto <bescoto@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109>2004-05-31 05:04:10 +0000
commit9f52f6ca9ef1103f2bdb15cc377ee778f87e28ce (patch)
tree0aee222f830dec5419280260c4660f1a561f03ce /rdiff-backup
parentf1d547a98953ea68dfe9ce0d9bba420e799dbf8a (diff)
downloadrdiff-backup-9f52f6ca9ef1103f2bdb15cc377ee778f87e28ce.tar.gz
Fix for perm-changer bug
git-svn-id: http://svn.savannah.nongnu.org/svn/rdiff-backup/branches/r0-12@536 2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109
Diffstat (limited to 'rdiff-backup')
-rw-r--r--rdiff-backup/rdiff_backup/restore.py41
1 files changed, 21 insertions, 20 deletions
diff --git a/rdiff-backup/rdiff_backup/restore.py b/rdiff-backup/rdiff_backup/restore.py
index 3ec3a77..580d0d8 100644
--- a/rdiff-backup/rdiff_backup/restore.py
+++ b/rdiff-backup/rdiff_backup/restore.py
@@ -311,7 +311,7 @@ class CachedRF:
if not self.add_rfs(index): return None
rf = self.rf_list[0]
if rf.index == index:
- if Globals.process_uid != 0: self.perm_changer(rf.mirror_rp)
+ if Globals.process_uid != 0: self.perm_changer(index)
return rf
elif rf.index > index:
# Try to add earlier indicies. But if first is
@@ -340,9 +340,9 @@ The cause is probably data loss from the destination directory.""" %
"""
if not index: return self.root_rf
parent_index = index[:-1]
+ if Globals.process_uid != 0: self.perm_changer(parent_index)
temp_rf = RestoreFile(self.root_rf.mirror_rp.new_index(parent_index),
self.root_rf.inc_rp.new_index(parent_index), [])
- if Globals.process_uid != 0: self.perm_changer(temp_rf.mirror_rp)
new_rfs = list(temp_rf.yield_sub_rfs())
if not new_rfs:
log.Log("Warning: No RFs added for index %s" % (index,), 2)
@@ -653,16 +653,15 @@ class PermissionChanger:
# order that need clearing
self.open_index_list = []
- def __call__(self, rp):
- """Given rpath, change permissions up and including rp"""
- index, old_index = rp.index, self.current_index
+ def __call__(self, index):
+ """Given rpath, change permissions up to and including index"""
+ old_index = self.current_index
self.current_index = index
- if not index or index == old_index: return
- assert index > old_index, (index, old_index)
- self.restore_old(rp, index)
- self.add_new(rp, old_index, index)
+ if not index or index <= old_index: return
+ self.restore_old(index)
+ self.add_new(old_index, index)
- def restore_old(self, rp, index):
+ def restore_old(self, index):
"""Restore permissions for indicies we are done with"""
while self.open_index_list:
old_index, old_rp, old_perms = self.open_index_list[0]
@@ -670,29 +669,31 @@ class PermissionChanger:
else: break
del self.open_index_list[0]
- def add_new(self, rp, old_index, index):
+ def add_new(self, old_index, index):
"""Change permissions of directories between old_index and index"""
- for rp in self.get_new_rp_list(rp, old_index, index):
+ for rp in self.get_new_rp_list(old_index, index):
if ((rp.isreg() and not rp.readable()) or
(rp.isdir() and not rp.hasfullperms())):
old_perms = rp.getperms()
- self.open_index_list.insert(0, (index, rp, old_perms))
+ self.open_index_list.insert(0, (rp.index, rp, old_perms))
if rp.isreg(): rp.chmod(0400 | old_perms)
else: rp.chmod(0700 | old_perms)
- def get_new_rp_list(self, rp, old_index, index):
- """Return list of new rp's between old_index and index"""
+ def get_new_rp_list(self, old_index, index):
+ """Return list of new rp's between old_index and index
+
+ Do this lazily so that the permissions on the outer
+ directories are fixed before we need the inner dirs.
+
+ """
for i in range(len(index)-1, -1, -1):
if old_index[:i] == index[:i]:
common_prefix_len = i
break
else: assert 0
- new_rps = []
- for total_len in range(common_prefix_len+1, len(index)):
- new_rps.append(self.root_rp.new_index(index[:total_len]))
- new_rps.append(rp)
- return new_rps
+ for total_len in range(common_prefix_len+1, len(index)+1):
+ yield self.root_rp.new_index(index[:total_len])
def finish(self):
"""Restore any remaining rps"""