-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: move --generate-key to a generate-key subcommand
- Loading branch information
1 parent
299801d
commit e0eed78
Showing
9 changed files
with
137 additions
and
76 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
package keygen | ||
|
||
import ( | ||
"encoding/json" | ||
"fmt" | ||
"os" | ||
|
||
"github.com/ethereum/go-ethereum/accounts/keystore" | ||
"github.com/ethereum/go-ethereum/crypto" | ||
"github.com/urfave/cli/v2" | ||
"github.com/waku-org/go-waku/waku/v2/utils" | ||
"go.uber.org/zap" | ||
) | ||
|
||
// Command generates a key file used to generate the node's peerID, encrypted with an optional password | ||
var Command = cli.Command{ | ||
Name: "generate-key", | ||
Usage: "Generate private key file at path specified in --key-file with the password defined by --key-password", | ||
Action: func(cCtx *cli.Context) error { | ||
if err := generateKeyFile(Options.KeyFile, []byte(Options.KeyPasswd), Options.Overwrite); err != nil { | ||
utils.Logger().Fatal("could not write keyfile", zap.Error(err)) | ||
} | ||
return nil | ||
}, | ||
Flags: []cli.Flag{ | ||
KeyFile, | ||
KeyPassword, | ||
Overwrite, | ||
}, | ||
} | ||
|
||
func checkForFileExistence(path string, overwrite bool) error { | ||
_, err := os.Stat(path) | ||
|
||
if err == nil && !overwrite { | ||
return fmt.Errorf("%s already exists. Use --overwrite to overwrite the file", path) | ||
} | ||
|
||
if err := os.Remove(path); err != nil && !os.IsNotExist(err) { | ||
return err | ||
} | ||
|
||
return nil | ||
} | ||
|
||
func generatePrivateKey() ([]byte, error) { | ||
key, err := crypto.GenerateKey() | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
return key.D.Bytes(), nil | ||
} | ||
|
||
func writeKeyFile(path string, key []byte, passwd []byte) error { | ||
encryptedK, err := keystore.EncryptDataV3(key, passwd, keystore.StandardScryptN, keystore.StandardScryptP) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
output, err := json.Marshal(encryptedK) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
return os.WriteFile(path, output, 0600) | ||
} | ||
|
||
func generateKeyFile(path string, passwd []byte, overwrite bool) error { | ||
if err := checkForFileExistence(path, overwrite); err != nil { | ||
return err | ||
} | ||
|
||
key, err := generatePrivateKey() | ||
if err != nil { | ||
return err | ||
} | ||
|
||
return writeKeyFile(path, key, passwd) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
package keygen | ||
|
||
import ( | ||
cli "github.com/urfave/cli/v2" | ||
"github.com/urfave/cli/v2/altsrc" | ||
) | ||
|
||
// Options contain the settings used for generating a key file | ||
var Options GenerateKeyOptions | ||
|
||
var ( | ||
// KeyFile is a flag that contains the path where the node key will be written | ||
KeyFile = altsrc.NewPathFlag(&cli.PathFlag{ | ||
Name: "key-file", | ||
Value: "./nodekey", | ||
Usage: "Path to a file containing the private key for the P2P node", | ||
Destination: &Options.KeyFile, | ||
EnvVars: []string{"WAKUNODE2_KEY_FILE"}, | ||
}) | ||
// KeyPassword is a flag to set the password used to encrypt the file | ||
KeyPassword = altsrc.NewStringFlag(&cli.StringFlag{ | ||
Name: "key-password", | ||
Value: "secret", | ||
Usage: "Password used for the private key file", | ||
Destination: &Options.KeyPasswd, | ||
EnvVars: []string{"WAKUNODE2_KEY_PASSWORD"}, | ||
}) | ||
// Overwrite is a flag used to overwrite an existing key file | ||
Overwrite = altsrc.NewBoolFlag(&cli.BoolFlag{ | ||
Name: "overwrite", | ||
Value: false, | ||
Usage: "Overwrite the nodekey file if it already exists", | ||
Destination: &Options.Overwrite, | ||
}) | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package keygen | ||
|
||
// GenerateKeyOptions contains all the settings that can be used when generating | ||
// a keyfile with the generate-key command | ||
type GenerateKeyOptions struct { | ||
KeyFile string | ||
KeyPasswd string | ||
Overwrite bool | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters