mirror of
https://github.com/micromdm/micromdm/
synced 2026-08-05 17:05:51 +08:00
215 lines
5.7 KiB
Go
215 lines
5.7 KiB
Go
package crypto
|
|
|
|
import (
|
|
"crypto/rand"
|
|
"crypto/rsa"
|
|
"crypto/x509"
|
|
"crypto/x509/pkix"
|
|
"encoding/asn1"
|
|
"encoding/pem"
|
|
"errors"
|
|
"fmt"
|
|
"io/ioutil"
|
|
"math/big"
|
|
"os"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/smallstep/pkcs7"
|
|
)
|
|
|
|
func GenerateRandomCertificateSerialNumber() (*big.Int, error) {
|
|
limit := new(big.Int).Lsh(big.NewInt(1), 128)
|
|
return rand.Int(rand.Reader, limit)
|
|
}
|
|
|
|
func SimpleSelfSignedRSAKeypair(cn string, days int) (key *rsa.PrivateKey, cert *x509.Certificate, err error) {
|
|
key, err = rsa.GenerateKey(rand.Reader, 2048)
|
|
if err != nil {
|
|
return key, cert, err
|
|
}
|
|
|
|
serialNumber, err := GenerateRandomCertificateSerialNumber()
|
|
if err != nil {
|
|
return key, cert, err
|
|
}
|
|
timeNow := time.Now()
|
|
template := x509.Certificate{
|
|
SerialNumber: serialNumber,
|
|
Subject: pkix.Name{
|
|
CommonName: cn,
|
|
},
|
|
NotBefore: timeNow,
|
|
NotAfter: timeNow.Add(time.Duration(days) * 24 * time.Hour),
|
|
KeyUsage: x509.KeyUsageKeyEncipherment | x509.KeyUsageDigitalSignature,
|
|
ExtKeyUsage: []x509.ExtKeyUsage{x509.ExtKeyUsageServerAuth},
|
|
BasicConstraintsValid: true,
|
|
DNSNames: []string{cn},
|
|
}
|
|
certBytes, err := x509.CreateCertificate(rand.Reader, &template, &template, &key.PublicKey, key)
|
|
if err != nil {
|
|
return key, cert, err
|
|
}
|
|
cert, err = x509.ParseCertificate(certBytes)
|
|
if err != nil {
|
|
return key, cert, err
|
|
}
|
|
|
|
return key, cert, err
|
|
}
|
|
|
|
func ReadPEMCertificateFile(path string) (*x509.Certificate, error) {
|
|
certs, err := ReadPEMCertificatesFile(path)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if len(certs) != 1 {
|
|
return nil, errors.New("incorrect number of certificates")
|
|
}
|
|
return certs[0], nil
|
|
}
|
|
|
|
const (
|
|
rsaPrivateKeyPEMBlockType = "RSA PRIVATE KEY"
|
|
certificatePEMBlockType = "CERTIFICATE"
|
|
)
|
|
|
|
func ReadPEMCertificatesFile(path string) ([]*x509.Certificate, error) {
|
|
pemData, err := ioutil.ReadFile(path)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
var asn1data []byte
|
|
rest := pemData
|
|
for {
|
|
var block *pem.Block
|
|
block, rest = pem.Decode(rest)
|
|
if block == nil || block.Type != certificatePEMBlockType {
|
|
return nil, errors.New("failed to decode PEM block containing certificate")
|
|
}
|
|
asn1data = append(asn1data, block.Bytes...)
|
|
if len(rest) == 0 {
|
|
break
|
|
}
|
|
}
|
|
return x509.ParseCertificates(asn1data)
|
|
}
|
|
|
|
func ReadPEMRSAKeyFile(path string) (*rsa.PrivateKey, error) {
|
|
return ReadEncryptedPEMRSAKeyFile(path, nil)
|
|
}
|
|
|
|
func ReadEncryptedPEMRSAKeyFile(path string, password []byte) (*rsa.PrivateKey, error) {
|
|
pemData, err := ioutil.ReadFile(path)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
pemBlock, _ := pem.Decode(pemData)
|
|
if pemBlock == nil {
|
|
return nil, errors.New("PEM decode failed")
|
|
}
|
|
if pemBlock.Type != rsaPrivateKeyPEMBlockType {
|
|
return nil, fmt.Errorf("expecting PEM type of %s, but got %s", rsaPrivateKeyPEMBlockType, pemBlock.Type)
|
|
}
|
|
|
|
if x509.IsEncryptedPEMBlock(pemBlock) {
|
|
if password == nil {
|
|
return nil, errors.New("no supplied password for encrypted PEM")
|
|
}
|
|
derBytes, err := x509.DecryptPEMBlock(pemBlock, password)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return x509.ParsePKCS1PrivateKey(derBytes)
|
|
} else if password != nil {
|
|
return nil, errors.New("supplied PEM password, but not encrypted")
|
|
}
|
|
|
|
return x509.ParsePKCS1PrivateKey(pemBlock.Bytes)
|
|
}
|
|
|
|
func WritePEMCertificateFile(cert *x509.Certificate, path string) error {
|
|
file, err := os.Create(path)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer file.Close()
|
|
|
|
return pem.Encode(
|
|
file,
|
|
&pem.Block{
|
|
Type: certificatePEMBlockType,
|
|
Bytes: cert.Raw,
|
|
})
|
|
}
|
|
|
|
func WritePEMRSAKeyFile(key *rsa.PrivateKey, path string) error {
|
|
file, err := os.OpenFile(path, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0700)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer file.Close()
|
|
|
|
return pem.Encode(
|
|
file,
|
|
&pem.Block{
|
|
Type: rsaPrivateKeyPEMBlockType,
|
|
Bytes: x509.MarshalPKCS1PrivateKey(key),
|
|
})
|
|
}
|
|
|
|
func WriteEncryptedPEMRSAKeyFile(key *rsa.PrivateKey, password []byte, path string) error {
|
|
file, err := os.OpenFile(path, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0700)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer file.Close()
|
|
|
|
encPemBlock, err := x509.EncryptPEMBlock(
|
|
rand.Reader,
|
|
rsaPrivateKeyPEMBlockType,
|
|
x509.MarshalPKCS1PrivateKey(key),
|
|
password,
|
|
x509.PEMCipher3DES)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return pem.Encode(file, encPemBlock)
|
|
}
|
|
|
|
// TopicFromCert extracts the push certificate topic from the provided certificate.
|
|
func TopicFromCert(cert *x509.Certificate) (string, error) {
|
|
var oidASN1UserID = asn1.ObjectIdentifier{0, 9, 2342, 19200300, 100, 1, 1}
|
|
for _, v := range cert.Subject.Names {
|
|
if v.Type.Equal(oidASN1UserID) {
|
|
uid, ok := v.Value.(string)
|
|
if ok && strings.HasPrefix(uid, "com.apple.mgmt") {
|
|
return uid, nil
|
|
}
|
|
return "", errors.New("invalid Push Topic (UserID OID) in certificate. Must start with 'com.apple.mgmt', was: " + uid)
|
|
}
|
|
}
|
|
|
|
return "", errors.New("could not find Push Topic (UserID OID) in certificate")
|
|
}
|
|
|
|
// PKCS7Verifier verifies PKCS7 objects with a configurable clock skew
|
|
type PKCS7Verifier struct {
|
|
// MaxSkew is the maximum amount of clock skew permitted between the the server time and the pkcs7 signature validity
|
|
MaxSkew time.Duration
|
|
}
|
|
|
|
// Verify checks the signatures of a PKCS7 object
|
|
func (v *PKCS7Verifier) Verify(p7 *pkcs7.PKCS7) error {
|
|
// verify with skew added to beginning of validity window
|
|
err := p7.VerifyWithChainAtTime(nil, time.Now().Add(v.MaxSkew))
|
|
// if verification fails due to missing the validity window, try verifying with the skew added to the end of the validity window
|
|
// the pkcs7 lib doesn't return a concrete error, so check against the error string
|
|
if err != nil && strings.Contains(err.Error(), "is outside of certificate validity") {
|
|
return p7.VerifyWithChainAtTime(nil, time.Now().Add(-v.MaxSkew))
|
|
}
|
|
return err
|
|
}
|