package commands import ( "bytes" "fmt" "io" "os" "path/filepath" "strings" "text/tabwriter" bstore "github.com/ipfs/go-ipfs/blocks/blockstore" oldcmds "github.com/ipfs/go-ipfs/commands" e "github.com/ipfs/go-ipfs/core/commands/e" corerepo "github.com/ipfs/go-ipfs/core/corerepo" config "github.com/ipfs/go-ipfs/repo/config" fsrepo "github.com/ipfs/go-ipfs/repo/fsrepo" lockfile "github.com/ipfs/go-ipfs/repo/fsrepo/lock" cid "gx/ipfs/QmNp85zy9RLrQ5oQD4hPyS39ezrrXpcaa7R4Y9kxdWQLLQ/go-cid" cmds "gx/ipfs/QmQtQuaQvS5mKJVoCvL5FvrYH7oZPjxsVHf2bKSGgcVmZt/go-ipfs-cmds" cmdkit "gx/ipfs/QmUyfy4QSr3NXym4etEiRyxBLqqAeKHJuRdi8AACxg63fZ/go-ipfs-cmdkit" ) type RepoVersion struct { Version string } var RepoCmd = &cmds.Command{ Helptext: cmdkit.HelpText{ Tagline: "Manipulate the IPFS repo.", ShortDescription: ` 'ipfs repo' is a plumbing command used to manipulate the repo. `, }, Subcommands: map[string]*cmds.Command{ "stat": repoStatCmd, }, OldSubcommands: map[string]*oldcmds.Command{ "gc": repoGcCmd, "fsck": RepoFsckCmd, "version": repoVersionCmd, "verify": repoVerifyCmd, }, } // GcResult is the result returned by "repo gc" command. type GcResult struct { Key *cid.Cid Error string `json:",omitempty"` } var repoGcCmd = &oldcmds.Command{ Helptext: cmdkit.HelpText{ Tagline: "Perform a garbage collection sweep on the repo.", ShortDescription: ` 'ipfs repo gc' is a plumbing command that will sweep the local set of stored objects and remove ones that are not pinned in order to reclaim hard disk space. `, }, Options: []cmdkit.Option{ cmdkit.BoolOption("stream-errors", "Stream errors."), cmdkit.BoolOption("quiet", "q", "Write minimal output."), }, Run: func(req oldcmds.Request, res oldcmds.Response) { n, err := req.InvocContext().GetNode() if err != nil { res.SetError(err, cmdkit.ErrNormal) return } streamErrors, _, _ := res.Request().Option("stream-errors").Bool() gcOutChan := corerepo.GarbageCollectAsync(n, req.Context()) outChan := make(chan interface{}) res.SetOutput(outChan) go func() { defer close(outChan) if streamErrors { errs := false for res := range gcOutChan { if res.Error != nil { outChan <- &GcResult{Error: res.Error.Error()} errs = true } else { outChan <- &GcResult{Key: res.KeyRemoved} } } if errs { res.SetError(fmt.Errorf("encountered errors during gc run"), cmdkit.ErrNormal) } } else { err := corerepo.CollectResult(req.Context(), gcOutChan, func(k *cid.Cid) { outChan <- &GcResult{Key: k} }) if err != nil { res.SetError(err, cmdkit.ErrNormal) } } }() }, Type: GcResult{}, Marshalers: oldcmds.MarshalerMap{ oldcmds.Text: func(res oldcmds.Response) (io.Reader, error) { v, err := unwrapOutput(res.Output()) if err != nil { return nil, err } quiet, _, err := res.Request().Option("quiet").Bool() if err != nil { return nil, err } obj, ok := v.(*GcResult) if !ok { return nil, e.TypeErr(obj, v) } if obj.Error != "" { fmt.Fprintf(res.Stderr(), "Error: %s\n", obj.Error) return nil, nil } msg := obj.Key.String() + "\n" if !quiet { msg = "removed " + msg } return bytes.NewBufferString(msg), nil }, }, } var repoStatCmd = &cmds.Command{ Helptext: cmdkit.HelpText{ Tagline: "Get stats for the currently used repo.", ShortDescription: ` 'ipfs repo stat' is a plumbing command that will scan the local set of stored objects and print repo statistics. It outputs to stdout: NumObjects int Number of objects in the local repo. RepoPath string The path to the repo being currently used. RepoSize int Size in bytes that the repo is currently taking. Version string The repo version. `, }, Run: func(req cmds.Request, res cmds.ResponseEmitter) { n, err := req.InvocContext().GetNode() if err != nil { res.SetError(err, cmdkit.ErrNormal) return } stat, err := corerepo.RepoStat(n, req.Context()) if err != nil { res.SetError(err, cmdkit.ErrNormal) return } cmds.EmitOnce(res, stat) }, Options: []cmdkit.Option{ cmdkit.BoolOption("human", "Output RepoSize in MiB."), }, Type: corerepo.Stat{}, Encoders: cmds.EncoderMap{ cmds.Text: cmds.MakeEncoder(func(req cmds.Request, w io.Writer, v interface{}) error { stat, ok := v.(*corerepo.Stat) if !ok { return e.TypeErr(stat, v) } human, _, err := req.Option("human").Bool() if err != nil { return err } wtr := tabwriter.NewWriter(w, 0, 0, 1, ' ', 0) fmt.Fprintf(wtr, "NumObjects:\t%d\n", stat.NumObjects) sizeInMiB := stat.RepoSize / (1024 * 1024) if human && sizeInMiB > 0 { fmt.Fprintf(wtr, "RepoSize (MiB):\t%d\n", sizeInMiB) } else { fmt.Fprintf(wtr, "RepoSize:\t%d\n", stat.RepoSize) } if stat.StorageMax != corerepo.NoLimit { maxSizeInMiB := stat.StorageMax / (1024 * 1024) if human && maxSizeInMiB > 0 { fmt.Fprintf(wtr, "StorageMax (MiB):\t%d\n", maxSizeInMiB) } else { fmt.Fprintf(wtr, "StorageMax:\t%d\n", stat.StorageMax) } } fmt.Fprintf(wtr, "RepoPath:\t%s\n", stat.RepoPath) fmt.Fprintf(wtr, "Version:\t%s\n", stat.Version) wtr.Flush() return nil }), }, } var RepoFsckCmd = &oldcmds.Command{ Helptext: cmdkit.HelpText{ Tagline: "Remove repo lockfiles.", ShortDescription: ` 'ipfs repo fsck' is a plumbing command that will remove repo and level db lockfiles, as well as the api file. This command can only run when no ipfs daemons are running. `, }, Run: func(req oldcmds.Request, res oldcmds.Response) { configRoot := req.InvocContext().ConfigRoot dsPath, err := config.DataStorePath(configRoot) if err != nil { res.SetError(err, cmdkit.ErrNormal) return } dsLockFile := filepath.Join(dsPath, "LOCK") // TODO: get this lockfile programmatically repoLockFile := filepath.Join(configRoot, lockfile.LockFile) apiFile := filepath.Join(configRoot, "api") // TODO: get this programmatically log.Infof("Removing repo lockfile: %s", repoLockFile) log.Infof("Removing datastore lockfile: %s", dsLockFile) log.Infof("Removing api file: %s", apiFile) err = os.Remove(repoLockFile) if err != nil && !os.IsNotExist(err) { res.SetError(err, cmdkit.ErrNormal) return } err = os.Remove(dsLockFile) if err != nil && !os.IsNotExist(err) { res.SetError(err, cmdkit.ErrNormal) return } err = os.Remove(apiFile) if err != nil && !os.IsNotExist(err) { res.SetError(err, cmdkit.ErrNormal) return } res.SetOutput(&MessageOutput{"Lockfiles have been removed.\n"}) }, Type: MessageOutput{}, Marshalers: oldcmds.MarshalerMap{ oldcmds.Text: MessageTextMarshaler, }, } type VerifyProgress struct { Msg string Progress int } var repoVerifyCmd = &oldcmds.Command{ Helptext: cmdkit.HelpText{ Tagline: "Verify all blocks in repo are not corrupted.", }, Run: func(req oldcmds.Request, res oldcmds.Response) { nd, err := req.InvocContext().GetNode() if err != nil { res.SetError(err, cmdkit.ErrNormal) return } out := make(chan interface{}) res.SetOutput((<-chan interface{})(out)) defer close(out) bs := bstore.NewBlockstore(nd.Repo.Datastore()) bs.HashOnRead(true) keys, err := bs.AllKeysChan(req.Context()) if err != nil { log.Error(err) return } var fails int var i int for k := range keys { _, err := bs.Get(k) if err != nil { out <- &VerifyProgress{ Msg: fmt.Sprintf("block %s was corrupt (%s)", k, err), } fails++ } i++ out <- &VerifyProgress{Progress: i} } if fails == 0 { out <- &VerifyProgress{Msg: "verify complete, all blocks validated."} } else { res.SetError(fmt.Errorf("verify complete, some blocks were corrupt"), cmdkit.ErrNormal) } }, Type: &VerifyProgress{}, Marshalers: oldcmds.MarshalerMap{ oldcmds.Text: func(res oldcmds.Response) (io.Reader, error) { v, err := unwrapOutput(res.Output()) if err != nil { return nil, err } obj, ok := v.(*VerifyProgress) if !ok { return nil, e.TypeErr(obj, v) } buf := new(bytes.Buffer) if strings.Contains(obj.Msg, "was corrupt") { fmt.Fprintln(os.Stdout, obj.Msg) return buf, nil } if obj.Msg != "" { if len(obj.Msg) < 20 { obj.Msg += " " } fmt.Fprintln(buf, obj.Msg) return buf, nil } fmt.Fprintf(buf, "%d blocks processed.\r", obj.Progress) return buf, nil }, }, } var repoVersionCmd = &oldcmds.Command{ Helptext: cmdkit.HelpText{ Tagline: "Show the repo version.", ShortDescription: ` 'ipfs repo version' returns the current repo version. `, }, Options: []cmdkit.Option{ cmdkit.BoolOption("quiet", "q", "Write minimal output."), }, Run: func(req oldcmds.Request, res oldcmds.Response) { res.SetOutput(&RepoVersion{ Version: fmt.Sprint(fsrepo.RepoVersion), }) }, Type: RepoVersion{}, Marshalers: oldcmds.MarshalerMap{ oldcmds.Text: func(res oldcmds.Response) (io.Reader, error) { v, err := unwrapOutput(res.Output()) if err != nil { return nil, err } response, ok := v.(*RepoVersion) if !ok { return nil, e.TypeErr(response, v) } quiet, _, err := res.Request().Option("quiet").Bool() if err != nil { return nil, err } buf := new(bytes.Buffer) if quiet { buf = bytes.NewBufferString(fmt.Sprintf("fs-repo@%s\n", response.Version)) } else { buf = bytes.NewBufferString(fmt.Sprintf("ipfs repo version fs-repo@%s\n", response.Version)) } return buf, nil }, }, }