2017-09-26 14:43:52 -04:00
package trust
import (
"context"
"fmt"
2017-10-25 13:45:10 -04:00
"io"
2017-09-26 14:43:52 -04:00
"os"
"path"
"regexp"
"strings"
"github.com/docker/cli/cli"
"github.com/docker/cli/cli/command"
2017-10-23 05:23:39 -04:00
"github.com/docker/cli/cli/command/image"
2017-09-26 14:43:52 -04:00
"github.com/docker/cli/cli/trust"
"github.com/docker/cli/opts"
2017-10-10 13:16:01 -04:00
"github.com/pkg/errors"
2017-09-26 14:43:52 -04:00
"github.com/spf13/cobra"
2017-10-30 12:21:41 -04:00
"github.com/theupdateframework/notary/client"
"github.com/theupdateframework/notary/tuf/data"
tufutils "github.com/theupdateframework/notary/tuf/utils"
2017-09-26 14:43:52 -04:00
)
type signerAddOptions struct {
keys opts . ListOpts
signer string
2017-10-25 13:45:10 -04:00
repos [ ] string
2017-09-26 14:43:52 -04:00
}
func newSignerAddCommand ( dockerCli command . Cli ) * cobra . Command {
var options signerAddOptions
cmd := & cobra . Command {
2017-10-25 13:45:10 -04:00
Use : "add OPTIONS NAME REPOSITORY [REPOSITORY...] " ,
2017-09-26 14:43:52 -04:00
Short : "Add a signer" ,
Args : cli . RequiresMinArgs ( 2 ) ,
RunE : func ( cmd * cobra . Command , args [ ] string ) error {
options . signer = args [ 0 ]
2017-10-25 13:45:10 -04:00
options . repos = args [ 1 : ]
2017-10-10 13:16:01 -04:00
return addSigner ( dockerCli , options )
2017-09-26 14:43:52 -04:00
} ,
}
flags := cmd . Flags ( )
options . keys = opts . NewListOpts ( nil )
2017-10-25 13:45:10 -04:00
flags . Var ( & options . keys , "key" , "Path to the signer's public key file" )
2017-09-26 14:43:52 -04:00
return cmd
}
2017-10-25 13:45:10 -04:00
var validSignerName = regexp . MustCompile ( ` ^[a-z0-9][a-z0-9\_\-]*$ ` ) . MatchString
2017-09-26 14:43:52 -04:00
2017-10-10 13:16:01 -04:00
func addSigner ( cli command . Cli , options signerAddOptions ) error {
2017-09-26 14:43:52 -04:00
signerName := options . signer
if ! validSignerName ( signerName ) {
2017-10-25 13:45:10 -04:00
return fmt . Errorf ( "signer name \"%s\" must start with lowercase alphanumeric characters and can include \"-\" or \"_\" after the first character" , signerName )
2017-09-26 14:43:52 -04:00
}
if signerName == "releases" {
return fmt . Errorf ( "releases is a reserved keyword, please use a different signer name" )
}
2017-10-25 13:45:10 -04:00
if options . keys . Len ( ) == 0 {
return fmt . Errorf ( "path to a public key must be provided using the `--key` flag" )
2017-09-26 14:43:52 -04:00
}
2017-10-25 13:45:10 -04:00
signerPubKeys , err := ingestPublicKeys ( options . keys . GetAll ( ) )
if err != nil {
return err
}
var errRepos [ ] string
for _ , repoName := range options . repos {
fmt . Fprintf ( cli . Out ( ) , "Adding signer \"%s\" to %s...\n" , signerName , repoName )
if err := addSignerToRepo ( cli , signerName , repoName , signerPubKeys ) ; err != nil {
fmt . Fprintln ( cli . Err ( ) , err . Error ( ) + "\n" )
errRepos = append ( errRepos , repoName )
2017-09-26 14:43:52 -04:00
} else {
2017-10-25 13:45:10 -04:00
fmt . Fprintf ( cli . Out ( ) , "Successfully added signer: %s to %s\n\n" , signerName , repoName )
2017-09-26 14:43:52 -04:00
}
}
2017-10-25 13:45:10 -04:00
if len ( errRepos ) > 0 {
return fmt . Errorf ( "Failed to add signer to: %s" , strings . Join ( errRepos , ", " ) )
2017-09-26 14:43:52 -04:00
}
return nil
}
2017-10-25 13:45:10 -04:00
func addSignerToRepo ( cli command . Cli , signerName string , repoName string , signerPubKeys [ ] data . PublicKey ) error {
2017-09-26 14:43:52 -04:00
ctx := context . Background ( )
2018-03-06 05:15:18 -05:00
imgRefAndAuth , err := trust . GetImageReferencesAndAuth ( ctx , nil , image . AuthResolver ( cli ) , repoName )
2017-09-26 14:43:52 -04:00
if err != nil {
return err
}
2017-10-23 05:23:39 -04:00
notaryRepo , err := cli . NotaryClient ( imgRefAndAuth , trust . ActionsPushAndPull )
2017-09-26 14:43:52 -04:00
if err != nil {
return trust . NotaryError ( imgRefAndAuth . Reference ( ) . Name ( ) , err )
}
if _ , err = notaryRepo . ListTargets ( ) ; err != nil {
switch err . ( type ) {
case client . ErrRepoNotInitialized , client . ErrRepositoryNotExist :
2017-10-25 13:45:10 -04:00
fmt . Fprintf ( cli . Out ( ) , "Initializing signed repository for %s...\n" , repoName )
2017-09-26 14:43:52 -04:00
if err := getOrGenerateRootKeyAndInitRepo ( notaryRepo ) ; err != nil {
2017-10-25 13:45:10 -04:00
return trust . NotaryError ( repoName , err )
2017-09-26 14:43:52 -04:00
}
2017-10-25 13:45:10 -04:00
fmt . Fprintf ( cli . Out ( ) , "Successfully initialized %q\n" , repoName )
2017-09-26 14:43:52 -04:00
default :
2017-10-25 13:45:10 -04:00
return trust . NotaryError ( repoName , err )
2017-09-26 14:43:52 -04:00
}
}
newSignerRoleName := data . RoleName ( path . Join ( data . CanonicalTargetsRole . String ( ) , signerName ) )
2017-10-10 13:16:01 -04:00
if err := addStagedSigner ( notaryRepo , newSignerRoleName , signerPubKeys ) ; err != nil {
return errors . Wrapf ( err , "could not add signer to repo: %s" , strings . TrimPrefix ( newSignerRoleName . String ( ) , "targets/" ) )
}
2017-09-26 14:43:52 -04:00
return notaryRepo . Publish ( )
}
func ingestPublicKeys ( pubKeyPaths [ ] string ) ( [ ] data . PublicKey , error ) {
pubKeys := [ ] data . PublicKey { }
for _ , pubKeyPath := range pubKeyPaths {
2017-10-25 13:45:10 -04:00
// Read public key bytes from PEM file, limit to 1 KiB
pubKeyFile , err := os . OpenFile ( pubKeyPath , os . O_RDONLY , 0666 )
2017-09-26 14:43:52 -04:00
if err != nil {
2017-10-25 13:45:10 -04:00
return nil , errors . Wrap ( err , "unable to read public key from file" )
}
defer pubKeyFile . Close ( )
// limit to
l := io . LimitReader ( pubKeyFile , 1 << 20 )
2022-02-25 08:33:57 -05:00
pubKeyBytes , err := io . ReadAll ( l )
2017-10-25 13:45:10 -04:00
if err != nil {
return nil , errors . Wrap ( err , "unable to read public key from file" )
2017-09-26 14:43:52 -04:00
}
// Parse PEM bytes into type PublicKey
pubKey , err := tufutils . ParsePEMPublicKey ( pubKeyBytes )
if err != nil {
2017-10-25 13:45:10 -04:00
return nil , errors . Wrapf ( err , "could not parse public key from file: %s" , pubKeyPath )
2017-09-26 14:43:52 -04:00
}
pubKeys = append ( pubKeys , pubKey )
}
return pubKeys , nil
}