bio_ssl.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586
  1. /* ssl/bio_ssl.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 <stdio.h>
  59. #include <stdlib.h>
  60. #include <string.h>
  61. #include <errno.h>
  62. #include <openssl/crypto.h>
  63. #include <openssl/bio.h>
  64. #include <openssl/err.h>
  65. #include <openssl/ssl.h>
  66. static int ssl_write(BIO *h, const char *buf, int num);
  67. static int ssl_read(BIO *h, char *buf, int size);
  68. static int ssl_puts(BIO *h, const char *str);
  69. static long ssl_ctrl(BIO *h, int cmd, long arg1, void *arg2);
  70. static int ssl_new(BIO *h);
  71. static int ssl_free(BIO *data);
  72. static long ssl_callback_ctrl(BIO *h, int cmd, bio_info_cb *fp);
  73. typedef struct bio_ssl_st
  74. {
  75. SSL *ssl; /* The ssl handle :-) */
  76. /* re-negotiate every time the total number of bytes is this size */
  77. int num_renegotiates;
  78. unsigned long renegotiate_count;
  79. unsigned long byte_count;
  80. unsigned long renegotiate_timeout;
  81. unsigned long last_time;
  82. } BIO_SSL;
  83. static BIO_METHOD methods_sslp=
  84. {
  85. BIO_TYPE_SSL,"ssl",
  86. ssl_write,
  87. ssl_read,
  88. ssl_puts,
  89. NULL, /* ssl_gets, */
  90. ssl_ctrl,
  91. ssl_new,
  92. ssl_free,
  93. ssl_callback_ctrl,
  94. };
  95. BIO_METHOD *BIO_f_ssl(void)
  96. {
  97. return(&methods_sslp);
  98. }
  99. static int ssl_new(BIO *bi)
  100. {
  101. BIO_SSL *bs;
  102. bs=(BIO_SSL *)OPENSSL_malloc(sizeof(BIO_SSL));
  103. if (bs == NULL)
  104. {
  105. BIOerr(BIO_F_SSL_NEW,ERR_R_MALLOC_FAILURE);
  106. return(0);
  107. }
  108. memset(bs,0,sizeof(BIO_SSL));
  109. bi->init=0;
  110. bi->ptr=(char *)bs;
  111. bi->flags=0;
  112. return(1);
  113. }
  114. static int ssl_free(BIO *a)
  115. {
  116. BIO_SSL *bs;
  117. if (a == NULL) return(0);
  118. bs=(BIO_SSL *)a->ptr;
  119. if (bs->ssl != NULL) SSL_shutdown(bs->ssl);
  120. if (a->shutdown)
  121. {
  122. if (a->init && (bs->ssl != NULL))
  123. SSL_free(bs->ssl);
  124. a->init=0;
  125. a->flags=0;
  126. }
  127. if (a->ptr != NULL)
  128. OPENSSL_free(a->ptr);
  129. return(1);
  130. }
  131. static int ssl_read(BIO *b, char *out, int outl)
  132. {
  133. int ret=1;
  134. BIO_SSL *sb;
  135. SSL *ssl;
  136. int retry_reason=0;
  137. int r=0;
  138. if (out == NULL) return(0);
  139. sb=(BIO_SSL *)b->ptr;
  140. ssl=sb->ssl;
  141. BIO_clear_retry_flags(b);
  142. #if 0
  143. if (!SSL_is_init_finished(ssl))
  144. {
  145. /* ret=SSL_do_handshake(ssl); */
  146. if (ret > 0)
  147. {
  148. outflags=(BIO_FLAGS_READ|BIO_FLAGS_SHOULD_RETRY);
  149. ret= -1;
  150. goto end;
  151. }
  152. }
  153. #endif
  154. /* if (ret > 0) */
  155. ret=SSL_read(ssl,out,outl);
  156. switch (SSL_get_error(ssl,ret))
  157. {
  158. case SSL_ERROR_NONE:
  159. if (ret <= 0) break;
  160. if (sb->renegotiate_count > 0)
  161. {
  162. sb->byte_count+=ret;
  163. if (sb->byte_count > sb->renegotiate_count)
  164. {
  165. sb->byte_count=0;
  166. sb->num_renegotiates++;
  167. SSL_renegotiate(ssl);
  168. r=1;
  169. }
  170. }
  171. if ((sb->renegotiate_timeout > 0) && (!r))
  172. {
  173. unsigned long tm;
  174. tm=(unsigned long)time(NULL);
  175. if (tm > sb->last_time+sb->renegotiate_timeout)
  176. {
  177. sb->last_time=tm;
  178. sb->num_renegotiates++;
  179. SSL_renegotiate(ssl);
  180. }
  181. }
  182. break;
  183. case SSL_ERROR_WANT_READ:
  184. BIO_set_retry_read(b);
  185. break;
  186. case SSL_ERROR_WANT_WRITE:
  187. BIO_set_retry_write(b);
  188. break;
  189. case SSL_ERROR_WANT_X509_LOOKUP:
  190. BIO_set_retry_special(b);
  191. retry_reason=BIO_RR_SSL_X509_LOOKUP;
  192. break;
  193. case SSL_ERROR_WANT_CONNECT:
  194. BIO_set_retry_special(b);
  195. retry_reason=BIO_RR_CONNECT;
  196. break;
  197. case SSL_ERROR_SYSCALL:
  198. case SSL_ERROR_SSL:
  199. case SSL_ERROR_ZERO_RETURN:
  200. default:
  201. break;
  202. }
  203. b->retry_reason=retry_reason;
  204. return(ret);
  205. }
  206. static int ssl_write(BIO *b, const char *out, int outl)
  207. {
  208. int ret,r=0;
  209. int retry_reason=0;
  210. SSL *ssl;
  211. BIO_SSL *bs;
  212. if (out == NULL) return(0);
  213. bs=(BIO_SSL *)b->ptr;
  214. ssl=bs->ssl;
  215. BIO_clear_retry_flags(b);
  216. /* ret=SSL_do_handshake(ssl);
  217. if (ret > 0) */
  218. ret=SSL_write(ssl,out,outl);
  219. switch (SSL_get_error(ssl,ret))
  220. {
  221. case SSL_ERROR_NONE:
  222. if (ret <= 0) break;
  223. if (bs->renegotiate_count > 0)
  224. {
  225. bs->byte_count+=ret;
  226. if (bs->byte_count > bs->renegotiate_count)
  227. {
  228. bs->byte_count=0;
  229. bs->num_renegotiates++;
  230. SSL_renegotiate(ssl);
  231. r=1;
  232. }
  233. }
  234. if ((bs->renegotiate_timeout > 0) && (!r))
  235. {
  236. unsigned long tm;
  237. tm=(unsigned long)time(NULL);
  238. if (tm > bs->last_time+bs->renegotiate_timeout)
  239. {
  240. bs->last_time=tm;
  241. bs->num_renegotiates++;
  242. SSL_renegotiate(ssl);
  243. }
  244. }
  245. break;
  246. case SSL_ERROR_WANT_WRITE:
  247. BIO_set_retry_write(b);
  248. break;
  249. case SSL_ERROR_WANT_READ:
  250. BIO_set_retry_read(b);
  251. break;
  252. case SSL_ERROR_WANT_X509_LOOKUP:
  253. BIO_set_retry_special(b);
  254. retry_reason=BIO_RR_SSL_X509_LOOKUP;
  255. break;
  256. case SSL_ERROR_WANT_CONNECT:
  257. BIO_set_retry_special(b);
  258. retry_reason=BIO_RR_CONNECT;
  259. case SSL_ERROR_SYSCALL:
  260. case SSL_ERROR_SSL:
  261. default:
  262. break;
  263. }
  264. b->retry_reason=retry_reason;
  265. return(ret);
  266. }
  267. static long ssl_ctrl(BIO *b, int cmd, long num, void *ptr)
  268. {
  269. SSL **sslp,*ssl;
  270. BIO_SSL *bs;
  271. BIO *dbio,*bio;
  272. long ret=1;
  273. bs=(BIO_SSL *)b->ptr;
  274. ssl=bs->ssl;
  275. if ((ssl == NULL) && (cmd != BIO_C_SET_SSL))
  276. return(0);
  277. switch (cmd)
  278. {
  279. case BIO_CTRL_RESET:
  280. SSL_shutdown(ssl);
  281. if (ssl->handshake_func == ssl->method->ssl_connect)
  282. SSL_set_connect_state(ssl);
  283. else if (ssl->handshake_func == ssl->method->ssl_accept)
  284. SSL_set_accept_state(ssl);
  285. SSL_clear(ssl);
  286. if (b->next_bio != NULL)
  287. ret=BIO_ctrl(b->next_bio,cmd,num,ptr);
  288. else if (ssl->rbio != NULL)
  289. ret=BIO_ctrl(ssl->rbio,cmd,num,ptr);
  290. else
  291. ret=1;
  292. break;
  293. case BIO_CTRL_INFO:
  294. ret=0;
  295. break;
  296. case BIO_C_SSL_MODE:
  297. if (num) /* client mode */
  298. SSL_set_connect_state(ssl);
  299. else
  300. SSL_set_accept_state(ssl);
  301. break;
  302. case BIO_C_SET_SSL_RENEGOTIATE_TIMEOUT:
  303. ret=bs->renegotiate_timeout;
  304. if (num < 60) num=5;
  305. bs->renegotiate_timeout=(unsigned long)num;
  306. bs->last_time=(unsigned long)time(NULL);
  307. break;
  308. case BIO_C_SET_SSL_RENEGOTIATE_BYTES:
  309. ret=bs->renegotiate_count;
  310. if ((long)num >=512)
  311. bs->renegotiate_count=(unsigned long)num;
  312. break;
  313. case BIO_C_GET_SSL_NUM_RENEGOTIATES:
  314. ret=bs->num_renegotiates;
  315. break;
  316. case BIO_C_SET_SSL:
  317. if (ssl != NULL)
  318. ssl_free(b);
  319. b->shutdown=(int)num;
  320. ssl=(SSL *)ptr;
  321. ((BIO_SSL *)b->ptr)->ssl=ssl;
  322. bio=SSL_get_rbio(ssl);
  323. if (bio != NULL)
  324. {
  325. if (b->next_bio != NULL)
  326. BIO_push(bio,b->next_bio);
  327. b->next_bio=bio;
  328. CRYPTO_add(&bio->references,1,CRYPTO_LOCK_BIO);
  329. }
  330. b->init=1;
  331. break;
  332. case BIO_C_GET_SSL:
  333. if (ptr != NULL)
  334. {
  335. sslp=(SSL **)ptr;
  336. *sslp=ssl;
  337. }
  338. else
  339. ret=0;
  340. break;
  341. case BIO_CTRL_GET_CLOSE:
  342. ret=b->shutdown;
  343. break;
  344. case BIO_CTRL_SET_CLOSE:
  345. b->shutdown=(int)num;
  346. break;
  347. case BIO_CTRL_WPENDING:
  348. ret=BIO_ctrl(ssl->wbio,cmd,num,ptr);
  349. break;
  350. case BIO_CTRL_PENDING:
  351. ret=SSL_pending(ssl);
  352. if (ret == 0)
  353. ret=BIO_pending(ssl->rbio);
  354. break;
  355. case BIO_CTRL_FLUSH:
  356. BIO_clear_retry_flags(b);
  357. ret=BIO_ctrl(ssl->wbio,cmd,num,ptr);
  358. BIO_copy_next_retry(b);
  359. break;
  360. case BIO_CTRL_PUSH:
  361. if ((b->next_bio != NULL) && (b->next_bio != ssl->rbio))
  362. {
  363. SSL_set_bio(ssl,b->next_bio,b->next_bio);
  364. CRYPTO_add(&b->next_bio->references,1,CRYPTO_LOCK_BIO);
  365. }
  366. break;
  367. case BIO_CTRL_POP:
  368. /* ugly bit of a hack */
  369. if (ssl->rbio != ssl->wbio) /* we are in trouble :-( */
  370. {
  371. BIO_free_all(ssl->wbio);
  372. }
  373. ssl->wbio=NULL;
  374. ssl->rbio=NULL;
  375. break;
  376. case BIO_C_DO_STATE_MACHINE:
  377. BIO_clear_retry_flags(b);
  378. b->retry_reason=0;
  379. ret=(int)SSL_do_handshake(ssl);
  380. switch (SSL_get_error(ssl,(int)ret))
  381. {
  382. case SSL_ERROR_WANT_READ:
  383. BIO_set_flags(b,
  384. BIO_FLAGS_READ|BIO_FLAGS_SHOULD_RETRY);
  385. break;
  386. case SSL_ERROR_WANT_WRITE:
  387. BIO_set_flags(b,
  388. BIO_FLAGS_WRITE|BIO_FLAGS_SHOULD_RETRY);
  389. break;
  390. case SSL_ERROR_WANT_CONNECT:
  391. BIO_set_flags(b,
  392. BIO_FLAGS_IO_SPECIAL|BIO_FLAGS_SHOULD_RETRY);
  393. b->retry_reason=b->next_bio->retry_reason;
  394. break;
  395. default:
  396. break;
  397. }
  398. break;
  399. case BIO_CTRL_DUP:
  400. dbio=(BIO *)ptr;
  401. if (((BIO_SSL *)dbio->ptr)->ssl != NULL)
  402. SSL_free(((BIO_SSL *)dbio->ptr)->ssl);
  403. ((BIO_SSL *)dbio->ptr)->ssl=SSL_dup(ssl);
  404. ((BIO_SSL *)dbio->ptr)->renegotiate_count=
  405. ((BIO_SSL *)b->ptr)->renegotiate_count;
  406. ((BIO_SSL *)dbio->ptr)->byte_count=
  407. ((BIO_SSL *)b->ptr)->byte_count;
  408. ((BIO_SSL *)dbio->ptr)->renegotiate_timeout=
  409. ((BIO_SSL *)b->ptr)->renegotiate_timeout;
  410. ((BIO_SSL *)dbio->ptr)->last_time=
  411. ((BIO_SSL *)b->ptr)->last_time;
  412. ret=(((BIO_SSL *)dbio->ptr)->ssl != NULL);
  413. break;
  414. case BIO_C_GET_FD:
  415. ret=BIO_ctrl(ssl->rbio,cmd,num,ptr);
  416. break;
  417. case BIO_CTRL_SET_CALLBACK:
  418. {
  419. #if 0 /* FIXME: Should this be used? -- Richard Levitte */
  420. BIOerr(SSL_F_SSL_CTRL, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
  421. ret = -1;
  422. #else
  423. ret=0;
  424. #endif
  425. }
  426. break;
  427. case BIO_CTRL_GET_CALLBACK:
  428. {
  429. void (**fptr)();
  430. fptr=(void (**)())ptr;
  431. *fptr=SSL_get_info_callback(ssl);
  432. }
  433. break;
  434. default:
  435. ret=BIO_ctrl(ssl->rbio,cmd,num,ptr);
  436. break;
  437. }
  438. return(ret);
  439. }
  440. static long ssl_callback_ctrl(BIO *b, int cmd, bio_info_cb *fp)
  441. {
  442. SSL *ssl;
  443. BIO_SSL *bs;
  444. long ret=1;
  445. bs=(BIO_SSL *)b->ptr;
  446. ssl=bs->ssl;
  447. switch (cmd)
  448. {
  449. case BIO_CTRL_SET_CALLBACK:
  450. {
  451. SSL_set_info_callback(ssl,fp);
  452. }
  453. break;
  454. default:
  455. ret=BIO_callback_ctrl(ssl->rbio,cmd,fp);
  456. break;
  457. }
  458. return(ret);
  459. }
  460. static int ssl_puts(BIO *bp, const char *str)
  461. {
  462. int n,ret;
  463. n=strlen(str);
  464. ret=BIO_write(bp,str,n);
  465. return(ret);
  466. }
  467. BIO *BIO_new_buffer_ssl_connect(SSL_CTX *ctx)
  468. {
  469. BIO *ret=NULL,*buf=NULL,*ssl=NULL;
  470. if ((buf=BIO_new(BIO_f_buffer())) == NULL)
  471. return(NULL);
  472. if ((ssl=BIO_new_ssl_connect(ctx)) == NULL)
  473. goto err;
  474. if ((ret=BIO_push(buf,ssl)) == NULL)
  475. goto err;
  476. return(ret);
  477. err:
  478. if (buf != NULL) BIO_free(buf);
  479. if (ssl != NULL) BIO_free(ssl);
  480. return(NULL);
  481. }
  482. BIO *BIO_new_ssl_connect(SSL_CTX *ctx)
  483. {
  484. BIO *ret=NULL,*con=NULL,*ssl=NULL;
  485. if ((con=BIO_new(BIO_s_connect())) == NULL)
  486. return(NULL);
  487. if ((ssl=BIO_new_ssl(ctx,1)) == NULL)
  488. goto err;
  489. if ((ret=BIO_push(ssl,con)) == NULL)
  490. goto err;
  491. return(ret);
  492. err:
  493. if (con != NULL) BIO_free(con);
  494. if (ret != NULL) BIO_free(ret);
  495. return(NULL);
  496. }
  497. BIO *BIO_new_ssl(SSL_CTX *ctx, int client)
  498. {
  499. BIO *ret;
  500. SSL *ssl;
  501. if ((ret=BIO_new(BIO_f_ssl())) == NULL)
  502. return(NULL);
  503. if ((ssl=SSL_new(ctx)) == NULL)
  504. {
  505. BIO_free(ret);
  506. return(NULL);
  507. }
  508. if (client)
  509. SSL_set_connect_state(ssl);
  510. else
  511. SSL_set_accept_state(ssl);
  512. BIO_set_ssl(ret,ssl,BIO_CLOSE);
  513. return(ret);
  514. }
  515. int BIO_ssl_copy_session_id(BIO *t, BIO *f)
  516. {
  517. t=BIO_find_type(t,BIO_TYPE_SSL);
  518. f=BIO_find_type(f,BIO_TYPE_SSL);
  519. if ((t == NULL) || (f == NULL))
  520. return(0);
  521. if ( (((BIO_SSL *)t->ptr)->ssl == NULL) ||
  522. (((BIO_SSL *)f->ptr)->ssl == NULL))
  523. return(0);
  524. SSL_copy_session_id(((BIO_SSL *)t->ptr)->ssl,((BIO_SSL *)f->ptr)->ssl);
  525. return(1);
  526. }
  527. void BIO_ssl_shutdown(BIO *b)
  528. {
  529. SSL *s;
  530. while (b != NULL)
  531. {
  532. if (b->method->type == BIO_TYPE_SSL)
  533. {
  534. s=((BIO_SSL *)b->ptr)->ssl;
  535. SSL_shutdown(s);
  536. break;
  537. }
  538. b=b->next_bio;
  539. }
  540. }