2019-01-11 14:59:35 +00:00
|
|
|
// Copyright (C) 2019 Storj Labs, Inc.
|
2018-12-20 18:29:05 +00:00
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/spf13/cobra"
|
2019-01-22 12:35:48 +00:00
|
|
|
"go.uber.org/zap"
|
2018-12-20 18:29:05 +00:00
|
|
|
|
|
|
|
"storj.io/storj/internal/fpath"
|
|
|
|
"storj.io/storj/pkg/certificates"
|
|
|
|
"storj.io/storj/pkg/cfgstruct"
|
2019-01-22 12:35:48 +00:00
|
|
|
"storj.io/storj/pkg/identity"
|
2018-12-20 18:29:05 +00:00
|
|
|
"storj.io/storj/pkg/process"
|
2019-01-02 10:23:25 +00:00
|
|
|
"storj.io/storj/pkg/server"
|
2018-12-20 18:29:05 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type batchCfg struct {
|
|
|
|
EmailsPath string `help:"optional path to a list of emails, delimited by <delimiter>, for batch processing"`
|
|
|
|
Delimiter string `help:"delimiter to split emails loaded from <emails-path> on (e.g. comma, new-line)" default:"\n"`
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
|
|
rootCmd = &cobra.Command{
|
|
|
|
Use: "certificates",
|
|
|
|
Short: "Certificate request signing",
|
|
|
|
}
|
|
|
|
|
|
|
|
runCmd = &cobra.Command{
|
|
|
|
Use: "run",
|
|
|
|
Short: "Run a certificate signing server",
|
|
|
|
RunE: cmdRun,
|
|
|
|
}
|
|
|
|
|
2019-01-22 12:35:48 +00:00
|
|
|
config struct {
|
|
|
|
batchCfg
|
2019-01-25 14:54:54 +00:00
|
|
|
CA identity.CASetupConfig
|
|
|
|
Identity identity.SetupConfig
|
|
|
|
Server struct { // workaround server.Config change
|
|
|
|
Identity identity.Config
|
|
|
|
server.Config
|
|
|
|
}
|
2019-01-22 12:35:48 +00:00
|
|
|
Signer certificates.CertServerConfig
|
|
|
|
All bool `help:"print the all authorizations for auth info/export subcommands" default:"false"`
|
|
|
|
Out string `help:"output file path for auth export subcommand; if \"-\", will use STDOUT" default:"-"`
|
|
|
|
ShowTokens bool `help:"if true, token strings will be printed for auth info command" default:"false"`
|
|
|
|
Overwrite bool `default:"false" help:"if true ca, identity, and authorization db will be overwritten/truncated"`
|
2018-12-20 18:29:05 +00:00
|
|
|
}
|
|
|
|
|
2019-01-22 12:35:48 +00:00
|
|
|
defaultConfDir = fpath.ApplicationDir("storj", "cert-signing")
|
|
|
|
defaultIdentityDir = fpath.ApplicationDir("storj", "identity", "certificates")
|
|
|
|
confDir string
|
|
|
|
identityDir string
|
2018-12-20 18:29:05 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
2019-01-22 12:35:48 +00:00
|
|
|
confDirParam := cfgstruct.FindConfigDirParam()
|
|
|
|
if confDirParam != "" {
|
|
|
|
defaultIdentityDir = confDirParam
|
2019-01-04 17:23:23 +00:00
|
|
|
}
|
2019-01-22 14:34:40 +00:00
|
|
|
identityDirParam := cfgstruct.FindIdentityDirParam()
|
2019-01-22 12:35:48 +00:00
|
|
|
if identityDirParam != "" {
|
|
|
|
defaultIdentityDir = identityDirParam
|
|
|
|
}
|
|
|
|
|
|
|
|
rootCmd.PersistentFlags().StringVar(&confDir, "config-dir", defaultConfDir, "main directory for certificates configuration")
|
|
|
|
err := rootCmd.PersistentFlags().SetAnnotation("config-dir", "setup", []string{"true"})
|
|
|
|
if err != nil {
|
|
|
|
zap.S().Error("Failed to set 'setup' annotation for 'config-dir'")
|
|
|
|
}
|
|
|
|
rootCmd.PersistentFlags().StringVar(&identityDir, "identity-dir", defaultIdentityDir, "main directory for storagenode identity credentials")
|
2019-01-04 17:23:23 +00:00
|
|
|
|
|
|
|
rootCmd.AddCommand(runCmd)
|
2019-01-22 14:34:40 +00:00
|
|
|
cfgstruct.Bind(runCmd.Flags(), &config, cfgstruct.ConfDir(defaultConfDir), cfgstruct.IdentityDir(defaultIdentityDir))
|
2018-12-20 18:29:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func cmdRun(cmd *cobra.Command, args []string) error {
|
|
|
|
ctx := process.Ctx(cmd)
|
|
|
|
|
2019-01-25 14:54:54 +00:00
|
|
|
identity, err := config.Server.Identity.Load()
|
|
|
|
if err != nil {
|
|
|
|
zap.S().Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return config.Server.Run(ctx, identity, nil, config.Signer)
|
2018-12-20 18:29:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
process.Exec(rootCmd)
|
|
|
|
}
|