forked from keybase/kbfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmd_check.go
262 lines (229 loc) · 6.82 KB
/
md_check.go
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
package main
import (
"flag"
"fmt"
"path/filepath"
"github.com/keybase/kbfs/libkbfs"
"golang.org/x/net/context"
)
const mdCheckUsageStr = `Usage:
kbfstool md check input [inputs...]
Each input must be in the same format as in md dump. However,
revisions in a revision range rev1-rev2 are always checked in
descending order, regardless of whether rev1 <= rev2 or rev1 > rev2.
`
// TODO: The below checks could be sped up by fetching blocks in
// parallel.
// TODO: Factor out common code with StateChecker.findAllBlocksInPath.
func checkDirBlock(ctx context.Context, config libkbfs.Config,
name string, kmd libkbfs.KeyMetadata, info libkbfs.BlockInfo,
verbose bool) (err error) {
if verbose {
fmt.Printf("Checking %s (dir block %v)...\n", name, info)
} else {
fmt.Printf("Checking %s...\n", name)
}
defer func() {
if err != nil {
fmt.Printf("Got error while checking %s: %v\n",
name, err)
}
}()
var dirBlock libkbfs.DirBlock
err = config.BlockOps().Get(ctx, kmd, info.BlockPointer, &dirBlock, libkbfs.NoCacheEntry)
if err != nil {
return err
}
for entryName, entry := range dirBlock.Children {
switch entry.Type {
case libkbfs.File, libkbfs.Exec:
_ = checkFileBlock(
ctx, config, filepath.Join(name, entryName),
kmd, entry.BlockInfo, verbose)
case libkbfs.Dir:
_ = checkDirBlock(
ctx, config, filepath.Join(name, entryName),
kmd, entry.BlockInfo, verbose)
case libkbfs.Sym:
if verbose {
fmt.Printf("Skipping symlink %s -> %s\n",
entryName, entry.SymPath)
}
continue
default:
fmt.Printf("Entry %s has unknown type %s",
entryName, entry.Type)
}
}
return nil
}
func checkFileBlock(ctx context.Context, config libkbfs.Config,
name string, kmd libkbfs.KeyMetadata, info libkbfs.BlockInfo,
verbose bool) (err error) {
if verbose {
fmt.Printf("Checking %s (file block %v)...\n", name, info)
} else {
fmt.Printf("Checking %s...\n", name)
}
defer func() {
if err != nil {
fmt.Printf("Got error while checking %s: %v\n",
name, err)
}
}()
var fileBlock libkbfs.FileBlock
err = config.BlockOps().Get(ctx, kmd, info.BlockPointer, &fileBlock, libkbfs.NoCacheEntry)
if err != nil {
return err
}
if fileBlock.IsInd {
// TODO: Check continuity of off+len if Holes is false
// for all blocks.
for _, iptr := range fileBlock.IPtrs {
_ = checkFileBlock(
ctx, config,
fmt.Sprintf("%s (off=%d)", name, iptr.Off),
kmd, iptr.BlockInfo, verbose)
}
}
return nil
}
// mdCheckChain checks that every MD object in the given list is a
// valid successor of the next object in the list. Along the way, it
// also checks that the root blocks that haven't been
// garbage-collected are present. It returns a list of MD objects with
// valid roots, in reverse revision order. If multiple MD objects have
// the same root (which are assumed to all be adjacent), the most
// recent one is returned.
func mdCheckChain(ctx context.Context, config libkbfs.Config,
reversedIRMDs []libkbfs.ImmutableRootMetadata, verbose bool) (
reversedIRMDsWithRoots []libkbfs.ImmutableRootMetadata) {
fmt.Printf("Checking chain from rev %d to %d...\n",
reversedIRMDs[0].Revision(), reversedIRMDs[len(reversedIRMDs)-1].Revision())
gcUnrefs := make(map[libkbfs.BlockRef]bool)
for i, irmd := range reversedIRMDs {
currRev := irmd.Revision()
data := irmd.Data()
rootPtr := data.Dir.BlockPointer
if !rootPtr.Ref().IsValid() {
// This happens in the wild, but only for
// folders used for journal-related testing
// early on.
fmt.Printf("Skipping checking root for rev %d (is invalid)\n",
currRev)
} else if gcUnrefs[rootPtr.Ref()] {
if verbose {
fmt.Printf("Skipping checking root for rev %d (GCed)\n",
currRev)
}
} else {
fmt.Printf("Checking root for rev %d (%s)...\n",
currRev, rootPtr.Ref())
var dirBlock libkbfs.DirBlock
err := config.BlockOps().Get(
ctx, irmd, rootPtr, &dirBlock, libkbfs.NoCacheEntry)
if err != nil {
fmt.Printf("Got error while checking root "+
"for rev %d: %v\n",
currRev, err)
} else if len(reversedIRMDsWithRoots) == 0 ||
reversedIRMDsWithRoots[len(reversedIRMDsWithRoots)-1].Data().Dir.BlockPointer != rootPtr {
reversedIRMDsWithRoots = append(reversedIRMDsWithRoots, irmd)
}
}
for _, op := range data.Changes.Ops {
if gcOp, ok := op.(*libkbfs.GCOp); ok {
for _, unref := range gcOp.Unrefs() {
gcUnrefs[unref.Ref()] = true
}
}
}
if i == len(reversedIRMDs)-1 {
break
}
irmdPrev := reversedIRMDs[i+1]
predRev := irmdPrev.Revision()
if verbose {
fmt.Printf("Checking %d -> %d link...\n",
predRev, currRev)
}
err := irmdPrev.CheckValidSuccessor(
irmdPrev.MdID(), irmd.ReadOnly())
if err != nil {
fmt.Printf("Got error while checking %d -> %d link: %v\n",
predRev, currRev, err)
}
irmd = irmdPrev
}
return reversedIRMDsWithRoots
}
func mdCheckIRMDs(ctx context.Context, config libkbfs.Config,
tlfStr, branchStr string, reversedIRMDs []libkbfs.ImmutableRootMetadata,
verbose bool) error {
reversedIRMDsWithRoots :=
mdCheckChain(ctx, config, reversedIRMDs, verbose)
fmt.Printf("Retrieved %d MD objects with roots\n", len(reversedIRMDsWithRoots))
for _, irmd := range reversedIRMDsWithRoots {
// No need to check the blocks for unembedded changes,
// since they're already checked upon retrieval.
name := mdJoinInput(tlfStr, branchStr, irmd.Revision().String(), "")
_ = checkDirBlock(ctx, config, name, irmd,
irmd.Data().Dir.BlockInfo, verbose)
}
return nil
}
func mdCheck(ctx context.Context, config libkbfs.Config, args []string) (
exitStatus int) {
flags := flag.NewFlagSet("kbfs md check", flag.ContinueOnError)
verbose := flags.Bool("v", false, "Print verbose output.")
err := flags.Parse(args)
if err != nil {
printError("md check", err)
return 1
}
inputs := flags.Args()
if len(inputs) < 1 {
fmt.Print(mdCheckUsageStr)
return 1
}
for _, input := range inputs {
tlfStr, branchStr, startStr, stopStr, err := mdSplitInput(input)
if err != nil {
printError("md check", err)
return 1
}
tlfID, branchID, start, stop, err :=
mdParseInput(ctx, config, tlfStr, branchStr, startStr, stopStr)
if err != nil {
printError("md check", err)
return 1
}
min := start
max := stop
if start > stop {
min = stop
max = start
}
// The returned RMDs are already verified, so we don't
// have to do anything else.
//
// TODO: Chunk the range between start and stop.
irmds, err := mdGet(ctx, config, tlfID, branchID, min, max)
if err != nil {
printError("md check", err)
return 1
}
if len(irmds) == 0 {
fmt.Printf("No result found for %q\n\n", input)
continue
}
reversedIRMDs := reverseIRMDList(irmds)
err = mdCheckIRMDs(ctx, config, tlfStr, branchStr, reversedIRMDs, *verbose)
if err != nil {
printError("md check", err)
return 1
}
fmt.Print("\n")
}
return 0
}