1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2024-12-26 01:37:20 +00:00

Hard link support and some stat restore fixes

This commit is contained in:
Jonas Borgström 2010-10-20 22:53:58 +02:00
parent 63c9966f12
commit afdabb623a

View file

@ -22,6 +22,7 @@ def __init__(self, store, cache, name=None):
self.items = [] self.items = []
self.chunks = [] self.chunks = []
self.chunk_idx = {} self.chunk_idx = {}
self.hard_links = {}
if name: if name:
self.open(name) self.open(name)
@ -80,6 +81,7 @@ def list(self):
def extract(self, dest=None): def extract(self, dest=None):
dest = dest or os.getcwdu() dest = dest or os.getcwdu()
dir_stat_queue = []
for item in self.items: for item in self.items:
assert item['path'][0] not in ('/', '\\', ':') assert item['path'][0] not in ('/', '\\', ':')
path = os.path.join(dest, item['path'].decode('utf-8')) path = os.path.join(dest, item['path'].decode('utf-8'))
@ -87,11 +89,25 @@ def extract(self, dest=None):
logging.info(path) logging.info(path)
if not os.path.exists(path): if not os.path.exists(path):
os.makedirs(path) os.makedirs(path)
dir_stat_queue.append((path, item))
continue
elif item['type'] == 'SYMLINK': elif item['type'] == 'SYMLINK':
logging.info('%s => %s', path, item['source'])
if not os.path.exists(os.path.dirname(path)): if not os.path.exists(os.path.dirname(path)):
os.makedirs(os.path.dirname(path)) os.makedirs(os.path.dirname(path))
os.symlink(item['source'], path) source = item['source']
logging.info('%s -> %s', path, source)
if os.path.exists(path):
os.unlink(path)
os.symlink(source, path)
self.restore_stat(path, item, call_utime=False)
elif item['type'] == 'HARDLINK':
if not os.path.exists(os.path.dirname(path)):
os.makedirs(os.path.dirname(path))
source = os.path.join(dest, item['source'])
logging.info('%s => %s', path, source)
if os.path.exists(path):
os.unlink(path)
os.link(source, path)
elif item['type'] == 'FILE': elif item['type'] == 'FILE':
logging.info(path) logging.info(path)
if not os.path.exists(os.path.dirname(path)): if not os.path.exists(os.path.dirname(path)):
@ -106,13 +122,22 @@ def extract(self, dest=None):
raise Exception('Invalid chunk checksum') raise Exception('Invalid chunk checksum')
data = zlib.decompress(data) data = zlib.decompress(data)
fd.write(data) fd.write(data)
os.chmod(path, item['mode']) self.restore_stat(path, item)
else:
raise Exception('Unknown archive item type %r' % item['type'])
if dir_stat_queue and not path.startswith(dir_stat_queue[-1][0]):
self.restore_stat(*dir_stat_queue.pop())
def restore_stat(self, path, item, call_utime=True):
os.lchmod(path, item['mode'])
uid = user2uid(item['user']) or item['uid'] uid = user2uid(item['user']) or item['uid']
gid = group2gid(item['group']) or item['gid'] gid = group2gid(item['group']) or item['gid']
try: try:
os.chown(path, uid, gid) os.lchown(path, uid, gid)
except OSError: except OSError:
pass pass
if call_utime:
# FIXME: We should really call futimes here (c extension required)
os.utime(path, (item['ctime'], item['mtime'])) os.utime(path, (item['ctime'], item['mtime']))
def verify(self): def verify(self):
@ -140,12 +165,11 @@ def delete(self, cache):
def _walk(self, path): def _walk(self, path):
st = os.lstat(path) st = os.lstat(path)
yield path, st
if stat.S_ISDIR(st.st_mode): if stat.S_ISDIR(st.st_mode):
for f in os.listdir(path): for f in os.listdir(path):
for x in self._walk(os.path.join(path, f)): for x in self._walk(os.path.join(path, f)):
yield x yield x
else:
yield path, st
def create(self, name, paths, cache): def create(self, name, paths, cache):
if name in cache.archives: if name in cache.archives:
@ -155,7 +179,7 @@ def create(self, name, paths, cache):
if stat.S_ISDIR(st.st_mode): if stat.S_ISDIR(st.st_mode):
self.process_dir(path, st) self.process_dir(path, st)
elif stat.S_ISLNK(st.st_mode): elif stat.S_ISLNK(st.st_mode):
self.process_link(path, st) self.process_symlink(path, st)
elif stat.S_ISREG(st.st_mode): elif stat.S_ISREG(st.st_mode):
self.process_file(path, st) self.process_file(path, st)
else: else:
@ -167,30 +191,50 @@ def create(self, name, paths, cache):
def process_dir(self, path, st): def process_dir(self, path, st):
path = path.lstrip('/\\:') path = path.lstrip('/\\:')
logging.info(path) logging.info(path)
self.items.append({'type': 'DIRECTORY', 'path': path}) self.items.append({
'type': 'DIRECTORY', 'path': path,
'mode': st.st_mode,
'uid': st.st_uid, 'user': uid2user(st.st_uid),
'gid': st.st_gid, 'group': gid2group(st.st_gid),
'ctime': st.st_ctime, 'mtime': st.st_mtime,
})
def process_link(self, path, st): def process_symlink(self, path, st):
source = os.readlink(path) source = os.readlink(path)
path = path.lstrip('/\\:') path = path.lstrip('/\\:')
logging.info('%s => %s', path, source) logging.info('%s -> %s', path, source)
self.items.append({'type': 'SYMLINK', 'path': path, 'source': source}) self.items.append({
'type': 'SYMLINK', 'path': path, 'source': source,
'mode': st.st_mode,
'uid': st.st_uid, 'user': uid2user(st.st_uid),
'gid': st.st_gid, 'group': gid2group(st.st_gid),
'ctime': st.st_ctime, 'mtime': st.st_mtime,
})
def process_file(self, path, st): def process_file(self, path, st):
safe_path = path.lstrip('/\\:')
if st.st_nlink > 1:
source = self.hard_links.get((st.st_ino, st.st_dev))
if (st.st_ino, st.st_dev) in self.hard_links:
logging.info('%s => %s', path, source)
self.items.append({ 'type': 'HARDLINK',
'path': path, 'source': source})
return
else:
self.hard_links[st.st_ino, st.st_dev] = safe_path
try: try:
fd = open(path, 'rb') fd = open(path, 'rb')
except IOError, e: except IOError, e:
logging.error(e) logging.error(e)
return return
with fd: with fd:
path = path.lstrip('/\\:') logging.info(safe_path)
logging.info(path)
chunks = [] chunks = []
size = 0 size = 0
for chunk in chunkify(fd, CHUNK_SIZE, 30): for chunk in chunkify(fd, CHUNK_SIZE, 30):
chunks.append(self.process_chunk(chunk)) chunks.append(self.process_chunk(chunk))
size += len(chunk) size += len(chunk)
self.items.append({ self.items.append({
'type': 'FILE', 'path': path, 'chunks': chunks, 'size': size, 'type': 'FILE', 'path': safe_path, 'chunks': chunks, 'size': size,
'mode': st.st_mode, 'mode': st.st_mode,
'uid': st.st_uid, 'user': uid2user(st.st_uid), 'uid': st.st_uid, 'user': uid2user(st.st_uid),
'gid': st.st_gid, 'group': gid2group(st.st_gid), 'gid': st.st_gid, 'group': gid2group(st.st_gid),
@ -208,5 +252,3 @@ def process_chunk(self, data):
self.chunk_idx[idx] = id self.chunk_idx[idx] = id
return idx return idx