s3_enc.c 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970
  1. /* ssl/s3_enc.c */
  2. /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  3. * All rights reserved.
  4. *
  5. * This package is an SSL implementation written
  6. * by Eric Young (eay@cryptsoft.com).
  7. * The implementation was written so as to conform with Netscapes SSL.
  8. *
  9. * This library is free for commercial and non-commercial use as long as
  10. * the following conditions are aheared to. The following conditions
  11. * apply to all code found in this distribution, be it the RC4, RSA,
  12. * lhash, DES, etc., code; not just the SSL code. The SSL documentation
  13. * included with this distribution is covered by the same copyright terms
  14. * except that the holder is Tim Hudson (tjh@cryptsoft.com).
  15. *
  16. * Copyright remains Eric Young's, and as such any Copyright notices in
  17. * the code are not to be removed.
  18. * If this package is used in a product, Eric Young should be given attribution
  19. * as the author of the parts of the library used.
  20. * This can be in the form of a textual message at program startup or
  21. * in documentation (online or textual) provided with the package.
  22. *
  23. * Redistribution and use in source and binary forms, with or without
  24. * modification, are permitted provided that the following conditions
  25. * are met:
  26. * 1. Redistributions of source code must retain the copyright
  27. * notice, this list of conditions and the following disclaimer.
  28. * 2. Redistributions in binary form must reproduce the above copyright
  29. * notice, this list of conditions and the following disclaimer in the
  30. * documentation and/or other materials provided with the distribution.
  31. * 3. All advertising materials mentioning features or use of this software
  32. * must display the following acknowledgement:
  33. * "This product includes cryptographic software written by
  34. * Eric Young (eay@cryptsoft.com)"
  35. * The word 'cryptographic' can be left out if the rouines from the library
  36. * being used are not cryptographic related :-).
  37. * 4. If you include any Windows specific code (or a derivative thereof) from
  38. * the apps directory (application code) you must include an acknowledgement:
  39. * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
  40. *
  41. * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
  42. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  43. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  44. * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  45. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  46. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  47. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  48. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  49. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  50. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  51. * SUCH DAMAGE.
  52. *
  53. * The licence and distribution terms for any publically available version or
  54. * derivative of this code cannot be changed. i.e. this code cannot simply be
  55. * copied and put under another distribution licence
  56. * [including the GNU Public Licence.]
  57. */
  58. /* ====================================================================
  59. * Copyright (c) 1998-2007 The OpenSSL Project. All rights reserved.
  60. *
  61. * Redistribution and use in source and binary forms, with or without
  62. * modification, are permitted provided that the following conditions
  63. * are met:
  64. *
  65. * 1. Redistributions of source code must retain the above copyright
  66. * notice, this list of conditions and the following disclaimer.
  67. *
  68. * 2. Redistributions in binary form must reproduce the above copyright
  69. * notice, this list of conditions and the following disclaimer in
  70. * the documentation and/or other materials provided with the
  71. * distribution.
  72. *
  73. * 3. All advertising materials mentioning features or use of this
  74. * software must display the following acknowledgment:
  75. * "This product includes software developed by the OpenSSL Project
  76. * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
  77. *
  78. * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
  79. * endorse or promote products derived from this software without
  80. * prior written permission. For written permission, please contact
  81. * openssl-core@openssl.org.
  82. *
  83. * 5. Products derived from this software may not be called "OpenSSL"
  84. * nor may "OpenSSL" appear in their names without prior written
  85. * permission of the OpenSSL Project.
  86. *
  87. * 6. Redistributions of any form whatsoever must retain the following
  88. * acknowledgment:
  89. * "This product includes software developed by the OpenSSL Project
  90. * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
  91. *
  92. * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
  93. * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  94. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  95. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
  96. * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  97. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  98. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  99. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  100. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  101. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  102. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  103. * OF THE POSSIBILITY OF SUCH DAMAGE.
  104. * ====================================================================
  105. *
  106. * This product includes cryptographic software written by Eric Young
  107. * (eay@cryptsoft.com). This product includes software written by Tim
  108. * Hudson (tjh@cryptsoft.com).
  109. *
  110. */
  111. /* ====================================================================
  112. * Copyright 2005 Nokia. All rights reserved.
  113. *
  114. * The portions of the attached software ("Contribution") is developed by
  115. * Nokia Corporation and is licensed pursuant to the OpenSSL open source
  116. * license.
  117. *
  118. * The Contribution, originally written by Mika Kousa and Pasi Eronen of
  119. * Nokia Corporation, consists of the "PSK" (Pre-Shared Key) ciphersuites
  120. * support (see RFC 4279) to OpenSSL.
  121. *
  122. * No patent licenses or other rights except those expressly stated in
  123. * the OpenSSL open source license shall be deemed granted or received
  124. * expressly, by implication, estoppel, or otherwise.
  125. *
  126. * No assurances are provided by Nokia that the Contribution does not
  127. * infringe the patent or other intellectual property rights of any third
  128. * party or that the license provides you with all the necessary rights
  129. * to make use of the Contribution.
  130. *
  131. * THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. IN
  132. * ADDITION TO THE DISCLAIMERS INCLUDED IN THE LICENSE, NOKIA
  133. * SPECIFICALLY DISCLAIMS ANY LIABILITY FOR CLAIMS BROUGHT BY YOU OR ANY
  134. * OTHER ENTITY BASED ON INFRINGEMENT OF INTELLECTUAL PROPERTY RIGHTS OR
  135. * OTHERWISE.
  136. */
  137. #include <stdio.h>
  138. #include "ssl_locl.h"
  139. #include <openssl/evp.h>
  140. #include <openssl/md5.h>
  141. static unsigned char ssl3_pad_1[48] = {
  142. 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36,
  143. 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36,
  144. 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36,
  145. 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36,
  146. 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36,
  147. 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36
  148. };
  149. static unsigned char ssl3_pad_2[48] = {
  150. 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c,
  151. 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c,
  152. 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c,
  153. 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c,
  154. 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c,
  155. 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c
  156. };
  157. static int ssl3_handshake_mac(SSL *s, int md_nid,
  158. const char *sender, int len, unsigned char *p);
  159. static int ssl3_generate_key_block(SSL *s, unsigned char *km, int num)
  160. {
  161. EVP_MD_CTX m5;
  162. EVP_MD_CTX s1;
  163. unsigned char buf[16], smd[SHA_DIGEST_LENGTH];
  164. unsigned char c = 'A';
  165. unsigned int i, j, k;
  166. #ifdef CHARSET_EBCDIC
  167. c = os_toascii[c]; /* 'A' in ASCII */
  168. #endif
  169. k = 0;
  170. EVP_MD_CTX_init(&m5);
  171. EVP_MD_CTX_set_flags(&m5, EVP_MD_CTX_FLAG_NON_FIPS_ALLOW);
  172. EVP_MD_CTX_init(&s1);
  173. for (i = 0; (int)i < num; i += MD5_DIGEST_LENGTH) {
  174. k++;
  175. if (k > sizeof buf) {
  176. /* bug: 'buf' is too small for this ciphersuite */
  177. SSLerr(SSL_F_SSL3_GENERATE_KEY_BLOCK, ERR_R_INTERNAL_ERROR);
  178. return 0;
  179. }
  180. for (j = 0; j < k; j++)
  181. buf[j] = c;
  182. c++;
  183. EVP_DigestInit_ex(&s1, EVP_sha1(), NULL);
  184. EVP_DigestUpdate(&s1, buf, k);
  185. EVP_DigestUpdate(&s1, s->session->master_key,
  186. s->session->master_key_length);
  187. EVP_DigestUpdate(&s1, s->s3->server_random, SSL3_RANDOM_SIZE);
  188. EVP_DigestUpdate(&s1, s->s3->client_random, SSL3_RANDOM_SIZE);
  189. EVP_DigestFinal_ex(&s1, smd, NULL);
  190. EVP_DigestInit_ex(&m5, EVP_md5(), NULL);
  191. EVP_DigestUpdate(&m5, s->session->master_key,
  192. s->session->master_key_length);
  193. EVP_DigestUpdate(&m5, smd, SHA_DIGEST_LENGTH);
  194. if ((int)(i + MD5_DIGEST_LENGTH) > num) {
  195. EVP_DigestFinal_ex(&m5, smd, NULL);
  196. memcpy(km, smd, (num - i));
  197. } else
  198. EVP_DigestFinal_ex(&m5, km, NULL);
  199. km += MD5_DIGEST_LENGTH;
  200. }
  201. OPENSSL_cleanse(smd, SHA_DIGEST_LENGTH);
  202. EVP_MD_CTX_cleanup(&m5);
  203. EVP_MD_CTX_cleanup(&s1);
  204. return 1;
  205. }
  206. int ssl3_change_cipher_state(SSL *s, int which)
  207. {
  208. unsigned char *p, *mac_secret;
  209. unsigned char exp_key[EVP_MAX_KEY_LENGTH];
  210. unsigned char exp_iv[EVP_MAX_IV_LENGTH];
  211. unsigned char *ms, *key, *iv, *er1, *er2;
  212. EVP_CIPHER_CTX *dd;
  213. const EVP_CIPHER *c;
  214. #ifndef OPENSSL_NO_COMP
  215. COMP_METHOD *comp;
  216. #endif
  217. const EVP_MD *m;
  218. EVP_MD_CTX md;
  219. int is_exp, n, i, j, k, cl;
  220. int reuse_dd = 0;
  221. is_exp = SSL_C_IS_EXPORT(s->s3->tmp.new_cipher);
  222. c = s->s3->tmp.new_sym_enc;
  223. m = s->s3->tmp.new_hash;
  224. /* m == NULL will lead to a crash later */
  225. OPENSSL_assert(m);
  226. #ifndef OPENSSL_NO_COMP
  227. if (s->s3->tmp.new_compression == NULL)
  228. comp = NULL;
  229. else
  230. comp = s->s3->tmp.new_compression->method;
  231. #endif
  232. if (which & SSL3_CC_READ) {
  233. if (s->enc_read_ctx != NULL)
  234. reuse_dd = 1;
  235. else if ((s->enc_read_ctx =
  236. OPENSSL_malloc(sizeof(EVP_CIPHER_CTX))) == NULL)
  237. goto err;
  238. else
  239. /*
  240. * make sure it's intialized in case we exit later with an error
  241. */
  242. EVP_CIPHER_CTX_init(s->enc_read_ctx);
  243. dd = s->enc_read_ctx;
  244. if (ssl_replace_hash(&s->read_hash, m) == NULL) {
  245. SSLerr(SSL_F_SSL3_CHANGE_CIPHER_STATE, ERR_R_INTERNAL_ERROR);
  246. goto err2;
  247. }
  248. #ifndef OPENSSL_NO_COMP
  249. /* COMPRESS */
  250. if (s->expand != NULL) {
  251. COMP_CTX_free(s->expand);
  252. s->expand = NULL;
  253. }
  254. if (comp != NULL) {
  255. s->expand = COMP_CTX_new(comp);
  256. if (s->expand == NULL) {
  257. SSLerr(SSL_F_SSL3_CHANGE_CIPHER_STATE,
  258. SSL_R_COMPRESSION_LIBRARY_ERROR);
  259. goto err2;
  260. }
  261. if (s->s3->rrec.comp == NULL)
  262. s->s3->rrec.comp = (unsigned char *)
  263. OPENSSL_malloc(SSL3_RT_MAX_PLAIN_LENGTH);
  264. if (s->s3->rrec.comp == NULL)
  265. goto err;
  266. }
  267. #endif
  268. memset(&(s->s3->read_sequence[0]), 0, 8);
  269. mac_secret = &(s->s3->read_mac_secret[0]);
  270. } else {
  271. if (s->enc_write_ctx != NULL)
  272. reuse_dd = 1;
  273. else if ((s->enc_write_ctx =
  274. OPENSSL_malloc(sizeof(EVP_CIPHER_CTX))) == NULL)
  275. goto err;
  276. else
  277. /*
  278. * make sure it's intialized in case we exit later with an error
  279. */
  280. EVP_CIPHER_CTX_init(s->enc_write_ctx);
  281. dd = s->enc_write_ctx;
  282. if (ssl_replace_hash(&s->write_hash, m) == NULL) {
  283. SSLerr(SSL_F_SSL3_CHANGE_CIPHER_STATE, ERR_R_INTERNAL_ERROR);
  284. goto err2;
  285. }
  286. #ifndef OPENSSL_NO_COMP
  287. /* COMPRESS */
  288. if (s->compress != NULL) {
  289. COMP_CTX_free(s->compress);
  290. s->compress = NULL;
  291. }
  292. if (comp != NULL) {
  293. s->compress = COMP_CTX_new(comp);
  294. if (s->compress == NULL) {
  295. SSLerr(SSL_F_SSL3_CHANGE_CIPHER_STATE,
  296. SSL_R_COMPRESSION_LIBRARY_ERROR);
  297. goto err2;
  298. }
  299. }
  300. #endif
  301. memset(&(s->s3->write_sequence[0]), 0, 8);
  302. mac_secret = &(s->s3->write_mac_secret[0]);
  303. }
  304. if (reuse_dd)
  305. EVP_CIPHER_CTX_cleanup(dd);
  306. p = s->s3->tmp.key_block;
  307. i = EVP_MD_size(m);
  308. if (i < 0)
  309. goto err2;
  310. cl = EVP_CIPHER_key_length(c);
  311. j = is_exp ? (cl < SSL_C_EXPORT_KEYLENGTH(s->s3->tmp.new_cipher) ?
  312. cl : SSL_C_EXPORT_KEYLENGTH(s->s3->tmp.new_cipher)) : cl;
  313. /* Was j=(is_exp)?5:EVP_CIPHER_key_length(c); */
  314. k = EVP_CIPHER_iv_length(c);
  315. if ((which == SSL3_CHANGE_CIPHER_CLIENT_WRITE) ||
  316. (which == SSL3_CHANGE_CIPHER_SERVER_READ)) {
  317. ms = &(p[0]);
  318. n = i + i;
  319. key = &(p[n]);
  320. n += j + j;
  321. iv = &(p[n]);
  322. n += k + k;
  323. er1 = &(s->s3->client_random[0]);
  324. er2 = &(s->s3->server_random[0]);
  325. } else {
  326. n = i;
  327. ms = &(p[n]);
  328. n += i + j;
  329. key = &(p[n]);
  330. n += j + k;
  331. iv = &(p[n]);
  332. n += k;
  333. er1 = &(s->s3->server_random[0]);
  334. er2 = &(s->s3->client_random[0]);
  335. }
  336. if (n > s->s3->tmp.key_block_length) {
  337. SSLerr(SSL_F_SSL3_CHANGE_CIPHER_STATE, ERR_R_INTERNAL_ERROR);
  338. goto err2;
  339. }
  340. EVP_MD_CTX_init(&md);
  341. memcpy(mac_secret, ms, i);
  342. if (is_exp) {
  343. /*
  344. * In here I set both the read and write key/iv to the same value
  345. * since only the correct one will be used :-).
  346. */
  347. EVP_DigestInit_ex(&md, EVP_md5(), NULL);
  348. EVP_DigestUpdate(&md, key, j);
  349. EVP_DigestUpdate(&md, er1, SSL3_RANDOM_SIZE);
  350. EVP_DigestUpdate(&md, er2, SSL3_RANDOM_SIZE);
  351. EVP_DigestFinal_ex(&md, &(exp_key[0]), NULL);
  352. key = &(exp_key[0]);
  353. if (k > 0) {
  354. EVP_DigestInit_ex(&md, EVP_md5(), NULL);
  355. EVP_DigestUpdate(&md, er1, SSL3_RANDOM_SIZE);
  356. EVP_DigestUpdate(&md, er2, SSL3_RANDOM_SIZE);
  357. EVP_DigestFinal_ex(&md, &(exp_iv[0]), NULL);
  358. iv = &(exp_iv[0]);
  359. }
  360. }
  361. s->session->key_arg_length = 0;
  362. EVP_CipherInit_ex(dd, c, NULL, key, iv, (which & SSL3_CC_WRITE));
  363. #ifdef OPENSSL_SSL_TRACE_CRYPTO
  364. if (s->msg_callback) {
  365. int wh = which & SSL3_CC_WRITE ?
  366. TLS1_RT_CRYPTO_WRITE : TLS1_RT_CRYPTO_READ;
  367. s->msg_callback(2, s->version, wh | TLS1_RT_CRYPTO_MAC,
  368. mac_secret, EVP_MD_size(m), s, s->msg_callback_arg);
  369. if (c->key_len)
  370. s->msg_callback(2, s->version, wh | TLS1_RT_CRYPTO_KEY,
  371. key, c->key_len, s, s->msg_callback_arg);
  372. if (k) {
  373. s->msg_callback(2, s->version, wh | TLS1_RT_CRYPTO_IV,
  374. iv, k, s, s->msg_callback_arg);
  375. }
  376. }
  377. #endif
  378. OPENSSL_cleanse(&(exp_key[0]), sizeof(exp_key));
  379. OPENSSL_cleanse(&(exp_iv[0]), sizeof(exp_iv));
  380. EVP_MD_CTX_cleanup(&md);
  381. return (1);
  382. err:
  383. SSLerr(SSL_F_SSL3_CHANGE_CIPHER_STATE, ERR_R_MALLOC_FAILURE);
  384. err2:
  385. return (0);
  386. }
  387. int ssl3_setup_key_block(SSL *s)
  388. {
  389. unsigned char *p;
  390. const EVP_CIPHER *c;
  391. const EVP_MD *hash;
  392. int num;
  393. int ret = 0;
  394. SSL_COMP *comp;
  395. if (s->s3->tmp.key_block_length != 0)
  396. return (1);
  397. if (!ssl_cipher_get_evp(s->session, &c, &hash, NULL, NULL, &comp)) {
  398. SSLerr(SSL_F_SSL3_SETUP_KEY_BLOCK, SSL_R_CIPHER_OR_HASH_UNAVAILABLE);
  399. return (0);
  400. }
  401. s->s3->tmp.new_sym_enc = c;
  402. s->s3->tmp.new_hash = hash;
  403. #ifdef OPENSSL_NO_COMP
  404. s->s3->tmp.new_compression = NULL;
  405. #else
  406. s->s3->tmp.new_compression = comp;
  407. #endif
  408. num = EVP_MD_size(hash);
  409. if (num < 0)
  410. return 0;
  411. num = EVP_CIPHER_key_length(c) + num + EVP_CIPHER_iv_length(c);
  412. num *= 2;
  413. ssl3_cleanup_key_block(s);
  414. if ((p = OPENSSL_malloc(num)) == NULL)
  415. goto err;
  416. s->s3->tmp.key_block_length = num;
  417. s->s3->tmp.key_block = p;
  418. ret = ssl3_generate_key_block(s, p, num);
  419. if (!(s->options & SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS)) {
  420. /*
  421. * enable vulnerability countermeasure for CBC ciphers with known-IV
  422. * problem (http://www.openssl.org/~bodo/tls-cbc.txt)
  423. */
  424. s->s3->need_empty_fragments = 1;
  425. if (s->session->cipher != NULL) {
  426. if (s->session->cipher->algorithm_enc == SSL_eNULL)
  427. s->s3->need_empty_fragments = 0;
  428. #ifndef OPENSSL_NO_RC4
  429. if (s->session->cipher->algorithm_enc == SSL_RC4)
  430. s->s3->need_empty_fragments = 0;
  431. #endif
  432. }
  433. }
  434. return ret;
  435. err:
  436. SSLerr(SSL_F_SSL3_SETUP_KEY_BLOCK, ERR_R_MALLOC_FAILURE);
  437. return (0);
  438. }
  439. void ssl3_cleanup_key_block(SSL *s)
  440. {
  441. if (s->s3->tmp.key_block != NULL) {
  442. OPENSSL_cleanse(s->s3->tmp.key_block, s->s3->tmp.key_block_length);
  443. OPENSSL_free(s->s3->tmp.key_block);
  444. s->s3->tmp.key_block = NULL;
  445. }
  446. s->s3->tmp.key_block_length = 0;
  447. }
  448. /*-
  449. * ssl3_enc encrypts/decrypts the record in |s->wrec| / |s->rrec|, respectively.
  450. *
  451. * Returns:
  452. * 0: (in non-constant time) if the record is publically invalid (i.e. too
  453. * short etc).
  454. * 1: if the record's padding is valid / the encryption was successful.
  455. * -1: if the record's padding is invalid or, if sending, an internal error
  456. * occured.
  457. */
  458. int ssl3_enc(SSL *s, int send)
  459. {
  460. SSL3_RECORD *rec;
  461. EVP_CIPHER_CTX *ds;
  462. unsigned long l;
  463. int bs, i, mac_size = 0;
  464. const EVP_CIPHER *enc;
  465. if (send) {
  466. ds = s->enc_write_ctx;
  467. rec = &(s->s3->wrec);
  468. if (s->enc_write_ctx == NULL)
  469. enc = NULL;
  470. else
  471. enc = EVP_CIPHER_CTX_cipher(s->enc_write_ctx);
  472. } else {
  473. ds = s->enc_read_ctx;
  474. rec = &(s->s3->rrec);
  475. if (s->enc_read_ctx == NULL)
  476. enc = NULL;
  477. else
  478. enc = EVP_CIPHER_CTX_cipher(s->enc_read_ctx);
  479. }
  480. if ((s->session == NULL) || (ds == NULL) || (enc == NULL)) {
  481. memmove(rec->data, rec->input, rec->length);
  482. rec->input = rec->data;
  483. } else {
  484. l = rec->length;
  485. bs = EVP_CIPHER_block_size(ds->cipher);
  486. /* COMPRESS */
  487. if ((bs != 1) && send) {
  488. i = bs - ((int)l % bs);
  489. /* we need to add 'i-1' padding bytes */
  490. l += i;
  491. /*
  492. * the last of these zero bytes will be overwritten with the
  493. * padding length.
  494. */
  495. memset(&rec->input[rec->length], 0, i);
  496. rec->length += i;
  497. rec->input[l - 1] = (i - 1);
  498. }
  499. if (!send) {
  500. if (l == 0 || l % bs != 0)
  501. return 0;
  502. /* otherwise, rec->length >= bs */
  503. }
  504. if (EVP_Cipher(ds, rec->data, rec->input, l) < 1)
  505. return -1;
  506. if (EVP_MD_CTX_md(s->read_hash) != NULL)
  507. mac_size = EVP_MD_CTX_size(s->read_hash);
  508. if ((bs != 1) && !send)
  509. return ssl3_cbc_remove_padding(s, rec, bs, mac_size);
  510. }
  511. return (1);
  512. }
  513. void ssl3_init_finished_mac(SSL *s)
  514. {
  515. if (s->s3->handshake_buffer)
  516. BIO_free(s->s3->handshake_buffer);
  517. if (s->s3->handshake_dgst)
  518. ssl3_free_digest_list(s);
  519. s->s3->handshake_buffer = BIO_new(BIO_s_mem());
  520. (void)BIO_set_close(s->s3->handshake_buffer, BIO_CLOSE);
  521. }
  522. void ssl3_free_digest_list(SSL *s)
  523. {
  524. int i;
  525. if (!s->s3->handshake_dgst)
  526. return;
  527. for (i = 0; i < SSL_MAX_DIGEST; i++) {
  528. if (s->s3->handshake_dgst[i])
  529. EVP_MD_CTX_destroy(s->s3->handshake_dgst[i]);
  530. }
  531. OPENSSL_free(s->s3->handshake_dgst);
  532. s->s3->handshake_dgst = NULL;
  533. }
  534. void ssl3_finish_mac(SSL *s, const unsigned char *buf, int len)
  535. {
  536. if (s->s3->handshake_buffer
  537. && !(s->s3->flags & TLS1_FLAGS_KEEP_HANDSHAKE)) {
  538. BIO_write(s->s3->handshake_buffer, (void *)buf, len);
  539. } else {
  540. int i;
  541. for (i = 0; i < SSL_MAX_DIGEST; i++) {
  542. if (s->s3->handshake_dgst[i] != NULL)
  543. EVP_DigestUpdate(s->s3->handshake_dgst[i], buf, len);
  544. }
  545. }
  546. }
  547. int ssl3_digest_cached_records(SSL *s)
  548. {
  549. int i;
  550. long mask;
  551. const EVP_MD *md;
  552. long hdatalen;
  553. void *hdata;
  554. /* Allocate handshake_dgst array */
  555. ssl3_free_digest_list(s);
  556. s->s3->handshake_dgst =
  557. OPENSSL_malloc(SSL_MAX_DIGEST * sizeof(EVP_MD_CTX *));
  558. memset(s->s3->handshake_dgst, 0, SSL_MAX_DIGEST * sizeof(EVP_MD_CTX *));
  559. hdatalen = BIO_get_mem_data(s->s3->handshake_buffer, &hdata);
  560. if (hdatalen <= 0) {
  561. SSLerr(SSL_F_SSL3_DIGEST_CACHED_RECORDS, SSL_R_BAD_HANDSHAKE_LENGTH);
  562. return 0;
  563. }
  564. /* Loop through bitso of algorithm2 field and create MD_CTX-es */
  565. for (i = 0; ssl_get_handshake_digest(i, &mask, &md); i++) {
  566. if ((mask & ssl_get_algorithm2(s)) && md) {
  567. s->s3->handshake_dgst[i] = EVP_MD_CTX_create();
  568. #ifdef OPENSSL_FIPS
  569. if (EVP_MD_nid(md) == NID_md5) {
  570. EVP_MD_CTX_set_flags(s->s3->handshake_dgst[i],
  571. EVP_MD_CTX_FLAG_NON_FIPS_ALLOW);
  572. }
  573. #endif
  574. EVP_DigestInit_ex(s->s3->handshake_dgst[i], md, NULL);
  575. EVP_DigestUpdate(s->s3->handshake_dgst[i], hdata, hdatalen);
  576. } else {
  577. s->s3->handshake_dgst[i] = NULL;
  578. }
  579. }
  580. if (!(s->s3->flags & TLS1_FLAGS_KEEP_HANDSHAKE)) {
  581. /* Free handshake_buffer BIO */
  582. BIO_free(s->s3->handshake_buffer);
  583. s->s3->handshake_buffer = NULL;
  584. }
  585. return 1;
  586. }
  587. int ssl3_cert_verify_mac(SSL *s, int md_nid, unsigned char *p)
  588. {
  589. return (ssl3_handshake_mac(s, md_nid, NULL, 0, p));
  590. }
  591. int ssl3_final_finish_mac(SSL *s,
  592. const char *sender, int len, unsigned char *p)
  593. {
  594. int ret, sha1len;
  595. ret = ssl3_handshake_mac(s, NID_md5, sender, len, p);
  596. if (ret == 0)
  597. return 0;
  598. p += ret;
  599. sha1len = ssl3_handshake_mac(s, NID_sha1, sender, len, p);
  600. if (sha1len == 0)
  601. return 0;
  602. ret += sha1len;
  603. return (ret);
  604. }
  605. static int ssl3_handshake_mac(SSL *s, int md_nid,
  606. const char *sender, int len, unsigned char *p)
  607. {
  608. unsigned int ret;
  609. int npad, n;
  610. unsigned int i;
  611. unsigned char md_buf[EVP_MAX_MD_SIZE];
  612. EVP_MD_CTX ctx, *d = NULL;
  613. if (s->s3->handshake_buffer)
  614. if (!ssl3_digest_cached_records(s))
  615. return 0;
  616. /*
  617. * Search for digest of specified type in the handshake_dgst array
  618. */
  619. for (i = 0; i < SSL_MAX_DIGEST; i++) {
  620. if (s->s3->handshake_dgst[i]
  621. && EVP_MD_CTX_type(s->s3->handshake_dgst[i]) == md_nid) {
  622. d = s->s3->handshake_dgst[i];
  623. break;
  624. }
  625. }
  626. if (!d) {
  627. SSLerr(SSL_F_SSL3_HANDSHAKE_MAC, SSL_R_NO_REQUIRED_DIGEST);
  628. return 0;
  629. }
  630. EVP_MD_CTX_init(&ctx);
  631. EVP_MD_CTX_set_flags(&ctx, EVP_MD_CTX_FLAG_NON_FIPS_ALLOW);
  632. EVP_MD_CTX_copy_ex(&ctx, d);
  633. n = EVP_MD_CTX_size(&ctx);
  634. if (n < 0)
  635. return 0;
  636. npad = (48 / n) * n;
  637. if ((sender != NULL && EVP_DigestUpdate(&ctx, sender, len) <= 0)
  638. || EVP_DigestUpdate(&ctx, s->session->master_key,
  639. s->session->master_key_length) <= 0
  640. || EVP_DigestUpdate(&ctx, ssl3_pad_1, npad) <= 0
  641. || EVP_DigestFinal_ex(&ctx, md_buf, &i) <= 0
  642. || EVP_DigestInit_ex(&ctx, EVP_MD_CTX_md(&ctx), NULL) <= 0
  643. || EVP_DigestUpdate(&ctx, s->session->master_key,
  644. s->session->master_key_length) <= 0
  645. || EVP_DigestUpdate(&ctx, ssl3_pad_2, npad) <= 0
  646. || EVP_DigestUpdate(&ctx, md_buf, i) <= 0
  647. || EVP_DigestFinal_ex(&ctx, p, &ret) <= 0) {
  648. SSLerr(SSL_F_SSL3_HANDSHAKE_MAC, ERR_R_INTERNAL_ERROR);
  649. ret = 0;
  650. }
  651. EVP_MD_CTX_cleanup(&ctx);
  652. return ((int)ret);
  653. }
  654. int n_ssl3_mac(SSL *ssl, unsigned char *md, int send)
  655. {
  656. SSL3_RECORD *rec;
  657. unsigned char *mac_sec, *seq;
  658. EVP_MD_CTX md_ctx;
  659. const EVP_MD_CTX *hash;
  660. unsigned char *p, rec_char;
  661. size_t md_size, orig_len;
  662. int npad;
  663. int t;
  664. if (send) {
  665. rec = &(ssl->s3->wrec);
  666. mac_sec = &(ssl->s3->write_mac_secret[0]);
  667. seq = &(ssl->s3->write_sequence[0]);
  668. hash = ssl->write_hash;
  669. } else {
  670. rec = &(ssl->s3->rrec);
  671. mac_sec = &(ssl->s3->read_mac_secret[0]);
  672. seq = &(ssl->s3->read_sequence[0]);
  673. hash = ssl->read_hash;
  674. }
  675. t = EVP_MD_CTX_size(hash);
  676. if (t < 0)
  677. return -1;
  678. md_size = t;
  679. npad = (48 / md_size) * md_size;
  680. /*
  681. * kludge: ssl3_cbc_remove_padding passes padding length in rec->type
  682. */
  683. orig_len = rec->length + md_size + ((unsigned int)rec->type >> 8);
  684. rec->type &= 0xff;
  685. if (!send &&
  686. EVP_CIPHER_CTX_mode(ssl->enc_read_ctx) == EVP_CIPH_CBC_MODE &&
  687. ssl3_cbc_record_digest_supported(hash)) {
  688. /*
  689. * This is a CBC-encrypted record. We must avoid leaking any
  690. * timing-side channel information about how many blocks of data we
  691. * are hashing because that gives an attacker a timing-oracle.
  692. */
  693. /*-
  694. * npad is, at most, 48 bytes and that's with MD5:
  695. * 16 + 48 + 8 (sequence bytes) + 1 + 2 = 75.
  696. *
  697. * With SHA-1 (the largest hash speced for SSLv3) the hash size
  698. * goes up 4, but npad goes down by 8, resulting in a smaller
  699. * total size.
  700. */
  701. unsigned char header[75];
  702. unsigned j = 0;
  703. memcpy(header + j, mac_sec, md_size);
  704. j += md_size;
  705. memcpy(header + j, ssl3_pad_1, npad);
  706. j += npad;
  707. memcpy(header + j, seq, 8);
  708. j += 8;
  709. header[j++] = rec->type;
  710. header[j++] = rec->length >> 8;
  711. header[j++] = rec->length & 0xff;
  712. /* Final param == is SSLv3 */
  713. if (ssl3_cbc_digest_record(hash,
  714. md, &md_size,
  715. header, rec->input,
  716. rec->length + md_size, orig_len,
  717. mac_sec, md_size, 1) <= 0)
  718. return -1;
  719. } else {
  720. unsigned int md_size_u;
  721. /* Chop the digest off the end :-) */
  722. EVP_MD_CTX_init(&md_ctx);
  723. rec_char = rec->type;
  724. p = md;
  725. s2n(rec->length, p);
  726. if (EVP_MD_CTX_copy_ex(&md_ctx, hash) <= 0
  727. || EVP_DigestUpdate(&md_ctx, mac_sec, md_size) <= 0
  728. || EVP_DigestUpdate(&md_ctx, ssl3_pad_1, npad) <= 0
  729. || EVP_DigestUpdate(&md_ctx, seq, 8) <= 0
  730. || EVP_DigestUpdate(&md_ctx, &rec_char, 1) <= 0
  731. || EVP_DigestUpdate(&md_ctx, md, 2) <= 0
  732. || EVP_DigestUpdate(&md_ctx, rec->input, rec->length) <= 0
  733. || EVP_DigestFinal_ex(&md_ctx, md, NULL) <= 0
  734. || EVP_MD_CTX_copy_ex(&md_ctx, hash) <= 0
  735. || EVP_DigestUpdate(&md_ctx, mac_sec, md_size) <= 0
  736. || EVP_DigestUpdate(&md_ctx, ssl3_pad_2, npad) <= 0
  737. || EVP_DigestUpdate(&md_ctx, md, md_size) <= 0
  738. || EVP_DigestFinal_ex(&md_ctx, md, &md_size_u) <= 0) {
  739. EVP_MD_CTX_cleanup(&md_ctx);
  740. return -1;
  741. }
  742. md_size = md_size_u;
  743. EVP_MD_CTX_cleanup(&md_ctx);
  744. }
  745. ssl3_record_sequence_update(seq);
  746. return (md_size);
  747. }
  748. void ssl3_record_sequence_update(unsigned char *seq)
  749. {
  750. int i;
  751. for (i = 7; i >= 0; i--) {
  752. ++seq[i];
  753. if (seq[i] != 0)
  754. break;
  755. }
  756. }
  757. int ssl3_generate_master_secret(SSL *s, unsigned char *out, unsigned char *p,
  758. int len)
  759. {
  760. static const unsigned char *salt[3] = {
  761. #ifndef CHARSET_EBCDIC
  762. (const unsigned char *)"A",
  763. (const unsigned char *)"BB",
  764. (const unsigned char *)"CCC",
  765. #else
  766. (const unsigned char *)"\x41",
  767. (const unsigned char *)"\x42\x42",
  768. (const unsigned char *)"\x43\x43\x43",
  769. #endif
  770. };
  771. unsigned char buf[EVP_MAX_MD_SIZE];
  772. EVP_MD_CTX ctx;
  773. int i, ret = 0;
  774. unsigned int n;
  775. #ifdef OPENSSL_SSL_TRACE_CRYPTO
  776. unsigned char *tmpout = out;
  777. #endif
  778. EVP_MD_CTX_init(&ctx);
  779. for (i = 0; i < 3; i++) {
  780. if (EVP_DigestInit_ex(&ctx, s->ctx->sha1, NULL) <= 0
  781. || EVP_DigestUpdate(&ctx, salt[i],
  782. strlen((const char *)salt[i])) <= 0
  783. || EVP_DigestUpdate(&ctx, p, len) <= 0
  784. || EVP_DigestUpdate(&ctx, &(s->s3->client_random[0]),
  785. SSL3_RANDOM_SIZE) <= 0
  786. || EVP_DigestUpdate(&ctx, &(s->s3->server_random[0]),
  787. SSL3_RANDOM_SIZE) <= 0
  788. || EVP_DigestFinal_ex(&ctx, buf, &n) <= 0
  789. || EVP_DigestInit_ex(&ctx, s->ctx->md5, NULL) <= 0
  790. || EVP_DigestUpdate(&ctx, p, len) <= 0
  791. || EVP_DigestUpdate(&ctx, buf, n) <= 0
  792. || EVP_DigestFinal_ex(&ctx, out, &n) <= 0) {
  793. SSLerr(SSL_F_SSL3_GENERATE_MASTER_SECRET, ERR_R_INTERNAL_ERROR);
  794. ret = 0;
  795. break;
  796. }
  797. out += n;
  798. ret += n;
  799. }
  800. EVP_MD_CTX_cleanup(&ctx);
  801. #ifdef OPENSSL_SSL_TRACE_CRYPTO
  802. if (ret > 0 && s->msg_callback) {
  803. s->msg_callback(2, s->version, TLS1_RT_CRYPTO_PREMASTER,
  804. p, len, s, s->msg_callback_arg);
  805. s->msg_callback(2, s->version, TLS1_RT_CRYPTO_CLIENT_RANDOM,
  806. s->s3->client_random, SSL3_RANDOM_SIZE,
  807. s, s->msg_callback_arg);
  808. s->msg_callback(2, s->version, TLS1_RT_CRYPTO_SERVER_RANDOM,
  809. s->s3->server_random, SSL3_RANDOM_SIZE,
  810. s, s->msg_callback_arg);
  811. s->msg_callback(2, s->version, TLS1_RT_CRYPTO_MASTER,
  812. tmpout, SSL3_MASTER_SECRET_SIZE,
  813. s, s->msg_callback_arg);
  814. }
  815. #endif
  816. OPENSSL_cleanse(buf, sizeof buf);
  817. return (ret);
  818. }
  819. int ssl3_alert_code(int code)
  820. {
  821. switch (code) {
  822. case SSL_AD_CLOSE_NOTIFY:
  823. return (SSL3_AD_CLOSE_NOTIFY);
  824. case SSL_AD_UNEXPECTED_MESSAGE:
  825. return (SSL3_AD_UNEXPECTED_MESSAGE);
  826. case SSL_AD_BAD_RECORD_MAC:
  827. return (SSL3_AD_BAD_RECORD_MAC);
  828. case SSL_AD_DECRYPTION_FAILED:
  829. return (SSL3_AD_BAD_RECORD_MAC);
  830. case SSL_AD_RECORD_OVERFLOW:
  831. return (SSL3_AD_BAD_RECORD_MAC);
  832. case SSL_AD_DECOMPRESSION_FAILURE:
  833. return (SSL3_AD_DECOMPRESSION_FAILURE);
  834. case SSL_AD_HANDSHAKE_FAILURE:
  835. return (SSL3_AD_HANDSHAKE_FAILURE);
  836. case SSL_AD_NO_CERTIFICATE:
  837. return (SSL3_AD_NO_CERTIFICATE);
  838. case SSL_AD_BAD_CERTIFICATE:
  839. return (SSL3_AD_BAD_CERTIFICATE);
  840. case SSL_AD_UNSUPPORTED_CERTIFICATE:
  841. return (SSL3_AD_UNSUPPORTED_CERTIFICATE);
  842. case SSL_AD_CERTIFICATE_REVOKED:
  843. return (SSL3_AD_CERTIFICATE_REVOKED);
  844. case SSL_AD_CERTIFICATE_EXPIRED:
  845. return (SSL3_AD_CERTIFICATE_EXPIRED);
  846. case SSL_AD_CERTIFICATE_UNKNOWN:
  847. return (SSL3_AD_CERTIFICATE_UNKNOWN);
  848. case SSL_AD_ILLEGAL_PARAMETER:
  849. return (SSL3_AD_ILLEGAL_PARAMETER);
  850. case SSL_AD_UNKNOWN_CA:
  851. return (SSL3_AD_BAD_CERTIFICATE);
  852. case SSL_AD_ACCESS_DENIED:
  853. return (SSL3_AD_HANDSHAKE_FAILURE);
  854. case SSL_AD_DECODE_ERROR:
  855. return (SSL3_AD_HANDSHAKE_FAILURE);
  856. case SSL_AD_DECRYPT_ERROR:
  857. return (SSL3_AD_HANDSHAKE_FAILURE);
  858. case SSL_AD_EXPORT_RESTRICTION:
  859. return (SSL3_AD_HANDSHAKE_FAILURE);
  860. case SSL_AD_PROTOCOL_VERSION:
  861. return (SSL3_AD_HANDSHAKE_FAILURE);
  862. case SSL_AD_INSUFFICIENT_SECURITY:
  863. return (SSL3_AD_HANDSHAKE_FAILURE);
  864. case SSL_AD_INTERNAL_ERROR:
  865. return (SSL3_AD_HANDSHAKE_FAILURE);
  866. case SSL_AD_USER_CANCELLED:
  867. return (SSL3_AD_HANDSHAKE_FAILURE);
  868. case SSL_AD_NO_RENEGOTIATION:
  869. return (-1); /* Don't send it :-) */
  870. case SSL_AD_UNSUPPORTED_EXTENSION:
  871. return (SSL3_AD_HANDSHAKE_FAILURE);
  872. case SSL_AD_CERTIFICATE_UNOBTAINABLE:
  873. return (SSL3_AD_HANDSHAKE_FAILURE);
  874. case SSL_AD_UNRECOGNIZED_NAME:
  875. return (SSL3_AD_HANDSHAKE_FAILURE);
  876. case SSL_AD_BAD_CERTIFICATE_STATUS_RESPONSE:
  877. return (SSL3_AD_HANDSHAKE_FAILURE);
  878. case SSL_AD_BAD_CERTIFICATE_HASH_VALUE:
  879. return (SSL3_AD_HANDSHAKE_FAILURE);
  880. case SSL_AD_UNKNOWN_PSK_IDENTITY:
  881. return (TLS1_AD_UNKNOWN_PSK_IDENTITY);
  882. case SSL_AD_INAPPROPRIATE_FALLBACK:
  883. return (TLS1_AD_INAPPROPRIATE_FALLBACK);
  884. default:
  885. return (-1);
  886. }
  887. }