Skip to content

Commit

Permalink
Merge pull request #8530 from ThomasWaldmann/mount-fixes
Browse files Browse the repository at this point in the history
mount: fix check_pending_archive to give correct root dir, fixes #8528
  • Loading branch information
ThomasWaldmann authored Nov 7, 2024
2 parents 2dffc60 + f515160 commit e9ace2d
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions src/borg/fuse.py
Original file line number Diff line number Diff line change
Expand Up @@ -273,23 +273,27 @@ def __init__(self, manifest, args, decrypted_repository):
self.uid_forced = None
self.gid_forced = None
self.umask = 0
self.archive_root_dir = {} # archive ID --> directory name

def _create_filesystem(self):
self._create_dir(parent=1) # first call, create root dir (inode == 1)
self.versions_index = FuseVersionsIndex()
archives = self._manifest.archives.list_considering(self._args)
name_counter = Counter(a.name for a in archives)
duplicate_names = {a.name for a in archives if name_counter[a.name] > 1}
for archive in archives:
name = f"{archive.name}"
if name in duplicate_names:
name += f"-{bin_to_hex(archive.id):.8}"
self.archive_root_dir[archive.id] = name
for archive in archives:
if self.versions:
# process archives immediately
self._process_archive(archive.id)
else:
# lazily load archives, create archive placeholder inode
archive_inode = self._create_dir(parent=1, mtime=int(archive.ts.timestamp() * 1e9))
name = f"{archive.name}"
if name in duplicate_names:
name += f"-{bin_to_hex(archive.id):.8}"
name = self.archive_root_dir[archive.id]
self.contents[1][os.fsencode(name)] = archive_inode
self.pending_archives[archive_inode] = archive

Expand All @@ -310,7 +314,7 @@ def check_pending_archive(self, inode):
# Check if this is an archive we need to load
archive_info = self.pending_archives.pop(inode, None)
if archive_info is not None:
self._process_archive(archive_info.id, [os.fsencode(archive_info.name)])
self._process_archive(archive_info.id, [os.fsencode(self.archive_root_dir[archive_info.id])])

def _allocate_inode(self):
self.inode_count += 1
Expand Down

0 comments on commit e9ace2d

Please sign in to comment.