t1_enc.c 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721
  1. /* ssl/t1_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-2002 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. #include <stdio.h>
  112. #include <openssl/comp.h>
  113. #include <openssl/md5.h>
  114. #include <openssl/sha.h>
  115. #include <openssl/evp.h>
  116. #include <openssl/hmac.h>
  117. #include "ssl_locl.h"
  118. static void tls1_P_hash(const EVP_MD *md, const unsigned char *sec,
  119. int sec_len, unsigned char *seed, int seed_len,
  120. unsigned char *out, int olen)
  121. {
  122. int chunk,n;
  123. unsigned int j;
  124. HMAC_CTX ctx;
  125. HMAC_CTX ctx_tmp;
  126. unsigned char A1[HMAC_MAX_MD_CBLOCK];
  127. unsigned int A1_len;
  128. chunk=EVP_MD_size(md);
  129. HMAC_Init(&ctx,sec,sec_len,md);
  130. HMAC_Update(&ctx,seed,seed_len);
  131. HMAC_Final(&ctx,A1,&A1_len);
  132. n=0;
  133. for (;;)
  134. {
  135. HMAC_Init(&ctx,NULL,0,NULL); /* re-init */
  136. HMAC_Update(&ctx,A1,A1_len);
  137. memcpy(&ctx_tmp,&ctx,sizeof(ctx)); /* Copy for A2 */ /* not needed for last one */
  138. HMAC_Update(&ctx,seed,seed_len);
  139. if (olen > chunk)
  140. {
  141. HMAC_Final(&ctx,out,&j);
  142. out+=j;
  143. olen-=j;
  144. HMAC_Final(&ctx_tmp,A1,&A1_len); /* calc the next A1 value */
  145. }
  146. else /* last one */
  147. {
  148. HMAC_Final(&ctx,A1,&A1_len);
  149. memcpy(out,A1,olen);
  150. break;
  151. }
  152. }
  153. HMAC_cleanup(&ctx);
  154. HMAC_cleanup(&ctx_tmp);
  155. OPENSSL_cleanse(A1,sizeof(A1));
  156. }
  157. static void tls1_PRF(const EVP_MD *md5, const EVP_MD *sha1,
  158. unsigned char *label, int label_len,
  159. const unsigned char *sec, int slen, unsigned char *out1,
  160. unsigned char *out2, int olen)
  161. {
  162. int len,i;
  163. const unsigned char *S1,*S2;
  164. len=slen/2;
  165. S1=sec;
  166. S2= &(sec[len]);
  167. len+=(slen&1); /* add for odd, make longer */
  168. tls1_P_hash(md5 ,S1,len,label,label_len,out1,olen);
  169. tls1_P_hash(sha1,S2,len,label,label_len,out2,olen);
  170. for (i=0; i<olen; i++)
  171. out1[i]^=out2[i];
  172. }
  173. static void tls1_generate_key_block(SSL *s, unsigned char *km,
  174. unsigned char *tmp, int num)
  175. {
  176. unsigned char *p;
  177. unsigned char buf[SSL3_RANDOM_SIZE*2+
  178. TLS_MD_MAX_CONST_SIZE];
  179. p=buf;
  180. memcpy(p,TLS_MD_KEY_EXPANSION_CONST,
  181. TLS_MD_KEY_EXPANSION_CONST_SIZE);
  182. p+=TLS_MD_KEY_EXPANSION_CONST_SIZE;
  183. memcpy(p,s->s3->server_random,SSL3_RANDOM_SIZE);
  184. p+=SSL3_RANDOM_SIZE;
  185. memcpy(p,s->s3->client_random,SSL3_RANDOM_SIZE);
  186. p+=SSL3_RANDOM_SIZE;
  187. tls1_PRF(s->ctx->md5,s->ctx->sha1,buf,(int)(p-buf),
  188. s->session->master_key,s->session->master_key_length,
  189. km,tmp,num);
  190. }
  191. int tls1_change_cipher_state(SSL *s, int which)
  192. {
  193. static const unsigned char empty[]="";
  194. unsigned char *p,*key_block,*mac_secret;
  195. unsigned char *exp_label,buf[TLS_MD_MAX_CONST_SIZE+
  196. SSL3_RANDOM_SIZE*2];
  197. unsigned char tmp1[EVP_MAX_KEY_LENGTH];
  198. unsigned char tmp2[EVP_MAX_KEY_LENGTH];
  199. unsigned char iv1[EVP_MAX_IV_LENGTH*2];
  200. unsigned char iv2[EVP_MAX_IV_LENGTH*2];
  201. unsigned char *ms,*key,*iv,*er1,*er2;
  202. int client_write;
  203. EVP_CIPHER_CTX *dd;
  204. const EVP_CIPHER *c;
  205. const SSL_COMP *comp;
  206. const EVP_MD *m;
  207. int _exp,n,i,j,k,exp_label_len,cl;
  208. _exp=SSL_C_IS_EXPORT(s->s3->tmp.new_cipher);
  209. c=s->s3->tmp.new_sym_enc;
  210. m=s->s3->tmp.new_hash;
  211. comp=s->s3->tmp.new_compression;
  212. key_block=s->s3->tmp.key_block;
  213. if (which & SSL3_CC_READ)
  214. {
  215. if ((s->enc_read_ctx == NULL) &&
  216. ((s->enc_read_ctx=(EVP_CIPHER_CTX *)
  217. OPENSSL_malloc(sizeof(EVP_CIPHER_CTX))) == NULL))
  218. goto err;
  219. dd= s->enc_read_ctx;
  220. s->read_hash=m;
  221. if (s->expand != NULL)
  222. {
  223. COMP_CTX_free(s->expand);
  224. s->expand=NULL;
  225. }
  226. if (comp != NULL)
  227. {
  228. s->expand=COMP_CTX_new(comp->method);
  229. if (s->expand == NULL)
  230. {
  231. SSLerr(SSL_F_TLS1_CHANGE_CIPHER_STATE,SSL_R_COMPRESSION_LIBRARY_ERROR);
  232. goto err2;
  233. }
  234. if (s->s3->rrec.comp == NULL)
  235. s->s3->rrec.comp=(unsigned char *)
  236. OPENSSL_malloc(SSL3_RT_MAX_ENCRYPTED_LENGTH);
  237. if (s->s3->rrec.comp == NULL)
  238. goto err;
  239. }
  240. memset(&(s->s3->read_sequence[0]),0,8);
  241. mac_secret= &(s->s3->read_mac_secret[0]);
  242. }
  243. else
  244. {
  245. if ((s->enc_write_ctx == NULL) &&
  246. ((s->enc_write_ctx=(EVP_CIPHER_CTX *)
  247. OPENSSL_malloc(sizeof(EVP_CIPHER_CTX))) == NULL))
  248. goto err;
  249. dd= s->enc_write_ctx;
  250. s->write_hash=m;
  251. if (s->compress != NULL)
  252. {
  253. COMP_CTX_free(s->compress);
  254. s->compress=NULL;
  255. }
  256. if (comp != NULL)
  257. {
  258. s->compress=COMP_CTX_new(comp->method);
  259. if (s->compress == NULL)
  260. {
  261. SSLerr(SSL_F_TLS1_CHANGE_CIPHER_STATE,SSL_R_COMPRESSION_LIBRARY_ERROR);
  262. goto err2;
  263. }
  264. }
  265. memset(&(s->s3->write_sequence[0]),0,8);
  266. mac_secret= &(s->s3->write_mac_secret[0]);
  267. }
  268. EVP_CIPHER_CTX_init(dd);
  269. p=s->s3->tmp.key_block;
  270. i=EVP_MD_size(m);
  271. cl=EVP_CIPHER_key_length(c);
  272. j=_exp ? (cl < SSL_C_EXPORT_KEYLENGTH(s->s3->tmp.new_cipher) ?
  273. cl : SSL_C_EXPORT_KEYLENGTH(s->s3->tmp.new_cipher)) : cl;
  274. /* Was j=(exp)?5:EVP_CIPHER_key_length(c); */
  275. k=EVP_CIPHER_iv_length(c);
  276. er1= &(s->s3->client_random[0]);
  277. er2= &(s->s3->server_random[0]);
  278. if ( (which == SSL3_CHANGE_CIPHER_CLIENT_WRITE) ||
  279. (which == SSL3_CHANGE_CIPHER_SERVER_READ))
  280. {
  281. ms= &(p[ 0]); n=i+i;
  282. key= &(p[ n]); n+=j+j;
  283. iv= &(p[ n]); n+=k+k;
  284. exp_label=(unsigned char *)TLS_MD_CLIENT_WRITE_KEY_CONST;
  285. exp_label_len=TLS_MD_CLIENT_WRITE_KEY_CONST_SIZE;
  286. client_write=1;
  287. }
  288. else
  289. {
  290. n=i;
  291. ms= &(p[ n]); n+=i+j;
  292. key= &(p[ n]); n+=j+k;
  293. iv= &(p[ n]); n+=k;
  294. exp_label=(unsigned char *)TLS_MD_SERVER_WRITE_KEY_CONST;
  295. exp_label_len=TLS_MD_SERVER_WRITE_KEY_CONST_SIZE;
  296. client_write=0;
  297. }
  298. if (n > s->s3->tmp.key_block_length)
  299. {
  300. SSLerr(SSL_F_TLS1_CHANGE_CIPHER_STATE,SSL_R_INTERNAL_ERROR);
  301. goto err2;
  302. }
  303. memcpy(mac_secret,ms,i);
  304. #ifdef TLS_DEBUG
  305. printf("which = %04X\nmac key=",which);
  306. { int z; for (z=0; z<i; z++) printf("%02X%c",ms[z],((z+1)%16)?' ':'\n'); }
  307. #endif
  308. if (_exp)
  309. {
  310. /* In here I set both the read and write key/iv to the
  311. * same value since only the correct one will be used :-).
  312. */
  313. p=buf;
  314. memcpy(p,exp_label,exp_label_len);
  315. p+=exp_label_len;
  316. memcpy(p,s->s3->client_random,SSL3_RANDOM_SIZE);
  317. p+=SSL3_RANDOM_SIZE;
  318. memcpy(p,s->s3->server_random,SSL3_RANDOM_SIZE);
  319. p+=SSL3_RANDOM_SIZE;
  320. tls1_PRF(s->ctx->md5,s->ctx->sha1,buf,(int)(p-buf),key,j,
  321. tmp1,tmp2,EVP_CIPHER_key_length(c));
  322. key=tmp1;
  323. if (k > 0)
  324. {
  325. p=buf;
  326. memcpy(p,TLS_MD_IV_BLOCK_CONST,
  327. TLS_MD_IV_BLOCK_CONST_SIZE);
  328. p+=TLS_MD_IV_BLOCK_CONST_SIZE;
  329. memcpy(p,s->s3->client_random,SSL3_RANDOM_SIZE);
  330. p+=SSL3_RANDOM_SIZE;
  331. memcpy(p,s->s3->server_random,SSL3_RANDOM_SIZE);
  332. p+=SSL3_RANDOM_SIZE;
  333. tls1_PRF(s->ctx->md5,s->ctx->sha1,buf,p-buf,empty,0,
  334. iv1,iv2,k*2);
  335. if (client_write)
  336. iv=iv1;
  337. else
  338. iv= &(iv1[k]);
  339. }
  340. }
  341. s->session->key_arg_length=0;
  342. EVP_CipherInit(dd,c,key,iv,(which & SSL3_CC_WRITE));
  343. #ifdef TLS_DEBUG
  344. printf("which = %04X\nkey=",which);
  345. { int z; for (z=0; z<EVP_CIPHER_key_length(c); z++) printf("%02X%c",key[z],((z+1)%16)?' ':'\n'); }
  346. printf("\niv=");
  347. { int z; for (z=0; z<k; z++) printf("%02X%c",iv[z],((z+1)%16)?' ':'\n'); }
  348. printf("\n");
  349. #endif
  350. OPENSSL_cleanse(tmp1,sizeof(tmp1));
  351. OPENSSL_cleanse(tmp2,sizeof(tmp1));
  352. OPENSSL_cleanse(iv1,sizeof(iv1));
  353. OPENSSL_cleanse(iv2,sizeof(iv2));
  354. return(1);
  355. err:
  356. SSLerr(SSL_F_TLS1_CHANGE_CIPHER_STATE,ERR_R_MALLOC_FAILURE);
  357. err2:
  358. return(0);
  359. }
  360. int tls1_setup_key_block(SSL *s)
  361. {
  362. unsigned char *p1,*p2;
  363. const EVP_CIPHER *c;
  364. const EVP_MD *hash;
  365. int num;
  366. SSL_COMP *comp;
  367. if (s->s3->tmp.key_block_length != 0)
  368. return(1);
  369. if (!ssl_cipher_get_evp(s->session,&c,&hash,&comp))
  370. {
  371. SSLerr(SSL_F_TLS1_SETUP_KEY_BLOCK,SSL_R_CIPHER_OR_HASH_UNAVAILABLE);
  372. return(0);
  373. }
  374. s->s3->tmp.new_sym_enc=c;
  375. s->s3->tmp.new_hash=hash;
  376. num=EVP_CIPHER_key_length(c)+EVP_MD_size(hash)+EVP_CIPHER_iv_length(c);
  377. num*=2;
  378. ssl3_cleanup_key_block(s);
  379. if ((p1=(unsigned char *)OPENSSL_malloc(num)) == NULL)
  380. goto err;
  381. if ((p2=(unsigned char *)OPENSSL_malloc(num)) == NULL)
  382. goto err;
  383. s->s3->tmp.key_block_length=num;
  384. s->s3->tmp.key_block=p1;
  385. #ifdef TLS_DEBUG
  386. printf("client random\n");
  387. { int z; for (z=0; z<SSL3_RANDOM_SIZE; z++) printf("%02X%c",s->s3->client_random[z],((z+1)%16)?' ':'\n'); }
  388. printf("server random\n");
  389. { int z; for (z=0; z<SSL3_RANDOM_SIZE; z++) printf("%02X%c",s->s3->server_random[z],((z+1)%16)?' ':'\n'); }
  390. printf("pre-master\n");
  391. { int z; for (z=0; z<s->session->master_key_length; z++) printf("%02X%c",s->session->master_key[z],((z+1)%16)?' ':'\n'); }
  392. #endif
  393. tls1_generate_key_block(s,p1,p2,num);
  394. OPENSSL_cleanse(p2,num);
  395. OPENSSL_free(p2);
  396. #ifdef TLS_DEBUG
  397. printf("\nkey block\n");
  398. { int z; for (z=0; z<num; z++) printf("%02X%c",p1[z],((z+1)%16)?' ':'\n'); }
  399. #endif
  400. if (!(s->options & SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS))
  401. {
  402. /* enable vulnerability countermeasure for CBC ciphers with
  403. * known-IV problem (http://www.openssl.org/~bodo/tls-cbc.txt)
  404. */
  405. s->s3->need_empty_fragments = 1;
  406. if (s->session->cipher != NULL)
  407. {
  408. if ((s->session->cipher->algorithms & SSL_ENC_MASK) == SSL_eNULL)
  409. s->s3->need_empty_fragments = 0;
  410. #ifndef NO_RC4
  411. if ((s->session->cipher->algorithms & SSL_ENC_MASK) == SSL_RC4)
  412. s->s3->need_empty_fragments = 0;
  413. #endif
  414. }
  415. }
  416. return(1);
  417. err:
  418. SSLerr(SSL_F_TLS1_SETUP_KEY_BLOCK,ERR_R_MALLOC_FAILURE);
  419. return(0);
  420. }
  421. int tls1_enc(SSL *s, int send)
  422. {
  423. SSL3_RECORD *rec;
  424. EVP_CIPHER_CTX *ds;
  425. unsigned long l;
  426. int bs,i,ii,j,k,n=0;
  427. const EVP_CIPHER *enc;
  428. if (send)
  429. {
  430. if (s->write_hash != NULL)
  431. n=EVP_MD_size(s->write_hash);
  432. ds=s->enc_write_ctx;
  433. rec= &(s->s3->wrec);
  434. if (s->enc_write_ctx == NULL)
  435. enc=NULL;
  436. else
  437. enc=EVP_CIPHER_CTX_cipher(s->enc_write_ctx);
  438. }
  439. else
  440. {
  441. if (s->read_hash != NULL)
  442. n=EVP_MD_size(s->read_hash);
  443. ds=s->enc_read_ctx;
  444. rec= &(s->s3->rrec);
  445. if (s->enc_read_ctx == NULL)
  446. enc=NULL;
  447. else
  448. enc=EVP_CIPHER_CTX_cipher(s->enc_read_ctx);
  449. }
  450. if ((s->session == NULL) || (ds == NULL) ||
  451. (enc == NULL))
  452. {
  453. memmove(rec->data,rec->input,rec->length);
  454. rec->input=rec->data;
  455. }
  456. else
  457. {
  458. l=rec->length;
  459. bs=EVP_CIPHER_block_size(ds->cipher);
  460. if ((bs != 1) && send)
  461. {
  462. i=bs-((int)l%bs);
  463. /* Add weird padding of upto 256 bytes */
  464. /* we need to add 'i' padding bytes of value j */
  465. j=i-1;
  466. if (s->options & SSL_OP_TLS_BLOCK_PADDING_BUG)
  467. {
  468. if (s->s3->flags & TLS1_FLAGS_TLS_PADDING_BUG)
  469. j++;
  470. }
  471. for (k=(int)l; k<(int)(l+i); k++)
  472. rec->input[k]=j;
  473. l+=i;
  474. rec->length+=i;
  475. }
  476. if (!send)
  477. {
  478. if (l == 0 || l%bs != 0)
  479. {
  480. SSLerr(SSL_F_TLS1_ENC,SSL_R_BLOCK_CIPHER_PAD_IS_WRONG);
  481. ssl3_send_alert(s,SSL3_AL_FATAL,SSL_AD_DECRYPTION_FAILED);
  482. return 0;
  483. }
  484. }
  485. EVP_Cipher(ds,rec->data,rec->input,l);
  486. if ((bs != 1) && !send)
  487. {
  488. ii=i=rec->data[l-1]; /* padding_length */
  489. i++;
  490. if (s->options&SSL_OP_TLS_BLOCK_PADDING_BUG)
  491. {
  492. /* First packet is even in size, so check */
  493. if ((memcmp(s->s3->read_sequence,
  494. "\0\0\0\0\0\0\0\0",8) == 0) && !(ii & 1))
  495. s->s3->flags|=TLS1_FLAGS_TLS_PADDING_BUG;
  496. if (s->s3->flags & TLS1_FLAGS_TLS_PADDING_BUG)
  497. i--;
  498. }
  499. /* TLS 1.0 does not bound the number of padding bytes by the block size.
  500. * All of them must have value 'padding_length'. */
  501. if (i > (int)rec->length)
  502. {
  503. /* Incorrect padding. SSLerr() and ssl3_alert are done
  504. * by caller: we don't want to reveal whether this is
  505. * a decryption error or a MAC verification failure
  506. * (see http://www.openssl.org/~bodo/tls-cbc.txt) */
  507. return -1;
  508. }
  509. for (j=(int)(l-i); j<(int)l; j++)
  510. {
  511. if (rec->data[j] != ii)
  512. {
  513. /* Incorrect padding */
  514. return -1;
  515. }
  516. }
  517. rec->length-=i;
  518. }
  519. }
  520. return(1);
  521. }
  522. int tls1_cert_verify_mac(SSL *s, EVP_MD_CTX *in_ctx, unsigned char *out)
  523. {
  524. unsigned int ret;
  525. EVP_MD_CTX ctx;
  526. EVP_MD_CTX_copy(&ctx,in_ctx);
  527. EVP_DigestFinal(&ctx,out,&ret);
  528. return((int)ret);
  529. }
  530. int tls1_final_finish_mac(SSL *s, EVP_MD_CTX *in1_ctx, EVP_MD_CTX *in2_ctx,
  531. const char *str, int slen, unsigned char *out)
  532. {
  533. unsigned int i;
  534. EVP_MD_CTX ctx;
  535. unsigned char buf[TLS_MD_MAX_CONST_SIZE+MD5_DIGEST_LENGTH+SHA_DIGEST_LENGTH];
  536. unsigned char *q,buf2[12];
  537. q=buf;
  538. memcpy(q,str,slen);
  539. q+=slen;
  540. EVP_MD_CTX_copy(&ctx,in1_ctx);
  541. EVP_DigestFinal(&ctx,q,&i);
  542. q+=i;
  543. EVP_MD_CTX_copy(&ctx,in2_ctx);
  544. EVP_DigestFinal(&ctx,q,&i);
  545. q+=i;
  546. tls1_PRF(s->ctx->md5,s->ctx->sha1,buf,(int)(q-buf),
  547. s->session->master_key,s->session->master_key_length,
  548. out,buf2,12);
  549. memset(&ctx,0,sizeof(EVP_MD_CTX));
  550. return((int)12);
  551. }
  552. int tls1_mac(SSL *ssl, unsigned char *md, int send)
  553. {
  554. SSL3_RECORD *rec;
  555. unsigned char *mac_sec,*seq;
  556. const EVP_MD *hash;
  557. unsigned int md_size;
  558. int i;
  559. HMAC_CTX hmac;
  560. unsigned char buf[5];
  561. if (send)
  562. {
  563. rec= &(ssl->s3->wrec);
  564. mac_sec= &(ssl->s3->write_mac_secret[0]);
  565. seq= &(ssl->s3->write_sequence[0]);
  566. hash=ssl->write_hash;
  567. }
  568. else
  569. {
  570. rec= &(ssl->s3->rrec);
  571. mac_sec= &(ssl->s3->read_mac_secret[0]);
  572. seq= &(ssl->s3->read_sequence[0]);
  573. hash=ssl->read_hash;
  574. }
  575. md_size=EVP_MD_size(hash);
  576. buf[0]=rec->type;
  577. buf[1]=TLS1_VERSION_MAJOR;
  578. buf[2]=TLS1_VERSION_MINOR;
  579. buf[3]=rec->length>>8;
  580. buf[4]=rec->length&0xff;
  581. /* I should fix this up TLS TLS TLS TLS TLS XXXXXXXX */
  582. HMAC_Init(&hmac,mac_sec,EVP_MD_size(hash),hash);
  583. HMAC_Update(&hmac,seq,8);
  584. HMAC_Update(&hmac,buf,5);
  585. HMAC_Update(&hmac,rec->input,rec->length);
  586. HMAC_Final(&hmac,md,&md_size);
  587. #ifdef TLS_DEBUG
  588. printf("sec=");
  589. {unsigned int z; for (z=0; z<md_size; z++) printf("%02X ",mac_sec[z]); printf("\n"); }
  590. printf("seq=");
  591. {int z; for (z=0; z<8; z++) printf("%02X ",seq[z]); printf("\n"); }
  592. printf("buf=");
  593. {int z; for (z=0; z<5; z++) printf("%02X ",buf[z]); printf("\n"); }
  594. printf("rec=");
  595. {unsigned int z; for (z=0; z<rec->length; z++) printf("%02X ",buf[z]); printf("\n"); }
  596. #endif
  597. for (i=7; i>=0; i--)
  598. {
  599. ++seq[i];
  600. if (seq[i] != 0) break;
  601. }
  602. #ifdef TLS_DEBUG
  603. {unsigned int z; for (z=0; z<md_size; z++) printf("%02X ",md[z]); printf("\n"); }
  604. #endif
  605. return(md_size);
  606. }
  607. int tls1_generate_master_secret(SSL *s, unsigned char *out, unsigned char *p,
  608. int len)
  609. {
  610. unsigned char buf[SSL3_RANDOM_SIZE*2+TLS_MD_MASTER_SECRET_CONST_SIZE];
  611. unsigned char buff[SSL_MAX_MASTER_KEY_LENGTH];
  612. /* Setup the stuff to munge */
  613. memcpy(buf,TLS_MD_MASTER_SECRET_CONST,
  614. TLS_MD_MASTER_SECRET_CONST_SIZE);
  615. memcpy(&(buf[TLS_MD_MASTER_SECRET_CONST_SIZE]),
  616. s->s3->client_random,SSL3_RANDOM_SIZE);
  617. memcpy(&(buf[SSL3_RANDOM_SIZE+TLS_MD_MASTER_SECRET_CONST_SIZE]),
  618. s->s3->server_random,SSL3_RANDOM_SIZE);
  619. tls1_PRF(s->ctx->md5,s->ctx->sha1,
  620. buf,TLS_MD_MASTER_SECRET_CONST_SIZE+SSL3_RANDOM_SIZE*2,p,len,
  621. s->session->master_key,buff,SSL3_MASTER_SECRET_SIZE);
  622. return(SSL3_MASTER_SECRET_SIZE);
  623. }
  624. int tls1_alert_code(int code)
  625. {
  626. switch (code)
  627. {
  628. case SSL_AD_CLOSE_NOTIFY: return(SSL3_AD_CLOSE_NOTIFY);
  629. case SSL_AD_UNEXPECTED_MESSAGE: return(SSL3_AD_UNEXPECTED_MESSAGE);
  630. case SSL_AD_BAD_RECORD_MAC: return(SSL3_AD_BAD_RECORD_MAC);
  631. case SSL_AD_DECRYPTION_FAILED: return(TLS1_AD_DECRYPTION_FAILED);
  632. case SSL_AD_RECORD_OVERFLOW: return(TLS1_AD_RECORD_OVERFLOW);
  633. case SSL_AD_DECOMPRESSION_FAILURE:return(SSL3_AD_DECOMPRESSION_FAILURE);
  634. case SSL_AD_HANDSHAKE_FAILURE: return(SSL3_AD_HANDSHAKE_FAILURE);
  635. case SSL_AD_NO_CERTIFICATE: return(-1);
  636. case SSL_AD_BAD_CERTIFICATE: return(SSL3_AD_BAD_CERTIFICATE);
  637. case SSL_AD_UNSUPPORTED_CERTIFICATE:return(SSL3_AD_UNSUPPORTED_CERTIFICATE);
  638. case SSL_AD_CERTIFICATE_REVOKED:return(SSL3_AD_CERTIFICATE_REVOKED);
  639. case SSL_AD_CERTIFICATE_EXPIRED:return(SSL3_AD_CERTIFICATE_EXPIRED);
  640. case SSL_AD_CERTIFICATE_UNKNOWN:return(SSL3_AD_CERTIFICATE_UNKNOWN);
  641. case SSL_AD_ILLEGAL_PARAMETER: return(SSL3_AD_ILLEGAL_PARAMETER);
  642. case SSL_AD_UNKNOWN_CA: return(TLS1_AD_UNKNOWN_CA);
  643. case SSL_AD_ACCESS_DENIED: return(TLS1_AD_ACCESS_DENIED);
  644. case SSL_AD_DECODE_ERROR: return(TLS1_AD_DECODE_ERROR);
  645. case SSL_AD_DECRYPT_ERROR: return(TLS1_AD_DECRYPT_ERROR);
  646. case SSL_AD_EXPORT_RESTRICTION: return(TLS1_AD_EXPORT_RESTRICTION);
  647. case SSL_AD_PROTOCOL_VERSION: return(TLS1_AD_PROTOCOL_VERSION);
  648. case SSL_AD_INSUFFICIENT_SECURITY:return(TLS1_AD_INSUFFICIENT_SECURITY);
  649. case SSL_AD_INTERNAL_ERROR: return(TLS1_AD_INTERNAL_ERROR);
  650. case SSL_AD_USER_CANCELLED: return(TLS1_AD_USER_CANCELLED);
  651. case SSL_AD_NO_RENEGOTIATION: return(TLS1_AD_NO_RENEGOTIATION);
  652. default: return(-1);
  653. }
  654. }