2009-11-21 23:53:03 +00:00
|
|
|
|
// Copyright 2009 The Go Authors. All rights reserved.
|
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
|
|
package tls
|
|
|
|
|
|
|
|
|
|
import (
|
2009-12-15 23:33:31 +00:00
|
|
|
|
"crypto/hmac"
|
|
|
|
|
"crypto/rc4"
|
|
|
|
|
"crypto/rsa"
|
|
|
|
|
"crypto/subtle"
|
|
|
|
|
"crypto/x509"
|
|
|
|
|
"io"
|
2010-04-27 06:19:04 +01:00
|
|
|
|
"os"
|
2009-11-21 23:53:03 +00:00
|
|
|
|
)
|
|
|
|
|
|
2010-04-27 06:19:04 +01:00
|
|
|
|
func (c *Conn) clientHandshake() os.Error {
|
2009-12-15 23:33:31 +00:00
|
|
|
|
finishedHash := newFinishedHash()
|
2009-11-21 23:53:03 +00:00
|
|
|
|
|
2010-07-14 15:40:15 +01:00
|
|
|
|
if c.config == nil {
|
|
|
|
|
c.config = defaultConfig()
|
|
|
|
|
}
|
2010-04-27 06:19:04 +01:00
|
|
|
|
|
2009-11-21 23:53:03 +00:00
|
|
|
|
hello := &clientHelloMsg{
|
2010-04-27 06:19:04 +01:00
|
|
|
|
vers: maxVersion,
|
2010-03-02 21:46:51 +00:00
|
|
|
|
cipherSuites: []uint16{TLS_RSA_WITH_RC4_128_SHA},
|
2009-11-21 23:53:03 +00:00
|
|
|
|
compressionMethods: []uint8{compressionNone},
|
2010-03-02 21:46:51 +00:00
|
|
|
|
random: make([]byte, 32),
|
2010-07-14 15:40:15 +01:00
|
|
|
|
ocspStapling: true,
|
2010-07-21 16:36:01 +01:00
|
|
|
|
serverName: c.config.ServerName,
|
2009-12-15 23:33:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
2010-12-07 21:15:15 +00:00
|
|
|
|
t := uint32(c.config.time())
|
2010-04-27 06:19:04 +01:00
|
|
|
|
hello.random[0] = byte(t >> 24)
|
|
|
|
|
hello.random[1] = byte(t >> 16)
|
|
|
|
|
hello.random[2] = byte(t >> 8)
|
|
|
|
|
hello.random[3] = byte(t)
|
2010-12-07 21:15:15 +00:00
|
|
|
|
_, err := io.ReadFull(c.config.rand(), hello.random[4:])
|
2009-11-21 23:53:03 +00:00
|
|
|
|
if err != nil {
|
2010-10-11 15:39:56 +01:00
|
|
|
|
c.sendAlert(alertInternalError)
|
|
|
|
|
return os.ErrorString("short read from Rand")
|
2009-11-21 23:53:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2009-12-15 23:33:31 +00:00
|
|
|
|
finishedHash.Write(hello.marshal())
|
2010-04-27 06:19:04 +01:00
|
|
|
|
c.writeRecord(recordTypeHandshake, hello.marshal())
|
2009-11-21 23:53:03 +00:00
|
|
|
|
|
2010-04-27 06:19:04 +01:00
|
|
|
|
msg, err := c.readHandshake()
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
serverHello, ok := msg.(*serverHelloMsg)
|
2009-11-21 23:53:03 +00:00
|
|
|
|
if !ok {
|
2010-04-27 06:19:04 +01:00
|
|
|
|
return c.sendAlert(alertUnexpectedMessage)
|
2009-11-21 23:53:03 +00:00
|
|
|
|
}
|
2009-12-15 23:33:31 +00:00
|
|
|
|
finishedHash.Write(serverHello.marshal())
|
2010-04-27 06:19:04 +01:00
|
|
|
|
|
|
|
|
|
vers, ok := mutualVersion(serverHello.vers)
|
2009-11-21 23:53:03 +00:00
|
|
|
|
if !ok {
|
2010-04-27 06:19:04 +01:00
|
|
|
|
c.sendAlert(alertProtocolVersion)
|
2009-11-21 23:53:03 +00:00
|
|
|
|
}
|
2010-04-27 06:19:04 +01:00
|
|
|
|
c.vers = vers
|
|
|
|
|
c.haveVers = true
|
2009-11-21 23:53:03 +00:00
|
|
|
|
|
|
|
|
|
if serverHello.cipherSuite != TLS_RSA_WITH_RC4_128_SHA ||
|
|
|
|
|
serverHello.compressionMethod != compressionNone {
|
2010-04-27 06:19:04 +01:00
|
|
|
|
return c.sendAlert(alertUnexpectedMessage)
|
2009-11-21 23:53:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2010-04-27 06:19:04 +01:00
|
|
|
|
msg, err = c.readHandshake()
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
certMsg, ok := msg.(*certificateMsg)
|
2009-11-21 23:53:03 +00:00
|
|
|
|
if !ok || len(certMsg.certificates) == 0 {
|
2010-04-27 06:19:04 +01:00
|
|
|
|
return c.sendAlert(alertUnexpectedMessage)
|
2009-11-21 23:53:03 +00:00
|
|
|
|
}
|
2009-12-15 23:33:31 +00:00
|
|
|
|
finishedHash.Write(certMsg.marshal())
|
2009-11-21 23:53:03 +00:00
|
|
|
|
|
2009-12-15 23:33:31 +00:00
|
|
|
|
certs := make([]*x509.Certificate, len(certMsg.certificates))
|
2010-11-05 13:54:56 +00:00
|
|
|
|
chain := NewCASet()
|
2009-11-21 23:53:03 +00:00
|
|
|
|
for i, asn1Data := range certMsg.certificates {
|
2009-12-15 23:33:31 +00:00
|
|
|
|
cert, err := x509.ParseCertificate(asn1Data)
|
2009-11-21 23:53:03 +00:00
|
|
|
|
if err != nil {
|
2010-10-11 15:39:56 +01:00
|
|
|
|
c.sendAlert(alertBadCertificate)
|
|
|
|
|
return os.ErrorString("failed to parse certificate from server: " + err.String())
|
2009-11-21 23:53:03 +00:00
|
|
|
|
}
|
2009-12-15 23:33:31 +00:00
|
|
|
|
certs[i] = cert
|
2010-11-05 13:54:56 +00:00
|
|
|
|
chain.AddCert(cert)
|
2009-11-21 23:53:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2010-11-05 13:54:56 +00:00
|
|
|
|
// If we don't have a root CA set configured then anything is accepted.
|
|
|
|
|
// TODO(rsc): Find certificates for OS X 10.6.
|
|
|
|
|
for cur := certs[0]; c.config.RootCAs != nil; {
|
|
|
|
|
parent := c.config.RootCAs.FindVerifiedParent(cur)
|
|
|
|
|
if parent != nil {
|
|
|
|
|
break
|
2010-09-20 17:17:31 +01:00
|
|
|
|
}
|
|
|
|
|
|
2010-11-05 13:54:56 +00:00
|
|
|
|
parent = chain.FindVerifiedParent(cur)
|
|
|
|
|
if parent == nil {
|
2010-10-11 15:39:56 +01:00
|
|
|
|
c.sendAlert(alertBadCertificate)
|
|
|
|
|
return os.ErrorString("could not find root certificate for chain")
|
2009-11-21 23:53:03 +00:00
|
|
|
|
}
|
2010-11-05 13:54:56 +00:00
|
|
|
|
|
|
|
|
|
if !parent.BasicConstraintsValid || !parent.IsCA {
|
2010-10-11 15:39:56 +01:00
|
|
|
|
c.sendAlert(alertBadCertificate)
|
2010-11-05 13:54:56 +00:00
|
|
|
|
return os.ErrorString("intermediate certificate does not have CA bit set")
|
2009-11-21 23:53:03 +00:00
|
|
|
|
}
|
2010-11-05 13:54:56 +00:00
|
|
|
|
// KeyUsage status flags are ignored. From Engineering
|
|
|
|
|
// Security, Peter Gutmann: A European government CA marked its
|
|
|
|
|
// signing certificates as being valid for encryption only, but
|
|
|
|
|
// no-one noticed. Another European CA marked its signature
|
|
|
|
|
// keys as not being valid for signatures. A different CA
|
|
|
|
|
// marked its own trusted root certificate as being invalid for
|
|
|
|
|
// certificate signing. Another national CA distributed a
|
|
|
|
|
// certificate to be used to encrypt data for the country’s tax
|
|
|
|
|
// authority that was marked as only being usable for digital
|
|
|
|
|
// signatures but not for encryption. Yet another CA reversed
|
|
|
|
|
// the order of the bit flags in the keyUsage due to confusion
|
|
|
|
|
// over encoding endianness, essentially setting a random
|
|
|
|
|
// keyUsage in certificates that it issued. Another CA created
|
|
|
|
|
// a self-invalidating certificate by adding a certificate
|
|
|
|
|
// policy statement stipulating that the certificate had to be
|
|
|
|
|
// used strictly as specified in the keyUsage, and a keyUsage
|
|
|
|
|
// containing a flag indicating that the RSA encryption key
|
|
|
|
|
// could only be used for Diffie-Hellman key agreement.
|
|
|
|
|
|
|
|
|
|
cur = parent
|
2009-11-21 23:53:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2009-12-15 23:33:31 +00:00
|
|
|
|
pub, ok := certs[0].PublicKey.(*rsa.PublicKey)
|
2009-11-21 23:53:03 +00:00
|
|
|
|
if !ok {
|
2010-04-27 06:19:04 +01:00
|
|
|
|
return c.sendAlert(alertUnsupportedCertificate)
|
2009-11-21 23:53:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2010-07-21 16:36:01 +01:00
|
|
|
|
c.peerCertificates = certs
|
|
|
|
|
|
2010-07-14 15:40:15 +01:00
|
|
|
|
if serverHello.certStatus {
|
|
|
|
|
msg, err = c.readHandshake()
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
cs, ok := msg.(*certificateStatusMsg)
|
|
|
|
|
if !ok {
|
|
|
|
|
return c.sendAlert(alertUnexpectedMessage)
|
|
|
|
|
}
|
|
|
|
|
finishedHash.Write(cs.marshal())
|
|
|
|
|
|
|
|
|
|
if cs.statusType == statusTypeOCSP {
|
|
|
|
|
c.ocspResponse = cs.response
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-04-27 06:19:04 +01:00
|
|
|
|
msg, err = c.readHandshake()
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
2010-08-16 16:22:22 +01:00
|
|
|
|
|
|
|
|
|
transmitCert := false
|
|
|
|
|
certReq, ok := msg.(*certificateRequestMsg)
|
|
|
|
|
if ok {
|
|
|
|
|
// We only accept certificates with RSA keys.
|
|
|
|
|
rsaAvail := false
|
|
|
|
|
for _, certType := range certReq.certificateTypes {
|
|
|
|
|
if certType == certTypeRSASign {
|
|
|
|
|
rsaAvail = true
|
|
|
|
|
break
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// For now, only send a certificate back if the server gives us an
|
|
|
|
|
// empty list of certificateAuthorities.
|
|
|
|
|
//
|
|
|
|
|
// RFC 4346 on the certificateAuthorities field:
|
|
|
|
|
// A list of the distinguished names of acceptable certificate
|
|
|
|
|
// authorities. These distinguished names may specify a desired
|
|
|
|
|
// distinguished name for a root CA or for a subordinate CA; thus,
|
|
|
|
|
// this message can be used to describe both known roots and a
|
|
|
|
|
// desired authorization space. If the certificate_authorities
|
|
|
|
|
// list is empty then the client MAY send any certificate of the
|
|
|
|
|
// appropriate ClientCertificateType, unless there is some
|
|
|
|
|
// external arrangement to the contrary.
|
|
|
|
|
if rsaAvail && len(certReq.certificateAuthorities) == 0 {
|
|
|
|
|
transmitCert = true
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
finishedHash.Write(certReq.marshal())
|
|
|
|
|
|
|
|
|
|
msg, err = c.readHandshake()
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-04-27 06:19:04 +01:00
|
|
|
|
shd, ok := msg.(*serverHelloDoneMsg)
|
2009-11-21 23:53:03 +00:00
|
|
|
|
if !ok {
|
2010-04-27 06:19:04 +01:00
|
|
|
|
return c.sendAlert(alertUnexpectedMessage)
|
2009-11-21 23:53:03 +00:00
|
|
|
|
}
|
2009-12-15 23:33:31 +00:00
|
|
|
|
finishedHash.Write(shd.marshal())
|
2009-11-21 23:53:03 +00:00
|
|
|
|
|
2010-08-16 16:22:22 +01:00
|
|
|
|
var cert *x509.Certificate
|
|
|
|
|
if transmitCert {
|
|
|
|
|
certMsg = new(certificateMsg)
|
|
|
|
|
if len(c.config.Certificates) > 0 {
|
|
|
|
|
cert, err = x509.ParseCertificate(c.config.Certificates[0].Certificate[0])
|
|
|
|
|
if err == nil && cert.PublicKeyAlgorithm == x509.RSA {
|
|
|
|
|
certMsg.certificates = c.config.Certificates[0].Certificate
|
|
|
|
|
} else {
|
|
|
|
|
cert = nil
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
finishedHash.Write(certMsg.marshal())
|
|
|
|
|
c.writeRecord(recordTypeHandshake, certMsg.marshal())
|
|
|
|
|
}
|
|
|
|
|
|
2009-12-15 23:33:31 +00:00
|
|
|
|
ckx := new(clientKeyExchangeMsg)
|
|
|
|
|
preMasterSecret := make([]byte, 48)
|
2010-04-27 06:19:04 +01:00
|
|
|
|
preMasterSecret[0] = byte(hello.vers >> 8)
|
|
|
|
|
preMasterSecret[1] = byte(hello.vers)
|
2010-12-07 21:15:15 +00:00
|
|
|
|
_, err = io.ReadFull(c.config.rand(), preMasterSecret[2:])
|
2009-11-21 23:53:03 +00:00
|
|
|
|
if err != nil {
|
2010-04-27 06:19:04 +01:00
|
|
|
|
return c.sendAlert(alertInternalError)
|
2009-11-21 23:53:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2010-12-07 21:15:15 +00:00
|
|
|
|
ckx.ciphertext, err = rsa.EncryptPKCS1v15(c.config.rand(), pub, preMasterSecret)
|
2009-11-21 23:53:03 +00:00
|
|
|
|
if err != nil {
|
2010-04-27 06:19:04 +01:00
|
|
|
|
return c.sendAlert(alertInternalError)
|
2009-11-21 23:53:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2009-12-15 23:33:31 +00:00
|
|
|
|
finishedHash.Write(ckx.marshal())
|
2010-04-27 06:19:04 +01:00
|
|
|
|
c.writeRecord(recordTypeHandshake, ckx.marshal())
|
2009-11-21 23:53:03 +00:00
|
|
|
|
|
2010-08-16 16:22:22 +01:00
|
|
|
|
if cert != nil {
|
|
|
|
|
certVerify := new(certificateVerifyMsg)
|
|
|
|
|
var digest [36]byte
|
|
|
|
|
copy(digest[0:16], finishedHash.serverMD5.Sum())
|
|
|
|
|
copy(digest[16:36], finishedHash.serverSHA1.Sum())
|
2010-12-07 21:15:15 +00:00
|
|
|
|
signed, err := rsa.SignPKCS1v15(c.config.rand(), c.config.Certificates[0].PrivateKey, rsa.HashMD5SHA1, digest[0:])
|
2010-08-16 16:22:22 +01:00
|
|
|
|
if err != nil {
|
|
|
|
|
return c.sendAlert(alertInternalError)
|
|
|
|
|
}
|
|
|
|
|
certVerify.signature = signed
|
|
|
|
|
|
|
|
|
|
finishedHash.Write(certVerify.marshal())
|
|
|
|
|
c.writeRecord(recordTypeHandshake, certVerify.marshal())
|
|
|
|
|
}
|
|
|
|
|
|
2009-12-15 23:33:31 +00:00
|
|
|
|
suite := cipherSuites[0]
|
2009-11-21 23:53:03 +00:00
|
|
|
|
masterSecret, clientMAC, serverMAC, clientKey, serverKey :=
|
2009-12-15 23:33:31 +00:00
|
|
|
|
keysFromPreMasterSecret11(preMasterSecret, hello.random, serverHello.random, suite.hashLength, suite.cipherKeyLength)
|
2009-11-21 23:53:03 +00:00
|
|
|
|
|
2009-12-15 23:33:31 +00:00
|
|
|
|
cipher, _ := rc4.NewCipher(clientKey)
|
2010-04-27 06:19:04 +01:00
|
|
|
|
|
2010-08-26 18:32:29 +01:00
|
|
|
|
c.out.prepareCipherSpec(cipher, hmac.NewSHA1(clientMAC))
|
2010-04-27 06:19:04 +01:00
|
|
|
|
c.writeRecord(recordTypeChangeCipherSpec, []byte{1})
|
2009-11-21 23:53:03 +00:00
|
|
|
|
|
2009-12-15 23:33:31 +00:00
|
|
|
|
finished := new(finishedMsg)
|
|
|
|
|
finished.verifyData = finishedHash.clientSum(masterSecret)
|
|
|
|
|
finishedHash.Write(finished.marshal())
|
2010-04-27 06:19:04 +01:00
|
|
|
|
c.writeRecord(recordTypeHandshake, finished.marshal())
|
2009-11-21 23:53:03 +00:00
|
|
|
|
|
2009-12-15 23:33:31 +00:00
|
|
|
|
cipher2, _ := rc4.NewCipher(serverKey)
|
2010-08-26 18:32:29 +01:00
|
|
|
|
c.in.prepareCipherSpec(cipher2, hmac.NewSHA1(serverMAC))
|
2010-04-27 06:19:04 +01:00
|
|
|
|
c.readRecord(recordTypeChangeCipherSpec)
|
|
|
|
|
if c.err != nil {
|
|
|
|
|
return c.err
|
|
|
|
|
}
|
2009-11-21 23:53:03 +00:00
|
|
|
|
|
2010-04-27 06:19:04 +01:00
|
|
|
|
msg, err = c.readHandshake()
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
serverFinished, ok := msg.(*finishedMsg)
|
2009-11-21 23:53:03 +00:00
|
|
|
|
if !ok {
|
2010-04-27 06:19:04 +01:00
|
|
|
|
return c.sendAlert(alertUnexpectedMessage)
|
2009-11-21 23:53:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2009-12-15 23:33:31 +00:00
|
|
|
|
verify := finishedHash.serverSum(masterSecret)
|
2009-11-21 23:53:03 +00:00
|
|
|
|
if len(verify) != len(serverFinished.verifyData) ||
|
|
|
|
|
subtle.ConstantTimeCompare(verify, serverFinished.verifyData) != 1 {
|
2010-04-27 06:19:04 +01:00
|
|
|
|
return c.sendAlert(alertHandshakeFailure)
|
2009-11-21 23:53:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2010-04-27 06:19:04 +01:00
|
|
|
|
c.handshakeComplete = true
|
|
|
|
|
c.cipherSuite = TLS_RSA_WITH_RC4_128_SHA
|
|
|
|
|
return nil
|
2009-11-21 23:53:03 +00:00
|
|
|
|
}
|