Alternative TLS implementation in Go
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

286 lines
9.9 KiB

  1. // Copyright 2010 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. package tls
  5. import (
  6. "crypto/aes"
  7. "crypto/cipher"
  8. "crypto/des"
  9. "crypto/hmac"
  10. "crypto/rc4"
  11. "crypto/sha1"
  12. "crypto/x509"
  13. "hash"
  14. )
  15. // a keyAgreement implements the client and server side of a TLS key agreement
  16. // protocol by generating and processing key exchange messages.
  17. type keyAgreement interface {
  18. // On the server side, the first two methods are called in order.
  19. // In the case that the key agreement protocol doesn't use a
  20. // ServerKeyExchange message, generateServerKeyExchange can return nil,
  21. // nil.
  22. generateServerKeyExchange(*Config, *Certificate, *clientHelloMsg, *serverHelloMsg) (*serverKeyExchangeMsg, error)
  23. processClientKeyExchange(*Config, *Certificate, *clientKeyExchangeMsg, uint16) ([]byte, error)
  24. // On the client side, the next two methods are called in order.
  25. // This method may not be called if the server doesn't send a
  26. // ServerKeyExchange message.
  27. processServerKeyExchange(*Config, *clientHelloMsg, *serverHelloMsg, *x509.Certificate, *serverKeyExchangeMsg) error
  28. generateClientKeyExchange(*Config, *clientHelloMsg, *x509.Certificate) ([]byte, *clientKeyExchangeMsg, error)
  29. }
  30. const (
  31. // suiteECDH indicates that the cipher suite involves elliptic curve
  32. // Diffie-Hellman. This means that it should only be selected when the
  33. // client indicates that it supports ECC with a curve and point format
  34. // that we're happy with.
  35. suiteECDHE = 1 << iota
  36. // suiteECDSA indicates that the cipher suite involves an ECDSA
  37. // signature and therefore may only be selected when the server's
  38. // certificate is ECDSA. If this is not set then the cipher suite is
  39. // RSA based.
  40. suiteECDSA
  41. // suiteTLS12 indicates that the cipher suite should only be advertised
  42. // and accepted when using TLS 1.2.
  43. suiteTLS12
  44. // suiteSHA384 indicates that the cipher suite uses SHA384 as the
  45. // handshake hash.
  46. suiteSHA384
  47. // suiteDefaultOff indicates that this cipher suite is not included by
  48. // default.
  49. suiteDefaultOff
  50. )
  51. // A cipherSuite is a specific combination of key agreement, cipher and MAC
  52. // function. All cipher suites currently assume RSA key agreement.
  53. type cipherSuite struct {
  54. id uint16
  55. // the lengths, in bytes, of the key material needed for each component.
  56. keyLen int
  57. macLen int
  58. ivLen int
  59. ka func(version uint16) keyAgreement
  60. // flags is a bitmask of the suite* values, above.
  61. flags int
  62. cipher func(key, iv []byte, isRead bool) interface{}
  63. mac func(version uint16, macKey []byte) macFunction
  64. aead func(key, fixedNonce []byte) cipher.AEAD
  65. }
  66. var cipherSuites = []*cipherSuite{
  67. // Ciphersuite order is chosen so that ECDHE comes before plain RSA
  68. // and RC4 comes before AES (because of the Lucky13 attack).
  69. {TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, 16, 0, 4, ecdheRSAKA, suiteECDHE | suiteTLS12, nil, nil, aeadAESGCM},
  70. {TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, 16, 0, 4, ecdheECDSAKA, suiteECDHE | suiteECDSA | suiteTLS12, nil, nil, aeadAESGCM},
  71. {TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384, 32, 0, 4, ecdheRSAKA, suiteECDHE | suiteTLS12 | suiteSHA384, nil, nil, aeadAESGCM},
  72. {TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384, 32, 0, 4, ecdheECDSAKA, suiteECDHE | suiteECDSA | suiteTLS12 | suiteSHA384, nil, nil, aeadAESGCM},
  73. {TLS_ECDHE_RSA_WITH_RC4_128_SHA, 16, 20, 0, ecdheRSAKA, suiteECDHE | suiteDefaultOff, cipherRC4, macSHA1, nil},
  74. {TLS_ECDHE_ECDSA_WITH_RC4_128_SHA, 16, 20, 0, ecdheECDSAKA, suiteECDHE | suiteECDSA | suiteDefaultOff, cipherRC4, macSHA1, nil},
  75. {TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA, 16, 20, 16, ecdheRSAKA, suiteECDHE, cipherAES, macSHA1, nil},
  76. {TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA, 16, 20, 16, ecdheECDSAKA, suiteECDHE | suiteECDSA, cipherAES, macSHA1, nil},
  77. {TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA, 32, 20, 16, ecdheRSAKA, suiteECDHE, cipherAES, macSHA1, nil},
  78. {TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA, 32, 20, 16, ecdheECDSAKA, suiteECDHE | suiteECDSA, cipherAES, macSHA1, nil},
  79. {TLS_RSA_WITH_RC4_128_SHA, 16, 20, 0, rsaKA, suiteDefaultOff, cipherRC4, macSHA1, nil},
  80. {TLS_RSA_WITH_AES_128_CBC_SHA, 16, 20, 16, rsaKA, 0, cipherAES, macSHA1, nil},
  81. {TLS_RSA_WITH_AES_256_CBC_SHA, 32, 20, 16, rsaKA, 0, cipherAES, macSHA1, nil},
  82. {TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA, 24, 20, 8, ecdheRSAKA, suiteECDHE, cipher3DES, macSHA1, nil},
  83. {TLS_RSA_WITH_3DES_EDE_CBC_SHA, 24, 20, 8, rsaKA, 0, cipher3DES, macSHA1, nil},
  84. }
  85. func cipherRC4(key, iv []byte, isRead bool) interface{} {
  86. cipher, _ := rc4.NewCipher(key)
  87. return cipher
  88. }
  89. func cipher3DES(key, iv []byte, isRead bool) interface{} {
  90. block, _ := des.NewTripleDESCipher(key)
  91. if isRead {
  92. return cipher.NewCBCDecrypter(block, iv)
  93. }
  94. return cipher.NewCBCEncrypter(block, iv)
  95. }
  96. func cipherAES(key, iv []byte, isRead bool) interface{} {
  97. block, _ := aes.NewCipher(key)
  98. if isRead {
  99. return cipher.NewCBCDecrypter(block, iv)
  100. }
  101. return cipher.NewCBCEncrypter(block, iv)
  102. }
  103. // macSHA1 returns a macFunction for the given protocol version.
  104. func macSHA1(version uint16, key []byte) macFunction {
  105. if version == VersionSSL30 {
  106. mac := ssl30MAC{
  107. h: sha1.New(),
  108. key: make([]byte, len(key)),
  109. }
  110. copy(mac.key, key)
  111. return mac
  112. }
  113. return tls10MAC{hmac.New(sha1.New, key)}
  114. }
  115. type macFunction interface {
  116. Size() int
  117. MAC(digestBuf, seq, header, data []byte) []byte
  118. }
  119. // fixedNonceAEAD wraps an AEAD and prefixes a fixed portion of the nonce to
  120. // each call.
  121. type fixedNonceAEAD struct {
  122. // sealNonce and openNonce are buffers where the larger nonce will be
  123. // constructed. Since a seal and open operation may be running
  124. // concurrently, there is a separate buffer for each.
  125. sealNonce, openNonce []byte
  126. aead cipher.AEAD
  127. }
  128. func (f *fixedNonceAEAD) NonceSize() int { return 8 }
  129. func (f *fixedNonceAEAD) Overhead() int { return f.aead.Overhead() }
  130. func (f *fixedNonceAEAD) Seal(out, nonce, plaintext, additionalData []byte) []byte {
  131. copy(f.sealNonce[len(f.sealNonce)-8:], nonce)
  132. return f.aead.Seal(out, f.sealNonce, plaintext, additionalData)
  133. }
  134. func (f *fixedNonceAEAD) Open(out, nonce, plaintext, additionalData []byte) ([]byte, error) {
  135. copy(f.openNonce[len(f.openNonce)-8:], nonce)
  136. return f.aead.Open(out, f.openNonce, plaintext, additionalData)
  137. }
  138. func aeadAESGCM(key, fixedNonce []byte) cipher.AEAD {
  139. aes, err := aes.NewCipher(key)
  140. if err != nil {
  141. panic(err)
  142. }
  143. aead, err := cipher.NewGCM(aes)
  144. if err != nil {
  145. panic(err)
  146. }
  147. nonce1, nonce2 := make([]byte, 12), make([]byte, 12)
  148. copy(nonce1, fixedNonce)
  149. copy(nonce2, fixedNonce)
  150. return &fixedNonceAEAD{nonce1, nonce2, aead}
  151. }
  152. // ssl30MAC implements the SSLv3 MAC function, as defined in
  153. // www.mozilla.org/projects/security/pki/nss/ssl/draft302.txt section 5.2.3.1
  154. type ssl30MAC struct {
  155. h hash.Hash
  156. key []byte
  157. }
  158. func (s ssl30MAC) Size() int {
  159. return s.h.Size()
  160. }
  161. var ssl30Pad1 = [48]byte{0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36}
  162. var ssl30Pad2 = [48]byte{0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c}
  163. func (s ssl30MAC) MAC(digestBuf, seq, header, data []byte) []byte {
  164. padLength := 48
  165. if s.h.Size() == 20 {
  166. padLength = 40
  167. }
  168. s.h.Reset()
  169. s.h.Write(s.key)
  170. s.h.Write(ssl30Pad1[:padLength])
  171. s.h.Write(seq)
  172. s.h.Write(header[:1])
  173. s.h.Write(header[3:5])
  174. s.h.Write(data)
  175. digestBuf = s.h.Sum(digestBuf[:0])
  176. s.h.Reset()
  177. s.h.Write(s.key)
  178. s.h.Write(ssl30Pad2[:padLength])
  179. s.h.Write(digestBuf)
  180. return s.h.Sum(digestBuf[:0])
  181. }
  182. // tls10MAC implements the TLS 1.0 MAC function. RFC 2246, section 6.2.3.
  183. type tls10MAC struct {
  184. h hash.Hash
  185. }
  186. func (s tls10MAC) Size() int {
  187. return s.h.Size()
  188. }
  189. func (s tls10MAC) MAC(digestBuf, seq, header, data []byte) []byte {
  190. s.h.Reset()
  191. s.h.Write(seq)
  192. s.h.Write(header)
  193. s.h.Write(data)
  194. return s.h.Sum(digestBuf[:0])
  195. }
  196. func rsaKA(version uint16) keyAgreement {
  197. return rsaKeyAgreement{}
  198. }
  199. func ecdheECDSAKA(version uint16) keyAgreement {
  200. return &ecdheKeyAgreement{
  201. sigType: signatureECDSA,
  202. version: version,
  203. }
  204. }
  205. func ecdheRSAKA(version uint16) keyAgreement {
  206. return &ecdheKeyAgreement{
  207. sigType: signatureRSA,
  208. version: version,
  209. }
  210. }
  211. // mutualCipherSuite returns a cipherSuite given a list of supported
  212. // ciphersuites and the id requested by the peer.
  213. func mutualCipherSuite(have []uint16, want uint16) *cipherSuite {
  214. for _, id := range have {
  215. if id == want {
  216. for _, suite := range cipherSuites {
  217. if suite.id == want {
  218. return suite
  219. }
  220. }
  221. return nil
  222. }
  223. }
  224. return nil
  225. }
  226. // A list of the possible cipher suite ids. Taken from
  227. // http://www.iana.org/assignments/tls-parameters/tls-parameters.xml
  228. const (
  229. TLS_RSA_WITH_RC4_128_SHA uint16 = 0x0005
  230. TLS_RSA_WITH_3DES_EDE_CBC_SHA uint16 = 0x000a
  231. TLS_RSA_WITH_AES_128_CBC_SHA uint16 = 0x002f
  232. TLS_RSA_WITH_AES_256_CBC_SHA uint16 = 0x0035
  233. TLS_ECDHE_ECDSA_WITH_RC4_128_SHA uint16 = 0xc007
  234. TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA uint16 = 0xc009
  235. TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA uint16 = 0xc00a
  236. TLS_ECDHE_RSA_WITH_RC4_128_SHA uint16 = 0xc011
  237. TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA uint16 = 0xc012
  238. TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA uint16 = 0xc013
  239. TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA uint16 = 0xc014
  240. TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 uint16 = 0xc02f
  241. TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 uint16 = 0xc02b
  242. TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 uint16 = 0xc030
  243. TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384 uint16 = 0xc02c
  244. // TLS_FALLBACK_SCSV isn't a standard cipher suite but an indicator
  245. // that the client is doing version fallback. See
  246. // https://tools.ietf.org/html/draft-ietf-tls-downgrade-scsv-00.
  247. TLS_FALLBACK_SCSV uint16 = 0x5600
  248. )