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
|
// Copyright (C) 2022-2023 Luke Shumaker <lukeshu@lukeshu.com>
//
// SPDX-License-Identifier: GPL-2.0-or-later
package main
import (
"os"
"runtime"
"time"
"git.lukeshu.com/go/lowmemjson"
"github.com/datawire/dlib/dlog"
"github.com/datawire/ocibuild/pkg/cliutil"
"github.com/spf13/cobra"
"git.lukeshu.com/btrfs-progs-ng/cmd/btrfs-rec/inspect/rebuildtrees"
"git.lukeshu.com/btrfs-progs-ng/lib/btrfs"
"git.lukeshu.com/btrfs-progs-ng/lib/btrfs/btrfsvol"
"git.lukeshu.com/btrfs-progs-ng/lib/textui"
)
func init() {
inspectors.AddCommand(&cobra.Command{
Use: "rebuild-trees",
Long: "" +
"Rebuild broken btrees based on missing items that are implied " +
"by present items. This requires functioning " +
"chunk/dev-extent/blockgroup trees, which can be rebuilt " +
"separately with `btrfs-rec inspect rebuild-mappings`.\n" +
"\n" +
"If no --node-list is given, then a slow sector-by-sector scan " +
"will be used to find all nodes.",
Args: cliutil.WrapPositionalArgs(cobra.NoArgs),
RunE: runWithRawFSAndNodeList(func(fs *btrfs.FS, nodeList []btrfsvol.LogicalAddr, cmd *cobra.Command, args []string) error {
ctx := cmd.Context()
rebuilder, err := rebuildtrees.NewRebuilder(ctx, fs, nodeList)
if err != nil {
return err
}
runtime.GC()
time.Sleep(textui.LiveMemUseUpdateInterval) // let the logs reflect that GC right away
dlog.Info(ctx, "Rebuilding node tree...")
rebuildErr := rebuilder.Rebuild(ctx)
dst := os.Stdout
if rebuildErr != nil {
dst = os.Stderr
dlog.Errorf(ctx, "rebuild error: %v", rebuildErr)
}
dlog.Infof(ctx, "Writing re-built nodes to %s...", dst.Name())
if err := writeJSONFile(dst, rebuilder.ListRoots(ctx), lowmemjson.ReEncoderConfig{
Indent: "\t",
CompactIfUnder: 80, //nolint:gomnd // This is what looks nice.
ForceTrailingNewlines: true,
}); err != nil {
if rebuildErr != nil {
return rebuildErr
}
return err
}
dlog.Info(ctx, "... done writing")
return rebuildErr
}),
})
}
|