751062bb0e
Depends on CL 957045, 980043, 1004043. Fixes #715. R=agl1, agl CC=golang-dev https://golang.org/cl/943043
199 lines
5.5 KiB
Go
199 lines
5.5 KiB
Go
// 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
|
|
|
|
// The handshake goroutine reads handshake messages from the record processor
|
|
// and outputs messages to be written on another channel. It updates the record
|
|
// processor with the state of the connection via the control channel. In the
|
|
// case of handshake messages that need synchronous processing (because they
|
|
// affect the handling of the next record) the record processor knows about
|
|
// them and either waits for a control message (Finished) or includes a reply
|
|
// channel in the message (ChangeCipherSpec).
|
|
|
|
import (
|
|
"crypto/hmac"
|
|
"crypto/rc4"
|
|
"crypto/rsa"
|
|
"crypto/sha1"
|
|
"crypto/subtle"
|
|
"io"
|
|
"os"
|
|
)
|
|
|
|
type cipherSuite struct {
|
|
id uint16 // The number of this suite on the wire.
|
|
hashLength, cipherKeyLength int
|
|
// TODO(agl): need a method to create the cipher and hash interfaces.
|
|
}
|
|
|
|
var cipherSuites = []cipherSuite{
|
|
cipherSuite{TLS_RSA_WITH_RC4_128_SHA, 20, 16},
|
|
}
|
|
|
|
func (c *Conn) serverHandshake() os.Error {
|
|
config := c.config
|
|
msg, err := c.readHandshake()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
clientHello, ok := msg.(*clientHelloMsg)
|
|
if !ok {
|
|
return c.sendAlert(alertUnexpectedMessage)
|
|
}
|
|
vers, ok := mutualVersion(clientHello.vers)
|
|
if !ok {
|
|
return c.sendAlert(alertProtocolVersion)
|
|
}
|
|
c.vers = vers
|
|
c.haveVers = true
|
|
|
|
finishedHash := newFinishedHash()
|
|
finishedHash.Write(clientHello.marshal())
|
|
|
|
hello := new(serverHelloMsg)
|
|
|
|
// We only support a single ciphersuite so we look for it in the list
|
|
// of client supported suites.
|
|
//
|
|
// TODO(agl): Add additional cipher suites.
|
|
var suite *cipherSuite
|
|
|
|
for _, id := range clientHello.cipherSuites {
|
|
for _, supported := range cipherSuites {
|
|
if supported.id == id {
|
|
suite = &supported
|
|
break
|
|
}
|
|
}
|
|
}
|
|
|
|
foundCompression := false
|
|
// We only support null compression, so check that the client offered it.
|
|
for _, compression := range clientHello.compressionMethods {
|
|
if compression == compressionNone {
|
|
foundCompression = true
|
|
break
|
|
}
|
|
}
|
|
|
|
if suite == nil || !foundCompression {
|
|
return c.sendAlert(alertHandshakeFailure)
|
|
}
|
|
|
|
hello.vers = vers
|
|
hello.cipherSuite = suite.id
|
|
t := uint32(config.Time())
|
|
hello.random = make([]byte, 32)
|
|
hello.random[0] = byte(t >> 24)
|
|
hello.random[1] = byte(t >> 16)
|
|
hello.random[2] = byte(t >> 8)
|
|
hello.random[3] = byte(t)
|
|
_, err = io.ReadFull(config.Rand, hello.random[4:])
|
|
if err != nil {
|
|
return c.sendAlert(alertInternalError)
|
|
}
|
|
hello.compressionMethod = compressionNone
|
|
if clientHello.nextProtoNeg {
|
|
hello.nextProtoNeg = true
|
|
hello.nextProtos = config.NextProtos
|
|
}
|
|
|
|
finishedHash.Write(hello.marshal())
|
|
c.writeRecord(recordTypeHandshake, hello.marshal())
|
|
|
|
if len(config.Certificates) == 0 {
|
|
return c.sendAlert(alertInternalError)
|
|
}
|
|
|
|
certMsg := new(certificateMsg)
|
|
certMsg.certificates = config.Certificates[0].Certificate
|
|
finishedHash.Write(certMsg.marshal())
|
|
c.writeRecord(recordTypeHandshake, certMsg.marshal())
|
|
|
|
helloDone := new(serverHelloDoneMsg)
|
|
finishedHash.Write(helloDone.marshal())
|
|
c.writeRecord(recordTypeHandshake, helloDone.marshal())
|
|
|
|
msg, err = c.readHandshake()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
ckx, ok := msg.(*clientKeyExchangeMsg)
|
|
if !ok {
|
|
return c.sendAlert(alertUnexpectedMessage)
|
|
}
|
|
finishedHash.Write(ckx.marshal())
|
|
|
|
preMasterSecret := make([]byte, 48)
|
|
_, err = io.ReadFull(config.Rand, preMasterSecret[2:])
|
|
if err != nil {
|
|
return c.sendAlert(alertInternalError)
|
|
}
|
|
|
|
err = rsa.DecryptPKCS1v15SessionKey(config.Rand, config.Certificates[0].PrivateKey, ckx.ciphertext, preMasterSecret)
|
|
if err != nil {
|
|
return c.sendAlert(alertHandshakeFailure)
|
|
}
|
|
// We don't check the version number in the premaster secret. For one,
|
|
// by checking it, we would leak information about the validity of the
|
|
// encrypted pre-master secret. Secondly, it provides only a small
|
|
// benefit against a downgrade attack and some implementations send the
|
|
// wrong version anyway. See the discussion at the end of section
|
|
// 7.4.7.1 of RFC 4346.
|
|
|
|
masterSecret, clientMAC, serverMAC, clientKey, serverKey :=
|
|
keysFromPreMasterSecret11(preMasterSecret, clientHello.random, hello.random, suite.hashLength, suite.cipherKeyLength)
|
|
|
|
cipher, _ := rc4.NewCipher(clientKey)
|
|
c.in.prepareCipherSpec(cipher, hmac.New(sha1.New(), clientMAC))
|
|
c.readRecord(recordTypeChangeCipherSpec)
|
|
if err := c.error(); err != nil {
|
|
return err
|
|
}
|
|
|
|
if hello.nextProtoNeg {
|
|
msg, err = c.readHandshake()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
nextProto, ok := msg.(*nextProtoMsg)
|
|
if !ok {
|
|
return c.sendAlert(alertUnexpectedMessage)
|
|
}
|
|
finishedHash.Write(nextProto.marshal())
|
|
c.clientProtocol = nextProto.proto
|
|
}
|
|
|
|
msg, err = c.readHandshake()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
clientFinished, ok := msg.(*finishedMsg)
|
|
if !ok {
|
|
return c.sendAlert(alertUnexpectedMessage)
|
|
}
|
|
|
|
verify := finishedHash.clientSum(masterSecret)
|
|
if len(verify) != len(clientFinished.verifyData) ||
|
|
subtle.ConstantTimeCompare(verify, clientFinished.verifyData) != 1 {
|
|
return c.sendAlert(alertHandshakeFailure)
|
|
}
|
|
|
|
finishedHash.Write(clientFinished.marshal())
|
|
|
|
cipher2, _ := rc4.NewCipher(serverKey)
|
|
c.out.prepareCipherSpec(cipher2, hmac.New(sha1.New(), serverMAC))
|
|
c.writeRecord(recordTypeChangeCipherSpec, []byte{1})
|
|
|
|
finished := new(finishedMsg)
|
|
finished.verifyData = finishedHash.serverSum(masterSecret)
|
|
c.writeRecord(recordTypeHandshake, finished.marshal())
|
|
|
|
c.handshakeComplete = true
|
|
c.cipherSuite = TLS_RSA_WITH_RC4_128_SHA
|
|
|
|
return nil
|
|
}
|