2014-11-16 13:13:20 -07:00
|
|
|
// Copyright (C) 2014 The Syncthing Authors.
|
2014-09-29 12:43:32 -07:00
|
|
|
//
|
2015-03-07 13:36:35 -07:00
|
|
|
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
// You can obtain one at http://mozilla.org/MPL/2.0/.
|
2014-06-01 13:50:14 -07:00
|
|
|
|
2015-09-02 13:05:54 -07:00
|
|
|
package tlsutil
|
2014-03-02 15:58:14 -07:00
|
|
|
|
|
|
|
import (
|
2014-09-14 15:18:05 -07:00
|
|
|
"bufio"
|
2014-03-02 15:58:14 -07:00
|
|
|
"crypto/rand"
|
|
|
|
"crypto/rsa"
|
|
|
|
"crypto/tls"
|
|
|
|
"crypto/x509"
|
|
|
|
"crypto/x509/pkix"
|
|
|
|
"encoding/pem"
|
2015-09-02 13:05:54 -07:00
|
|
|
"fmt"
|
2014-09-11 12:18:08 -07:00
|
|
|
"io"
|
2014-03-02 15:58:14 -07:00
|
|
|
"math/big"
|
2014-05-23 05:43:17 -07:00
|
|
|
mr "math/rand"
|
2014-09-11 12:18:08 -07:00
|
|
|
"net"
|
2014-03-02 15:58:14 -07:00
|
|
|
"os"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
2015-09-02 13:24:13 -07:00
|
|
|
var (
|
|
|
|
ErrIdentificationFailed = fmt.Errorf("failed to identify socket type")
|
|
|
|
)
|
|
|
|
|
2015-09-02 13:05:54 -07:00
|
|
|
func NewCertificate(certFile, keyFile, tlsDefaultCommonName string, tlsRSABits int) (tls.Certificate, error) {
|
2014-03-02 15:58:14 -07:00
|
|
|
priv, err := rsa.GenerateKey(rand.Reader, tlsRSABits)
|
2014-09-20 06:42:20 -07:00
|
|
|
if err != nil {
|
2015-09-02 13:05:54 -07:00
|
|
|
return tls.Certificate{}, fmt.Errorf("generate key: %s", err)
|
2014-09-20 06:42:20 -07:00
|
|
|
}
|
2014-03-02 15:58:14 -07:00
|
|
|
|
|
|
|
notBefore := time.Now()
|
|
|
|
notAfter := time.Date(2049, 12, 31, 23, 59, 59, 0, time.UTC)
|
|
|
|
|
|
|
|
template := x509.Certificate{
|
2014-05-23 05:43:17 -07:00
|
|
|
SerialNumber: new(big.Int).SetInt64(mr.Int63()),
|
2014-03-02 15:58:14 -07:00
|
|
|
Subject: pkix.Name{
|
2015-09-02 13:05:54 -07:00
|
|
|
CommonName: tlsDefaultCommonName,
|
2014-03-02 15:58:14 -07:00
|
|
|
},
|
|
|
|
NotBefore: notBefore,
|
|
|
|
NotAfter: notAfter,
|
|
|
|
|
|
|
|
KeyUsage: x509.KeyUsageKeyEncipherment | x509.KeyUsageDigitalSignature,
|
|
|
|
ExtKeyUsage: []x509.ExtKeyUsage{x509.ExtKeyUsageServerAuth, x509.ExtKeyUsageClientAuth},
|
|
|
|
BasicConstraintsValid: true,
|
|
|
|
}
|
|
|
|
|
|
|
|
derBytes, err := x509.CreateCertificate(rand.Reader, &template, &template, &priv.PublicKey, priv)
|
2014-09-20 06:42:20 -07:00
|
|
|
if err != nil {
|
2015-09-02 13:05:54 -07:00
|
|
|
return tls.Certificate{}, fmt.Errorf("create cert: %s", err)
|
2014-09-20 06:42:20 -07:00
|
|
|
}
|
2014-03-02 15:58:14 -07:00
|
|
|
|
2015-03-29 03:55:27 -07:00
|
|
|
certOut, err := os.Create(certFile)
|
2014-09-20 06:42:20 -07:00
|
|
|
if err != nil {
|
2015-09-02 13:05:54 -07:00
|
|
|
return tls.Certificate{}, fmt.Errorf("save cert: %s", err)
|
2014-09-20 06:42:20 -07:00
|
|
|
}
|
2014-09-20 06:31:15 -07:00
|
|
|
err = pem.Encode(certOut, &pem.Block{Type: "CERTIFICATE", Bytes: derBytes})
|
2014-09-20 06:42:20 -07:00
|
|
|
if err != nil {
|
2015-09-02 13:05:54 -07:00
|
|
|
return tls.Certificate{}, fmt.Errorf("save cert: %s", err)
|
2014-09-20 06:42:20 -07:00
|
|
|
}
|
2014-09-20 06:31:15 -07:00
|
|
|
err = certOut.Close()
|
2014-09-20 06:42:20 -07:00
|
|
|
if err != nil {
|
2015-09-02 13:05:54 -07:00
|
|
|
return tls.Certificate{}, fmt.Errorf("save cert: %s", err)
|
2014-09-20 06:42:20 -07:00
|
|
|
}
|
2014-03-02 15:58:14 -07:00
|
|
|
|
2015-03-29 03:55:27 -07:00
|
|
|
keyOut, err := os.OpenFile(keyFile, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0600)
|
2014-09-20 06:42:20 -07:00
|
|
|
if err != nil {
|
2015-09-02 13:05:54 -07:00
|
|
|
return tls.Certificate{}, fmt.Errorf("save key: %s", err)
|
2014-09-20 06:42:20 -07:00
|
|
|
}
|
2014-09-20 06:31:15 -07:00
|
|
|
err = pem.Encode(keyOut, &pem.Block{Type: "RSA PRIVATE KEY", Bytes: x509.MarshalPKCS1PrivateKey(priv)})
|
2014-09-20 06:42:20 -07:00
|
|
|
if err != nil {
|
2015-09-02 13:05:54 -07:00
|
|
|
return tls.Certificate{}, fmt.Errorf("save key: %s", err)
|
2014-09-20 06:42:20 -07:00
|
|
|
}
|
2014-09-20 06:31:15 -07:00
|
|
|
err = keyOut.Close()
|
2014-09-20 06:42:20 -07:00
|
|
|
if err != nil {
|
2015-09-02 13:05:54 -07:00
|
|
|
return tls.Certificate{}, fmt.Errorf("save key: %s", err)
|
2014-09-20 06:42:20 -07:00
|
|
|
}
|
2015-03-29 03:55:27 -07:00
|
|
|
|
|
|
|
return tls.LoadX509KeyPair(certFile, keyFile)
|
2014-03-02 15:58:14 -07:00
|
|
|
}
|
2014-09-11 12:18:08 -07:00
|
|
|
|
|
|
|
type DowngradingListener struct {
|
|
|
|
net.Listener
|
|
|
|
TLSConfig *tls.Config
|
|
|
|
}
|
|
|
|
|
2014-09-14 15:18:05 -07:00
|
|
|
func (l *DowngradingListener) Accept() (net.Conn, error) {
|
2015-09-02 13:24:13 -07:00
|
|
|
conn, isTLS, err := l.AcceptNoWrap()
|
|
|
|
|
|
|
|
// We failed to identify the socket type, pretend that everything is fine,
|
|
|
|
// and pass it to the underlying handler, and let them deal with it.
|
|
|
|
if err == ErrIdentificationFailed {
|
|
|
|
return conn, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return conn, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if isTLS {
|
|
|
|
return tls.Server(conn, l.TLSConfig), nil
|
|
|
|
}
|
|
|
|
return conn, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (l *DowngradingListener) AcceptNoWrap() (net.Conn, bool, error) {
|
2014-09-14 15:18:05 -07:00
|
|
|
conn, err := l.Listener.Accept()
|
2014-09-11 12:18:08 -07:00
|
|
|
if err != nil {
|
2015-09-02 13:24:13 -07:00
|
|
|
return nil, false, err
|
2014-09-11 12:18:08 -07:00
|
|
|
}
|
|
|
|
|
2014-09-14 15:18:05 -07:00
|
|
|
br := bufio.NewReader(conn)
|
2015-08-06 04:07:34 -07:00
|
|
|
conn.SetReadDeadline(time.Now().Add(1 * time.Second))
|
2014-09-14 15:18:05 -07:00
|
|
|
bs, err := br.Peek(1)
|
2015-08-06 04:07:34 -07:00
|
|
|
conn.SetReadDeadline(time.Time{})
|
2014-09-11 12:18:08 -07:00
|
|
|
if err != nil {
|
2014-09-18 02:45:48 -07:00
|
|
|
// We hit a read error here, but the Accept() call succeeded so we must not return an error.
|
2015-09-02 13:24:13 -07:00
|
|
|
// We return the connection as is with a special error which handles this
|
|
|
|
// special case in Accept().
|
|
|
|
return conn, false, ErrIdentificationFailed
|
2014-09-11 12:18:08 -07:00
|
|
|
}
|
2014-09-14 15:18:05 -07:00
|
|
|
|
2015-09-02 13:24:13 -07:00
|
|
|
return &WrappedConnection{br, conn}, bs[0] == 0x16, nil
|
2014-09-11 12:18:08 -07:00
|
|
|
}
|
|
|
|
|
2015-09-02 13:05:54 -07:00
|
|
|
type WrappedConnection struct {
|
|
|
|
io.Reader
|
|
|
|
net.Conn
|
|
|
|
}
|
|
|
|
|
2014-09-11 12:18:08 -07:00
|
|
|
func (c *WrappedConnection) Read(b []byte) (n int, err error) {
|
|
|
|
return c.Reader.Read(b)
|
|
|
|
}
|