| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187 |
- // 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 (
- "bytes"
- "context"
- "crypto"
- "crypto/ecdsa"
- "crypto/ed25519"
- "crypto/rsa"
- "crypto/subtle"
- "crypto/x509"
- "errors"
- "fmt"
- "hash"
- "io"
- "net"
- "time"
- )
- // serverHandshakeState contains details of a server handshake in progress.
- // It's discarded once the handshake has completed.
- type serverHandshakeState struct {
- c *Conn
- ctx context.Context
- clientHello *clientHelloMsg
- hello *serverHelloMsg
- suite *cipherSuite
- ecdheOk bool
- ecSignOk bool
- rsaDecryptOk bool
- rsaSignOk bool
- sessionState *SessionState
- finishedHash finishedHash
- masterSecret []byte
- cert *Certificate
- }
- // serverHandshake performs a TLS handshake as a server.
- func (c *Conn) serverHandshake(ctx context.Context) error {
- clientHello, err := c.readClientHello(ctx)
- // [Psiphon]
- // The ClientHello with the passthrough message is now available. Route the
- // client to passthrough based on message inspection. This code assumes the
- // client TCP conn has been wrapped with recorderConn, which has recorded
- // all bytes sent by the client, which will be replayed, byte-for-byte, to
- // the passthrough; as a result, passthrough clients will perform their TLS
- // handshake with the passthrough target, receive its certificate, and in the
- // case of HTTPS, receive the passthrough target's HTTP responses.
- //
- // Passthrough is also triggered if readClientHello fails. E.g., on other
- // invalid input cases including "tls: handshake message of length..." or if
- // the ClientHello is otherwise invalid. This ensures that clients sending
- // random data will be relayed to the passthrough and not receive a
- // distinguishing error response.
- //
- // The `tls` API performs handshakes on demand. E.g., the first call to
- // tls.Conn.Read will perform a handshake if it's not yet been performed.
- // Consumers such as `http` may call Read and then Close. To minimize code
- // changes, in the passthrough case the ownership of Conn.conn, the client
- // TCP conn, is transferred to the passthrough relay and a closedConn is
- // substituted for Conn.conn. This allows the remaining `tls` code paths to
- // continue reference a net.Conn, albeit one that is closed, so Reads and
- // Writes will fail.
- if c.config.PassthroughAddress != "" {
- doPassthrough := false
- if err != nil {
- doPassthrough = true
- err = fmt.Errorf("passthrough: %s", err)
- }
- clientAddr := c.conn.RemoteAddr().String()
- clientIP, _, _ := net.SplitHostPort(clientAddr)
- if !doPassthrough {
- if !c.config.PassthroughVerifyMessage(clientHello.random) {
- c.config.PassthroughLogInvalidMessage(clientIP)
- doPassthrough = true
- err = errors.New("passthrough: invalid client random")
- }
- }
- if !doPassthrough {
- if !c.config.PassthroughHistoryAddNew(
- clientIP, clientHello.random) {
- doPassthrough = true
- err = errors.New("passthrough: duplicate client random")
- }
- }
- // Call GetReadBuffer, in both passthrough and non-passthrough cases, to
- // stop buffering all read bytes.
- passthroughReadBuffer := c.conn.(*recorderConn).GetReadBuffer().Bytes()
- if doPassthrough {
- // When performing passthrough, we must exit at the "return err" below.
- // This is a failsafe to ensure err is always set.
- if err == nil {
- err = errors.New("passthrough: missing error")
- }
- // Modifying c.conn directly is safe only because Conn.Handshake, which
- // calls Conn.serverHandshake, is holding c.handshakeMutex and c.in locks,
- // and because of the serial nature of c.conn access during the handshake
- // sequence.
- conn := c.conn
- c.conn = newClosedConn(conn)
- go func() {
- // Perform the passthrough relay.
- //
- // Limitations:
- //
- // - The local TCP stack may differ from passthrough target in a
- // detectable way.
- //
- // - There may be detectable timing characteristics due to the network hop
- // to the passthrough target.
- //
- // - Application-level socket operations may produce detectable
- // differences (e.g., CloseWrite/FIN).
- //
- // - The dial to the passthrough, or other upstream network operations,
- // may fail. These errors are not logged.
- //
- // - There's no timeout on the passthrough dial and no time limit on the
- // passthrough relay so that the invalid client can't detect a timeout
- // shorter than the passthrough target; this may cause additional load.
- defer conn.Close()
- // Remove any pre-existing deadlines to ensure the passthrough
- // is not interrupted.
- _ = conn.SetDeadline(time.Time{})
- passthroughConn, err := net.Dial("tcp", c.config.PassthroughAddress)
- if err != nil {
- return
- }
- defer passthroughConn.Close()
- _, err = passthroughConn.Write(passthroughReadBuffer)
- if err != nil {
- return
- }
- // Allow garbage collection.
- passthroughReadBuffer = nil
- go func() {
- _, _ = io.Copy(passthroughConn, conn)
- passthroughConn.Close()
- }()
- _, _ = io.Copy(conn, passthroughConn)
- }()
- }
- }
- if err != nil {
- return err
- }
- if c.vers == VersionTLS13 {
- hs := serverHandshakeStateTLS13{
- c: c,
- ctx: ctx,
- clientHello: clientHello,
- }
- return hs.handshake()
- }
- hs := serverHandshakeState{
- c: c,
- ctx: ctx,
- clientHello: clientHello,
- }
- return hs.handshake()
- }
- func (hs *serverHandshakeState) handshake() error {
- c := hs.c
- if err := hs.processClientHello(); err != nil {
- return err
- }
- // For an overview of TLS handshaking, see RFC 5246, Section 7.3.
- c.buffering = true
- if err := hs.checkForResumption(); err != nil {
- return err
- }
- if hs.sessionState != nil {
- // The client has included a session ticket and so we do an abbreviated handshake.
- if err := hs.doResumeHandshake(); err != nil {
- return err
- }
- if err := hs.establishKeys(); err != nil {
- return err
- }
- if err := hs.sendSessionTicket(); err != nil {
- return err
- }
- if err := hs.sendFinished(c.serverFinished[:]); err != nil {
- return err
- }
- if _, err := c.flush(); err != nil {
- return err
- }
- c.clientFinishedIsFirst = false
- if err := hs.readFinished(nil); err != nil {
- return err
- }
- } else {
- // The client didn't include a session ticket, or it wasn't
- // valid so we do a full handshake.
- if err := hs.pickCipherSuite(); err != nil {
- return err
- }
- if err := hs.doFullHandshake(); err != nil {
- return err
- }
- if err := hs.establishKeys(); err != nil {
- return err
- }
- if err := hs.readFinished(c.clientFinished[:]); err != nil {
- return err
- }
- c.clientFinishedIsFirst = true
- c.buffering = true
- if err := hs.sendSessionTicket(); err != nil {
- return err
- }
- if err := hs.sendFinished(nil); err != nil {
- return err
- }
- if _, err := c.flush(); err != nil {
- return err
- }
- }
- c.ekm = ekmFromMasterSecret(c.vers, hs.suite, hs.masterSecret, hs.clientHello.random, hs.hello.random)
- c.isHandshakeComplete.Store(true)
- return nil
- }
- // [Psiphon]
- // recorderConn is a net.Conn which records all bytes read from the wrapped
- // conn until GetReadBuffer is called, which returns the buffered bytes and
- // stops recording. This is used to replay, byte-for-byte, the bytes sent by a
- // client when switching to passthrough.
- //
- // recorderConn operations are not safe for concurrent use and intended only
- // to be used in the initial phase of the TLS handshake, where the order of
- // operations is deterministic.
- type recorderConn struct {
- net.Conn
- readBuffer *bytes.Buffer
- }
- func newRecorderConn(conn net.Conn) *recorderConn {
- return &recorderConn{
- Conn: conn,
- readBuffer: new(bytes.Buffer),
- }
- }
- func (c *recorderConn) Read(p []byte) (n int, err error) {
- n, err = c.Conn.Read(p)
- if n > 0 && c.readBuffer != nil {
- _, _ = c.readBuffer.Write(p[:n])
- }
- return n, err
- }
- func (c *recorderConn) GetReadBuffer() *bytes.Buffer {
- b := c.readBuffer
- c.readBuffer = nil
- return b
- }
- func (c *recorderConn) IsRecording() bool {
- return c.readBuffer != nil
- }
- // [Psiphon]
- // closedConn is a net.Conn which behaves as if it were closed: all reads and
- // writes fail. This is used when switching to passthrough mode: ownership of
- // the invalid client conn is taken by the passthrough relay and a closedConn
- // replaces the network conn used by the local TLS server code path.
- type closedConn struct {
- localAddr net.Addr
- remoteAddr net.Addr
- }
- var closedClosedError = errors.New("closed")
- func newClosedConn(conn net.Conn) *closedConn {
- return &closedConn{
- localAddr: conn.LocalAddr(),
- remoteAddr: conn.RemoteAddr(),
- }
- }
- func (c *closedConn) Read(_ []byte) (int, error) {
- return 0, closedClosedError
- }
- func (c *closedConn) Write(_ []byte) (int, error) {
- return 0, closedClosedError
- }
- func (c *closedConn) Close() error {
- return nil
- }
- func (c *closedConn) LocalAddr() net.Addr {
- return c.localAddr
- }
- func (c *closedConn) RemoteAddr() net.Addr {
- return c.remoteAddr
- }
- func (c *closedConn) SetDeadline(_ time.Time) error {
- return closedClosedError
- }
- func (c *closedConn) SetReadDeadline(_ time.Time) error {
- return closedClosedError
- }
- func (c *closedConn) SetWriteDeadline(_ time.Time) error {
- return closedClosedError
- }
- // readClientHello reads a ClientHello message and selects the protocol version.
- func (c *Conn) readClientHello(ctx context.Context) (*clientHelloMsg, error) {
- // clientHelloMsg is included in the transcript, but we haven't initialized
- // it yet. The respective handshake functions will record it themselves.
- msg, err := c.readHandshake(nil)
- if err != nil {
- return nil, err
- }
- clientHello, ok := msg.(*clientHelloMsg)
- if !ok {
- c.sendAlert(alertUnexpectedMessage)
- return nil, unexpectedMessageError(clientHello, msg)
- }
- var configForClient *Config
- originalConfig := c.config
- if c.config.GetConfigForClient != nil {
- chi := clientHelloInfo(ctx, c, clientHello)
- if configForClient, err = c.config.GetConfigForClient(chi); err != nil {
- c.sendAlert(alertInternalError)
- return nil, err
- } else if configForClient != nil {
- c.config = configForClient
- }
- }
- c.ticketKeys = originalConfig.ticketKeys(configForClient)
- clientVersions := clientHello.supportedVersions
- if len(clientHello.supportedVersions) == 0 {
- clientVersions = supportedVersionsFromMax(clientHello.vers)
- }
- c.vers, ok = c.config.mutualVersion(roleServer, clientVersions)
- if !ok {
- c.sendAlert(alertProtocolVersion)
- return nil, fmt.Errorf("tls: client offered only unsupported versions: %x", clientVersions)
- }
- c.haveVers = true
- c.in.version = c.vers
- c.out.version = c.vers
- return clientHello, nil
- }
- func (hs *serverHandshakeState) processClientHello() error {
- c := hs.c
- hs.hello = new(serverHelloMsg)
- hs.hello.vers = c.vers
- foundCompression := false
- // We only support null compression, so check that the client offered it.
- for _, compression := range hs.clientHello.compressionMethods {
- if compression == compressionNone {
- foundCompression = true
- break
- }
- }
- if !foundCompression {
- c.sendAlert(alertHandshakeFailure)
- return errors.New("tls: client does not support uncompressed connections")
- }
- hs.hello.random = make([]byte, 32)
- serverRandom := hs.hello.random
- // Downgrade protection canaries. See RFC 8446, Section 4.1.3.
- maxVers := c.config.maxSupportedVersion(roleServer)
- if maxVers >= VersionTLS12 && c.vers < maxVers || testingOnlyForceDowngradeCanary {
- if c.vers == VersionTLS12 {
- copy(serverRandom[24:], downgradeCanaryTLS12)
- } else {
- copy(serverRandom[24:], downgradeCanaryTLS11)
- }
- serverRandom = serverRandom[:24]
- }
- _, err := io.ReadFull(c.config.rand(), serverRandom)
- if err != nil {
- c.sendAlert(alertInternalError)
- return err
- }
- if len(hs.clientHello.secureRenegotiation) != 0 {
- c.sendAlert(alertHandshakeFailure)
- return errors.New("tls: initial handshake had non-empty renegotiation extension")
- }
- hs.hello.extendedMasterSecret = hs.clientHello.extendedMasterSecret
- hs.hello.secureRenegotiationSupported = hs.clientHello.secureRenegotiationSupported
- hs.hello.compressionMethod = compressionNone
- if len(hs.clientHello.serverName) > 0 {
- c.serverName = hs.clientHello.serverName
- }
- selectedProto, err := negotiateALPN(c.config.NextProtos, hs.clientHello.alpnProtocols, false)
- if err != nil {
- c.sendAlert(alertNoApplicationProtocol)
- return err
- }
- hs.hello.alpnProtocol = selectedProto
- c.clientProtocol = selectedProto
- hs.cert, err = c.config.getCertificate(clientHelloInfo(hs.ctx, c, hs.clientHello))
- if err != nil {
- if err == errNoCertificates {
- c.sendAlert(alertUnrecognizedName)
- } else {
- c.sendAlert(alertInternalError)
- }
- return err
- }
- if hs.clientHello.scts {
- hs.hello.scts = hs.cert.SignedCertificateTimestamps
- }
- hs.ecdheOk = supportsECDHE(c.config, hs.clientHello.supportedCurves, hs.clientHello.supportedPoints)
- if hs.ecdheOk && len(hs.clientHello.supportedPoints) > 0 {
- // Although omitting the ec_point_formats extension is permitted, some
- // old OpenSSL version will refuse to handshake if not present.
- //
- // Per RFC 4492, section 5.1.2, implementations MUST support the
- // uncompressed point format. See golang.org/issue/31943.
- hs.hello.supportedPoints = []uint8{pointFormatUncompressed}
- }
- if priv, ok := hs.cert.PrivateKey.(crypto.Signer); ok {
- switch priv.Public().(type) {
- case *ecdsa.PublicKey:
- hs.ecSignOk = true
- case ed25519.PublicKey:
- hs.ecSignOk = true
- case *rsa.PublicKey:
- hs.rsaSignOk = true
- default:
- c.sendAlert(alertInternalError)
- return fmt.Errorf("tls: unsupported signing key type (%T)", priv.Public())
- }
- }
- if priv, ok := hs.cert.PrivateKey.(crypto.Decrypter); ok {
- switch priv.Public().(type) {
- case *rsa.PublicKey:
- hs.rsaDecryptOk = true
- default:
- c.sendAlert(alertInternalError)
- return fmt.Errorf("tls: unsupported decryption key type (%T)", priv.Public())
- }
- }
- return nil
- }
- // negotiateALPN picks a shared ALPN protocol that both sides support in server
- // preference order. If ALPN is not configured or the peer doesn't support it,
- // it returns "" and no error.
- func negotiateALPN(serverProtos, clientProtos []string, quic bool) (string, error) {
- if len(serverProtos) == 0 || len(clientProtos) == 0 {
- if quic && len(serverProtos) != 0 {
- // RFC 9001, Section 8.1
- return "", fmt.Errorf("tls: client did not request an application protocol")
- }
- return "", nil
- }
- var http11fallback bool
- for _, s := range serverProtos {
- for _, c := range clientProtos {
- if s == c {
- return s, nil
- }
- if s == "h2" && c == "http/1.1" {
- http11fallback = true
- }
- }
- }
- // As a special case, let http/1.1 clients connect to h2 servers as if they
- // didn't support ALPN. We used not to enforce protocol overlap, so over
- // time a number of HTTP servers were configured with only "h2", but
- // expected to accept connections from "http/1.1" clients. See Issue 46310.
- if http11fallback {
- return "", nil
- }
- return "", fmt.Errorf("tls: client requested unsupported application protocols (%s)", clientProtos)
- }
- // supportsECDHE returns whether ECDHE key exchanges can be used with this
- // pre-TLS 1.3 client.
- func supportsECDHE(c *Config, supportedCurves []CurveID, supportedPoints []uint8) bool {
- supportsCurve := false
- for _, curve := range supportedCurves {
- if c.supportsCurve(curve) {
- supportsCurve = true
- break
- }
- }
- supportsPointFormat := false
- for _, pointFormat := range supportedPoints {
- if pointFormat == pointFormatUncompressed {
- supportsPointFormat = true
- break
- }
- }
- // Per RFC 8422, Section 5.1.2, if the Supported Point Formats extension is
- // missing, uncompressed points are supported. If supportedPoints is empty,
- // the extension must be missing, as an empty extension body is rejected by
- // the parser. See https://go.dev/issue/49126.
- if len(supportedPoints) == 0 {
- supportsPointFormat = true
- }
- return supportsCurve && supportsPointFormat
- }
- func (hs *serverHandshakeState) pickCipherSuite() error {
- c := hs.c
- preferenceOrder := cipherSuitesPreferenceOrder
- if !hasAESGCMHardwareSupport || !aesgcmPreferred(hs.clientHello.cipherSuites) {
- preferenceOrder = cipherSuitesPreferenceOrderNoAES
- }
- configCipherSuites := c.config.cipherSuites()
- preferenceList := make([]uint16, 0, len(configCipherSuites))
- for _, suiteID := range preferenceOrder {
- for _, id := range configCipherSuites {
- if id == suiteID {
- preferenceList = append(preferenceList, id)
- break
- }
- }
- }
- hs.suite = selectCipherSuite(preferenceList, hs.clientHello.cipherSuites, hs.cipherSuiteOk)
- if hs.suite == nil {
- c.sendAlert(alertHandshakeFailure)
- return errors.New("tls: no cipher suite supported by both client and server")
- }
- c.cipherSuite = hs.suite.id
- for _, id := range hs.clientHello.cipherSuites {
- if id == TLS_FALLBACK_SCSV {
- // The client is doing a fallback connection. See RFC 7507.
- if hs.clientHello.vers < c.config.maxSupportedVersion(roleServer) {
- c.sendAlert(alertInappropriateFallback)
- return errors.New("tls: client using inappropriate protocol fallback")
- }
- break
- }
- }
- return nil
- }
- func (hs *serverHandshakeState) cipherSuiteOk(c *cipherSuite) bool {
- if c.flags&suiteECDHE != 0 {
- if !hs.ecdheOk {
- return false
- }
- if c.flags&suiteECSign != 0 {
- if !hs.ecSignOk {
- return false
- }
- } else if !hs.rsaSignOk {
- return false
- }
- } else if !hs.rsaDecryptOk {
- return false
- }
- if hs.c.vers < VersionTLS12 && c.flags&suiteTLS12 != 0 {
- return false
- }
- return true
- }
- // checkForResumption reports whether we should perform resumption on this connection.
- func (hs *serverHandshakeState) checkForResumption() error {
- c := hs.c
- if c.config.SessionTicketsDisabled {
- return nil
- }
- var sessionState *SessionState
- if c.config.UnwrapSession != nil {
- ss, err := c.config.UnwrapSession(hs.clientHello.sessionTicket, c.connectionStateLocked())
- if err != nil {
- return err
- }
- if ss == nil {
- return nil
- }
- sessionState = ss
- } else {
- plaintext := c.config.decryptTicket(hs.clientHello.sessionTicket, c.ticketKeys)
- if plaintext == nil {
- return nil
- }
- ss, err := ParseSessionState(plaintext)
- if err != nil {
- return nil
- }
- sessionState = ss
- }
- // TLS 1.2 tickets don't natively have a lifetime, but we want to avoid
- // re-wrapping the same master secret in different tickets over and over for
- // too long, weakening forward secrecy.
- createdAt := time.Unix(int64(sessionState.createdAt), 0)
- if c.config.time().Sub(createdAt) > maxSessionTicketLifetime {
- return nil
- }
- // Never resume a session for a different TLS version.
- if c.vers != sessionState.version {
- return nil
- }
- cipherSuiteOk := false
- // Check that the client is still offering the ciphersuite in the session.
- for _, id := range hs.clientHello.cipherSuites {
- if id == sessionState.cipherSuite {
- cipherSuiteOk = true
- break
- }
- }
- if !cipherSuiteOk {
- return nil
- }
- // Check that we also support the ciphersuite from the session.
- suite := selectCipherSuite([]uint16{sessionState.cipherSuite},
- c.config.cipherSuites(), hs.cipherSuiteOk)
- if suite == nil {
- return nil
- }
- sessionHasClientCerts := len(sessionState.peerCertificates) != 0
- needClientCerts := requiresClientCert(c.config.ClientAuth)
- if needClientCerts && !sessionHasClientCerts {
- return nil
- }
- if sessionHasClientCerts && c.config.ClientAuth == NoClientCert {
- return nil
- }
- if sessionHasClientCerts && c.config.time().After(sessionState.peerCertificates[0].NotAfter) {
- return nil
- }
- if sessionHasClientCerts && c.config.ClientAuth >= VerifyClientCertIfGiven &&
- len(sessionState.verifiedChains) == 0 {
- return nil
- }
- // RFC 7627, Section 5.3
- if !sessionState.extMasterSecret && hs.clientHello.extendedMasterSecret {
- return nil
- }
- // [Psiphon]
- // When using obfuscated session tickets, the client-generated session ticket
- // state never uses EMS. ClientHellos vary in EMS support. So, in this mode,
- // skip this check to ensure the obfuscated session tickets are not
- // rejected.
- if !c.config.UseObfuscatedSessionTickets {
- if !sessionState.extMasterSecret && hs.clientHello.extendedMasterSecret {
- return nil
- }
- }
- if sessionState.extMasterSecret && !hs.clientHello.extendedMasterSecret {
- // Aborting is somewhat harsh, but it's a MUST and it would indicate a
- // weird downgrade in client capabilities.
- return errors.New("tls: session supported extended_master_secret but client does not")
- }
- c.peerCertificates = sessionState.peerCertificates
- c.ocspResponse = sessionState.ocspResponse
- c.scts = sessionState.scts
- c.verifiedChains = sessionState.verifiedChains
- c.extMasterSecret = sessionState.extMasterSecret
- hs.sessionState = sessionState
- hs.suite = suite
- c.didResume = true
- return nil
- }
- func (hs *serverHandshakeState) doResumeHandshake() error {
- c := hs.c
- hs.hello.cipherSuite = hs.suite.id
- c.cipherSuite = hs.suite.id
- // We echo the client's session ID in the ServerHello to let it know
- // that we're doing a resumption.
- hs.hello.sessionId = hs.clientHello.sessionId
- // We always send a new session ticket, even if it wraps the same master
- // secret and it's potentially encrypted with the same key, to help the
- // client avoid cross-connection tracking from a network observer.
- hs.hello.ticketSupported = true
- hs.finishedHash = newFinishedHash(c.vers, hs.suite)
- hs.finishedHash.discardHandshakeBuffer()
- if err := transcriptMsg(hs.clientHello, &hs.finishedHash); err != nil {
- return err
- }
- if _, err := hs.c.writeHandshakeRecord(hs.hello, &hs.finishedHash); err != nil {
- return err
- }
- if c.config.VerifyConnection != nil {
- if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {
- c.sendAlert(alertBadCertificate)
- return err
- }
- }
- hs.masterSecret = hs.sessionState.secret
- return nil
- }
- func (hs *serverHandshakeState) doFullHandshake() error {
- c := hs.c
- if hs.clientHello.ocspStapling && len(hs.cert.OCSPStaple) > 0 {
- hs.hello.ocspStapling = true
- }
- hs.hello.ticketSupported = hs.clientHello.ticketSupported && !c.config.SessionTicketsDisabled
- hs.hello.cipherSuite = hs.suite.id
- hs.finishedHash = newFinishedHash(hs.c.vers, hs.suite)
- if c.config.ClientAuth == NoClientCert {
- // No need to keep a full record of the handshake if client
- // certificates won't be used.
- hs.finishedHash.discardHandshakeBuffer()
- }
- if err := transcriptMsg(hs.clientHello, &hs.finishedHash); err != nil {
- return err
- }
- if _, err := hs.c.writeHandshakeRecord(hs.hello, &hs.finishedHash); err != nil {
- return err
- }
- certMsg := new(certificateMsg)
- certMsg.certificates = hs.cert.Certificate
- if _, err := hs.c.writeHandshakeRecord(certMsg, &hs.finishedHash); err != nil {
- return err
- }
- if hs.hello.ocspStapling {
- certStatus := new(certificateStatusMsg)
- certStatus.response = hs.cert.OCSPStaple
- if _, err := hs.c.writeHandshakeRecord(certStatus, &hs.finishedHash); err != nil {
- return err
- }
- }
- keyAgreement := hs.suite.ka(c.vers)
- skx, err := keyAgreement.generateServerKeyExchange(c.config, hs.cert, hs.clientHello, hs.hello)
- if err != nil {
- c.sendAlert(alertHandshakeFailure)
- return err
- }
- if skx != nil {
- if _, err := hs.c.writeHandshakeRecord(skx, &hs.finishedHash); err != nil {
- return err
- }
- }
- var certReq *certificateRequestMsg
- if c.config.ClientAuth >= RequestClientCert {
- // Request a client certificate
- certReq = new(certificateRequestMsg)
- certReq.certificateTypes = []byte{
- byte(certTypeRSASign),
- byte(certTypeECDSASign),
- }
- if c.vers >= VersionTLS12 {
- certReq.hasSignatureAlgorithm = true
- certReq.supportedSignatureAlgorithms = supportedSignatureAlgorithms()
- }
- // An empty list of certificateAuthorities signals to
- // the client that it may send any certificate in response
- // to our request. When we know the CAs we trust, then
- // we can send them down, so that the client can choose
- // an appropriate certificate to give to us.
- if c.config.ClientCAs != nil {
- certReq.certificateAuthorities = c.config.ClientCAs.Subjects()
- }
- if _, err := hs.c.writeHandshakeRecord(certReq, &hs.finishedHash); err != nil {
- return err
- }
- }
- helloDone := new(serverHelloDoneMsg)
- if _, err := hs.c.writeHandshakeRecord(helloDone, &hs.finishedHash); err != nil {
- return err
- }
- if _, err := c.flush(); err != nil {
- return err
- }
- var pub crypto.PublicKey // public key for client auth, if any
- msg, err := c.readHandshake(&hs.finishedHash)
- if err != nil {
- return err
- }
- // If we requested a client certificate, then the client must send a
- // certificate message, even if it's empty.
- if c.config.ClientAuth >= RequestClientCert {
- certMsg, ok := msg.(*certificateMsg)
- if !ok {
- c.sendAlert(alertUnexpectedMessage)
- return unexpectedMessageError(certMsg, msg)
- }
- if err := c.processCertsFromClient(Certificate{
- Certificate: certMsg.certificates,
- }); err != nil {
- return err
- }
- if len(certMsg.certificates) != 0 {
- pub = c.peerCertificates[0].PublicKey
- }
- msg, err = c.readHandshake(&hs.finishedHash)
- if err != nil {
- return err
- }
- }
- if c.config.VerifyConnection != nil {
- if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {
- c.sendAlert(alertBadCertificate)
- return err
- }
- }
- // Get client key exchange
- ckx, ok := msg.(*clientKeyExchangeMsg)
- if !ok {
- c.sendAlert(alertUnexpectedMessage)
- return unexpectedMessageError(ckx, msg)
- }
- preMasterSecret, err := keyAgreement.processClientKeyExchange(c.config, hs.cert, ckx, c.vers)
- if err != nil {
- c.sendAlert(alertHandshakeFailure)
- return err
- }
- if hs.hello.extendedMasterSecret {
- c.extMasterSecret = true
- hs.masterSecret = extMasterFromPreMasterSecret(c.vers, hs.suite, preMasterSecret,
- hs.finishedHash.Sum())
- } else {
- hs.masterSecret = masterFromPreMasterSecret(c.vers, hs.suite, preMasterSecret,
- hs.clientHello.random, hs.hello.random)
- }
- if err := c.config.writeKeyLog(keyLogLabelTLS12, hs.clientHello.random, hs.masterSecret); err != nil {
- c.sendAlert(alertInternalError)
- return err
- }
- // If we received a client cert in response to our certificate request message,
- // the client will send us a certificateVerifyMsg immediately after the
- // clientKeyExchangeMsg. This message is a digest of all preceding
- // handshake-layer messages that is signed using the private key corresponding
- // to the client's certificate. This allows us to verify that the client is in
- // possession of the private key of the certificate.
- if len(c.peerCertificates) > 0 {
- // certificateVerifyMsg is included in the transcript, but not until
- // after we verify the handshake signature, since the state before
- // this message was sent is used.
- msg, err = c.readHandshake(nil)
- if err != nil {
- return err
- }
- certVerify, ok := msg.(*certificateVerifyMsg)
- if !ok {
- c.sendAlert(alertUnexpectedMessage)
- return unexpectedMessageError(certVerify, msg)
- }
- var sigType uint8
- var sigHash crypto.Hash
- if c.vers >= VersionTLS12 {
- if !isSupportedSignatureAlgorithm(certVerify.signatureAlgorithm, certReq.supportedSignatureAlgorithms) {
- c.sendAlert(alertIllegalParameter)
- return errors.New("tls: client certificate used with invalid signature algorithm")
- }
- sigType, sigHash, err = typeAndHashFromSignatureScheme(certVerify.signatureAlgorithm)
- if err != nil {
- return c.sendAlert(alertInternalError)
- }
- } else {
- sigType, sigHash, err = legacyTypeAndHashFromPublicKey(pub)
- if err != nil {
- c.sendAlert(alertIllegalParameter)
- return err
- }
- }
- signed := hs.finishedHash.hashForClientCertificate(sigType, sigHash)
- if err := verifyHandshakeSignature(sigType, pub, sigHash, signed, certVerify.signature); err != nil {
- c.sendAlert(alertDecryptError)
- return errors.New("tls: invalid signature by the client certificate: " + err.Error())
- }
- if err := transcriptMsg(certVerify, &hs.finishedHash); err != nil {
- return err
- }
- }
- hs.finishedHash.discardHandshakeBuffer()
- return nil
- }
- func (hs *serverHandshakeState) establishKeys() error {
- c := hs.c
- clientMAC, serverMAC, clientKey, serverKey, clientIV, serverIV :=
- keysFromMasterSecret(c.vers, hs.suite, hs.masterSecret, hs.clientHello.random, hs.hello.random, hs.suite.macLen, hs.suite.keyLen, hs.suite.ivLen)
- var clientCipher, serverCipher any
- var clientHash, serverHash hash.Hash
- if hs.suite.aead == nil {
- clientCipher = hs.suite.cipher(clientKey, clientIV, true /* for reading */)
- clientHash = hs.suite.mac(clientMAC)
- serverCipher = hs.suite.cipher(serverKey, serverIV, false /* not for reading */)
- serverHash = hs.suite.mac(serverMAC)
- } else {
- clientCipher = hs.suite.aead(clientKey, clientIV)
- serverCipher = hs.suite.aead(serverKey, serverIV)
- }
- c.in.prepareCipherSpec(c.vers, clientCipher, clientHash)
- c.out.prepareCipherSpec(c.vers, serverCipher, serverHash)
- return nil
- }
- func (hs *serverHandshakeState) readFinished(out []byte) error {
- c := hs.c
- if err := c.readChangeCipherSpec(); err != nil {
- return err
- }
- // finishedMsg is included in the transcript, but not until after we
- // check the client version, since the state before this message was
- // sent is used during verification.
- msg, err := c.readHandshake(nil)
- if err != nil {
- return err
- }
- clientFinished, ok := msg.(*finishedMsg)
- if !ok {
- c.sendAlert(alertUnexpectedMessage)
- return unexpectedMessageError(clientFinished, msg)
- }
- verify := hs.finishedHash.clientSum(hs.masterSecret)
- if len(verify) != len(clientFinished.verifyData) ||
- subtle.ConstantTimeCompare(verify, clientFinished.verifyData) != 1 {
- c.sendAlert(alertHandshakeFailure)
- return errors.New("tls: client's Finished message is incorrect")
- }
- if err := transcriptMsg(clientFinished, &hs.finishedHash); err != nil {
- return err
- }
- copy(out, verify)
- return nil
- }
- func (hs *serverHandshakeState) sendSessionTicket() error {
- if !hs.hello.ticketSupported {
- return nil
- }
- c := hs.c
- m := new(newSessionTicketMsg)
- state, err := c.sessionState()
- if err != nil {
- return err
- }
- state.secret = hs.masterSecret
- if hs.sessionState != nil {
- // If this is re-wrapping an old key, then keep
- // the original time it was created.
- state.createdAt = hs.sessionState.createdAt
- }
- if c.config.WrapSession != nil {
- m.ticket, err = c.config.WrapSession(c.connectionStateLocked(), state)
- if err != nil {
- return err
- }
- } else {
- stateBytes, err := state.Bytes()
- if err != nil {
- return err
- }
- m.ticket, err = c.config.encryptTicket(stateBytes, c.ticketKeys)
- if err != nil {
- return err
- }
- }
- if _, err := hs.c.writeHandshakeRecord(m, &hs.finishedHash); err != nil {
- return err
- }
- return nil
- }
- func (hs *serverHandshakeState) sendFinished(out []byte) error {
- c := hs.c
- if err := c.writeChangeCipherRecord(); err != nil {
- return err
- }
- finished := new(finishedMsg)
- finished.verifyData = hs.finishedHash.serverSum(hs.masterSecret)
- if _, err := hs.c.writeHandshakeRecord(finished, &hs.finishedHash); err != nil {
- return err
- }
- copy(out, finished.verifyData)
- return nil
- }
- // processCertsFromClient takes a chain of client certificates either from a
- // Certificates message and verifies them.
- func (c *Conn) processCertsFromClient(certificate Certificate) error {
- certificates := certificate.Certificate
- certs := make([]*x509.Certificate, len(certificates))
- var err error
- for i, asn1Data := range certificates {
- if certs[i], err = x509.ParseCertificate(asn1Data); err != nil {
- c.sendAlert(alertBadCertificate)
- return errors.New("tls: failed to parse client certificate: " + err.Error())
- }
- if certs[i].PublicKeyAlgorithm == x509.RSA {
- n := certs[i].PublicKey.(*rsa.PublicKey).N.BitLen()
- if max, ok := checkKeySize(n); !ok {
- c.sendAlert(alertBadCertificate)
- return fmt.Errorf("tls: client sent certificate containing RSA key larger than %d bits", max)
- }
- }
- }
- if len(certs) == 0 && requiresClientCert(c.config.ClientAuth) {
- if c.vers == VersionTLS13 {
- c.sendAlert(alertCertificateRequired)
- } else {
- c.sendAlert(alertBadCertificate)
- }
- return errors.New("tls: client didn't provide a certificate")
- }
- if c.config.ClientAuth >= VerifyClientCertIfGiven && len(certs) > 0 {
- opts := x509.VerifyOptions{
- Roots: c.config.ClientCAs,
- CurrentTime: c.config.time(),
- Intermediates: x509.NewCertPool(),
- KeyUsages: []x509.ExtKeyUsage{x509.ExtKeyUsageClientAuth},
- }
- for _, cert := range certs[1:] {
- opts.Intermediates.AddCert(cert)
- }
- chains, err := certs[0].Verify(opts)
- if err != nil {
- var errCertificateInvalid x509.CertificateInvalidError
- if errors.As(err, &x509.UnknownAuthorityError{}) {
- c.sendAlert(alertUnknownCA)
- } else if errors.As(err, &errCertificateInvalid) && errCertificateInvalid.Reason == x509.Expired {
- c.sendAlert(alertCertificateExpired)
- } else {
- c.sendAlert(alertBadCertificate)
- }
- return &CertificateVerificationError{UnverifiedCertificates: certs, Err: err}
- }
- c.verifiedChains = chains
- }
- c.peerCertificates = certs
- c.ocspResponse = certificate.OCSPStaple
- c.scts = certificate.SignedCertificateTimestamps
- if len(certs) > 0 {
- switch certs[0].PublicKey.(type) {
- case *ecdsa.PublicKey, *rsa.PublicKey, ed25519.PublicKey:
- default:
- c.sendAlert(alertUnsupportedCertificate)
- return fmt.Errorf("tls: client certificate contains an unsupported public key of type %T", certs[0].PublicKey)
- }
- }
- if c.config.VerifyPeerCertificate != nil {
- if err := c.config.VerifyPeerCertificate(certificates, c.verifiedChains); err != nil {
- c.sendAlert(alertBadCertificate)
- return err
- }
- }
- return nil
- }
- func clientHelloInfo(ctx context.Context, c *Conn, clientHello *clientHelloMsg) *ClientHelloInfo {
- supportedVersions := clientHello.supportedVersions
- if len(clientHello.supportedVersions) == 0 {
- supportedVersions = supportedVersionsFromMax(clientHello.vers)
- }
- return &ClientHelloInfo{
- CipherSuites: clientHello.cipherSuites,
- ServerName: clientHello.serverName,
- SupportedCurves: clientHello.supportedCurves,
- SupportedPoints: clientHello.supportedPoints,
- SignatureSchemes: clientHello.supportedSignatureAlgorithms,
- SupportedProtos: clientHello.alpnProtocols,
- SupportedVersions: supportedVersions,
- Conn: c.conn,
- config: c.config,
- ctx: ctx,
- }
- }
|