mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-04 12:37:35 +03:00
crypto/tls: implement TLS 1.3 record layer and cipher suites
Updates #9671 Change-Id: I1ea7b724975c0841d01f4536eebb23956b30d5ea Reviewed-on: https://go-review.googlesource.com/c/145297 Reviewed-by: Adam Langley <agl@golang.org>
This commit is contained in:
parent
4900f4cb3a
commit
34eda04c4f
4 changed files with 238 additions and 71 deletions
|
@ -5,6 +5,7 @@
|
||||||
package tls
|
package tls
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"crypto"
|
||||||
"crypto/aes"
|
"crypto/aes"
|
||||||
"crypto/cipher"
|
"crypto/cipher"
|
||||||
"crypto/des"
|
"crypto/des"
|
||||||
|
@ -58,8 +59,7 @@ const (
|
||||||
suiteDefaultOff
|
suiteDefaultOff
|
||||||
)
|
)
|
||||||
|
|
||||||
// A cipherSuite is a specific combination of key agreement, cipher and MAC
|
// A cipherSuite is a specific combination of key agreement, cipher and MAC function.
|
||||||
// function. All cipher suites currently assume RSA key agreement.
|
|
||||||
type cipherSuite struct {
|
type cipherSuite struct {
|
||||||
id uint16
|
id uint16
|
||||||
// the lengths, in bytes, of the key material needed for each component.
|
// the lengths, in bytes, of the key material needed for each component.
|
||||||
|
@ -71,7 +71,7 @@ type cipherSuite struct {
|
||||||
flags int
|
flags int
|
||||||
cipher func(key, iv []byte, isRead bool) interface{}
|
cipher func(key, iv []byte, isRead bool) interface{}
|
||||||
mac func(version uint16, macKey []byte) macFunction
|
mac func(version uint16, macKey []byte) macFunction
|
||||||
aead func(key, fixedNonce []byte) cipher.AEAD
|
aead func(key, fixedNonce []byte) aead
|
||||||
}
|
}
|
||||||
|
|
||||||
var cipherSuites = []*cipherSuite{
|
var cipherSuites = []*cipherSuite{
|
||||||
|
@ -103,6 +103,21 @@ var cipherSuites = []*cipherSuite{
|
||||||
{TLS_ECDHE_ECDSA_WITH_RC4_128_SHA, 16, 20, 0, ecdheECDSAKA, suiteECDHE | suiteECDSA | suiteDefaultOff, cipherRC4, macSHA1, nil},
|
{TLS_ECDHE_ECDSA_WITH_RC4_128_SHA, 16, 20, 0, ecdheECDSAKA, suiteECDHE | suiteECDSA | suiteDefaultOff, cipherRC4, macSHA1, nil},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// A cipherSuiteTLS13 defines only the pair of the AEAD algorithm and hash
|
||||||
|
// algorithm to be used with HKDF. See RFC 8446, Appendix B.4.
|
||||||
|
type cipherSuiteTLS13 struct {
|
||||||
|
id uint16
|
||||||
|
keyLen int
|
||||||
|
aead func(key, fixedNonce []byte) aead
|
||||||
|
hash crypto.Hash
|
||||||
|
}
|
||||||
|
|
||||||
|
var cipherSuitesTLS13 = []*cipherSuiteTLS13{
|
||||||
|
{TLS_AES_128_GCM_SHA256, 16, aeadAESGCMTLS13, crypto.SHA256},
|
||||||
|
{TLS_CHACHA20_POLY1305_SHA256, 32, aeadChaCha20Poly1305, crypto.SHA256},
|
||||||
|
{TLS_AES_256_GCM_SHA384, 32, aeadAESGCMTLS13, crypto.SHA384},
|
||||||
|
}
|
||||||
|
|
||||||
func cipherRC4(key, iv []byte, isRead bool) interface{} {
|
func cipherRC4(key, iv []byte, isRead bool) interface{} {
|
||||||
cipher, _ := rc4.NewCipher(key)
|
cipher, _ := rc4.NewCipher(key)
|
||||||
return cipher
|
return cipher
|
||||||
|
@ -161,36 +176,41 @@ type aead interface {
|
||||||
explicitNonceLen() int
|
explicitNonceLen() int
|
||||||
}
|
}
|
||||||
|
|
||||||
// fixedNonceAEAD wraps an AEAD and prefixes a fixed portion of the nonce to
|
const (
|
||||||
|
aeadNonceLength = 12
|
||||||
|
noncePrefixLength = 4
|
||||||
|
)
|
||||||
|
|
||||||
|
// prefixNonceAEAD wraps an AEAD and prefixes a fixed portion of the nonce to
|
||||||
// each call.
|
// each call.
|
||||||
type fixedNonceAEAD struct {
|
type prefixNonceAEAD struct {
|
||||||
// nonce contains the fixed part of the nonce in the first four bytes.
|
// nonce contains the fixed part of the nonce in the first four bytes.
|
||||||
nonce [12]byte
|
nonce [aeadNonceLength]byte
|
||||||
aead cipher.AEAD
|
aead cipher.AEAD
|
||||||
}
|
}
|
||||||
|
|
||||||
func (f *fixedNonceAEAD) NonceSize() int { return 8 }
|
func (f *prefixNonceAEAD) NonceSize() int { return aeadNonceLength - noncePrefixLength }
|
||||||
func (f *fixedNonceAEAD) Overhead() int { return f.aead.Overhead() }
|
func (f *prefixNonceAEAD) Overhead() int { return f.aead.Overhead() }
|
||||||
func (f *fixedNonceAEAD) explicitNonceLen() int { return 8 }
|
func (f *prefixNonceAEAD) explicitNonceLen() int { return f.NonceSize() }
|
||||||
|
|
||||||
func (f *fixedNonceAEAD) Seal(out, nonce, plaintext, additionalData []byte) []byte {
|
func (f *prefixNonceAEAD) Seal(out, nonce, plaintext, additionalData []byte) []byte {
|
||||||
copy(f.nonce[4:], nonce)
|
copy(f.nonce[4:], nonce)
|
||||||
return f.aead.Seal(out, f.nonce[:], plaintext, additionalData)
|
return f.aead.Seal(out, f.nonce[:], plaintext, additionalData)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (f *fixedNonceAEAD) Open(out, nonce, plaintext, additionalData []byte) ([]byte, error) {
|
func (f *prefixNonceAEAD) Open(out, nonce, ciphertext, additionalData []byte) ([]byte, error) {
|
||||||
copy(f.nonce[4:], nonce)
|
copy(f.nonce[4:], nonce)
|
||||||
return f.aead.Open(out, f.nonce[:], plaintext, additionalData)
|
return f.aead.Open(out, f.nonce[:], ciphertext, additionalData)
|
||||||
}
|
}
|
||||||
|
|
||||||
// xoredNonceAEAD wraps an AEAD by XORing in a fixed pattern to the nonce
|
// xoredNonceAEAD wraps an AEAD by XORing in a fixed pattern to the nonce
|
||||||
// before each call.
|
// before each call.
|
||||||
type xorNonceAEAD struct {
|
type xorNonceAEAD struct {
|
||||||
nonceMask [12]byte
|
nonceMask [aeadNonceLength]byte
|
||||||
aead cipher.AEAD
|
aead cipher.AEAD
|
||||||
}
|
}
|
||||||
|
|
||||||
func (f *xorNonceAEAD) NonceSize() int { return 8 }
|
func (f *xorNonceAEAD) NonceSize() int { return 8 } // 64-bit sequence number
|
||||||
func (f *xorNonceAEAD) Overhead() int { return f.aead.Overhead() }
|
func (f *xorNonceAEAD) Overhead() int { return f.aead.Overhead() }
|
||||||
func (f *xorNonceAEAD) explicitNonceLen() int { return 0 }
|
func (f *xorNonceAEAD) explicitNonceLen() int { return 0 }
|
||||||
|
|
||||||
|
@ -206,11 +226,11 @@ func (f *xorNonceAEAD) Seal(out, nonce, plaintext, additionalData []byte) []byte
|
||||||
return result
|
return result
|
||||||
}
|
}
|
||||||
|
|
||||||
func (f *xorNonceAEAD) Open(out, nonce, plaintext, additionalData []byte) ([]byte, error) {
|
func (f *xorNonceAEAD) Open(out, nonce, ciphertext, additionalData []byte) ([]byte, error) {
|
||||||
for i, b := range nonce {
|
for i, b := range nonce {
|
||||||
f.nonceMask[4+i] ^= b
|
f.nonceMask[4+i] ^= b
|
||||||
}
|
}
|
||||||
result, err := f.aead.Open(out, f.nonceMask[:], plaintext, additionalData)
|
result, err := f.aead.Open(out, f.nonceMask[:], ciphertext, additionalData)
|
||||||
for i, b := range nonce {
|
for i, b := range nonce {
|
||||||
f.nonceMask[4+i] ^= b
|
f.nonceMask[4+i] ^= b
|
||||||
}
|
}
|
||||||
|
@ -218,7 +238,10 @@ func (f *xorNonceAEAD) Open(out, nonce, plaintext, additionalData []byte) ([]byt
|
||||||
return result, err
|
return result, err
|
||||||
}
|
}
|
||||||
|
|
||||||
func aeadAESGCM(key, fixedNonce []byte) cipher.AEAD {
|
func aeadAESGCM(key, noncePrefix []byte) aead {
|
||||||
|
if len(noncePrefix) != noncePrefixLength {
|
||||||
|
panic("tls: internal error: wrong nonce length")
|
||||||
|
}
|
||||||
aes, err := aes.NewCipher(key)
|
aes, err := aes.NewCipher(key)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
|
@ -228,19 +251,40 @@ func aeadAESGCM(key, fixedNonce []byte) cipher.AEAD {
|
||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
ret := &fixedNonceAEAD{aead: aead}
|
ret := &prefixNonceAEAD{aead: aead}
|
||||||
copy(ret.nonce[:], fixedNonce)
|
copy(ret.nonce[:], noncePrefix)
|
||||||
return ret
|
return ret
|
||||||
}
|
}
|
||||||
|
|
||||||
func aeadChaCha20Poly1305(key, fixedNonce []byte) cipher.AEAD {
|
func aeadAESGCMTLS13(key, nonceMask []byte) aead {
|
||||||
|
if len(nonceMask) != aeadNonceLength {
|
||||||
|
panic("tls: internal error: wrong nonce length")
|
||||||
|
}
|
||||||
|
aes, err := aes.NewCipher(key)
|
||||||
|
if err != nil {
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
aead, err := cipher.NewGCM(aes)
|
||||||
|
if err != nil {
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
ret := &xorNonceAEAD{aead: aead}
|
||||||
|
copy(ret.nonceMask[:], nonceMask)
|
||||||
|
return ret
|
||||||
|
}
|
||||||
|
|
||||||
|
func aeadChaCha20Poly1305(key, nonceMask []byte) aead {
|
||||||
|
if len(nonceMask) != aeadNonceLength {
|
||||||
|
panic("tls: internal error: wrong nonce length")
|
||||||
|
}
|
||||||
aead, err := chacha20poly1305.New(key)
|
aead, err := chacha20poly1305.New(key)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
ret := &xorNonceAEAD{aead: aead}
|
ret := &xorNonceAEAD{aead: aead}
|
||||||
copy(ret.nonceMask[:], fixedNonce)
|
copy(ret.nonceMask[:], nonceMask)
|
||||||
return ret
|
return ret
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -371,6 +415,7 @@ func mutualCipherSuite(have []uint16, want uint16) *cipherSuite {
|
||||||
//
|
//
|
||||||
// Taken from https://www.iana.org/assignments/tls-parameters/tls-parameters.xml
|
// Taken from https://www.iana.org/assignments/tls-parameters/tls-parameters.xml
|
||||||
const (
|
const (
|
||||||
|
// TLS 1.0 - 1.2 cipher suites.
|
||||||
TLS_RSA_WITH_RC4_128_SHA uint16 = 0x0005
|
TLS_RSA_WITH_RC4_128_SHA uint16 = 0x0005
|
||||||
TLS_RSA_WITH_3DES_EDE_CBC_SHA uint16 = 0x000a
|
TLS_RSA_WITH_3DES_EDE_CBC_SHA uint16 = 0x000a
|
||||||
TLS_RSA_WITH_AES_128_CBC_SHA uint16 = 0x002f
|
TLS_RSA_WITH_AES_128_CBC_SHA uint16 = 0x002f
|
||||||
|
@ -394,6 +439,11 @@ const (
|
||||||
TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305 uint16 = 0xcca8
|
TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305 uint16 = 0xcca8
|
||||||
TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305 uint16 = 0xcca9
|
TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305 uint16 = 0xcca9
|
||||||
|
|
||||||
|
// TLS 1.3 cipher suites.
|
||||||
|
TLS_AES_128_GCM_SHA256 uint16 = 0x1301
|
||||||
|
TLS_AES_256_GCM_SHA384 uint16 = 0x1302
|
||||||
|
TLS_CHACHA20_POLY1305_SHA256 uint16 = 0x1303
|
||||||
|
|
||||||
// TLS_FALLBACK_SCSV isn't a standard cipher suite but an indicator
|
// TLS_FALLBACK_SCSV isn't a standard cipher suite but an indicator
|
||||||
// that the client is doing version fallback. See RFC 7507.
|
// that the client is doing version fallback. See RFC 7507.
|
||||||
TLS_FALLBACK_SCSV uint16 = 0x5600
|
TLS_FALLBACK_SCSV uint16 = 0x5600
|
||||||
|
|
51
common.go
51
common.go
|
@ -26,14 +26,19 @@ const (
|
||||||
VersionTLS10 = 0x0301
|
VersionTLS10 = 0x0301
|
||||||
VersionTLS11 = 0x0302
|
VersionTLS11 = 0x0302
|
||||||
VersionTLS12 = 0x0303
|
VersionTLS12 = 0x0303
|
||||||
|
|
||||||
|
// VersionTLS13 is under development in this library and can't be selected
|
||||||
|
// nor negotiated yet on either side.
|
||||||
|
VersionTLS13 = 0x0304
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
maxPlaintext = 16384 // maximum plaintext payload length
|
maxPlaintext = 16384 // maximum plaintext payload length
|
||||||
maxCiphertext = 16384 + 2048 // maximum ciphertext payload length
|
maxCiphertext = 16384 + 2048 // maximum ciphertext payload length
|
||||||
recordHeaderLen = 5 // record header length
|
maxCiphertextTLS13 = 16384 + 256 // maximum ciphertext length in TLS 1.3
|
||||||
maxHandshake = 65536 // maximum handshake we support (protocol max is 16 MB)
|
recordHeaderLen = 5 // record header length
|
||||||
maxWarnAlertCount = 5 // maximum number of consecutive warning alerts
|
maxHandshake = 65536 // maximum handshake we support (protocol max is 16 MB)
|
||||||
|
maxUselessRecords = 5 // maximum number of consecutive non-advancing records
|
||||||
|
|
||||||
minVersion = VersionTLS10
|
minVersion = VersionTLS10
|
||||||
maxVersion = VersionTLS12
|
maxVersion = VersionTLS12
|
||||||
|
@ -942,8 +947,9 @@ func defaultConfig() *Config {
|
||||||
}
|
}
|
||||||
|
|
||||||
var (
|
var (
|
||||||
once sync.Once
|
once sync.Once
|
||||||
varDefaultCipherSuites []uint16
|
varDefaultCipherSuites []uint16
|
||||||
|
varDefaultCipherSuitesTLS13 []uint16
|
||||||
)
|
)
|
||||||
|
|
||||||
func defaultCipherSuites() []uint16 {
|
func defaultCipherSuites() []uint16 {
|
||||||
|
@ -951,19 +957,24 @@ func defaultCipherSuites() []uint16 {
|
||||||
return varDefaultCipherSuites
|
return varDefaultCipherSuites
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func defaultCipherSuitesTLS13() []uint16 {
|
||||||
|
once.Do(initDefaultCipherSuites)
|
||||||
|
return varDefaultCipherSuitesTLS13
|
||||||
|
}
|
||||||
|
|
||||||
func initDefaultCipherSuites() {
|
func initDefaultCipherSuites() {
|
||||||
var topCipherSuites []uint16
|
var topCipherSuites []uint16
|
||||||
|
|
||||||
// Check the cpu flags for each platform that has optimized GCM implementations.
|
// Check the cpu flags for each platform that has optimized GCM implementations.
|
||||||
// Worst case, these variables will just all be false
|
// Worst case, these variables will just all be false.
|
||||||
hasGCMAsmAMD64 := cpu.X86.HasAES && cpu.X86.HasPCLMULQDQ
|
var (
|
||||||
|
hasGCMAsmAMD64 = cpu.X86.HasAES && cpu.X86.HasPCLMULQDQ
|
||||||
|
hasGCMAsmARM64 = cpu.ARM64.HasAES && cpu.ARM64.HasPMULL
|
||||||
|
// Keep in sync with crypto/aes/cipher_s390x.go.
|
||||||
|
hasGCMAsmS390X = cpu.S390X.HasAES && cpu.S390X.HasAESCBC && cpu.S390X.HasAESCTR && (cpu.S390X.HasGHASH || cpu.S390X.HasAESGCM)
|
||||||
|
|
||||||
hasGCMAsmARM64 := cpu.ARM64.HasAES && cpu.ARM64.HasPMULL
|
hasGCMAsm = hasGCMAsmAMD64 || hasGCMAsmARM64 || hasGCMAsmS390X
|
||||||
|
)
|
||||||
// Keep in sync with crypto/aes/cipher_s390x.go.
|
|
||||||
hasGCMAsmS390X := cpu.S390X.HasAES && cpu.S390X.HasAESCBC && cpu.S390X.HasAESCTR && (cpu.S390X.HasGHASH || cpu.S390X.HasAESGCM)
|
|
||||||
|
|
||||||
hasGCMAsm := hasGCMAsmAMD64 || hasGCMAsmARM64 || hasGCMAsmS390X
|
|
||||||
|
|
||||||
if hasGCMAsm {
|
if hasGCMAsm {
|
||||||
// If AES-GCM hardware is provided then prioritise AES-GCM
|
// If AES-GCM hardware is provided then prioritise AES-GCM
|
||||||
|
@ -976,6 +987,11 @@ func initDefaultCipherSuites() {
|
||||||
TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305,
|
TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305,
|
||||||
TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305,
|
TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305,
|
||||||
}
|
}
|
||||||
|
varDefaultCipherSuitesTLS13 = []uint16{
|
||||||
|
TLS_AES_128_GCM_SHA256,
|
||||||
|
TLS_CHACHA20_POLY1305_SHA256,
|
||||||
|
TLS_AES_256_GCM_SHA384,
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
// Without AES-GCM hardware, we put the ChaCha20-Poly1305
|
// Without AES-GCM hardware, we put the ChaCha20-Poly1305
|
||||||
// cipher suites first.
|
// cipher suites first.
|
||||||
|
@ -987,6 +1003,11 @@ func initDefaultCipherSuites() {
|
||||||
TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,
|
TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,
|
||||||
TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384,
|
TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384,
|
||||||
}
|
}
|
||||||
|
varDefaultCipherSuitesTLS13 = []uint16{
|
||||||
|
TLS_CHACHA20_POLY1305_SHA256,
|
||||||
|
TLS_AES_128_GCM_SHA256,
|
||||||
|
TLS_AES_256_GCM_SHA384,
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
varDefaultCipherSuites = make([]uint16, 0, len(cipherSuites))
|
varDefaultCipherSuites = make([]uint16, 0, len(cipherSuites))
|
||||||
|
|
162
conn.go
162
conn.go
|
@ -94,9 +94,9 @@ type Conn struct {
|
||||||
bytesSent int64
|
bytesSent int64
|
||||||
packetsSent int64
|
packetsSent int64
|
||||||
|
|
||||||
// warnCount counts the number of consecutive warning alerts received
|
// retryCount counts the number of consecutive warning alerts received
|
||||||
// by Conn.readRecord. Protected by in.Mutex.
|
// by Conn.readRecord. Protected by in.Mutex.
|
||||||
warnCount int
|
retryCount int
|
||||||
|
|
||||||
// activeCall is an atomic int32; the low bit is whether Close has
|
// activeCall is an atomic int32; the low bit is whether Close has
|
||||||
// been called. the rest of the bits are the number of goroutines
|
// been called. the rest of the bits are the number of goroutines
|
||||||
|
@ -291,9 +291,17 @@ type cbcMode interface {
|
||||||
|
|
||||||
// decrypt authenticates and decrypts the record if protection is active at
|
// decrypt authenticates and decrypts the record if protection is active at
|
||||||
// this stage. The returned plaintext might overlap with the input.
|
// this stage. The returned plaintext might overlap with the input.
|
||||||
func (hc *halfConn) decrypt(record []byte) (plaintext []byte, err error) {
|
func (hc *halfConn) decrypt(record []byte) ([]byte, recordType, error) {
|
||||||
|
var plaintext []byte
|
||||||
|
typ := recordType(record[0])
|
||||||
payload := record[recordHeaderLen:]
|
payload := record[recordHeaderLen:]
|
||||||
|
|
||||||
|
// In TLS 1.3, change_cipher_spec messages are to be ignored without being
|
||||||
|
// decrypted. See RFC 8446, Appendix D.4.
|
||||||
|
if hc.version == VersionTLS13 && typ == recordTypeChangeCipherSpec {
|
||||||
|
return payload, typ, nil
|
||||||
|
}
|
||||||
|
|
||||||
paddingGood := byte(255)
|
paddingGood := byte(255)
|
||||||
paddingLen := 0
|
paddingLen := 0
|
||||||
|
|
||||||
|
@ -305,7 +313,7 @@ func (hc *halfConn) decrypt(record []byte) (plaintext []byte, err error) {
|
||||||
c.XORKeyStream(payload, payload)
|
c.XORKeyStream(payload, payload)
|
||||||
case aead:
|
case aead:
|
||||||
if len(payload) < explicitNonceLen {
|
if len(payload) < explicitNonceLen {
|
||||||
return nil, alertBadRecordMAC
|
return nil, 0, alertBadRecordMAC
|
||||||
}
|
}
|
||||||
nonce := payload[:explicitNonceLen]
|
nonce := payload[:explicitNonceLen]
|
||||||
if len(nonce) == 0 {
|
if len(nonce) == 0 {
|
||||||
|
@ -313,22 +321,27 @@ func (hc *halfConn) decrypt(record []byte) (plaintext []byte, err error) {
|
||||||
}
|
}
|
||||||
payload = payload[explicitNonceLen:]
|
payload = payload[explicitNonceLen:]
|
||||||
|
|
||||||
copy(hc.additionalData[:], hc.seq[:])
|
additionalData := hc.additionalData[:]
|
||||||
copy(hc.additionalData[8:], record[:3])
|
if hc.version == VersionTLS13 {
|
||||||
n := len(payload) - c.Overhead()
|
additionalData = record[:recordHeaderLen]
|
||||||
hc.additionalData[11] = byte(n >> 8)
|
} else {
|
||||||
hc.additionalData[12] = byte(n)
|
copy(additionalData, hc.seq[:])
|
||||||
|
copy(additionalData[8:], record[:3])
|
||||||
|
n := len(payload) - c.Overhead()
|
||||||
|
additionalData[11] = byte(n >> 8)
|
||||||
|
additionalData[12] = byte(n)
|
||||||
|
}
|
||||||
|
|
||||||
var err error
|
var err error
|
||||||
plaintext, err = c.Open(payload[:0], nonce, payload, hc.additionalData[:])
|
plaintext, err = c.Open(payload[:0], nonce, payload, additionalData)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, alertBadRecordMAC
|
return nil, 0, alertBadRecordMAC
|
||||||
}
|
}
|
||||||
case cbcMode:
|
case cbcMode:
|
||||||
blockSize := c.BlockSize()
|
blockSize := c.BlockSize()
|
||||||
minPayload := explicitNonceLen + roundUp(hc.mac.Size()+1, blockSize) // TODO: vuln?
|
minPayload := explicitNonceLen + roundUp(hc.mac.Size()+1, blockSize) // TODO: vuln?
|
||||||
if len(payload)%blockSize != 0 || len(payload) < minPayload {
|
if len(payload)%blockSize != 0 || len(payload) < minPayload {
|
||||||
return nil, alertBadRecordMAC
|
return nil, 0, alertBadRecordMAC
|
||||||
}
|
}
|
||||||
|
|
||||||
if explicitNonceLen > 0 {
|
if explicitNonceLen > 0 {
|
||||||
|
@ -351,6 +364,26 @@ func (hc *halfConn) decrypt(record []byte) (plaintext []byte, err error) {
|
||||||
default:
|
default:
|
||||||
panic("unknown cipher type")
|
panic("unknown cipher type")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if hc.version == VersionTLS13 {
|
||||||
|
if typ != recordTypeApplicationData {
|
||||||
|
return nil, 0, alertUnexpectedMessage
|
||||||
|
}
|
||||||
|
if len(plaintext) > maxPlaintext+1 {
|
||||||
|
return nil, 0, alertRecordOverflow
|
||||||
|
}
|
||||||
|
// Remove padding and find the ContentType scanning from the end.
|
||||||
|
for i := len(plaintext) - 1; i >= 0; i-- {
|
||||||
|
if plaintext[i] != 0 {
|
||||||
|
typ = recordType(plaintext[i])
|
||||||
|
plaintext = plaintext[:i]
|
||||||
|
break
|
||||||
|
}
|
||||||
|
if i == 0 {
|
||||||
|
return nil, 0, alertUnexpectedMessage
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
plaintext = payload
|
plaintext = payload
|
||||||
}
|
}
|
||||||
|
@ -358,7 +391,7 @@ func (hc *halfConn) decrypt(record []byte) (plaintext []byte, err error) {
|
||||||
if hc.mac != nil {
|
if hc.mac != nil {
|
||||||
macSize := hc.mac.Size()
|
macSize := hc.mac.Size()
|
||||||
if len(payload) < macSize {
|
if len(payload) < macSize {
|
||||||
return nil, alertBadRecordMAC
|
return nil, 0, alertBadRecordMAC
|
||||||
}
|
}
|
||||||
|
|
||||||
n := len(payload) - macSize - paddingLen
|
n := len(payload) - macSize - paddingLen
|
||||||
|
@ -369,14 +402,14 @@ func (hc *halfConn) decrypt(record []byte) (plaintext []byte, err error) {
|
||||||
localMAC := hc.mac.MAC(hc.seq[0:], record[:recordHeaderLen], payload[:n], payload[n+macSize:])
|
localMAC := hc.mac.MAC(hc.seq[0:], record[:recordHeaderLen], payload[:n], payload[n+macSize:])
|
||||||
|
|
||||||
if subtle.ConstantTimeCompare(localMAC, remoteMAC) != 1 || paddingGood != 255 {
|
if subtle.ConstantTimeCompare(localMAC, remoteMAC) != 1 || paddingGood != 255 {
|
||||||
return nil, alertBadRecordMAC
|
return nil, 0, alertBadRecordMAC
|
||||||
}
|
}
|
||||||
|
|
||||||
plaintext = payload[:n]
|
plaintext = payload[:n]
|
||||||
}
|
}
|
||||||
|
|
||||||
hc.incSeq()
|
hc.incSeq()
|
||||||
return plaintext, nil
|
return plaintext, typ, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// sliceForAppend extends the input slice by n bytes. head is the full extended
|
// sliceForAppend extends the input slice by n bytes. head is the full extended
|
||||||
|
@ -438,12 +471,24 @@ func (hc *halfConn) encrypt(record, payload []byte, rand io.Reader) ([]byte, err
|
||||||
nonce = hc.seq[:]
|
nonce = hc.seq[:]
|
||||||
}
|
}
|
||||||
|
|
||||||
copy(hc.additionalData[:], hc.seq[:])
|
if hc.version == VersionTLS13 {
|
||||||
copy(hc.additionalData[8:], record[:3])
|
record = append(record, payload...)
|
||||||
hc.additionalData[11] = byte(len(payload) >> 8)
|
|
||||||
hc.additionalData[12] = byte(len(payload))
|
|
||||||
|
|
||||||
record = c.Seal(record, nonce, payload, hc.additionalData[:])
|
// Encrypt the actual ContentType and replace the plaintext one.
|
||||||
|
record = append(record, record[0])
|
||||||
|
record[0] = byte(recordTypeApplicationData)
|
||||||
|
|
||||||
|
n := len(payload) + 1 + c.Overhead()
|
||||||
|
record[3] = byte(n >> 8)
|
||||||
|
record[4] = byte(n)
|
||||||
|
|
||||||
|
record = c.Seal(record[:recordHeaderLen],
|
||||||
|
nonce, record[recordHeaderLen:], record[:recordHeaderLen])
|
||||||
|
} else {
|
||||||
|
copy(hc.additionalData[:], hc.seq[:])
|
||||||
|
copy(hc.additionalData[8:], record)
|
||||||
|
record = c.Seal(record, nonce, payload, hc.additionalData[:])
|
||||||
|
}
|
||||||
case cbcMode:
|
case cbcMode:
|
||||||
blockSize := c.BlockSize()
|
blockSize := c.BlockSize()
|
||||||
plaintextLen := len(payload) + len(mac)
|
plaintextLen := len(payload) + len(mac)
|
||||||
|
@ -546,7 +591,7 @@ func (c *Conn) readRecord(want recordType) error {
|
||||||
|
|
||||||
vers := uint16(hdr[1])<<8 | uint16(hdr[2])
|
vers := uint16(hdr[1])<<8 | uint16(hdr[2])
|
||||||
n := int(hdr[3])<<8 | int(hdr[4])
|
n := int(hdr[3])<<8 | int(hdr[4])
|
||||||
if c.haveVers && vers != c.vers {
|
if c.haveVers && c.vers != VersionTLS13 && vers != c.vers {
|
||||||
c.sendAlert(alertProtocolVersion)
|
c.sendAlert(alertProtocolVersion)
|
||||||
msg := fmt.Sprintf("received record with version %x when expecting version %x", vers, c.vers)
|
msg := fmt.Sprintf("received record with version %x when expecting version %x", vers, c.vers)
|
||||||
return c.in.setErrorLocked(c.newRecordHeaderError(nil, msg))
|
return c.in.setErrorLocked(c.newRecordHeaderError(nil, msg))
|
||||||
|
@ -560,7 +605,7 @@ func (c *Conn) readRecord(want recordType) error {
|
||||||
return c.in.setErrorLocked(c.newRecordHeaderError(c.conn, "first record does not look like a TLS handshake"))
|
return c.in.setErrorLocked(c.newRecordHeaderError(c.conn, "first record does not look like a TLS handshake"))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if n > maxCiphertext {
|
if c.vers == VersionTLS13 && n > maxCiphertextTLS13 || n > maxCiphertext {
|
||||||
c.sendAlert(alertRecordOverflow)
|
c.sendAlert(alertRecordOverflow)
|
||||||
msg := fmt.Sprintf("oversized record received with length %d", n)
|
msg := fmt.Sprintf("oversized record received with length %d", n)
|
||||||
return c.in.setErrorLocked(c.newRecordHeaderError(nil, msg))
|
return c.in.setErrorLocked(c.newRecordHeaderError(nil, msg))
|
||||||
|
@ -574,7 +619,7 @@ func (c *Conn) readRecord(want recordType) error {
|
||||||
|
|
||||||
// Process message.
|
// Process message.
|
||||||
record := c.rawInput.Next(recordHeaderLen + n)
|
record := c.rawInput.Next(recordHeaderLen + n)
|
||||||
data, err := c.in.decrypt(record)
|
data, typ, err := c.in.decrypt(record)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return c.in.setErrorLocked(c.sendAlert(err.(alert)))
|
return c.in.setErrorLocked(c.sendAlert(err.(alert)))
|
||||||
}
|
}
|
||||||
|
@ -582,9 +627,31 @@ func (c *Conn) readRecord(want recordType) error {
|
||||||
return c.in.setErrorLocked(c.sendAlert(alertRecordOverflow))
|
return c.in.setErrorLocked(c.sendAlert(alertRecordOverflow))
|
||||||
}
|
}
|
||||||
|
|
||||||
if typ != recordTypeAlert && len(data) > 0 {
|
// Application Data messages are always protected.
|
||||||
// this is a valid non-alert message: reset the count of alerts
|
if c.in.cipher == nil && typ == recordTypeApplicationData {
|
||||||
c.warnCount = 0
|
return c.in.setErrorLocked(c.sendAlert(alertUnexpectedMessage))
|
||||||
|
}
|
||||||
|
|
||||||
|
if typ != recordTypeAlert && typ != recordTypeChangeCipherSpec && len(data) > 0 {
|
||||||
|
// This is a state-advancing message: reset the retry count.
|
||||||
|
c.retryCount = 0
|
||||||
|
}
|
||||||
|
|
||||||
|
// Handshake messages MUST NOT be interleaved with other record types in TLS 1.3.
|
||||||
|
if c.vers == VersionTLS13 && typ != recordTypeHandshake && c.hand.Len() > 0 {
|
||||||
|
return c.in.setErrorLocked(c.sendAlert(alertUnexpectedMessage))
|
||||||
|
}
|
||||||
|
|
||||||
|
// In TLS 1.3, change_cipher_spec records are ignored until the Finished.
|
||||||
|
// See RFC 8446, Appendix D.4. Note that according to Section 5, a server
|
||||||
|
// can send a ChangeCipherSpec before its ServerHello, when c.vers is still
|
||||||
|
// unset. That's not useful though and suspicious if the server then selects
|
||||||
|
// a lower protocol version, so don't allow that.
|
||||||
|
if c.vers == VersionTLS13 && typ == recordTypeChangeCipherSpec {
|
||||||
|
if len(data) != 1 || data[0] != 1 || c.handshakeComplete() {
|
||||||
|
return c.in.setErrorLocked(c.sendAlert(alertUnexpectedMessage))
|
||||||
|
}
|
||||||
|
return c.retryReadRecord(want)
|
||||||
}
|
}
|
||||||
|
|
||||||
switch typ {
|
switch typ {
|
||||||
|
@ -598,14 +665,12 @@ func (c *Conn) readRecord(want recordType) error {
|
||||||
if alert(data[1]) == alertCloseNotify {
|
if alert(data[1]) == alertCloseNotify {
|
||||||
return c.in.setErrorLocked(io.EOF)
|
return c.in.setErrorLocked(io.EOF)
|
||||||
}
|
}
|
||||||
|
if c.vers == VersionTLS13 {
|
||||||
|
return c.in.setErrorLocked(&net.OpError{Op: "remote error", Err: alert(data[1])})
|
||||||
|
}
|
||||||
switch data[0] {
|
switch data[0] {
|
||||||
case alertLevelWarning:
|
case alertLevelWarning:
|
||||||
c.warnCount++
|
return c.retryReadRecord(want) // Drop the record on the floor and retry.
|
||||||
if c.warnCount > maxWarnAlertCount {
|
|
||||||
c.sendAlert(alertUnexpectedMessage)
|
|
||||||
return c.in.setErrorLocked(errors.New("tls: too many warn alerts"))
|
|
||||||
}
|
|
||||||
return c.readRecord(want) // Drop the record on the floor and retry.
|
|
||||||
case alertLevelError:
|
case alertLevelError:
|
||||||
return c.in.setErrorLocked(&net.OpError{Op: "remote error", Err: alert(data[1])})
|
return c.in.setErrorLocked(&net.OpError{Op: "remote error", Err: alert(data[1])})
|
||||||
default:
|
default:
|
||||||
|
@ -629,6 +694,9 @@ func (c *Conn) readRecord(want recordType) error {
|
||||||
if typ != want {
|
if typ != want {
|
||||||
return c.in.setErrorLocked(c.sendAlert(alertUnexpectedMessage))
|
return c.in.setErrorLocked(c.sendAlert(alertUnexpectedMessage))
|
||||||
}
|
}
|
||||||
|
if len(data) == 0 {
|
||||||
|
return c.retryReadRecord(want)
|
||||||
|
}
|
||||||
// Note that data is owned by c.rawInput, following the Next call above,
|
// Note that data is owned by c.rawInput, following the Next call above,
|
||||||
// to avoid copying the plaintext. This is safe because c.rawInput is
|
// to avoid copying the plaintext. This is safe because c.rawInput is
|
||||||
// not read from or written to until c.input is drained.
|
// not read from or written to until c.input is drained.
|
||||||
|
@ -636,14 +704,35 @@ func (c *Conn) readRecord(want recordType) error {
|
||||||
return nil
|
return nil
|
||||||
|
|
||||||
case recordTypeHandshake:
|
case recordTypeHandshake:
|
||||||
if typ != want && !(c.isClient && c.config.Renegotiation != RenegotiateNever) {
|
if typ != want && !c.isRenegotiationAcceptable() {
|
||||||
return c.in.setErrorLocked(c.sendAlert(alertNoRenegotiation))
|
return c.in.setErrorLocked(c.sendAlert(alertNoRenegotiation))
|
||||||
}
|
}
|
||||||
|
if len(data) == 0 {
|
||||||
|
return c.in.setErrorLocked(c.sendAlert(alertUnexpectedMessage))
|
||||||
|
}
|
||||||
c.hand.Write(data)
|
c.hand.Write(data)
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// retryReadRecord recurses into readRecord to drop a non-advancing record, like
|
||||||
|
// a warning alert, empty application_data, or a change_cipher_spec in TLS 1.3.
|
||||||
|
func (c *Conn) retryReadRecord(want recordType) error {
|
||||||
|
c.retryCount++
|
||||||
|
if c.retryCount > maxUselessRecords {
|
||||||
|
c.sendAlert(alertUnexpectedMessage)
|
||||||
|
return c.in.setErrorLocked(errors.New("tls: too many ignored records"))
|
||||||
|
}
|
||||||
|
return c.readRecord(want)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *Conn) isRenegotiationAcceptable() bool {
|
||||||
|
return c.isClient &&
|
||||||
|
c.vers != VersionTLS13 &&
|
||||||
|
c.handshakeComplete() &&
|
||||||
|
c.config.Renegotiation != RenegotiateNever
|
||||||
|
}
|
||||||
|
|
||||||
// atLeastReader reads from R, stopping with EOF once at least N bytes have been
|
// atLeastReader reads from R, stopping with EOF once at least N bytes have been
|
||||||
// read. It is different from an io.LimitedReader in that it doesn't cut short
|
// read. It is different from an io.LimitedReader in that it doesn't cut short
|
||||||
// the last Read call, and in that it considers an early EOF an error.
|
// the last Read call, and in that it considers an early EOF an error.
|
||||||
|
@ -767,6 +856,9 @@ func (c *Conn) maxPayloadSizeForWrite(typ recordType) int {
|
||||||
panic("unknown cipher type")
|
panic("unknown cipher type")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if c.vers == VersionTLS13 {
|
||||||
|
payloadBytes-- // encrypted ContentType
|
||||||
|
}
|
||||||
|
|
||||||
// Allow packet growth in arithmetic progression up to max.
|
// Allow packet growth in arithmetic progression up to max.
|
||||||
pkt := c.packetsSent
|
pkt := c.packetsSent
|
||||||
|
@ -822,6 +914,10 @@ func (c *Conn) writeRecordLocked(typ recordType, data []byte) (int, error) {
|
||||||
// Some TLS servers fail if the record version is
|
// Some TLS servers fail if the record version is
|
||||||
// greater than TLS 1.0 for the initial ClientHello.
|
// greater than TLS 1.0 for the initial ClientHello.
|
||||||
vers = VersionTLS10
|
vers = VersionTLS10
|
||||||
|
} else if vers == VersionTLS13 {
|
||||||
|
// TLS 1.3 froze the record layer version to 1.2.
|
||||||
|
// See RFC 8446, Section 5.1.
|
||||||
|
vers = VersionTLS12
|
||||||
}
|
}
|
||||||
c.outBuf[1] = byte(vers >> 8)
|
c.outBuf[1] = byte(vers >> 8)
|
||||||
c.outBuf[2] = byte(vers)
|
c.outBuf[2] = byte(vers)
|
||||||
|
|
|
@ -589,7 +589,7 @@ func TestWarningAlertFlood(t *testing.T) {
|
||||||
if err == nil {
|
if err == nil {
|
||||||
return errors.New("unexpected lack of error from server")
|
return errors.New("unexpected lack of error from server")
|
||||||
}
|
}
|
||||||
const expected = "too many warn"
|
const expected = "too many ignored"
|
||||||
if str := err.Error(); !strings.Contains(str, expected) {
|
if str := err.Error(); !strings.Contains(str, expected) {
|
||||||
return fmt.Errorf("expected error containing %q, but saw: %s", expected, str)
|
return fmt.Errorf("expected error containing %q, but saw: %s", expected, str)
|
||||||
}
|
}
|
||||||
|
@ -610,7 +610,7 @@ func TestWarningAlertFlood(t *testing.T) {
|
||||||
t.Fatal(err)
|
t.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
for i := 0; i < maxWarnAlertCount+1; i++ {
|
for i := 0; i < maxUselessRecords+1; i++ {
|
||||||
conn.sendAlert(alertNoRenegotiation)
|
conn.sendAlert(alertNoRenegotiation)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue