cmd/multinode: generate identity when not provided

Closes https://github.com/storj/storj/issues/4974

Change-Id: I7a07d846be7ac8f8f7d7e9ad61511ff84d2ab400
This commit is contained in:
Clement Sam 2022-08-26 01:18:17 +00:00 committed by Storj Robot
parent 9c09a8dbd5
commit d800b51dd9
2 changed files with 29 additions and 4 deletions

View File

@ -5,6 +5,7 @@ package main
import ( import (
"bytes" "bytes"
"context"
"encoding/json" "encoding/json"
"fmt" "fmt"
"io" "io"
@ -18,6 +19,7 @@ import (
"golang.org/x/text/transform" "golang.org/x/text/transform"
"storj.io/common/fpath" "storj.io/common/fpath"
"storj.io/common/identity"
"storj.io/common/peertls/tlsopts" "storj.io/common/peertls/tlsopts"
"storj.io/common/rpc" "storj.io/common/rpc"
"storj.io/common/storj" "storj.io/common/storj"
@ -90,11 +92,16 @@ func main() {
func init() { func init() {
defaultConfDir := fpath.ApplicationDir("storj", "multinode") defaultConfDir := fpath.ApplicationDir("storj", "multinode")
defaultIdentityDir := fpath.ApplicationDir("storj", "identity", "multinode")
cfgstruct.SetupFlag(zap.L(), rootCmd, &confDir, "config-dir", defaultConfDir, "main directory for multinode configuration") cfgstruct.SetupFlag(zap.L(), rootCmd, &confDir, "config-dir", defaultConfDir, "main directory for multinode configuration")
cfgstruct.SetupFlag(zap.L(), rootCmd, &identityDir, "identity-dir", defaultIdentityDir, "main directory for multinode identity credentials") cfgstruct.SetupFlag(zap.L(), rootCmd, &identityDir, "identity-dir", "", "main directory for multinode identity credentials")
defaults := cfgstruct.DefaultsFlag(rootCmd) defaults := cfgstruct.DefaultsFlag(rootCmd)
// Ignoring errors since MarkDeprecated only errors if the flag
// doesn't exist or no deprecated message is provided.
// and MarkHidden only errors if the flag doesn't exist.
_ = rootCmd.PersistentFlags().MarkDeprecated("identity-dir", "multinode no longer requires an identity key")
_ = rootCmd.PersistentFlags().MarkHidden("identity-dir")
rootCmd.AddCommand(setupCmd) rootCmd.AddCommand(setupCmd)
rootCmd.AddCommand(runCmd) rootCmd.AddCommand(runCmd)
rootCmd.AddCommand(addCmd) rootCmd.AddCommand(addCmd)
@ -129,7 +136,7 @@ func cmdRun(cmd *cobra.Command, args []string) (err error) {
runCfg.Debug.Address = *process.DebugAddrFlag runCfg.Debug.Address = *process.DebugAddrFlag
identity, err := runCfg.Identity.Load() identity, err := getIdentity(ctx, &runCfg)
if err != nil { if err != nil {
log.Error("failed to load identity", zap.Error(err)) log.Error("failed to load identity", zap.Error(err))
return errs.New("failed to load identity: %+v", err) return errs.New("failed to load identity: %+v", err)
@ -160,7 +167,7 @@ func cmdAdd(cmd *cobra.Command, args []string) (err error) {
ctx, _ := process.Ctx(cmd) ctx, _ := process.Ctx(cmd)
log := zap.L() log := zap.L()
identity, err := addCfg.Identity.Load() identity, err := getIdentity(ctx, &addCfg.Config)
if err != nil { if err != nil {
return errs.New("failed to load identity: %+v", err) return errs.New("failed to load identity: %+v", err)
} }
@ -282,3 +289,20 @@ func unmarshalJSONNodes(nodesJSONData []byte) ([]nodes.Node, error) {
return nodesInfo, nil return nodesInfo, nil
} }
func getIdentity(ctx context.Context, cfg *Config) (*identity.FullIdentity, error) {
// for backwards compatibility reasons, check if an identity was provided.
if cfgstruct.FindIdentityDirParam() != "" {
ident, err := cfg.Identity.Load()
if err == nil {
return ident, nil
}
zap.L().Error("failed to load identity.", zap.Error(err))
zap.L().Info("generating new identity.")
}
// generate new identity
return identity.NewFullIdentity(ctx, identity.NewCAOptions{
Difficulty: 0,
Concurrency: 1,
})
}

View File

@ -48,6 +48,7 @@ type DB interface {
// Config is all the configuration parameters for a Multinode Dashboard. // Config is all the configuration parameters for a Multinode Dashboard.
type Config struct { type Config struct {
// TODO: remove Identity flags since --identity-dir is deprecated
Identity identity.Config Identity identity.Config
Debug debug.Config Debug debug.Config