1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412
|
import unittest
import os
from commontest import old_test_dir, abs_test_dir, abs_output_dir, Myrm, \
abs_restore_dir, re_init_rpath_dir, compare_recursive, \
BackupRestoreSeries, rdiff_backup, RBBin, xcopytree, os_system
from rdiff_backup import Globals, rpath
"""Root tests - contain tests which need to be run as root.
Some of the quoting here may not work with csh (works on bash). Also,
if you aren't me, check out the 'user' global variable.
"""
Globals.set('change_source_perms', None)
Globals.counter = 0
assert os.getuid() == 0, "Run this test as root!"
# we need a normal user for our test, we use environment variables to use
# the right one, either through SUDO_* variables set by sudo, or set
# explicitly by the tester.
userid = int(os.getenv('RDIFF_TEST_UID', os.getenv('SUDO_UID')))
user = os.getenv('RDIFF_TEST_USER', os.getenv('SUDO_USER'))
assert userid, "Unable to assess ID of non-root user to be used for tests"
assert user, "Unable to assess name of non-root user to be used for tests"
class BaseRootTest(unittest.TestCase):
def _run_cmd(self, cmd, expect_rc=Globals.RET_CODE_OK):
print("Running: ", cmd)
rc = os_system(cmd)
self.assertEqual(
rc, expect_rc,
"Command '{cmd}' failed with rc={rc}".format(cmd=cmd, rc=rc))
class RootTest(BaseRootTest):
dirlist1 = [
os.path.join(old_test_dir, b"root"),
os.path.join(old_test_dir, b"various_file_types"),
os.path.join(old_test_dir, b"increment4")
]
dirlist2 = [
os.path.join(old_test_dir, b"increment4"),
os.path.join(old_test_dir, b"root"),
os.path.join(old_test_dir, b"increment1")
]
def testLocal1(self):
BackupRestoreSeries(1, 1, self.dirlist1, compare_ownership=1)
def testLocal2(self):
BackupRestoreSeries(1, 1, self.dirlist2, compare_ownership=1)
def testRemote(self):
BackupRestoreSeries(None, None, self.dirlist1, compare_ownership=1)
def test_ownership(self):
"""Test backing up and restoring directory with different uids
This checks for a bug in 0.13.4 where uids and gids would not
be restored correctly.
Also test to make sure symlinks get the right ownership.
(Earlier symlink ownership was not preserved.)
"""
dirrp = rpath.RPath(Globals.local_connection,
os.path.join(abs_test_dir, b"root_owner"))
def make_dir():
re_init_rpath_dir(dirrp)
rp1 = dirrp.append('file1')
rp2 = dirrp.append('file2')
rp3 = dirrp.append('file3')
rp4 = dirrp.append('file4')
rp5 = dirrp.append('symlink')
rp1.touch()
rp2.touch()
rp3.touch()
rp4.touch()
rp5.symlink(b'foobar')
rp1.chown(2000, 2000)
rp2.chown(2001, 2001)
rp3.chown(2002, 2002)
rp4.chown(2003, 2003)
rp5.chown(2004, 2004)
make_dir()
dirlist = [
os.path.join(abs_test_dir, b"root_owner"),
os.path.join(old_test_dir, b"empty"),
os.path.join(abs_test_dir, b"root_owner")
]
BackupRestoreSeries(1, 1, dirlist, compare_ownership=1)
symrp = rpath.RPath(Globals.local_connection,
os.path.join(abs_output_dir, b'symlink'))
self.assertTrue(symrp.issym())
self.assertEqual(symrp.getuidgid(), (2004, 2004))
def test_ownership_mapping(self):
"""Test --user-mapping-file and --group-mapping-file options"""
def write_ownership_dir():
"""Write the directory testfiles/root_mapping"""
rp = rpath.RPath(Globals.local_connection,
os.path.join(abs_test_dir, b"root_mapping"))
re_init_rpath_dir(rp)
rp1 = rp.append('1')
rp1.touch()
rp2 = rp.append('2')
rp2.touch()
rp2.chown(userid, 1) # use groupid 1, usually bin
return rp
def write_mapping_files(dir_rp):
"""Write user and group mapping files, return paths"""
user_map_rp = dir_rp.append('user_map')
group_map_rp = dir_rp.append('group_map')
user_map_rp.write_string('root:%s\n%s:root' % (user, user))
group_map_rp.write_string('0:1')
return user_map_rp.path, group_map_rp.path
def get_ownership(dir_rp):
"""Return pair (ids of dir_rp/1, ids of dir_rp2) of ids"""
rp1, rp2 = list(map(dir_rp.append, ('1', '2')))
self.assertTrue(rp1.isreg())
self.assertTrue(rp2.isreg())
return (rp1.getuidgid(), rp2.getuidgid())
in_rp = write_ownership_dir()
user_map, group_map = write_mapping_files(in_rp)
out_rp = rpath.RPath(Globals.local_connection, abs_output_dir)
if out_rp.lstat():
Myrm(out_rp.path)
self.assertEqual(get_ownership(in_rp), ((0, 0), (userid, 1)))
rdiff_backup(1,
0,
in_rp.path,
out_rp.path,
extra_options=(b"--user-mapping-file %b "
b"--group-mapping-file %b" %
(user_map, group_map)))
self.assertEqual(get_ownership(out_rp), ((userid, 0), (0, 1)))
def test_numerical_mapping(self):
"""Test --preserve-numerical-ids option
This doesn't really test much, since we don't have a
convenient system with different uname/ids.
"""
def write_ownership_dir():
"""Write the directory testfiles/root_mapping"""
rp = rpath.RPath(Globals.local_connection,
os.path.join(abs_test_dir, b"root_mapping"))
re_init_rpath_dir(rp)
rp1 = rp.append('1')
rp1.touch()
rp2 = rp.append('2')
rp2.touch()
rp2.chown(userid, 1) # use groupid 1, usually bin
return rp
def get_ownership(dir_rp):
"""Return pair (ids of dir_rp/1, ids of dir_rp2) of ids"""
rp1, rp2 = list(map(dir_rp.append, ('1', '2')))
self.assertTrue(rp1.isreg())
self.assertTrue(rp2.isreg())
return (rp1.getuidgid(), rp2.getuidgid())
in_rp = write_ownership_dir()
out_rp = rpath.RPath(Globals.local_connection, abs_output_dir)
if out_rp.lstat():
Myrm(out_rp.path)
self.assertEqual(get_ownership(in_rp), ((0, 0), (userid, 1)))
rdiff_backup(1,
0,
in_rp.path,
out_rp.path,
extra_options=(b"--preserve-numerical-ids"))
self.assertEqual(get_ownership(out_rp), ((0, 0), (userid, 1)))
class HalfRoot(BaseRootTest):
"""Backing up files where origin is root and destination is non-root"""
def make_dirs(self):
"""Make source directories, return rpaths
These make a directory with a changing file that is not
self-readable. (Caused problems earlier.)
"""
rp1 = rpath.RPath(Globals.local_connection,
os.path.join(abs_test_dir, b"root_half1"))
re_init_rpath_dir(rp1)
rp1_1 = rp1.append('foo')
rp1_1.write_string('hello')
rp1_1.chmod(0)
rp1_2 = rp1.append('to be deleted')
rp1_2.write_string('aosetuhaosetnuhontu')
rp1_2.chmod(0)
rp1_3 = rp1.append('unreadable_dir')
rp1_3.mkdir()
rp1_3_1 = rp1_3.append('file_inside')
rp1_3_1.write_string('blah')
rp1_3_1.chmod(0)
rp1_3_2 = rp1_3.append('subdir_inside')
rp1_3_2.mkdir()
rp1_3_2_1 = rp1_3_2.append('foo')
rp1_3_2_1.write_string('saotnhu')
rp1_3_2_1.chmod(0)
rp1_3_2.chmod(0)
rp1_3.chmod(0)
rp2 = rpath.RPath(Globals.local_connection,
os.path.join(abs_test_dir, b"root_half2"))
re_init_rpath_dir(rp2)
rp2_1 = rp2.append('foo')
rp2_1.write_string('goodbye')
rp2_1.chmod(0)
rp2_3 = rp2.append('unreadable_dir')
rp2_3.mkdir()
rp2_3_1 = rp2_3.append('file_inside')
rp2_3_1.write_string('new string')
rp2_3_1.chmod(0)
rp2_3_2 = rp2_3.append('subdir_inside')
rp2_3_2.mkdir()
rp2_3_2_1 = rp2_3_2.append('foo')
rp2_3_2_1.write_string('asoetn;oet')
rp2_3_2_1.chmod(0)
rp2_3_2.chmod(0)
rp2_3_3 = rp2_3.append('file2')
rp2_3_3.touch()
rp2_3.chmod(0)
# The rp_2_4 below test for a perm error, also tested in
# regressiontest.py testConfig1
rp2_4 = rp2.append('test2')
rp2_4.mkdir()
rp2_4_1 = rp2_4.append('1-dir')
rp2_4_1.mkdir()
reg2_4_1_1 = rp2_4_1.append('reg')
reg2_4_1_1.touch()
reg2_4_1_1.chmod(0)
rp2_4_1.chmod(0)
reg2_4_2 = rp2_4.append('2-reg')
reg2_4_2.touch()
reg2_4_2.chmod(0)
rp2_4.chmod(0)
return rp1, rp2
def cause_regress(self, rp):
"""Change some of the above to trigger regress"""
rp1_1 = rp.append('foo')
rp1_1.chmod(0o4)
rp_new = rp.append('lala')
rp_new.write_string('asoentuh')
rp_new.chmod(0)
self.assertEqual(
os_system(b'chown %s %s' % (user.encode(), rp_new.path)), 0)
rp1_3 = rp.append('unreadable_dir')
rp1_3.chmod(0o700)
rp1_3_1 = rp1_3.append('file_inside')
rp1_3_1.chmod(0o1)
rp1_3.chmod(0)
rbdir = rp.append('rdiff-backup-data')
rbdir.append('current_mirror.2000-12-31T21:33:20-07:00.data').touch()
def test_backup(self):
"""Test back up, simple restores"""
in_rp1, in_rp2 = self.make_dirs()
outrp = rpath.RPath(Globals.local_connection, abs_output_dir)
re_init_rpath_dir(outrp, userid)
remote_schema = b'su -c "%s server" %s' % (RBBin, user.encode())
cmd_schema = (RBBin + b" --current-time %i --remote-schema '{h}' %b '%b'::%b")
cmd1 = cmd_schema % (10000, in_rp1.path, remote_schema, outrp.path)
self._run_cmd(cmd1)
in_rp1.setdata()
outrp.setdata()
cmd2 = cmd_schema % (20000, in_rp2.path, remote_schema, outrp.path)
self._run_cmd(cmd2)
in_rp2.setdata()
outrp.setdata()
rout_rp = rpath.RPath(Globals.local_connection, abs_restore_dir)
restore_schema = (RBBin + b" -r %b --remote-schema '{h}' '%b'::%b %b")
Myrm(rout_rp.path)
cmd3 = restore_schema % (b'10000', remote_schema, outrp.path,
rout_rp.path)
self._run_cmd(cmd3)
self.assertTrue(compare_recursive(in_rp1, rout_rp))
rout_perms = rout_rp.append('unreadable_dir').getperms()
outrp_perms = outrp.append('unreadable_dir').getperms()
self.assertEqual(rout_perms, 0)
self.assertEqual(outrp_perms, 0)
Myrm(rout_rp.path)
cmd4 = restore_schema % (b"now", remote_schema, outrp.path,
rout_rp.path)
self._run_cmd(cmd4)
self.assertTrue(compare_recursive(in_rp2, rout_rp))
rout_perms = rout_rp.append('unreadable_dir').getperms()
outrp_perms = outrp.append('unreadable_dir').getperms()
self.assertEqual(rout_perms, 0)
self.assertEqual(outrp_perms, 0)
self.cause_regress(outrp)
cmd5 = (b'su -c "%s --check-destination-dir %s" %s' %
(RBBin, outrp.path, user.encode()))
self._run_cmd(cmd5, Globals.RET_CODE_WARN)
class NonRoot(BaseRootTest):
"""Test backing up as non-root user
Test backing up a directory with files of different userids and
with device files in it, as a non-root user. When restoring as
root, everything should be restored normally.
"""
def make_root_dirs(self):
"""Make directory createable only by root"""
rp = rpath.RPath(Globals.local_connection,
os.path.join(abs_test_dir, b"root_out1"))
re_init_rpath_dir(rp)
rp1 = rp.append("1")
rp1.touch()
rp2 = rp.append("2")
rp2.touch()
rp2.chown(1, 1)
rp3 = rp.append("3")
rp3.touch()
rp3.chown(2, 2)
rp4 = rp.append("dev")
rp4.makedev('c', 4, 28)
sp = rpath.RPath(Globals.local_connection,
os.path.join(abs_test_dir, b"root_out2"))
if sp.lstat():
Myrm(sp.path)
xcopytree(rp.path, sp.path)
rp2 = sp.append("2")
rp2.chown(2, 2)
rp3 = sp.append("3")
rp3.chown(1, 1)
self.assertFalse(compare_recursive(rp, sp, compare_ownership=1))
return rp, sp
def backup(self, input_rp, output_rp, time):
global user
backup_cmd = (b"%s --no-compare-inode --current-time %i %b %b" % (
RBBin, time, input_rp.path, output_rp.path))
self._run_cmd(b"su %s -c '%s'" % (user.encode(), backup_cmd))
def restore(self, dest_rp, restore_rp, time=None):
Myrm(restore_rp.path)
if time is None or time == "now":
restore_cmd = b"%s -r now %b %b" % (
RBBin, dest_rp.path, restore_rp.path)
else:
restore_cmd = b"%s -r %i %b %b" % (
RBBin, time, dest_rp.path, restore_rp.path)
self._run_cmd(restore_cmd)
def test_non_root(self):
"""Main non-root -> root test"""
input_rp1, input_rp2 = self.make_root_dirs()
Globals.change_ownership = 1
output_rp = rpath.RPath(Globals.local_connection, abs_output_dir)
re_init_rpath_dir(output_rp, userid)
restore_rp = rpath.RPath(Globals.local_connection, abs_restore_dir)
empty_rp = rpath.RPath(Globals.local_connection,
os.path.join(old_test_dir, b"empty"))
self.backup(input_rp1, output_rp, 1000000)
self.restore(output_rp, restore_rp)
self.assertTrue(
compare_recursive(input_rp1, restore_rp, compare_ownership=1))
self.backup(input_rp2, output_rp, 2000000)
self.restore(output_rp, restore_rp)
self.assertTrue(
compare_recursive(input_rp2, restore_rp, compare_ownership=1))
self.backup(empty_rp, output_rp, 3000000)
self.restore(output_rp, restore_rp)
self.assertTrue(
compare_recursive(empty_rp, restore_rp, compare_ownership=1))
self.restore(output_rp, restore_rp, 1000000)
self.assertTrue(
compare_recursive(input_rp1, restore_rp, compare_ownership=1))
self.restore(output_rp, restore_rp, 2000000)
self.assertTrue(
compare_recursive(input_rp2, restore_rp, compare_ownership=1))
if __name__ == "__main__":
unittest.main()
|