summaryrefslogtreecommitdiff
path: root/cmd/btrfs-rec/inspect_recoverchunks.go
blob: 4314b66c5f1a855f0f56ccb338f48a6f50a1e5a2 (plain)
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
// Copyright (C) 2022  Luke Shumaker <lukeshu@lukeshu.com>
//
// SPDX-License-Identifier: GPL-2.0-or-later

package main

import (
	"encoding/json"
	"fmt"
	"io"
	"os"

	"github.com/datawire/dlib/dlog"
	"github.com/datawire/ocibuild/pkg/cliutil"
	"github.com/spf13/cobra"

	"git.lukeshu.com/btrfs-progs-ng/lib/btrfs"
	"git.lukeshu.com/btrfs-progs-ng/lib/btrfsprogs/btrfsinspect"
)

func init() {
	inspectors = append(inspectors, subcommand{
		Command: cobra.Command{
			Use:   "recover-chunks",
			Short: "Rebuild broken chunk/dev-extent/blockgroup trees",
			Long: "" +
				"The rebuilt information is printed as JSON on stdout, and can\n" +
				"be loaded by the --mappings flag.\n" +
				"\n" +
				"This is very similar to `btrfs rescue chunk-recover`, but (1)\n" +
				"does a better job, (2) is less buggy, and (3) doesn't actually\n" +
				"write the info back to the filesystem; instead writing it\n" +
				"out-of-band to stdout.",
			Args: cliutil.WrapPositionalArgs(cobra.NoArgs),
		},
		RunE: func(fs *btrfs.FS, cmd *cobra.Command, _ []string) error {
			ctx := cmd.Context()

			dlog.Info(ctx, "Reading superblock...")
			superblock, err := fs.Superblock()
			if err != nil {
				return err
			}

			for _, dev := range fs.LV.PhysicalVolumes() {
				dlog.Infof(ctx, "dev[%q] Scanning for unreachable nodes...", dev.Name())
				devResult, err := btrfsinspect.ScanOneDev(ctx, dev, *superblock)
				if err != nil {
					return err
				}

				dlog.Infof(ctx, "dev[%q] Re-inserting lost+found mappings...", dev.Name())
				devResult.AddToLV(ctx, fs, dev)
			}

			dlog.Infof(ctx, "Writing reconstructed mappings to stdout...")

			mappings := fs.LV.Mappings()
			_, _ = io.WriteString(os.Stdout, "{\n  \"Mappings\": [\n")
			for i, mapping := range mappings {
				suffix := ","
				if i == len(mappings)-1 {
					suffix = ""
				}
				bs, err := json.Marshal(mapping)
				if err != nil {
					return err
				}
				fmt.Printf("    %s%s\n", bs, suffix)
			}
			_, _ = io.WriteString(os.Stdout, "  ]\n}\n")
			return nil
		},
	})
}