2014-04-28 00:00:15 +02:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2021-10-31 23:08:13 +01:00
|
|
|
"context"
|
2020-02-26 22:17:59 +01:00
|
|
|
"strings"
|
2020-02-20 21:54:31 +01:00
|
|
|
"time"
|
2020-02-26 22:17:59 +01:00
|
|
|
|
2017-07-23 14:21:03 +02:00
|
|
|
"github.com/restic/restic/internal/debug"
|
|
|
|
"github.com/restic/restic/internal/errors"
|
|
|
|
"github.com/restic/restic/internal/filter"
|
2017-07-24 17:42:25 +02:00
|
|
|
"github.com/restic/restic/internal/restic"
|
2018-05-10 22:56:10 -04:00
|
|
|
"github.com/restic/restic/internal/restorer"
|
2022-10-28 17:44:34 +02:00
|
|
|
"github.com/restic/restic/internal/ui"
|
|
|
|
restoreui "github.com/restic/restic/internal/ui/restore"
|
|
|
|
"github.com/restic/restic/internal/ui/termstatus"
|
2016-09-17 12:36:05 +02:00
|
|
|
|
|
|
|
"github.com/spf13/cobra"
|
2014-04-28 00:00:15 +02:00
|
|
|
)
|
|
|
|
|
2016-09-17 12:36:05 +02:00
|
|
|
var cmdRestore = &cobra.Command{
|
|
|
|
Use: "restore [flags] snapshotID",
|
2017-09-11 09:32:44 -07:00
|
|
|
Short: "Extract the data from a snapshot",
|
2016-09-17 12:36:05 +02:00
|
|
|
Long: `
|
|
|
|
The "restore" command extracts the data from a snapshot from the repository to
|
|
|
|
a directory.
|
|
|
|
|
2023-08-05 12:35:45 +02:00
|
|
|
The special snapshotID "latest" can be used to restore the latest snapshot in the
|
2016-09-17 12:36:05 +02:00
|
|
|
repository.
|
2019-11-04 22:03:38 -08:00
|
|
|
|
2023-08-05 12:35:08 +02:00
|
|
|
To only restore a specific subfolder, you can use the "<snapshotID>:<subfolder>"
|
|
|
|
syntax, where "subfolder" is a path within the snapshot.
|
|
|
|
|
2019-11-04 22:03:38 -08:00
|
|
|
EXIT STATUS
|
|
|
|
===========
|
|
|
|
|
|
|
|
Exit status is 0 if the command was successful, and non-zero if there was any error.
|
2016-09-17 12:36:05 +02:00
|
|
|
`,
|
2017-08-06 21:02:16 +02:00
|
|
|
DisableAutoGenTag: true,
|
2016-09-17 12:36:05 +02:00
|
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
2024-01-20 18:12:36 +01:00
|
|
|
term, cancel := setupTermstatus()
|
2024-01-20 18:10:11 +01:00
|
|
|
defer cancel()
|
|
|
|
return runRestore(cmd.Context(), restoreOptions, globalOptions, term, args)
|
2016-09-17 12:36:05 +02:00
|
|
|
},
|
|
|
|
}
|
2015-07-20 00:38:44 +02:00
|
|
|
|
2016-09-17 12:36:05 +02:00
|
|
|
// RestoreOptions collects all options for the restore command.
|
|
|
|
type RestoreOptions struct {
|
2018-10-16 22:39:55 +02:00
|
|
|
Exclude []string
|
|
|
|
InsensitiveExclude []string
|
|
|
|
Include []string
|
|
|
|
InsensitiveInclude []string
|
|
|
|
Target string
|
2023-02-17 16:13:46 +01:00
|
|
|
restic.SnapshotFilter
|
2022-08-07 17:26:46 +02:00
|
|
|
Sparse bool
|
2022-09-03 00:19:19 +02:00
|
|
|
Verify bool
|
2015-06-21 13:02:56 +02:00
|
|
|
}
|
2014-12-07 16:30:52 +01:00
|
|
|
|
2016-09-17 12:36:05 +02:00
|
|
|
var restoreOptions RestoreOptions
|
|
|
|
|
2014-11-30 22:39:58 +01:00
|
|
|
func init() {
|
2016-09-17 12:36:05 +02:00
|
|
|
cmdRoot.AddCommand(cmdRestore)
|
2014-12-07 16:30:52 +01:00
|
|
|
|
2016-09-17 12:36:05 +02:00
|
|
|
flags := cmdRestore.Flags()
|
2017-07-07 03:19:06 +02:00
|
|
|
flags.StringArrayVarP(&restoreOptions.Exclude, "exclude", "e", nil, "exclude a `pattern` (can be specified multiple times)")
|
2023-07-29 20:14:09 +02:00
|
|
|
flags.StringArrayVar(&restoreOptions.InsensitiveExclude, "iexclude", nil, "same as --exclude but ignores the casing of `pattern`")
|
2017-07-07 03:19:06 +02:00
|
|
|
flags.StringArrayVarP(&restoreOptions.Include, "include", "i", nil, "include a `pattern`, exclude everything else (can be specified multiple times)")
|
2023-07-29 20:14:09 +02:00
|
|
|
flags.StringArrayVar(&restoreOptions.InsensitiveInclude, "iinclude", nil, "same as --include but ignores the casing of `pattern`")
|
2016-09-17 12:36:05 +02:00
|
|
|
flags.StringVarP(&restoreOptions.Target, "target", "t", "", "directory to extract data to")
|
|
|
|
|
2023-02-17 16:13:46 +01:00
|
|
|
initSingleSnapshotFilter(flags, &restoreOptions.SnapshotFilter)
|
2022-09-04 11:23:31 +02:00
|
|
|
flags.BoolVar(&restoreOptions.Sparse, "sparse", false, "restore files as sparse")
|
2018-04-13 10:02:09 -04:00
|
|
|
flags.BoolVar(&restoreOptions.Verify, "verify", false, "verify restored files content")
|
2014-11-30 22:39:58 +01:00
|
|
|
}
|
|
|
|
|
2022-10-28 17:44:34 +02:00
|
|
|
func runRestore(ctx context.Context, opts RestoreOptions, gopts GlobalOptions,
|
|
|
|
term *termstatus.Terminal, args []string) error {
|
|
|
|
|
2018-10-16 22:39:55 +02:00
|
|
|
hasExcludes := len(opts.Exclude) > 0 || len(opts.InsensitiveExclude) > 0
|
|
|
|
hasIncludes := len(opts.Include) > 0 || len(opts.InsensitiveInclude) > 0
|
2017-06-04 11:16:55 +02:00
|
|
|
|
2022-05-20 16:06:25 +02:00
|
|
|
// Validate provided patterns
|
|
|
|
if len(opts.Exclude) > 0 {
|
2022-09-09 22:29:05 +02:00
|
|
|
if err := filter.ValidatePatterns(opts.Exclude); err != nil {
|
|
|
|
return errors.Fatalf("--exclude: %s", err)
|
2022-05-20 16:06:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if len(opts.InsensitiveExclude) > 0 {
|
2022-09-09 22:29:05 +02:00
|
|
|
if err := filter.ValidatePatterns(opts.InsensitiveExclude); err != nil {
|
|
|
|
return errors.Fatalf("--iexclude: %s", err)
|
2022-05-20 16:06:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if len(opts.Include) > 0 {
|
2022-09-09 22:29:05 +02:00
|
|
|
if err := filter.ValidatePatterns(opts.Include); err != nil {
|
|
|
|
return errors.Fatalf("--include: %s", err)
|
2022-05-20 16:06:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if len(opts.InsensitiveInclude) > 0 {
|
2022-09-09 22:29:05 +02:00
|
|
|
if err := filter.ValidatePatterns(opts.InsensitiveInclude); err != nil {
|
|
|
|
return errors.Fatalf("--iinclude: %s", err)
|
2022-05-20 16:06:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-19 10:59:48 +00:00
|
|
|
for i, str := range opts.InsensitiveExclude {
|
|
|
|
opts.InsensitiveExclude[i] = strings.ToLower(str)
|
|
|
|
}
|
|
|
|
|
|
|
|
for i, str := range opts.InsensitiveInclude {
|
|
|
|
opts.InsensitiveInclude[i] = strings.ToLower(str)
|
|
|
|
}
|
|
|
|
|
2018-01-06 22:44:18 +01:00
|
|
|
switch {
|
|
|
|
case len(args) == 0:
|
2017-02-10 19:39:49 +01:00
|
|
|
return errors.Fatal("no snapshot ID specified")
|
2018-01-06 22:44:18 +01:00
|
|
|
case len(args) > 1:
|
|
|
|
return errors.Fatalf("more than one snapshot ID specified: %v", args)
|
2014-12-07 16:30:52 +01:00
|
|
|
}
|
|
|
|
|
2016-09-17 12:36:05 +02:00
|
|
|
if opts.Target == "" {
|
2016-09-01 22:17:37 +02:00
|
|
|
return errors.Fatal("please specify a directory to restore to (--target)")
|
2015-07-20 00:38:44 +02:00
|
|
|
}
|
|
|
|
|
2018-10-16 22:39:55 +02:00
|
|
|
if hasExcludes && hasIncludes {
|
2016-09-01 22:17:37 +02:00
|
|
|
return errors.Fatal("exclude and include patterns are mutually exclusive")
|
2015-07-20 19:20:20 +02:00
|
|
|
}
|
|
|
|
|
2015-07-20 00:38:44 +02:00
|
|
|
snapshotIDString := args[0]
|
|
|
|
|
2016-09-27 22:35:08 +02:00
|
|
|
debug.Log("restore %v to %v", snapshotIDString, opts.Target)
|
2015-07-20 00:38:44 +02:00
|
|
|
|
2024-02-24 15:19:02 +01:00
|
|
|
ctx, repo, unlock, err := openWithReadLock(ctx, gopts, gopts.NoLock)
|
2014-12-07 16:30:52 +01:00
|
|
|
if err != nil {
|
|
|
|
return err
|
2014-04-28 00:00:15 +02:00
|
|
|
}
|
2024-02-24 15:19:02 +01:00
|
|
|
defer unlock()
|
2015-06-27 14:40:18 +02:00
|
|
|
|
2023-07-16 16:50:54 +02:00
|
|
|
sn, subfolder, err := (&restic.SnapshotFilter{
|
2023-02-17 16:13:46 +01:00
|
|
|
Hosts: opts.Hosts,
|
|
|
|
Paths: opts.Paths,
|
|
|
|
Tags: opts.Tags,
|
2023-10-01 13:05:56 +02:00
|
|
|
}).FindLatest(ctx, repo, repo, snapshotIDString)
|
2022-10-03 14:16:33 +02:00
|
|
|
if err != nil {
|
2022-12-28 21:42:38 +01:00
|
|
|
return errors.Fatalf("failed to find snapshot: %v", err)
|
2014-04-28 00:00:15 +02:00
|
|
|
}
|
|
|
|
|
2023-10-01 19:38:09 +02:00
|
|
|
bar := newIndexTerminalProgress(gopts.Quiet, gopts.JSON, term)
|
2023-07-15 22:48:30 -04:00
|
|
|
err = repo.LoadIndex(ctx, bar)
|
2021-11-06 00:32:46 +01:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2023-07-16 16:50:54 +02:00
|
|
|
sn.Tree, err = restic.FindTreeDirectory(ctx, repo, sn.Tree, subfolder)
|
2023-05-18 23:15:38 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2023-05-13 23:23:39 +02:00
|
|
|
msg := ui.NewMessage(term, gopts.verbosity)
|
2023-05-01 12:01:03 +02:00
|
|
|
var printer restoreui.ProgressPrinter
|
|
|
|
if gopts.JSON {
|
|
|
|
printer = restoreui.NewJSONProgress(term)
|
|
|
|
} else {
|
|
|
|
printer = restoreui.NewTextProgress(term)
|
2022-10-28 17:44:34 +02:00
|
|
|
}
|
|
|
|
|
2023-05-01 12:01:03 +02:00
|
|
|
progress := restoreui.NewProgress(printer, calculateProgressInterval(!gopts.Quiet, gopts.JSON))
|
2023-05-18 19:21:28 +02:00
|
|
|
res := restorer.NewRestorer(repo, sn, opts.Sparse, progress)
|
2014-08-04 22:46:14 +02:00
|
|
|
|
2017-03-12 16:39:37 +01:00
|
|
|
totalErrors := 0
|
2018-09-14 20:55:30 -04:00
|
|
|
res.Error = func(location string, err error) error {
|
2023-05-13 23:23:39 +02:00
|
|
|
msg.E("ignoring error for %s: %s\n", location, err)
|
2017-03-12 16:39:37 +01:00
|
|
|
totalErrors++
|
2015-07-25 12:58:55 +02:00
|
|
|
return nil
|
2014-04-28 00:00:15 +02:00
|
|
|
}
|
2024-02-22 17:52:26 -07:00
|
|
|
res.Warn = func(message string) {
|
|
|
|
msg.E("Warning: %s\n", message)
|
|
|
|
}
|
2014-04-28 00:00:15 +02:00
|
|
|
|
2020-10-07 14:39:51 +02:00
|
|
|
excludePatterns := filter.ParsePatterns(opts.Exclude)
|
|
|
|
insensitiveExcludePatterns := filter.ParsePatterns(opts.InsensitiveExclude)
|
2024-02-10 22:58:10 +01:00
|
|
|
selectExcludeFilter := func(item string, _ string, node *restic.Node) (selectedForRestore bool, childMayBeSelected bool) {
|
2020-10-07 19:46:41 +02:00
|
|
|
matched, err := filter.List(excludePatterns, item)
|
2015-07-20 00:38:44 +02:00
|
|
|
if err != nil {
|
2023-05-13 23:23:39 +02:00
|
|
|
msg.E("error for exclude pattern: %v", err)
|
2015-01-01 16:29:41 +01:00
|
|
|
}
|
2015-07-20 00:38:44 +02:00
|
|
|
|
2020-10-07 19:46:41 +02:00
|
|
|
matchedInsensitive, err := filter.List(insensitiveExcludePatterns, strings.ToLower(item))
|
2018-10-16 22:39:55 +02:00
|
|
|
if err != nil {
|
2023-05-13 23:23:39 +02:00
|
|
|
msg.E("error for iexclude pattern: %v", err)
|
2018-10-16 22:39:55 +02:00
|
|
|
}
|
|
|
|
|
2017-07-07 11:54:10 +02:00
|
|
|
// An exclude filter is basically a 'wildcard but foo',
|
|
|
|
// so even if a childMayMatch, other children of a dir may not,
|
|
|
|
// therefore childMayMatch does not matter, but we should not go down
|
|
|
|
// unless the dir is selected for restore
|
2018-10-16 22:39:55 +02:00
|
|
|
selectedForRestore = !matched && !matchedInsensitive
|
2017-07-07 11:54:10 +02:00
|
|
|
childMayBeSelected = selectedForRestore && node.Type == "dir"
|
|
|
|
|
|
|
|
return selectedForRestore, childMayBeSelected
|
2015-07-20 00:38:44 +02:00
|
|
|
}
|
|
|
|
|
2020-10-07 14:39:51 +02:00
|
|
|
includePatterns := filter.ParsePatterns(opts.Include)
|
|
|
|
insensitiveIncludePatterns := filter.ParsePatterns(opts.InsensitiveInclude)
|
2024-02-10 22:58:10 +01:00
|
|
|
selectIncludeFilter := func(item string, _ string, node *restic.Node) (selectedForRestore bool, childMayBeSelected bool) {
|
2020-10-07 19:46:41 +02:00
|
|
|
matched, childMayMatch, err := filter.ListWithChild(includePatterns, item)
|
2015-07-20 19:20:20 +02:00
|
|
|
if err != nil {
|
2023-05-13 23:23:39 +02:00
|
|
|
msg.E("error for include pattern: %v", err)
|
2015-07-20 19:20:20 +02:00
|
|
|
}
|
|
|
|
|
2020-10-07 19:46:41 +02:00
|
|
|
matchedInsensitive, childMayMatchInsensitive, err := filter.ListWithChild(insensitiveIncludePatterns, strings.ToLower(item))
|
2018-10-16 22:39:55 +02:00
|
|
|
if err != nil {
|
2023-05-13 23:23:39 +02:00
|
|
|
msg.E("error for iexclude pattern: %v", err)
|
2018-10-16 22:39:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
selectedForRestore = matched || matchedInsensitive
|
|
|
|
childMayBeSelected = (childMayMatch || childMayMatchInsensitive) && node.Type == "dir"
|
2017-07-07 11:54:10 +02:00
|
|
|
|
|
|
|
return selectedForRestore, childMayBeSelected
|
2015-07-20 19:20:20 +02:00
|
|
|
}
|
|
|
|
|
2018-10-16 22:39:55 +02:00
|
|
|
if hasExcludes {
|
2015-07-20 19:20:20 +02:00
|
|
|
res.SelectFilter = selectExcludeFilter
|
2018-10-16 22:39:55 +02:00
|
|
|
} else if hasIncludes {
|
2015-07-20 19:20:20 +02:00
|
|
|
res.SelectFilter = selectIncludeFilter
|
2015-01-01 16:29:41 +01:00
|
|
|
}
|
|
|
|
|
2023-05-01 12:01:03 +02:00
|
|
|
if !gopts.JSON {
|
2023-05-13 23:23:39 +02:00
|
|
|
msg.P("restoring %s to %s\n", res.Snapshot(), opts.Target)
|
2023-05-01 12:01:03 +02:00
|
|
|
}
|
2014-04-28 00:00:15 +02:00
|
|
|
|
2018-05-11 00:45:14 -04:00
|
|
|
err = res.RestoreTo(ctx, opts.Target)
|
2021-01-05 09:13:15 +01:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2023-05-01 12:01:03 +02:00
|
|
|
progress.Finish()
|
2022-10-28 17:44:34 +02:00
|
|
|
|
2021-01-05 09:13:15 +01:00
|
|
|
if totalErrors > 0 {
|
|
|
|
return errors.Fatalf("There were %d errors\n", totalErrors)
|
|
|
|
}
|
|
|
|
|
|
|
|
if opts.Verify {
|
2023-05-01 12:01:03 +02:00
|
|
|
if !gopts.JSON {
|
2023-05-13 23:23:39 +02:00
|
|
|
msg.P("verifying files in %s\n", opts.Target)
|
2023-05-01 12:01:03 +02:00
|
|
|
}
|
2018-04-13 10:02:09 -04:00
|
|
|
var count int
|
2020-02-20 21:54:31 +01:00
|
|
|
t0 := time.Now()
|
2018-04-13 10:02:09 -04:00
|
|
|
count, err = res.VerifyFiles(ctx, opts.Target)
|
2021-01-05 09:13:15 +01:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if totalErrors > 0 {
|
|
|
|
return errors.Fatalf("There were %d errors\n", totalErrors)
|
|
|
|
}
|
2023-05-01 12:01:03 +02:00
|
|
|
|
|
|
|
if !gopts.JSON {
|
2023-05-13 23:23:39 +02:00
|
|
|
msg.P("finished verifying %d files in %s (took %s)\n", count, opts.Target,
|
2023-05-01 12:01:03 +02:00
|
|
|
time.Since(t0).Round(time.Millisecond))
|
|
|
|
}
|
2018-04-13 10:02:09 -04:00
|
|
|
}
|
2021-01-05 09:13:15 +01:00
|
|
|
|
|
|
|
return nil
|
2014-04-28 00:00:15 +02:00
|
|
|
}
|