t1_enc.c 24 KB

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