]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/bio/bio_lib.c
Add Haiku support.
[thirdparty/openssl.git] / crypto / bio / bio_lib.c
CommitLineData
58964a49 1/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
d02b48c6
RE
2 * All rights reserved.
3 *
4 * This package is an SSL implementation written
5 * by Eric Young (eay@cryptsoft.com).
6 * The implementation was written so as to conform with Netscapes SSL.
0f113f3e 7 *
d02b48c6
RE
8 * This library is free for commercial and non-commercial use as long as
9 * the following conditions are aheared to. The following conditions
10 * apply to all code found in this distribution, be it the RC4, RSA,
11 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
12 * included with this distribution is covered by the same copyright terms
13 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
0f113f3e 14 *
d02b48c6
RE
15 * Copyright remains Eric Young's, and as such any Copyright notices in
16 * the code are not to be removed.
17 * If this package is used in a product, Eric Young should be given attribution
18 * as the author of the parts of the library used.
19 * This can be in the form of a textual message at program startup or
20 * in documentation (online or textual) provided with the package.
0f113f3e 21 *
d02b48c6
RE
22 * Redistribution and use in source and binary forms, with or without
23 * modification, are permitted provided that the following conditions
24 * are met:
25 * 1. Redistributions of source code must retain the copyright
26 * notice, this list of conditions and the following disclaimer.
27 * 2. Redistributions in binary form must reproduce the above copyright
28 * notice, this list of conditions and the following disclaimer in the
29 * documentation and/or other materials provided with the distribution.
30 * 3. All advertising materials mentioning features or use of this software
31 * must display the following acknowledgement:
32 * "This product includes cryptographic software written by
33 * Eric Young (eay@cryptsoft.com)"
34 * The word 'cryptographic' can be left out if the rouines from the library
35 * being used are not cryptographic related :-).
0f113f3e 36 * 4. If you include any Windows specific code (or a derivative thereof) from
d02b48c6
RE
37 * the apps directory (application code) you must include an acknowledgement:
38 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
0f113f3e 39 *
d02b48c6
RE
40 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
41 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
43 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
44 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
45 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
46 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
48 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
49 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
50 * SUCH DAMAGE.
0f113f3e 51 *
d02b48c6
RE
52 * The licence and distribution terms for any publically available version or
53 * derivative of this code cannot be changed. i.e. this code cannot simply be
54 * copied and put under another distribution licence
55 * [including the GNU Public Licence.]
56 */
57
58#include <stdio.h>
59#include <errno.h>
ec577822 60#include <openssl/crypto.h>
a146ae55 61#include "bio_lcl.h"
b39fc560 62#include "internal/cryptlib.h"
ec577822 63#include <openssl/stack.h>
58964a49 64
04f6b0fd 65BIO *BIO_new(const BIO_METHOD *method)
0f113f3e 66{
b4faea50 67 BIO *ret = OPENSSL_malloc(sizeof(*ret));
0f113f3e 68
0f113f3e
MC
69 if (ret == NULL) {
70 BIOerr(BIO_F_BIO_NEW, ERR_R_MALLOC_FAILURE);
71 return (NULL);
72 }
73 if (!BIO_set(ret, method)) {
74 OPENSSL_free(ret);
75 ret = NULL;
76 }
77 return (ret);
78}
d02b48c6 79
04f6b0fd 80int BIO_set(BIO *bio, const BIO_METHOD *method)
0f113f3e
MC
81{
82 bio->method = method;
83 bio->callback = NULL;
84 bio->cb_arg = NULL;
85 bio->init = 0;
86 bio->shutdown = 1;
87 bio->flags = 0;
88 bio->retry_reason = 0;
89 bio->num = 0;
90 bio->ptr = NULL;
91 bio->prev_bio = NULL;
92 bio->next_bio = NULL;
93 bio->references = 1;
94 bio->num_read = 0L;
95 bio->num_write = 0L;
96 CRYPTO_new_ex_data(CRYPTO_EX_INDEX_BIO, bio, &bio->ex_data);
fb46be03
AG
97
98 bio->lock = CRYPTO_THREAD_lock_new();
99 if (bio->lock == NULL) {
100 CRYPTO_free_ex_data(CRYPTO_EX_INDEX_BIO, bio, &bio->ex_data);
101 return 0;
102 }
103
104 if (method->create != NULL) {
0f113f3e
MC
105 if (!method->create(bio)) {
106 CRYPTO_free_ex_data(CRYPTO_EX_INDEX_BIO, bio, &bio->ex_data);
fb46be03
AG
107 CRYPTO_THREAD_lock_free(bio->lock);
108 return 0;
0f113f3e 109 }
fb46be03
AG
110 }
111
112 return 1;
0f113f3e 113}
d02b48c6 114
6b691a5c 115int BIO_free(BIO *a)
0f113f3e
MC
116{
117 int i;
d02b48c6 118
0f113f3e 119 if (a == NULL)
fb46be03
AG
120 return 0;
121
122 if (CRYPTO_atomic_add(&a->references, -1, &i, a->lock) <= 0)
123 return 0;
d02b48c6 124
f3f1cf84 125 REF_PRINT_COUNT("BIO", a);
0f113f3e 126 if (i > 0)
fb46be03 127 return 1;
f3f1cf84 128 REF_ASSERT_ISNT(i < 0);
0f113f3e
MC
129 if ((a->callback != NULL) &&
130 ((i = (int)a->callback(a, BIO_CB_FREE, NULL, 0, 0L, 1L)) <= 0))
fb46be03 131 return i;
d02b48c6 132
0f113f3e 133 CRYPTO_free_ex_data(CRYPTO_EX_INDEX_BIO, a, &a->ex_data);
58964a49 134
fb46be03
AG
135 CRYPTO_THREAD_lock_free(a->lock);
136
0f113f3e
MC
137 if ((a->method != NULL) && (a->method->destroy != NULL))
138 a->method->destroy(a);
fb46be03 139
0f113f3e 140 OPENSSL_free(a);
fb46be03
AG
141
142 return 1;
0f113f3e 143}
d02b48c6 144
a146ae55
MC
145void BIO_set_data(BIO *a, void *ptr)
146{
147 a->ptr = ptr;
148}
149
150void *BIO_get_data(BIO *a)
151{
152 return a->ptr;
153}
154
155void BIO_set_init(BIO *a, int init)
156{
157 a->init = init;
158}
159
160int BIO_get_init(BIO *a)
161{
162 return a->init;
163}
164
165void BIO_set_shutdown(BIO *a, int shut)
166{
167 a->shutdown = shut;
168}
169
170int BIO_get_shutdown(BIO *a)
171{
172 return a->shutdown;
173}
174
371acb22 175void BIO_vfree(BIO *a)
0f113f3e
MC
176{
177 BIO_free(a);
178}
371acb22 179
fb46be03
AG
180int BIO_up_ref(BIO *a)
181{
182 int i;
183
184 if (CRYPTO_atomic_add(&a->references, 1, &i, a->lock) <= 0)
185 return 0;
186
187 REF_PRINT_COUNT("BIO", a);
188 REF_ASSERT_ISNT(i < 2);
189 return ((i > 1) ? 1 : 0);
190}
191
7806f3dd 192void BIO_clear_flags(BIO *b, int flags)
0f113f3e
MC
193{
194 b->flags &= ~flags;
195}
196
197int BIO_test_flags(const BIO *b, int flags)
198{
199 return (b->flags & flags);
200}
201
202void BIO_set_flags(BIO *b, int flags)
203{
204 b->flags |= flags;
205}
206
207long (*BIO_get_callback(const BIO *b)) (struct bio_st *, int, const char *,
208 int, long, long) {
209 return b->callback;
210}
211
212void BIO_set_callback(BIO *b,
213 long (*cb) (struct bio_st *, int, const char *, int,
214 long, long))
215{
216 b->callback = cb;
217}
7806f3dd
NL
218
219void BIO_set_callback_arg(BIO *b, char *arg)
0f113f3e
MC
220{
221 b->cb_arg = arg;
222}
7806f3dd 223
0f113f3e
MC
224char *BIO_get_callback_arg(const BIO *b)
225{
226 return b->cb_arg;
227}
7806f3dd 228
0f113f3e
MC
229const char *BIO_method_name(const BIO *b)
230{
231 return b->method->name;
232}
7806f3dd
NL
233
234int BIO_method_type(const BIO *b)
0f113f3e
MC
235{
236 return b->method->type;
237}
7806f3dd 238
61f5b6f3 239int BIO_read(BIO *b, void *out, int outl)
0f113f3e
MC
240{
241 int i;
242 long (*cb) (BIO *, int, const char *, int, long, long);
d02b48c6 243
0f113f3e
MC
244 if ((b == NULL) || (b->method == NULL) || (b->method->bread == NULL)) {
245 BIOerr(BIO_F_BIO_READ, BIO_R_UNSUPPORTED_METHOD);
246 return (-2);
247 }
d02b48c6 248
0f113f3e
MC
249 cb = b->callback;
250 if ((cb != NULL) &&
251 ((i = (int)cb(b, BIO_CB_READ, out, outl, 0L, 1L)) <= 0))
252 return (i);
d02b48c6 253
0f113f3e
MC
254 if (!b->init) {
255 BIOerr(BIO_F_BIO_READ, BIO_R_UNINITIALIZED);
256 return (-2);
257 }
d02b48c6 258
0f113f3e 259 i = b->method->bread(b, out, outl);
dfeab068 260
0f113f3e 261 if (i > 0)
b8b12aad 262 b->num_read += (uint64_t)i;
d02b48c6 263
0f113f3e
MC
264 if (cb != NULL)
265 i = (int)cb(b, BIO_CB_READ | BIO_CB_RETURN, out, outl, 0L, (long)i);
266 return (i);
267}
d02b48c6 268
6343829a 269int BIO_write(BIO *b, const void *in, int inl)
0f113f3e
MC
270{
271 int i;
272 long (*cb) (BIO *, int, const char *, int, long, long);
58964a49 273
0f113f3e
MC
274 if (b == NULL)
275 return (0);
d02b48c6 276
0f113f3e
MC
277 cb = b->callback;
278 if ((b->method == NULL) || (b->method->bwrite == NULL)) {
279 BIOerr(BIO_F_BIO_WRITE, BIO_R_UNSUPPORTED_METHOD);
280 return (-2);
281 }
d02b48c6 282
0f113f3e
MC
283 if ((cb != NULL) &&
284 ((i = (int)cb(b, BIO_CB_WRITE, in, inl, 0L, 1L)) <= 0))
285 return (i);
d02b48c6 286
0f113f3e
MC
287 if (!b->init) {
288 BIOerr(BIO_F_BIO_WRITE, BIO_R_UNINITIALIZED);
289 return (-2);
290 }
d02b48c6 291
0f113f3e 292 i = b->method->bwrite(b, in, inl);
dfeab068 293
0f113f3e 294 if (i > 0)
b8b12aad 295 b->num_write += (uint64_t)i;
d02b48c6 296
0f113f3e
MC
297 if (cb != NULL)
298 i = (int)cb(b, BIO_CB_WRITE | BIO_CB_RETURN, in, inl, 0L, (long)i);
299 return (i);
300}
d02b48c6 301
6b691a5c 302int BIO_puts(BIO *b, const char *in)
0f113f3e
MC
303{
304 int i;
305 long (*cb) (BIO *, int, const char *, int, long, long);
d02b48c6 306
0f113f3e
MC
307 if ((b == NULL) || (b->method == NULL) || (b->method->bputs == NULL)) {
308 BIOerr(BIO_F_BIO_PUTS, BIO_R_UNSUPPORTED_METHOD);
309 return (-2);
310 }
d02b48c6 311
0f113f3e 312 cb = b->callback;
58964a49 313
0f113f3e
MC
314 if ((cb != NULL) && ((i = (int)cb(b, BIO_CB_PUTS, in, 0, 0L, 1L)) <= 0))
315 return (i);
d02b48c6 316
0f113f3e
MC
317 if (!b->init) {
318 BIOerr(BIO_F_BIO_PUTS, BIO_R_UNINITIALIZED);
319 return (-2);
320 }
d02b48c6 321
0f113f3e 322 i = b->method->bputs(b, in);
d02b48c6 323
0f113f3e 324 if (i > 0)
b8b12aad 325 b->num_write += (uint64_t)i;
7d95ff76 326
0f113f3e
MC
327 if (cb != NULL)
328 i = (int)cb(b, BIO_CB_PUTS | BIO_CB_RETURN, in, 0, 0L, (long)i);
329 return (i);
330}
d02b48c6 331
6b691a5c 332int BIO_gets(BIO *b, char *in, int inl)
0f113f3e
MC
333{
334 int i;
335 long (*cb) (BIO *, int, const char *, int, long, long);
336
337 if ((b == NULL) || (b->method == NULL) || (b->method->bgets == NULL)) {
338 BIOerr(BIO_F_BIO_GETS, BIO_R_UNSUPPORTED_METHOD);
339 return (-2);
340 }
341
342 cb = b->callback;
343
344 if ((cb != NULL) && ((i = (int)cb(b, BIO_CB_GETS, in, inl, 0L, 1L)) <= 0))
345 return (i);
346
347 if (!b->init) {
348 BIOerr(BIO_F_BIO_GETS, BIO_R_UNINITIALIZED);
349 return (-2);
350 }
351
352 i = b->method->bgets(b, in, inl);
353
354 if (cb != NULL)
355 i = (int)cb(b, BIO_CB_GETS | BIO_CB_RETURN, in, inl, 0L, (long)i);
356 return (i);
357}
358
359int BIO_indent(BIO *b, int indent, int max)
360{
361 if (indent < 0)
362 indent = 0;
363 if (indent > max)
364 indent = max;
365 while (indent--)
366 if (BIO_puts(b, " ") != 1)
367 return 0;
368 return 1;
369}
54a656ef 370
6b691a5c 371long BIO_int_ctrl(BIO *b, int cmd, long larg, int iarg)
0f113f3e
MC
372{
373 int i;
d02b48c6 374
0f113f3e
MC
375 i = iarg;
376 return (BIO_ctrl(b, cmd, larg, (char *)&i));
377}
d02b48c6 378
417be660 379void *BIO_ptr_ctrl(BIO *b, int cmd, long larg)
0f113f3e 380{
417be660 381 void *p = NULL;
58964a49 382
0f113f3e
MC
383 if (BIO_ctrl(b, cmd, larg, (char *)&p) <= 0)
384 return (NULL);
385 else
386 return (p);
387}
58964a49 388
95d29597 389long BIO_ctrl(BIO *b, int cmd, long larg, void *parg)
0f113f3e
MC
390{
391 long ret;
392 long (*cb) (BIO *, int, const char *, int, long, long);
d02b48c6 393
0f113f3e
MC
394 if (b == NULL)
395 return (0);
d02b48c6 396
0f113f3e
MC
397 if ((b->method == NULL) || (b->method->ctrl == NULL)) {
398 BIOerr(BIO_F_BIO_CTRL, BIO_R_UNSUPPORTED_METHOD);
399 return (-2);
400 }
d02b48c6 401
0f113f3e 402 cb = b->callback;
58964a49 403
0f113f3e
MC
404 if ((cb != NULL) &&
405 ((ret = cb(b, BIO_CB_CTRL, parg, cmd, larg, 1L)) <= 0))
406 return (ret);
d02b48c6 407
0f113f3e 408 ret = b->method->ctrl(b, cmd, larg, parg);
d02b48c6 409
0f113f3e
MC
410 if (cb != NULL)
411 ret = cb(b, BIO_CB_CTRL | BIO_CB_RETURN, parg, cmd, larg, ret);
412 return (ret);
413}
d02b48c6 414
0f113f3e
MC
415long BIO_callback_ctrl(BIO *b, int cmd,
416 void (*fp) (struct bio_st *, int, const char *, int,
417 long, long))
418{
419 long ret;
420 long (*cb) (BIO *, int, const char *, int, long, long);
d3442bc7 421
0f113f3e
MC
422 if (b == NULL)
423 return (0);
d3442bc7 424
0f113f3e
MC
425 if ((b->method == NULL) || (b->method->callback_ctrl == NULL)) {
426 BIOerr(BIO_F_BIO_CALLBACK_CTRL, BIO_R_UNSUPPORTED_METHOD);
427 return (-2);
428 }
d3442bc7 429
0f113f3e 430 cb = b->callback;
d3442bc7 431
0f113f3e
MC
432 if ((cb != NULL) &&
433 ((ret = cb(b, BIO_CB_CTRL, (void *)&fp, cmd, 0, 1L)) <= 0))
434 return (ret);
d3442bc7 435
0f113f3e 436 ret = b->method->callback_ctrl(b, cmd, fp);
d3442bc7 437
0f113f3e
MC
438 if (cb != NULL)
439 ret = cb(b, BIO_CB_CTRL | BIO_CB_RETURN, (void *)&fp, cmd, 0, ret);
440 return (ret);
441}
d3442bc7 442
0f113f3e
MC
443/*
444 * It is unfortunate to duplicate in functions what the BIO_(w)pending macros
95d29597 445 * do; but those macros have inappropriate return type, and for interfacing
0f113f3e
MC
446 * from other programming languages, C macros aren't much of a help anyway.
447 */
95d29597 448size_t BIO_ctrl_pending(BIO *bio)
0f113f3e
MC
449{
450 return BIO_ctrl(bio, BIO_CTRL_PENDING, 0, NULL);
451}
95d29597
BM
452
453size_t BIO_ctrl_wpending(BIO *bio)
0f113f3e
MC
454{
455 return BIO_ctrl(bio, BIO_CTRL_WPENDING, 0, NULL);
456}
95d29597 457
d02b48c6 458/* put the 'bio' on the end of b's list of operators */
6b691a5c 459BIO *BIO_push(BIO *b, BIO *bio)
0f113f3e
MC
460{
461 BIO *lb;
462
463 if (b == NULL)
464 return (bio);
465 lb = b;
466 while (lb->next_bio != NULL)
467 lb = lb->next_bio;
468 lb->next_bio = bio;
469 if (bio != NULL)
470 bio->prev_bio = lb;
471 /* called to do internal processing */
472 BIO_ctrl(b, BIO_CTRL_PUSH, 0, lb);
473 return (b);
474}
d02b48c6
RE
475
476/* Remove the first and return the rest */
6b691a5c 477BIO *BIO_pop(BIO *b)
0f113f3e
MC
478{
479 BIO *ret;
d02b48c6 480
0f113f3e
MC
481 if (b == NULL)
482 return (NULL);
483 ret = b->next_bio;
d02b48c6 484
0f113f3e 485 BIO_ctrl(b, BIO_CTRL_POP, 0, b);
5d780bab 486
0f113f3e
MC
487 if (b->prev_bio != NULL)
488 b->prev_bio->next_bio = b->next_bio;
489 if (b->next_bio != NULL)
490 b->next_bio->prev_bio = b->prev_bio;
d02b48c6 491
0f113f3e
MC
492 b->next_bio = NULL;
493 b->prev_bio = NULL;
494 return (ret);
495}
d02b48c6 496
6b691a5c 497BIO *BIO_get_retry_BIO(BIO *bio, int *reason)
0f113f3e
MC
498{
499 BIO *b, *last;
500
501 b = last = bio;
502 for (;;) {
503 if (!BIO_should_retry(b))
504 break;
505 last = b;
506 b = b->next_bio;
507 if (b == NULL)
508 break;
509 }
510 if (reason != NULL)
511 *reason = last->retry_reason;
512 return (last);
513}
d02b48c6 514
6b691a5c 515int BIO_get_retry_reason(BIO *bio)
0f113f3e
MC
516{
517 return (bio->retry_reason);
518}
d02b48c6 519
a146ae55
MC
520void BIO_set_retry_reason(BIO *bio, int reason)
521{
522 bio->retry_reason = reason;
523}
524
6b691a5c 525BIO *BIO_find_type(BIO *bio, int type)
0f113f3e
MC
526{
527 int mt, mask;
528
cc99bfa7 529 if (bio == NULL)
0f113f3e
MC
530 return NULL;
531 mask = type & 0xff;
532 do {
533 if (bio->method != NULL) {
534 mt = bio->method->type;
535
536 if (!mask) {
537 if (mt & type)
538 return (bio);
539 } else if (mt == type)
540 return (bio);
541 }
542 bio = bio->next_bio;
543 } while (bio != NULL);
544 return (NULL);
545}
d02b48c6 546
cfd3bb17 547BIO *BIO_next(BIO *b)
0f113f3e 548{
cc99bfa7 549 if (b == NULL)
0f113f3e
MC
550 return NULL;
551 return b->next_bio;
552}
cfd3bb17 553
a146ae55
MC
554void BIO_set_next(BIO *b, BIO *next)
555{
556 b->next_bio = next;
557}
558
6b691a5c 559void BIO_free_all(BIO *bio)
0f113f3e
MC
560{
561 BIO *b;
562 int ref;
563
564 while (bio != NULL) {
565 b = bio;
566 ref = b->references;
567 bio = bio->next_bio;
568 BIO_free(b);
569 /* Since ref count > 1, don't free anyone else. */
570 if (ref > 1)
571 break;
572 }
573}
d02b48c6 574
6b691a5c 575BIO *BIO_dup_chain(BIO *in)
0f113f3e
MC
576{
577 BIO *ret = NULL, *eoc = NULL, *bio, *new_bio;
578
579 for (bio = in; bio != NULL; bio = bio->next_bio) {
580 if ((new_bio = BIO_new(bio->method)) == NULL)
581 goto err;
582 new_bio->callback = bio->callback;
583 new_bio->cb_arg = bio->cb_arg;
584 new_bio->init = bio->init;
585 new_bio->shutdown = bio->shutdown;
586 new_bio->flags = bio->flags;
587
588 /* This will let SSL_s_sock() work with stdin/stdout */
589 new_bio->num = bio->num;
590
591 if (!BIO_dup_state(bio, (char *)new_bio)) {
592 BIO_free(new_bio);
593 goto err;
594 }
595
596 /* copy app data */
597 if (!CRYPTO_dup_ex_data(CRYPTO_EX_INDEX_BIO, &new_bio->ex_data,
aec54108
MC
598 &bio->ex_data)) {
599 BIO_free(new_bio);
0f113f3e 600 goto err;
aec54108 601 }
0f113f3e
MC
602
603 if (ret == NULL) {
604 eoc = new_bio;
605 ret = eoc;
606 } else {
607 BIO_push(eoc, new_bio);
608 eoc = new_bio;
609 }
610 }
611 return (ret);
612 err:
aec54108
MC
613 BIO_free_all(ret);
614
0f113f3e
MC
615 return (NULL);
616}
d02b48c6 617
6b691a5c 618void BIO_copy_next_retry(BIO *b)
0f113f3e
MC
619{
620 BIO_set_flags(b, BIO_get_retry_flags(b->next_bio));
621 b->retry_reason = b->next_bio->retry_reason;
622}
d02b48c6 623
dd9d233e 624int BIO_set_ex_data(BIO *bio, int idx, void *data)
0f113f3e
MC
625{
626 return (CRYPTO_set_ex_data(&(bio->ex_data), idx, data));
627}
58964a49 628
dd9d233e 629void *BIO_get_ex_data(BIO *bio, int idx)
0f113f3e
MC
630{
631 return (CRYPTO_get_ex_data(&(bio->ex_data), idx));
632}
58964a49 633
b8b12aad 634uint64_t BIO_number_read(BIO *bio)
c3ed3b6e 635{
0f113f3e
MC
636 if (bio)
637 return bio->num_read;
638 return 0;
c3ed3b6e
DSH
639}
640
b8b12aad 641uint64_t BIO_number_written(BIO *bio)
c3ed3b6e 642{
0f113f3e
MC
643 if (bio)
644 return bio->num_write;
645 return 0;
c3ed3b6e 646}
ff234405
MC
647
648
649void bio_cleanup(void)
650{
651#ifndef OPENSSL_NO_SOCK
652 bio_sock_cleanup_int();
653 CRYPTO_THREAD_lock_free(bio_lookup_lock);
654 bio_lookup_lock = NULL;
655#endif
656}