]> Cypherpunks.ru repositories - gostls13.git/blob - src/crypto/tls/handshake_client_tls13.go
b26992b19ebe6e1edd0fb8dbf7dde32066c8853f
[gostls13.git] / src / crypto / tls / handshake_client_tls13.go
1 // Copyright 2018 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
4
5 package tls
6
7 import (
8         "bytes"
9         "context"
10         "crypto"
11         "crypto/ecdh"
12         "crypto/hmac"
13         "crypto/rsa"
14         "errors"
15         "hash"
16         "time"
17 )
18
19 type clientHandshakeStateTLS13 struct {
20         c           *Conn
21         ctx         context.Context
22         serverHello *serverHelloMsg
23         hello       *clientHelloMsg
24         ecdheKey    *ecdh.PrivateKey
25
26         session     *SessionState
27         earlySecret []byte
28         binderKey   []byte
29
30         certReq       *certificateRequestMsgTLS13
31         usingPSK      bool
32         sentDummyCCS  bool
33         suite         *cipherSuiteTLS13
34         transcript    hash.Hash
35         masterSecret  []byte
36         trafficSecret []byte // client_application_traffic_secret_0
37 }
38
39 // handshake requires hs.c, hs.hello, hs.serverHello, hs.ecdheKey, and,
40 // optionally, hs.session, hs.earlySecret and hs.binderKey to be set.
41 func (hs *clientHandshakeStateTLS13) handshake() error {
42         c := hs.c
43
44         if needFIPS() {
45                 return errors.New("tls: internal error: TLS 1.3 reached in FIPS mode")
46         }
47
48         // The server must not select TLS 1.3 in a renegotiation. See RFC 8446,
49         // sections 4.1.2 and 4.1.3.
50         if c.handshakes > 0 {
51                 c.sendAlert(alertProtocolVersion)
52                 return errors.New("tls: server selected TLS 1.3 in a renegotiation")
53         }
54
55         // Consistency check on the presence of a keyShare and its parameters.
56         if hs.ecdheKey == nil || len(hs.hello.keyShares) != 1 {
57                 return c.sendAlert(alertInternalError)
58         }
59
60         if err := hs.checkServerHelloOrHRR(); err != nil {
61                 return err
62         }
63
64         hs.transcript = hs.suite.hash.New()
65
66         if err := transcriptMsg(hs.hello, hs.transcript); err != nil {
67                 return err
68         }
69
70         if bytes.Equal(hs.serverHello.random, helloRetryRequestRandom) {
71                 if err := hs.sendDummyChangeCipherSpec(); err != nil {
72                         return err
73                 }
74                 if err := hs.processHelloRetryRequest(); err != nil {
75                         return err
76                 }
77         }
78
79         if err := transcriptMsg(hs.serverHello, hs.transcript); err != nil {
80                 return err
81         }
82
83         c.buffering = true
84         if err := hs.processServerHello(); err != nil {
85                 return err
86         }
87         if err := hs.sendDummyChangeCipherSpec(); err != nil {
88                 return err
89         }
90         if err := hs.establishHandshakeKeys(); err != nil {
91                 return err
92         }
93         if err := hs.readServerParameters(); err != nil {
94                 return err
95         }
96         if err := hs.readServerCertificate(); err != nil {
97                 return err
98         }
99         if err := hs.readServerFinished(); err != nil {
100                 return err
101         }
102         if err := hs.sendClientCertificate(); err != nil {
103                 return err
104         }
105         if err := hs.sendClientFinished(); err != nil {
106                 return err
107         }
108         if _, err := c.flush(); err != nil {
109                 return err
110         }
111
112         c.isHandshakeComplete.Store(true)
113
114         return nil
115 }
116
117 // checkServerHelloOrHRR does validity checks that apply to both ServerHello and
118 // HelloRetryRequest messages. It sets hs.suite.
119 func (hs *clientHandshakeStateTLS13) checkServerHelloOrHRR() error {
120         c := hs.c
121
122         if hs.serverHello.supportedVersion == 0 {
123                 c.sendAlert(alertMissingExtension)
124                 return errors.New("tls: server selected TLS 1.3 using the legacy version field")
125         }
126
127         if hs.serverHello.supportedVersion != VersionTLS13 {
128                 c.sendAlert(alertIllegalParameter)
129                 return errors.New("tls: server selected an invalid version after a HelloRetryRequest")
130         }
131
132         if hs.serverHello.vers != VersionTLS12 {
133                 c.sendAlert(alertIllegalParameter)
134                 return errors.New("tls: server sent an incorrect legacy version")
135         }
136
137         if hs.serverHello.ocspStapling ||
138                 hs.serverHello.ticketSupported ||
139                 hs.serverHello.secureRenegotiationSupported ||
140                 len(hs.serverHello.secureRenegotiation) != 0 ||
141                 len(hs.serverHello.alpnProtocol) != 0 ||
142                 len(hs.serverHello.scts) != 0 {
143                 c.sendAlert(alertUnsupportedExtension)
144                 return errors.New("tls: server sent a ServerHello extension forbidden in TLS 1.3")
145         }
146
147         if !bytes.Equal(hs.hello.sessionId, hs.serverHello.sessionId) {
148                 c.sendAlert(alertIllegalParameter)
149                 return errors.New("tls: server did not echo the legacy session ID")
150         }
151
152         if hs.serverHello.compressionMethod != compressionNone {
153                 c.sendAlert(alertIllegalParameter)
154                 return errors.New("tls: server selected unsupported compression format")
155         }
156
157         selectedSuite := mutualCipherSuiteTLS13(hs.hello.cipherSuites, hs.serverHello.cipherSuite)
158         if hs.suite != nil && selectedSuite != hs.suite {
159                 c.sendAlert(alertIllegalParameter)
160                 return errors.New("tls: server changed cipher suite after a HelloRetryRequest")
161         }
162         if selectedSuite == nil {
163                 c.sendAlert(alertIllegalParameter)
164                 return errors.New("tls: server chose an unconfigured cipher suite")
165         }
166         hs.suite = selectedSuite
167         c.cipherSuite = hs.suite.id
168
169         return nil
170 }
171
172 // sendDummyChangeCipherSpec sends a ChangeCipherSpec record for compatibility
173 // with middleboxes that didn't implement TLS correctly. See RFC 8446, Appendix D.4.
174 func (hs *clientHandshakeStateTLS13) sendDummyChangeCipherSpec() error {
175         if hs.c.quic != nil {
176                 return nil
177         }
178         if hs.sentDummyCCS {
179                 return nil
180         }
181         hs.sentDummyCCS = true
182
183         return hs.c.writeChangeCipherRecord()
184 }
185
186 // processHelloRetryRequest handles the HRR in hs.serverHello, modifies and
187 // resends hs.hello, and reads the new ServerHello into hs.serverHello.
188 func (hs *clientHandshakeStateTLS13) processHelloRetryRequest() error {
189         c := hs.c
190
191         // The first ClientHello gets double-hashed into the transcript upon a
192         // HelloRetryRequest. (The idea is that the server might offload transcript
193         // storage to the client in the cookie.) See RFC 8446, Section 4.4.1.
194         chHash := hs.transcript.Sum(nil)
195         hs.transcript.Reset()
196         hs.transcript.Write([]byte{typeMessageHash, 0, 0, uint8(len(chHash))})
197         hs.transcript.Write(chHash)
198         if err := transcriptMsg(hs.serverHello, hs.transcript); err != nil {
199                 return err
200         }
201
202         // The only HelloRetryRequest extensions we support are key_share and
203         // cookie, and clients must abort the handshake if the HRR would not result
204         // in any change in the ClientHello.
205         if hs.serverHello.selectedGroup == 0 && hs.serverHello.cookie == nil {
206                 c.sendAlert(alertIllegalParameter)
207                 return errors.New("tls: server sent an unnecessary HelloRetryRequest message")
208         }
209
210         if hs.serverHello.cookie != nil {
211                 hs.hello.cookie = hs.serverHello.cookie
212         }
213
214         if hs.serverHello.serverShare.group != 0 {
215                 c.sendAlert(alertDecodeError)
216                 return errors.New("tls: received malformed key_share extension")
217         }
218
219         // If the server sent a key_share extension selecting a group, ensure it's
220         // a group we advertised but did not send a key share for, and send a key
221         // share for it this time.
222         if curveID := hs.serverHello.selectedGroup; curveID != 0 {
223                 curveOK := false
224                 for _, id := range hs.hello.supportedCurves {
225                         if id == curveID {
226                                 curveOK = true
227                                 break
228                         }
229                 }
230                 if !curveOK {
231                         c.sendAlert(alertIllegalParameter)
232                         return errors.New("tls: server selected unsupported group")
233                 }
234                 if sentID, _ := curveIDForCurve(hs.ecdheKey.Curve()); sentID == curveID {
235                         c.sendAlert(alertIllegalParameter)
236                         return errors.New("tls: server sent an unnecessary HelloRetryRequest key_share")
237                 }
238                 if _, ok := curveForCurveID(curveID); !ok {
239                         c.sendAlert(alertInternalError)
240                         return errors.New("tls: CurvePreferences includes unsupported curve")
241                 }
242                 key, err := generateECDHEKey(c.config.rand(), curveID)
243                 if err != nil {
244                         c.sendAlert(alertInternalError)
245                         return err
246                 }
247                 hs.ecdheKey = key
248                 hs.hello.keyShares = []keyShare{{group: curveID, data: key.PublicKey().Bytes()}}
249         }
250
251         hs.hello.raw = nil
252         if len(hs.hello.pskIdentities) > 0 {
253                 pskSuite := cipherSuiteTLS13ByID(hs.session.cipherSuite)
254                 if pskSuite == nil {
255                         return c.sendAlert(alertInternalError)
256                 }
257                 if pskSuite.hash == hs.suite.hash {
258                         // Update binders and obfuscated_ticket_age.
259                         ticketAge := c.config.time().Sub(time.Unix(int64(hs.session.createdAt), 0))
260                         hs.hello.pskIdentities[0].obfuscatedTicketAge = uint32(ticketAge/time.Millisecond) + hs.session.ageAdd
261
262                         transcript := hs.suite.hash.New()
263                         transcript.Write([]byte{typeMessageHash, 0, 0, uint8(len(chHash))})
264                         transcript.Write(chHash)
265                         if err := transcriptMsg(hs.serverHello, transcript); err != nil {
266                                 return err
267                         }
268                         helloBytes, err := hs.hello.marshalWithoutBinders()
269                         if err != nil {
270                                 return err
271                         }
272                         transcript.Write(helloBytes)
273                         pskBinders := [][]byte{hs.suite.finishedHash(hs.binderKey, transcript)}
274                         if err := hs.hello.updateBinders(pskBinders); err != nil {
275                                 return err
276                         }
277                 } else {
278                         // Server selected a cipher suite incompatible with the PSK.
279                         hs.hello.pskIdentities = nil
280                         hs.hello.pskBinders = nil
281                 }
282         }
283
284         if _, err := hs.c.writeHandshakeRecord(hs.hello, hs.transcript); err != nil {
285                 return err
286         }
287
288         // serverHelloMsg is not included in the transcript
289         msg, err := c.readHandshake(nil)
290         if err != nil {
291                 return err
292         }
293
294         serverHello, ok := msg.(*serverHelloMsg)
295         if !ok {
296                 c.sendAlert(alertUnexpectedMessage)
297                 return unexpectedMessageError(serverHello, msg)
298         }
299         hs.serverHello = serverHello
300
301         if err := hs.checkServerHelloOrHRR(); err != nil {
302                 return err
303         }
304
305         return nil
306 }
307
308 func (hs *clientHandshakeStateTLS13) processServerHello() error {
309         c := hs.c
310
311         if bytes.Equal(hs.serverHello.random, helloRetryRequestRandom) {
312                 c.sendAlert(alertUnexpectedMessage)
313                 return errors.New("tls: server sent two HelloRetryRequest messages")
314         }
315
316         if len(hs.serverHello.cookie) != 0 {
317                 c.sendAlert(alertUnsupportedExtension)
318                 return errors.New("tls: server sent a cookie in a normal ServerHello")
319         }
320
321         if hs.serverHello.selectedGroup != 0 {
322                 c.sendAlert(alertDecodeError)
323                 return errors.New("tls: malformed key_share extension")
324         }
325
326         if hs.serverHello.serverShare.group == 0 {
327                 c.sendAlert(alertIllegalParameter)
328                 return errors.New("tls: server did not send a key share")
329         }
330         if sentID, _ := curveIDForCurve(hs.ecdheKey.Curve()); hs.serverHello.serverShare.group != sentID {
331                 c.sendAlert(alertIllegalParameter)
332                 return errors.New("tls: server selected unsupported group")
333         }
334
335         if !hs.serverHello.selectedIdentityPresent {
336                 return nil
337         }
338
339         if int(hs.serverHello.selectedIdentity) >= len(hs.hello.pskIdentities) {
340                 c.sendAlert(alertIllegalParameter)
341                 return errors.New("tls: server selected an invalid PSK")
342         }
343
344         if len(hs.hello.pskIdentities) != 1 || hs.session == nil {
345                 return c.sendAlert(alertInternalError)
346         }
347         pskSuite := cipherSuiteTLS13ByID(hs.session.cipherSuite)
348         if pskSuite == nil {
349                 return c.sendAlert(alertInternalError)
350         }
351         if pskSuite.hash != hs.suite.hash {
352                 c.sendAlert(alertIllegalParameter)
353                 return errors.New("tls: server selected an invalid PSK and cipher suite pair")
354         }
355
356         hs.usingPSK = true
357         c.didResume = true
358         c.peerCertificates = hs.session.peerCertificates
359         c.activeCertHandles = hs.session.activeCertHandles
360         c.verifiedChains = hs.session.verifiedChains
361         c.ocspResponse = hs.session.ocspResponse
362         c.scts = hs.session.scts
363         return nil
364 }
365
366 func (hs *clientHandshakeStateTLS13) establishHandshakeKeys() error {
367         c := hs.c
368
369         peerKey, err := hs.ecdheKey.Curve().NewPublicKey(hs.serverHello.serverShare.data)
370         if err != nil {
371                 c.sendAlert(alertIllegalParameter)
372                 return errors.New("tls: invalid server key share")
373         }
374         sharedKey, err := hs.ecdheKey.ECDH(peerKey)
375         if err != nil {
376                 c.sendAlert(alertIllegalParameter)
377                 return errors.New("tls: invalid server key share")
378         }
379
380         earlySecret := hs.earlySecret
381         if !hs.usingPSK {
382                 earlySecret = hs.suite.extract(nil, nil)
383         }
384
385         handshakeSecret := hs.suite.extract(sharedKey,
386                 hs.suite.deriveSecret(earlySecret, "derived", nil))
387
388         clientSecret := hs.suite.deriveSecret(handshakeSecret,
389                 clientHandshakeTrafficLabel, hs.transcript)
390         c.out.setTrafficSecret(hs.suite, QUICEncryptionLevelHandshake, clientSecret)
391         serverSecret := hs.suite.deriveSecret(handshakeSecret,
392                 serverHandshakeTrafficLabel, hs.transcript)
393         c.in.setTrafficSecret(hs.suite, QUICEncryptionLevelHandshake, serverSecret)
394
395         if c.quic != nil {
396                 if c.hand.Len() != 0 {
397                         c.sendAlert(alertUnexpectedMessage)
398                 }
399                 c.quicSetWriteSecret(QUICEncryptionLevelHandshake, hs.suite.id, clientSecret)
400                 c.quicSetReadSecret(QUICEncryptionLevelHandshake, hs.suite.id, serverSecret)
401         }
402
403         err = c.config.writeKeyLog(keyLogLabelClientHandshake, hs.hello.random, clientSecret)
404         if err != nil {
405                 c.sendAlert(alertInternalError)
406                 return err
407         }
408         err = c.config.writeKeyLog(keyLogLabelServerHandshake, hs.hello.random, serverSecret)
409         if err != nil {
410                 c.sendAlert(alertInternalError)
411                 return err
412         }
413
414         hs.masterSecret = hs.suite.extract(nil,
415                 hs.suite.deriveSecret(handshakeSecret, "derived", nil))
416
417         return nil
418 }
419
420 func (hs *clientHandshakeStateTLS13) readServerParameters() error {
421         c := hs.c
422
423         msg, err := c.readHandshake(hs.transcript)
424         if err != nil {
425                 return err
426         }
427
428         encryptedExtensions, ok := msg.(*encryptedExtensionsMsg)
429         if !ok {
430                 c.sendAlert(alertUnexpectedMessage)
431                 return unexpectedMessageError(encryptedExtensions, msg)
432         }
433
434         if err := checkALPN(hs.hello.alpnProtocols, encryptedExtensions.alpnProtocol, c.quic != nil); err != nil {
435                 // RFC 8446 specifies that no_application_protocol is sent by servers, but
436                 // does not specify how clients handle the selection of an incompatible protocol.
437                 // RFC 9001 Section 8.1 specifies that QUIC clients send no_application_protocol
438                 // in this case. Always sending no_application_protocol seems reasonable.
439                 c.sendAlert(alertNoApplicationProtocol)
440                 return err
441         }
442         c.clientProtocol = encryptedExtensions.alpnProtocol
443
444         if c.quic != nil {
445                 if encryptedExtensions.quicTransportParameters == nil {
446                         // RFC 9001 Section 8.2.
447                         c.sendAlert(alertMissingExtension)
448                         return errors.New("tls: server did not send a quic_transport_parameters extension")
449                 }
450                 c.quicSetTransportParameters(encryptedExtensions.quicTransportParameters)
451         } else {
452                 if encryptedExtensions.quicTransportParameters != nil {
453                         c.sendAlert(alertUnsupportedExtension)
454                         return errors.New("tls: server sent an unexpected quic_transport_parameters extension")
455                 }
456         }
457
458         return nil
459 }
460
461 func (hs *clientHandshakeStateTLS13) readServerCertificate() error {
462         c := hs.c
463
464         // Either a PSK or a certificate is always used, but not both.
465         // See RFC 8446, Section 4.1.1.
466         if hs.usingPSK {
467                 // Make sure the connection is still being verified whether or not this
468                 // is a resumption. Resumptions currently don't reverify certificates so
469                 // they don't call verifyServerCertificate. See Issue 31641.
470                 if c.config.VerifyConnection != nil {
471                         if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {
472                                 c.sendAlert(alertBadCertificate)
473                                 return err
474                         }
475                 }
476                 return nil
477         }
478
479         msg, err := c.readHandshake(hs.transcript)
480         if err != nil {
481                 return err
482         }
483
484         certReq, ok := msg.(*certificateRequestMsgTLS13)
485         if ok {
486                 hs.certReq = certReq
487
488                 msg, err = c.readHandshake(hs.transcript)
489                 if err != nil {
490                         return err
491                 }
492         }
493
494         certMsg, ok := msg.(*certificateMsgTLS13)
495         if !ok {
496                 c.sendAlert(alertUnexpectedMessage)
497                 return unexpectedMessageError(certMsg, msg)
498         }
499         if len(certMsg.certificate.Certificate) == 0 {
500                 c.sendAlert(alertDecodeError)
501                 return errors.New("tls: received empty certificates message")
502         }
503
504         c.scts = certMsg.certificate.SignedCertificateTimestamps
505         c.ocspResponse = certMsg.certificate.OCSPStaple
506
507         if err := c.verifyServerCertificate(certMsg.certificate.Certificate); err != nil {
508                 return err
509         }
510
511         // certificateVerifyMsg is included in the transcript, but not until
512         // after we verify the handshake signature, since the state before
513         // this message was sent is used.
514         msg, err = c.readHandshake(nil)
515         if err != nil {
516                 return err
517         }
518
519         certVerify, ok := msg.(*certificateVerifyMsg)
520         if !ok {
521                 c.sendAlert(alertUnexpectedMessage)
522                 return unexpectedMessageError(certVerify, msg)
523         }
524
525         // See RFC 8446, Section 4.4.3.
526         if !isSupportedSignatureAlgorithm(certVerify.signatureAlgorithm, supportedSignatureAlgorithms()) {
527                 c.sendAlert(alertIllegalParameter)
528                 return errors.New("tls: certificate used with invalid signature algorithm")
529         }
530         sigType, sigHash, err := typeAndHashFromSignatureScheme(certVerify.signatureAlgorithm)
531         if err != nil {
532                 return c.sendAlert(alertInternalError)
533         }
534         if sigType == signaturePKCS1v15 || sigHash == crypto.SHA1 {
535                 c.sendAlert(alertIllegalParameter)
536                 return errors.New("tls: certificate used with invalid signature algorithm")
537         }
538         signed := signedMessage(sigHash, serverSignatureContext, hs.transcript)
539         if err := verifyHandshakeSignature(sigType, c.peerCertificates[0].PublicKey,
540                 sigHash, signed, certVerify.signature); err != nil {
541                 c.sendAlert(alertDecryptError)
542                 return errors.New("tls: invalid signature by the server certificate: " + err.Error())
543         }
544
545         if err := transcriptMsg(certVerify, hs.transcript); err != nil {
546                 return err
547         }
548
549         return nil
550 }
551
552 func (hs *clientHandshakeStateTLS13) readServerFinished() error {
553         c := hs.c
554
555         // finishedMsg is included in the transcript, but not until after we
556         // check the client version, since the state before this message was
557         // sent is used during verification.
558         msg, err := c.readHandshake(nil)
559         if err != nil {
560                 return err
561         }
562
563         finished, ok := msg.(*finishedMsg)
564         if !ok {
565                 c.sendAlert(alertUnexpectedMessage)
566                 return unexpectedMessageError(finished, msg)
567         }
568
569         expectedMAC := hs.suite.finishedHash(c.in.trafficSecret, hs.transcript)
570         if !hmac.Equal(expectedMAC, finished.verifyData) {
571                 c.sendAlert(alertDecryptError)
572                 return errors.New("tls: invalid server finished hash")
573         }
574
575         if err := transcriptMsg(finished, hs.transcript); err != nil {
576                 return err
577         }
578
579         // Derive secrets that take context through the server Finished.
580
581         hs.trafficSecret = hs.suite.deriveSecret(hs.masterSecret,
582                 clientApplicationTrafficLabel, hs.transcript)
583         serverSecret := hs.suite.deriveSecret(hs.masterSecret,
584                 serverApplicationTrafficLabel, hs.transcript)
585         c.in.setTrafficSecret(hs.suite, QUICEncryptionLevelApplication, serverSecret)
586
587         err = c.config.writeKeyLog(keyLogLabelClientTraffic, hs.hello.random, hs.trafficSecret)
588         if err != nil {
589                 c.sendAlert(alertInternalError)
590                 return err
591         }
592         err = c.config.writeKeyLog(keyLogLabelServerTraffic, hs.hello.random, serverSecret)
593         if err != nil {
594                 c.sendAlert(alertInternalError)
595                 return err
596         }
597
598         c.ekm = hs.suite.exportKeyingMaterial(hs.masterSecret, hs.transcript)
599
600         return nil
601 }
602
603 func (hs *clientHandshakeStateTLS13) sendClientCertificate() error {
604         c := hs.c
605
606         if hs.certReq == nil {
607                 return nil
608         }
609
610         cert, err := c.getClientCertificate(&CertificateRequestInfo{
611                 AcceptableCAs:    hs.certReq.certificateAuthorities,
612                 SignatureSchemes: hs.certReq.supportedSignatureAlgorithms,
613                 Version:          c.vers,
614                 ctx:              hs.ctx,
615         })
616         if err != nil {
617                 return err
618         }
619
620         certMsg := new(certificateMsgTLS13)
621
622         certMsg.certificate = *cert
623         certMsg.scts = hs.certReq.scts && len(cert.SignedCertificateTimestamps) > 0
624         certMsg.ocspStapling = hs.certReq.ocspStapling && len(cert.OCSPStaple) > 0
625
626         if _, err := hs.c.writeHandshakeRecord(certMsg, hs.transcript); err != nil {
627                 return err
628         }
629
630         // If we sent an empty certificate message, skip the CertificateVerify.
631         if len(cert.Certificate) == 0 {
632                 return nil
633         }
634
635         certVerifyMsg := new(certificateVerifyMsg)
636         certVerifyMsg.hasSignatureAlgorithm = true
637
638         certVerifyMsg.signatureAlgorithm, err = selectSignatureScheme(c.vers, cert, hs.certReq.supportedSignatureAlgorithms)
639         if err != nil {
640                 // getClientCertificate returned a certificate incompatible with the
641                 // CertificateRequestInfo supported signature algorithms.
642                 c.sendAlert(alertHandshakeFailure)
643                 return err
644         }
645
646         sigType, sigHash, err := typeAndHashFromSignatureScheme(certVerifyMsg.signatureAlgorithm)
647         if err != nil {
648                 return c.sendAlert(alertInternalError)
649         }
650
651         signed := signedMessage(sigHash, clientSignatureContext, hs.transcript)
652         signOpts := crypto.SignerOpts(sigHash)
653         if sigType == signatureRSAPSS {
654                 signOpts = &rsa.PSSOptions{SaltLength: rsa.PSSSaltLengthEqualsHash, Hash: sigHash}
655         }
656         sig, err := cert.PrivateKey.(crypto.Signer).Sign(c.config.rand(), signed, signOpts)
657         if err != nil {
658                 c.sendAlert(alertInternalError)
659                 return errors.New("tls: failed to sign handshake: " + err.Error())
660         }
661         certVerifyMsg.signature = sig
662
663         if _, err := hs.c.writeHandshakeRecord(certVerifyMsg, hs.transcript); err != nil {
664                 return err
665         }
666
667         return nil
668 }
669
670 func (hs *clientHandshakeStateTLS13) sendClientFinished() error {
671         c := hs.c
672
673         finished := &finishedMsg{
674                 verifyData: hs.suite.finishedHash(c.out.trafficSecret, hs.transcript),
675         }
676
677         if _, err := hs.c.writeHandshakeRecord(finished, hs.transcript); err != nil {
678                 return err
679         }
680
681         c.out.setTrafficSecret(hs.suite, QUICEncryptionLevelApplication, hs.trafficSecret)
682
683         if !c.config.SessionTicketsDisabled && c.config.ClientSessionCache != nil {
684                 c.resumptionSecret = hs.suite.deriveSecret(hs.masterSecret,
685                         resumptionLabel, hs.transcript)
686         }
687
688         if c.quic != nil {
689                 if c.hand.Len() != 0 {
690                         c.sendAlert(alertUnexpectedMessage)
691                 }
692                 c.quicSetWriteSecret(QUICEncryptionLevelApplication, hs.suite.id, hs.trafficSecret)
693         }
694
695         return nil
696 }
697
698 func (c *Conn) handleNewSessionTicket(msg *newSessionTicketMsgTLS13) error {
699         if !c.isClient {
700                 c.sendAlert(alertUnexpectedMessage)
701                 return errors.New("tls: received new session ticket from a client")
702         }
703
704         if c.config.SessionTicketsDisabled || c.config.ClientSessionCache == nil {
705                 return nil
706         }
707
708         // See RFC 8446, Section 4.6.1.
709         if msg.lifetime == 0 {
710                 return nil
711         }
712         lifetime := time.Duration(msg.lifetime) * time.Second
713         if lifetime > maxSessionTicketLifetime {
714                 c.sendAlert(alertIllegalParameter)
715                 return errors.New("tls: received a session ticket with invalid lifetime")
716         }
717
718         cipherSuite := cipherSuiteTLS13ByID(c.cipherSuite)
719         if cipherSuite == nil || c.resumptionSecret == nil {
720                 return c.sendAlert(alertInternalError)
721         }
722
723         psk := cipherSuite.expandLabel(c.resumptionSecret, "resumption",
724                 msg.nonce, cipherSuite.hash.Size())
725
726         session, err := c.sessionState()
727         if err != nil {
728                 c.sendAlert(alertInternalError)
729                 return err
730         }
731         session.secret = psk
732         session.useBy = uint64(c.config.time().Add(lifetime).Unix())
733         session.ageAdd = msg.ageAdd
734         cs := &ClientSessionState{ticket: msg.label, session: session}
735
736         if cacheKey := c.clientSessionCacheKey(); cacheKey != "" {
737                 c.config.ClientSessionCache.Put(cacheKey, cs)
738         }
739
740         return nil
741 }