// Copyright (C) 2018 Storj Labs, Inc. // See LICENSE for copying information. package main import ( "github.com/spf13/cobra" "storj.io/storj/pkg/cfgstruct" "storj.io/storj/pkg/peertls" "storj.io/storj/pkg/provider" ) var ( idCmd = &cobra.Command{ Use: "id", Short: "Manage identities", Annotations: map[string]string{"type": "setup"}, } newIDCmd = &cobra.Command{ Use: "new", Short: "Creates a new identity from an existing certificate authority", RunE: cmdNewID, Annotations: map[string]string{"type": "setup"}, } leafExtCmd = &cobra.Command{ Use: "extensions", Short: "Prints the extensions attached to the identity leaf certificate", RunE: cmdLeafExtensions, Annotations: map[string]string{"type": "setup"}, } revokeLeafCmd = &cobra.Command{ Use: "revoke", Short: "Revoke the identity's leaf certificate (creates backup)", RunE: cmdRevokeLeaf, Annotations: map[string]string{"type": "setup"}, } newIDCfg struct { CA provider.FullCAConfig Identity provider.IdentitySetupConfig } leafExtCfg struct { Identity provider.IdentityConfig } revokeLeafCfg struct { CA provider.FullCAConfig Identity provider.IdentityConfig // TODO: add "broadcast" option to send revocation to network nodes } ) func init() { rootCmd.AddCommand(idCmd) idCmd.AddCommand(newIDCmd) idCmd.AddCommand(leafExtCmd) idCmd.AddCommand(revokeLeafCmd) cfgstruct.Bind(newIDCmd.Flags(), &newIDCfg, cfgstruct.CredsDir(defaultIdentityDir)) cfgstruct.Bind(leafExtCmd.Flags(), &leafExtCfg, cfgstruct.CredsDir(defaultIdentityDir)) cfgstruct.Bind(revokeLeafCmd.Flags(), &revokeLeafCfg, cfgstruct.CredsDir(defaultIdentityDir)) } func cmdNewID(cmd *cobra.Command, args []string) (err error) { ca, err := newIDCfg.CA.Load() if err != nil { return err } s := newIDCfg.Identity.Status() if s == provider.NoCertNoKey || newIDCfg.Identity.Overwrite { _, err := newIDCfg.Identity.Create(ca) return err } return provider.ErrSetup.New("identity file(s) exist: %s", s) } func cmdLeafExtensions(cmd *cobra.Command, args []string) (err error) { fi, err := leafExtCfg.Identity.Load() if err != nil { return err } return printExtensions(fi.Leaf.Raw, fi.Leaf.ExtraExtensions) } 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 } updatedIdent, err := ca.NewIdentity() if err != nil { return err } if err := peertls.AddRevocationExt(ca.Key, originalIdent.Leaf, updatedIdent.Leaf); err != nil { return err } // NB: backup original cert if err := revokeLeafCfg.Identity.SaveBackup(originalIdent); err != nil { return err } updateCfg := provider.IdentityConfig{ CertPath: revokeLeafCfg.Identity.CertPath, } if err := updateCfg.Save(updatedIdent); err != nil { return err } return nil }