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.
 
 
 
 
 
 

379 lines
14 KiB

  1. /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  2. * All rights reserved.
  3. *
  4. * This package is an SSL implementation written
  5. * by Eric Young (eay@cryptsoft.com).
  6. * The implementation was written so as to conform with Netscapes SSL.
  7. *
  8. * This library is free for commercial and non-commercial use as long as
  9. * the following conditions are aheared to. The following conditions
  10. * apply to all code found in this distribution, be it the RC4, RSA,
  11. * lhash, DES, etc., code; not just the SSL code. The SSL documentation
  12. * included with this distribution is covered by the same copyright terms
  13. * except that the holder is Tim Hudson (tjh@cryptsoft.com).
  14. *
  15. * Copyright remains Eric Young's, and as such any Copyright notices in
  16. * the code are not to be removed.
  17. * If this package is used in a product, Eric Young should be given attribution
  18. * as the author of the parts of the library used.
  19. * This can be in the form of a textual message at program startup or
  20. * in documentation (online or textual) provided with the package.
  21. *
  22. * Redistribution and use in source and binary forms, with or without
  23. * modification, are permitted provided that the following conditions
  24. * are met:
  25. * 1. Redistributions of source code must retain the copyright
  26. * notice, this list of conditions and the following disclaimer.
  27. * 2. Redistributions in binary form must reproduce the above copyright
  28. * notice, this list of conditions and the following disclaimer in the
  29. * documentation and/or other materials provided with the distribution.
  30. * 3. All advertising materials mentioning features or use of this software
  31. * must display the following acknowledgement:
  32. * "This product includes cryptographic software written by
  33. * Eric Young (eay@cryptsoft.com)"
  34. * The word 'cryptographic' can be left out if the rouines from the library
  35. * being used are not cryptographic related :-).
  36. * 4. If you include any Windows specific code (or a derivative thereof) from
  37. * the apps directory (application code) you must include an acknowledgement:
  38. * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
  39. *
  40. * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
  41. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  42. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  43. * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  44. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  45. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  46. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  47. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  48. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  49. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  50. * SUCH DAMAGE.
  51. *
  52. * The licence and distribution terms for any publically available version or
  53. * derivative of this code cannot be changed. i.e. this code cannot simply be
  54. * copied and put under another distribution licence
  55. * [including the GNU Public Licence.]
  56. */
  57. /* ====================================================================
  58. * Copyright (c) 1998-2002 The OpenSSL Project. All rights reserved.
  59. *
  60. * Redistribution and use in source and binary forms, with or without
  61. * modification, are permitted provided that the following conditions
  62. * are met:
  63. *
  64. * 1. Redistributions of source code must retain the above copyright
  65. * notice, this list of conditions and the following disclaimer.
  66. *
  67. * 2. Redistributions in binary form must reproduce the above copyright
  68. * notice, this list of conditions and the following disclaimer in
  69. * the documentation and/or other materials provided with the
  70. * distribution.
  71. *
  72. * 3. All advertising materials mentioning features or use of this
  73. * software must display the following acknowledgment:
  74. * "This product includes software developed by the OpenSSL Project
  75. * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
  76. *
  77. * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
  78. * endorse or promote products derived from this software without
  79. * prior written permission. For written permission, please contact
  80. * openssl-core@openssl.org.
  81. *
  82. * 5. Products derived from this software may not be called "OpenSSL"
  83. * nor may "OpenSSL" appear in their names without prior written
  84. * permission of the OpenSSL Project.
  85. *
  86. * 6. Redistributions of any form whatsoever must retain the following
  87. * acknowledgment:
  88. * "This product includes software developed by the OpenSSL Project
  89. * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
  90. *
  91. * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
  92. * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  93. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  94. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
  95. * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  96. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  97. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  98. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  99. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  100. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  101. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  102. * OF THE POSSIBILITY OF SUCH DAMAGE.
  103. * ====================================================================
  104. *
  105. * This product includes cryptographic software written by Eric Young
  106. * (eay@cryptsoft.com). This product includes software written by Tim
  107. * Hudson (tjh@cryptsoft.com). */
  108. #include <openssl/ssl.h>
  109. #include <assert.h>
  110. #include <string.h>
  111. #include <openssl/bytestring.h>
  112. #include <openssl/err.h>
  113. #include "internal.h"
  114. /* kMaxEmptyRecords is the number of consecutive, empty records that will be
  115. * processed. Without this limit an attacker could send empty records at a
  116. * faster rate than we can process and cause record processing to loop
  117. * forever. */
  118. static const uint8_t kMaxEmptyRecords = 32;
  119. /* ssl_needs_record_splitting returns one if |ssl|'s current outgoing cipher
  120. * state needs record-splitting and zero otherwise. */
  121. static int ssl_needs_record_splitting(const SSL *ssl) {
  122. return !SSL_USE_EXPLICIT_IV(ssl) && ssl->s3->aead_write_ctx != NULL &&
  123. (ssl->mode & SSL_MODE_CBC_RECORD_SPLITTING) != 0 &&
  124. SSL_CIPHER_is_block_cipher(ssl->s3->aead_write_ctx->cipher);
  125. }
  126. int ssl_record_sequence_update(uint8_t *seq, size_t seq_len) {
  127. size_t i;
  128. for (i = seq_len - 1; i < seq_len; i--) {
  129. ++seq[i];
  130. if (seq[i] != 0) {
  131. return 1;
  132. }
  133. }
  134. OPENSSL_PUT_ERROR(SSL, ERR_R_OVERFLOW);
  135. return 0;
  136. }
  137. size_t ssl_record_prefix_len(const SSL *ssl) {
  138. if (SSL_IS_DTLS(ssl)) {
  139. return DTLS1_RT_HEADER_LENGTH +
  140. SSL_AEAD_CTX_explicit_nonce_len(ssl->s3->aead_read_ctx);
  141. } else {
  142. return SSL3_RT_HEADER_LENGTH +
  143. SSL_AEAD_CTX_explicit_nonce_len(ssl->s3->aead_read_ctx);
  144. }
  145. }
  146. size_t ssl_seal_prefix_len(const SSL *ssl) {
  147. if (SSL_IS_DTLS(ssl)) {
  148. return DTLS1_RT_HEADER_LENGTH +
  149. SSL_AEAD_CTX_explicit_nonce_len(ssl->s3->aead_write_ctx);
  150. } else {
  151. size_t ret = SSL3_RT_HEADER_LENGTH +
  152. SSL_AEAD_CTX_explicit_nonce_len(ssl->s3->aead_write_ctx);
  153. if (ssl_needs_record_splitting(ssl)) {
  154. ret += SSL3_RT_HEADER_LENGTH;
  155. ret += ssl_cipher_get_record_split_len(ssl->s3->aead_write_ctx->cipher);
  156. }
  157. return ret;
  158. }
  159. }
  160. size_t ssl_max_seal_overhead(const SSL *ssl) {
  161. if (SSL_IS_DTLS(ssl)) {
  162. return DTLS1_RT_HEADER_LENGTH +
  163. SSL_AEAD_CTX_max_overhead(ssl->s3->aead_write_ctx);
  164. } else {
  165. size_t ret = SSL3_RT_HEADER_LENGTH +
  166. SSL_AEAD_CTX_max_overhead(ssl->s3->aead_write_ctx);
  167. if (ssl_needs_record_splitting(ssl)) {
  168. ret *= 2;
  169. }
  170. return ret;
  171. }
  172. }
  173. enum ssl_open_record_t tls_open_record(
  174. SSL *ssl, uint8_t *out_type, uint8_t *out, size_t *out_len,
  175. size_t *out_consumed, uint8_t *out_alert, size_t max_out, const uint8_t *in,
  176. size_t in_len) {
  177. CBS cbs;
  178. CBS_init(&cbs, in, in_len);
  179. /* Decode the record header. */
  180. uint8_t type;
  181. uint16_t version, ciphertext_len;
  182. if (!CBS_get_u8(&cbs, &type) ||
  183. !CBS_get_u16(&cbs, &version) ||
  184. !CBS_get_u16(&cbs, &ciphertext_len)) {
  185. *out_consumed = SSL3_RT_HEADER_LENGTH;
  186. return ssl_open_record_partial;
  187. }
  188. /* Check the version. */
  189. if ((ssl->s3->have_version && version != ssl->version) ||
  190. (version >> 8) != SSL3_VERSION_MAJOR) {
  191. OPENSSL_PUT_ERROR(SSL, SSL_R_WRONG_VERSION_NUMBER);
  192. *out_alert = SSL_AD_PROTOCOL_VERSION;
  193. return ssl_open_record_error;
  194. }
  195. /* Check the ciphertext length. */
  196. if (ciphertext_len > SSL3_RT_MAX_ENCRYPTED_LENGTH) {
  197. OPENSSL_PUT_ERROR(SSL, SSL_R_ENCRYPTED_LENGTH_TOO_LONG);
  198. *out_alert = SSL_AD_RECORD_OVERFLOW;
  199. return ssl_open_record_error;
  200. }
  201. /* Extract the body. */
  202. CBS body;
  203. if (!CBS_get_bytes(&cbs, &body, ciphertext_len)) {
  204. *out_consumed = SSL3_RT_HEADER_LENGTH + (size_t)ciphertext_len;
  205. return ssl_open_record_partial;
  206. }
  207. if (ssl->msg_callback != NULL) {
  208. ssl->msg_callback(0 /* read */, 0, SSL3_RT_HEADER, in,
  209. SSL3_RT_HEADER_LENGTH, ssl, ssl->msg_callback_arg);
  210. }
  211. /* Decrypt the body. */
  212. size_t plaintext_len;
  213. if (!SSL_AEAD_CTX_open(ssl->s3->aead_read_ctx, out, &plaintext_len, max_out,
  214. type, version, ssl->s3->read_sequence, CBS_data(&body),
  215. CBS_len(&body))) {
  216. OPENSSL_PUT_ERROR(SSL, SSL_R_DECRYPTION_FAILED_OR_BAD_RECORD_MAC);
  217. *out_alert = SSL_AD_BAD_RECORD_MAC;
  218. return ssl_open_record_error;
  219. }
  220. if (!ssl_record_sequence_update(ssl->s3->read_sequence, 8)) {
  221. *out_alert = SSL_AD_INTERNAL_ERROR;
  222. return ssl_open_record_error;
  223. }
  224. /* Check the plaintext length. */
  225. if (plaintext_len > SSL3_RT_MAX_PLAIN_LENGTH) {
  226. OPENSSL_PUT_ERROR(SSL, SSL_R_DATA_LENGTH_TOO_LONG);
  227. *out_alert = SSL_AD_RECORD_OVERFLOW;
  228. return ssl_open_record_error;
  229. }
  230. /* Limit the number of consecutive empty records. */
  231. if (plaintext_len == 0) {
  232. ssl->s3->empty_record_count++;
  233. if (ssl->s3->empty_record_count > kMaxEmptyRecords) {
  234. OPENSSL_PUT_ERROR(SSL, SSL_R_TOO_MANY_EMPTY_FRAGMENTS);
  235. *out_alert = SSL_AD_UNEXPECTED_MESSAGE;
  236. return ssl_open_record_error;
  237. }
  238. /* Apart from the limit, empty records are returned up to the caller. This
  239. * allows the caller to reject records of the wrong type. */
  240. } else {
  241. ssl->s3->empty_record_count = 0;
  242. }
  243. *out_type = type;
  244. *out_len = plaintext_len;
  245. *out_consumed = in_len - CBS_len(&cbs);
  246. return ssl_open_record_success;
  247. }
  248. static int do_seal_record(SSL *ssl, uint8_t *out, size_t *out_len,
  249. size_t max_out, uint8_t type, const uint8_t *in,
  250. size_t in_len) {
  251. if (max_out < SSL3_RT_HEADER_LENGTH) {
  252. OPENSSL_PUT_ERROR(SSL, SSL_R_BUFFER_TOO_SMALL);
  253. return 0;
  254. }
  255. /* Check the record header does not alias any part of the input.
  256. * |SSL_AEAD_CTX_seal| will internally enforce other aliasing requirements. */
  257. if (in < out + SSL3_RT_HEADER_LENGTH && out < in + in_len) {
  258. OPENSSL_PUT_ERROR(SSL, SSL_R_OUTPUT_ALIASES_INPUT);
  259. return 0;
  260. }
  261. out[0] = type;
  262. /* Some servers hang if initial ClientHello is larger than 256 bytes and
  263. * record version number > TLS 1.0. */
  264. uint16_t wire_version = ssl->version;
  265. if (!ssl->s3->have_version && ssl->version > SSL3_VERSION) {
  266. wire_version = TLS1_VERSION;
  267. }
  268. out[1] = wire_version >> 8;
  269. out[2] = wire_version & 0xff;
  270. size_t ciphertext_len;
  271. if (!SSL_AEAD_CTX_seal(ssl->s3->aead_write_ctx, out + SSL3_RT_HEADER_LENGTH,
  272. &ciphertext_len, max_out - SSL3_RT_HEADER_LENGTH,
  273. type, wire_version, ssl->s3->write_sequence, in,
  274. in_len) ||
  275. !ssl_record_sequence_update(ssl->s3->write_sequence, 8)) {
  276. return 0;
  277. }
  278. if (ciphertext_len >= 1 << 16) {
  279. OPENSSL_PUT_ERROR(SSL, ERR_R_OVERFLOW);
  280. return 0;
  281. }
  282. out[3] = ciphertext_len >> 8;
  283. out[4] = ciphertext_len & 0xff;
  284. *out_len = SSL3_RT_HEADER_LENGTH + ciphertext_len;
  285. if (ssl->msg_callback) {
  286. ssl->msg_callback(1 /* write */, 0, SSL3_RT_HEADER, out,
  287. SSL3_RT_HEADER_LENGTH, ssl, ssl->msg_callback_arg);
  288. }
  289. return 1;
  290. }
  291. int tls_seal_record(SSL *ssl, uint8_t *out, size_t *out_len, size_t max_out,
  292. uint8_t type, const uint8_t *in, size_t in_len) {
  293. size_t frag_len = 0;
  294. if (type == SSL3_RT_APPLICATION_DATA && in_len > 1 &&
  295. ssl_needs_record_splitting(ssl)) {
  296. /* |do_seal_record| will notice if it clobbers |in[0]|, but not if it
  297. * aliases the rest of |in|. */
  298. if (in + 1 <= out && out < in + in_len) {
  299. OPENSSL_PUT_ERROR(SSL, SSL_R_OUTPUT_ALIASES_INPUT);
  300. return 0;
  301. }
  302. /* Ensure |do_seal_record| does not write beyond |in[0]|. */
  303. size_t frag_max_out = max_out;
  304. if (out <= in + 1 && in + 1 < out + frag_max_out) {
  305. frag_max_out = (size_t)(in + 1 - out);
  306. }
  307. if (!do_seal_record(ssl, out, &frag_len, frag_max_out, type, in, 1)) {
  308. return 0;
  309. }
  310. in++;
  311. in_len--;
  312. out += frag_len;
  313. max_out -= frag_len;
  314. assert(SSL3_RT_HEADER_LENGTH + ssl_cipher_get_record_split_len(
  315. ssl->s3->aead_write_ctx->cipher) ==
  316. frag_len);
  317. }
  318. if (!do_seal_record(ssl, out, out_len, max_out, type, in, in_len)) {
  319. return 0;
  320. }
  321. *out_len += frag_len;
  322. return 1;
  323. }
  324. void ssl_set_read_state(SSL *ssl, SSL_AEAD_CTX *aead_ctx) {
  325. if (SSL_IS_DTLS(ssl)) {
  326. ssl->d1->r_epoch++;
  327. memset(&ssl->d1->bitmap, 0, sizeof(ssl->d1->bitmap));
  328. }
  329. memset(ssl->s3->read_sequence, 0, sizeof(ssl->s3->read_sequence));
  330. SSL_AEAD_CTX_free(ssl->s3->aead_read_ctx);
  331. ssl->s3->aead_read_ctx = aead_ctx;
  332. }
  333. void ssl_set_write_state(SSL *ssl, SSL_AEAD_CTX *aead_ctx) {
  334. if (SSL_IS_DTLS(ssl)) {
  335. ssl->d1->w_epoch++;
  336. memcpy(ssl->d1->last_write_sequence, ssl->s3->write_sequence,
  337. sizeof(ssl->s3->write_sequence));
  338. }
  339. memset(ssl->s3->write_sequence, 0, sizeof(ssl->s3->write_sequence));
  340. SSL_AEAD_CTX_free(ssl->s3->aead_write_ctx);
  341. ssl->s3->aead_write_ctx = aead_ctx;
  342. }