2016-05-18 02:52:22 +08:00
|
|
|
/*
|
2021-03-11 21:27:36 +08:00
|
|
|
* Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
|
1998-12-21 18:52:47 +08:00
|
|
|
*
|
2018-12-06 20:20:10 +08:00
|
|
|
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
2016-05-18 02:52:22 +08:00
|
|
|
* 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
|
1998-12-21 18:52:47 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <errno.h>
|
2019-09-28 06:45:40 +08:00
|
|
|
#include "bio_local.h"
|
2015-05-14 22:56:48 +08:00
|
|
|
#include "internal/cryptlib.h"
|
2017-06-01 13:46:33 +08:00
|
|
|
#include "internal/ktls.h"
|
2009-03-09 20:30:10 +08:00
|
|
|
|
|
|
|
#ifndef OPENSSL_NO_SOCK
|
|
|
|
|
2015-01-22 11:40:55 +08:00
|
|
|
# include <openssl/bio.h>
|
1998-12-21 18:52:47 +08:00
|
|
|
|
2015-01-22 11:40:55 +08:00
|
|
|
# ifdef WATT32
|
2016-05-10 20:41:19 +08:00
|
|
|
/* Watt-32 uses same names */
|
|
|
|
# undef sock_write
|
|
|
|
# undef sock_read
|
|
|
|
# undef sock_puts
|
|
|
|
# define sock_write SockWrite
|
2015-01-22 11:40:55 +08:00
|
|
|
# define sock_read SockRead
|
|
|
|
# define sock_puts SockPuts
|
|
|
|
# endif
|
2014-08-09 20:02:20 +08:00
|
|
|
|
2000-05-16 06:54:43 +08:00
|
|
|
static int sock_write(BIO *h, const char *buf, int num);
|
|
|
|
static int sock_read(BIO *h, char *buf, int size);
|
|
|
|
static int sock_puts(BIO *h, const char *str);
|
|
|
|
static long sock_ctrl(BIO *h, int cmd, long arg1, void *arg2);
|
1998-12-21 18:52:47 +08:00
|
|
|
static int sock_new(BIO *h);
|
|
|
|
static int sock_free(BIO *data);
|
|
|
|
int BIO_sock_should_retry(int s);
|
|
|
|
|
2016-03-20 00:32:14 +08:00
|
|
|
static const BIO_METHOD methods_sockp = {
|
2015-01-22 11:40:55 +08:00
|
|
|
BIO_TYPE_SOCKET,
|
|
|
|
"socket",
|
2016-10-20 22:18:39 +08:00
|
|
|
/* TODO: Convert to new style write function */
|
|
|
|
bwrite_conv,
|
2015-01-22 11:40:55 +08:00
|
|
|
sock_write,
|
2016-09-06 00:26:58 +08:00
|
|
|
/* TODO: Convert to new style read function */
|
|
|
|
bread_conv,
|
2015-01-22 11:40:55 +08:00
|
|
|
sock_read,
|
|
|
|
sock_puts,
|
2017-12-18 05:04:48 +08:00
|
|
|
NULL, /* sock_gets, */
|
2015-01-22 11:40:55 +08:00
|
|
|
sock_ctrl,
|
|
|
|
sock_new,
|
|
|
|
sock_free,
|
2017-12-18 05:04:48 +08:00
|
|
|
NULL, /* sock_callback_ctrl */
|
2015-01-22 11:40:55 +08:00
|
|
|
};
|
1998-12-21 18:52:47 +08:00
|
|
|
|
2016-03-20 00:32:14 +08:00
|
|
|
const BIO_METHOD *BIO_s_socket(void)
|
2015-01-22 11:40:55 +08:00
|
|
|
{
|
2017-10-17 22:04:09 +08:00
|
|
|
return &methods_sockp;
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
1998-12-21 18:52:47 +08:00
|
|
|
|
1999-04-20 05:31:43 +08:00
|
|
|
BIO *BIO_new_socket(int fd, int close_flag)
|
2015-01-22 11:40:55 +08:00
|
|
|
{
|
|
|
|
BIO *ret;
|
1998-12-21 18:52:47 +08:00
|
|
|
|
2015-01-22 11:40:55 +08:00
|
|
|
ret = BIO_new(BIO_s_socket());
|
|
|
|
if (ret == NULL)
|
2017-10-17 22:04:09 +08:00
|
|
|
return NULL;
|
2015-01-22 11:40:55 +08:00
|
|
|
BIO_set_fd(ret, fd, close_flag);
|
2017-06-01 13:46:33 +08:00
|
|
|
# ifndef OPENSSL_NO_KTLS
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* The new socket is created successfully regardless of ktls_enable.
|
|
|
|
* ktls_enable doesn't change any functionality of the socket, except
|
|
|
|
* changing the setsockopt to enable the processing of ktls_start.
|
|
|
|
* Thus, it is not a problem to call it for non-TLS sockets.
|
|
|
|
*/
|
|
|
|
ktls_enable(fd);
|
|
|
|
}
|
|
|
|
# endif
|
2017-10-17 22:04:09 +08:00
|
|
|
return ret;
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
1998-12-21 18:52:47 +08:00
|
|
|
|
1999-04-20 05:31:43 +08:00
|
|
|
static int sock_new(BIO *bi)
|
2015-01-22 11:40:55 +08:00
|
|
|
{
|
|
|
|
bi->init = 0;
|
|
|
|
bi->num = 0;
|
|
|
|
bi->ptr = NULL;
|
|
|
|
bi->flags = 0;
|
2017-10-09 19:05:58 +08:00
|
|
|
return 1;
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
1998-12-21 18:52:47 +08:00
|
|
|
|
1999-04-20 05:31:43 +08:00
|
|
|
static int sock_free(BIO *a)
|
2015-01-22 11:40:55 +08:00
|
|
|
{
|
|
|
|
if (a == NULL)
|
2017-10-17 22:04:09 +08:00
|
|
|
return 0;
|
2015-01-22 11:40:55 +08:00
|
|
|
if (a->shutdown) {
|
|
|
|
if (a->init) {
|
2016-03-03 05:12:46 +08:00
|
|
|
BIO_closesocket(a->num);
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
|
|
|
a->init = 0;
|
|
|
|
a->flags = 0;
|
|
|
|
}
|
2017-10-09 19:05:58 +08:00
|
|
|
return 1;
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
|
|
|
|
1999-04-20 05:31:43 +08:00
|
|
|
static int sock_read(BIO *b, char *out, int outl)
|
2015-01-22 11:40:55 +08:00
|
|
|
{
|
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
if (out != NULL) {
|
|
|
|
clear_socket_error();
|
2018-03-11 22:17:51 +08:00
|
|
|
# ifndef OPENSSL_NO_KTLS
|
|
|
|
if (BIO_get_ktls_recv(b))
|
|
|
|
ret = ktls_read_record(b->num, out, outl);
|
|
|
|
else
|
|
|
|
# endif
|
|
|
|
ret = readsocket(b->num, out, outl);
|
2015-01-22 11:40:55 +08:00
|
|
|
BIO_clear_retry_flags(b);
|
|
|
|
if (ret <= 0) {
|
|
|
|
if (BIO_sock_should_retry(ret))
|
|
|
|
BIO_set_retry_read(b);
|
2020-01-18 01:39:19 +08:00
|
|
|
else if (ret == 0)
|
|
|
|
b->flags |= BIO_FLAGS_IN_EOF;
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
|
|
|
}
|
2017-10-17 22:04:09 +08:00
|
|
|
return ret;
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
1998-12-21 18:52:47 +08:00
|
|
|
|
2000-05-16 06:54:43 +08:00
|
|
|
static int sock_write(BIO *b, const char *in, int inl)
|
2015-01-22 11:40:55 +08:00
|
|
|
{
|
2017-06-01 13:46:33 +08:00
|
|
|
int ret = 0;
|
2015-01-22 11:40:55 +08:00
|
|
|
|
|
|
|
clear_socket_error();
|
2017-06-01 13:46:33 +08:00
|
|
|
# ifndef OPENSSL_NO_KTLS
|
|
|
|
if (BIO_should_ktls_ctrl_msg_flag(b)) {
|
|
|
|
unsigned char record_type = (intptr_t)b->ptr;
|
|
|
|
ret = ktls_send_ctrl_message(b->num, record_type, in, inl);
|
|
|
|
if (ret >= 0) {
|
|
|
|
ret = inl;
|
|
|
|
BIO_clear_ktls_ctrl_msg_flag(b);
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
# endif
|
|
|
|
ret = writesocket(b->num, in, inl);
|
2015-01-22 11:40:55 +08:00
|
|
|
BIO_clear_retry_flags(b);
|
|
|
|
if (ret <= 0) {
|
|
|
|
if (BIO_sock_should_retry(ret))
|
|
|
|
BIO_set_retry_write(b);
|
|
|
|
}
|
2017-10-17 22:04:09 +08:00
|
|
|
return ret;
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
1998-12-21 18:52:47 +08:00
|
|
|
|
2000-05-16 06:54:43 +08:00
|
|
|
static long sock_ctrl(BIO *b, int cmd, long num, void *ptr)
|
2015-01-22 11:40:55 +08:00
|
|
|
{
|
|
|
|
long ret = 1;
|
|
|
|
int *ip;
|
2017-06-01 13:46:33 +08:00
|
|
|
# ifndef OPENSSL_NO_KTLS
|
2020-09-01 08:02:01 +08:00
|
|
|
ktls_crypto_info_t *crypto_info;
|
2017-06-01 13:46:33 +08:00
|
|
|
# endif
|
2015-01-22 11:40:55 +08:00
|
|
|
|
|
|
|
switch (cmd) {
|
|
|
|
case BIO_C_SET_FD:
|
|
|
|
sock_free(b);
|
|
|
|
b->num = *((int *)ptr);
|
|
|
|
b->shutdown = (int)num;
|
|
|
|
b->init = 1;
|
|
|
|
break;
|
|
|
|
case BIO_C_GET_FD:
|
|
|
|
if (b->init) {
|
|
|
|
ip = (int *)ptr;
|
|
|
|
if (ip != NULL)
|
|
|
|
*ip = b->num;
|
|
|
|
ret = b->num;
|
|
|
|
} else
|
|
|
|
ret = -1;
|
|
|
|
break;
|
|
|
|
case BIO_CTRL_GET_CLOSE:
|
|
|
|
ret = b->shutdown;
|
|
|
|
break;
|
|
|
|
case BIO_CTRL_SET_CLOSE:
|
|
|
|
b->shutdown = (int)num;
|
|
|
|
break;
|
|
|
|
case BIO_CTRL_DUP:
|
|
|
|
case BIO_CTRL_FLUSH:
|
|
|
|
ret = 1;
|
|
|
|
break;
|
2017-06-01 13:46:33 +08:00
|
|
|
# ifndef OPENSSL_NO_KTLS
|
2018-03-11 22:17:51 +08:00
|
|
|
case BIO_CTRL_SET_KTLS:
|
2020-09-01 08:02:01 +08:00
|
|
|
crypto_info = (ktls_crypto_info_t *)ptr;
|
2020-09-01 08:13:17 +08:00
|
|
|
ret = ktls_start(b->num, crypto_info, num);
|
2017-06-01 13:46:33 +08:00
|
|
|
if (ret)
|
2018-03-11 22:17:51 +08:00
|
|
|
BIO_set_ktls_flag(b, num);
|
2017-06-01 13:46:33 +08:00
|
|
|
break;
|
|
|
|
case BIO_CTRL_GET_KTLS_SEND:
|
2021-01-30 02:34:49 +08:00
|
|
|
return BIO_should_ktls_flag(b, 1) != 0;
|
2018-03-11 22:17:51 +08:00
|
|
|
case BIO_CTRL_GET_KTLS_RECV:
|
2021-01-30 02:34:49 +08:00
|
|
|
return BIO_should_ktls_flag(b, 0) != 0;
|
2018-03-11 22:17:51 +08:00
|
|
|
case BIO_CTRL_SET_KTLS_TX_SEND_CTRL_MSG:
|
2017-06-01 13:46:33 +08:00
|
|
|
BIO_set_ktls_ctrl_msg_flag(b);
|
|
|
|
b->ptr = (void *)num;
|
|
|
|
ret = 0;
|
|
|
|
break;
|
2018-03-11 22:17:51 +08:00
|
|
|
case BIO_CTRL_CLEAR_KTLS_TX_CTRL_MSG:
|
2017-06-01 13:46:33 +08:00
|
|
|
BIO_clear_ktls_ctrl_msg_flag(b);
|
|
|
|
ret = 0;
|
|
|
|
break;
|
|
|
|
# endif
|
2020-01-18 01:39:19 +08:00
|
|
|
case BIO_CTRL_EOF:
|
2021-01-30 02:34:49 +08:00
|
|
|
ret = (b->flags & BIO_FLAGS_IN_EOF) != 0;
|
2020-01-18 01:39:19 +08:00
|
|
|
break;
|
2015-01-22 11:40:55 +08:00
|
|
|
default:
|
|
|
|
ret = 0;
|
|
|
|
break;
|
|
|
|
}
|
2017-10-17 22:04:09 +08:00
|
|
|
return ret;
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
1998-12-21 18:52:47 +08:00
|
|
|
|
2000-05-16 06:54:43 +08:00
|
|
|
static int sock_puts(BIO *bp, const char *str)
|
2015-01-22 11:40:55 +08:00
|
|
|
{
|
|
|
|
int n, ret;
|
1998-12-21 18:52:47 +08:00
|
|
|
|
2015-01-22 11:40:55 +08:00
|
|
|
n = strlen(str);
|
|
|
|
ret = sock_write(bp, str, n);
|
2017-10-17 22:04:09 +08:00
|
|
|
return ret;
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
1998-12-21 18:52:47 +08:00
|
|
|
|
1999-04-20 05:31:43 +08:00
|
|
|
int BIO_sock_should_retry(int i)
|
2015-01-22 11:40:55 +08:00
|
|
|
{
|
|
|
|
int err;
|
1998-12-21 18:56:39 +08:00
|
|
|
|
2015-01-22 11:40:55 +08:00
|
|
|
if ((i == 0) || (i == -1)) {
|
|
|
|
err = get_last_socket_error();
|
1998-12-21 18:52:47 +08:00
|
|
|
|
2017-10-17 22:04:09 +08:00
|
|
|
return BIO_sock_non_fatal_error(err);
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
2017-10-17 22:04:09 +08:00
|
|
|
return 0;
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
1998-12-21 18:52:47 +08:00
|
|
|
|
1999-04-20 05:31:43 +08:00
|
|
|
int BIO_sock_non_fatal_error(int err)
|
2015-01-22 11:40:55 +08:00
|
|
|
{
|
|
|
|
switch (err) {
|
2016-03-18 00:53:11 +08:00
|
|
|
# if defined(OPENSSL_SYS_WINDOWS)
|
2015-01-22 11:40:55 +08:00
|
|
|
# if defined(WSAEWOULDBLOCK)
|
|
|
|
case WSAEWOULDBLOCK:
|
|
|
|
# endif
|
1998-12-21 18:52:47 +08:00
|
|
|
# endif
|
|
|
|
|
2015-01-22 11:40:55 +08:00
|
|
|
# ifdef EWOULDBLOCK
|
|
|
|
# ifdef WSAEWOULDBLOCK
|
|
|
|
# if WSAEWOULDBLOCK != EWOULDBLOCK
|
|
|
|
case EWOULDBLOCK:
|
|
|
|
# endif
|
|
|
|
# else
|
|
|
|
case EWOULDBLOCK:
|
1998-12-21 19:00:56 +08:00
|
|
|
# endif
|
1998-12-21 18:52:47 +08:00
|
|
|
# endif
|
|
|
|
|
2015-01-22 11:40:55 +08:00
|
|
|
# if defined(ENOTCONN)
|
|
|
|
case ENOTCONN:
|
|
|
|
# endif
|
|
|
|
|
|
|
|
# ifdef EINTR
|
|
|
|
case EINTR:
|
|
|
|
# endif
|
|
|
|
|
|
|
|
# ifdef EAGAIN
|
|
|
|
# if EWOULDBLOCK != EAGAIN
|
|
|
|
case EAGAIN:
|
1998-12-21 18:52:47 +08:00
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
|
2015-01-22 11:40:55 +08:00
|
|
|
# ifdef EPROTO
|
|
|
|
case EPROTO:
|
|
|
|
# endif
|
1998-12-21 18:56:39 +08:00
|
|
|
|
2015-01-22 11:40:55 +08:00
|
|
|
# ifdef EINPROGRESS
|
|
|
|
case EINPROGRESS:
|
|
|
|
# endif
|
1998-12-21 18:52:47 +08:00
|
|
|
|
2015-01-22 11:40:55 +08:00
|
|
|
# ifdef EALREADY
|
|
|
|
case EALREADY:
|
1998-12-21 18:52:47 +08:00
|
|
|
# endif
|
2017-10-09 19:05:58 +08:00
|
|
|
return 1;
|
2015-01-22 11:40:55 +08:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2017-10-17 22:04:09 +08:00
|
|
|
return 0;
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* #ifndef OPENSSL_NO_SOCK */
|