2023-01-06 12:21:14 +00:00
|
|
|
package pairing
|
|
|
|
|
|
|
|
import (
|
|
|
|
"crypto/ecdsa"
|
|
|
|
"crypto/sha256"
|
|
|
|
"crypto/tls"
|
|
|
|
"crypto/x509"
|
|
|
|
"encoding/asn1"
|
|
|
|
"encoding/pem"
|
|
|
|
"fmt"
|
|
|
|
"math/big"
|
2023-08-22 16:18:14 +00:00
|
|
|
"net"
|
2023-01-06 12:21:14 +00:00
|
|
|
"net/url"
|
|
|
|
"time"
|
|
|
|
|
2023-08-22 16:18:14 +00:00
|
|
|
"go.uber.org/zap"
|
|
|
|
|
|
|
|
"github.com/status-im/status-go/logutils"
|
2023-03-21 12:36:34 +00:00
|
|
|
"github.com/status-im/status-go/server"
|
2023-01-06 12:21:14 +00:00
|
|
|
)
|
|
|
|
|
2023-09-11 12:19:26 +00:00
|
|
|
const CertificateMaxClockDrift = time.Minute
|
|
|
|
|
2023-01-06 12:21:14 +00:00
|
|
|
func makeSerialNumberFromKey(pk *ecdsa.PrivateKey) *big.Int {
|
|
|
|
h := sha256.New()
|
|
|
|
h.Write(append(pk.D.Bytes(), append(pk.Y.Bytes(), pk.X.Bytes()...)...))
|
|
|
|
|
|
|
|
return new(big.Int).SetBytes(h.Sum(nil))
|
|
|
|
}
|
|
|
|
|
2023-08-22 16:18:14 +00:00
|
|
|
func GenerateCertFromKey(pk *ecdsa.PrivateKey, from time.Time, IPAddresses []net.IP, DNSNames []string) (tls.Certificate, []byte, error) {
|
2023-09-11 12:19:26 +00:00
|
|
|
cert := server.GenerateX509Cert(makeSerialNumberFromKey(pk), from.Add(-CertificateMaxClockDrift), from.Add(time.Hour), IPAddresses, DNSNames)
|
2023-03-21 12:36:34 +00:00
|
|
|
certPem, keyPem, err := server.GenerateX509PEMs(cert, pk)
|
2023-01-06 12:21:14 +00:00
|
|
|
if err != nil {
|
|
|
|
return tls.Certificate{}, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
tlsCert, err := tls.X509KeyPair(certPem, keyPem)
|
|
|
|
if err != nil {
|
|
|
|
return tls.Certificate{}, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
block, _ := pem.Decode(certPem)
|
|
|
|
if block == nil {
|
|
|
|
return tls.Certificate{}, nil, fmt.Errorf("failed to decode certPem")
|
|
|
|
}
|
|
|
|
leaf, err := x509.ParseCertificate(block.Bytes)
|
|
|
|
if err != nil {
|
|
|
|
return tls.Certificate{}, nil, err
|
|
|
|
}
|
|
|
|
tlsCert.Leaf = leaf
|
|
|
|
|
|
|
|
return tlsCert, certPem, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// verifyCertPublicKey checks that the ecdsa.PublicKey using in a x509.Certificate matches a known ecdsa.PublicKey
|
|
|
|
func verifyCertPublicKey(cert *x509.Certificate, publicKey *ecdsa.PublicKey) error {
|
|
|
|
certKey, ok := cert.PublicKey.(*ecdsa.PublicKey)
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("unexpected public key type, expected ecdsa.PublicKey")
|
|
|
|
}
|
|
|
|
|
|
|
|
if !certKey.Equal(publicKey) {
|
|
|
|
return fmt.Errorf("server certificate MUST match the given public key")
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// verifyCertSig checks that a x509.Certificate's Signature verifies against x509.Certificate's PublicKey
|
|
|
|
// If the x509.Certificate's PublicKey is not an ecdsa.PublicKey an error will be thrown
|
|
|
|
func verifyCertSig(cert *x509.Certificate) (bool, error) {
|
|
|
|
var esig struct {
|
|
|
|
R, S *big.Int
|
|
|
|
}
|
|
|
|
if _, err := asn1.Unmarshal(cert.Signature, &esig); err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
|
|
|
|
hash := sha256.New()
|
|
|
|
hash.Write(cert.RawTBSCertificate)
|
|
|
|
|
|
|
|
ecKey, ok := cert.PublicKey.(*ecdsa.PublicKey)
|
|
|
|
if !ok {
|
|
|
|
return false, fmt.Errorf("certificate public is not an ecdsa.PublicKey")
|
|
|
|
}
|
|
|
|
|
|
|
|
verified := ecdsa.Verify(ecKey, hash.Sum(nil), esig.R, esig.S)
|
|
|
|
return verified, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// verifyCert verifies an x509.Certificate against a known ecdsa.PublicKey
|
|
|
|
// combining the checks of verifyCertPublicKey and verifyCertSig.
|
|
|
|
// If an x509.Certificate fails to verify an error is also thrown
|
|
|
|
func verifyCert(cert *x509.Certificate, publicKey *ecdsa.PublicKey) error {
|
|
|
|
err := verifyCertPublicKey(cert, publicKey)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
verified, err := verifyCertSig(cert)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if !verified {
|
|
|
|
return fmt.Errorf("server certificate signature MUST verify")
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// getServerCert pings a given tls host, extracts and returns its x509.Certificate
|
|
|
|
// the function expects there to be only 1 certificate
|
|
|
|
func getServerCert(URL *url.URL) (*x509.Certificate, error) {
|
|
|
|
conf := &tls.Config{
|
|
|
|
InsecureSkipVerify: true, // nolint: gosec // Only skip verify to get the server's TLS cert. DO NOT skip for any other reason.
|
|
|
|
}
|
|
|
|
|
2023-10-18 06:17:49 +00:00
|
|
|
// one second should be enough to get the server's TLS cert in LAN?
|
|
|
|
conn, err := tls.DialWithDialer(&net.Dialer{Timeout: time.Second}, "tcp", URL.Host, conf)
|
2023-01-06 12:21:14 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2023-08-22 16:18:14 +00:00
|
|
|
defer func(conn *tls.Conn) {
|
|
|
|
if e := conn.Close(); e != nil {
|
|
|
|
logutils.ZapLogger().Warn("failed to close temporary TLS connection:", zap.Error(e))
|
|
|
|
}
|
|
|
|
}(conn)
|
2023-01-06 12:21:14 +00:00
|
|
|
|
|
|
|
certs := conn.ConnectionState().PeerCertificates
|
|
|
|
if len(certs) != 1 {
|
|
|
|
return nil, fmt.Errorf("expected 1 TLS certificate, received '%d'", len(certs))
|
|
|
|
}
|
|
|
|
|
|
|
|
return certs[0], nil
|
|
|
|
}
|