2016-05-18 02:52:22 +08:00
|
|
|
/*
|
2022-05-03 18:52:38 +08:00
|
|
|
* Copyright 2016-2022 The OpenSSL Project Authors. All Rights Reserved.
|
2016-02-03 04:04:54 +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
|
2016-02-03 04:04:54 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
2019-09-28 06:45:40 +08:00
|
|
|
#include "bio_local.h"
|
2019-11-20 06:12:56 +08:00
|
|
|
#include "internal/ktls.h"
|
2021-09-09 04:23:04 +08:00
|
|
|
#include "internal/bio_tfo.h"
|
2016-02-03 04:04:54 +08:00
|
|
|
|
|
|
|
#include <openssl/err.h>
|
|
|
|
|
|
|
|
#ifndef OPENSSL_NO_SOCK
|
|
|
|
# ifdef SO_MAXCONN
|
|
|
|
# define MAX_LISTEN SO_MAXCONN
|
|
|
|
# elif defined(SOMAXCONN)
|
|
|
|
# define MAX_LISTEN SOMAXCONN
|
|
|
|
# else
|
|
|
|
# define MAX_LISTEN 32
|
|
|
|
# endif
|
|
|
|
|
|
|
|
/*-
|
|
|
|
* BIO_socket - create a socket
|
|
|
|
* @domain: the socket domain (AF_INET, AF_INET6, AF_UNIX, ...)
|
|
|
|
* @socktype: the socket type (SOCK_STEAM, SOCK_DGRAM)
|
|
|
|
* @protocol: the protocol to use (IPPROTO_TCP, IPPROTO_UDP)
|
|
|
|
* @options: BIO socket options (currently unused)
|
|
|
|
*
|
|
|
|
* Creates a socket. This should be called before calling any
|
|
|
|
* of BIO_connect and BIO_listen.
|
|
|
|
*
|
|
|
|
* Returns the file descriptor on success or INVALID_SOCKET on failure. On
|
|
|
|
* failure errno is set, and a status is added to the OpenSSL error stack.
|
|
|
|
*/
|
|
|
|
int BIO_socket(int domain, int socktype, int protocol, int options)
|
|
|
|
{
|
|
|
|
int sock = -1;
|
|
|
|
|
|
|
|
if (BIO_sock_init() != 1)
|
|
|
|
return INVALID_SOCKET;
|
|
|
|
|
|
|
|
sock = socket(domain, socktype, protocol);
|
|
|
|
if (sock == -1) {
|
2019-08-01 03:24:20 +08:00
|
|
|
ERR_raise_data(ERR_LIB_SYS, get_last_socket_error(),
|
|
|
|
"calling socket()");
|
2020-11-04 19:23:19 +08:00
|
|
|
ERR_raise(ERR_LIB_BIO, BIO_R_UNABLE_TO_CREATE_SOCKET);
|
2016-02-03 04:04:54 +08:00
|
|
|
return INVALID_SOCKET;
|
|
|
|
}
|
|
|
|
|
|
|
|
return sock;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*-
|
|
|
|
* BIO_connect - connect to an address
|
|
|
|
* @sock: the socket to connect with
|
|
|
|
* @addr: the address to connect to
|
|
|
|
* @options: BIO socket options
|
|
|
|
*
|
|
|
|
* Connects to the address using the given socket and options.
|
|
|
|
*
|
|
|
|
* Options can be a combination of the following:
|
|
|
|
* - BIO_SOCK_KEEPALIVE: enable regularly sending keep-alive messages.
|
|
|
|
* - BIO_SOCK_NONBLOCK: Make the socket non-blocking.
|
|
|
|
* - BIO_SOCK_NODELAY: don't delay small messages.
|
2021-09-09 04:23:04 +08:00
|
|
|
* - BIO_SOCK_TFO: use TCP Fast Open
|
2016-02-03 04:04:54 +08:00
|
|
|
*
|
|
|
|
* options holds BIO socket options that can be used
|
|
|
|
* You should call this for every address returned by BIO_lookup
|
2016-08-06 01:56:58 +08:00
|
|
|
* until the connection is successful.
|
2016-02-03 04:04:54 +08:00
|
|
|
*
|
|
|
|
* Returns 1 on success or 0 on failure. On failure errno is set
|
|
|
|
* and an error status is added to the OpenSSL error stack.
|
|
|
|
*/
|
|
|
|
int BIO_connect(int sock, const BIO_ADDR *addr, int options)
|
|
|
|
{
|
2017-11-12 05:23:12 +08:00
|
|
|
const int on = 1;
|
2016-02-03 04:04:54 +08:00
|
|
|
|
|
|
|
if (sock == -1) {
|
2020-11-04 19:23:19 +08:00
|
|
|
ERR_raise(ERR_LIB_BIO, BIO_R_INVALID_SOCKET);
|
2016-02-03 04:04:54 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!BIO_socket_nbio(sock, (options & BIO_SOCK_NONBLOCK) != 0))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (options & BIO_SOCK_KEEPALIVE) {
|
2017-11-12 05:23:12 +08:00
|
|
|
if (setsockopt(sock, SOL_SOCKET, SO_KEEPALIVE,
|
|
|
|
(const void *)&on, sizeof(on)) != 0) {
|
2019-08-01 03:24:20 +08:00
|
|
|
ERR_raise_data(ERR_LIB_SYS, get_last_socket_error(),
|
|
|
|
"calling setsockopt()");
|
2020-11-04 19:23:19 +08:00
|
|
|
ERR_raise(ERR_LIB_BIO, BIO_R_UNABLE_TO_KEEPALIVE);
|
2016-02-03 04:04:54 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (options & BIO_SOCK_NODELAY) {
|
2017-11-12 05:23:12 +08:00
|
|
|
if (setsockopt(sock, IPPROTO_TCP, TCP_NODELAY,
|
|
|
|
(const void *)&on, sizeof(on)) != 0) {
|
2019-08-01 03:24:20 +08:00
|
|
|
ERR_raise_data(ERR_LIB_SYS, get_last_socket_error(),
|
|
|
|
"calling setsockopt()");
|
2020-11-04 19:23:19 +08:00
|
|
|
ERR_raise(ERR_LIB_BIO, BIO_R_UNABLE_TO_NODELAY);
|
2016-02-03 04:04:54 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
2021-09-09 04:23:04 +08:00
|
|
|
if (options & BIO_SOCK_TFO) {
|
|
|
|
# if defined(OSSL_TFO_CLIENT_FLAG)
|
|
|
|
# if defined(OSSL_TFO_SYSCTL_CLIENT)
|
|
|
|
int enabled = 0;
|
|
|
|
size_t enabledlen = sizeof(enabled);
|
|
|
|
|
|
|
|
/* Later FreeBSD */
|
|
|
|
if (sysctlbyname(OSSL_TFO_SYSCTL_CLIENT, &enabled, &enabledlen, NULL, 0) < 0) {
|
|
|
|
ERR_raise(ERR_LIB_BIO, BIO_R_TFO_NO_KERNEL_SUPPORT);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
/* Need to check for client flag */
|
|
|
|
if (!(enabled & OSSL_TFO_CLIENT_FLAG)) {
|
|
|
|
ERR_raise(ERR_LIB_BIO, BIO_R_TFO_DISABLED);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
# elif defined(OSSL_TFO_SYSCTL)
|
|
|
|
int enabled = 0;
|
|
|
|
size_t enabledlen = sizeof(enabled);
|
|
|
|
|
|
|
|
/* macOS */
|
|
|
|
if (sysctlbyname(OSSL_TFO_SYSCTL, &enabled, &enabledlen, NULL, 0) < 0) {
|
|
|
|
ERR_raise(ERR_LIB_BIO, BIO_R_TFO_NO_KERNEL_SUPPORT);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
/* Need to check for client flag */
|
|
|
|
if (!(enabled & OSSL_TFO_CLIENT_FLAG)) {
|
|
|
|
ERR_raise(ERR_LIB_BIO, BIO_R_TFO_DISABLED);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
# if defined(OSSL_TFO_CONNECTX)
|
|
|
|
sa_endpoints_t sae;
|
|
|
|
|
|
|
|
memset(&sae, 0, sizeof(sae));
|
|
|
|
sae.sae_dstaddr = BIO_ADDR_sockaddr(addr);
|
|
|
|
sae.sae_dstaddrlen = BIO_ADDR_sockaddr_size(addr);
|
|
|
|
if (connectx(sock, &sae, SAE_ASSOCID_ANY,
|
|
|
|
CONNECT_DATA_IDEMPOTENT | CONNECT_RESUME_ON_READ_WRITE,
|
|
|
|
NULL, 0, NULL, NULL) == -1) {
|
|
|
|
if (!BIO_sock_should_retry(-1)) {
|
|
|
|
ERR_raise_data(ERR_LIB_SYS, get_last_socket_error(),
|
|
|
|
"calling connectx()");
|
|
|
|
ERR_raise(ERR_LIB_BIO, BIO_R_CONNECT_ERROR);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
# endif
|
|
|
|
# if defined(OSSL_TFO_CLIENT_SOCKOPT)
|
|
|
|
if (setsockopt(sock, IPPROTO_TCP, OSSL_TFO_CLIENT_SOCKOPT,
|
|
|
|
(const void *)&on, sizeof(on)) != 0) {
|
|
|
|
ERR_raise_data(ERR_LIB_SYS, get_last_socket_error(),
|
|
|
|
"calling setsockopt()");
|
|
|
|
ERR_raise(ERR_LIB_BIO, BIO_R_UNABLE_TO_TFO);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
# endif
|
|
|
|
# if defined(OSSL_TFO_DO_NOT_CONNECT)
|
|
|
|
return 1;
|
|
|
|
# endif
|
|
|
|
}
|
2016-02-03 04:04:54 +08:00
|
|
|
|
|
|
|
if (connect(sock, BIO_ADDR_sockaddr(addr),
|
|
|
|
BIO_ADDR_sockaddr_size(addr)) == -1) {
|
2016-03-12 00:47:42 +08:00
|
|
|
if (!BIO_sock_should_retry(-1)) {
|
2019-08-01 03:24:20 +08:00
|
|
|
ERR_raise_data(ERR_LIB_SYS, get_last_socket_error(),
|
|
|
|
"calling connect()");
|
2020-11-04 19:23:19 +08:00
|
|
|
ERR_raise(ERR_LIB_BIO, BIO_R_CONNECT_ERROR);
|
2016-03-12 00:47:42 +08:00
|
|
|
}
|
2016-02-03 04:04:54 +08:00
|
|
|
return 0;
|
|
|
|
}
|
Fix KTLS with BIO_new_connect
When a socket connection is done using BIO_new_connect,
the ktls_enable is done too early, and fails with ENOTCONN.
Therefore the KLTS ioctl will fail later with ENOPROTOOPT.
Fix that by doing the ktls_enable after the connection
succeeded, not when the socket is created as that will
always fail.
One example where this happens is doit_localhost in
test/ssl_old_test.c, and therefore, contrary to the expectation
the -client_ktls option did never enable the client KTLS
connection, but this was not noticed, because there was no
diagnostic output, and it was only visible with strace output.
Also enhanced the ssl_old_test -client_ktls/-server_ktls
options together with -v option to print a summary line
if and how KTLS was negotiated in server and client.
While I am already there adjusted the usage info of
the -s_cert, -s_key commands, and allow -time to print the
timings of ktls connections.
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/18318)
2022-05-16 13:06:42 +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(sock);
|
|
|
|
# endif
|
2016-02-03 04:04:54 +08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2018-02-08 17:49:02 +08:00
|
|
|
/*-
|
|
|
|
* BIO_bind - bind socket to address
|
|
|
|
* @sock: the socket to set
|
|
|
|
* @addr: local address to bind to
|
|
|
|
* @options: BIO socket options
|
|
|
|
*
|
|
|
|
* Binds to the address using the given socket and options.
|
|
|
|
*
|
|
|
|
* Options can be a combination of the following:
|
|
|
|
* - BIO_SOCK_REUSEADDR: Try to reuse the address and port combination
|
|
|
|
* for a recently closed port.
|
|
|
|
*
|
|
|
|
* When restarting the program it could be that the port is still in use. If
|
|
|
|
* you set to BIO_SOCK_REUSEADDR option it will try to reuse the port anyway.
|
|
|
|
* It's recommended that you use this.
|
|
|
|
*/
|
|
|
|
int BIO_bind(int sock, const BIO_ADDR *addr, int options)
|
|
|
|
{
|
2018-09-12 06:34:00 +08:00
|
|
|
# ifndef OPENSSL_SYS_WINDOWS
|
2018-02-08 17:49:02 +08:00
|
|
|
int on = 1;
|
2018-09-12 06:34:00 +08:00
|
|
|
# endif
|
2018-02-08 17:49:02 +08:00
|
|
|
|
|
|
|
if (sock == -1) {
|
2020-11-04 19:23:19 +08:00
|
|
|
ERR_raise(ERR_LIB_BIO, BIO_R_INVALID_SOCKET);
|
2018-02-08 17:49:02 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
# ifndef OPENSSL_SYS_WINDOWS
|
|
|
|
/*
|
|
|
|
* SO_REUSEADDR has different behavior on Windows than on
|
|
|
|
* other operating systems, don't set it there.
|
|
|
|
*/
|
|
|
|
if (options & BIO_SOCK_REUSEADDR) {
|
|
|
|
if (setsockopt(sock, SOL_SOCKET, SO_REUSEADDR,
|
|
|
|
(const void *)&on, sizeof(on)) != 0) {
|
2019-08-01 03:24:20 +08:00
|
|
|
ERR_raise_data(ERR_LIB_SYS, get_last_socket_error(),
|
|
|
|
"calling setsockopt()");
|
2020-11-04 19:23:19 +08:00
|
|
|
ERR_raise(ERR_LIB_BIO, BIO_R_UNABLE_TO_REUSEADDR);
|
2018-02-08 17:49:02 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
# endif
|
|
|
|
|
|
|
|
if (bind(sock, BIO_ADDR_sockaddr(addr), BIO_ADDR_sockaddr_size(addr)) != 0) {
|
2021-01-21 19:36:58 +08:00
|
|
|
ERR_raise_data(ERR_LIB_SYS, get_last_socket_error() /* may be 0 */,
|
2019-08-01 03:24:20 +08:00
|
|
|
"calling bind()");
|
2020-11-04 19:23:19 +08:00
|
|
|
ERR_raise(ERR_LIB_BIO, BIO_R_UNABLE_TO_BIND_SOCKET);
|
2018-02-08 17:49:02 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2016-02-03 04:04:54 +08:00
|
|
|
/*-
|
|
|
|
* BIO_listen - Creates a listen socket
|
|
|
|
* @sock: the socket to listen with
|
|
|
|
* @addr: local address to bind to
|
|
|
|
* @options: BIO socket options
|
|
|
|
*
|
|
|
|
* Binds to the address using the given socket and options, then
|
|
|
|
* starts listening for incoming connections.
|
|
|
|
*
|
|
|
|
* Options can be a combination of the following:
|
|
|
|
* - BIO_SOCK_KEEPALIVE: enable regularly sending keep-alive messages.
|
|
|
|
* - BIO_SOCK_NONBLOCK: Make the socket non-blocking.
|
|
|
|
* - BIO_SOCK_NODELAY: don't delay small messages.
|
|
|
|
* - BIO_SOCK_REUSEADDR: Try to reuse the address and port combination
|
|
|
|
* for a recently closed port.
|
|
|
|
* - BIO_SOCK_V6_ONLY: When creating an IPv6 socket, make it listen only
|
|
|
|
* for IPv6 addresses and not IPv4 addresses mapped to IPv6.
|
2021-09-09 04:23:04 +08:00
|
|
|
* - BIO_SOCK_TFO: accept TCP fast open (set TCP_FASTOPEN)
|
2016-02-03 04:04:54 +08:00
|
|
|
*
|
|
|
|
* It's recommended that you set up both an IPv6 and IPv4 listen socket, and
|
|
|
|
* then check both for new clients that connect to it. You want to set up
|
|
|
|
* the socket as non-blocking in that case since else it could hang.
|
|
|
|
*
|
|
|
|
* Not all operating systems support IPv4 addresses on an IPv6 socket, and for
|
|
|
|
* others it's an option. If you pass the BIO_LISTEN_V6_ONLY it will try to
|
|
|
|
* create the IPv6 sockets to only listen for IPv6 connection.
|
|
|
|
*
|
|
|
|
* It could be that the first BIO_listen() call will listen to all the IPv6
|
|
|
|
* and IPv4 addresses and that then trying to bind to the IPv4 address will
|
|
|
|
* fail. We can't tell the difference between already listening ourself to
|
|
|
|
* it and someone else listening to it when failing and errno is EADDRINUSE, so
|
|
|
|
* it's recommended to not give an error in that case if the first call was
|
2016-08-06 01:56:58 +08:00
|
|
|
* successful.
|
2016-02-03 04:04:54 +08:00
|
|
|
*
|
|
|
|
* When restarting the program it could be that the port is still in use. If
|
|
|
|
* you set to BIO_SOCK_REUSEADDR option it will try to reuse the port anyway.
|
|
|
|
* It's recommended that you use this.
|
|
|
|
*/
|
|
|
|
int BIO_listen(int sock, const BIO_ADDR *addr, int options)
|
|
|
|
{
|
|
|
|
int on = 1;
|
|
|
|
int socktype;
|
|
|
|
socklen_t socktype_len = sizeof(socktype);
|
|
|
|
|
|
|
|
if (sock == -1) {
|
2020-11-04 19:23:19 +08:00
|
|
|
ERR_raise(ERR_LIB_BIO, BIO_R_INVALID_SOCKET);
|
2016-02-03 04:04:54 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-11-12 05:23:12 +08:00
|
|
|
if (getsockopt(sock, SOL_SOCKET, SO_TYPE,
|
|
|
|
(void *)&socktype, &socktype_len) != 0
|
2016-02-03 04:04:54 +08:00
|
|
|
|| socktype_len != sizeof(socktype)) {
|
2019-08-01 03:24:20 +08:00
|
|
|
ERR_raise_data(ERR_LIB_SYS, get_last_socket_error(),
|
|
|
|
"calling getsockopt()");
|
2020-11-04 19:23:19 +08:00
|
|
|
ERR_raise(ERR_LIB_BIO, BIO_R_GETTING_SOCKTYPE);
|
2016-02-03 04:04:54 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!BIO_socket_nbio(sock, (options & BIO_SOCK_NONBLOCK) != 0))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (options & BIO_SOCK_KEEPALIVE) {
|
2017-11-12 05:23:12 +08:00
|
|
|
if (setsockopt(sock, SOL_SOCKET, SO_KEEPALIVE,
|
|
|
|
(const void *)&on, sizeof(on)) != 0) {
|
2019-08-01 03:24:20 +08:00
|
|
|
ERR_raise_data(ERR_LIB_SYS, get_last_socket_error(),
|
|
|
|
"calling setsockopt()");
|
2020-11-04 19:23:19 +08:00
|
|
|
ERR_raise(ERR_LIB_BIO, BIO_R_UNABLE_TO_KEEPALIVE);
|
2016-02-03 04:04:54 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (options & BIO_SOCK_NODELAY) {
|
2017-11-12 05:23:12 +08:00
|
|
|
if (setsockopt(sock, IPPROTO_TCP, TCP_NODELAY,
|
|
|
|
(const void *)&on, sizeof(on)) != 0) {
|
2019-08-01 03:24:20 +08:00
|
|
|
ERR_raise_data(ERR_LIB_SYS, get_last_socket_error(),
|
|
|
|
"calling setsockopt()");
|
2020-11-04 19:23:19 +08:00
|
|
|
ERR_raise(ERR_LIB_BIO, BIO_R_UNABLE_TO_NODELAY);
|
2016-02-03 04:04:54 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-24 02:37:03 +08:00
|
|
|
/* On OpenBSD it is always IPv6 only with IPv6 sockets thus read-only */
|
2021-04-24 23:13:26 +08:00
|
|
|
# if defined(IPV6_V6ONLY) && !defined(__OpenBSD__)
|
2018-01-25 22:16:18 +08:00
|
|
|
if (BIO_ADDR_family(addr) == AF_INET6) {
|
|
|
|
/*
|
|
|
|
* Note: Windows default of IPV6_V6ONLY is ON, and Linux is OFF.
|
|
|
|
* Therefore we always have to use setsockopt here.
|
|
|
|
*/
|
|
|
|
on = options & BIO_SOCK_V6_ONLY ? 1 : 0;
|
2017-11-12 05:23:12 +08:00
|
|
|
if (setsockopt(sock, IPPROTO_IPV6, IPV6_V6ONLY,
|
|
|
|
(const void *)&on, sizeof(on)) != 0) {
|
2019-08-01 03:24:20 +08:00
|
|
|
ERR_raise_data(ERR_LIB_SYS, get_last_socket_error(),
|
|
|
|
"calling setsockopt()");
|
2020-11-04 19:23:19 +08:00
|
|
|
ERR_raise(ERR_LIB_BIO, BIO_R_LISTEN_V6_ONLY);
|
2016-02-03 04:04:54 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
# endif
|
|
|
|
|
2018-02-08 17:49:02 +08:00
|
|
|
if (!BIO_bind(sock, addr, options))
|
2016-02-03 04:04:54 +08:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (socktype != SOCK_DGRAM && listen(sock, MAX_LISTEN) == -1) {
|
2019-08-01 03:24:20 +08:00
|
|
|
ERR_raise_data(ERR_LIB_SYS, get_last_socket_error(),
|
|
|
|
"calling listen()");
|
2020-11-04 19:23:19 +08:00
|
|
|
ERR_raise(ERR_LIB_BIO, BIO_R_UNABLE_TO_LISTEN_SOCKET);
|
2016-02-03 04:04:54 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-09-09 04:23:04 +08:00
|
|
|
# if defined(OSSL_TFO_SERVER_SOCKOPT)
|
|
|
|
/*
|
|
|
|
* Must do it explicitly after listen() for macOS, still
|
|
|
|
* works fine on other OS's
|
|
|
|
*/
|
|
|
|
if ((options & BIO_SOCK_TFO) && socktype != SOCK_DGRAM) {
|
|
|
|
int q = OSSL_TFO_SERVER_SOCKOPT_VALUE;
|
|
|
|
# if defined(OSSL_TFO_CLIENT_FLAG)
|
|
|
|
# if defined(OSSL_TFO_SYSCTL_SERVER)
|
|
|
|
int enabled = 0;
|
|
|
|
size_t enabledlen = sizeof(enabled);
|
|
|
|
|
|
|
|
/* Later FreeBSD */
|
|
|
|
if (sysctlbyname(OSSL_TFO_SYSCTL_SERVER, &enabled, &enabledlen, NULL, 0) < 0) {
|
|
|
|
ERR_raise(ERR_LIB_BIO, BIO_R_TFO_NO_KERNEL_SUPPORT);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
/* Need to check for server flag */
|
|
|
|
if (!(enabled & OSSL_TFO_SERVER_FLAG)) {
|
|
|
|
ERR_raise(ERR_LIB_BIO, BIO_R_TFO_DISABLED);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
# elif defined(OSSL_TFO_SYSCTL)
|
|
|
|
int enabled = 0;
|
|
|
|
size_t enabledlen = sizeof(enabled);
|
|
|
|
|
|
|
|
/* Early FreeBSD, macOS */
|
|
|
|
if (sysctlbyname(OSSL_TFO_SYSCTL, &enabled, &enabledlen, NULL, 0) < 0) {
|
|
|
|
ERR_raise(ERR_LIB_BIO, BIO_R_TFO_NO_KERNEL_SUPPORT);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
/* Need to check for server flag */
|
|
|
|
if (!(enabled & OSSL_TFO_SERVER_FLAG)) {
|
|
|
|
ERR_raise(ERR_LIB_BIO, BIO_R_TFO_DISABLED);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
if (setsockopt(sock, IPPROTO_TCP, OSSL_TFO_SERVER_SOCKOPT,
|
|
|
|
(void *)&q, sizeof(q)) < 0) {
|
|
|
|
ERR_raise_data(ERR_LIB_SYS, get_last_socket_error(),
|
|
|
|
"calling setsockopt()");
|
|
|
|
ERR_raise(ERR_LIB_BIO, BIO_R_UNABLE_TO_TFO);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
# endif
|
|
|
|
|
2016-02-03 04:04:54 +08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*-
|
|
|
|
* BIO_accept_ex - Accept new incoming connections
|
|
|
|
* @sock: the listening socket
|
|
|
|
* @addr: the BIO_ADDR to store the peer address in
|
|
|
|
* @options: BIO socket options, applied on the accepted socket.
|
|
|
|
*
|
|
|
|
*/
|
2016-02-15 04:50:13 +08:00
|
|
|
int BIO_accept_ex(int accept_sock, BIO_ADDR *addr_, int options)
|
2016-02-03 04:04:54 +08:00
|
|
|
{
|
|
|
|
socklen_t len;
|
|
|
|
int accepted_sock;
|
2016-02-15 04:50:13 +08:00
|
|
|
BIO_ADDR locaddr;
|
|
|
|
BIO_ADDR *addr = addr_ == NULL ? &locaddr : addr_;
|
2016-02-03 04:04:54 +08:00
|
|
|
|
|
|
|
len = sizeof(*addr);
|
|
|
|
accepted_sock = accept(accept_sock,
|
|
|
|
BIO_ADDR_sockaddr_noconst(addr), &len);
|
|
|
|
if (accepted_sock == -1) {
|
2016-03-12 00:47:42 +08:00
|
|
|
if (!BIO_sock_should_retry(accepted_sock)) {
|
2019-08-01 03:24:20 +08:00
|
|
|
ERR_raise_data(ERR_LIB_SYS, get_last_socket_error(),
|
|
|
|
"calling accept()");
|
2020-11-04 19:23:19 +08:00
|
|
|
ERR_raise(ERR_LIB_BIO, BIO_R_ACCEPT_ERROR);
|
2016-03-12 00:47:42 +08:00
|
|
|
}
|
2016-02-03 04:04:54 +08:00
|
|
|
return INVALID_SOCKET;
|
|
|
|
}
|
|
|
|
|
2016-04-27 19:46:51 +08:00
|
|
|
if (!BIO_socket_nbio(accepted_sock, (options & BIO_SOCK_NONBLOCK) != 0)) {
|
|
|
|
closesocket(accepted_sock);
|
2016-02-03 04:04:54 +08:00
|
|
|
return INVALID_SOCKET;
|
2016-04-27 19:46:51 +08:00
|
|
|
}
|
2016-02-03 04:04:54 +08:00
|
|
|
|
|
|
|
return accepted_sock;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*-
|
|
|
|
* BIO_closesocket - Close a socket
|
|
|
|
* @sock: the socket to close
|
|
|
|
*/
|
|
|
|
int BIO_closesocket(int sock)
|
|
|
|
{
|
2021-06-29 06:01:13 +08:00
|
|
|
if (sock < 0 || closesocket(sock) < 0)
|
2016-02-03 04:04:54 +08:00
|
|
|
return 0;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
#endif
|