restic/cmd/restic/cmd_cat.go

180 lines
3.6 KiB
Go
Raw Normal View History

2014-10-05 12:44:59 +00:00
package main
import (
"context"
2014-10-05 12:44:59 +00:00
"encoding/json"
2016-09-17 10:36:05 +00:00
"github.com/spf13/cobra"
2017-07-23 12:21:03 +00:00
"github.com/restic/restic/internal/backend"
"github.com/restic/restic/internal/errors"
"github.com/restic/restic/internal/repository"
2017-07-24 15:42:25 +00:00
"github.com/restic/restic/internal/restic"
2014-10-05 12:44:59 +00:00
)
2016-09-17 10:36:05 +00:00
var cmdCat = &cobra.Command{
Use: "cat [flags] [pack|blob|snapshot|index|key|masterkey|config|lock] ID",
Short: "Print internal objects to stdout",
2016-09-17 10:36:05 +00:00
Long: `
The "cat" command is used to print internal objects to stdout.
EXIT STATUS
===========
Exit status is 0 if the command was successful, and non-zero if there was any error.
2016-09-17 10:36:05 +00:00
`,
DisableAutoGenTag: true,
2016-09-17 10:36:05 +00:00
RunE: func(cmd *cobra.Command, args []string) error {
2022-10-02 21:24:37 +00:00
return runCat(cmd.Context(), globalOptions, args)
2016-09-17 10:36:05 +00:00
},
}
2014-12-07 15:30:52 +00:00
2014-11-30 21:39:58 +00:00
func init() {
2016-09-17 10:36:05 +00:00
cmdRoot.AddCommand(cmdCat)
2014-11-30 21:39:58 +00:00
}
func runCat(ctx context.Context, gopts GlobalOptions, args []string) error {
2015-05-03 15:37:21 +00:00
if len(args) < 1 || (args[0] != "masterkey" && args[0] != "config" && len(args) != 2) {
return errors.Fatal("type or ID not specified")
2014-12-07 15:30:52 +00:00
}
repo, err := OpenRepository(ctx, gopts)
2014-12-07 15:30:52 +00:00
if err != nil {
return err
2014-10-05 12:44:59 +00:00
}
2020-11-26 07:04:46 +00:00
if !gopts.NoLock {
var lock *restic.Lock
lock, ctx, err = lockRepo(ctx, repo)
defer unlockRepo(lock)
2020-11-26 07:04:46 +00:00
if err != nil {
return err
}
2015-06-27 12:40:18 +00:00
}
2014-10-05 12:44:59 +00:00
tpe := args[0]
2016-09-01 14:04:29 +00:00
var id restic.ID
2015-05-03 15:37:21 +00:00
if tpe != "masterkey" && tpe != "config" {
2016-09-01 14:04:29 +00:00
id, err = restic.ParseID(args[1])
if err != nil {
if tpe != "snapshot" {
2016-09-01 20:17:37 +00:00
return errors.Fatalf("unable to parse ID: %v\n", err)
}
// find snapshot id with prefix
id, err = restic.FindSnapshot(ctx, repo.Backend(), args[1])
if err != nil {
return errors.Fatalf("could not find snapshot: %v\n", err)
}
}
2014-10-05 12:44:59 +00:00
}
switch tpe {
2015-05-03 15:37:21 +00:00
case "config":
2016-09-01 14:04:29 +00:00
buf, err := json.MarshalIndent(repo.Config(), "", " ")
2015-05-03 15:37:21 +00:00
if err != nil {
return err
}
Println(string(buf))
2015-05-03 15:37:21 +00:00
return nil
case "index":
buf, err := repo.LoadUnpacked(ctx, restic.IndexFile, id, nil)
if err != nil {
return err
}
Println(string(buf))
return nil
2014-10-05 12:44:59 +00:00
case "snapshot":
sn, err := restic.LoadSnapshot(ctx, repo, id)
2014-10-05 12:44:59 +00:00
if err != nil {
return err
}
buf, err := json.MarshalIndent(sn, "", " ")
2014-10-05 12:44:59 +00:00
if err != nil {
return err
}
Println(string(buf))
2014-10-05 12:44:59 +00:00
return nil
case "key":
key, err := repository.LoadKey(ctx, repo, id.String())
2014-10-05 12:44:59 +00:00
if err != nil {
return err
}
buf, err := json.MarshalIndent(&key, "", " ")
2014-10-05 12:44:59 +00:00
if err != nil {
return err
}
Println(string(buf))
return nil
case "masterkey":
buf, err := json.MarshalIndent(repo.Key(), "", " ")
if err != nil {
return err
}
2014-10-05 12:44:59 +00:00
Println(string(buf))
2014-10-05 12:44:59 +00:00
return nil
case "lock":
lock, err := restic.LoadLock(ctx, repo, id)
2015-06-24 16:17:01 +00:00
if err != nil {
return err
}
buf, err := json.MarshalIndent(&lock, "", " ")
if err != nil {
return err
}
Println(string(buf))
2015-06-24 16:17:01 +00:00
return nil
case "pack":
h := restic.Handle{Type: restic.PackFile, Name: id.String()}
buf, err := backend.LoadAll(ctx, nil, repo.Backend(), h)
if err != nil {
return err
}
2016-09-01 14:04:29 +00:00
hash := restic.Hash(buf)
if !hash.Equal(id) {
Warnf("Warning: hash of data does not match ID, want\n %v\ngot:\n %v\n", id.String(), hash.String())
}
_, err = globalOptions.stdout.Write(buf)
return err
case "blob":
err = repo.LoadIndex(ctx)
if err != nil {
return err
}
2016-09-01 14:04:29 +00:00
for _, t := range []restic.BlobType{restic.DataBlob, restic.TreeBlob} {
2020-11-05 21:18:00 +00:00
bh := restic.BlobHandle{ID: id, Type: t}
if !repo.Index().Has(bh) {
2016-08-28 19:23:46 +00:00
continue
}
buf, err := repo.LoadBlob(ctx, t, id, nil)
2016-08-28 19:23:46 +00:00
if err != nil {
return err
}
_, err = globalOptions.stdout.Write(buf)
return err
}
2016-09-01 20:17:37 +00:00
return errors.Fatal("blob not found")
2014-10-05 12:44:59 +00:00
default:
2016-09-01 20:17:37 +00:00
return errors.Fatal("invalid type")
2014-10-05 12:44:59 +00:00
}
}