blob: dfd5b30d1dce6353771990020e420c81e6c82682 [file] [log] [blame]
Adam Langley95c29f32014-06-20 12:00:00 -07001// Copyright 2009 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
Adam Langleydc7e9c42015-09-29 15:21:04 -07005package runner
Adam Langley95c29f32014-06-20 12:00:00 -07006
7import (
8 "container/list"
9 "crypto"
David Benjamind30a9902014-08-24 01:44:23 -040010 "crypto/ecdsa"
Adam Langley95c29f32014-06-20 12:00:00 -070011 "crypto/rand"
12 "crypto/x509"
13 "fmt"
14 "io"
15 "math/big"
16 "strings"
17 "sync"
18 "time"
19)
20
21const (
22 VersionSSL30 = 0x0300
23 VersionTLS10 = 0x0301
24 VersionTLS11 = 0x0302
25 VersionTLS12 = 0x0303
Nick Harper1fd39d82016-06-14 18:14:35 -070026 VersionTLS13 = 0x0304
Adam Langley95c29f32014-06-20 12:00:00 -070027)
28
Nick Harper4d90c102016-07-17 10:53:26 +020029// The draft version of TLS 1.3 that is implemented here and sent in the draft
30// indicator extension.
31const tls13DraftVersion = 13
32
Adam Langley95c29f32014-06-20 12:00:00 -070033const (
David Benjamin83c0bc92014-08-04 01:23:53 -040034 maxPlaintext = 16384 // maximum plaintext payload length
35 maxCiphertext = 16384 + 2048 // maximum ciphertext payload length
36 tlsRecordHeaderLen = 5 // record header length
37 dtlsRecordHeaderLen = 13
38 maxHandshake = 65536 // maximum handshake we support (protocol max is 16 MB)
Adam Langley95c29f32014-06-20 12:00:00 -070039
40 minVersion = VersionSSL30
Nick Harper1fd39d82016-06-14 18:14:35 -070041 maxVersion = VersionTLS13
Adam Langley95c29f32014-06-20 12:00:00 -070042)
43
44// TLS record types.
45type recordType uint8
46
47const (
48 recordTypeChangeCipherSpec recordType = 20
49 recordTypeAlert recordType = 21
50 recordTypeHandshake recordType = 22
51 recordTypeApplicationData recordType = 23
52)
53
54// TLS handshake message types.
55const (
David Benjamincedff872016-06-30 18:55:18 -040056 typeHelloRequest uint8 = 0
57 typeClientHello uint8 = 1
58 typeServerHello uint8 = 2
59 typeHelloVerifyRequest uint8 = 3
60 typeNewSessionTicket uint8 = 4
61 typeHelloRetryRequest uint8 = 6 // draft-ietf-tls-tls13-13
62 typeEncryptedExtensions uint8 = 8 // draft-ietf-tls-tls13-13
63 typeCertificate uint8 = 11
64 typeServerKeyExchange uint8 = 12
65 typeCertificateRequest uint8 = 13
66 typeServerHelloDone uint8 = 14
67 typeCertificateVerify uint8 = 15
68 typeClientKeyExchange uint8 = 16
69 typeFinished uint8 = 20
70 typeCertificateStatus uint8 = 22
David Benjamin21c00282016-07-18 21:56:23 +020071 typeKeyUpdate uint8 = 24 // draft-ietf-tls-tls13-13
David Benjamincedff872016-06-30 18:55:18 -040072 typeNextProtocol uint8 = 67 // Not IANA assigned
73 typeChannelID uint8 = 203 // Not IANA assigned
Adam Langley95c29f32014-06-20 12:00:00 -070074)
75
76// TLS compression types.
77const (
78 compressionNone uint8 = 0
79)
80
81// TLS extension numbers
82const (
David Benjamin61f95272014-11-25 01:55:35 -050083 extensionServerName uint16 = 0
84 extensionStatusRequest uint16 = 5
85 extensionSupportedCurves uint16 = 10
86 extensionSupportedPoints uint16 = 11
87 extensionSignatureAlgorithms uint16 = 13
88 extensionUseSRTP uint16 = 14
89 extensionALPN uint16 = 16
90 extensionSignedCertificateTimestamp uint16 = 18
91 extensionExtendedMasterSecret uint16 = 23
92 extensionSessionTicket uint16 = 35
David Benjamincedff872016-06-30 18:55:18 -040093 extensionKeyShare uint16 = 40 // draft-ietf-tls-tls13-13
94 extensionPreSharedKey uint16 = 41 // draft-ietf-tls-tls13-13
95 extensionEarlyData uint16 = 42 // draft-ietf-tls-tls13-13
96 extensionCookie uint16 = 44 // draft-ietf-tls-tls13-13
David Benjamin399e7c92015-07-30 23:01:27 -040097 extensionCustom uint16 = 1234 // not IANA assigned
David Benjamin61f95272014-11-25 01:55:35 -050098 extensionNextProtoNeg uint16 = 13172 // not IANA assigned
99 extensionRenegotiationInfo uint16 = 0xff01
Nick Harper4d90c102016-07-17 10:53:26 +0200100 extensionTLS13Draft uint16 = 0xff02
David Benjamin61f95272014-11-25 01:55:35 -0500101 extensionChannelID uint16 = 30032 // not IANA assigned
Adam Langley95c29f32014-06-20 12:00:00 -0700102)
103
104// TLS signaling cipher suite values
105const (
106 scsvRenegotiation uint16 = 0x00ff
107)
108
109// CurveID is the type of a TLS identifier for an elliptic curve. See
110// http://www.iana.org/assignments/tls-parameters/tls-parameters.xml#tls-parameters-8
111type CurveID uint16
112
113const (
David Benjamincba2b622015-12-18 22:13:41 -0500114 CurveP224 CurveID = 21
115 CurveP256 CurveID = 23
116 CurveP384 CurveID = 24
117 CurveP521 CurveID = 25
118 CurveX25519 CurveID = 29
Adam Langley95c29f32014-06-20 12:00:00 -0700119)
120
121// TLS Elliptic Curve Point Formats
122// http://www.iana.org/assignments/tls-parameters/tls-parameters.xml#tls-parameters-9
123const (
124 pointFormatUncompressed uint8 = 0
125)
126
127// TLS CertificateStatusType (RFC 3546)
128const (
129 statusTypeOCSP uint8 = 1
130)
131
132// Certificate types (for certificateRequestMsg)
133const (
David Benjamin7b030512014-07-08 17:30:11 -0400134 CertTypeRSASign = 1 // A certificate containing an RSA key
135 CertTypeDSSSign = 2 // A certificate containing a DSA key
136 CertTypeRSAFixedDH = 3 // A certificate containing a static DH key
137 CertTypeDSSFixedDH = 4 // A certificate containing a static DH key
Adam Langley95c29f32014-06-20 12:00:00 -0700138
139 // See RFC4492 sections 3 and 5.5.
David Benjamin7b030512014-07-08 17:30:11 -0400140 CertTypeECDSASign = 64 // A certificate containing an ECDSA-capable public key, signed with ECDSA.
141 CertTypeRSAFixedECDH = 65 // A certificate containing an ECDH-capable public key, signed with RSA.
142 CertTypeECDSAFixedECDH = 66 // A certificate containing an ECDH-capable public key, signed with ECDSA.
Adam Langley95c29f32014-06-20 12:00:00 -0700143
144 // Rest of these are reserved by the TLS spec
145)
146
Nick Harper60edffd2016-06-21 15:19:24 -0700147// signatureAlgorithm corresponds to a SignatureScheme value from TLS 1.3. Note
148// that TLS 1.3 names the production 'SignatureScheme' to avoid colliding with
149// TLS 1.2's SignatureAlgorithm but otherwise refers to them as 'signature
150// algorithms' throughout. We match the latter.
151type signatureAlgorithm uint16
Adam Langley95c29f32014-06-20 12:00:00 -0700152
Adam Langley95c29f32014-06-20 12:00:00 -0700153const (
Nick Harper60edffd2016-06-21 15:19:24 -0700154 // RSASSA-PKCS1-v1_5 algorithms
155 signatureRSAPKCS1WithMD5 signatureAlgorithm = 0x0101
156 signatureRSAPKCS1WithSHA1 signatureAlgorithm = 0x0201
157 signatureRSAPKCS1WithSHA256 signatureAlgorithm = 0x0401
158 signatureRSAPKCS1WithSHA384 signatureAlgorithm = 0x0501
159 signatureRSAPKCS1WithSHA512 signatureAlgorithm = 0x0601
Adam Langley95c29f32014-06-20 12:00:00 -0700160
Nick Harper60edffd2016-06-21 15:19:24 -0700161 // ECDSA algorithms
162 signatureECDSAWithSHA1 signatureAlgorithm = 0x0203
163 signatureECDSAWithP256AndSHA256 signatureAlgorithm = 0x0403
164 signatureECDSAWithP384AndSHA384 signatureAlgorithm = 0x0503
165 signatureECDSAWithP521AndSHA512 signatureAlgorithm = 0x0603
166
167 // RSASSA-PSS algorithms
168 signatureRSAPSSWithSHA256 signatureAlgorithm = 0x0700
169 signatureRSAPSSWithSHA384 signatureAlgorithm = 0x0701
170 signatureRSAPSSWithSHA512 signatureAlgorithm = 0x0702
171
172 // EdDSA algorithms
173 signatureEd25519 signatureAlgorithm = 0x0703
174 signatureEd448 signatureAlgorithm = 0x0704
175)
Adam Langley95c29f32014-06-20 12:00:00 -0700176
David Benjamin7a41d372016-07-09 11:21:54 -0700177// supportedSignatureAlgorithms contains the default supported signature
178// algorithms.
179var supportedSignatureAlgorithms = []signatureAlgorithm{
180 signatureRSAPSSWithSHA256,
Nick Harper60edffd2016-06-21 15:19:24 -0700181 signatureRSAPKCS1WithSHA256,
182 signatureECDSAWithP256AndSHA256,
183 signatureRSAPKCS1WithSHA1,
184 signatureECDSAWithSHA1,
Adam Langley95c29f32014-06-20 12:00:00 -0700185}
186
David Benjaminca6c8262014-11-15 19:06:08 -0500187// SRTP protection profiles (See RFC 5764, section 4.1.2)
188const (
189 SRTP_AES128_CM_HMAC_SHA1_80 uint16 = 0x0001
190 SRTP_AES128_CM_HMAC_SHA1_32 = 0x0002
191)
192
David Benjamin58104882016-07-18 01:25:41 +0200193// TicketFlags values (see draft-ietf-tls-tls13-14, section 4.4.1)
194const (
195 ticketAllowEarlyData = 1
196 ticketAllowDHEResumption = 2
197 ticketAllowPSKResumption = 4
198)
199
Adam Langley95c29f32014-06-20 12:00:00 -0700200// ConnectionState records basic TLS details about the connection.
201type ConnectionState struct {
202 Version uint16 // TLS version used by the connection (e.g. VersionTLS12)
203 HandshakeComplete bool // TLS handshake is complete
204 DidResume bool // connection resumes a previous TLS connection
205 CipherSuite uint16 // cipher suite in use (TLS_RSA_WITH_RC4_128_SHA, ...)
206 NegotiatedProtocol string // negotiated next protocol (from Config.NextProtos)
207 NegotiatedProtocolIsMutual bool // negotiated protocol was advertised by server
David Benjaminfc7b0862014-09-06 13:21:53 -0400208 NegotiatedProtocolFromALPN bool // protocol negotiated with ALPN
Adam Langley95c29f32014-06-20 12:00:00 -0700209 ServerName string // server name requested by client, if any (server side only)
210 PeerCertificates []*x509.Certificate // certificate chain presented by remote peer
211 VerifiedChains [][]*x509.Certificate // verified chains built from PeerCertificates
David Benjamind30a9902014-08-24 01:44:23 -0400212 ChannelID *ecdsa.PublicKey // the channel ID for this connection
David Benjaminca6c8262014-11-15 19:06:08 -0500213 SRTPProtectionProfile uint16 // the negotiated DTLS-SRTP protection profile
David Benjaminc0577622015-09-12 18:28:38 -0400214 TLSUnique []byte // the tls-unique channel binding
Paul Lietar4fac72e2015-09-09 13:44:55 +0100215 SCTList []byte // signed certificate timestamp list
Nick Harper60edffd2016-06-21 15:19:24 -0700216 PeerSignatureAlgorithm signatureAlgorithm // algorithm used by the peer in the handshake
Steven Valdez5440fe02016-07-18 12:40:30 -0400217 CurveID CurveID // the curve used in ECDHE
Adam Langley95c29f32014-06-20 12:00:00 -0700218}
219
220// ClientAuthType declares the policy the server will follow for
221// TLS Client Authentication.
222type ClientAuthType int
223
224const (
225 NoClientCert ClientAuthType = iota
226 RequestClientCert
227 RequireAnyClientCert
228 VerifyClientCertIfGiven
229 RequireAndVerifyClientCert
230)
231
232// ClientSessionState contains the state needed by clients to resume TLS
233// sessions.
234type ClientSessionState struct {
David Benjaminfe8eb9a2014-11-17 03:19:02 -0500235 sessionId []uint8 // Session ID supplied by the server. nil if the session has a ticket.
Adam Langley75712922014-10-10 16:23:43 -0700236 sessionTicket []uint8 // Encrypted ticket used for session resumption with server
237 vers uint16 // SSL/TLS version negotiated for the session
238 cipherSuite uint16 // Ciphersuite negotiated for the session
239 masterSecret []byte // MasterSecret generated by client on a full handshake
240 handshakeHash []byte // Handshake hash for Channel ID purposes.
241 serverCertificates []*x509.Certificate // Certificate chain presented by the server
242 extendedMasterSecret bool // Whether an extended master secret was used to generate the session
Paul Lietar62be8ac2015-09-16 10:03:30 +0100243 sctList []byte
244 ocspResponse []byte
Adam Langley95c29f32014-06-20 12:00:00 -0700245}
246
247// ClientSessionCache is a cache of ClientSessionState objects that can be used
248// by a client to resume a TLS session with a given server. ClientSessionCache
249// implementations should expect to be called concurrently from different
250// goroutines.
251type ClientSessionCache interface {
252 // Get searches for a ClientSessionState associated with the given key.
253 // On return, ok is true if one was found.
254 Get(sessionKey string) (session *ClientSessionState, ok bool)
255
256 // Put adds the ClientSessionState to the cache with the given key.
257 Put(sessionKey string, cs *ClientSessionState)
258}
259
David Benjaminfe8eb9a2014-11-17 03:19:02 -0500260// ServerSessionCache is a cache of sessionState objects that can be used by a
261// client to resume a TLS session with a given server. ServerSessionCache
262// implementations should expect to be called concurrently from different
263// goroutines.
264type ServerSessionCache interface {
265 // Get searches for a sessionState associated with the given session
266 // ID. On return, ok is true if one was found.
267 Get(sessionId string) (session *sessionState, ok bool)
268
269 // Put adds the sessionState to the cache with the given session ID.
270 Put(sessionId string, session *sessionState)
271}
272
Adam Langley95c29f32014-06-20 12:00:00 -0700273// A Config structure is used to configure a TLS client or server.
274// After one has been passed to a TLS function it must not be
275// modified. A Config may be reused; the tls package will also not
276// modify it.
277type Config struct {
278 // Rand provides the source of entropy for nonces and RSA blinding.
279 // If Rand is nil, TLS uses the cryptographic random reader in package
280 // crypto/rand.
281 // The Reader must be safe for use by multiple goroutines.
282 Rand io.Reader
283
284 // Time returns the current time as the number of seconds since the epoch.
285 // If Time is nil, TLS uses time.Now.
286 Time func() time.Time
287
288 // Certificates contains one or more certificate chains
289 // to present to the other side of the connection.
290 // Server configurations must include at least one certificate.
291 Certificates []Certificate
292
293 // NameToCertificate maps from a certificate name to an element of
294 // Certificates. Note that a certificate name can be of the form
295 // '*.example.com' and so doesn't have to be a domain name as such.
296 // See Config.BuildNameToCertificate
297 // The nil value causes the first element of Certificates to be used
298 // for all connections.
299 NameToCertificate map[string]*Certificate
300
301 // RootCAs defines the set of root certificate authorities
302 // that clients use when verifying server certificates.
303 // If RootCAs is nil, TLS uses the host's root CA set.
304 RootCAs *x509.CertPool
305
306 // NextProtos is a list of supported, application level protocols.
307 NextProtos []string
308
309 // ServerName is used to verify the hostname on the returned
310 // certificates unless InsecureSkipVerify is given. It is also included
311 // in the client's handshake to support virtual hosting.
312 ServerName string
313
314 // ClientAuth determines the server's policy for
315 // TLS Client Authentication. The default is NoClientCert.
316 ClientAuth ClientAuthType
317
318 // ClientCAs defines the set of root certificate authorities
319 // that servers use if required to verify a client certificate
320 // by the policy in ClientAuth.
321 ClientCAs *x509.CertPool
322
David Benjamin7b030512014-07-08 17:30:11 -0400323 // ClientCertificateTypes defines the set of allowed client certificate
324 // types. The default is CertTypeRSASign and CertTypeECDSASign.
325 ClientCertificateTypes []byte
326
Adam Langley95c29f32014-06-20 12:00:00 -0700327 // InsecureSkipVerify controls whether a client verifies the
328 // server's certificate chain and host name.
329 // If InsecureSkipVerify is true, TLS accepts any certificate
330 // presented by the server and any host name in that certificate.
331 // In this mode, TLS is susceptible to man-in-the-middle attacks.
332 // This should be used only for testing.
333 InsecureSkipVerify bool
334
335 // CipherSuites is a list of supported cipher suites. If CipherSuites
336 // is nil, TLS uses a list of suites supported by the implementation.
337 CipherSuites []uint16
338
339 // PreferServerCipherSuites controls whether the server selects the
340 // client's most preferred ciphersuite, or the server's most preferred
341 // ciphersuite. If true then the server's preference, as expressed in
342 // the order of elements in CipherSuites, is used.
343 PreferServerCipherSuites bool
344
345 // SessionTicketsDisabled may be set to true to disable session ticket
346 // (resumption) support.
347 SessionTicketsDisabled bool
348
349 // SessionTicketKey is used by TLS servers to provide session
350 // resumption. See RFC 5077. If zero, it will be filled with
351 // random data before the first server handshake.
352 //
353 // If multiple servers are terminating connections for the same host
354 // they should all have the same SessionTicketKey. If the
355 // SessionTicketKey leaks, previously recorded and future TLS
356 // connections using that key are compromised.
357 SessionTicketKey [32]byte
358
David Benjaminfe8eb9a2014-11-17 03:19:02 -0500359 // ClientSessionCache is a cache of ClientSessionState entries
360 // for TLS session resumption.
Adam Langley95c29f32014-06-20 12:00:00 -0700361 ClientSessionCache ClientSessionCache
362
David Benjaminfe8eb9a2014-11-17 03:19:02 -0500363 // ServerSessionCache is a cache of sessionState entries for TLS session
364 // resumption.
365 ServerSessionCache ServerSessionCache
366
Adam Langley95c29f32014-06-20 12:00:00 -0700367 // MinVersion contains the minimum SSL/TLS version that is acceptable.
368 // If zero, then SSLv3 is taken as the minimum.
369 MinVersion uint16
370
371 // MaxVersion contains the maximum SSL/TLS version that is acceptable.
372 // If zero, then the maximum version supported by this package is used,
373 // which is currently TLS 1.2.
374 MaxVersion uint16
375
376 // CurvePreferences contains the elliptic curves that will be used in
377 // an ECDHE handshake, in preference order. If empty, the default will
378 // be used.
379 CurvePreferences []CurveID
380
Nick Harperdcfbc672016-07-16 17:47:31 +0200381 // DefaultCurves contains the elliptic curves for which public values will
382 // be sent in the ClientHello's KeyShare extension. If this value is nil,
383 // all supported curves will have public values sent. This field is ignored
384 // on servers.
385 DefaultCurves []CurveID
386
David Benjamind30a9902014-08-24 01:44:23 -0400387 // ChannelID contains the ECDSA key for the client to use as
388 // its TLS Channel ID.
389 ChannelID *ecdsa.PrivateKey
390
391 // RequestChannelID controls whether the server requests a TLS
392 // Channel ID. If negotiated, the client's public key is
393 // returned in the ConnectionState.
394 RequestChannelID bool
395
David Benjamin48cae082014-10-27 01:06:24 -0400396 // PreSharedKey, if not nil, is the pre-shared key to use with
397 // the PSK cipher suites.
398 PreSharedKey []byte
399
400 // PreSharedKeyIdentity, if not empty, is the identity to use
401 // with the PSK cipher suites.
402 PreSharedKeyIdentity string
403
David Benjaminca6c8262014-11-15 19:06:08 -0500404 // SRTPProtectionProfiles, if not nil, is the list of SRTP
405 // protection profiles to offer in DTLS-SRTP.
406 SRTPProtectionProfiles []uint16
407
David Benjamin7a41d372016-07-09 11:21:54 -0700408 // SignSignatureAlgorithms, if not nil, overrides the default set of
409 // supported signature algorithms to sign with.
410 SignSignatureAlgorithms []signatureAlgorithm
411
412 // VerifySignatureAlgorithms, if not nil, overrides the default set of
413 // supported signature algorithms that are accepted.
414 VerifySignatureAlgorithms []signatureAlgorithm
David Benjamin000800a2014-11-14 01:43:59 -0500415
Adam Langley95c29f32014-06-20 12:00:00 -0700416 // Bugs specifies optional misbehaviour to be used for testing other
417 // implementations.
418 Bugs ProtocolBugs
419
420 serverInitOnce sync.Once // guards calling (*Config).serverInit
421}
422
423type BadValue int
424
425const (
426 BadValueNone BadValue = iota
427 BadValueNegative
428 BadValueZero
429 BadValueLimit
430 BadValueLarge
431 NumBadValues
432)
433
David Benjaminb36a3952015-12-01 18:53:13 -0500434type RSABadValue int
435
436const (
437 RSABadValueNone RSABadValue = iota
438 RSABadValueCorrupt
439 RSABadValueTooLong
440 RSABadValueTooShort
441 RSABadValueWrongVersion
442 NumRSABadValues
443)
444
Adam Langley95c29f32014-06-20 12:00:00 -0700445type ProtocolBugs struct {
David Benjamin5208fd42016-07-13 21:43:25 -0400446 // InvalidSignature specifies that the signature in a ServerKeyExchange
447 // or CertificateVerify message should be invalid.
448 InvalidSignature bool
David Benjamin6de0e532015-07-28 22:43:19 -0400449
Steven Valdez5440fe02016-07-18 12:40:30 -0400450 // SendCurve, if non-zero, causes the server to send the specified curve
451 // ID in ServerKeyExchange (TLS 1.2) or ServerHello (TLS 1.3) rather
452 // than the negotiated one.
David Benjamin4c3ddf72016-06-29 18:13:53 -0400453 SendCurve CurveID
Adam Langley95c29f32014-06-20 12:00:00 -0700454
Steven Valdez5440fe02016-07-18 12:40:30 -0400455 // SendHelloRetryRequestCurve, if non-zero, causes the server to send
456 // the specified curve in HelloRetryRequest rather than the negotiated
457 // one.
458 SendHelloRetryRequestCurve CurveID
459
David Benjamin2b07fa42016-03-02 00:23:57 -0500460 // InvalidECDHPoint, if true, causes the ECC points in
461 // ServerKeyExchange or ClientKeyExchange messages to be invalid.
462 InvalidECDHPoint bool
463
Adam Langley95c29f32014-06-20 12:00:00 -0700464 // BadECDSAR controls ways in which the 'r' value of an ECDSA signature
465 // can be invalid.
466 BadECDSAR BadValue
467 BadECDSAS BadValue
Adam Langley80842bd2014-06-20 12:00:00 -0700468
469 // MaxPadding causes CBC records to have the maximum possible padding.
470 MaxPadding bool
471 // PaddingFirstByteBad causes the first byte of the padding to be
472 // incorrect.
473 PaddingFirstByteBad bool
474 // PaddingFirstByteBadIf255 causes the first byte of padding to be
475 // incorrect if there's a maximum amount of padding (i.e. 255 bytes).
476 PaddingFirstByteBadIf255 bool
Adam Langleyac61fa32014-06-23 12:03:11 -0700477
478 // FailIfNotFallbackSCSV causes a server handshake to fail if the
479 // client doesn't send the fallback SCSV value.
480 FailIfNotFallbackSCSV bool
David Benjamin35a7a442014-07-05 00:23:20 -0400481
482 // DuplicateExtension causes an extra empty extension of bogus type to
483 // be emitted in either the ClientHello or the ServerHello.
484 DuplicateExtension bool
David Benjamin1c375dd2014-07-12 00:48:23 -0400485
486 // UnauthenticatedECDH causes the server to pretend ECDHE_RSA
487 // and ECDHE_ECDSA cipher suites are actually ECDH_anon. No
488 // Certificate message is sent and no signature is added to
489 // ServerKeyExchange.
490 UnauthenticatedECDH bool
David Benjamin9c651c92014-07-12 13:27:45 -0400491
David Benjaminb80168e2015-02-08 18:30:14 -0500492 // SkipHelloVerifyRequest causes a DTLS server to skip the
493 // HelloVerifyRequest message.
494 SkipHelloVerifyRequest bool
495
David Benjamindcd979f2015-04-20 18:26:52 -0400496 // SkipCertificateStatus, if true, causes the server to skip the
497 // CertificateStatus message. This is legal because CertificateStatus is
498 // optional, even with a status_request in ServerHello.
499 SkipCertificateStatus bool
500
David Benjamin9c651c92014-07-12 13:27:45 -0400501 // SkipServerKeyExchange causes the server to skip sending
502 // ServerKeyExchange messages.
503 SkipServerKeyExchange bool
David Benjamina0e52232014-07-19 17:39:58 -0400504
David Benjaminb80168e2015-02-08 18:30:14 -0500505 // SkipNewSessionTicket causes the server to skip sending the
506 // NewSessionTicket message despite promising to in ServerHello.
507 SkipNewSessionTicket bool
508
David Benjamin0b7ca7d2016-03-10 15:44:22 -0500509 // SkipClientCertificate causes the client to skip the Certificate
510 // message.
511 SkipClientCertificate bool
512
David Benjamina0e52232014-07-19 17:39:58 -0400513 // SkipChangeCipherSpec causes the implementation to skip
514 // sending the ChangeCipherSpec message (and adjusting cipher
515 // state accordingly for the Finished message).
516 SkipChangeCipherSpec bool
David Benjaminf3ec83d2014-07-21 22:42:34 -0400517
David Benjaminb80168e2015-02-08 18:30:14 -0500518 // SkipFinished causes the implementation to skip sending the Finished
519 // message.
520 SkipFinished bool
521
David Benjaminf3ec83d2014-07-21 22:42:34 -0400522 // EarlyChangeCipherSpec causes the client to send an early
523 // ChangeCipherSpec message before the ClientKeyExchange. A value of
524 // zero disables this behavior. One and two configure variants for 0.9.8
525 // and 1.0.1 modes, respectively.
526 EarlyChangeCipherSpec int
David Benjamind23f4122014-07-23 15:09:48 -0400527
David Benjamin8144f992016-06-22 17:05:13 -0400528 // StrayChangeCipherSpec causes every pre-ChangeCipherSpec handshake
529 // message in DTLS to be prefaced by stray ChangeCipherSpec record. This
530 // may be used to test DTLS's handling of reordered ChangeCipherSpec.
531 StrayChangeCipherSpec bool
532
David Benjamin86271ee2014-07-21 16:14:03 -0400533 // FragmentAcrossChangeCipherSpec causes the implementation to fragment
534 // the Finished (or NextProto) message around the ChangeCipherSpec
535 // messages.
536 FragmentAcrossChangeCipherSpec bool
537
David Benjamin61672812016-07-14 23:10:43 -0400538 // SendUnencryptedFinished, if true, causes the Finished message to be
539 // send unencrypted before ChangeCipherSpec rather than after it.
540 SendUnencryptedFinished bool
541
David Benjamin7964b182016-07-14 23:36:30 -0400542 // PartialEncryptedExtensionsWithServerHello, if true, causes the TLS
543 // 1.3 server to send part of EncryptedExtensions unencrypted
544 // in the same record as ServerHello.
545 PartialEncryptedExtensionsWithServerHello bool
546
547 // PartialClientFinishedWithClientHello, if true, causes the TLS 1.3
548 // client to send part of Finished unencrypted in the same record as
549 // ClientHello.
550 PartialClientFinishedWithClientHello bool
551
David Benjamind86c7672014-08-02 04:07:12 -0400552 // SendV2ClientHello causes the client to send a V2ClientHello
553 // instead of a normal ClientHello.
554 SendV2ClientHello bool
David Benjaminbef270a2014-08-02 04:22:02 -0400555
556 // SendFallbackSCSV causes the client to include
557 // TLS_FALLBACK_SCSV in the ClientHello.
558 SendFallbackSCSV bool
David Benjamin43ec06f2014-08-05 02:28:57 -0400559
Adam Langley5021b222015-06-12 18:27:58 -0700560 // SendRenegotiationSCSV causes the client to include the renegotiation
561 // SCSV in the ClientHello.
562 SendRenegotiationSCSV bool
563
David Benjamin43ec06f2014-08-05 02:28:57 -0400564 // MaxHandshakeRecordLength, if non-zero, is the maximum size of a
David Benjamin98214542014-08-07 18:02:39 -0400565 // handshake record. Handshake messages will be split into multiple
566 // records at the specified size, except that the client_version will
David Benjaminbd15a8e2015-05-29 18:48:16 -0400567 // never be fragmented. For DTLS, it is the maximum handshake fragment
568 // size, not record size; DTLS allows multiple handshake fragments in a
569 // single handshake record. See |PackHandshakeFragments|.
David Benjamin43ec06f2014-08-05 02:28:57 -0400570 MaxHandshakeRecordLength int
David Benjamina8e3e0e2014-08-06 22:11:10 -0400571
David Benjamin98214542014-08-07 18:02:39 -0400572 // FragmentClientVersion will allow MaxHandshakeRecordLength to apply to
573 // the first 6 bytes of the ClientHello.
574 FragmentClientVersion bool
575
Alex Chernyakhovsky4cd8c432014-11-01 19:39:08 -0400576 // FragmentAlert will cause all alerts to be fragmented across
577 // two records.
578 FragmentAlert bool
579
David Benjamin0d3a8c62016-03-11 22:25:18 -0500580 // DoubleAlert will cause all alerts to be sent as two copies packed
581 // within one record.
582 DoubleAlert bool
583
David Benjamin3fd1fbd2015-02-03 16:07:32 -0500584 // SendSpuriousAlert, if non-zero, will cause an spurious, unwanted
585 // alert to be sent.
586 SendSpuriousAlert alert
Alex Chernyakhovsky4cd8c432014-11-01 19:39:08 -0400587
David Benjaminb36a3952015-12-01 18:53:13 -0500588 // BadRSAClientKeyExchange causes the client to send a corrupted RSA
589 // ClientKeyExchange which would not pass padding checks.
590 BadRSAClientKeyExchange RSABadValue
David Benjaminbed9aae2014-08-07 19:13:38 -0400591
592 // RenewTicketOnResume causes the server to renew the session ticket and
593 // send a NewSessionTicket message during an abbreviated handshake.
594 RenewTicketOnResume bool
David Benjamin98e882e2014-08-08 13:24:34 -0400595
596 // SendClientVersion, if non-zero, causes the client to send a different
597 // TLS version in the ClientHello than the maximum supported version.
598 SendClientVersion uint16
David Benjamin83c0bc92014-08-04 01:23:53 -0400599
David Benjamin1f61f0d2016-07-10 12:20:35 -0400600 // NegotiateVersion, if non-zero, causes the server to negotiate the
601 // specifed TLS version rather than the version supported by either
602 // peer.
603 NegotiateVersion uint16
604
David Benjamine58c4f52014-08-24 03:47:07 -0400605 // ExpectFalseStart causes the server to, on full handshakes,
606 // expect the peer to False Start; the server Finished message
607 // isn't sent until we receive an application data record
608 // from the peer.
609 ExpectFalseStart bool
David Benjamin5c24a1d2014-08-31 00:59:27 -0400610
David Benjamin1c633152015-04-02 20:19:11 -0400611 // AlertBeforeFalseStartTest, if non-zero, causes the server to, on full
612 // handshakes, send an alert just before reading the application data
613 // record to test False Start. This can be used in a negative False
614 // Start test to determine whether the peer processed the alert (and
615 // closed the connection) before or after sending app data.
616 AlertBeforeFalseStartTest alert
617
David Benjamine78bfde2014-09-06 12:45:15 -0400618 // ExpectServerName, if not empty, is the hostname the client
619 // must specify in the server_name extension.
620 ExpectServerName string
David Benjaminfc7b0862014-09-06 13:21:53 -0400621
David Benjamin76c2efc2015-08-31 14:24:29 -0400622 // SwapNPNAndALPN switches the relative order between NPN and ALPN in
623 // both ClientHello and ServerHello.
David Benjaminfc7b0862014-09-06 13:21:53 -0400624 SwapNPNAndALPN bool
David Benjamin01fe8202014-09-24 15:21:44 -0400625
Adam Langleyefb0e162015-07-09 11:35:04 -0700626 // ALPNProtocol, if not nil, sets the ALPN protocol that a server will
627 // return.
628 ALPNProtocol *string
629
David Benjamin01fe8202014-09-24 15:21:44 -0400630 // AllowSessionVersionMismatch causes the server to resume sessions
631 // regardless of the version associated with the session.
632 AllowSessionVersionMismatch bool
Adam Langley38311732014-10-16 19:04:35 -0700633
634 // CorruptTicket causes a client to corrupt a session ticket before
635 // sending it in a resume handshake.
636 CorruptTicket bool
637
638 // OversizedSessionId causes the session id that is sent with a ticket
639 // resumption attempt to be too large (33 bytes).
640 OversizedSessionId bool
Adam Langley75712922014-10-10 16:23:43 -0700641
642 // RequireExtendedMasterSecret, if true, requires that the peer support
643 // the extended master secret option.
644 RequireExtendedMasterSecret bool
645
David Benjaminca6554b2014-11-08 12:31:52 -0500646 // NoExtendedMasterSecret causes the client and server to behave as if
Adam Langley75712922014-10-10 16:23:43 -0700647 // they didn't support an extended master secret.
648 NoExtendedMasterSecret bool
Adam Langley2ae77d22014-10-28 17:29:33 -0700649
650 // EmptyRenegotiationInfo causes the renegotiation extension to be
651 // empty in a renegotiation handshake.
652 EmptyRenegotiationInfo bool
653
654 // BadRenegotiationInfo causes the renegotiation extension value in a
655 // renegotiation handshake to be incorrect.
656 BadRenegotiationInfo bool
David Benjamin5e961c12014-11-07 01:48:35 -0500657
David Benjamin3e052de2015-11-25 20:10:31 -0500658 // NoRenegotiationInfo disables renegotiation info support in all
659 // handshakes.
David Benjaminca6554b2014-11-08 12:31:52 -0500660 NoRenegotiationInfo bool
661
David Benjamin3e052de2015-11-25 20:10:31 -0500662 // NoRenegotiationInfoInInitial disables renegotiation info support in
663 // the initial handshake.
664 NoRenegotiationInfoInInitial bool
665
666 // NoRenegotiationInfoAfterInitial disables renegotiation info support
667 // in renegotiation handshakes.
668 NoRenegotiationInfoAfterInitial bool
669
Adam Langley5021b222015-06-12 18:27:58 -0700670 // RequireRenegotiationInfo, if true, causes the client to return an
671 // error if the server doesn't reply with the renegotiation extension.
672 RequireRenegotiationInfo bool
673
David Benjamin8e6db492015-07-25 18:29:23 -0400674 // SequenceNumberMapping, if non-nil, is the mapping function to apply
675 // to the sequence number of outgoing packets. For both TLS and DTLS,
676 // the two most-significant bytes in the resulting sequence number are
677 // ignored so that the DTLS epoch cannot be changed.
678 SequenceNumberMapping func(uint64) uint64
David Benjamin9114fae2014-11-08 11:41:14 -0500679
David Benjamina3e89492015-02-26 15:16:22 -0500680 // RSAEphemeralKey, if true, causes the server to send a
681 // ServerKeyExchange message containing an ephemeral key (as in
682 // RSA_EXPORT) in the plain RSA key exchange.
683 RSAEphemeralKey bool
David Benjaminca6c8262014-11-15 19:06:08 -0500684
685 // SRTPMasterKeyIdentifer, if not empty, is the SRTP MKI value that the
686 // client offers when negotiating SRTP. MKI support is still missing so
687 // the peer must still send none.
688 SRTPMasterKeyIdentifer string
689
690 // SendSRTPProtectionProfile, if non-zero, is the SRTP profile that the
691 // server sends in the ServerHello instead of the negotiated one.
692 SendSRTPProtectionProfile uint16
David Benjamin000800a2014-11-14 01:43:59 -0500693
Nick Harper60edffd2016-06-21 15:19:24 -0700694 // NoSignatureAlgorithms, if true, causes the client to omit the
David Benjamin000800a2014-11-14 01:43:59 -0500695 // signature and hashes extension.
696 //
697 // For a server, it will cause an empty list to be sent in the
698 // CertificateRequest message. None the less, the configured set will
699 // still be enforced.
Nick Harper60edffd2016-06-21 15:19:24 -0700700 NoSignatureAlgorithms bool
David Benjaminc44b1df2014-11-23 12:11:01 -0500701
David Benjamin55a43642015-04-20 14:45:55 -0400702 // NoSupportedCurves, if true, causes the client to omit the
703 // supported_curves extension.
704 NoSupportedCurves bool
705
David Benjaminc44b1df2014-11-23 12:11:01 -0500706 // RequireSameRenegoClientVersion, if true, causes the server
707 // to require that all ClientHellos match in offered version
708 // across a renego.
709 RequireSameRenegoClientVersion bool
Feng Lu41aa3252014-11-21 22:47:56 -0800710
David Benjamin1e29a6b2014-12-10 02:27:24 -0500711 // ExpectInitialRecordVersion, if non-zero, is the expected
712 // version of the records before the version is determined.
713 ExpectInitialRecordVersion uint16
David Benjamin13be1de2015-01-11 16:29:36 -0500714
715 // MaxPacketLength, if non-zero, is the maximum acceptable size for a
716 // packet.
717 MaxPacketLength int
David Benjamin6095de82014-12-27 01:50:38 -0500718
719 // SendCipherSuite, if non-zero, is the cipher suite value that the
720 // server will send in the ServerHello. This does not affect the cipher
721 // the server believes it has actually negotiated.
722 SendCipherSuite uint16
David Benjamin4189bd92015-01-25 23:52:39 -0500723
David Benjamin4cf369b2015-08-22 01:35:43 -0400724 // AppDataBeforeHandshake, if not nil, causes application data to be
725 // sent immediately before the first handshake message.
726 AppDataBeforeHandshake []byte
727
728 // AppDataAfterChangeCipherSpec, if not nil, causes application data to
David Benjamin4189bd92015-01-25 23:52:39 -0500729 // be sent immediately after ChangeCipherSpec.
730 AppDataAfterChangeCipherSpec []byte
David Benjamin83f90402015-01-27 01:09:43 -0500731
David Benjamindc3da932015-03-12 15:09:02 -0400732 // AlertAfterChangeCipherSpec, if non-zero, causes an alert to be sent
733 // immediately after ChangeCipherSpec.
734 AlertAfterChangeCipherSpec alert
735
David Benjamin83f90402015-01-27 01:09:43 -0500736 // TimeoutSchedule is the schedule of packet drops and simulated
737 // timeouts for before each handshake leg from the peer.
738 TimeoutSchedule []time.Duration
739
740 // PacketAdaptor is the packetAdaptor to use to simulate timeouts.
741 PacketAdaptor *packetAdaptor
David Benjaminb3774b92015-01-31 17:16:01 -0500742
743 // ReorderHandshakeFragments, if true, causes handshake fragments in
744 // DTLS to overlap and be sent in the wrong order. It also causes
745 // pre-CCS flights to be sent twice. (Post-CCS flights consist of
746 // Finished and will trigger a spurious retransmit.)
747 ReorderHandshakeFragments bool
David Benjaminddb9f152015-02-03 15:44:39 -0500748
David Benjamin61672812016-07-14 23:10:43 -0400749 // ReverseHandshakeFragments, if true, causes handshake fragments in
750 // DTLS to be reversed within a flight.
751 ReverseHandshakeFragments bool
752
David Benjamin75381222015-03-02 19:30:30 -0500753 // MixCompleteMessageWithFragments, if true, causes handshake
754 // messages in DTLS to redundantly both fragment the message
755 // and include a copy of the full one.
756 MixCompleteMessageWithFragments bool
757
David Benjaminddb9f152015-02-03 15:44:39 -0500758 // SendInvalidRecordType, if true, causes a record with an invalid
759 // content type to be sent immediately following the handshake.
760 SendInvalidRecordType bool
David Benjaminbcb2d912015-02-24 23:45:43 -0500761
David Benjamin0b8d5da2016-07-15 00:39:56 -0400762 // SendWrongMessageType, if non-zero, causes messages of the specified
763 // type to be sent with the wrong value.
764 SendWrongMessageType byte
David Benjamin75381222015-03-02 19:30:30 -0500765
766 // FragmentMessageTypeMismatch, if true, causes all non-initial
767 // handshake fragments in DTLS to have the wrong message type.
768 FragmentMessageTypeMismatch bool
769
770 // FragmentMessageLengthMismatch, if true, causes all non-initial
771 // handshake fragments in DTLS to have the wrong message length.
772 FragmentMessageLengthMismatch bool
773
David Benjamin11fc66a2015-06-16 11:40:24 -0400774 // SplitFragments, if non-zero, causes the handshake fragments in DTLS
775 // to be split across two records. The value of |SplitFragments| is the
776 // number of bytes in the first fragment.
777 SplitFragments int
David Benjamin75381222015-03-02 19:30:30 -0500778
779 // SendEmptyFragments, if true, causes handshakes to include empty
780 // fragments in DTLS.
781 SendEmptyFragments bool
David Benjamincdea40c2015-03-19 14:09:43 -0400782
David Benjamin9a41d1b2015-05-16 01:30:09 -0400783 // SendSplitAlert, if true, causes an alert to be sent with the header
784 // and record body split across multiple packets. The peer should
785 // discard these packets rather than process it.
786 SendSplitAlert bool
787
David Benjamin4b27d9f2015-05-12 22:42:52 -0400788 // FailIfResumeOnRenego, if true, causes renegotiations to fail if the
789 // client offers a resumption or the server accepts one.
790 FailIfResumeOnRenego bool
David Benjamin3c9746a2015-03-19 15:00:10 -0400791
David Benjamin67d1fb52015-03-16 15:16:23 -0400792 // IgnorePeerCipherPreferences, if true, causes the peer's cipher
793 // preferences to be ignored.
794 IgnorePeerCipherPreferences bool
David Benjamin72dc7832015-03-16 17:49:43 -0400795
796 // IgnorePeerSignatureAlgorithmPreferences, if true, causes the peer's
797 // signature algorithm preferences to be ignored.
798 IgnorePeerSignatureAlgorithmPreferences bool
David Benjamin340d5ed2015-03-21 02:21:37 -0400799
David Benjaminc574f412015-04-20 11:13:01 -0400800 // IgnorePeerCurvePreferences, if true, causes the peer's curve
801 // preferences to be ignored.
802 IgnorePeerCurvePreferences bool
803
David Benjamin513f0ea2015-04-02 19:33:31 -0400804 // BadFinished, if true, causes the Finished hash to be broken.
805 BadFinished bool
Adam Langleya7997f12015-05-14 17:38:50 -0700806
807 // DHGroupPrime, if not nil, is used to define the (finite field)
808 // Diffie-Hellman group. The generator used is always two.
809 DHGroupPrime *big.Int
David Benjaminbd15a8e2015-05-29 18:48:16 -0400810
David Benjamin582ba042016-07-07 12:33:25 -0700811 // PackHandshakeFragments, if true, causes handshake fragments in DTLS
812 // to be packed into individual handshake records, up to the specified
813 // record size.
David Benjaminbd15a8e2015-05-29 18:48:16 -0400814 PackHandshakeFragments int
815
David Benjamin582ba042016-07-07 12:33:25 -0700816 // PackHandshakeRecords, if true, causes handshake records in DTLS to be
817 // packed into individual packets, up to the specified packet size.
David Benjaminbd15a8e2015-05-29 18:48:16 -0400818 PackHandshakeRecords int
David Benjamin0fa40122015-05-30 17:13:12 -0400819
David Benjamin582ba042016-07-07 12:33:25 -0700820 // PackHandshakeFlight, if true, causes each handshake flight in TLS to
821 // be packed into records, up to the largest size record available.
822 PackHandshakeFlight bool
823
David Benjamin0407e762016-06-17 16:41:18 -0400824 // EnableAllCiphers, if true, causes all configured ciphers to be
825 // enabled.
826 EnableAllCiphers bool
David Benjamin8923c0b2015-06-07 11:42:34 -0400827
828 // EmptyCertificateList, if true, causes the server to send an empty
829 // certificate list in the Certificate message.
830 EmptyCertificateList bool
David Benjamind98452d2015-06-16 14:16:23 -0400831
832 // ExpectNewTicket, if true, causes the client to abort if it does not
833 // receive a new ticket.
834 ExpectNewTicket bool
Adam Langley33ad2b52015-07-20 17:43:53 -0700835
836 // RequireClientHelloSize, if not zero, is the required length in bytes
837 // of the ClientHello /record/. This is checked by the server.
838 RequireClientHelloSize int
Adam Langley09505632015-07-30 18:10:13 -0700839
840 // CustomExtension, if not empty, contains the contents of an extension
841 // that will be added to client/server hellos.
842 CustomExtension string
843
844 // ExpectedCustomExtension, if not nil, contains the expected contents
845 // of a custom extension.
846 ExpectedCustomExtension *string
David Benjamin30789da2015-08-29 22:56:45 -0400847
848 // NoCloseNotify, if true, causes the close_notify alert to be skipped
849 // on connection shutdown.
850 NoCloseNotify bool
851
David Benjaminfa214e42016-05-10 17:03:10 -0400852 // SendAlertOnShutdown, if non-zero, is the alert to send instead of
853 // close_notify on shutdown.
854 SendAlertOnShutdown alert
855
David Benjamin30789da2015-08-29 22:56:45 -0400856 // ExpectCloseNotify, if true, requires a close_notify from the peer on
857 // shutdown. Records from the peer received after close_notify is sent
858 // are not discard.
859 ExpectCloseNotify bool
David Benjamin2c99d282015-09-01 10:23:00 -0400860
861 // SendLargeRecords, if true, allows outgoing records to be sent
862 // arbitrarily large.
863 SendLargeRecords bool
David Benjamin76c2efc2015-08-31 14:24:29 -0400864
865 // NegotiateALPNAndNPN, if true, causes the server to negotiate both
866 // ALPN and NPN in the same connetion.
867 NegotiateALPNAndNPN bool
David Benjamindd6fed92015-10-23 17:41:12 -0400868
869 // SendEmptySessionTicket, if true, causes the server to send an empty
870 // session ticket.
871 SendEmptySessionTicket bool
872
873 // FailIfSessionOffered, if true, causes the server to fail any
874 // connections where the client offers a non-empty session ID or session
875 // ticket.
876 FailIfSessionOffered bool
Adam Langley27a0d082015-11-03 13:34:10 -0800877
878 // SendHelloRequestBeforeEveryAppDataRecord, if true, causes a
879 // HelloRequest handshake message to be sent before each application
880 // data record. This only makes sense for a server.
881 SendHelloRequestBeforeEveryAppDataRecord bool
Adam Langleyc4f25ce2015-11-26 16:39:08 -0800882
David Benjamin71dd6662016-07-08 14:10:48 -0700883 // SendHelloRequestBeforeEveryHandshakeMessage, if true, causes a
884 // HelloRequest handshake message to be sent before each handshake
885 // message. This only makes sense for a server.
886 SendHelloRequestBeforeEveryHandshakeMessage bool
887
Steven Valdez1dc53d22016-07-26 12:27:38 -0400888 // SendKeyUpdateBeforeEveryAppDataRecord, if true, causes a KeyUpdate
889 // handshake message to be sent before each application data record.
890 SendKeyUpdateBeforeEveryAppDataRecord bool
891
Adam Langleyc4f25ce2015-11-26 16:39:08 -0800892 // RequireDHPublicValueLen causes a fatal error if the length (in
893 // bytes) of the server's Diffie-Hellman public value is not equal to
894 // this.
895 RequireDHPublicValueLen int
David Benjamin8411b242015-11-26 12:07:28 -0500896
897 // BadChangeCipherSpec, if not nil, is the body to be sent in
898 // ChangeCipherSpec records instead of {1}.
899 BadChangeCipherSpec []byte
David Benjaminef5dfd22015-12-06 13:17:07 -0500900
901 // BadHelloRequest, if not nil, is what to send instead of a
902 // HelloRequest.
903 BadHelloRequest []byte
David Benjaminef1b0092015-11-21 14:05:44 -0500904
905 // RequireSessionTickets, if true, causes the client to require new
906 // sessions use session tickets instead of session IDs.
907 RequireSessionTickets bool
David Benjaminf2b83632016-03-01 22:57:46 -0500908
909 // NullAllCiphers, if true, causes every cipher to behave like the null
910 // cipher.
911 NullAllCiphers bool
David Benjamin80d1b352016-05-04 19:19:06 -0400912
913 // SendSCTListOnResume, if not nil, causes the server to send the
914 // supplied SCT list in resumption handshakes.
915 SendSCTListOnResume []byte
Matt Braithwaite54217e42016-06-13 13:03:47 -0700916
917 // CECPQ1BadX25519Part corrupts the X25519 part of a CECPQ1 key exchange, as
918 // a trivial proof that it is actually used.
919 CECPQ1BadX25519Part bool
920
921 // CECPQ1BadNewhopePart corrupts the Newhope part of a CECPQ1 key exchange,
922 // as a trivial proof that it is actually used.
923 CECPQ1BadNewhopePart bool
David Benjaminc9ae27c2016-06-24 22:56:37 -0400924
925 // RecordPadding is the number of bytes of padding to add to each
926 // encrypted record in TLS 1.3.
927 RecordPadding int
928
929 // OmitRecordContents, if true, causes encrypted records in TLS 1.3 to
930 // be missing their body and content type. Padding, if configured, is
931 // still added.
932 OmitRecordContents bool
933
934 // OuterRecordType, if non-zero, is the outer record type to use instead
935 // of application data.
936 OuterRecordType recordType
David Benjamina95e9f32016-07-08 16:28:04 -0700937
938 // SendSignatureAlgorithm, if non-zero, causes all signatures to be sent
939 // with the given signature algorithm rather than the one negotiated.
940 SendSignatureAlgorithm signatureAlgorithm
David Benjamin1fb125c2016-07-08 18:52:12 -0700941
942 // SkipECDSACurveCheck, if true, causes all ECDSA curve checks to be
943 // skipped.
944 SkipECDSACurveCheck bool
David Benjaminfd5c45f2016-06-30 18:30:40 -0400945
946 // IgnoreSignatureVersionChecks, if true, causes all signature
947 // algorithms to be enabled at all TLS versions.
948 IgnoreSignatureVersionChecks bool
Steven Valdez143e8b32016-07-11 13:19:03 -0400949
950 // NegotiateRenegotiationInfoAtAllVersions, if true, causes
951 // Renegotiation Info to be negotiated at all versions.
952 NegotiateRenegotiationInfoAtAllVersions bool
953
954 // NegotiateChannelIDAtAllVersions, if true, causes Channel ID to be
955 // negotiated at all versions.
956 NegotiateChannelIDAtAllVersions bool
957
958 // NegotiateNPNAtAllVersions, if true, causes NPN to be negotiated at
959 // all versions.
960 NegotiateNPNAtAllVersions bool
961
962 // NegotiateEMSAtAllVersions, if true, causes EMS to be negotiated at
963 // all versions.
964 NegotiateEMSAtAllVersions bool
965
966 // AdvertiseTicketExtension, if true, causes the ticket extension to be
967 // advertised in server extensions
968 AdvertiseTicketExtension bool
969
970 // MissingKeyShare, if true, causes the TLS 1.3 implementation to skip
971 // sending a key_share extension and use the zero ECDHE secret
972 // instead.
973 MissingKeyShare bool
974
Steven Valdez5440fe02016-07-18 12:40:30 -0400975 // SecondClientHelloMissingKeyShare, if true, causes the second TLS 1.3
976 // ClientHello to skip sending a key_share extension and use the zero
977 // ECDHE secret instead.
978 SecondClientHelloMissingKeyShare bool
979
980 // MisinterpretHelloRetryRequestCurve, if non-zero, causes the TLS 1.3
981 // client to pretend the server requested a HelloRetryRequest with the
982 // given curve rather than the actual one.
983 MisinterpretHelloRetryRequestCurve CurveID
984
Steven Valdez143e8b32016-07-11 13:19:03 -0400985 // DuplicateKeyShares, if true, causes the TLS 1.3 client to send two
986 // copies of each KeyShareEntry.
987 DuplicateKeyShares bool
988
989 // EmptyEncryptedExtensions, if true, causes the TLS 1.3 server to
990 // emit an empty EncryptedExtensions block.
991 EmptyEncryptedExtensions bool
992
993 // EncryptedExtensionsWithKeyShare, if true, causes the TLS 1.3 server to
994 // include the KeyShare extension in the EncryptedExtensions block.
995 EncryptedExtensionsWithKeyShare bool
Steven Valdez5440fe02016-07-18 12:40:30 -0400996
997 // UnnecessaryHelloRetryRequest, if true, causes the TLS 1.3 server to
998 // send a HelloRetryRequest regardless of whether it needs to.
999 UnnecessaryHelloRetryRequest bool
1000
1001 // SecondHelloRetryRequest, if true, causes the TLS 1.3 server to send
1002 // two HelloRetryRequests instead of one.
1003 SecondHelloRetryRequest bool
1004
1005 // SendServerHelloVersion, if non-zero, causes the server to send the
1006 // specified version in ServerHello rather than the true version.
1007 SendServerHelloVersion uint16
1008
1009 // SkipHelloRetryRequest, if true, causes the TLS 1.3 server to not send
1010 // HelloRetryRequest.
1011 SkipHelloRetryRequest bool
David Benjamin12d2c482016-07-24 10:56:51 -04001012
1013 // PackHelloRequestWithFinished, if true, causes the TLS server to send
1014 // HelloRequest in the same record as Finished.
1015 PackHelloRequestWithFinished bool
David Benjamin02edcd02016-07-27 17:40:37 -04001016
1017 // SendExtraFinished, if true, causes an extra Finished message to be
1018 // sent.
1019 SendExtraFinished bool
Adam Langley95c29f32014-06-20 12:00:00 -07001020}
1021
1022func (c *Config) serverInit() {
1023 if c.SessionTicketsDisabled {
1024 return
1025 }
1026
1027 // If the key has already been set then we have nothing to do.
1028 for _, b := range c.SessionTicketKey {
1029 if b != 0 {
1030 return
1031 }
1032 }
1033
1034 if _, err := io.ReadFull(c.rand(), c.SessionTicketKey[:]); err != nil {
1035 c.SessionTicketsDisabled = true
1036 }
1037}
1038
1039func (c *Config) rand() io.Reader {
1040 r := c.Rand
1041 if r == nil {
1042 return rand.Reader
1043 }
1044 return r
1045}
1046
1047func (c *Config) time() time.Time {
1048 t := c.Time
1049 if t == nil {
1050 t = time.Now
1051 }
1052 return t()
1053}
1054
1055func (c *Config) cipherSuites() []uint16 {
1056 s := c.CipherSuites
1057 if s == nil {
1058 s = defaultCipherSuites()
1059 }
1060 return s
1061}
1062
David Benjamincecee272016-06-30 13:33:47 -04001063func (c *Config) minVersion(isDTLS bool) uint16 {
1064 ret := uint16(minVersion)
1065 if c != nil && c.MinVersion != 0 {
1066 ret = c.MinVersion
Adam Langley95c29f32014-06-20 12:00:00 -07001067 }
David Benjamincecee272016-06-30 13:33:47 -04001068 if isDTLS {
1069 // The lowest version of DTLS is 1.0. There is no DSSL 3.0.
1070 if ret < VersionTLS10 {
1071 return VersionTLS10
1072 }
1073 // There is no such thing as DTLS 1.1.
1074 if ret == VersionTLS11 {
1075 return VersionTLS12
1076 }
1077 }
1078 return ret
Adam Langley95c29f32014-06-20 12:00:00 -07001079}
1080
David Benjamincecee272016-06-30 13:33:47 -04001081func (c *Config) maxVersion(isDTLS bool) uint16 {
1082 ret := uint16(maxVersion)
1083 if c != nil && c.MaxVersion != 0 {
1084 ret = c.MaxVersion
Adam Langley95c29f32014-06-20 12:00:00 -07001085 }
David Benjamincecee272016-06-30 13:33:47 -04001086 if isDTLS {
1087 // We only implement up to DTLS 1.2.
1088 if ret > VersionTLS12 {
1089 return VersionTLS12
1090 }
1091 // There is no such thing as DTLS 1.1.
1092 if ret == VersionTLS11 {
1093 return VersionTLS10
1094 }
1095 }
1096 return ret
Adam Langley95c29f32014-06-20 12:00:00 -07001097}
1098
David Benjamincba2b622015-12-18 22:13:41 -05001099var defaultCurvePreferences = []CurveID{CurveX25519, CurveP256, CurveP384, CurveP521}
Adam Langley95c29f32014-06-20 12:00:00 -07001100
1101func (c *Config) curvePreferences() []CurveID {
1102 if c == nil || len(c.CurvePreferences) == 0 {
1103 return defaultCurvePreferences
1104 }
1105 return c.CurvePreferences
1106}
1107
Nick Harperdcfbc672016-07-16 17:47:31 +02001108func (c *Config) defaultCurves() map[CurveID]bool {
1109 defaultCurves := make(map[CurveID]bool)
1110 curves := c.DefaultCurves
1111 if c == nil || c.DefaultCurves == nil {
1112 curves = c.curvePreferences()
1113 }
1114 for _, curveID := range curves {
1115 defaultCurves[curveID] = true
1116 }
1117 return defaultCurves
1118}
1119
Adam Langley95c29f32014-06-20 12:00:00 -07001120// mutualVersion returns the protocol version to use given the advertised
1121// version of the peer.
David Benjamincecee272016-06-30 13:33:47 -04001122func (c *Config) mutualVersion(vers uint16, isDTLS bool) (uint16, bool) {
1123 // There is no such thing as DTLS 1.1.
1124 if isDTLS && vers == VersionTLS11 {
1125 vers = VersionTLS10
1126 }
1127
1128 minVersion := c.minVersion(isDTLS)
1129 maxVersion := c.maxVersion(isDTLS)
Adam Langley95c29f32014-06-20 12:00:00 -07001130
1131 if vers < minVersion {
1132 return 0, false
1133 }
1134 if vers > maxVersion {
1135 vers = maxVersion
1136 }
1137 return vers, true
1138}
1139
1140// getCertificateForName returns the best certificate for the given name,
1141// defaulting to the first element of c.Certificates if there are no good
1142// options.
1143func (c *Config) getCertificateForName(name string) *Certificate {
1144 if len(c.Certificates) == 1 || c.NameToCertificate == nil {
1145 // There's only one choice, so no point doing any work.
1146 return &c.Certificates[0]
1147 }
1148
1149 name = strings.ToLower(name)
1150 for len(name) > 0 && name[len(name)-1] == '.' {
1151 name = name[:len(name)-1]
1152 }
1153
1154 if cert, ok := c.NameToCertificate[name]; ok {
1155 return cert
1156 }
1157
1158 // try replacing labels in the name with wildcards until we get a
1159 // match.
1160 labels := strings.Split(name, ".")
1161 for i := range labels {
1162 labels[i] = "*"
1163 candidate := strings.Join(labels, ".")
1164 if cert, ok := c.NameToCertificate[candidate]; ok {
1165 return cert
1166 }
1167 }
1168
1169 // If nothing matches, return the first certificate.
1170 return &c.Certificates[0]
1171}
1172
David Benjamin7a41d372016-07-09 11:21:54 -07001173func (c *Config) signSignatureAlgorithms() []signatureAlgorithm {
1174 if c != nil && c.SignSignatureAlgorithms != nil {
1175 return c.SignSignatureAlgorithms
David Benjamin000800a2014-11-14 01:43:59 -05001176 }
David Benjamin7a41d372016-07-09 11:21:54 -07001177 return supportedSignatureAlgorithms
David Benjamin000800a2014-11-14 01:43:59 -05001178}
1179
David Benjamin7a41d372016-07-09 11:21:54 -07001180func (c *Config) verifySignatureAlgorithms() []signatureAlgorithm {
1181 if c != nil && c.VerifySignatureAlgorithms != nil {
1182 return c.VerifySignatureAlgorithms
David Benjamin000800a2014-11-14 01:43:59 -05001183 }
David Benjamin7a41d372016-07-09 11:21:54 -07001184 return supportedSignatureAlgorithms
David Benjamin000800a2014-11-14 01:43:59 -05001185}
1186
Adam Langley95c29f32014-06-20 12:00:00 -07001187// BuildNameToCertificate parses c.Certificates and builds c.NameToCertificate
1188// from the CommonName and SubjectAlternateName fields of each of the leaf
1189// certificates.
1190func (c *Config) BuildNameToCertificate() {
1191 c.NameToCertificate = make(map[string]*Certificate)
1192 for i := range c.Certificates {
1193 cert := &c.Certificates[i]
1194 x509Cert, err := x509.ParseCertificate(cert.Certificate[0])
1195 if err != nil {
1196 continue
1197 }
1198 if len(x509Cert.Subject.CommonName) > 0 {
1199 c.NameToCertificate[x509Cert.Subject.CommonName] = cert
1200 }
1201 for _, san := range x509Cert.DNSNames {
1202 c.NameToCertificate[san] = cert
1203 }
1204 }
1205}
1206
1207// A Certificate is a chain of one or more certificates, leaf first.
1208type Certificate struct {
1209 Certificate [][]byte
1210 PrivateKey crypto.PrivateKey // supported types: *rsa.PrivateKey, *ecdsa.PrivateKey
1211 // OCSPStaple contains an optional OCSP response which will be served
1212 // to clients that request it.
1213 OCSPStaple []byte
David Benjamin61f95272014-11-25 01:55:35 -05001214 // SignedCertificateTimestampList contains an optional encoded
1215 // SignedCertificateTimestampList structure which will be
1216 // served to clients that request it.
1217 SignedCertificateTimestampList []byte
Adam Langley95c29f32014-06-20 12:00:00 -07001218 // Leaf is the parsed form of the leaf certificate, which may be
1219 // initialized using x509.ParseCertificate to reduce per-handshake
1220 // processing for TLS clients doing client authentication. If nil, the
1221 // leaf certificate will be parsed as needed.
1222 Leaf *x509.Certificate
1223}
1224
1225// A TLS record.
1226type record struct {
1227 contentType recordType
1228 major, minor uint8
1229 payload []byte
1230}
1231
1232type handshakeMessage interface {
1233 marshal() []byte
1234 unmarshal([]byte) bool
1235}
1236
David Benjaminfe8eb9a2014-11-17 03:19:02 -05001237// lruSessionCache is a client or server session cache implementation
1238// that uses an LRU caching strategy.
Adam Langley95c29f32014-06-20 12:00:00 -07001239type lruSessionCache struct {
1240 sync.Mutex
1241
1242 m map[string]*list.Element
1243 q *list.List
1244 capacity int
1245}
1246
1247type lruSessionCacheEntry struct {
1248 sessionKey string
David Benjaminfe8eb9a2014-11-17 03:19:02 -05001249 state interface{}
Adam Langley95c29f32014-06-20 12:00:00 -07001250}
1251
1252// Put adds the provided (sessionKey, cs) pair to the cache.
David Benjaminfe8eb9a2014-11-17 03:19:02 -05001253func (c *lruSessionCache) Put(sessionKey string, cs interface{}) {
Adam Langley95c29f32014-06-20 12:00:00 -07001254 c.Lock()
1255 defer c.Unlock()
1256
1257 if elem, ok := c.m[sessionKey]; ok {
1258 entry := elem.Value.(*lruSessionCacheEntry)
1259 entry.state = cs
1260 c.q.MoveToFront(elem)
1261 return
1262 }
1263
1264 if c.q.Len() < c.capacity {
1265 entry := &lruSessionCacheEntry{sessionKey, cs}
1266 c.m[sessionKey] = c.q.PushFront(entry)
1267 return
1268 }
1269
1270 elem := c.q.Back()
1271 entry := elem.Value.(*lruSessionCacheEntry)
1272 delete(c.m, entry.sessionKey)
1273 entry.sessionKey = sessionKey
1274 entry.state = cs
1275 c.q.MoveToFront(elem)
1276 c.m[sessionKey] = elem
1277}
1278
David Benjaminfe8eb9a2014-11-17 03:19:02 -05001279// Get returns the value associated with a given key. It returns (nil,
1280// false) if no value is found.
1281func (c *lruSessionCache) Get(sessionKey string) (interface{}, bool) {
Adam Langley95c29f32014-06-20 12:00:00 -07001282 c.Lock()
1283 defer c.Unlock()
1284
1285 if elem, ok := c.m[sessionKey]; ok {
1286 c.q.MoveToFront(elem)
1287 return elem.Value.(*lruSessionCacheEntry).state, true
1288 }
1289 return nil, false
1290}
1291
David Benjaminfe8eb9a2014-11-17 03:19:02 -05001292// lruClientSessionCache is a ClientSessionCache implementation that
1293// uses an LRU caching strategy.
1294type lruClientSessionCache struct {
1295 lruSessionCache
1296}
1297
1298func (c *lruClientSessionCache) Put(sessionKey string, cs *ClientSessionState) {
1299 c.lruSessionCache.Put(sessionKey, cs)
1300}
1301
1302func (c *lruClientSessionCache) Get(sessionKey string) (*ClientSessionState, bool) {
1303 cs, ok := c.lruSessionCache.Get(sessionKey)
1304 if !ok {
1305 return nil, false
1306 }
1307 return cs.(*ClientSessionState), true
1308}
1309
1310// lruServerSessionCache is a ServerSessionCache implementation that
1311// uses an LRU caching strategy.
1312type lruServerSessionCache struct {
1313 lruSessionCache
1314}
1315
1316func (c *lruServerSessionCache) Put(sessionId string, session *sessionState) {
1317 c.lruSessionCache.Put(sessionId, session)
1318}
1319
1320func (c *lruServerSessionCache) Get(sessionId string) (*sessionState, bool) {
1321 cs, ok := c.lruSessionCache.Get(sessionId)
1322 if !ok {
1323 return nil, false
1324 }
1325 return cs.(*sessionState), true
1326}
1327
1328// NewLRUClientSessionCache returns a ClientSessionCache with the given
1329// capacity that uses an LRU strategy. If capacity is < 1, a default capacity
1330// is used instead.
1331func NewLRUClientSessionCache(capacity int) ClientSessionCache {
1332 const defaultSessionCacheCapacity = 64
1333
1334 if capacity < 1 {
1335 capacity = defaultSessionCacheCapacity
1336 }
1337 return &lruClientSessionCache{
1338 lruSessionCache{
1339 m: make(map[string]*list.Element),
1340 q: list.New(),
1341 capacity: capacity,
1342 },
1343 }
1344}
1345
1346// NewLRUServerSessionCache returns a ServerSessionCache with the given
1347// capacity that uses an LRU strategy. If capacity is < 1, a default capacity
1348// is used instead.
1349func NewLRUServerSessionCache(capacity int) ServerSessionCache {
1350 const defaultSessionCacheCapacity = 64
1351
1352 if capacity < 1 {
1353 capacity = defaultSessionCacheCapacity
1354 }
1355 return &lruServerSessionCache{
1356 lruSessionCache{
1357 m: make(map[string]*list.Element),
1358 q: list.New(),
1359 capacity: capacity,
1360 },
1361 }
1362}
1363
Adam Langley95c29f32014-06-20 12:00:00 -07001364// TODO(jsing): Make these available to both crypto/x509 and crypto/tls.
1365type dsaSignature struct {
1366 R, S *big.Int
1367}
1368
1369type ecdsaSignature dsaSignature
1370
1371var emptyConfig Config
1372
1373func defaultConfig() *Config {
1374 return &emptyConfig
1375}
1376
1377var (
1378 once sync.Once
1379 varDefaultCipherSuites []uint16
1380)
1381
1382func defaultCipherSuites() []uint16 {
1383 once.Do(initDefaultCipherSuites)
1384 return varDefaultCipherSuites
1385}
1386
1387func initDefaultCipherSuites() {
David Benjamin48cae082014-10-27 01:06:24 -04001388 for _, suite := range cipherSuites {
1389 if suite.flags&suitePSK == 0 {
1390 varDefaultCipherSuites = append(varDefaultCipherSuites, suite.id)
1391 }
Adam Langley95c29f32014-06-20 12:00:00 -07001392 }
1393}
1394
1395func unexpectedMessageError(wanted, got interface{}) error {
1396 return fmt.Errorf("tls: received unexpected handshake message of type %T when waiting for %T", got, wanted)
1397}
David Benjamin000800a2014-11-14 01:43:59 -05001398
Nick Harper60edffd2016-06-21 15:19:24 -07001399func isSupportedSignatureAlgorithm(sigAlg signatureAlgorithm, sigAlgs []signatureAlgorithm) bool {
1400 for _, s := range sigAlgs {
1401 if s == sigAlg {
David Benjamin000800a2014-11-14 01:43:59 -05001402 return true
1403 }
1404 }
1405 return false
1406}
Nick Harper85f20c22016-07-04 10:11:59 -07001407
1408var (
1409 // See draft-ietf-tls-tls13-13, section 6.3.1.2.
1410 downgradeTLS13 = []byte{0x44, 0x4f, 0x57, 0x4e, 0x47, 0x52, 0x44, 0x01}
1411 downgradeTLS12 = []byte{0x44, 0x4f, 0x57, 0x4e, 0x47, 0x52, 0x44, 0x00}
1412)