First public contribution.
2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
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.
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).
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.
23 * Redistribution and use in source and binary forms, with or without
24 * modification, are permitted provided that the following conditions
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)"
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
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.]
59 © Portions copyright (c) 2006 Nokia Corporation. All rights reserved.
66 #include <openssl/crypto.h>
67 #include <openssl/bio.h>
68 #include <openssl/err.h>
69 #include <openssl/ssl.h>
71 #if (defined(SYMBIAN) && (defined(__WINSCW__) || defined(__WINS__)))
72 #include "libssl_wsd.h"
75 static int ssl_write(BIO *h, const char *buf, int num);
76 static int ssl_read(BIO *h, char *buf, int size);
77 static int ssl_puts(BIO *h, const char *str);
78 static long ssl_ctrl(BIO *h, int cmd, long arg1, void *arg2);
79 static int ssl_new(BIO *h);
80 static int ssl_free(BIO *data);
81 static long ssl_callback_ctrl(BIO *h, int cmd, bio_info_cb *fp);
82 typedef struct bio_ssl_st
84 SSL *ssl; /* The ssl handle :-) */
85 /* re-negotiate every time the total number of bytes is this size */
87 unsigned long renegotiate_count;
88 unsigned long byte_count;
89 unsigned long renegotiate_timeout;
90 unsigned long last_time;
99 static BIO_METHOD methods_sslp=
101 const BIO_METHOD temp_methods_sslp=
109 NULL, /* ssl_gets, */
121 GET_STATIC_VAR_FROM_TLS(methods_sslp,bio_ssl,BIO_METHOD)
123 #define methods_sslp (*GET_WSD_VAR_NAME(methods_sslp,bio_ssl,s)())
129 EXPORT_C BIO_METHOD *BIO_f_ssl(void)
131 return(&methods_sslp);
134 static int ssl_new(BIO *bi)
138 bs=(BIO_SSL *)OPENSSL_malloc(sizeof(BIO_SSL));
141 BIOerr(BIO_F_SSL_NEW,ERR_R_MALLOC_FAILURE);
144 memset(bs,0,sizeof(BIO_SSL));
151 static int ssl_free(BIO *a)
155 if (a == NULL) return(0);
156 bs=(BIO_SSL *)a->ptr;
157 if (bs->ssl != NULL) SSL_shutdown(bs->ssl);
160 if (a->init && (bs->ssl != NULL))
166 OPENSSL_free(a->ptr);
170 static int ssl_read(BIO *b, char *out, int outl)
178 if (out == NULL) return(0);
179 sb=(BIO_SSL *)b->ptr;
182 BIO_clear_retry_flags(b);
185 if (!SSL_is_init_finished(ssl))
187 /* ret=SSL_do_handshake(ssl); */
191 outflags=(BIO_FLAGS_READ|BIO_FLAGS_SHOULD_RETRY);
198 ret=SSL_read(ssl,out,outl);
200 switch (SSL_get_error(ssl,ret))
204 if (sb->renegotiate_count > 0)
207 if (sb->byte_count > sb->renegotiate_count)
210 sb->num_renegotiates++;
211 SSL_renegotiate(ssl);
215 if ((sb->renegotiate_timeout > 0) && (!r))
219 tm=(unsigned long)time(NULL);
220 if (tm > sb->last_time+sb->renegotiate_timeout)
223 sb->num_renegotiates++;
224 SSL_renegotiate(ssl);
229 case SSL_ERROR_WANT_READ:
230 BIO_set_retry_read(b);
232 case SSL_ERROR_WANT_WRITE:
233 BIO_set_retry_write(b);
235 case SSL_ERROR_WANT_X509_LOOKUP:
236 BIO_set_retry_special(b);
237 retry_reason=BIO_RR_SSL_X509_LOOKUP;
239 case SSL_ERROR_WANT_ACCEPT:
240 BIO_set_retry_special(b);
241 retry_reason=BIO_RR_ACCEPT;
243 case SSL_ERROR_WANT_CONNECT:
244 BIO_set_retry_special(b);
245 retry_reason=BIO_RR_CONNECT;
247 case SSL_ERROR_SYSCALL:
249 case SSL_ERROR_ZERO_RETURN:
254 b->retry_reason=retry_reason;
258 static int ssl_write(BIO *b, const char *out, int outl)
265 if (out == NULL) return(0);
266 bs=(BIO_SSL *)b->ptr;
269 BIO_clear_retry_flags(b);
271 /* ret=SSL_do_handshake(ssl);
273 ret=SSL_write(ssl,out,outl);
275 switch (SSL_get_error(ssl,ret))
279 if (bs->renegotiate_count > 0)
282 if (bs->byte_count > bs->renegotiate_count)
285 bs->num_renegotiates++;
286 SSL_renegotiate(ssl);
290 if ((bs->renegotiate_timeout > 0) && (!r))
294 tm=(unsigned long)time(NULL);
295 if (tm > bs->last_time+bs->renegotiate_timeout)
298 bs->num_renegotiates++;
299 SSL_renegotiate(ssl);
303 case SSL_ERROR_WANT_WRITE:
304 BIO_set_retry_write(b);
306 case SSL_ERROR_WANT_READ:
307 BIO_set_retry_read(b);
309 case SSL_ERROR_WANT_X509_LOOKUP:
310 BIO_set_retry_special(b);
311 retry_reason=BIO_RR_SSL_X509_LOOKUP;
313 case SSL_ERROR_WANT_CONNECT:
314 BIO_set_retry_special(b);
315 retry_reason=BIO_RR_CONNECT;
316 case SSL_ERROR_SYSCALL:
322 b->retry_reason=retry_reason;
326 static long ssl_ctrl(BIO *b, int cmd, long num, void *ptr)
333 bs=(BIO_SSL *)b->ptr;
335 if ((ssl == NULL) && (cmd != BIO_C_SET_SSL))
342 if (ssl->handshake_func == ssl->method->ssl_connect)
343 SSL_set_connect_state(ssl);
344 else if (ssl->handshake_func == ssl->method->ssl_accept)
345 SSL_set_accept_state(ssl);
349 if (b->next_bio != NULL)
350 ret=BIO_ctrl(b->next_bio,cmd,num,ptr);
351 else if (ssl->rbio != NULL)
352 ret=BIO_ctrl(ssl->rbio,cmd,num,ptr);
360 if (num) /* client mode */
361 SSL_set_connect_state(ssl);
363 SSL_set_accept_state(ssl);
365 case BIO_C_SET_SSL_RENEGOTIATE_TIMEOUT:
366 ret=bs->renegotiate_timeout;
368 bs->renegotiate_timeout=(unsigned long)num;
369 bs->last_time=(unsigned long)time(NULL);
371 case BIO_C_SET_SSL_RENEGOTIATE_BYTES:
372 ret=bs->renegotiate_count;
374 bs->renegotiate_count=(unsigned long)num;
376 case BIO_C_GET_SSL_NUM_RENEGOTIATES:
377 ret=bs->num_renegotiates;
382 b->shutdown=(int)num;
384 ((BIO_SSL *)b->ptr)->ssl=ssl;
385 bio=SSL_get_rbio(ssl);
388 if (b->next_bio != NULL)
389 BIO_push(bio,b->next_bio);
391 CRYPTO_add(&bio->references,1,CRYPTO_LOCK_BIO);
404 case BIO_CTRL_GET_CLOSE:
407 case BIO_CTRL_SET_CLOSE:
408 b->shutdown=(int)num;
410 case BIO_CTRL_WPENDING:
411 ret=BIO_ctrl(ssl->wbio,cmd,num,ptr);
413 case BIO_CTRL_PENDING:
414 ret=SSL_pending(ssl);
416 ret=BIO_pending(ssl->rbio);
419 BIO_clear_retry_flags(b);
420 ret=BIO_ctrl(ssl->wbio,cmd,num,ptr);
421 BIO_copy_next_retry(b);
424 if ((b->next_bio != NULL) && (b->next_bio != ssl->rbio))
426 SSL_set_bio(ssl,b->next_bio,b->next_bio);
427 CRYPTO_add(&b->next_bio->references,1,CRYPTO_LOCK_BIO);
431 /* ugly bit of a hack */
432 if (ssl->rbio != ssl->wbio) /* we are in trouble :-( */
434 BIO_free_all(ssl->wbio);
436 if (b->next_bio != NULL)
438 CRYPTO_add(&b->next_bio->references,1,CRYPTO_LOCK_BIO);
443 case BIO_C_DO_STATE_MACHINE:
444 BIO_clear_retry_flags(b);
447 ret=(int)SSL_do_handshake(ssl);
449 switch (SSL_get_error(ssl,(int)ret))
451 case SSL_ERROR_WANT_READ:
453 BIO_FLAGS_READ|BIO_FLAGS_SHOULD_RETRY);
455 case SSL_ERROR_WANT_WRITE:
457 BIO_FLAGS_WRITE|BIO_FLAGS_SHOULD_RETRY);
459 case SSL_ERROR_WANT_CONNECT:
461 BIO_FLAGS_IO_SPECIAL|BIO_FLAGS_SHOULD_RETRY);
462 b->retry_reason=b->next_bio->retry_reason;
470 if (((BIO_SSL *)dbio->ptr)->ssl != NULL)
471 SSL_free(((BIO_SSL *)dbio->ptr)->ssl);
472 ((BIO_SSL *)dbio->ptr)->ssl=SSL_dup(ssl);
473 ((BIO_SSL *)dbio->ptr)->renegotiate_count=
474 ((BIO_SSL *)b->ptr)->renegotiate_count;
475 ((BIO_SSL *)dbio->ptr)->byte_count=
476 ((BIO_SSL *)b->ptr)->byte_count;
477 ((BIO_SSL *)dbio->ptr)->renegotiate_timeout=
478 ((BIO_SSL *)b->ptr)->renegotiate_timeout;
479 ((BIO_SSL *)dbio->ptr)->last_time=
480 ((BIO_SSL *)b->ptr)->last_time;
481 ret=(((BIO_SSL *)dbio->ptr)->ssl != NULL);
484 ret=BIO_ctrl(ssl->rbio,cmd,num,ptr);
486 case BIO_CTRL_SET_CALLBACK:
488 #if 0 /* FIXME: Should this be used? -- Richard Levitte */
489 SSLerr(SSL_F_SSL_CTRL, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
496 case BIO_CTRL_GET_CALLBACK:
498 void (**fptr)(const SSL *xssl,int type,int val);
500 fptr=(void (**)(const SSL *xssl,int type,int val))ptr;
501 *fptr=SSL_get_info_callback(ssl);
505 ret=BIO_ctrl(ssl->rbio,cmd,num,ptr);
511 static long ssl_callback_ctrl(BIO *b, int cmd, bio_info_cb *fp)
517 bs=(BIO_SSL *)b->ptr;
521 case BIO_CTRL_SET_CALLBACK:
523 /* FIXME: setting this via a completely different prototype
524 seems like a crap idea */
525 SSL_set_info_callback(ssl,(void (*)(const SSL *,int,int))fp);
529 ret=BIO_callback_ctrl(ssl->rbio,cmd,fp);
535 static int ssl_puts(BIO *bp, const char *str)
540 ret=BIO_write(bp,str,n);
544 EXPORT_C BIO *BIO_new_buffer_ssl_connect(SSL_CTX *ctx)
546 #ifndef OPENSSL_NO_SOCK
547 BIO *ret=NULL,*buf=NULL,*ssl=NULL;
549 if ((buf=BIO_new(BIO_f_buffer())) == NULL)
551 if ((ssl=BIO_new_ssl_connect(ctx)) == NULL)
553 if ((ret=BIO_push(buf,ssl)) == NULL)
557 if (buf != NULL) BIO_free(buf);
558 if (ssl != NULL) BIO_free(ssl);
563 EXPORT_C BIO *BIO_new_ssl_connect(SSL_CTX *ctx)
565 BIO *ret=NULL,*con=NULL,*ssl=NULL;
567 if ((con=BIO_new(BIO_s_connect())) == NULL)
569 if ((ssl=BIO_new_ssl(ctx,1)) == NULL)
571 if ((ret=BIO_push(ssl,con)) == NULL)
575 if (con != NULL) BIO_free(con);
576 if (ret != NULL) BIO_free(ret);
580 EXPORT_C BIO *BIO_new_ssl(SSL_CTX *ctx, int client)
585 if ((ret=BIO_new(BIO_f_ssl())) == NULL)
587 if ((ssl=SSL_new(ctx)) == NULL)
593 SSL_set_connect_state(ssl);
595 SSL_set_accept_state(ssl);
597 BIO_set_ssl(ret,ssl,BIO_CLOSE);
601 EXPORT_C int BIO_ssl_copy_session_id(BIO *t, BIO *f)
603 t=BIO_find_type(t,BIO_TYPE_SSL);
604 f=BIO_find_type(f,BIO_TYPE_SSL);
605 if ((t == NULL) || (f == NULL))
607 if ( (((BIO_SSL *)t->ptr)->ssl == NULL) ||
608 (((BIO_SSL *)f->ptr)->ssl == NULL))
610 SSL_copy_session_id(((BIO_SSL *)t->ptr)->ssl,((BIO_SSL *)f->ptr)->ssl);
614 EXPORT_C void BIO_ssl_shutdown(BIO *b)
620 if (b->method->type == BIO_TYPE_SSL)
622 s=((BIO_SSL *)b->ptr)->ssl;