1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229
|
// Copyright 2024 The Sigstore Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// Package main implements a certificate creation utility for Fulcio.
// It supports creating root and leaf certificates using (AWS, GCP, Azure).
package main
import (
"fmt"
"os"
"strings"
"time"
"github.com/sigstore/fulcio/pkg/certmaker"
"github.com/sigstore/fulcio/pkg/log"
"github.com/spf13/cobra"
"github.com/spf13/pflag"
"github.com/spf13/viper"
"go.uber.org/zap"
)
// CLI flags and env vars for config.
// Supports AWS KMS, Google Cloud KMS, and Azure Key Vault configurations.
var (
version string
rootCmd = &cobra.Command{
Use: "certificate-maker",
Short: "Create certificate chains for Fulcio",
Long: `A tool for creating root, intermediate, and leaf certificates for Fulcio with code signing capabilities`,
Version: version,
}
createCmd = &cobra.Command{
Use: "create [common-name]",
Short: "Create certificate chain",
Long: `Create a certificate chain with the specified common name.
The common name will be used as the Subject Common Name for the certificates.
If no common name is provided, the values from the templates will be used.
Example: certificate-maker create "https://fulcio.example.com"`,
Args: cobra.RangeArgs(0, 1),
RunE: runCreate,
}
)
func mustBindPFlag(key string, flag *pflag.Flag) {
if err := viper.BindPFlag(key, flag); err != nil {
log.Logger.Fatal("failed to bind flag", zap.String("flag", key), zap.Error(err))
}
}
func mustBindEnv(key, envVar string) {
if err := viper.BindEnv(key, envVar); err != nil {
log.Logger.Fatal("failed to bind env var", zap.String("var", envVar), zap.Error(err))
}
}
func init() {
log.ConfigureLogger("prod")
viper.AutomaticEnv()
viper.SetEnvPrefix("")
viper.SetEnvKeyReplacer(strings.NewReplacer("-", "_"))
mustBindEnv("kms-type", "KMS_TYPE")
mustBindEnv("aws-region", "AWS_REGION")
mustBindEnv("azure-tenant-id", "AZURE_TENANT_ID")
mustBindEnv("gcp-credentials-file", "GCP_CREDENTIALS_FILE")
mustBindEnv("vault-token", "VAULT_TOKEN")
mustBindEnv("vault-address", "VAULT_ADDR")
mustBindEnv("root-key-id", "KMS_ROOT_KEY_ID")
mustBindEnv("intermediate-key-id", "KMS_INTERMEDIATE_KEY_ID")
mustBindEnv("leaf-key-id", "KMS_LEAF_KEY_ID")
rootCmd.AddCommand(createCmd)
// KMS provider flags
createCmd.Flags().String("kms-type", "", "KMS provider type")
createCmd.Flags().String("aws-region", "", "AWS KMS region")
createCmd.Flags().String("azure-tenant-id", "", "Azure KMS tenant ID")
createCmd.Flags().String("gcp-credentials-file", "", "Path to credentials file for GCP KMS")
createCmd.Flags().String("vault-token", "", "HashiVault token")
createCmd.Flags().String("vault-address", "", "HashiVault server address")
// Root certificate flags
createCmd.Flags().String("root-key-id", "", "KMS key identifier for root certificate")
createCmd.Flags().String("root-template", "", "Path to root certificate template (optional)")
createCmd.Flags().String("root-cert", "root.pem", "Output path for root certificate")
// Intermediate certificate flags
createCmd.Flags().String("intermediate-key-id", "", "KMS key identifier for intermediate certificate")
createCmd.Flags().String("intermediate-template", "", "Path to intermediate certificate template (optional)")
createCmd.Flags().String("intermediate-cert", "intermediate.pem", "Output path for intermediate certificate")
// Leaf certificate flags
createCmd.Flags().String("leaf-key-id", "", "KMS key identifier for leaf certificate")
createCmd.Flags().String("leaf-template", "", "Path to leaf certificate template (optional)")
createCmd.Flags().String("leaf-cert", "leaf.pem", "Output path for leaf certificate")
// Lifetime flags
createCmd.Flags().Duration("root-lifetime", 87600*time.Hour, "Root certificate lifetime")
createCmd.Flags().Duration("intermediate-lifetime", 43800*time.Hour, "Intermediate certificate lifetime")
createCmd.Flags().Duration("leaf-lifetime", 8760*time.Hour, "Leaf certificate lifetime")
mustBindPFlag("kms-type", createCmd.Flags().Lookup("kms-type"))
mustBindPFlag("aws-region", createCmd.Flags().Lookup("aws-region"))
mustBindPFlag("azure-tenant-id", createCmd.Flags().Lookup("azure-tenant-id"))
mustBindPFlag("gcp-credentials-file", createCmd.Flags().Lookup("gcp-credentials-file"))
mustBindPFlag("vault-token", createCmd.Flags().Lookup("vault-token"))
mustBindPFlag("vault-address", createCmd.Flags().Lookup("vault-address"))
mustBindPFlag("root-key-id", createCmd.Flags().Lookup("root-key-id"))
mustBindPFlag("root-template", createCmd.Flags().Lookup("root-template"))
mustBindPFlag("root-cert", createCmd.Flags().Lookup("root-cert"))
mustBindPFlag("intermediate-key-id", createCmd.Flags().Lookup("intermediate-key-id"))
mustBindPFlag("intermediate-template", createCmd.Flags().Lookup("intermediate-template"))
mustBindPFlag("intermediate-cert", createCmd.Flags().Lookup("intermediate-cert"))
mustBindPFlag("leaf-key-id", createCmd.Flags().Lookup("leaf-key-id"))
mustBindPFlag("leaf-template", createCmd.Flags().Lookup("leaf-template"))
mustBindPFlag("leaf-cert", createCmd.Flags().Lookup("leaf-cert"))
mustBindPFlag("root-lifetime", createCmd.Flags().Lookup("root-lifetime"))
mustBindPFlag("intermediate-lifetime", createCmd.Flags().Lookup("intermediate-lifetime"))
mustBindPFlag("leaf-lifetime", createCmd.Flags().Lookup("leaf-lifetime"))
}
func runCreate(_ *cobra.Command, args []string) error {
defer func() { rootCmd.SilenceUsage = true }()
// Get common name from args if provided, otherwise templates used
var commonName string
if len(args) > 0 {
commonName = args[0]
}
// Build KMS config from flags and environment
config := certmaker.KMSConfig{
CommonName: commonName,
Type: viper.GetString("kms-type"),
KeyID: viper.GetString("root-key-id"),
Options: make(map[string]string),
}
// Handle KMS provider options
switch config.Type {
case "gcpkms":
if gcpCredsFile := viper.GetString("gcp-credentials-file"); gcpCredsFile != "" {
// Check if gcp creds exists
if _, err := os.Stat(gcpCredsFile); err != nil {
if os.IsNotExist(err) {
return fmt.Errorf("failed to initialize KMS: credentials file not found: %s", gcpCredsFile)
}
return fmt.Errorf("failed to initialize KMS: error accessing credentials file: %w", err)
}
config.Options["gcp-credentials-file"] = gcpCredsFile
}
case "azurekms":
if azureTenantID := viper.GetString("azure-tenant-id"); azureTenantID != "" {
config.Options["azure-tenant-id"] = azureTenantID
}
case "awskms":
if awsRegion := viper.GetString("aws-region"); awsRegion != "" {
config.Options["aws-region"] = awsRegion
}
case "hashivault":
if vaultToken := viper.GetString("vault-token"); vaultToken != "" {
config.Options["vault-token"] = vaultToken
}
if vaultAddr := viper.GetString("vault-address"); vaultAddr != "" {
config.Options["vault-address"] = vaultAddr
}
}
// Get template paths
rootTemplate := viper.GetString("root-template")
intermediateTemplate := viper.GetString("intermediate-template")
leafTemplate := viper.GetString("leaf-template")
// Validate template paths if provided
if rootTemplate != "" {
if err := certmaker.ValidateTemplate(rootTemplate, nil, "root"); err != nil {
return fmt.Errorf("root template error: %w", err)
}
}
if intermediateTemplate != "" {
if err := certmaker.ValidateTemplate(intermediateTemplate, nil, "intermediate"); err != nil {
return fmt.Errorf("intermediate template error: %w", err)
}
}
if leafTemplate != "" {
if err := certmaker.ValidateTemplate(leafTemplate, nil, "leaf"); err != nil {
return fmt.Errorf("leaf template error: %w", err)
}
}
return certmaker.CreateCertificates(config,
rootTemplate,
leafTemplate,
viper.GetString("root-cert"),
viper.GetString("leaf-cert"),
viper.GetString("intermediate-key-id"),
viper.GetString("intermediate-template"),
viper.GetString("intermediate-cert"),
viper.GetString("leaf-key-id"),
viper.GetDuration("root-lifetime"),
viper.GetDuration("intermediate-lifetime"),
viper.GetDuration("leaf-lifetime"))
}
func main() {
rootCmd.SilenceErrors = true
if err := rootCmd.Execute(); err != nil {
if rootCmd.SilenceUsage {
log.Logger.Fatal("Command failed", zap.Error(err))
} else {
os.Exit(1)
}
}
}
|