Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Consolidate viper usage in pkg/ca/ca.go #255

Merged
merged 1 commit into from
Dec 2, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmd/app/serve.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ var serveCmd = &cobra.Command{
}
}()

cfg, err := config.Load()
cfg, err := config.Load(viper.GetString("config-path"))
if err != nil {
log.Logger.Fatalf("error loading config: %v", err)
}
Expand Down
14 changes: 11 additions & 3 deletions pkg/api/ca.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,22 @@ func CA() certauth.CertificateAuthority {
version := viper.GetString("gcp_private_ca_version")
switch version {
case "v1":
ca, err = googlecav1.NewCertAuthorityService()
ca, err = googlecav1.NewCertAuthorityService(viper.GetString("gcp_private_ca_parent"))
case "v1beta1":
ca, err = googlecav1beta1.NewCertAuthorityService()
ca, err = googlecav1beta1.NewCertAuthorityService(viper.GetString("gcp_private_ca_parent"))
default:
err = fmt.Errorf("invalid value for gcp_private_ca_version: %v", version)
}
case "pkcs11ca":
ca, err = x509ca.NewX509CA()
params := x509ca.Params{
ConfigPath: viper.GetString("pkcs11-config-path"),
RootID: viper.GetString("hsm-caroot-id"),
}
if viper.IsSet("aws-hsm-root-ca-path") {
path := viper.GetString("aws-hsm-root-ca-path")
params.CAPath = &path
}
ca, err = x509ca.NewX509CA(params)
case "ephemeralca":
ca, err = ephemeralca.NewEphemeralCA()
default:
Expand Down
5 changes: 2 additions & 3 deletions pkg/ca/googleca/v1/googleca.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ import (
"github.com/sigstore/fulcio/pkg/challenges"
"github.com/sigstore/fulcio/pkg/log"
"github.com/sigstore/sigstore/pkg/cryptoutils"
"github.com/spf13/viper"
privatecapb "google.golang.org/genproto/googleapis/cloud/security/privateca/v1"
"google.golang.org/protobuf/types/known/durationpb"
)
Expand All @@ -45,9 +44,9 @@ type CertAuthorityService struct {
client *privateca.CertificateAuthorityClient
}

func NewCertAuthorityService() (*CertAuthorityService, error) {
func NewCertAuthorityService(parent string) (*CertAuthorityService, error) {
cas := &CertAuthorityService{
parent: viper.GetString("gcp_private_ca_parent"),
parent: parent,
}
var err error
cas.client, err = casClient()
Expand Down
5 changes: 2 additions & 3 deletions pkg/ca/googleca/v1beta1/googleca.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ import (
"github.com/sigstore/fulcio/pkg/challenges"
"github.com/sigstore/fulcio/pkg/log"
"github.com/sigstore/sigstore/pkg/cryptoutils"
"github.com/spf13/viper"
privatecapb "google.golang.org/genproto/googleapis/cloud/security/privateca/v1beta1"
"google.golang.org/protobuf/types/known/durationpb"
)
Expand All @@ -45,9 +44,9 @@ type CertAuthorityService struct {
client *privateca.CertificateAuthorityClient
}

func NewCertAuthorityService() (*CertAuthorityService, error) {
func NewCertAuthorityService(parent string) (*CertAuthorityService, error) {
cas := &CertAuthorityService{
parent: viper.GetString("gcp_private_ca_parent"),
parent: parent,
}
var err error
cas.client, err = casClient()
Expand Down
17 changes: 11 additions & 6 deletions pkg/ca/x509ca/x509ca.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,27 +26,32 @@ import (
"path/filepath"

"github.com/sigstore/fulcio/pkg/pkcs11"
"github.com/spf13/viper"
)

func NewX509CA() (*X509CA, error) {
type Params struct {
ConfigPath string
RootID string
CAPath *string
}

func NewX509CA(params Params) (*X509CA, error) {
ca := &X509CA{}
p11Ctx, err := pkcs11.InitHSMCtx()
p11Ctx, err := pkcs11.InitHSMCtx(params.ConfigPath)
if err != nil {
return nil, err
}
defer p11Ctx.Close()

rootID := []byte(viper.GetString("hsm-caroot-id"))
rootID := []byte(params.RootID)

// get the existing root CA from the HSM or from disk
if !viper.IsSet("aws-hsm-root-ca-path") {
if params.CAPath == nil {
ca.RootCA, err = p11Ctx.FindCertificate(rootID, nil, nil)
if err != nil {
return nil, err
}
} else {
rootCaPath := filepath.Clean(viper.GetString("aws-hsm-root-ca-path"))
rootCaPath := filepath.Clean(*params.CAPath)
pubPEMData, err := os.ReadFile(rootCaPath)
if err != nil {
return nil, err
Expand Down
7 changes: 1 addition & 6 deletions pkg/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ import (
"github.com/coreos/go-oidc/v3/oidc"
lru "github.com/hashicorp/golang-lru"
"github.com/sigstore/fulcio/pkg/log"
"github.com/spf13/viper"
)

type FulcioConfig struct {
Expand Down Expand Up @@ -175,10 +174,6 @@ var originalTransport = http.DefaultTransport

type configKey struct{}

func Load() (*FulcioConfig, error) {
return load(viper.GetString("config-path"))
}

func With(ctx context.Context, cfg *FulcioConfig) context.Context {
ctx = context.WithValue(ctx, configKey{}, cfg)
return ctx
Expand All @@ -193,7 +188,7 @@ func FromContext(ctx context.Context) *FulcioConfig {
}

// Load a config from disk, or use defaults
func load(configPath string) (*FulcioConfig, error) {
func Load(configPath string) (*FulcioConfig, error) {
var config *FulcioConfig
if _, err := os.Stat(configPath); os.IsNotExist(err) {
log.Logger.Infof("No config at %s, using defaults: %v", configPath, DefaultConfig)
Expand Down
6 changes: 2 additions & 4 deletions pkg/config/config_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ import (

"github.com/google/go-cmp/cmp"
"github.com/google/go-cmp/cmp/cmpopts"
"github.com/spf13/viper"
)

var validCfg = `
Expand Down Expand Up @@ -100,9 +99,8 @@ func TestLoad(t *testing.T) {
if err := ioutil.WriteFile(cfgPath, []byte(validCfg), 0644); err != nil {
t.Fatal(err)
}
viper.GetViper().Set("config-path", cfgPath)

cfg, _ := Load()
cfg, _ := Load(cfgPath)
got, ok := cfg.GetIssuer("https://accounts.google.com")
if !ok {
t.Error("expected true, got false")
Expand Down Expand Up @@ -138,7 +136,7 @@ func TestLoadDefaults(t *testing.T) {

// Don't put anything here!
cfgPath := filepath.Join(td, "config.json")
cfg, err := load(cfgPath)
cfg, err := Load(cfgPath)
if err != nil {
t.Fatal(err)
}
Expand Down
5 changes: 2 additions & 3 deletions pkg/pkcs11/pkcs11.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,10 @@ package pkcs11

import (
"github.com/ThalesIgnite/crypto11"
"github.com/spf13/viper"
)

func InitHSMCtx() (*crypto11.Context, error) {
p11Ctx, err := crypto11.ConfigureFromFile(viper.GetString("pkcs11-config-path"))
func InitHSMCtx(configPath string) (*crypto11.Context, error) {
p11Ctx, err := crypto11.ConfigureFromFile(configPath)
if err != nil {
return nil, err
}
Expand Down