s2_lib.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488
  1. /* ssl/s2_lib.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. #include "ssl_locl.h"
  59. #ifndef OPENSSL_NO_SSL2
  60. # include <stdio.h>
  61. # include <openssl/objects.h>
  62. # include <openssl/evp.h>
  63. # include <openssl/md5.h>
  64. const char ssl2_version_str[] = "SSLv2" OPENSSL_VERSION_PTEXT;
  65. # define SSL2_NUM_CIPHERS (sizeof(ssl2_ciphers)/sizeof(SSL_CIPHER))
  66. /* list of available SSLv2 ciphers (sorted by id) */
  67. OPENSSL_GLOBAL SSL_CIPHER ssl2_ciphers[] = {
  68. /* NULL_WITH_MD5 v3 */
  69. # if 0
  70. {
  71. 1,
  72. SSL2_TXT_NULL_WITH_MD5,
  73. SSL2_CK_NULL_WITH_MD5,
  74. SSL_kRSA | SSL_aRSA | SSL_eNULL | SSL_MD5 | SSL_SSLV2,
  75. SSL_EXPORT | SSL_EXP40 | SSL_STRONG_NONE,
  76. 0,
  77. 0,
  78. 0,
  79. SSL_ALL_CIPHERS,
  80. SSL_ALL_STRENGTHS,
  81. },
  82. # endif
  83. /* RC4_128_WITH_MD5 */
  84. {
  85. 1,
  86. SSL2_TXT_RC4_128_WITH_MD5,
  87. SSL2_CK_RC4_128_WITH_MD5,
  88. SSL_kRSA | SSL_aRSA | SSL_RC4 | SSL_MD5 | SSL_SSLV2,
  89. SSL_NOT_EXP | SSL_MEDIUM,
  90. 0,
  91. 128,
  92. 128,
  93. SSL_ALL_CIPHERS,
  94. SSL_ALL_STRENGTHS,
  95. },
  96. /* RC4_128_EXPORT40_WITH_MD5 */
  97. {
  98. 1,
  99. SSL2_TXT_RC4_128_EXPORT40_WITH_MD5,
  100. SSL2_CK_RC4_128_EXPORT40_WITH_MD5,
  101. SSL_kRSA | SSL_aRSA | SSL_RC4 | SSL_MD5 | SSL_SSLV2,
  102. SSL_EXPORT | SSL_EXP40,
  103. SSL2_CF_5_BYTE_ENC,
  104. 40,
  105. 128,
  106. SSL_ALL_CIPHERS,
  107. SSL_ALL_STRENGTHS,
  108. },
  109. /* RC2_128_CBC_WITH_MD5 */
  110. {
  111. 1,
  112. SSL2_TXT_RC2_128_CBC_WITH_MD5,
  113. SSL2_CK_RC2_128_CBC_WITH_MD5,
  114. SSL_kRSA | SSL_aRSA | SSL_RC2 | SSL_MD5 | SSL_SSLV2,
  115. SSL_NOT_EXP | SSL_MEDIUM,
  116. 0,
  117. 128,
  118. 128,
  119. SSL_ALL_CIPHERS,
  120. SSL_ALL_STRENGTHS,
  121. },
  122. /* RC2_128_CBC_EXPORT40_WITH_MD5 */
  123. {
  124. 1,
  125. SSL2_TXT_RC2_128_CBC_EXPORT40_WITH_MD5,
  126. SSL2_CK_RC2_128_CBC_EXPORT40_WITH_MD5,
  127. SSL_kRSA | SSL_aRSA | SSL_RC2 | SSL_MD5 | SSL_SSLV2,
  128. SSL_EXPORT | SSL_EXP40,
  129. SSL2_CF_5_BYTE_ENC,
  130. 40,
  131. 128,
  132. SSL_ALL_CIPHERS,
  133. SSL_ALL_STRENGTHS,
  134. },
  135. /* IDEA_128_CBC_WITH_MD5 */
  136. # ifndef OPENSSL_NO_IDEA
  137. {
  138. 1,
  139. SSL2_TXT_IDEA_128_CBC_WITH_MD5,
  140. SSL2_CK_IDEA_128_CBC_WITH_MD5,
  141. SSL_kRSA | SSL_aRSA | SSL_IDEA | SSL_MD5 | SSL_SSLV2,
  142. SSL_NOT_EXP | SSL_MEDIUM,
  143. 0,
  144. 128,
  145. 128,
  146. SSL_ALL_CIPHERS,
  147. SSL_ALL_STRENGTHS,
  148. },
  149. # endif
  150. /* DES_64_CBC_WITH_MD5 */
  151. {
  152. 1,
  153. SSL2_TXT_DES_64_CBC_WITH_MD5,
  154. SSL2_CK_DES_64_CBC_WITH_MD5,
  155. SSL_kRSA | SSL_aRSA | SSL_DES | SSL_MD5 | SSL_SSLV2,
  156. SSL_NOT_EXP | SSL_LOW,
  157. 0,
  158. 56,
  159. 56,
  160. SSL_ALL_CIPHERS,
  161. SSL_ALL_STRENGTHS,
  162. },
  163. /* DES_192_EDE3_CBC_WITH_MD5 */
  164. {
  165. 1,
  166. SSL2_TXT_DES_192_EDE3_CBC_WITH_MD5,
  167. SSL2_CK_DES_192_EDE3_CBC_WITH_MD5,
  168. SSL_kRSA | SSL_aRSA | SSL_3DES | SSL_MD5 | SSL_SSLV2,
  169. SSL_NOT_EXP | SSL_HIGH,
  170. 0,
  171. 168,
  172. 168,
  173. SSL_ALL_CIPHERS,
  174. SSL_ALL_STRENGTHS,
  175. },
  176. /* RC4_64_WITH_MD5 */
  177. # if 0
  178. {
  179. 1,
  180. SSL2_TXT_RC4_64_WITH_MD5,
  181. SSL2_CK_RC4_64_WITH_MD5,
  182. SSL_kRSA | SSL_aRSA | SSL_RC4 | SSL_MD5 | SSL_SSLV2,
  183. SSL_NOT_EXP | SSL_LOW,
  184. SSL2_CF_8_BYTE_ENC,
  185. 64,
  186. 64,
  187. SSL_ALL_CIPHERS,
  188. SSL_ALL_STRENGTHS,
  189. },
  190. # endif
  191. /* NULL SSLeay (testing) */
  192. # if 0
  193. {
  194. 0,
  195. SSL2_TXT_NULL,
  196. SSL2_CK_NULL,
  197. 0,
  198. SSL_STRONG_NONE,
  199. 0,
  200. 0,
  201. 0,
  202. SSL_ALL_CIPHERS,
  203. SSL_ALL_STRENGTHS,
  204. },
  205. # endif
  206. /* end of list :-) */
  207. };
  208. long ssl2_default_timeout(void)
  209. {
  210. return (300);
  211. }
  212. IMPLEMENT_ssl2_meth_func(sslv2_base_method,
  213. ssl_undefined_function,
  214. ssl_undefined_function, ssl_bad_method)
  215. int ssl2_num_ciphers(void)
  216. {
  217. return (SSL2_NUM_CIPHERS);
  218. }
  219. SSL_CIPHER *ssl2_get_cipher(unsigned int u)
  220. {
  221. if (u < SSL2_NUM_CIPHERS)
  222. return (&(ssl2_ciphers[SSL2_NUM_CIPHERS - 1 - u]));
  223. else
  224. return (NULL);
  225. }
  226. int ssl2_pending(const SSL *s)
  227. {
  228. return SSL_in_init(s) ? 0 : s->s2->ract_data_length;
  229. }
  230. int ssl2_new(SSL *s)
  231. {
  232. SSL2_STATE *s2;
  233. if ((s2 = OPENSSL_malloc(sizeof *s2)) == NULL)
  234. goto err;
  235. memset(s2, 0, sizeof *s2);
  236. # if SSL2_MAX_RECORD_LENGTH_3_BYTE_HEADER + 3 > SSL2_MAX_RECORD_LENGTH_2_BYTE_HEADER + 2
  237. # error "assertion failed"
  238. # endif
  239. if ((s2->rbuf =
  240. OPENSSL_malloc(SSL2_MAX_RECORD_LENGTH_2_BYTE_HEADER + 2)) == NULL)
  241. goto err;
  242. /*
  243. * wbuf needs one byte more because when using two-byte headers, we leave
  244. * the first byte unused in do_ssl_write (s2_pkt.c)
  245. */
  246. if ((s2->wbuf =
  247. OPENSSL_malloc(SSL2_MAX_RECORD_LENGTH_2_BYTE_HEADER + 3)) == NULL)
  248. goto err;
  249. s->s2 = s2;
  250. ssl2_clear(s);
  251. return (1);
  252. err:
  253. if (s2 != NULL) {
  254. if (s2->wbuf != NULL)
  255. OPENSSL_free(s2->wbuf);
  256. if (s2->rbuf != NULL)
  257. OPENSSL_free(s2->rbuf);
  258. OPENSSL_free(s2);
  259. }
  260. return (0);
  261. }
  262. void ssl2_free(SSL *s)
  263. {
  264. SSL2_STATE *s2;
  265. if (s == NULL)
  266. return;
  267. s2 = s->s2;
  268. if (s2->rbuf != NULL)
  269. OPENSSL_free(s2->rbuf);
  270. if (s2->wbuf != NULL)
  271. OPENSSL_free(s2->wbuf);
  272. OPENSSL_cleanse(s2, sizeof *s2);
  273. OPENSSL_free(s2);
  274. s->s2 = NULL;
  275. }
  276. void ssl2_clear(SSL *s)
  277. {
  278. SSL2_STATE *s2;
  279. unsigned char *rbuf, *wbuf;
  280. s2 = s->s2;
  281. rbuf = s2->rbuf;
  282. wbuf = s2->wbuf;
  283. memset(s2, 0, sizeof *s2);
  284. s2->rbuf = rbuf;
  285. s2->wbuf = wbuf;
  286. s2->clear_text = 1;
  287. s->packet = s2->rbuf;
  288. s->version = SSL2_VERSION;
  289. s->packet_length = 0;
  290. }
  291. long ssl2_ctrl(SSL *s, int cmd, long larg, void *parg)
  292. {
  293. int ret = 0;
  294. switch (cmd) {
  295. case SSL_CTRL_GET_SESSION_REUSED:
  296. ret = s->hit;
  297. break;
  298. case SSL_CTRL_CHECK_PROTO_VERSION:
  299. return ssl3_ctrl(s, SSL_CTRL_CHECK_PROTO_VERSION, larg, parg);
  300. default:
  301. break;
  302. }
  303. return (ret);
  304. }
  305. long ssl2_callback_ctrl(SSL *s, int cmd, void (*fp) (void))
  306. {
  307. return (0);
  308. }
  309. long ssl2_ctx_ctrl(SSL_CTX *ctx, int cmd, long larg, void *parg)
  310. {
  311. return (0);
  312. }
  313. long ssl2_ctx_callback_ctrl(SSL_CTX *ctx, int cmd, void (*fp) (void))
  314. {
  315. return (0);
  316. }
  317. /*
  318. * This function needs to check if the ciphers required are actually
  319. * available
  320. */
  321. SSL_CIPHER *ssl2_get_cipher_by_char(const unsigned char *p)
  322. {
  323. SSL_CIPHER c, *cp;
  324. unsigned long id;
  325. id = 0x02000000L | ((unsigned long)p[0] << 16L) |
  326. ((unsigned long)p[1] << 8L) | (unsigned long)p[2];
  327. c.id = id;
  328. cp = (SSL_CIPHER *)OBJ_bsearch((char *)&c,
  329. (char *)ssl2_ciphers,
  330. SSL2_NUM_CIPHERS, sizeof(SSL_CIPHER),
  331. FP_ICC ssl_cipher_id_cmp);
  332. if ((cp == NULL) || (cp->valid == 0))
  333. return NULL;
  334. else
  335. return cp;
  336. }
  337. int ssl2_put_cipher_by_char(const SSL_CIPHER *c, unsigned char *p)
  338. {
  339. long l;
  340. if (p != NULL) {
  341. l = c->id;
  342. if ((l & 0xff000000) != 0x02000000 && l != SSL3_CK_FALLBACK_SCSV)
  343. return (0);
  344. p[0] = ((unsigned char)(l >> 16L)) & 0xFF;
  345. p[1] = ((unsigned char)(l >> 8L)) & 0xFF;
  346. p[2] = ((unsigned char)(l)) & 0xFF;
  347. }
  348. return (3);
  349. }
  350. int ssl2_generate_key_material(SSL *s)
  351. {
  352. unsigned int i;
  353. EVP_MD_CTX ctx;
  354. unsigned char *km;
  355. unsigned char c = '0';
  356. const EVP_MD *md5;
  357. md5 = EVP_md5();
  358. # ifdef CHARSET_EBCDIC
  359. c = os_toascii['0']; /* Must be an ASCII '0', not EBCDIC '0', see
  360. * SSLv2 docu */
  361. # endif
  362. EVP_MD_CTX_init(&ctx);
  363. km = s->s2->key_material;
  364. if (s->session->master_key_length < 0 ||
  365. s->session->master_key_length > (int)sizeof(s->session->master_key)) {
  366. SSLerr(SSL_F_SSL2_GENERATE_KEY_MATERIAL, ERR_R_INTERNAL_ERROR);
  367. return 0;
  368. }
  369. for (i = 0; i < s->s2->key_material_length; i += EVP_MD_size(md5)) {
  370. if (((km - s->s2->key_material) + EVP_MD_size(md5)) >
  371. (int)sizeof(s->s2->key_material)) {
  372. /*
  373. * EVP_DigestFinal_ex() below would write beyond buffer
  374. */
  375. SSLerr(SSL_F_SSL2_GENERATE_KEY_MATERIAL, ERR_R_INTERNAL_ERROR);
  376. return 0;
  377. }
  378. EVP_DigestInit_ex(&ctx, md5, NULL);
  379. OPENSSL_assert(s->session->master_key_length >= 0
  380. && s->session->master_key_length
  381. <= (int)sizeof(s->session->master_key));
  382. EVP_DigestUpdate(&ctx, s->session->master_key,
  383. s->session->master_key_length);
  384. EVP_DigestUpdate(&ctx, &c, 1);
  385. c++;
  386. EVP_DigestUpdate(&ctx, s->s2->challenge, s->s2->challenge_length);
  387. EVP_DigestUpdate(&ctx, s->s2->conn_id, s->s2->conn_id_length);
  388. EVP_DigestFinal_ex(&ctx, km, NULL);
  389. km += EVP_MD_size(md5);
  390. }
  391. EVP_MD_CTX_cleanup(&ctx);
  392. return 1;
  393. }
  394. void ssl2_return_error(SSL *s, int err)
  395. {
  396. if (!s->error) {
  397. s->error = 3;
  398. s->error_code = err;
  399. ssl2_write_error(s);
  400. }
  401. }
  402. void ssl2_write_error(SSL *s)
  403. {
  404. unsigned char buf[3];
  405. int i, error;
  406. buf[0] = SSL2_MT_ERROR;
  407. buf[1] = (s->error_code >> 8) & 0xff;
  408. buf[2] = (s->error_code) & 0xff;
  409. /* state=s->rwstate;*/
  410. error = s->error; /* number of bytes left to write */
  411. s->error = 0;
  412. OPENSSL_assert(error >= 0 && error <= (int)sizeof(buf));
  413. i = ssl2_write(s, &(buf[3 - error]), error);
  414. /* if (i == error) s->rwstate=state; */
  415. if (i < 0)
  416. s->error = error;
  417. else {
  418. s->error = error - i;
  419. if (s->error == 0)
  420. if (s->msg_callback) {
  421. /* ERROR */
  422. s->msg_callback(1, s->version, 0, buf, 3, s,
  423. s->msg_callback_arg);
  424. }
  425. }
  426. }
  427. int ssl2_shutdown(SSL *s)
  428. {
  429. s->shutdown = (SSL_SENT_SHUTDOWN | SSL_RECEIVED_SHUTDOWN);
  430. return (1);
  431. }
  432. #else /* !OPENSSL_NO_SSL2 */
  433. # if PEDANTIC
  434. static void *dummy = &dummy;
  435. # endif
  436. #endif