2022-03-28 20:23:47 +00:00
|
|
|
//go:build !windows
|
|
|
|
// +build !windows
|
2018-09-27 12:59:33 +00:00
|
|
|
|
|
|
|
package restorer
|
|
|
|
|
|
|
|
import (
|
2020-02-26 20:48:05 +00:00
|
|
|
"bytes"
|
2018-09-27 12:59:33 +00:00
|
|
|
"context"
|
2020-02-26 20:48:05 +00:00
|
|
|
"io/ioutil"
|
|
|
|
"math"
|
|
|
|
"math/rand"
|
2018-09-27 12:59:33 +00:00
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
"syscall"
|
|
|
|
"testing"
|
|
|
|
|
2020-02-26 20:48:05 +00:00
|
|
|
"github.com/restic/restic/internal/archiver"
|
|
|
|
"github.com/restic/restic/internal/fs"
|
2018-09-27 12:59:33 +00:00
|
|
|
"github.com/restic/restic/internal/repository"
|
|
|
|
"github.com/restic/restic/internal/restic"
|
|
|
|
rtest "github.com/restic/restic/internal/test"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestRestorerRestoreEmptyHardlinkedFileds(t *testing.T) {
|
|
|
|
repo, cleanup := repository.TestRepository(t)
|
|
|
|
defer cleanup()
|
|
|
|
|
|
|
|
_, id := saveSnapshot(t, repo, Snapshot{
|
|
|
|
Nodes: map[string]Node{
|
|
|
|
"dirtest": Dir{
|
|
|
|
Nodes: map[string]Node{
|
|
|
|
"file1": File{Links: 2, Inode: 1},
|
|
|
|
"file2": File{Links: 2, Inode: 1},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
2022-08-07 15:26:46 +00:00
|
|
|
res, err := NewRestorer(context.TODO(), repo, id, false)
|
2018-09-27 12:59:33 +00:00
|
|
|
rtest.OK(t, err)
|
|
|
|
|
|
|
|
res.SelectFilter = func(item string, dstpath string, node *restic.Node) (selectedForRestore bool, childMayBeSelected bool) {
|
|
|
|
return true, true
|
|
|
|
}
|
|
|
|
|
|
|
|
tempdir, cleanup := rtest.TempDir(t)
|
|
|
|
defer cleanup()
|
|
|
|
|
|
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
|
|
defer cancel()
|
|
|
|
|
|
|
|
err = res.RestoreTo(ctx, tempdir)
|
|
|
|
rtest.OK(t, err)
|
|
|
|
|
|
|
|
f1, err := os.Stat(filepath.Join(tempdir, "dirtest/file1"))
|
|
|
|
rtest.OK(t, err)
|
|
|
|
rtest.Equals(t, int64(0), f1.Size())
|
|
|
|
s1, ok1 := f1.Sys().(*syscall.Stat_t)
|
|
|
|
|
|
|
|
f2, err := os.Stat(filepath.Join(tempdir, "dirtest/file2"))
|
|
|
|
rtest.OK(t, err)
|
|
|
|
rtest.Equals(t, int64(0), f2.Size())
|
|
|
|
s2, ok2 := f2.Sys().(*syscall.Stat_t)
|
|
|
|
|
|
|
|
if ok1 && ok2 {
|
|
|
|
rtest.Equals(t, s1.Ino, s2.Ino)
|
|
|
|
}
|
|
|
|
}
|
2020-02-26 20:48:05 +00:00
|
|
|
|
|
|
|
func TestRestorerSparseFiles(t *testing.T) {
|
|
|
|
repo, cleanup := repository.TestRepository(t)
|
|
|
|
defer cleanup()
|
|
|
|
|
|
|
|
var zeros [1<<20 + 13]byte
|
|
|
|
|
|
|
|
target := &fs.Reader{
|
|
|
|
Mode: 0600,
|
|
|
|
Name: "/zeros",
|
|
|
|
ReadCloser: ioutil.NopCloser(bytes.NewReader(zeros[:])),
|
|
|
|
}
|
|
|
|
sc := archiver.NewScanner(target)
|
|
|
|
err := sc.Scan(context.TODO(), []string{"/zeros"})
|
|
|
|
rtest.OK(t, err)
|
|
|
|
|
|
|
|
arch := archiver.New(repo, target, archiver.Options{})
|
|
|
|
_, id, err := arch.Snapshot(context.Background(), []string{"/zeros"},
|
|
|
|
archiver.SnapshotOptions{})
|
2022-08-07 15:26:46 +00:00
|
|
|
rtest.OK(t, err)
|
2020-02-26 20:48:05 +00:00
|
|
|
|
2022-08-07 15:26:46 +00:00
|
|
|
res, err := NewRestorer(context.TODO(), repo, id, true)
|
2020-02-26 20:48:05 +00:00
|
|
|
rtest.OK(t, err)
|
|
|
|
|
|
|
|
tempdir, cleanup := rtest.TempDir(t)
|
|
|
|
defer cleanup()
|
|
|
|
|
|
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
|
|
defer cancel()
|
|
|
|
|
|
|
|
err = res.RestoreTo(ctx, tempdir)
|
|
|
|
rtest.OK(t, err)
|
|
|
|
|
|
|
|
filename := filepath.Join(tempdir, "zeros")
|
|
|
|
content, err := ioutil.ReadFile(filename)
|
|
|
|
rtest.OK(t, err)
|
|
|
|
|
2022-08-07 15:26:46 +00:00
|
|
|
rtest.Equals(t, len(zeros[:]), len(content))
|
2020-02-26 20:48:05 +00:00
|
|
|
rtest.Equals(t, zeros[:], content)
|
|
|
|
|
|
|
|
fi, err := os.Stat(filename)
|
|
|
|
rtest.OK(t, err)
|
|
|
|
st := fi.Sys().(*syscall.Stat_t)
|
|
|
|
if st == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// st.Blocks is the size in 512-byte blocks.
|
|
|
|
denseBlocks := math.Ceil(float64(len(zeros)) / 512)
|
|
|
|
sparsity := 1 - float64(st.Blocks)/denseBlocks
|
|
|
|
|
|
|
|
// This should report 100% sparse. We don't assert that,
|
|
|
|
// as the behavior of sparse writes depends on the underlying
|
|
|
|
// file system as well as the OS.
|
|
|
|
t.Logf("wrote %d zeros as %d blocks, %.1f%% sparse",
|
|
|
|
len(zeros), st.Blocks, 100*sparsity)
|
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkZeroPrefixLen(b *testing.B) {
|
|
|
|
var (
|
|
|
|
buf [4<<20 + 37]byte
|
|
|
|
r = rand.New(rand.NewSource(0x618732))
|
|
|
|
sumSkipped int64
|
|
|
|
)
|
|
|
|
|
|
|
|
b.ReportAllocs()
|
|
|
|
b.SetBytes(int64(len(buf)))
|
|
|
|
b.ResetTimer()
|
|
|
|
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
j := r.Intn(len(buf))
|
|
|
|
buf[j] = 0xff
|
|
|
|
|
|
|
|
skipped := zeroPrefixLen(buf[:])
|
|
|
|
sumSkipped += int64(skipped)
|
|
|
|
|
|
|
|
buf[j] = 0
|
|
|
|
}
|
|
|
|
|
|
|
|
// The closer this is to .5, the better. If it's far off, give the
|
|
|
|
// benchmark more time to run with -benchtime.
|
|
|
|
b.Logf("average number of zeros skipped: %.3f",
|
|
|
|
float64(sumSkipped)/(float64(b.N*len(buf))))
|
|
|
|
}
|