1 /* $OpenBSD: bio_ssl.c,v 1.29 2018/08/24 20:30:21 tb Exp $ */
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.]
64 #include <openssl/bio.h>
65 #include <openssl/crypto.h>
66 #include <openssl/err.h>
67 #include <openssl/ssl.h>
71 static int ssl_write(BIO
*h
, const char *buf
, int num
);
72 static int ssl_read(BIO
*h
, char *buf
, int size
);
73 static int ssl_puts(BIO
*h
, const char *str
);
74 static long ssl_ctrl(BIO
*h
, int cmd
, long arg1
, void *arg2
);
75 static int ssl_new(BIO
*h
);
76 static int ssl_free(BIO
*data
);
77 static long ssl_callback_ctrl(BIO
*h
, int cmd
, bio_info_cb
*fp
);
78 typedef struct bio_ssl_st
{
79 SSL
*ssl
; /* The ssl handle :-) */
80 /* re-negotiate every time the total number of bytes is this size */
82 unsigned long renegotiate_count
;
83 unsigned long byte_count
;
84 unsigned long renegotiate_timeout
;
88 static const BIO_METHOD methods_sslp
= {
97 .callback_ctrl
= ssl_callback_ctrl
,
103 return (&methods_sslp
);
111 bs
= calloc(1, sizeof(BIO_SSL
));
113 SSLerrorx(ERR_R_MALLOC_FAILURE
);
117 bi
->ptr
= (char *)bs
;
129 bs
= (BIO_SSL
*)a
->ptr
;
131 SSL_shutdown(bs
->ssl
);
133 if (a
->init
&& (bs
->ssl
!= NULL
))
143 ssl_read(BIO
*b
, char *out
, int outl
)
148 int retry_reason
= 0;
153 sb
= (BIO_SSL
*)b
->ptr
;
156 BIO_clear_retry_flags(b
);
158 ret
= SSL_read(ssl
, out
, outl
);
160 switch (SSL_get_error(ssl
, ret
)) {
164 if (sb
->renegotiate_count
> 0) {
165 sb
->byte_count
+= ret
;
166 if (sb
->byte_count
> sb
->renegotiate_count
) {
168 sb
->num_renegotiates
++;
169 SSL_renegotiate(ssl
);
173 if ((sb
->renegotiate_timeout
> 0) && (!r
)) {
177 if (tm
> sb
->last_time
+ sb
->renegotiate_timeout
) {
179 sb
->num_renegotiates
++;
180 SSL_renegotiate(ssl
);
185 case SSL_ERROR_WANT_READ
:
186 BIO_set_retry_read(b
);
188 case SSL_ERROR_WANT_WRITE
:
189 BIO_set_retry_write(b
);
191 case SSL_ERROR_WANT_X509_LOOKUP
:
192 BIO_set_retry_special(b
);
193 retry_reason
= BIO_RR_SSL_X509_LOOKUP
;
195 case SSL_ERROR_WANT_ACCEPT
:
196 BIO_set_retry_special(b
);
197 retry_reason
= BIO_RR_ACCEPT
;
199 case SSL_ERROR_WANT_CONNECT
:
200 BIO_set_retry_special(b
);
201 retry_reason
= BIO_RR_CONNECT
;
203 case SSL_ERROR_SYSCALL
:
205 case SSL_ERROR_ZERO_RETURN
:
210 b
->retry_reason
= retry_reason
;
215 ssl_write(BIO
*b
, const char *out
, int outl
)
218 int retry_reason
= 0;
224 bs
= (BIO_SSL
*)b
->ptr
;
227 BIO_clear_retry_flags(b
);
229 /* ret=SSL_do_handshake(ssl);
231 ret
= SSL_write(ssl
, out
, outl
);
233 switch (SSL_get_error(ssl
, ret
)) {
237 if (bs
->renegotiate_count
> 0) {
238 bs
->byte_count
+= ret
;
239 if (bs
->byte_count
> bs
->renegotiate_count
) {
241 bs
->num_renegotiates
++;
242 SSL_renegotiate(ssl
);
246 if ((bs
->renegotiate_timeout
> 0) && (!r
)) {
250 if (tm
> bs
->last_time
+ bs
->renegotiate_timeout
) {
252 bs
->num_renegotiates
++;
253 SSL_renegotiate(ssl
);
257 case SSL_ERROR_WANT_WRITE
:
258 BIO_set_retry_write(b
);
260 case SSL_ERROR_WANT_READ
:
261 BIO_set_retry_read(b
);
263 case SSL_ERROR_WANT_X509_LOOKUP
:
264 BIO_set_retry_special(b
);
265 retry_reason
= BIO_RR_SSL_X509_LOOKUP
;
267 case SSL_ERROR_WANT_CONNECT
:
268 BIO_set_retry_special(b
);
269 retry_reason
= BIO_RR_CONNECT
;
270 case SSL_ERROR_SYSCALL
:
276 b
->retry_reason
= retry_reason
;
281 ssl_ctrl(BIO
*b
, int cmd
, long num
, void *ptr
)
288 bs
= (BIO_SSL
*)b
->ptr
;
290 if ((ssl
== NULL
) && (cmd
!= BIO_C_SET_SSL
))
296 if (ssl
->internal
->handshake_func
==
297 ssl
->method
->internal
->ssl_connect
)
298 SSL_set_connect_state(ssl
);
299 else if (ssl
->internal
->handshake_func
==
300 ssl
->method
->internal
->ssl_accept
)
301 SSL_set_accept_state(ssl
);
305 if (b
->next_bio
!= NULL
)
306 ret
= BIO_ctrl(b
->next_bio
, cmd
, num
, ptr
);
307 else if (ssl
->rbio
!= NULL
)
308 ret
= BIO_ctrl(ssl
->rbio
, cmd
, num
, ptr
);
316 if (num
) /* client mode */
317 SSL_set_connect_state(ssl
);
319 SSL_set_accept_state(ssl
);
321 case BIO_C_SET_SSL_RENEGOTIATE_TIMEOUT
:
322 ret
= bs
->renegotiate_timeout
;
325 bs
->renegotiate_timeout
= (unsigned long)num
;
326 bs
->last_time
= time(NULL
);
328 case BIO_C_SET_SSL_RENEGOTIATE_BYTES
:
329 ret
= bs
->renegotiate_count
;
331 bs
->renegotiate_count
= (unsigned long)num
;
333 case BIO_C_GET_SSL_NUM_RENEGOTIATES
:
334 ret
= bs
->num_renegotiates
;
342 b
->shutdown
= (int)num
;
344 ((BIO_SSL
*)b
->ptr
)->ssl
= ssl
;
345 bio
= SSL_get_rbio(ssl
);
347 if (b
->next_bio
!= NULL
)
348 BIO_push(bio
, b
->next_bio
);
350 CRYPTO_add(&bio
->references
, 1, CRYPTO_LOCK_BIO
);
361 case BIO_CTRL_GET_CLOSE
:
364 case BIO_CTRL_SET_CLOSE
:
365 b
->shutdown
= (int)num
;
367 case BIO_CTRL_WPENDING
:
368 ret
= BIO_ctrl(ssl
->wbio
, cmd
, num
, ptr
);
370 case BIO_CTRL_PENDING
:
371 ret
= SSL_pending(ssl
);
373 ret
= BIO_pending(ssl
->rbio
);
376 BIO_clear_retry_flags(b
);
377 ret
= BIO_ctrl(ssl
->wbio
, cmd
, num
, ptr
);
378 BIO_copy_next_retry(b
);
381 if ((b
->next_bio
!= NULL
) && (b
->next_bio
!= ssl
->rbio
)) {
382 SSL_set_bio(ssl
, b
->next_bio
, b
->next_bio
);
383 CRYPTO_add(&b
->next_bio
->references
, 1,
388 /* Only detach if we are the BIO explicitly being popped */
390 /* Shouldn't happen in practice because the
391 * rbio and wbio are the same when pushed.
393 if (ssl
->rbio
!= ssl
->wbio
)
394 BIO_free_all(ssl
->wbio
);
395 if (b
->next_bio
!= NULL
)
396 CRYPTO_add(&b
->next_bio
->references
, -1, CRYPTO_LOCK_BIO
);
401 case BIO_C_DO_STATE_MACHINE
:
402 BIO_clear_retry_flags(b
);
405 ret
= (int)SSL_do_handshake(ssl
);
407 switch (SSL_get_error(ssl
, (int)ret
)) {
408 case SSL_ERROR_WANT_READ
:
410 BIO_FLAGS_READ
|BIO_FLAGS_SHOULD_RETRY
);
412 case SSL_ERROR_WANT_WRITE
:
414 BIO_FLAGS_WRITE
|BIO_FLAGS_SHOULD_RETRY
);
416 case SSL_ERROR_WANT_CONNECT
:
418 BIO_FLAGS_IO_SPECIAL
|BIO_FLAGS_SHOULD_RETRY
);
419 b
->retry_reason
= b
->next_bio
->retry_reason
;
427 if (((BIO_SSL
*)dbio
->ptr
)->ssl
!= NULL
)
428 SSL_free(((BIO_SSL
*)dbio
->ptr
)->ssl
);
429 ((BIO_SSL
*)dbio
->ptr
)->ssl
= SSL_dup(ssl
);
430 ((BIO_SSL
*)dbio
->ptr
)->renegotiate_count
=
431 ((BIO_SSL
*)b
->ptr
)->renegotiate_count
;
432 ((BIO_SSL
*)dbio
->ptr
)->byte_count
=
433 ((BIO_SSL
*)b
->ptr
)->byte_count
;
434 ((BIO_SSL
*)dbio
->ptr
)->renegotiate_timeout
=
435 ((BIO_SSL
*)b
->ptr
)->renegotiate_timeout
;
436 ((BIO_SSL
*)dbio
->ptr
)->last_time
=
437 ((BIO_SSL
*)b
->ptr
)->last_time
;
438 ret
= (((BIO_SSL
*)dbio
->ptr
)->ssl
!= NULL
);
441 ret
= BIO_ctrl(ssl
->rbio
, cmd
, num
, ptr
);
443 case BIO_CTRL_SET_CALLBACK
:
448 case BIO_CTRL_GET_CALLBACK
:
450 void (**fptr
)(const SSL
*xssl
, int type
, int val
);
452 fptr
= (void (**)(const SSL
*xssl
, int type
, int val
))
454 *fptr
= SSL_get_info_callback(ssl
);
458 ret
= BIO_ctrl(ssl
->rbio
, cmd
, num
, ptr
);
465 ssl_callback_ctrl(BIO
*b
, int cmd
, bio_info_cb
*fp
)
471 bs
= (BIO_SSL
*)b
->ptr
;
474 case BIO_CTRL_SET_CALLBACK
:
476 /* FIXME: setting this via a completely different prototype
477 seems like a crap idea */
478 SSL_set_info_callback(ssl
,
479 (void (*)(const SSL
*, int, int))fp
);
483 ret
= BIO_callback_ctrl(ssl
->rbio
, cmd
, fp
);
490 ssl_puts(BIO
*bp
, const char *str
)
495 ret
= BIO_write(bp
, str
, n
);
500 BIO_new_buffer_ssl_connect(SSL_CTX
*ctx
)
502 BIO
*ret
= NULL
, *buf
= NULL
, *ssl
= NULL
;
504 if ((buf
= BIO_new(BIO_f_buffer())) == NULL
)
506 if ((ssl
= BIO_new_ssl_connect(ctx
)) == NULL
)
508 if ((ret
= BIO_push(buf
, ssl
)) == NULL
)
519 BIO_new_ssl_connect(SSL_CTX
*ctx
)
521 BIO
*ret
= NULL
, *con
= NULL
, *ssl
= NULL
;
523 if ((con
= BIO_new(BIO_s_connect())) == NULL
)
525 if ((ssl
= BIO_new_ssl(ctx
, 1)) == NULL
)
527 if ((ret
= BIO_push(ssl
, con
)) == NULL
)
538 BIO_new_ssl(SSL_CTX
*ctx
, int client
)
543 if ((ret
= BIO_new(BIO_f_ssl())) == NULL
)
545 if ((ssl
= SSL_new(ctx
)) == NULL
)
549 SSL_set_connect_state(ssl
);
551 SSL_set_accept_state(ssl
);
553 BIO_set_ssl(ret
, ssl
, BIO_CLOSE
);
562 BIO_ssl_copy_session_id(BIO
*t
, BIO
*f
)
564 t
= BIO_find_type(t
, BIO_TYPE_SSL
);
565 f
= BIO_find_type(f
, BIO_TYPE_SSL
);
566 if ((t
== NULL
) || (f
== NULL
))
568 if ((((BIO_SSL
*)t
->ptr
)->ssl
== NULL
) ||
569 (((BIO_SSL
*)f
->ptr
)->ssl
== NULL
))
571 if (!SSL_copy_session_id(((BIO_SSL
*)t
->ptr
)->ssl
,
572 ((BIO_SSL
*)f
->ptr
)->ssl
))
578 BIO_ssl_shutdown(BIO
*b
)
583 if (b
->method
->type
== BIO_TYPE_SSL
) {
584 s
= ((BIO_SSL
*)b
->ptr
)->ssl
;