2016-05-18 02:52:22 +08:00
|
|
|
/*
|
2022-05-03 18:52:38 +08:00
|
|
|
* Copyright 1995-2022 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"
|
2021-09-09 04:23:04 +08:00
|
|
|
#include "internal/bio_tfo.h"
|
2019-11-20 06:12:56 +08:00
|
|
|
#include "internal/ktls.h"
|
2016-02-03 04:42:45 +08:00
|
|
|
|
2016-02-03 06:40:34 +08:00
|
|
|
#ifndef OPENSSL_NO_SOCK
|
2015-01-22 11:40:55 +08:00
|
|
|
|
|
|
|
typedef struct bio_connect_st {
|
|
|
|
int state;
|
2016-02-03 06:40:34 +08:00
|
|
|
int connect_family;
|
2015-01-22 11:40:55 +08:00
|
|
|
char *param_hostname;
|
2016-02-03 06:40:34 +08:00
|
|
|
char *param_service;
|
|
|
|
int connect_mode;
|
2019-11-20 06:12:56 +08:00
|
|
|
# ifndef OPENSSL_NO_KTLS
|
|
|
|
unsigned char record_type;
|
|
|
|
# endif
|
2021-09-09 04:23:04 +08:00
|
|
|
int tfo_first;
|
2016-02-03 06:40:34 +08:00
|
|
|
|
|
|
|
BIO_ADDRINFO *addr_first;
|
|
|
|
const BIO_ADDRINFO *addr_iter;
|
2015-01-22 11:40:55 +08:00
|
|
|
/*
|
|
|
|
* int socket; this will be kept in bio->num so that it is compatible
|
|
|
|
* with the bss_sock bio
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
* called when the connection is initially made callback(BIO,state,ret);
|
|
|
|
* The callback should return 'ret'. state is for compatibility with the
|
|
|
|
* ssl info_callback
|
|
|
|
*/
|
2017-12-16 02:33:48 +08:00
|
|
|
BIO_info_cb *info_callback;
|
2015-01-22 11:40:55 +08:00
|
|
|
} BIO_CONNECT;
|
1998-12-21 18:52:47 +08:00
|
|
|
|
2000-05-16 06:54:43 +08:00
|
|
|
static int conn_write(BIO *h, const char *buf, int num);
|
|
|
|
static int conn_read(BIO *h, char *buf, int size);
|
|
|
|
static int conn_puts(BIO *h, const char *str);
|
2021-07-09 06:31:21 +08:00
|
|
|
static int conn_gets(BIO *h, char *buf, int size);
|
2000-05-16 06:54:43 +08:00
|
|
|
static long conn_ctrl(BIO *h, int cmd, long arg1, void *arg2);
|
1998-12-21 18:52:47 +08:00
|
|
|
static int conn_new(BIO *h);
|
|
|
|
static int conn_free(BIO *data);
|
2017-12-16 02:33:48 +08:00
|
|
|
static long conn_callback_ctrl(BIO *h, int cmd, BIO_info_cb *);
|
1998-12-21 18:52:47 +08:00
|
|
|
|
|
|
|
static int conn_state(BIO *b, BIO_CONNECT *c);
|
|
|
|
static void conn_close_socket(BIO *data);
|
2015-01-22 11:40:55 +08:00
|
|
|
BIO_CONNECT *BIO_CONNECT_new(void);
|
1998-12-21 18:52:47 +08:00
|
|
|
void BIO_CONNECT_free(BIO_CONNECT *a);
|
|
|
|
|
2016-02-03 06:40:34 +08:00
|
|
|
#define BIO_CONN_S_BEFORE 1
|
|
|
|
#define BIO_CONN_S_GET_ADDR 2
|
|
|
|
#define BIO_CONN_S_CREATE_SOCKET 3
|
|
|
|
#define BIO_CONN_S_CONNECT 4
|
|
|
|
#define BIO_CONN_S_OK 5
|
|
|
|
#define BIO_CONN_S_BLOCKED_CONNECT 6
|
2018-11-13 22:17:21 +08:00
|
|
|
#define BIO_CONN_S_CONNECT_ERROR 7
|
2016-02-03 06:40:34 +08:00
|
|
|
|
2016-03-20 00:32:14 +08:00
|
|
|
static const BIO_METHOD methods_connectp = {
|
2015-01-22 11:40:55 +08:00
|
|
|
BIO_TYPE_CONNECT,
|
|
|
|
"socket connect",
|
2016-10-20 22:18:39 +08:00
|
|
|
bwrite_conv,
|
2015-01-22 11:40:55 +08:00
|
|
|
conn_write,
|
2016-09-06 00:26:58 +08:00
|
|
|
bread_conv,
|
2015-01-22 11:40:55 +08:00
|
|
|
conn_read,
|
|
|
|
conn_puts,
|
2021-07-09 06:31:21 +08:00
|
|
|
conn_gets,
|
2015-01-22 11:40:55 +08:00
|
|
|
conn_ctrl,
|
|
|
|
conn_new,
|
|
|
|
conn_free,
|
|
|
|
conn_callback_ctrl,
|
|
|
|
};
|
1998-12-21 18:52:47 +08:00
|
|
|
|
1999-04-20 05:31:43 +08:00
|
|
|
static int conn_state(BIO *b, BIO_CONNECT *c)
|
2015-01-22 11:40:55 +08:00
|
|
|
{
|
|
|
|
int ret = -1, i;
|
2017-12-16 02:33:48 +08:00
|
|
|
BIO_info_cb *cb = NULL;
|
2015-01-22 11:40:55 +08:00
|
|
|
|
|
|
|
if (c->info_callback != NULL)
|
|
|
|
cb = c->info_callback;
|
|
|
|
|
|
|
|
for (;;) {
|
|
|
|
switch (c->state) {
|
|
|
|
case BIO_CONN_S_BEFORE:
|
2016-02-03 06:40:34 +08:00
|
|
|
if (c->param_hostname == NULL && c->param_service == NULL) {
|
2020-11-04 23:14:00 +08:00
|
|
|
ERR_raise_data(ERR_LIB_BIO,
|
|
|
|
BIO_R_NO_HOSTNAME_OR_SERVICE_SPECIFIED,
|
|
|
|
"hostname=%s service=%s",
|
|
|
|
c->param_hostname, c->param_service);
|
2015-01-22 11:40:55 +08:00
|
|
|
goto exit_loop;
|
|
|
|
}
|
2016-02-03 06:40:34 +08:00
|
|
|
c->state = BIO_CONN_S_GET_ADDR;
|
|
|
|
break;
|
2015-01-22 11:40:55 +08:00
|
|
|
|
2016-02-03 06:40:34 +08:00
|
|
|
case BIO_CONN_S_GET_ADDR:
|
|
|
|
{
|
|
|
|
int family = AF_UNSPEC;
|
|
|
|
switch (c->connect_family) {
|
|
|
|
case BIO_FAMILY_IPV6:
|
|
|
|
if (1) { /* This is a trick we use to avoid bit rot.
|
|
|
|
* at least the "else" part will always be
|
|
|
|
* compiled.
|
|
|
|
*/
|
2022-05-05 15:56:10 +08:00
|
|
|
#if OPENSSL_USE_IPV6
|
2016-02-03 06:40:34 +08:00
|
|
|
family = AF_INET6;
|
|
|
|
} else {
|
|
|
|
#endif
|
2020-11-04 19:23:19 +08:00
|
|
|
ERR_raise(ERR_LIB_BIO, BIO_R_UNAVAILABLE_IP_FAMILY);
|
2016-02-03 06:40:34 +08:00
|
|
|
goto exit_loop;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case BIO_FAMILY_IPV4:
|
|
|
|
family = AF_INET;
|
|
|
|
break;
|
|
|
|
case BIO_FAMILY_IPANY:
|
|
|
|
family = AF_UNSPEC;
|
|
|
|
break;
|
|
|
|
default:
|
2020-11-04 19:23:19 +08:00
|
|
|
ERR_raise(ERR_LIB_BIO, BIO_R_UNSUPPORTED_IP_FAMILY);
|
2016-02-03 06:40:34 +08:00
|
|
|
goto exit_loop;
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
2016-02-03 06:40:34 +08:00
|
|
|
if (BIO_lookup(c->param_hostname, c->param_service,
|
|
|
|
BIO_LOOKUP_CLIENT,
|
|
|
|
family, SOCK_STREAM, &c->addr_first) == 0)
|
|
|
|
goto exit_loop;
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
2016-02-03 06:40:34 +08:00
|
|
|
if (c->addr_first == NULL) {
|
2020-11-04 19:23:19 +08:00
|
|
|
ERR_raise(ERR_LIB_BIO, BIO_R_LOOKUP_RETURNED_NOTHING);
|
2015-01-22 11:40:55 +08:00
|
|
|
goto exit_loop;
|
|
|
|
}
|
2016-02-03 06:40:34 +08:00
|
|
|
c->addr_iter = c->addr_first;
|
2015-01-22 11:40:55 +08:00
|
|
|
c->state = BIO_CONN_S_CREATE_SOCKET;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BIO_CONN_S_CREATE_SOCKET:
|
2016-02-03 06:40:34 +08:00
|
|
|
ret = BIO_socket(BIO_ADDRINFO_family(c->addr_iter),
|
|
|
|
BIO_ADDRINFO_socktype(c->addr_iter),
|
|
|
|
BIO_ADDRINFO_protocol(c->addr_iter), 0);
|
2015-09-30 16:15:03 +08:00
|
|
|
if (ret == (int)INVALID_SOCKET) {
|
2019-08-01 03:24:20 +08:00
|
|
|
ERR_raise_data(ERR_LIB_SYS, get_last_socket_error(),
|
|
|
|
"calling socket(%s, %s)",
|
|
|
|
c->param_hostname, c->param_service);
|
2020-11-04 19:23:19 +08:00
|
|
|
ERR_raise(ERR_LIB_BIO, BIO_R_UNABLE_TO_CREATE_SOCKET);
|
2015-01-22 11:40:55 +08:00
|
|
|
goto exit_loop;
|
|
|
|
}
|
|
|
|
b->num = ret;
|
|
|
|
c->state = BIO_CONN_S_CONNECT;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BIO_CONN_S_CONNECT:
|
|
|
|
BIO_clear_retry_flags(b);
|
2021-05-13 01:15:27 +08:00
|
|
|
ERR_set_mark();
|
2016-02-03 06:40:34 +08:00
|
|
|
ret = BIO_connect(b->num, BIO_ADDRINFO_address(c->addr_iter),
|
|
|
|
BIO_SOCK_KEEPALIVE | c->connect_mode);
|
2015-01-22 11:40:55 +08:00
|
|
|
b->retry_reason = 0;
|
2016-04-18 21:48:27 +08:00
|
|
|
if (ret == 0) {
|
2015-01-22 11:40:55 +08:00
|
|
|
if (BIO_sock_should_retry(ret)) {
|
|
|
|
BIO_set_retry_special(b);
|
|
|
|
c->state = BIO_CONN_S_BLOCKED_CONNECT;
|
|
|
|
b->retry_reason = BIO_RR_CONNECT;
|
2021-05-13 01:15:27 +08:00
|
|
|
ERR_pop_to_mark();
|
2016-02-03 06:40:34 +08:00
|
|
|
} else if ((c->addr_iter = BIO_ADDRINFO_next(c->addr_iter))
|
|
|
|
!= NULL) {
|
|
|
|
/*
|
|
|
|
* if there are more addresses to try, do that first
|
|
|
|
*/
|
|
|
|
BIO_closesocket(b->num);
|
|
|
|
c->state = BIO_CONN_S_CREATE_SOCKET;
|
2021-05-13 01:15:27 +08:00
|
|
|
ERR_pop_to_mark();
|
2016-02-03 06:40:34 +08:00
|
|
|
break;
|
2015-01-22 11:40:55 +08:00
|
|
|
} else {
|
2021-05-13 01:15:27 +08:00
|
|
|
ERR_clear_last_mark();
|
2019-08-01 03:24:20 +08:00
|
|
|
ERR_raise_data(ERR_LIB_SYS, get_last_socket_error(),
|
|
|
|
"calling connect(%s, %s)",
|
|
|
|
c->param_hostname, c->param_service);
|
2018-11-13 22:17:21 +08:00
|
|
|
c->state = BIO_CONN_S_CONNECT_ERROR;
|
|
|
|
break;
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
|
|
|
goto exit_loop;
|
2016-02-03 06:40:34 +08:00
|
|
|
} else {
|
2021-05-13 01:15:27 +08:00
|
|
|
ERR_clear_last_mark();
|
2015-01-22 11:40:55 +08:00
|
|
|
c->state = BIO_CONN_S_OK;
|
2016-02-03 06:40:34 +08:00
|
|
|
}
|
2015-01-22 11:40:55 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case BIO_CONN_S_BLOCKED_CONNECT:
|
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
|
|
|
/* wait for socket being writable, before querying BIO_sock_error */
|
|
|
|
if (BIO_socket_wait(b->num, 0, time(NULL)) == 0)
|
|
|
|
break;
|
2015-01-22 11:40:55 +08:00
|
|
|
i = BIO_sock_error(b->num);
|
2020-05-27 18:16:53 +08:00
|
|
|
if (i != 0) {
|
2015-01-22 11:40:55 +08:00
|
|
|
BIO_clear_retry_flags(b);
|
2020-05-27 18:16:53 +08:00
|
|
|
if ((c->addr_iter = BIO_ADDRINFO_next(c->addr_iter)) != NULL) {
|
|
|
|
/*
|
|
|
|
* if there are more addresses to try, do that first
|
|
|
|
*/
|
|
|
|
BIO_closesocket(b->num);
|
|
|
|
c->state = BIO_CONN_S_CREATE_SOCKET;
|
|
|
|
break;
|
|
|
|
}
|
2019-08-01 03:24:20 +08:00
|
|
|
ERR_raise_data(ERR_LIB_SYS, i,
|
|
|
|
"calling connect(%s, %s)",
|
|
|
|
c->param_hostname, c->param_service);
|
2020-11-04 19:23:19 +08:00
|
|
|
ERR_raise(ERR_LIB_BIO, BIO_R_NBIO_CONNECT_ERROR);
|
2015-01-22 11:40:55 +08:00
|
|
|
ret = 0;
|
|
|
|
goto exit_loop;
|
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
|
|
|
} else {
|
2015-01-22 11:40:55 +08:00
|
|
|
c->state = BIO_CONN_S_OK;
|
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(b->num);
|
|
|
|
# endif
|
|
|
|
}
|
2015-01-22 11:40:55 +08:00
|
|
|
break;
|
|
|
|
|
2018-11-13 22:17:21 +08:00
|
|
|
case BIO_CONN_S_CONNECT_ERROR:
|
2020-11-04 19:23:19 +08:00
|
|
|
ERR_raise(ERR_LIB_BIO, BIO_R_CONNECT_ERROR);
|
2018-11-13 22:17:21 +08:00
|
|
|
ret = 0;
|
|
|
|
goto exit_loop;
|
|
|
|
|
2015-01-22 11:40:55 +08:00
|
|
|
case BIO_CONN_S_OK:
|
|
|
|
ret = 1;
|
|
|
|
goto exit_loop;
|
|
|
|
default:
|
|
|
|
/* abort(); */
|
|
|
|
goto exit_loop;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cb != NULL) {
|
2015-05-07 01:43:59 +08:00
|
|
|
if ((ret = cb((BIO *)b, c->state, ret)) == 0)
|
2015-01-22 11:40:55 +08:00
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Loop does not exit */
|
|
|
|
exit_loop:
|
|
|
|
if (cb != NULL)
|
|
|
|
ret = cb((BIO *)b, c->state, ret);
|
|
|
|
end:
|
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
|
|
|
BIO_CONNECT *BIO_CONNECT_new(void)
|
2015-01-22 11:40:55 +08:00
|
|
|
{
|
|
|
|
BIO_CONNECT *ret;
|
|
|
|
|
2018-04-27 00:06:17 +08:00
|
|
|
if ((ret = OPENSSL_zalloc(sizeof(*ret))) == NULL) {
|
2020-11-04 19:23:19 +08:00
|
|
|
ERR_raise(ERR_LIB_BIO, ERR_R_MALLOC_FAILURE);
|
2017-10-17 22:04:09 +08:00
|
|
|
return NULL;
|
2018-04-27 00:06:17 +08:00
|
|
|
}
|
2015-01-22 11:40:55 +08:00
|
|
|
ret->state = BIO_CONN_S_BEFORE;
|
2016-02-03 06:40:34 +08:00
|
|
|
ret->connect_family = BIO_FAMILY_IPANY;
|
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
|
|
|
void BIO_CONNECT_free(BIO_CONNECT *a)
|
2015-01-22 11:40:55 +08:00
|
|
|
{
|
2018-03-28 04:25:08 +08:00
|
|
|
if (a == NULL)
|
|
|
|
return;
|
2015-05-01 22:02:07 +08:00
|
|
|
OPENSSL_free(a->param_hostname);
|
2016-02-03 06:40:34 +08:00
|
|
|
OPENSSL_free(a->param_service);
|
|
|
|
BIO_ADDRINFO_free(a->addr_first);
|
2015-01-22 11:40:55 +08:00
|
|
|
OPENSSL_free(a);
|
|
|
|
}
|
1998-12-21 18:52:47 +08:00
|
|
|
|
2016-03-20 00:32:14 +08:00
|
|
|
const BIO_METHOD *BIO_s_connect(void)
|
2015-01-22 11:40:55 +08:00
|
|
|
{
|
2017-10-17 22:04:09 +08:00
|
|
|
return &methods_connectp;
|
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 conn_new(BIO *bi)
|
2015-01-22 11:40:55 +08:00
|
|
|
{
|
|
|
|
bi->init = 0;
|
2015-09-30 16:15:03 +08:00
|
|
|
bi->num = (int)INVALID_SOCKET;
|
2015-01-22 11:40:55 +08:00
|
|
|
bi->flags = 0;
|
|
|
|
if ((bi->ptr = (char *)BIO_CONNECT_new()) == NULL)
|
2017-10-17 22:04:09 +08:00
|
|
|
return 0;
|
2015-01-22 11:40:55 +08:00
|
|
|
else
|
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 void conn_close_socket(BIO *bio)
|
2015-01-22 11:40:55 +08:00
|
|
|
{
|
|
|
|
BIO_CONNECT *c;
|
|
|
|
|
|
|
|
c = (BIO_CONNECT *)bio->ptr;
|
2015-09-30 16:15:03 +08:00
|
|
|
if (bio->num != (int)INVALID_SOCKET) {
|
2015-01-22 11:40:55 +08:00
|
|
|
/* Only do a shutdown if things were established */
|
|
|
|
if (c->state == BIO_CONN_S_OK)
|
|
|
|
shutdown(bio->num, 2);
|
2016-02-03 06:40:34 +08:00
|
|
|
BIO_closesocket(bio->num);
|
2015-09-30 16:15:03 +08:00
|
|
|
bio->num = (int)INVALID_SOCKET;
|
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 conn_free(BIO *a)
|
2015-01-22 11:40:55 +08:00
|
|
|
{
|
|
|
|
BIO_CONNECT *data;
|
|
|
|
|
|
|
|
if (a == NULL)
|
2017-10-17 22:04:09 +08:00
|
|
|
return 0;
|
2015-01-22 11:40:55 +08:00
|
|
|
data = (BIO_CONNECT *)a->ptr;
|
|
|
|
|
|
|
|
if (a->shutdown) {
|
|
|
|
conn_close_socket(a);
|
|
|
|
BIO_CONNECT_free(data);
|
|
|
|
a->ptr = NULL;
|
|
|
|
a->flags = 0;
|
|
|
|
a->init = 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 conn_read(BIO *b, char *out, int outl)
|
2015-01-22 11:40:55 +08:00
|
|
|
{
|
|
|
|
int ret = 0;
|
|
|
|
BIO_CONNECT *data;
|
|
|
|
|
|
|
|
data = (BIO_CONNECT *)b->ptr;
|
|
|
|
if (data->state != BIO_CONN_S_OK) {
|
|
|
|
ret = conn_state(b, data);
|
|
|
|
if (ret <= 0)
|
2017-10-17 22:04:09 +08:00
|
|
|
return ret;
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (out != NULL) {
|
|
|
|
clear_socket_error();
|
2019-11-20 06:12:56 +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-25 00:07:51 +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 conn_write(BIO *b, const char *in, int inl)
|
2015-01-22 11:40:55 +08:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
BIO_CONNECT *data;
|
|
|
|
|
|
|
|
data = (BIO_CONNECT *)b->ptr;
|
|
|
|
if (data->state != BIO_CONN_S_OK) {
|
|
|
|
ret = conn_state(b, data);
|
|
|
|
if (ret <= 0)
|
2017-10-17 22:04:09 +08:00
|
|
|
return ret;
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
clear_socket_error();
|
2019-11-20 06:12:56 +08:00
|
|
|
# ifndef OPENSSL_NO_KTLS
|
|
|
|
if (BIO_should_ktls_ctrl_msg_flag(b)) {
|
|
|
|
ret = ktls_send_ctrl_message(b->num, data->record_type, in, inl);
|
|
|
|
if (ret >= 0) {
|
|
|
|
ret = inl;
|
|
|
|
BIO_clear_ktls_ctrl_msg_flag(b);
|
|
|
|
}
|
|
|
|
} else
|
2021-09-09 04:23:04 +08:00
|
|
|
# endif
|
|
|
|
# if defined(OSSL_TFO_SENDTO)
|
|
|
|
if (data->tfo_first) {
|
|
|
|
int peerlen = BIO_ADDRINFO_sockaddr_size(data->addr_iter);
|
|
|
|
|
|
|
|
ret = sendto(b->num, in, inl, OSSL_TFO_SENDTO,
|
|
|
|
BIO_ADDRINFO_sockaddr(data->addr_iter), peerlen);
|
|
|
|
data->tfo_first = 0;
|
|
|
|
} else
|
2019-11-20 06:12:56 +08:00
|
|
|
# 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 conn_ctrl(BIO *b, int cmd, long num, void *ptr)
|
2015-01-22 11:40:55 +08:00
|
|
|
{
|
|
|
|
BIO *dbio;
|
|
|
|
int *ip;
|
2015-11-01 22:42:04 +08:00
|
|
|
const char **pptr = NULL;
|
2015-01-22 11:40:55 +08:00
|
|
|
long ret = 1;
|
|
|
|
BIO_CONNECT *data;
|
2019-11-20 06:12:56 +08:00
|
|
|
# ifndef OPENSSL_NO_KTLS
|
2020-09-01 08:02:01 +08:00
|
|
|
ktls_crypto_info_t *crypto_info;
|
2019-11-20 06:12:56 +08:00
|
|
|
# endif
|
2015-01-22 11:40:55 +08:00
|
|
|
|
|
|
|
data = (BIO_CONNECT *)b->ptr;
|
|
|
|
|
|
|
|
switch (cmd) {
|
|
|
|
case BIO_CTRL_RESET:
|
|
|
|
ret = 0;
|
|
|
|
data->state = BIO_CONN_S_BEFORE;
|
|
|
|
conn_close_socket(b);
|
2016-02-03 06:40:34 +08:00
|
|
|
BIO_ADDRINFO_free(data->addr_first);
|
|
|
|
data->addr_first = NULL;
|
2015-01-22 11:40:55 +08:00
|
|
|
b->flags = 0;
|
|
|
|
break;
|
|
|
|
case BIO_C_DO_STATE_MACHINE:
|
|
|
|
/* use this one to start the connection */
|
|
|
|
if (data->state != BIO_CONN_S_OK)
|
|
|
|
ret = (long)conn_state(b, data);
|
|
|
|
else
|
|
|
|
ret = 1;
|
|
|
|
break;
|
|
|
|
case BIO_C_GET_CONNECT:
|
|
|
|
if (ptr != NULL) {
|
|
|
|
pptr = (const char **)ptr;
|
2016-02-03 06:40:34 +08:00
|
|
|
if (num == 0) {
|
|
|
|
*pptr = data->param_hostname;
|
|
|
|
} else if (num == 1) {
|
|
|
|
*pptr = data->param_service;
|
|
|
|
} else if (num == 2) {
|
|
|
|
*pptr = (const char *)BIO_ADDRINFO_address(data->addr_iter);
|
|
|
|
} else if (num == 3) {
|
|
|
|
switch (BIO_ADDRINFO_family(data->addr_iter)) {
|
2022-05-05 15:56:10 +08:00
|
|
|
# if OPENSSL_USE_IPV6
|
2016-02-03 06:40:34 +08:00
|
|
|
case AF_INET6:
|
|
|
|
ret = BIO_FAMILY_IPV6;
|
|
|
|
break;
|
|
|
|
# endif
|
|
|
|
case AF_INET:
|
|
|
|
ret = BIO_FAMILY_IPV4;
|
|
|
|
break;
|
|
|
|
case 0:
|
|
|
|
ret = data->connect_family;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ret = -1;
|
|
|
|
break;
|
2015-11-01 22:42:04 +08:00
|
|
|
}
|
2021-09-09 04:23:04 +08:00
|
|
|
} else if (num == 4) {
|
|
|
|
ret = data->connect_mode;
|
2016-02-03 06:40:34 +08:00
|
|
|
} else {
|
|
|
|
ret = 0;
|
2015-11-01 22:42:04 +08:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
ret = 0;
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case BIO_C_SET_CONNECT:
|
|
|
|
if (ptr != NULL) {
|
|
|
|
b->init = 1;
|
2020-06-03 13:49:27 +08:00
|
|
|
if (num == 0) { /* BIO_set_conn_hostname */
|
2016-02-03 06:40:34 +08:00
|
|
|
char *hold_service = data->param_service;
|
|
|
|
/* We affect the hostname regardless. However, the input
|
|
|
|
* string might contain a host:service spec, so we must
|
|
|
|
* parse it, which might or might not affect the service
|
|
|
|
*/
|
2020-06-03 13:49:27 +08:00
|
|
|
|
2015-05-01 22:02:07 +08:00
|
|
|
OPENSSL_free(data->param_hostname);
|
2016-02-03 06:40:34 +08:00
|
|
|
data->param_hostname = NULL;
|
|
|
|
ret = BIO_parse_hostserv(ptr,
|
|
|
|
&data->param_hostname,
|
|
|
|
&data->param_service,
|
|
|
|
BIO_PARSE_PRIO_HOST);
|
|
|
|
if (hold_service != data->param_service)
|
|
|
|
OPENSSL_free(hold_service);
|
2020-06-03 13:49:27 +08:00
|
|
|
} else if (num == 1) { /* BIO_set_conn_port */
|
2016-02-03 06:40:34 +08:00
|
|
|
OPENSSL_free(data->param_service);
|
2020-06-03 13:49:27 +08:00
|
|
|
if ((data->param_service = OPENSSL_strdup(ptr)) == NULL)
|
|
|
|
ret = 0;
|
|
|
|
} else if (num == 2) { /* BIO_set_conn_address */
|
2016-02-03 06:40:34 +08:00
|
|
|
const BIO_ADDR *addr = (const BIO_ADDR *)ptr;
|
2020-06-03 13:49:27 +08:00
|
|
|
char *host = BIO_ADDR_hostname_string(addr, 1);
|
|
|
|
char *service = BIO_ADDR_service_string(addr, 1);
|
|
|
|
|
|
|
|
ret = host != NULL && service != NULL;
|
2016-02-03 06:40:34 +08:00
|
|
|
if (ret) {
|
2020-06-03 13:49:27 +08:00
|
|
|
OPENSSL_free(data->param_hostname);
|
|
|
|
data->param_hostname = host;
|
|
|
|
OPENSSL_free(data->param_service);
|
|
|
|
data->param_service = service;
|
2016-02-03 06:40:34 +08:00
|
|
|
BIO_ADDRINFO_free(data->addr_first);
|
|
|
|
data->addr_first = NULL;
|
|
|
|
data->addr_iter = NULL;
|
2020-06-03 13:49:27 +08:00
|
|
|
} else {
|
|
|
|
OPENSSL_free(host);
|
|
|
|
OPENSSL_free(service);
|
2016-02-03 06:40:34 +08:00
|
|
|
}
|
2020-06-03 13:49:27 +08:00
|
|
|
} else if (num == 3) { /* BIO_set_conn_ip_family */
|
2016-02-03 06:40:34 +08:00
|
|
|
data->connect_family = *(int *)ptr;
|
|
|
|
} else {
|
|
|
|
ret = 0;
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case BIO_C_SET_NBIO:
|
2016-02-03 06:40:34 +08:00
|
|
|
if (num != 0)
|
|
|
|
data->connect_mode |= BIO_SOCK_NONBLOCK;
|
|
|
|
else
|
|
|
|
data->connect_mode &= ~BIO_SOCK_NONBLOCK;
|
|
|
|
break;
|
2021-09-09 04:23:04 +08:00
|
|
|
#if defined(TCP_FASTOPEN) && !defined(OPENSSL_NO_TFO)
|
|
|
|
case BIO_C_SET_TFO:
|
|
|
|
if (num != 0) {
|
|
|
|
data->connect_mode |= BIO_SOCK_TFO;
|
|
|
|
data->tfo_first = 1;
|
|
|
|
} else {
|
|
|
|
data->connect_mode &= ~BIO_SOCK_TFO;
|
|
|
|
data->tfo_first = 0;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
#endif
|
2016-02-03 06:40:34 +08:00
|
|
|
case BIO_C_SET_CONNECT_MODE:
|
|
|
|
data->connect_mode = (int)num;
|
2021-09-09 04:23:04 +08:00
|
|
|
if (num & BIO_SOCK_TFO)
|
|
|
|
data->tfo_first = 1;
|
|
|
|
else
|
|
|
|
data->tfo_first = 0;
|
2015-01-22 11:40:55 +08:00
|
|
|
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_PENDING:
|
|
|
|
case BIO_CTRL_WPENDING:
|
|
|
|
ret = 0;
|
|
|
|
break;
|
|
|
|
case BIO_CTRL_FLUSH:
|
|
|
|
break;
|
|
|
|
case BIO_CTRL_DUP:
|
|
|
|
{
|
|
|
|
dbio = (BIO *)ptr;
|
|
|
|
if (data->param_hostname)
|
|
|
|
BIO_set_conn_hostname(dbio, data->param_hostname);
|
2016-02-03 06:40:34 +08:00
|
|
|
if (data->param_service)
|
|
|
|
BIO_set_conn_port(dbio, data->param_service);
|
|
|
|
BIO_set_conn_ip_family(dbio, data->connect_family);
|
|
|
|
BIO_set_conn_mode(dbio, data->connect_mode);
|
2015-01-22 11:40:55 +08:00
|
|
|
/*
|
|
|
|
* FIXME: the cast of the function seems unlikely to be a good
|
|
|
|
* idea
|
|
|
|
*/
|
2017-12-16 02:33:48 +08:00
|
|
|
(void)BIO_set_info_callback(dbio, data->info_callback);
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case BIO_CTRL_SET_CALLBACK:
|
2017-02-28 22:04:29 +08:00
|
|
|
ret = 0; /* use callback ctrl */
|
2015-01-22 11:40:55 +08:00
|
|
|
break;
|
|
|
|
case BIO_CTRL_GET_CALLBACK:
|
|
|
|
{
|
2017-12-16 02:33:48 +08:00
|
|
|
BIO_info_cb **fptr;
|
2015-01-22 11:40:55 +08:00
|
|
|
|
2017-12-16 02:33:48 +08:00
|
|
|
fptr = (BIO_info_cb **)ptr;
|
2015-01-22 11:40:55 +08:00
|
|
|
*fptr = data->info_callback;
|
|
|
|
}
|
|
|
|
break;
|
2020-01-25 00:07:51 +08:00
|
|
|
case BIO_CTRL_EOF:
|
2021-01-30 02:34:49 +08:00
|
|
|
ret = (b->flags & BIO_FLAGS_IN_EOF) != 0;
|
2020-01-25 00:07:51 +08:00
|
|
|
break;
|
2019-11-20 06:12:56 +08:00
|
|
|
# ifndef OPENSSL_NO_KTLS
|
|
|
|
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);
|
2019-11-20 06:12:56 +08:00
|
|
|
if (ret)
|
|
|
|
BIO_set_ktls_flag(b, num);
|
|
|
|
break;
|
|
|
|
case BIO_CTRL_GET_KTLS_SEND:
|
2021-01-30 02:34:49 +08:00
|
|
|
return BIO_should_ktls_flag(b, 1) != 0;
|
2019-11-20 06:12:56 +08:00
|
|
|
case BIO_CTRL_GET_KTLS_RECV:
|
2021-01-30 02:34:49 +08:00
|
|
|
return BIO_should_ktls_flag(b, 0) != 0;
|
2019-11-20 06:12:56 +08:00
|
|
|
case BIO_CTRL_SET_KTLS_TX_SEND_CTRL_MSG:
|
|
|
|
BIO_set_ktls_ctrl_msg_flag(b);
|
|
|
|
data->record_type = num;
|
|
|
|
ret = 0;
|
|
|
|
break;
|
|
|
|
case BIO_CTRL_CLEAR_KTLS_TX_CTRL_MSG:
|
|
|
|
BIO_clear_ktls_ctrl_msg_flag(b);
|
|
|
|
ret = 0;
|
|
|
|
break;
|
|
|
|
# endif
|
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
|
|
|
|
2017-12-16 02:33:48 +08:00
|
|
|
static long conn_callback_ctrl(BIO *b, int cmd, BIO_info_cb *fp)
|
2015-01-22 11:40:55 +08:00
|
|
|
{
|
|
|
|
long ret = 1;
|
|
|
|
BIO_CONNECT *data;
|
|
|
|
|
|
|
|
data = (BIO_CONNECT *)b->ptr;
|
|
|
|
|
|
|
|
switch (cmd) {
|
|
|
|
case BIO_CTRL_SET_CALLBACK:
|
|
|
|
{
|
2017-12-16 02:33:48 +08:00
|
|
|
data->info_callback = fp;
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ret = 0;
|
|
|
|
break;
|
|
|
|
}
|
2017-10-17 22:04:09 +08:00
|
|
|
return ret;
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
2000-02-21 07:43:02 +08:00
|
|
|
|
2000-05-16 06:54:43 +08:00
|
|
|
static int conn_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 = conn_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
|
|
|
|
2021-07-09 06:31:21 +08:00
|
|
|
int conn_gets(BIO *bio, char *buf, int size)
|
|
|
|
{
|
|
|
|
BIO_CONNECT *data;
|
|
|
|
char *ptr = buf;
|
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
if (buf == NULL) {
|
|
|
|
ERR_raise(ERR_LIB_BIO, ERR_R_PASSED_NULL_PARAMETER);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (size <= 0) {
|
|
|
|
ERR_raise(ERR_LIB_BIO, BIO_R_INVALID_ARGUMENT);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
*buf = '\0';
|
|
|
|
|
|
|
|
if (bio == NULL || bio->ptr == NULL) {
|
|
|
|
ERR_raise(ERR_LIB_BIO, ERR_R_PASSED_NULL_PARAMETER);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
data = (BIO_CONNECT *)bio->ptr;
|
|
|
|
if (data->state != BIO_CONN_S_OK) {
|
|
|
|
ret = conn_state(bio, data);
|
|
|
|
if (ret <= 0)
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
clear_socket_error();
|
|
|
|
while (size-- > 1) {
|
|
|
|
# ifndef OPENSSL_NO_KTLS
|
|
|
|
if (BIO_get_ktls_recv(bio))
|
|
|
|
ret = ktls_read_record(bio->num, ptr, 1);
|
|
|
|
else
|
|
|
|
# endif
|
|
|
|
ret = readsocket(bio->num, ptr, 1);
|
|
|
|
BIO_clear_retry_flags(bio);
|
|
|
|
if (ret <= 0) {
|
|
|
|
if (BIO_sock_should_retry(ret))
|
|
|
|
BIO_set_retry_read(bio);
|
|
|
|
else if (ret == 0)
|
|
|
|
bio->flags |= BIO_FLAGS_IN_EOF;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (*ptr++ == '\n')
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
*ptr = '\0';
|
|
|
|
return ret > 0 || (bio->flags & BIO_FLAGS_IN_EOF) != 0 ? ptr - buf : ret;
|
|
|
|
}
|
|
|
|
|
2013-10-07 19:41:43 +08:00
|
|
|
BIO *BIO_new_connect(const char *str)
|
2015-01-22 11:40:55 +08:00
|
|
|
{
|
|
|
|
BIO *ret;
|
|
|
|
|
|
|
|
ret = BIO_new(BIO_s_connect());
|
|
|
|
if (ret == NULL)
|
2017-10-17 22:04:09 +08:00
|
|
|
return NULL;
|
2015-01-22 11:40:55 +08:00
|
|
|
if (BIO_set_conn_hostname(ret, str))
|
2017-10-17 22:04:09 +08:00
|
|
|
return ret;
|
2015-03-25 23:31:18 +08:00
|
|
|
BIO_free(ret);
|
2017-10-17 22:04:09 +08:00
|
|
|
return NULL;
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
1998-12-21 18:52:47 +08:00
|
|
|
|
|
|
|
#endif
|