2016-05-18 02:52:22 +08:00
|
|
|
/*
|
|
|
|
* Copyright 2016 The OpenSSL Project Authors. All Rights Reserved.
|
2016-03-22 19:34:32 +08:00
|
|
|
*
|
2016-05-18 02:52:22 +08:00
|
|
|
* Licensed under the OpenSSL license (the "License"). You may not use
|
|
|
|
* this file except in compliance with the License. You can obtain a copy
|
|
|
|
* in the file LICENSE in the source distribution or at
|
|
|
|
* https://www.openssl.org/source/license.html
|
2016-03-22 19:34:32 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "bio_lcl.h"
|
2016-08-21 07:06:43 +08:00
|
|
|
#include <internal/thread_once.h>
|
2016-03-22 19:34:32 +08:00
|
|
|
|
2016-08-21 07:06:43 +08:00
|
|
|
CRYPTO_RWLOCK *bio_type_lock = NULL;
|
|
|
|
static CRYPTO_ONCE bio_type_init = CRYPTO_ONCE_STATIC_INIT;
|
|
|
|
|
|
|
|
DEFINE_RUN_ONCE_STATIC(do_bio_type_init)
|
|
|
|
{
|
|
|
|
bio_type_lock = CRYPTO_THREAD_lock_new();
|
|
|
|
return bio_type_lock != NULL;
|
|
|
|
}
|
2016-08-20 09:04:41 +08:00
|
|
|
|
|
|
|
int BIO_get_new_index()
|
|
|
|
{
|
2016-08-21 07:06:43 +08:00
|
|
|
static int bio_count = BIO_TYPE_START;
|
2016-08-20 09:04:41 +08:00
|
|
|
int newval;
|
|
|
|
|
2016-08-21 07:06:43 +08:00
|
|
|
if (!RUN_ONCE(&bio_type_init, do_bio_type_init)) {
|
|
|
|
BIOerr(BIO_F_BIO_GET_NEW_INDEX, ERR_R_MALLOC_FAILURE);
|
|
|
|
return -1;
|
|
|
|
}
|
2016-08-20 09:04:41 +08:00
|
|
|
if (!CRYPTO_atomic_add(&bio_count, 1, &newval, bio_type_lock))
|
|
|
|
return -1;
|
|
|
|
return newval;
|
|
|
|
}
|
|
|
|
|
2016-03-22 19:34:32 +08:00
|
|
|
BIO_METHOD *BIO_meth_new(int type, const char *name)
|
|
|
|
{
|
|
|
|
BIO_METHOD *biom = OPENSSL_zalloc(sizeof(BIO_METHOD));
|
|
|
|
|
|
|
|
if (biom != NULL) {
|
|
|
|
biom->type = type;
|
|
|
|
biom->name = name;
|
|
|
|
}
|
|
|
|
return biom;
|
|
|
|
}
|
|
|
|
|
|
|
|
void BIO_meth_free(BIO_METHOD *biom)
|
|
|
|
{
|
|
|
|
OPENSSL_free(biom);
|
|
|
|
}
|
|
|
|
|
|
|
|
int (*BIO_meth_get_write(BIO_METHOD *biom)) (BIO *, const char *, int)
|
2016-10-20 22:18:39 +08:00
|
|
|
{
|
|
|
|
return biom->bwrite_old;
|
|
|
|
}
|
|
|
|
|
|
|
|
int (*BIO_meth_get_write_ex(BIO_METHOD *biom)) (BIO *, const char *, size_t,
|
|
|
|
size_t *)
|
2016-03-22 19:34:32 +08:00
|
|
|
{
|
|
|
|
return biom->bwrite;
|
|
|
|
}
|
|
|
|
|
2016-10-20 22:18:39 +08:00
|
|
|
/* Conversion for old style bwrite to new style */
|
|
|
|
int bwrite_conv(BIO *bio, const char *in, size_t inl, size_t *written)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (inl > INT_MAX)
|
2016-10-21 21:35:26 +08:00
|
|
|
inl = INT_MAX;
|
2016-10-20 22:18:39 +08:00
|
|
|
|
|
|
|
ret = bio->method->bwrite_old(bio, in, (int)inl);
|
|
|
|
|
|
|
|
if (ret <= 0) {
|
|
|
|
*written = 0;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
*written = (size_t)ret;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2016-03-22 19:34:32 +08:00
|
|
|
int BIO_meth_set_write(BIO_METHOD *biom,
|
2016-04-04 06:11:20 +08:00
|
|
|
int (*bwrite) (BIO *, const char *, int))
|
2016-03-22 19:34:32 +08:00
|
|
|
{
|
2016-10-20 22:18:39 +08:00
|
|
|
biom->bwrite_old = bwrite;
|
|
|
|
biom->bwrite = bwrite_conv;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int BIO_meth_set_write_ex(BIO_METHOD *biom,
|
|
|
|
int (*bwrite) (BIO *, const char *, size_t, size_t *))
|
|
|
|
{
|
|
|
|
biom->bwrite_old = NULL;
|
2016-04-04 06:11:20 +08:00
|
|
|
biom->bwrite = bwrite;
|
2016-03-22 19:34:32 +08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2016-03-22 17:21:29 +08:00
|
|
|
int (*BIO_meth_get_read(BIO_METHOD *biom)) (BIO *, char *, int)
|
2016-09-06 00:26:58 +08:00
|
|
|
{
|
|
|
|
return biom->bread_old;
|
|
|
|
}
|
|
|
|
|
|
|
|
int (*BIO_meth_get_read_ex(BIO_METHOD *biom)) (BIO *, char *, size_t, size_t *)
|
2016-03-22 19:34:32 +08:00
|
|
|
{
|
|
|
|
return biom->bread;
|
|
|
|
}
|
|
|
|
|
2016-09-06 00:26:58 +08:00
|
|
|
/* Conversion for old style bread to new style */
|
|
|
|
int bread_conv(BIO *bio, char *out, size_t outl, size_t *read)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (outl > INT_MAX)
|
2016-10-21 07:09:02 +08:00
|
|
|
outl = INT_MAX;
|
2016-09-06 00:26:58 +08:00
|
|
|
|
|
|
|
ret = bio->method->bread_old(bio, out, (int)outl);
|
|
|
|
|
|
|
|
if (ret <= 0) {
|
|
|
|
*read = 0;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
*read = (size_t)ret;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2016-03-22 19:34:32 +08:00
|
|
|
int BIO_meth_set_read(BIO_METHOD *biom,
|
2016-04-04 06:11:20 +08:00
|
|
|
int (*bread) (BIO *, char *, int))
|
2016-09-06 00:26:58 +08:00
|
|
|
{
|
|
|
|
biom->bread_old = bread;
|
|
|
|
biom->bread = bread_conv;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int BIO_meth_set_read_ex(BIO_METHOD *biom,
|
|
|
|
int (*bread) (BIO *, char *, size_t, size_t *))
|
2016-03-22 19:34:32 +08:00
|
|
|
{
|
2016-10-20 22:18:39 +08:00
|
|
|
biom->bread_old = NULL;
|
2016-04-04 06:11:20 +08:00
|
|
|
biom->bread = bread;
|
2016-03-22 19:34:32 +08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int (*BIO_meth_get_puts(BIO_METHOD *biom)) (BIO *, const char *)
|
|
|
|
{
|
|
|
|
return biom->bputs;
|
|
|
|
}
|
|
|
|
|
|
|
|
int BIO_meth_set_puts(BIO_METHOD *biom,
|
2016-04-04 06:11:20 +08:00
|
|
|
int (*bputs) (BIO *, const char *))
|
2016-03-22 19:34:32 +08:00
|
|
|
{
|
2016-04-04 06:11:20 +08:00
|
|
|
biom->bputs = bputs;
|
2016-03-22 19:34:32 +08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int (*BIO_meth_get_gets(BIO_METHOD *biom)) (BIO *, char *, int)
|
|
|
|
{
|
2016-03-22 17:21:29 +08:00
|
|
|
return biom->bgets;
|
2016-03-22 19:34:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int BIO_meth_set_gets(BIO_METHOD *biom,
|
2016-04-04 06:11:20 +08:00
|
|
|
int (*bgets) (BIO *, char *, int))
|
2016-03-22 19:34:32 +08:00
|
|
|
{
|
2016-04-04 06:11:20 +08:00
|
|
|
biom->bgets = bgets;
|
2016-03-22 19:34:32 +08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
long (*BIO_meth_get_ctrl(BIO_METHOD *biom)) (BIO *, int, long, void *)
|
|
|
|
{
|
|
|
|
return biom->ctrl;
|
|
|
|
}
|
|
|
|
|
|
|
|
int BIO_meth_set_ctrl(BIO_METHOD *biom,
|
|
|
|
long (*ctrl) (BIO *, int, long, void *))
|
|
|
|
{
|
|
|
|
biom->ctrl = ctrl;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2016-03-22 17:21:29 +08:00
|
|
|
int (*BIO_meth_get_create(BIO_METHOD *biom)) (BIO *)
|
2016-03-22 19:34:32 +08:00
|
|
|
{
|
|
|
|
return biom->create;
|
|
|
|
}
|
|
|
|
|
|
|
|
int BIO_meth_set_create(BIO_METHOD *biom, int (*create) (BIO *))
|
|
|
|
{
|
|
|
|
biom->create = create;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int (*BIO_meth_get_destroy(BIO_METHOD *biom)) (BIO *)
|
|
|
|
{
|
|
|
|
return biom->destroy;
|
|
|
|
}
|
|
|
|
|
|
|
|
int BIO_meth_set_destroy(BIO_METHOD *biom, int (*destroy) (BIO *))
|
|
|
|
{
|
|
|
|
biom->destroy = destroy;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
long (*BIO_meth_get_callback_ctrl(BIO_METHOD *biom)) (BIO *, int, bio_info_cb *)
|
|
|
|
{
|
|
|
|
return biom->callback_ctrl;
|
|
|
|
}
|
|
|
|
|
|
|
|
int BIO_meth_set_callback_ctrl(BIO_METHOD *biom,
|
|
|
|
long (*callback_ctrl) (BIO *, int,
|
|
|
|
bio_info_cb *))
|
|
|
|
{
|
|
|
|
biom->callback_ctrl = callback_ctrl;
|
|
|
|
return 1;
|
|
|
|
}
|