-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtest.go
458 lines (418 loc) · 14.3 KB
/
test.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
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
package main
// We get the constants from this header.
// #include <btrfs/send.h>
// #include <btrfs/send-utils.h>
// #include <btrfs/ioctl.h>
// #cgo LDFLAGS: -lbtrfs
import "C"
import "os"
import "encoding/binary"
import "bufio"
import "fmt"
import "unsafe"
import "syscall"
import "strings"
// NAUGHTYNESS:
// For a recursive delete, we get a rename, then a delete on the renamed copy.
// * We need understand that if we rm a renamed path, we should unrename anything inside it for the diff.
// For a create, we get a garbage name, then a rename.
// * We need to understand that if we get a rename of a file that was new, we must rename all the stuff we did to it.
type Op int
const (
OpUnspec Op = iota
OpIgnore
OpCreate
OpModify
OpDelete
OpRename // Special cased -- we need two paths
OpEnd
)
var names []string = []string{"!!!", "ignored", "added", "changed", "deleted", "renamed", "END"}
func (op Op) String() string {
return names[op]
}
type CommandSpec struct {
Name string
Op Op
}
type Command struct {
Type *CommandSpec
body []byte
}
func initCommands() *[C.__BTRFS_SEND_C_MAX]CommandSpec {
var commands [C.__BTRFS_SEND_C_MAX]CommandSpec
commands[C.BTRFS_SEND_C_UNSPEC] = CommandSpec{Name: "BTRFS_SEND_C_UNSPEC", Op: OpUnspec}
commands[C.BTRFS_SEND_C_SUBVOL] = CommandSpec{Name: "BTRFS_SEND_C_SUBVOL", Op: OpIgnore}
commands[C.BTRFS_SEND_C_SNAPSHOT] = CommandSpec{Name: "BTRFS_SEND_C_SNAPSHOT", Op: OpIgnore}
commands[C.BTRFS_SEND_C_MKFILE] = CommandSpec{Name: "BTRFS_SEND_C_MKFILE", Op: OpCreate}
commands[C.BTRFS_SEND_C_MKDIR] = CommandSpec{Name: "BTRFS_SEND_C_MKDIR", Op: OpCreate}
commands[C.BTRFS_SEND_C_MKNOD] = CommandSpec{Name: "BTRFS_SEND_C_MKNOD", Op: OpCreate}
commands[C.BTRFS_SEND_C_MKFIFO] = CommandSpec{Name: "BTRFS_SEND_C_MKFIFO", Op: OpCreate}
commands[C.BTRFS_SEND_C_MKSOCK] = CommandSpec{Name: "BTRFS_SEND_C_MKSOCK", Op: OpCreate}
commands[C.BTRFS_SEND_C_SYMLINK] = CommandSpec{Name: "BTRFS_SEND_C_SYMLINK", Op: OpCreate}
commands[C.BTRFS_SEND_C_RENAME] = CommandSpec{Name: "BTRFS_SEND_C_RENAME", Op: OpRename}
commands[C.BTRFS_SEND_C_LINK] = CommandSpec{Name: "BTRFS_SEND_C_LINK", Op: OpCreate}
commands[C.BTRFS_SEND_C_UNLINK] = CommandSpec{Name: "BTRFS_SEND_C_UNLINK", Op: OpDelete}
commands[C.BTRFS_SEND_C_RMDIR] = CommandSpec{Name: "BTRFS_SEND_C_RMDIR", Op: OpDelete}
commands[C.BTRFS_SEND_C_SET_XATTR] = CommandSpec{Name: "BTRFS_SEND_C_SET_XATTR", Op: OpModify}
commands[C.BTRFS_SEND_C_REMOVE_XATTR] = CommandSpec{Name: "BTRFS_SEND_C_REMOVE_XATTR", Op: OpModify}
commands[C.BTRFS_SEND_C_WRITE] = CommandSpec{Name: "BTRFS_SEND_C_WRITE", Op: OpModify}
commands[C.BTRFS_SEND_C_CLONE] = CommandSpec{Name: "BTRFS_SEND_C_CLONE", Op: OpModify}
commands[C.BTRFS_SEND_C_TRUNCATE] = CommandSpec{Name: "BTRFS_SEND_C_TRUNCATE", Op: OpModify}
commands[C.BTRFS_SEND_C_CHMOD] = CommandSpec{Name: "BTRFS_SEND_C_CHMOD", Op: OpModify}
commands[C.BTRFS_SEND_C_CHOWN] = CommandSpec{Name: "BTRFS_SEND_C_CHOWN", Op: OpModify}
commands[C.BTRFS_SEND_C_UTIMES] = CommandSpec{Name: "BTRFS_SEND_C_UTIMES", Op: OpModify}
commands[C.BTRFS_SEND_C_END] = CommandSpec{Name: "BTRFS_SEND_C_END", Op: OpEnd}
commands[C.BTRFS_SEND_C_UPDATE_EXTENT] = CommandSpec{Name: "BTRFS_SEND_C_UPDATE_EXTENT", Op: OpModify}
// Sanity check (hopefully no holes).
for i, command := range commands {
if i != C.BTRFS_SEND_C_UNSPEC && command.Op == OpUnspec {
return nil
}
}
return &commands
}
var commands *[C.__BTRFS_SEND_C_MAX]CommandSpec = initCommands()
type Node struct {
Children map[string]*Node
Name string
ChangeType Op
Parent *Node
Original *Node
}
type Diff struct {
Original Node
New Node
}
func (diff *Diff) tagPath(path string, changeType Op) {
fmt.Fprintf(os.Stdout, "TRACE %10v %v\n", changeType, path)
fileNode := diff.find(path, changeType == OpCreate)
if changeType == OpDelete {
if fileNode.Original == nil {
fmt.Fprintf(os.Stderr, "deleting path %v which was created in same diff?\n", path)
}
delete(fileNode.Parent.Children, fileNode.Name)
} else { // Why this? if fileNode.Original != nil {
if !(fileNode.ChangeType == OpCreate && changeType == OpModify) {
fileNode.ChangeType = changeType
}
}
if changeType == OpDelete {
// If we deleted /this/ node, it sure as hell needs no children.
fileNode.Children = nil
if fileNode.Original != nil {
// Leave behind a sentinel in the Original structure.
fileNode.Original.ChangeType = OpDelete
fileNode.Original.verifyDelete(path)
fileNode.Original.Children = nil
}
}
//fmt.Fprintf(os.Stderr, "intermediate=%v\n", diff)
}
func (node *Node) verifyDelete(path string) {
for _, child := range node.Children {
if child.ChangeType != OpDelete && child.ChangeType != OpRename {
fmt.Fprintf(os.Stderr, "deleting parent of node %v in %v which is not gone", node, path)
}
}
}
func (diff *Diff) rename(from string, to string) {
fmt.Fprintf(os.Stdout, "TRACE %10v %v\n", "rename", from)
fmt.Fprintf(os.Stdout, "TRACE %10v %v\n", "rename_to", to)
fromNode := diff.find(from, false)
delete(fromNode.Parent.Children, fromNode.Name)
if fromNode.Original != nil {
// if fromNode had an original, we must mark that path destroyed.
fromNode.Original.ChangeType = OpRename
}
toNode := diff.find(to, true)
toNode.Parent.Children[toNode.Name] = fromNode
fromNode.Name = toNode.Name
fromNode.ChangeType = OpCreate
fromNode.Parent = toNode.Parent
//fmt.Fprintf(os.Stderr, "intermediate=%v\n", diff)
}
func (diff *Diff) find(path string, isNew bool) *Node {
if diff.New.Original == nil {
diff.New.Original = &diff.Original
}
if path == "" {
return &diff.New
}
parts := strings.Split(path, "/")
current := &diff.New
for i, part := range parts {
if current.Children == nil {
current.Children = make(map[string]*Node)
}
newNode := current.Children[part]
if newNode == nil {
current.Children[part] = &Node{}
newNode = current.Children[part]
original := current.Original
if original == nil {
if !(isNew && i == len(parts)-1) {
// Either a path has a route in the original, or it's been
// explicitly created. Once we traverse into a path without
// an original, we know the full tree, so getting here is a
// sign we did it wrong.
fmt.Fprintf(os.Stderr, "referenced path %v cannot exist\n", path)
os.Exit(1)
}
} else {
if original.Children == nil {
original.Children = make(map[string]*Node)
}
newOriginal := original.Children[part]
if newOriginal == nil {
if !isNew || i < len(parts)-1 {
fmt.Fprintf(os.Stderr, "ACK %v %v %v %v %v\n", original, isNew, path, part, newOriginal)
// Was meant to already exist, so make sure it did!
original.Children[part] = &Node{}
newOriginal = original.Children[part]
newOriginal.Name = part
newOriginal.Parent = original
newNode.Original = newOriginal
}
}
}
newNode.Name = part
newNode.Parent = current
} else if isNew && i == len(parts)-1 {
// As this is the target of a create, we should expect to see
// nothing here.
fmt.Fprintf(os.Stderr, "overwritten path %v already existed\n", path)
}
current = newNode
}
return current
}
func (node *Node) String() string {
return fmt.Sprintf("(%v, %v, %v)", node.Children, node.ChangeType, node.Name)
}
func (diff *Diff) String() string {
return "\n\t" + strings.Join((diff.Changes())[:], "\n\t") + "\n"
}
func (diff *Diff) Changes() []string {
newFiles := make(map[string]*Node)
oldFiles := make(map[string]*Node)
changes(&diff.New, "", newFiles)
changes(&diff.Original, "", oldFiles)
fmt.Fprintf(os.Stderr, "new: %v\n%v\n", newFiles, &diff.New)
fmt.Fprintf(os.Stderr, "old: %v\n%v\n", oldFiles, &diff.Original)
var ret []string
for name, node := range oldFiles {
if newFiles[name] != nil && node.ChangeType == OpUnspec {
if node.Children == nil {
// TODO diff equality only
ret = append(ret, fmt.Sprintf("%10v: %v", OpModify, name))
}
delete(newFiles, name)
} else {
if node.ChangeType != OpDelete && node.ChangeType != OpRename {
fmt.Fprintf(os.Stderr, "unexpected ChangeType on original %v: %v", name, node.ChangeType)
}
if (node.ChangeType == OpDelete || node.ChangeType == OpRename) && newFiles[name] != nil && newFiles[name].ChangeType == OpCreate {
ret = append(ret, fmt.Sprintf("%10v: %v", OpModify, name))
delete(newFiles, name)
} else {
//fmt.Fprintf(os.Stderr, "DEBUG DEBUG %v %v %v\n ", node.ChangeType, newFiles[name], name)
ret = append(ret, fmt.Sprintf("%10v: %v", node.ChangeType, name))
}
}
}
for name := range newFiles {
ret = append(ret, fmt.Sprintf("%10v: %v", OpCreate, name))
}
return ret
}
func changes(node *Node, prefix string, ret map[string]*Node) {
newPrefix := prefix + node.Name
ret[newPrefix] = node
if node.ChangeType == OpCreate {
// TODO diff equality only
return
}
for _, child := range node.Children {
changes(child, newPrefix+"/", ret)
}
}
func peekAndDiscard(input *bufio.Reader, n int) ([]byte, error) {
data, err := input.Peek(n)
if err != nil {
return nil, err
}
if _, err := input.Discard(n); err != nil {
return nil, err
}
return data, nil
}
func readCommand(input *bufio.Reader) (*Command, error) {
cmdSizeB, err := peekAndDiscard(input, 4)
if err != nil {
return nil, fmt.Errorf("Short read on command size: %v", err)
}
cmdTypeB, err := peekAndDiscard(input, 2)
if err != nil {
return nil, fmt.Errorf("Short read on command type: %v", err)
}
if _, err := peekAndDiscard(input, 4); err != nil {
return nil, fmt.Errorf("Short read on command checksum: %v", err)
}
cmdSize := binary.LittleEndian.Uint32(cmdSizeB)
cmdData, err := peekAndDiscard(input, int(cmdSize))
if err != nil {
return nil, fmt.Errorf("Short read on command body: %v", err)
}
cmdType := binary.LittleEndian.Uint16(cmdTypeB)
if cmdType < 0 || cmdType > C.BTRFS_SEND_C_MAX {
return nil, fmt.Errorf("Stream contains invalid command type %v", cmdType)
}
fmt.Fprintf(os.Stdout, "Cmd %v; type %v\n", cmdData, cmdType)
return &Command{
Type: &commands[cmdType],
body: cmdData,
}, nil
}
func (command *Command) ReadParam(expectedType int) (string, error) {
if len(command.body) < 4 {
return "", fmt.Errorf("No more parameters")
}
paramType := binary.LittleEndian.Uint16(command.body[0:2])
if int(paramType) != expectedType {
return "", fmt.Errorf("Expect type %v; got %v", expectedType, paramType)
}
paramLength := binary.LittleEndian.Uint16(command.body[2:4])
if int(paramLength)+4 > len(command.body) {
return "", fmt.Errorf("Short command param; length was %v but only %v left", paramLength, len(command.body)-4)
}
ret := string(command.body[4 : 4+paramLength])
command.body = command.body[4+paramLength:]
return ret, nil
}
func readStream(stream *os.File, diff *Diff, channel chan error) {
channel <- doReadStream(stream, diff)
}
func doReadStream(stream *os.File, diff *Diff) error {
defer stream.Close()
input := bufio.NewReader(stream)
btrfsStreamHeader, err := input.ReadString('\x00')
if err != nil {
return err
}
if btrfsStreamHeader[:len(btrfsStreamHeader)-1] != C.BTRFS_SEND_STREAM_MAGIC {
return fmt.Errorf("magic is %v, not %v", btrfsStreamHeader, C.BTRFS_SEND_STREAM_MAGIC)
}
verB, err := peekAndDiscard(input, 4)
if err != nil {
return err
}
ver := binary.LittleEndian.Uint32(verB)
if ver != 1 {
return fmt.Errorf("Unexpected stream version %v", ver)
}
for true {
command, err := readCommand(input)
if err != nil {
return err
}
if command.Type.Op == OpUnspec {
return fmt.Errorf("Unexpected command %v", command)
} else if command.Type.Op == OpIgnore {
continue
} else if command.Type.Op == OpRename {
fromPath, err := command.ReadParam(C.BTRFS_SEND_A_PATH)
if err != nil {
return err
}
toPath, err := command.ReadParam(C.BTRFS_SEND_A_PATH_TO)
if err != nil {
return err
}
fmt.Fprintf(os.Stdout, "TRACE %25v %v %v\n", command.Type.Name, fromPath, toPath)
diff.rename(fromPath, toPath)
} else if command.Type.Op == OpEnd {
fmt.Fprintf(os.Stderr, "END\n")
break
} else {
path, err := command.ReadParam(C.BTRFS_SEND_A_PATH)
if err != nil {
return err
}
fmt.Fprintf(os.Stdout, "TRACE %25v %v\n", command.Type.Name, path)
diff.tagPath(path, command.Type.Op)
}
}
return nil
}
func getSubvolUid(path string) (C.__u64, error) {
var sus C.struct_subvol_uuid_search
var subvol_info *C.struct_subvol_info
root_f, err := os.OpenFile(path, os.O_RDONLY, 0777)
if err != nil {
return 0, fmt.Errorf("open returned %v\n", err)
}
r := C.subvol_uuid_search_init(C.int(root_f.Fd()), &sus)
if r < 0 {
return 0, fmt.Errorf("subvol_uuid_search_init returned %v\n", r)
}
subvol_info, err = C.subvol_uuid_search(&sus, 0, nil, 0, C.CString(path), C.subvol_search_by_path)
if subvol_info == nil {
return 0, fmt.Errorf("subvol_uuid_search returned %v\n", err)
}
return C.__u64(subvol_info.root_id), nil
}
func btrfsSendSyscall(stream *os.File, source string, subvolume string) error {
defer stream.Close()
subvol_f, err := os.OpenFile(subvolume, os.O_RDONLY, 0777)
if err != nil {
return fmt.Errorf("open returned %v\n", err)
}
root_id, err := getSubvolUid(source)
if err != nil {
fmt.Fprintf(os.Stderr, "getSubvolUid returns %v\n", err)
os.Exit(1)
}
fmt.Fprintf(os.Stderr, "root_id %v\n", root_id)
var subvol_fd C.uint = C.uint(subvol_f.Fd())
var opts C.struct_btrfs_ioctl_send_args
opts.send_fd = C.__s64(stream.Fd())
opts.clone_sources = &root_id
opts.clone_sources_count = 1
opts.parent_root = root_id
opts.flags = C.BTRFS_SEND_FLAG_NO_FILE_DATA
ret, _, err := syscall.Syscall(syscall.SYS_IOCTL, uintptr(subvol_fd), C.BTRFS_IOC_SEND, uintptr(unsafe.Pointer(&opts)))
if ret != 0 {
return err
}
return nil
}
func btrfsSendDiffs(source, subvolume string) (*Diff, error) {
read, write, err := os.Pipe()
if err != nil {
return nil, fmt.Errorf("pipe returned %v\n", err)
}
var diff Diff = Diff{}
channel := make(chan error)
go readStream(read, &diff, channel)
err = btrfsSendSyscall(write, source, subvolume)
if err != nil {
return nil, fmt.Errorf("btrfsSendSyscall returns %v\n", err)
}
err = <-channel
if err != nil {
return nil, fmt.Errorf("readStream returns %v\n", err)
}
return &diff, nil
}
func main() {
//root := "/disks/ssdbtrfs"
parent := os.Args[1]
child := os.Args[2]
diff, err := btrfsSendDiffs(parent, child)
if err != nil {
fmt.Fprintf(os.Stderr, "%v", err)
os.Exit(1)
}
fmt.Fprintf(os.Stdout, "TRACE GENERATED\nTRACE %v\n", strings.Join(diff.Changes(), "\nTRACE "))
}