s2_srvr.c 40 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171
  1. /* ssl/s2_srvr.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-2001 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 "ssl_locl.h"
  112. #ifndef OPENSSL_NO_SSL2
  113. #include "../crypto/constant_time_locl.h"
  114. # include <stdio.h>
  115. # include <openssl/bio.h>
  116. # include <openssl/rand.h>
  117. # include <openssl/objects.h>
  118. # include <openssl/evp.h>
  119. static const SSL_METHOD *ssl2_get_server_method(int ver);
  120. static int get_client_master_key(SSL *s);
  121. static int get_client_hello(SSL *s);
  122. static int server_hello(SSL *s);
  123. static int get_client_finished(SSL *s);
  124. static int server_verify(SSL *s);
  125. static int server_finish(SSL *s);
  126. static int request_certificate(SSL *s);
  127. static int ssl_rsa_private_decrypt(CERT *c, int len, unsigned char *from,
  128. unsigned char *to, int padding);
  129. # define BREAK break
  130. static const SSL_METHOD *ssl2_get_server_method(int ver)
  131. {
  132. if (ver == SSL2_VERSION)
  133. return (SSLv2_server_method());
  134. else
  135. return (NULL);
  136. }
  137. IMPLEMENT_ssl2_meth_func(SSLv2_server_method,
  138. ssl2_accept,
  139. ssl_undefined_function, ssl2_get_server_method)
  140. int ssl2_accept(SSL *s)
  141. {
  142. unsigned long l = (unsigned long)time(NULL);
  143. BUF_MEM *buf = NULL;
  144. int ret = -1;
  145. long num1;
  146. void (*cb) (const SSL *ssl, int type, int val) = NULL;
  147. int new_state, state;
  148. RAND_add(&l, sizeof(l), 0);
  149. ERR_clear_error();
  150. clear_sys_error();
  151. if (s->info_callback != NULL)
  152. cb = s->info_callback;
  153. else if (s->ctx->info_callback != NULL)
  154. cb = s->ctx->info_callback;
  155. /* init things to blank */
  156. s->in_handshake++;
  157. if (!SSL_in_init(s) || SSL_in_before(s))
  158. SSL_clear(s);
  159. if (s->cert == NULL) {
  160. SSLerr(SSL_F_SSL2_ACCEPT, SSL_R_NO_CERTIFICATE_SET);
  161. return (-1);
  162. }
  163. clear_sys_error();
  164. for (;;) {
  165. state = s->state;
  166. switch (s->state) {
  167. case SSL_ST_BEFORE:
  168. case SSL_ST_ACCEPT:
  169. case SSL_ST_BEFORE | SSL_ST_ACCEPT:
  170. case SSL_ST_OK | SSL_ST_ACCEPT:
  171. s->server = 1;
  172. if (cb != NULL)
  173. cb(s, SSL_CB_HANDSHAKE_START, 1);
  174. s->version = SSL2_VERSION;
  175. s->type = SSL_ST_ACCEPT;
  176. if (s->init_buf == NULL) {
  177. if ((buf = BUF_MEM_new()) == NULL) {
  178. ret = -1;
  179. goto end;
  180. }
  181. if (!BUF_MEM_grow
  182. (buf, (int)SSL2_MAX_RECORD_LENGTH_3_BYTE_HEADER)) {
  183. BUF_MEM_free(buf);
  184. ret = -1;
  185. goto end;
  186. }
  187. s->init_buf = buf;
  188. }
  189. s->init_num = 0;
  190. s->ctx->stats.sess_accept++;
  191. s->handshake_func = ssl2_accept;
  192. s->state = SSL2_ST_GET_CLIENT_HELLO_A;
  193. BREAK;
  194. case SSL2_ST_GET_CLIENT_HELLO_A:
  195. case SSL2_ST_GET_CLIENT_HELLO_B:
  196. case SSL2_ST_GET_CLIENT_HELLO_C:
  197. s->shutdown = 0;
  198. ret = get_client_hello(s);
  199. if (ret <= 0)
  200. goto end;
  201. s->init_num = 0;
  202. s->state = SSL2_ST_SEND_SERVER_HELLO_A;
  203. BREAK;
  204. case SSL2_ST_SEND_SERVER_HELLO_A:
  205. case SSL2_ST_SEND_SERVER_HELLO_B:
  206. ret = server_hello(s);
  207. if (ret <= 0)
  208. goto end;
  209. s->init_num = 0;
  210. if (!s->hit) {
  211. s->state = SSL2_ST_GET_CLIENT_MASTER_KEY_A;
  212. BREAK;
  213. } else {
  214. s->state = SSL2_ST_SERVER_START_ENCRYPTION;
  215. BREAK;
  216. }
  217. case SSL2_ST_GET_CLIENT_MASTER_KEY_A:
  218. case SSL2_ST_GET_CLIENT_MASTER_KEY_B:
  219. ret = get_client_master_key(s);
  220. if (ret <= 0)
  221. goto end;
  222. s->init_num = 0;
  223. s->state = SSL2_ST_SERVER_START_ENCRYPTION;
  224. BREAK;
  225. case SSL2_ST_SERVER_START_ENCRYPTION:
  226. /*
  227. * Ok we how have sent all the stuff needed to start encrypting,
  228. * the next packet back will be encrypted.
  229. */
  230. if (!ssl2_enc_init(s, 0)) {
  231. ret = -1;
  232. goto end;
  233. }
  234. s->s2->clear_text = 0;
  235. s->state = SSL2_ST_SEND_SERVER_VERIFY_A;
  236. BREAK;
  237. case SSL2_ST_SEND_SERVER_VERIFY_A:
  238. case SSL2_ST_SEND_SERVER_VERIFY_B:
  239. ret = server_verify(s);
  240. if (ret <= 0)
  241. goto end;
  242. s->init_num = 0;
  243. if (s->hit) {
  244. /*
  245. * If we are in here, we have been buffering the output, so
  246. * we need to flush it and remove buffering from future
  247. * traffic
  248. */
  249. s->state = SSL2_ST_SEND_SERVER_VERIFY_C;
  250. BREAK;
  251. } else {
  252. s->state = SSL2_ST_GET_CLIENT_FINISHED_A;
  253. break;
  254. }
  255. case SSL2_ST_SEND_SERVER_VERIFY_C:
  256. /* get the number of bytes to write */
  257. num1 = BIO_ctrl(s->wbio, BIO_CTRL_INFO, 0, NULL);
  258. if (num1 > 0) {
  259. s->rwstate = SSL_WRITING;
  260. num1 = BIO_flush(s->wbio);
  261. if (num1 <= 0) {
  262. ret = -1;
  263. goto end;
  264. }
  265. s->rwstate = SSL_NOTHING;
  266. }
  267. /* flushed and now remove buffering */
  268. s->wbio = BIO_pop(s->wbio);
  269. s->state = SSL2_ST_GET_CLIENT_FINISHED_A;
  270. BREAK;
  271. case SSL2_ST_GET_CLIENT_FINISHED_A:
  272. case SSL2_ST_GET_CLIENT_FINISHED_B:
  273. ret = get_client_finished(s);
  274. if (ret <= 0)
  275. goto end;
  276. s->init_num = 0;
  277. s->state = SSL2_ST_SEND_REQUEST_CERTIFICATE_A;
  278. BREAK;
  279. case SSL2_ST_SEND_REQUEST_CERTIFICATE_A:
  280. case SSL2_ST_SEND_REQUEST_CERTIFICATE_B:
  281. case SSL2_ST_SEND_REQUEST_CERTIFICATE_C:
  282. case SSL2_ST_SEND_REQUEST_CERTIFICATE_D:
  283. /*
  284. * don't do a 'request certificate' if we don't want to, or we
  285. * already have one, and we only want to do it once.
  286. */
  287. if (!(s->verify_mode & SSL_VERIFY_PEER) ||
  288. ((s->session->peer != NULL) &&
  289. (s->verify_mode & SSL_VERIFY_CLIENT_ONCE))) {
  290. s->state = SSL2_ST_SEND_SERVER_FINISHED_A;
  291. break;
  292. } else {
  293. ret = request_certificate(s);
  294. if (ret <= 0)
  295. goto end;
  296. s->init_num = 0;
  297. s->state = SSL2_ST_SEND_SERVER_FINISHED_A;
  298. }
  299. BREAK;
  300. case SSL2_ST_SEND_SERVER_FINISHED_A:
  301. case SSL2_ST_SEND_SERVER_FINISHED_B:
  302. ret = server_finish(s);
  303. if (ret <= 0)
  304. goto end;
  305. s->init_num = 0;
  306. s->state = SSL_ST_OK;
  307. break;
  308. case SSL_ST_OK:
  309. BUF_MEM_free(s->init_buf);
  310. ssl_free_wbio_buffer(s);
  311. s->init_buf = NULL;
  312. s->init_num = 0;
  313. /* ERR_clear_error(); */
  314. ssl_update_cache(s, SSL_SESS_CACHE_SERVER);
  315. s->ctx->stats.sess_accept_good++;
  316. /* s->server=1; */
  317. ret = 1;
  318. if (cb != NULL)
  319. cb(s, SSL_CB_HANDSHAKE_DONE, 1);
  320. goto end;
  321. /* BREAK; */
  322. default:
  323. SSLerr(SSL_F_SSL2_ACCEPT, SSL_R_UNKNOWN_STATE);
  324. ret = -1;
  325. goto end;
  326. /* BREAK; */
  327. }
  328. if ((cb != NULL) && (s->state != state)) {
  329. new_state = s->state;
  330. s->state = state;
  331. cb(s, SSL_CB_ACCEPT_LOOP, 1);
  332. s->state = new_state;
  333. }
  334. }
  335. end:
  336. s->in_handshake--;
  337. if (cb != NULL)
  338. cb(s, SSL_CB_ACCEPT_EXIT, ret);
  339. return (ret);
  340. }
  341. static int get_client_master_key(SSL *s)
  342. {
  343. int is_export, i, n, keya;
  344. unsigned int num_encrypted_key_bytes, key_length;
  345. unsigned long len;
  346. unsigned char *p;
  347. const SSL_CIPHER *cp;
  348. const EVP_CIPHER *c;
  349. const EVP_MD *md;
  350. unsigned char rand_premaster_secret[SSL_MAX_MASTER_KEY_LENGTH];
  351. unsigned char decrypt_good;
  352. size_t j;
  353. p = (unsigned char *)s->init_buf->data;
  354. if (s->state == SSL2_ST_GET_CLIENT_MASTER_KEY_A) {
  355. i = ssl2_read(s, (char *)&(p[s->init_num]), 10 - s->init_num);
  356. if (i < (10 - s->init_num))
  357. return (ssl2_part_read(s, SSL_F_GET_CLIENT_MASTER_KEY, i));
  358. s->init_num = 10;
  359. if (*(p++) != SSL2_MT_CLIENT_MASTER_KEY) {
  360. if (p[-1] != SSL2_MT_ERROR) {
  361. ssl2_return_error(s, SSL2_PE_UNDEFINED_ERROR);
  362. SSLerr(SSL_F_GET_CLIENT_MASTER_KEY,
  363. SSL_R_READ_WRONG_PACKET_TYPE);
  364. } else
  365. SSLerr(SSL_F_GET_CLIENT_MASTER_KEY, SSL_R_PEER_ERROR);
  366. return (-1);
  367. }
  368. cp = ssl2_get_cipher_by_char(p);
  369. if (cp == NULL || sk_SSL_CIPHER_find(s->session->ciphers, cp) < 0) {
  370. ssl2_return_error(s, SSL2_PE_NO_CIPHER);
  371. SSLerr(SSL_F_GET_CLIENT_MASTER_KEY, SSL_R_NO_CIPHER_MATCH);
  372. return (-1);
  373. }
  374. s->session->cipher = cp;
  375. p += 3;
  376. n2s(p, i);
  377. s->s2->tmp.clear = i;
  378. n2s(p, i);
  379. s->s2->tmp.enc = i;
  380. n2s(p, i);
  381. if (i > SSL_MAX_KEY_ARG_LENGTH) {
  382. ssl2_return_error(s, SSL2_PE_UNDEFINED_ERROR);
  383. SSLerr(SSL_F_GET_CLIENT_MASTER_KEY, SSL_R_KEY_ARG_TOO_LONG);
  384. return -1;
  385. }
  386. s->session->key_arg_length = i;
  387. s->state = SSL2_ST_GET_CLIENT_MASTER_KEY_B;
  388. }
  389. /* SSL2_ST_GET_CLIENT_MASTER_KEY_B */
  390. p = (unsigned char *)s->init_buf->data;
  391. if (s->init_buf->length < SSL2_MAX_RECORD_LENGTH_3_BYTE_HEADER) {
  392. ssl2_return_error(s, SSL2_PE_UNDEFINED_ERROR);
  393. SSLerr(SSL_F_GET_CLIENT_MASTER_KEY, ERR_R_INTERNAL_ERROR);
  394. return -1;
  395. }
  396. keya = s->session->key_arg_length;
  397. len =
  398. 10 + (unsigned long)s->s2->tmp.clear + (unsigned long)s->s2->tmp.enc +
  399. (unsigned long)keya;
  400. if (len > SSL2_MAX_RECORD_LENGTH_3_BYTE_HEADER) {
  401. ssl2_return_error(s, SSL2_PE_UNDEFINED_ERROR);
  402. SSLerr(SSL_F_GET_CLIENT_MASTER_KEY, SSL_R_MESSAGE_TOO_LONG);
  403. return -1;
  404. }
  405. n = (int)len - s->init_num;
  406. i = ssl2_read(s, (char *)&(p[s->init_num]), n);
  407. if (i != n)
  408. return (ssl2_part_read(s, SSL_F_GET_CLIENT_MASTER_KEY, i));
  409. if (s->msg_callback) {
  410. /* CLIENT-MASTER-KEY */
  411. s->msg_callback(0, s->version, 0, p, (size_t)len, s,
  412. s->msg_callback_arg);
  413. }
  414. p += 10;
  415. memcpy(s->session->key_arg, &(p[s->s2->tmp.clear + s->s2->tmp.enc]),
  416. (unsigned int)keya);
  417. if (s->cert->pkeys[SSL_PKEY_RSA_ENC].privatekey == NULL) {
  418. ssl2_return_error(s, SSL2_PE_UNDEFINED_ERROR);
  419. SSLerr(SSL_F_GET_CLIENT_MASTER_KEY, SSL_R_NO_PRIVATEKEY);
  420. return (-1);
  421. }
  422. is_export = SSL_C_IS_EXPORT(s->session->cipher);
  423. if (!ssl_cipher_get_evp(s->session, &c, &md, NULL, NULL, NULL)) {
  424. ssl2_return_error(s, SSL2_PE_NO_CIPHER);
  425. SSLerr(SSL_F_GET_CLIENT_MASTER_KEY,
  426. SSL_R_PROBLEMS_MAPPING_CIPHER_FUNCTIONS);
  427. return (0);
  428. }
  429. /*
  430. * The format of the CLIENT-MASTER-KEY message is
  431. * 1 byte message type
  432. * 3 bytes cipher
  433. * 2-byte clear key length (stored in s->s2->tmp.clear)
  434. * 2-byte encrypted key length (stored in s->s2->tmp.enc)
  435. * 2-byte key args length (IV etc)
  436. * clear key
  437. * encrypted key
  438. * key args
  439. *
  440. * If the cipher is an export cipher, then the encrypted key bytes
  441. * are a fixed portion of the total key (5 or 8 bytes). The size of
  442. * this portion is in |num_encrypted_key_bytes|. If the cipher is not an
  443. * export cipher, then the entire key material is encrypted (i.e., clear
  444. * key length must be zero).
  445. */
  446. key_length = (unsigned int)EVP_CIPHER_key_length(c);
  447. if (key_length > SSL_MAX_MASTER_KEY_LENGTH) {
  448. ssl2_return_error(s, SSL2_PE_UNDEFINED_ERROR);
  449. SSLerr(SSL_F_GET_CLIENT_MASTER_KEY, ERR_R_INTERNAL_ERROR);
  450. return -1;
  451. }
  452. if (s->session->cipher->algorithm2 & SSL2_CF_8_BYTE_ENC) {
  453. is_export = 1;
  454. num_encrypted_key_bytes = 8;
  455. } else if (is_export) {
  456. num_encrypted_key_bytes = 5;
  457. } else {
  458. num_encrypted_key_bytes = key_length;
  459. }
  460. if (s->s2->tmp.clear + num_encrypted_key_bytes != key_length) {
  461. ssl2_return_error(s, SSL2_PE_UNDEFINED_ERROR);
  462. SSLerr(SSL_F_GET_CLIENT_MASTER_KEY,SSL_R_BAD_LENGTH);
  463. return -1;
  464. }
  465. /*
  466. * The encrypted blob must decrypt to the encrypted portion of the key.
  467. * Decryption can't be expanding, so if we don't have enough encrypted
  468. * bytes to fit the key in the buffer, stop now.
  469. */
  470. if (s->s2->tmp.enc < num_encrypted_key_bytes) {
  471. ssl2_return_error(s,SSL2_PE_UNDEFINED_ERROR);
  472. SSLerr(SSL_F_GET_CLIENT_MASTER_KEY,SSL_R_LENGTH_TOO_SHORT);
  473. return -1;
  474. }
  475. /*
  476. * We must not leak whether a decryption failure occurs because of
  477. * Bleichenbacher's attack on PKCS #1 v1.5 RSA padding (see RFC 2246,
  478. * section 7.4.7.1). The code follows that advice of the TLS RFC and
  479. * generates a random premaster secret for the case that the decrypt
  480. * fails. See https://tools.ietf.org/html/rfc5246#section-7.4.7.1
  481. */
  482. /*
  483. * should be RAND_bytes, but we cannot work around a failure.
  484. */
  485. if (RAND_pseudo_bytes(rand_premaster_secret,
  486. (int)num_encrypted_key_bytes) <= 0)
  487. return 0;
  488. i = ssl_rsa_private_decrypt(s->cert, s->s2->tmp.enc,
  489. &(p[s->s2->tmp.clear]),
  490. &(p[s->s2->tmp.clear]),
  491. (s->s2->ssl2_rollback) ? RSA_SSLV23_PADDING :
  492. RSA_PKCS1_PADDING);
  493. ERR_clear_error();
  494. /*
  495. * If a bad decrypt, continue with protocol but with a random master
  496. * secret (Bleichenbacher attack)
  497. */
  498. decrypt_good = constant_time_eq_int_8(i, (int)num_encrypted_key_bytes);
  499. for (j = 0; j < num_encrypted_key_bytes; j++) {
  500. p[s->s2->tmp.clear + j] =
  501. constant_time_select_8(decrypt_good, p[s->s2->tmp.clear + j],
  502. rand_premaster_secret[j]);
  503. }
  504. s->session->master_key_length = (int)key_length;
  505. memcpy(s->session->master_key, p, key_length);
  506. OPENSSL_cleanse(p, key_length);
  507. return 1;
  508. }
  509. static int get_client_hello(SSL *s)
  510. {
  511. int i, n;
  512. unsigned long len;
  513. unsigned char *p;
  514. STACK_OF(SSL_CIPHER) *cs; /* a stack of SSL_CIPHERS */
  515. STACK_OF(SSL_CIPHER) *cl; /* the ones we want to use */
  516. STACK_OF(SSL_CIPHER) *prio, *allow;
  517. int z;
  518. /*
  519. * This is a bit of a hack to check for the correct packet type the first
  520. * time round.
  521. */
  522. if (s->state == SSL2_ST_GET_CLIENT_HELLO_A) {
  523. s->first_packet = 1;
  524. s->state = SSL2_ST_GET_CLIENT_HELLO_B;
  525. }
  526. p = (unsigned char *)s->init_buf->data;
  527. if (s->state == SSL2_ST_GET_CLIENT_HELLO_B) {
  528. i = ssl2_read(s, (char *)&(p[s->init_num]), 9 - s->init_num);
  529. if (i < (9 - s->init_num))
  530. return (ssl2_part_read(s, SSL_F_GET_CLIENT_HELLO, i));
  531. s->init_num = 9;
  532. if (*(p++) != SSL2_MT_CLIENT_HELLO) {
  533. if (p[-1] != SSL2_MT_ERROR) {
  534. ssl2_return_error(s, SSL2_PE_UNDEFINED_ERROR);
  535. SSLerr(SSL_F_GET_CLIENT_HELLO, SSL_R_READ_WRONG_PACKET_TYPE);
  536. } else
  537. SSLerr(SSL_F_GET_CLIENT_HELLO, SSL_R_PEER_ERROR);
  538. return (-1);
  539. }
  540. n2s(p, i);
  541. if (i < s->version)
  542. s->version = i;
  543. n2s(p, i);
  544. s->s2->tmp.cipher_spec_length = i;
  545. n2s(p, i);
  546. s->s2->tmp.session_id_length = i;
  547. if ((i < 0) || (i > SSL_MAX_SSL_SESSION_ID_LENGTH)) {
  548. ssl2_return_error(s, SSL2_PE_UNDEFINED_ERROR);
  549. SSLerr(SSL_F_GET_CLIENT_HELLO, SSL_R_LENGTH_MISMATCH);
  550. return -1;
  551. }
  552. n2s(p, i);
  553. s->s2->challenge_length = i;
  554. if ((i < SSL2_MIN_CHALLENGE_LENGTH) ||
  555. (i > SSL2_MAX_CHALLENGE_LENGTH)) {
  556. ssl2_return_error(s, SSL2_PE_UNDEFINED_ERROR);
  557. SSLerr(SSL_F_GET_CLIENT_HELLO, SSL_R_INVALID_CHALLENGE_LENGTH);
  558. return (-1);
  559. }
  560. s->state = SSL2_ST_GET_CLIENT_HELLO_C;
  561. }
  562. /* SSL2_ST_GET_CLIENT_HELLO_C */
  563. p = (unsigned char *)s->init_buf->data;
  564. len =
  565. 9 + (unsigned long)s->s2->tmp.cipher_spec_length +
  566. (unsigned long)s->s2->challenge_length +
  567. (unsigned long)s->s2->tmp.session_id_length;
  568. if (len > SSL2_MAX_RECORD_LENGTH_3_BYTE_HEADER) {
  569. ssl2_return_error(s, SSL2_PE_UNDEFINED_ERROR);
  570. SSLerr(SSL_F_GET_CLIENT_HELLO, SSL_R_MESSAGE_TOO_LONG);
  571. return -1;
  572. }
  573. n = (int)len - s->init_num;
  574. i = ssl2_read(s, (char *)&(p[s->init_num]), n);
  575. if (i != n)
  576. return (ssl2_part_read(s, SSL_F_GET_CLIENT_HELLO, i));
  577. if (s->msg_callback) {
  578. /* CLIENT-HELLO */
  579. s->msg_callback(0, s->version, 0, p, (size_t)len, s,
  580. s->msg_callback_arg);
  581. }
  582. p += 9;
  583. /*
  584. * get session-id before cipher stuff so we can get out session structure
  585. * if it is cached
  586. */
  587. /* session-id */
  588. if ((s->s2->tmp.session_id_length != 0) &&
  589. (s->s2->tmp.session_id_length != SSL2_SSL_SESSION_ID_LENGTH)) {
  590. ssl2_return_error(s, SSL2_PE_UNDEFINED_ERROR);
  591. SSLerr(SSL_F_GET_CLIENT_HELLO, SSL_R_BAD_SSL_SESSION_ID_LENGTH);
  592. return (-1);
  593. }
  594. if (s->s2->tmp.session_id_length == 0) {
  595. if (!ssl_get_new_session(s, 1)) {
  596. ssl2_return_error(s, SSL2_PE_UNDEFINED_ERROR);
  597. return (-1);
  598. }
  599. } else {
  600. i = ssl_get_prev_session(s, &(p[s->s2->tmp.cipher_spec_length]),
  601. s->s2->tmp.session_id_length, NULL);
  602. if (i == 1) { /* previous session */
  603. s->hit = 1;
  604. } else if (i == -1) {
  605. ssl2_return_error(s, SSL2_PE_UNDEFINED_ERROR);
  606. return (-1);
  607. } else {
  608. if (s->cert == NULL) {
  609. ssl2_return_error(s, SSL2_PE_NO_CERTIFICATE);
  610. SSLerr(SSL_F_GET_CLIENT_HELLO, SSL_R_NO_CERTIFICATE_SET);
  611. return (-1);
  612. }
  613. if (!ssl_get_new_session(s, 1)) {
  614. ssl2_return_error(s, SSL2_PE_UNDEFINED_ERROR);
  615. return (-1);
  616. }
  617. }
  618. }
  619. if (!s->hit) {
  620. cs = ssl_bytes_to_cipher_list(s, p, s->s2->tmp.cipher_spec_length,
  621. &s->session->ciphers);
  622. if (cs == NULL)
  623. goto mem_err;
  624. cl = SSL_get_ciphers(s);
  625. if (s->options & SSL_OP_CIPHER_SERVER_PREFERENCE) {
  626. prio = sk_SSL_CIPHER_dup(cl);
  627. if (prio == NULL)
  628. goto mem_err;
  629. allow = cs;
  630. } else {
  631. prio = cs;
  632. allow = cl;
  633. }
  634. /* Generate list of SSLv2 ciphers shared between client and server */
  635. for (z = 0; z < sk_SSL_CIPHER_num(prio); z++) {
  636. const SSL_CIPHER *cp = sk_SSL_CIPHER_value(prio, z);
  637. if ((cp->algorithm_ssl & SSL_SSLV2) == 0 ||
  638. sk_SSL_CIPHER_find(allow, cp) < 0) {
  639. (void)sk_SSL_CIPHER_delete(prio, z);
  640. z--;
  641. }
  642. }
  643. if (s->options & SSL_OP_CIPHER_SERVER_PREFERENCE) {
  644. sk_SSL_CIPHER_free(s->session->ciphers);
  645. s->session->ciphers = prio;
  646. }
  647. /* Make sure we have at least one cipher in common */
  648. if (sk_SSL_CIPHER_num(s->session->ciphers) == 0) {
  649. ssl2_return_error(s, SSL2_PE_NO_CIPHER);
  650. SSLerr(SSL_F_GET_CLIENT_HELLO, SSL_R_NO_CIPHER_MATCH);
  651. return -1;
  652. }
  653. /*
  654. * s->session->ciphers should now have a list of ciphers that are on
  655. * both the client and server. This list is ordered by the order the
  656. * client sent the ciphers or in the order of the server's preference
  657. * if SSL_OP_CIPHER_SERVER_PREFERENCE was set.
  658. */
  659. }
  660. p += s->s2->tmp.cipher_spec_length;
  661. /* done cipher selection */
  662. /* session id extracted already */
  663. p += s->s2->tmp.session_id_length;
  664. /* challenge */
  665. if (s->s2->challenge_length > sizeof s->s2->challenge) {
  666. ssl2_return_error(s, SSL2_PE_UNDEFINED_ERROR);
  667. SSLerr(SSL_F_GET_CLIENT_HELLO, ERR_R_INTERNAL_ERROR);
  668. return -1;
  669. }
  670. memcpy(s->s2->challenge, p, (unsigned int)s->s2->challenge_length);
  671. return (1);
  672. mem_err:
  673. SSLerr(SSL_F_GET_CLIENT_HELLO, ERR_R_MALLOC_FAILURE);
  674. return (0);
  675. }
  676. static int server_hello(SSL *s)
  677. {
  678. unsigned char *p, *d;
  679. int n, hit;
  680. p = (unsigned char *)s->init_buf->data;
  681. if (s->state == SSL2_ST_SEND_SERVER_HELLO_A) {
  682. d = p + 11;
  683. *(p++) = SSL2_MT_SERVER_HELLO; /* type */
  684. hit = s->hit;
  685. *(p++) = (unsigned char)hit;
  686. # if 1
  687. if (!hit) {
  688. if (s->session->sess_cert != NULL)
  689. /*
  690. * This can't really happen because get_client_hello has
  691. * called ssl_get_new_session, which does not set sess_cert.
  692. */
  693. ssl_sess_cert_free(s->session->sess_cert);
  694. s->session->sess_cert = ssl_sess_cert_new();
  695. if (s->session->sess_cert == NULL) {
  696. SSLerr(SSL_F_SERVER_HELLO, ERR_R_MALLOC_FAILURE);
  697. return (-1);
  698. }
  699. }
  700. /*
  701. * If 'hit' is set, then s->sess_cert may be non-NULL or NULL,
  702. * depending on whether it survived in the internal cache or was
  703. * retrieved from an external cache. If it is NULL, we cannot put any
  704. * useful data in it anyway, so we don't touch it.
  705. */
  706. # else /* That's what used to be done when cert_st
  707. * and sess_cert_st were * the same. */
  708. if (!hit) { /* else add cert to session */
  709. CRYPTO_add(&s->cert->references, 1, CRYPTO_LOCK_SSL_CERT);
  710. if (s->session->sess_cert != NULL)
  711. ssl_cert_free(s->session->sess_cert);
  712. s->session->sess_cert = s->cert;
  713. } else { /* We have a session id-cache hit, if the *
  714. * session-id has no certificate listed
  715. * against * the 'cert' structure, grab the
  716. * 'old' one * listed against the SSL
  717. * connection */
  718. if (s->session->sess_cert == NULL) {
  719. CRYPTO_add(&s->cert->references, 1, CRYPTO_LOCK_SSL_CERT);
  720. s->session->sess_cert = s->cert;
  721. }
  722. }
  723. # endif
  724. if (s->cert == NULL) {
  725. ssl2_return_error(s, SSL2_PE_NO_CERTIFICATE);
  726. SSLerr(SSL_F_SERVER_HELLO, SSL_R_NO_CERTIFICATE_SPECIFIED);
  727. return (-1);
  728. }
  729. if (hit) {
  730. *(p++) = 0; /* no certificate type */
  731. s2n(s->version, p); /* version */
  732. s2n(0, p); /* cert len */
  733. s2n(0, p); /* ciphers len */
  734. } else {
  735. /* EAY EAY */
  736. /* put certificate type */
  737. *(p++) = SSL2_CT_X509_CERTIFICATE;
  738. s2n(s->version, p); /* version */
  739. n = i2d_X509(s->cert->pkeys[SSL_PKEY_RSA_ENC].x509, NULL);
  740. s2n(n, p); /* certificate length */
  741. i2d_X509(s->cert->pkeys[SSL_PKEY_RSA_ENC].x509, &d);
  742. n = 0;
  743. /*
  744. * lets send out the ciphers we like in the prefered order
  745. */
  746. n = ssl_cipher_list_to_bytes(s, s->session->ciphers, d, 0);
  747. d += n;
  748. s2n(n, p); /* add cipher length */
  749. }
  750. /* make and send conn_id */
  751. s2n(SSL2_CONNECTION_ID_LENGTH, p); /* add conn_id length */
  752. s->s2->conn_id_length = SSL2_CONNECTION_ID_LENGTH;
  753. if (RAND_pseudo_bytes(s->s2->conn_id, (int)s->s2->conn_id_length) <=
  754. 0)
  755. return -1;
  756. memcpy(d, s->s2->conn_id, SSL2_CONNECTION_ID_LENGTH);
  757. d += SSL2_CONNECTION_ID_LENGTH;
  758. s->state = SSL2_ST_SEND_SERVER_HELLO_B;
  759. s->init_num = d - (unsigned char *)s->init_buf->data;
  760. s->init_off = 0;
  761. }
  762. /* SSL2_ST_SEND_SERVER_HELLO_B */
  763. /*
  764. * If we are using TCP/IP, the performance is bad if we do 2 writes
  765. * without a read between them. This occurs when Session-id reuse is
  766. * used, so I will put in a buffering module
  767. */
  768. if (s->hit) {
  769. if (!ssl_init_wbio_buffer(s, 1))
  770. return (-1);
  771. }
  772. return (ssl2_do_write(s));
  773. }
  774. static int get_client_finished(SSL *s)
  775. {
  776. unsigned char *p;
  777. int i, n;
  778. unsigned long len;
  779. p = (unsigned char *)s->init_buf->data;
  780. if (s->state == SSL2_ST_GET_CLIENT_FINISHED_A) {
  781. i = ssl2_read(s, (char *)&(p[s->init_num]), 1 - s->init_num);
  782. if (i < 1 - s->init_num)
  783. return (ssl2_part_read(s, SSL_F_GET_CLIENT_FINISHED, i));
  784. s->init_num += i;
  785. if (*p != SSL2_MT_CLIENT_FINISHED) {
  786. if (*p != SSL2_MT_ERROR) {
  787. ssl2_return_error(s, SSL2_PE_UNDEFINED_ERROR);
  788. SSLerr(SSL_F_GET_CLIENT_FINISHED,
  789. SSL_R_READ_WRONG_PACKET_TYPE);
  790. } else {
  791. SSLerr(SSL_F_GET_CLIENT_FINISHED, SSL_R_PEER_ERROR);
  792. /* try to read the error message */
  793. i = ssl2_read(s, (char *)&(p[s->init_num]), 3 - s->init_num);
  794. return ssl2_part_read(s, SSL_F_GET_SERVER_VERIFY, i);
  795. }
  796. return (-1);
  797. }
  798. s->state = SSL2_ST_GET_CLIENT_FINISHED_B;
  799. }
  800. /* SSL2_ST_GET_CLIENT_FINISHED_B */
  801. if (s->s2->conn_id_length > sizeof s->s2->conn_id) {
  802. ssl2_return_error(s, SSL2_PE_UNDEFINED_ERROR);
  803. SSLerr(SSL_F_GET_CLIENT_FINISHED, ERR_R_INTERNAL_ERROR);
  804. return -1;
  805. }
  806. len = 1 + (unsigned long)s->s2->conn_id_length;
  807. n = (int)len - s->init_num;
  808. i = ssl2_read(s, (char *)&(p[s->init_num]), n);
  809. if (i < n) {
  810. return (ssl2_part_read(s, SSL_F_GET_CLIENT_FINISHED, i));
  811. }
  812. if (s->msg_callback) {
  813. /* CLIENT-FINISHED */
  814. s->msg_callback(0, s->version, 0, p, len, s, s->msg_callback_arg);
  815. }
  816. p += 1;
  817. if (memcmp(p, s->s2->conn_id, s->s2->conn_id_length) != 0) {
  818. ssl2_return_error(s, SSL2_PE_UNDEFINED_ERROR);
  819. SSLerr(SSL_F_GET_CLIENT_FINISHED, SSL_R_CONNECTION_ID_IS_DIFFERENT);
  820. return (-1);
  821. }
  822. return (1);
  823. }
  824. static int server_verify(SSL *s)
  825. {
  826. unsigned char *p;
  827. if (s->state == SSL2_ST_SEND_SERVER_VERIFY_A) {
  828. p = (unsigned char *)s->init_buf->data;
  829. *(p++) = SSL2_MT_SERVER_VERIFY;
  830. if (s->s2->challenge_length > sizeof s->s2->challenge) {
  831. SSLerr(SSL_F_SERVER_VERIFY, ERR_R_INTERNAL_ERROR);
  832. return -1;
  833. }
  834. memcpy(p, s->s2->challenge, (unsigned int)s->s2->challenge_length);
  835. /* p+=s->s2->challenge_length; */
  836. s->state = SSL2_ST_SEND_SERVER_VERIFY_B;
  837. s->init_num = s->s2->challenge_length + 1;
  838. s->init_off = 0;
  839. }
  840. return (ssl2_do_write(s));
  841. }
  842. static int server_finish(SSL *s)
  843. {
  844. unsigned char *p;
  845. if (s->state == SSL2_ST_SEND_SERVER_FINISHED_A) {
  846. p = (unsigned char *)s->init_buf->data;
  847. *(p++) = SSL2_MT_SERVER_FINISHED;
  848. if (s->session->session_id_length > sizeof s->session->session_id) {
  849. SSLerr(SSL_F_SERVER_FINISH, ERR_R_INTERNAL_ERROR);
  850. return -1;
  851. }
  852. memcpy(p, s->session->session_id,
  853. (unsigned int)s->session->session_id_length);
  854. /* p+=s->session->session_id_length; */
  855. s->state = SSL2_ST_SEND_SERVER_FINISHED_B;
  856. s->init_num = s->session->session_id_length + 1;
  857. s->init_off = 0;
  858. }
  859. /* SSL2_ST_SEND_SERVER_FINISHED_B */
  860. return (ssl2_do_write(s));
  861. }
  862. /* send the request and check the response */
  863. static int request_certificate(SSL *s)
  864. {
  865. const unsigned char *cp;
  866. unsigned char *p, *p2, *buf2;
  867. unsigned char *ccd;
  868. int i, j, ctype, ret = -1;
  869. unsigned long len;
  870. X509 *x509 = NULL;
  871. STACK_OF(X509) *sk = NULL;
  872. ccd = s->s2->tmp.ccl;
  873. if (s->state == SSL2_ST_SEND_REQUEST_CERTIFICATE_A) {
  874. p = (unsigned char *)s->init_buf->data;
  875. *(p++) = SSL2_MT_REQUEST_CERTIFICATE;
  876. *(p++) = SSL2_AT_MD5_WITH_RSA_ENCRYPTION;
  877. if (RAND_pseudo_bytes(ccd, SSL2_MIN_CERT_CHALLENGE_LENGTH) <= 0)
  878. return -1;
  879. memcpy(p, ccd, SSL2_MIN_CERT_CHALLENGE_LENGTH);
  880. s->state = SSL2_ST_SEND_REQUEST_CERTIFICATE_B;
  881. s->init_num = SSL2_MIN_CERT_CHALLENGE_LENGTH + 2;
  882. s->init_off = 0;
  883. }
  884. if (s->state == SSL2_ST_SEND_REQUEST_CERTIFICATE_B) {
  885. i = ssl2_do_write(s);
  886. if (i <= 0) {
  887. ret = i;
  888. goto end;
  889. }
  890. s->init_num = 0;
  891. s->state = SSL2_ST_SEND_REQUEST_CERTIFICATE_C;
  892. }
  893. if (s->state == SSL2_ST_SEND_REQUEST_CERTIFICATE_C) {
  894. p = (unsigned char *)s->init_buf->data;
  895. /* try to read 6 octets ... */
  896. i = ssl2_read(s, (char *)&(p[s->init_num]), 6 - s->init_num);
  897. /*
  898. * ... but don't call ssl2_part_read now if we got at least 3
  899. * (probably NO-CERTIFICATE-ERROR)
  900. */
  901. if (i < 3 - s->init_num) {
  902. ret = ssl2_part_read(s, SSL_F_REQUEST_CERTIFICATE, i);
  903. goto end;
  904. }
  905. s->init_num += i;
  906. if ((s->init_num >= 3) && (p[0] == SSL2_MT_ERROR)) {
  907. n2s(p, i);
  908. if (i != SSL2_PE_NO_CERTIFICATE) {
  909. /*
  910. * not the error message we expected -- let ssl2_part_read
  911. * handle it
  912. */
  913. s->init_num -= 3;
  914. ret = ssl2_part_read(s, SSL_F_REQUEST_CERTIFICATE, 3);
  915. goto end;
  916. }
  917. if (s->msg_callback) {
  918. /* ERROR */
  919. s->msg_callback(0, s->version, 0, p, 3, s,
  920. s->msg_callback_arg);
  921. }
  922. /*
  923. * this is the one place where we can recover from an SSL 2.0
  924. * error
  925. */
  926. if (s->verify_mode & SSL_VERIFY_FAIL_IF_NO_PEER_CERT) {
  927. ssl2_return_error(s, SSL2_PE_BAD_CERTIFICATE);
  928. SSLerr(SSL_F_REQUEST_CERTIFICATE,
  929. SSL_R_PEER_DID_NOT_RETURN_A_CERTIFICATE);
  930. goto end;
  931. }
  932. ret = 1;
  933. goto end;
  934. }
  935. if ((*(p++) != SSL2_MT_CLIENT_CERTIFICATE) || (s->init_num < 6)) {
  936. ssl2_return_error(s, SSL2_PE_UNDEFINED_ERROR);
  937. SSLerr(SSL_F_REQUEST_CERTIFICATE, SSL_R_SHORT_READ);
  938. goto end;
  939. }
  940. if (s->init_num != 6) {
  941. SSLerr(SSL_F_REQUEST_CERTIFICATE, ERR_R_INTERNAL_ERROR);
  942. goto end;
  943. }
  944. /* ok we have a response */
  945. /* certificate type, there is only one right now. */
  946. ctype = *(p++);
  947. if (ctype != SSL2_AT_MD5_WITH_RSA_ENCRYPTION) {
  948. ssl2_return_error(s, SSL2_PE_UNSUPPORTED_CERTIFICATE_TYPE);
  949. SSLerr(SSL_F_REQUEST_CERTIFICATE, SSL_R_BAD_RESPONSE_ARGUMENT);
  950. goto end;
  951. }
  952. n2s(p, i);
  953. s->s2->tmp.clen = i;
  954. n2s(p, i);
  955. s->s2->tmp.rlen = i;
  956. s->state = SSL2_ST_SEND_REQUEST_CERTIFICATE_D;
  957. }
  958. /* SSL2_ST_SEND_REQUEST_CERTIFICATE_D */
  959. p = (unsigned char *)s->init_buf->data;
  960. len = 6 + (unsigned long)s->s2->tmp.clen + (unsigned long)s->s2->tmp.rlen;
  961. if (len > SSL2_MAX_RECORD_LENGTH_3_BYTE_HEADER) {
  962. SSLerr(SSL_F_REQUEST_CERTIFICATE, SSL_R_MESSAGE_TOO_LONG);
  963. goto end;
  964. }
  965. j = (int)len - s->init_num;
  966. i = ssl2_read(s, (char *)&(p[s->init_num]), j);
  967. if (i < j) {
  968. ret = ssl2_part_read(s, SSL_F_REQUEST_CERTIFICATE, i);
  969. goto end;
  970. }
  971. if (s->msg_callback) {
  972. /* CLIENT-CERTIFICATE */
  973. s->msg_callback(0, s->version, 0, p, len, s, s->msg_callback_arg);
  974. }
  975. p += 6;
  976. cp = p;
  977. x509 = (X509 *)d2i_X509(NULL, &cp, (long)s->s2->tmp.clen);
  978. if (x509 == NULL) {
  979. SSLerr(SSL_F_REQUEST_CERTIFICATE, ERR_R_X509_LIB);
  980. goto msg_end;
  981. }
  982. if (((sk = sk_X509_new_null()) == NULL) || (!sk_X509_push(sk, x509))) {
  983. SSLerr(SSL_F_REQUEST_CERTIFICATE, ERR_R_MALLOC_FAILURE);
  984. goto msg_end;
  985. }
  986. i = ssl_verify_cert_chain(s, sk);
  987. if (i > 0) { /* we like the packet, now check the chksum */
  988. EVP_MD_CTX ctx;
  989. EVP_PKEY *pkey = NULL;
  990. EVP_MD_CTX_init(&ctx);
  991. if (!EVP_VerifyInit_ex(&ctx, s->ctx->rsa_md5, NULL)
  992. || !EVP_VerifyUpdate(&ctx, s->s2->key_material,
  993. s->s2->key_material_length)
  994. || !EVP_VerifyUpdate(&ctx, ccd, SSL2_MIN_CERT_CHALLENGE_LENGTH))
  995. goto msg_end;
  996. i = i2d_X509(s->cert->pkeys[SSL_PKEY_RSA_ENC].x509, NULL);
  997. buf2 = OPENSSL_malloc((unsigned int)i);
  998. if (buf2 == NULL) {
  999. SSLerr(SSL_F_REQUEST_CERTIFICATE, ERR_R_MALLOC_FAILURE);
  1000. goto msg_end;
  1001. }
  1002. p2 = buf2;
  1003. i = i2d_X509(s->cert->pkeys[SSL_PKEY_RSA_ENC].x509, &p2);
  1004. if (!EVP_VerifyUpdate(&ctx, buf2, (unsigned int)i)) {
  1005. OPENSSL_free(buf2);
  1006. goto msg_end;
  1007. }
  1008. OPENSSL_free(buf2);
  1009. pkey = X509_get_pubkey(x509);
  1010. if (pkey == NULL)
  1011. goto end;
  1012. i = EVP_VerifyFinal(&ctx, cp, s->s2->tmp.rlen, pkey);
  1013. EVP_PKEY_free(pkey);
  1014. EVP_MD_CTX_cleanup(&ctx);
  1015. if (i > 0) {
  1016. if (s->session->peer != NULL)
  1017. X509_free(s->session->peer);
  1018. s->session->peer = x509;
  1019. CRYPTO_add(&x509->references, 1, CRYPTO_LOCK_X509);
  1020. s->session->verify_result = s->verify_result;
  1021. ret = 1;
  1022. goto end;
  1023. } else {
  1024. SSLerr(SSL_F_REQUEST_CERTIFICATE, SSL_R_BAD_CHECKSUM);
  1025. goto msg_end;
  1026. }
  1027. } else {
  1028. msg_end:
  1029. ssl2_return_error(s, SSL2_PE_BAD_CERTIFICATE);
  1030. }
  1031. end:
  1032. sk_X509_free(sk);
  1033. X509_free(x509);
  1034. return (ret);
  1035. }
  1036. static int ssl_rsa_private_decrypt(CERT *c, int len, unsigned char *from,
  1037. unsigned char *to, int padding)
  1038. {
  1039. RSA *rsa;
  1040. int i;
  1041. if ((c == NULL) || (c->pkeys[SSL_PKEY_RSA_ENC].privatekey == NULL)) {
  1042. SSLerr(SSL_F_SSL_RSA_PRIVATE_DECRYPT, SSL_R_NO_PRIVATEKEY);
  1043. return (-1);
  1044. }
  1045. if (c->pkeys[SSL_PKEY_RSA_ENC].privatekey->type != EVP_PKEY_RSA) {
  1046. SSLerr(SSL_F_SSL_RSA_PRIVATE_DECRYPT, SSL_R_PUBLIC_KEY_IS_NOT_RSA);
  1047. return (-1);
  1048. }
  1049. rsa = c->pkeys[SSL_PKEY_RSA_ENC].privatekey->pkey.rsa;
  1050. /* we have the public key */
  1051. i = RSA_private_decrypt(len, from, to, rsa, padding);
  1052. if (i < 0)
  1053. SSLerr(SSL_F_SSL_RSA_PRIVATE_DECRYPT, ERR_R_RSA_LIB);
  1054. return (i);
  1055. }
  1056. #else /* !OPENSSL_NO_SSL2 */
  1057. # if PEDANTIC
  1058. static void *dummy = &dummy;
  1059. # endif
  1060. #endif