1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
|
package fsck
import (
"encoding/base64"
"os"
"os/exec"
"runtime"
"strings"
"syscall"
"testing"
"time"
"github.com/pkg/xattr"
"github.com/rfjakob/gocryptfs/v2/internal/exitcodes"
"github.com/rfjakob/gocryptfs/v2/tests/test_helpers"
)
func dec64(in string) (out []byte) {
out, err := base64.RawURLEncoding.DecodeString(in)
if err != nil {
panic(err)
}
return out
}
func TestBrokenFsV14(t *testing.T) {
// git does not save extended attributes, so we apply them here.
// xattr_good
xattr.Set("broken_fs_v1.4/6nGs4Ugr3EAHd0KzkyLZ-Q",
"user.gocryptfs.0a5e7yWl0SGUGeWB0Sy2Kg",
dec64("hxnZvXSkDicfwVS9w4r1yYkFF61Qou6NaL-VhObYEdu6kuM"))
// xattr_corrupt_name
xattr.Set("broken_fs_v1.4/CMyUifVTjW5fsgXonWBT_RDkvLkdGrLttkZ45T3Oi3A",
"user.gocryptfs.0a5e7yWl0SGUGeWB0Sy2K0",
dec64("QHUMDTgbnl8Sv_A2dFQic_G2vN4_gmDna3651JAhF7OZ-YI"))
// xattr_corrupt_value
xattr.Set("broken_fs_v1.4/b00sbnGXGToadr01GHZaYQn8tjyRhe1OXNBZoQtMlcQ",
"user.gocryptfs.0a5e7yWl0SGUGeWB0Sy2Kg",
dec64("A0hvCePeKpL8bCpijhDKtf7cIijXYQsPnEbNJ84M2ONW0dd"))
cmd := exec.Command(test_helpers.GocryptfsBinary, "-fsck", "-extpass", "echo test", "broken_fs_v1.4")
outBin, err := cmd.CombinedOutput()
out := string(outBin)
t.Log(out)
code := test_helpers.ExtractCmdExitCode(err)
if code != exitcodes.FsckErrors {
t.Errorf("wrong exit code, have=%d want=%d", code, exitcodes.FsckErrors)
}
}
func TestMalleableBase64(t *testing.T) {
cmd := exec.Command(test_helpers.GocryptfsBinary, "-fsck", "-extpass", "echo test", "malleable_base64")
outBin, err := cmd.CombinedOutput()
out := string(outBin)
t.Log(out)
code := test_helpers.ExtractCmdExitCode(err)
if code != exitcodes.FsckErrors {
t.Errorf("wrong exit code, have=%d want=%d", code, exitcodes.FsckErrors)
}
}
func TestExampleFses(t *testing.T) {
dirfd, err := os.Open("../example_filesystems")
if err != nil {
t.Fatal(err)
}
var fsNames []string
entries, err := dirfd.Readdir(0)
if err != nil {
t.Fatal(err)
}
for _, e := range entries {
if !e.IsDir() {
continue
}
if strings.Contains(e.Name(), "reverse") {
continue
}
if e.Name() == "content" {
continue
}
fsNames = append(fsNames, e.Name())
}
for _, n := range fsNames {
t.Logf("Checking %q", n)
path := "../example_filesystems/" + n
cmd := exec.Command(test_helpers.GocryptfsBinary, "-fsck", "-extpass", "echo test", path)
outBin, err := cmd.CombinedOutput()
out := string(outBin)
code := test_helpers.ExtractCmdExitCode(err)
if code == exitcodes.DeprecatedFS {
continue
}
if code != 0 {
t.Log(out)
t.Errorf("fsck returned code %d but fs should be clean", code)
}
}
dirfd.Close()
}
// TestTerabyteFile verifies that fsck does something intelligent when it hits
// a 1-terabyte sparse file (trying to read the whole file is not intelligent).
func TestTerabyteFile(t *testing.T) {
if runtime.GOOS != "linux" {
t.Skipf("Only linux supports SEEK_DATA")
}
cDir := test_helpers.InitFS(t)
pDir := cDir + ".mnt"
test_helpers.MountOrFatal(t, cDir, pDir, "-extpass", "echo test")
defer test_helpers.UnmountErr(pDir)
veryBigFile := pDir + "/veryBigFile"
fd, err := os.Create(veryBigFile)
if err != nil {
t.Fatal(err)
}
defer fd.Close()
var oneTiB int64 = 1024 * 1024 * 1024 * 1024
_, err = fd.WriteAt([]byte("foobar"), oneTiB)
if err != nil {
t.Fatal(err)
}
fi, err := fd.Stat()
if err != nil {
t.Fatal(err)
}
t.Logf("size=%d, running fsck", fi.Size())
cmd := exec.Command(test_helpers.GocryptfsBinary, "-fsck", "-extpass", "echo test", cDir)
cmd.Stderr = os.Stderr
cmd.Stdout = os.Stdout
cmd.Start()
timer := time.AfterFunc(10*time.Second, func() {
t.Error("timeout, sending SIGINT")
syscall.Kill(cmd.Process.Pid, syscall.SIGINT)
})
cmd.Wait()
timer.Stop()
}
|