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