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 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272
|
//go:build !no_cert_auth
// +build !no_cert_auth
package certificates
import (
"crypto/rsa"
"crypto/x509"
"fmt"
"net"
"strings"
"time"
"github.com/ghjm/cmdline"
"github.com/spf13/viper"
)
// Oser is the function calls interfaces for mocking os.
// type Oser interface {
// ReadFile(name string) ([]byte, error)
// WriteFile(name string, data []byte, perm fs.FileMode) error
//}
// OsWrapper is the Wrapper structure for Oser.
// type OsWrapper struct{}
// InitCA Initialize Certificate Authority.
func InitCA(opts *CertOptions, certOut, keyOut string, osWrapper Oser) error {
ca, err := CreateCA(opts, &RsaWrapper{})
if err == nil {
err = SaveToPEMFile(certOut, []interface{}{ca.Certificate}, osWrapper)
}
if err == nil {
err = SaveToPEMFile(keyOut, []interface{}{ca.PrivateKey}, osWrapper)
}
return err
}
type InitCAConfig struct {
CommonName string `description:"Common name to assign to the certificate" required:"Yes"`
Bits int `description:"Bit length of the encryption keys of the certificate" required:"Yes"`
NotBefore string `description:"Effective (NotBefore) date/time, in RFC3339 format"`
NotAfter string `description:"Expiration (NotAfter) date/time, in RFC3339 format"`
OutCert string `description:"File to save the CA certificate to" required:"Yes"`
OutKey string `description:"File to save the CA private key to" required:"Yes"`
}
func (ica InitCAConfig) Run() (err error) {
opts := &CertOptions{
CommonName: ica.CommonName,
Bits: ica.Bits,
}
if ica.NotBefore != "" {
opts.NotBefore, err = time.Parse(time.RFC3339, ica.NotBefore)
if err != nil {
return
}
}
if ica.NotAfter != "" {
opts.NotAfter, err = time.Parse(time.RFC3339, ica.NotAfter)
if err != nil {
return
}
}
return InitCA(opts, ica.OutCert, ica.OutKey, &OsWrapper{})
}
// MakeReq Create Certificate Request.
func MakeReq(opts *CertOptions, keyIn, keyOut, reqOut string, osWrapper Oser) error {
var req *x509.CertificateRequest
var key *rsa.PrivateKey
if keyIn != "" {
data, err := LoadFromPEMFile(keyIn, osWrapper)
if err != nil {
return err
}
for _, elem := range data {
ckey, ok := elem.(*rsa.PrivateKey)
if !ok {
continue
}
if key != nil {
return fmt.Errorf("multiple private keys in file %s", keyIn)
}
key = ckey
}
if key == nil {
return fmt.Errorf("no private keys in file %s", keyIn)
}
req, err = CreateCertReq(opts, key)
if err != nil {
return err
}
} else {
var err error
req, key, err = CreateCertReqWithKey(opts)
if err != nil {
return err
}
}
err := SaveToPEMFile(reqOut, []interface{}{req}, osWrapper)
if err != nil {
return err
}
if keyOut != "" {
err = SaveToPEMFile(keyOut, []interface{}{key}, osWrapper)
if err != nil {
return err
}
}
return nil
}
type MakeReqConfig struct {
CommonName string `description:"Common name to assign to the certificate" required:"Yes"`
Bits int `description:"Bit length of the encryption keys of the certificate"`
DNSName []string `description:"DNS names to add to the certificate"`
IPAddress []string `description:"IP addresses to add to the certificate"`
NodeID []string `description:"Receptor node IDs to add to the certificate"`
OutReq string `description:"File to save the certificate request to" required:"Yes"`
InKey string `description:"Private key to use for the request"`
OutKey string `description:"File to save the private key to (new key will be generated)"`
}
func (mr MakeReqConfig) Prepare() error {
if mr.InKey == "" && mr.OutKey == "" {
return fmt.Errorf("must provide either InKey or OutKey")
}
if mr.InKey != "" && mr.OutKey != "" {
return fmt.Errorf("cannot use both InKey and OutKey")
}
if mr.InKey != "" && mr.Bits != 0 {
return fmt.Errorf("cannot specify key bits when reading an already-existing key")
}
if mr.OutKey != "" && mr.Bits == 0 {
return fmt.Errorf("must specify key bits when creating a new key")
}
return nil
}
func (mr MakeReqConfig) Run() error {
opts := &CertOptions{
CommonName: mr.CommonName,
Bits: mr.Bits,
}
opts.DNSNames = mr.DNSName
opts.NodeIDs = mr.NodeID
for _, ipstr := range mr.IPAddress {
ip := net.ParseIP(ipstr)
if ip == nil {
return fmt.Errorf("invalid IP address: %s", ipstr)
}
if opts.IPAddresses == nil {
opts.IPAddresses = make([]net.IP, 0)
}
opts.IPAddresses = append(opts.IPAddresses, ip)
}
return MakeReq(opts, mr.InKey, mr.OutKey, mr.OutReq, &OsWrapper{})
}
// SignReq Sign Certificate Request.
func SignReq(opts *CertOptions, caCrtPath, caKeyPath, reqPath, certOut string, verify bool, osWrapper Oser) error {
ca := &CA{}
var err error
ca.Certificate, err = LoadCertificate(caCrtPath, osWrapper)
if err != nil {
return err
}
ca.PrivateKey, err = LoadPrivateKey(caKeyPath, osWrapper)
if err != nil {
return err
}
var req *x509.CertificateRequest
req, err = LoadRequest(reqPath, osWrapper)
if err != nil {
return err
}
var names *CertNames
names, err = GetReqNames(req)
if err != nil {
return err
}
if len(names.DNSNames) == 0 && len(names.IPAddresses) == 0 && len(names.NodeIDs) == 0 {
return fmt.Errorf("cannot sign: no names found in certificate")
}
if !verify {
fmt.Printf("Requested certificate:\n")
fmt.Printf(" Subject: %s\n", req.Subject)
algo := req.PublicKeyAlgorithm.String()
if algo == "RSA" {
rpk := req.PublicKey.(*rsa.PublicKey)
algo = fmt.Sprintf("%s (%d bits)", algo, rpk.Size()*8)
}
fmt.Printf(" Encryption Algorithm: %s\n", algo)
fmt.Printf(" Signature Algorithm: %s\n", req.SignatureAlgorithm.String())
fmt.Printf(" Names:\n")
for _, name := range names.DNSNames {
fmt.Printf(" DNS Name: %s\n", name)
}
for _, ip := range names.IPAddresses {
fmt.Printf(" IP Address: %v\n", ip)
}
for _, node := range names.NodeIDs {
fmt.Printf(" Receptor Node ID: %s\n", node)
}
fmt.Printf("Sign certificate (yes/no)? ")
var response string
_, err = fmt.Scanln(&response)
if err != nil {
return err
}
response = strings.ToLower(response)
if response != "y" && response != "yes" {
return fmt.Errorf("user declined")
}
}
var cert *x509.Certificate
cert, err = SignCertReq(req, ca, opts)
if err != nil {
return err
}
return SaveToPEMFile(certOut, []interface{}{cert}, &OsWrapper{})
}
type SignReqConfig struct {
Req string `description:"Certificate Request PEM filename" required:"Yes"`
CACert string `description:"CA certificate PEM filename" required:"Yes"`
CAKey string `description:"CA private key PEM filename" required:"Yes"`
NotBefore string `description:"Effective (NotBefore) date/time, in RFC3339 format"`
NotAfter string `description:"Expiration (NotAfter) date/time, in RFC3339 format"`
OutCert string `description:"File to save the signed certificate to" required:"Yes"`
Verify bool `description:"If true, do not prompt the user for verification" default:"False"`
}
func (sr SignReqConfig) Run() error {
opts := &CertOptions{}
if sr.NotBefore != "" {
t, err := time.Parse(time.RFC3339, sr.NotBefore)
if err != nil {
return err
}
opts.NotBefore = t
}
if sr.NotAfter != "" {
t, err := time.Parse(time.RFC3339, sr.NotAfter)
if err != nil {
return err
}
opts.NotAfter = t
}
return SignReq(opts, sr.CACert, sr.CAKey, sr.Req, sr.OutCert, sr.Verify, &OsWrapper{})
}
func init() {
version := viper.GetInt("version")
if version > 1 {
return
}
cmdline.RegisterConfigTypeForApp("receptor-certificates",
"cert-init", "Initialize PKI CA", InitCAConfig{}, cmdline.Exclusive, cmdline.Section(certSection))
cmdline.RegisterConfigTypeForApp("receptor-certificates",
"cert-makereq", "Create certificate request", MakeReqConfig{}, cmdline.Exclusive, cmdline.Section(certSection))
cmdline.RegisterConfigTypeForApp("receptor-certificates",
"cert-signreq", "Sign request and produce certificate", SignReqConfig{}, cmdline.Exclusive, cmdline.Section(certSection))
}
|