2019-01-24 20:15:10 +00:00
|
|
|
// Copyright (C) 2019 Storj Labs, Inc.
|
2018-08-27 23:23:48 +01:00
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2019-02-06 16:40:55 +00:00
|
|
|
"path/filepath"
|
|
|
|
|
2018-08-27 23:23:48 +01:00
|
|
|
"github.com/spf13/cobra"
|
2019-02-06 16:40:55 +00:00
|
|
|
"github.com/zeebo/errs"
|
2018-08-27 23:23:48 +01:00
|
|
|
|
|
|
|
"storj.io/storj/pkg/cfgstruct"
|
2019-01-30 20:47:21 +00:00
|
|
|
"storj.io/storj/pkg/identity"
|
2018-08-27 23:23:48 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2019-02-06 16:40:55 +00:00
|
|
|
// ErrSetup is used when an error occurs while setting up
|
|
|
|
ErrSetup = errs.Class("setup error")
|
|
|
|
|
2018-08-27 23:23:48 +01:00
|
|
|
idCmd = &cobra.Command{
|
2019-01-18 10:36:58 +00:00
|
|
|
Use: "id",
|
|
|
|
Short: "Manage identities",
|
|
|
|
Annotations: map[string]string{"type": "setup"},
|
2018-08-27 23:23:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
newIDCmd = &cobra.Command{
|
2019-01-24 15:41:16 +00:00
|
|
|
Use: "create",
|
2019-01-18 10:36:58 +00:00
|
|
|
Short: "Creates a new identity from an existing certificate authority",
|
|
|
|
RunE: cmdNewID,
|
|
|
|
Annotations: map[string]string{"type": "setup"},
|
2018-08-27 23:23:48 +01:00
|
|
|
}
|
|
|
|
|
2018-12-18 11:55:55 +00:00
|
|
|
leafExtCmd = &cobra.Command{
|
2019-01-18 10:36:58 +00:00
|
|
|
Use: "extensions",
|
|
|
|
Short: "Prints the extensions attached to the identity leaf certificate",
|
2019-02-06 16:40:55 +00:00
|
|
|
Args: cobra.MaximumNArgs(1),
|
2019-01-18 10:36:58 +00:00
|
|
|
RunE: cmdLeafExtensions,
|
|
|
|
Annotations: map[string]string{"type": "setup"},
|
2018-12-18 11:55:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
revokeLeafCmd = &cobra.Command{
|
2019-01-18 10:36:58 +00:00
|
|
|
Use: "revoke",
|
|
|
|
Short: "Revoke the identity's leaf certificate (creates backup)",
|
|
|
|
RunE: cmdRevokeLeaf,
|
|
|
|
Annotations: map[string]string{"type": "setup"},
|
2018-12-18 11:55:55 +00:00
|
|
|
}
|
|
|
|
|
2018-08-27 23:23:48 +01:00
|
|
|
newIDCfg struct {
|
2019-01-30 20:47:21 +00:00
|
|
|
CA identity.FullCAConfig
|
|
|
|
Identity identity.SetupConfig
|
2018-08-27 23:23:48 +01:00
|
|
|
}
|
2018-12-18 11:55:55 +00:00
|
|
|
|
|
|
|
leafExtCfg struct {
|
2019-02-06 16:40:55 +00:00
|
|
|
Identity identity.PeerConfig
|
2018-12-18 11:55:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
revokeLeafCfg struct {
|
2019-01-30 20:47:21 +00:00
|
|
|
CA identity.FullCAConfig
|
2019-04-03 16:03:53 +01:00
|
|
|
Identity identity.Config
|
2018-12-18 11:55:55 +00:00
|
|
|
// TODO: add "broadcast" option to send revocation to network nodes
|
|
|
|
}
|
2018-08-27 23:23:48 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
rootCmd.AddCommand(idCmd)
|
|
|
|
idCmd.AddCommand(newIDCmd)
|
2018-12-18 11:55:55 +00:00
|
|
|
idCmd.AddCommand(leafExtCmd)
|
|
|
|
idCmd.AddCommand(revokeLeafCmd)
|
2019-01-22 12:35:48 +00:00
|
|
|
|
2019-04-19 19:17:30 +01:00
|
|
|
cfgstruct.Bind(newIDCmd.Flags(), &newIDCfg, defaults, cfgstruct.IdentityDir(defaultIdentityDir))
|
|
|
|
cfgstruct.Bind(leafExtCmd.Flags(), &leafExtCfg, defaults, cfgstruct.IdentityDir(defaultIdentityDir))
|
|
|
|
cfgstruct.Bind(revokeLeafCmd.Flags(), &revokeLeafCfg, defaults, cfgstruct.IdentityDir(defaultIdentityDir))
|
2018-08-27 23:23:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func cmdNewID(cmd *cobra.Command, args []string) (err error) {
|
|
|
|
ca, err := newIDCfg.CA.Load()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-03-12 14:42:38 +00:00
|
|
|
s, err := newIDCfg.Identity.Status()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-01-30 20:47:21 +00:00
|
|
|
if s == identity.NoCertNoKey || newIDCfg.Identity.Overwrite {
|
2018-08-27 23:23:48 +01:00
|
|
|
_, err := newIDCfg.Identity.Create(ca)
|
|
|
|
return err
|
|
|
|
}
|
2019-02-06 16:40:55 +00:00
|
|
|
return ErrSetup.New("identity file(s) exist: %s", s)
|
2018-08-27 23:23:48 +01:00
|
|
|
}
|
2018-12-18 11:55:55 +00:00
|
|
|
|
|
|
|
func cmdLeafExtensions(cmd *cobra.Command, args []string) (err error) {
|
2019-02-06 16:40:55 +00:00
|
|
|
if len(args) > 0 {
|
|
|
|
leafExtCfg.Identity = identity.PeerConfig{
|
|
|
|
CertPath: filepath.Join(identityDir, args[0], "identity.cert"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ident, err := leafExtCfg.Identity.Load()
|
2018-12-18 11:55:55 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-04-03 16:03:53 +01:00
|
|
|
return printExtensions(ident.Leaf.Raw, ident.Leaf.Extensions)
|
2018-12-18 11:55:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func cmdRevokeLeaf(cmd *cobra.Command, args []string) (err error) {
|
|
|
|
ca, err := revokeLeafCfg.CA.Load()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
originalIdent, err := revokeLeafCfg.Identity.Load()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-04-03 16:03:53 +01:00
|
|
|
manageableIdent := identity.NewManageableFullIdentity(originalIdent, ca)
|
|
|
|
if err := manageableIdent.Revoke(); err != nil {
|
2018-12-18 11:55:55 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-04-03 16:03:53 +01:00
|
|
|
// NB: backup original cert and key.
|
2019-01-11 14:59:35 +00:00
|
|
|
if err := revokeLeafCfg.Identity.SaveBackup(originalIdent); err != nil {
|
2018-12-18 11:55:55 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-04-03 16:03:53 +01:00
|
|
|
if err := revokeLeafCfg.Identity.Save(manageableIdent.FullIdentity); err != nil {
|
2018-12-18 11:55:55 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|