mirror of
https://github.com/octoleo/restic.git
synced 2024-11-02 19:49:44 +00:00
Fix crash at restoring pre-existing hardlinked files
Remove target file, ignore non existing file errors. Small memory saving: Only keep inodes around for files with a link count > 1. (We will/can never be asked to restore a hardlinked file with one of the files having a link count of 1.) Closes #836
This commit is contained in:
parent
8958efba60
commit
b56e16acd0
@ -227,6 +227,9 @@ func (node Node) createDirAt(path string) error {
|
|||||||
|
|
||||||
func (node Node) createFileAt(path string, repo Repository, idx *HardlinkIndex) error {
|
func (node Node) createFileAt(path string, repo Repository, idx *HardlinkIndex) error {
|
||||||
if node.Links > 1 && idx.Has(node.Inode, node.Device) {
|
if node.Links > 1 && idx.Has(node.Inode, node.Device) {
|
||||||
|
if err := fs.Remove(path); !os.IsNotExist(err) {
|
||||||
|
return errors.Wrap(err, "RemoveCreateHardlink")
|
||||||
|
}
|
||||||
err := fs.Link(idx.GetFilename(node.Inode, node.Device), path)
|
err := fs.Link(idx.GetFilename(node.Inode, node.Device), path)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return errors.Wrap(err, "CreateHardlink")
|
return errors.Wrap(err, "CreateHardlink")
|
||||||
@ -265,7 +268,9 @@ func (node Node) createFileAt(path string, repo Repository, idx *HardlinkIndex)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
idx.Add(node.Inode, node.Device, path)
|
if node.Links > 1 {
|
||||||
|
idx.Add(node.Inode, node.Device, path)
|
||||||
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user