2014-12-05 21:45:49 +01:00
|
|
|
package restic
|
2014-09-23 22:39:12 +02:00
|
|
|
|
|
|
|
import (
|
2017-06-04 11:16:55 +02:00
|
|
|
"context"
|
2014-09-23 22:39:12 +02:00
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
|
2017-07-23 14:21:03 +02:00
|
|
|
"github.com/restic/restic/internal/errors"
|
2016-08-21 17:48:36 +02:00
|
|
|
|
2017-07-23 14:21:03 +02:00
|
|
|
"github.com/restic/restic/internal/debug"
|
|
|
|
"github.com/restic/restic/internal/fs"
|
2014-09-23 22:39:12 +02:00
|
|
|
)
|
|
|
|
|
2015-05-02 15:23:28 +02:00
|
|
|
// Restorer is used to restore a snapshot to a directory.
|
2014-09-23 22:39:12 +02:00
|
|
|
type Restorer struct {
|
2016-08-31 20:29:54 +02:00
|
|
|
repo Repository
|
2015-05-09 13:32:52 +02:00
|
|
|
sn *Snapshot
|
2014-09-23 22:39:12 +02:00
|
|
|
|
2015-07-20 00:38:44 +02:00
|
|
|
Error func(dir string, node *Node, err error) error
|
2017-07-07 11:54:10 +02:00
|
|
|
SelectFilter func(item string, dstpath string, node *Node) (selectedForRestore bool, childMayBeSelected bool)
|
2014-09-23 22:39:12 +02:00
|
|
|
}
|
|
|
|
|
2015-04-29 21:41:51 -04:00
|
|
|
var restorerAbortOnAllErrors = func(str string, node *Node, err error) error { return err }
|
2015-04-29 20:59:06 -04:00
|
|
|
|
|
|
|
// NewRestorer creates a restorer preloaded with the content from the snapshot id.
|
2016-08-31 20:29:54 +02:00
|
|
|
func NewRestorer(repo Repository, id ID) (*Restorer, error) {
|
2015-07-08 22:35:41 +02:00
|
|
|
r := &Restorer{
|
|
|
|
repo: repo, Error: restorerAbortOnAllErrors,
|
2017-06-16 16:46:16 +02:00
|
|
|
SelectFilter: func(string, string, *Node) (bool, bool) { return true, true },
|
2015-07-08 22:35:41 +02:00
|
|
|
}
|
2014-09-23 22:39:12 +02:00
|
|
|
|
|
|
|
var err error
|
|
|
|
|
2017-06-04 11:16:55 +02:00
|
|
|
r.sn, err = LoadSnapshot(context.TODO(), repo, id)
|
2014-09-23 22:39:12 +02:00
|
|
|
if err != nil {
|
2016-08-21 17:24:13 +02:00
|
|
|
return nil, err
|
2014-09-23 22:39:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return r, nil
|
|
|
|
}
|
|
|
|
|
2017-11-26 15:17:12 +01:00
|
|
|
// restoreTo restores a tree from the repo to a destination. target is the path in
|
|
|
|
// the file system, location within the snapshot.
|
|
|
|
func (res *Restorer) restoreTo(ctx context.Context, target, location string, treeID ID, idx *HardlinkIndex) error {
|
2018-01-25 20:49:41 +01:00
|
|
|
debug.Log("%v %v %v", target, location, treeID)
|
2017-06-04 11:16:55 +02:00
|
|
|
tree, err := res.repo.LoadTree(ctx, treeID)
|
2014-09-23 22:39:12 +02:00
|
|
|
if err != nil {
|
2018-01-25 20:49:41 +01:00
|
|
|
debug.Log("error loading tree %v: %v", treeID, err)
|
2017-11-26 15:17:12 +01:00
|
|
|
return res.Error(location, nil, err)
|
2014-09-23 22:39:12 +02:00
|
|
|
}
|
|
|
|
|
2015-01-10 23:40:10 +01:00
|
|
|
for _, node := range tree.Nodes {
|
2017-11-26 15:17:12 +01:00
|
|
|
|
|
|
|
// ensure that the node name does not contain anything that refers to a
|
|
|
|
// top-level directory.
|
|
|
|
nodeName := filepath.Base(filepath.Join(string(filepath.Separator), node.Name))
|
|
|
|
if nodeName != node.Name {
|
|
|
|
debug.Log("node %q has invalid name %q", node.Name, nodeName)
|
|
|
|
err := res.Error(location, node, errors.New("node has invalid name"))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
nodeTarget := filepath.Join(target, nodeName)
|
|
|
|
nodeLocation := filepath.Join(location, nodeName)
|
|
|
|
|
|
|
|
if target == nodeTarget || !fs.HasPathPrefix(target, nodeTarget) {
|
2017-11-26 18:36:48 +01:00
|
|
|
debug.Log("target: %v %v", target, nodeTarget)
|
2017-11-26 15:17:12 +01:00
|
|
|
debug.Log("node %q has invalid target path %q", node.Name, nodeTarget)
|
|
|
|
err := res.Error(nodeLocation, node, errors.New("node has invalid path"))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2018-04-20 13:53:11 +02:00
|
|
|
// sockets cannot be restored
|
|
|
|
if node.Type == "socket" {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2017-11-26 15:17:12 +01:00
|
|
|
selectedForRestore, childMayBeSelected := res.SelectFilter(nodeLocation, nodeTarget, node)
|
2017-07-07 11:54:10 +02:00
|
|
|
debug.Log("SelectFilter returned %v %v", selectedForRestore, childMayBeSelected)
|
2015-07-08 20:29:27 +02:00
|
|
|
|
2017-07-07 11:54:10 +02:00
|
|
|
if node.Type == "dir" && childMayBeSelected {
|
2014-09-23 22:39:12 +02:00
|
|
|
if node.Subtree == nil {
|
2016-08-21 17:48:36 +02:00
|
|
|
return errors.Errorf("Dir without subtree in tree %v", treeID.Str())
|
2014-09-23 22:39:12 +02:00
|
|
|
}
|
|
|
|
|
2017-11-26 15:17:12 +01:00
|
|
|
err = res.restoreTo(ctx, nodeTarget, nodeLocation, *node.Subtree, idx)
|
2014-09-23 22:39:12 +02:00
|
|
|
if err != nil {
|
2017-11-26 15:17:12 +01:00
|
|
|
err = res.Error(nodeLocation, node, err)
|
2014-09-23 22:39:12 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
2018-01-07 15:13:24 +01:00
|
|
|
}
|
2014-09-23 22:39:12 +02:00
|
|
|
|
2018-01-07 15:13:24 +01:00
|
|
|
if selectedForRestore {
|
|
|
|
err = res.restoreNodeTo(ctx, node, nodeTarget, nodeLocation, idx)
|
|
|
|
if err != nil {
|
2018-04-20 13:53:11 +02:00
|
|
|
err = res.Error(nodeLocation, node, errors.Wrap(err, "restoreNodeTo"))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2018-01-07 15:13:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Restore directory timestamp at the end. If we would do it earlier, restoring files within
|
|
|
|
// the directory would overwrite the timestamp of the directory they are in.
|
|
|
|
err = node.RestoreTimestamps(nodeTarget)
|
|
|
|
if err != nil {
|
2018-04-20 13:53:11 +02:00
|
|
|
err = res.Error(nodeLocation, node, errors.Wrap(err, "RestoreTimestamps"))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-05-14 15:58:26 +02:00
|
|
|
}
|
2015-05-13 23:11:31 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-23 22:39:12 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-11-26 15:17:12 +01:00
|
|
|
func (res *Restorer) restoreNodeTo(ctx context.Context, node *Node, target, location string, idx *HardlinkIndex) error {
|
|
|
|
debug.Log("%v %v %v", node.Name, target, location)
|
2015-04-29 20:59:06 -04:00
|
|
|
|
2017-11-26 15:17:12 +01:00
|
|
|
err := node.CreateAt(ctx, target, res.repo, idx)
|
2015-07-06 23:59:28 +02:00
|
|
|
if err != nil {
|
2017-11-26 15:17:12 +01:00
|
|
|
debug.Log("node.CreateAt(%s) error %v", target, err)
|
2015-07-06 23:59:28 +02:00
|
|
|
}
|
2015-04-29 20:59:06 -04:00
|
|
|
|
|
|
|
// Did it fail because of ENOENT?
|
2016-08-29 19:18:57 +02:00
|
|
|
if err != nil && os.IsNotExist(errors.Cause(err)) {
|
2016-09-27 22:35:08 +02:00
|
|
|
debug.Log("create intermediate paths")
|
2015-08-17 11:01:24 +02:00
|
|
|
|
|
|
|
// Create parent directories and retry
|
2017-11-26 15:17:12 +01:00
|
|
|
err = fs.MkdirAll(filepath.Dir(target), 0700)
|
2016-08-29 21:38:34 +02:00
|
|
|
if err == nil || os.IsExist(errors.Cause(err)) {
|
2017-11-26 15:17:12 +01:00
|
|
|
err = node.CreateAt(ctx, target, res.repo, idx)
|
2015-04-29 20:59:06 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if err != nil {
|
2016-09-27 22:35:08 +02:00
|
|
|
debug.Log("error %v", err)
|
2017-11-26 15:17:12 +01:00
|
|
|
err = res.Error(location, node, err)
|
2015-04-29 20:59:06 -04:00
|
|
|
if err != nil {
|
2015-07-08 20:29:27 +02:00
|
|
|
return err
|
2015-04-29 20:59:06 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-08 20:29:27 +02:00
|
|
|
return nil
|
2015-04-29 20:59:06 -04:00
|
|
|
}
|
|
|
|
|
2017-03-02 14:52:18 +01:00
|
|
|
// RestoreTo creates the directories and files in the snapshot below dst.
|
2014-09-23 22:39:12 +02:00
|
|
|
// Before an item is created, res.Filter is called.
|
2017-06-04 11:16:55 +02:00
|
|
|
func (res *Restorer) RestoreTo(ctx context.Context, dst string) error {
|
2017-11-26 18:36:48 +01:00
|
|
|
var err error
|
|
|
|
if !filepath.IsAbs(dst) {
|
|
|
|
dst, err = filepath.Abs(dst)
|
|
|
|
if err != nil {
|
|
|
|
return errors.Wrap(err, "Abs")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-31 00:14:20 +01:00
|
|
|
idx := NewHardlinkIndex()
|
2017-06-04 11:16:55 +02:00
|
|
|
return res.restoreTo(ctx, dst, string(filepath.Separator), *res.sn.Tree, idx)
|
2014-09-23 22:39:12 +02:00
|
|
|
}
|
|
|
|
|
2015-05-02 15:23:28 +02:00
|
|
|
// Snapshot returns the snapshot this restorer is configured to use.
|
2014-09-23 22:39:12 +02:00
|
|
|
func (res *Restorer) Snapshot() *Snapshot {
|
|
|
|
return res.sn
|
|
|
|
}
|