1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
|
%%
%% %CopyrightBegin%
%%
%% Copyright Ericsson AB 2019-2022. All Rights Reserved.
%%
%% Licensed under the Apache License, Version 2.0 (the "License");
%% you may not use this file except in compliance with the License.
%% You may obtain a copy of the License at
%%
%% http://www.apache.org/licenses/LICENSE-2.0
%%
%% Unless required by applicable law or agreed to in writing, software
%% distributed under the License is distributed on an "AS IS" BASIS,
%% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
%% See the License for the specific language governing permissions and
%% limitations under the License.
%%
%% %CopyrightEnd%
%%
%%
-module(openssl_tls_1_3_version_SUITE).
-include_lib("common_test/include/ct.hrl").
-include_lib("public_key/include/public_key.hrl").
%% Common test
-export([all/0,
groups/0,
init_per_suite/1,
init_per_group/2,
end_per_suite/1,
end_per_group/2
]).
%% Test cases
-export([tls12_client_tls13_server/1
]).
%%--------------------------------------------------------------------
%% Common Test interface functions -----------------------------------
%%--------------------------------------------------------------------
all() ->
[
%%{group, openssl_server},
{group, openssl_client}
].
groups() ->
[
%%{openssl_server, [{group, 'tlsv1.3'}]},
{openssl_client, [{group, 'tlsv1.3'}]},
{'tlsv1.3', [], cert_groups()},
{rsa, [], tests()},
{ecdsa, [], tests()}
].
cert_groups() ->
[{group, rsa},
{group, ecdsa}].
tests() ->
[%%tls13_client_tls12_server, %% Not testable with current openssl s_client
%%tls13_client_with_ext_tls12_server,
tls12_client_tls13_server].
init_per_suite(Config0) ->
Config = ssl_test_lib:init_per_suite(Config0, openssl),
case ssl_test_lib:check_sane_openssl_version('tlsv1.3', Config) of
true ->
Config;
false ->
{skip, openssl_does_not_support_version}
end.
end_per_suite(Config) ->
ssl_test_lib:end_per_suite(Config).
init_per_group(GroupName, Config) ->
case ssl_test_lib:is_protocol_version(GroupName) of
true ->
ssl_test_lib:init_per_group_openssl(GroupName, Config);
false ->
do_init_per_group(GroupName, Config)
end.
do_init_per_group(openssl_client, Config0) ->
Config = proplists:delete(server_type, proplists:delete(client_type, Config0)),
[{client_type, openssl}, {server_type, erlang} | Config];
do_init_per_group(openssl_server, Config0) ->
Config = proplists:delete(server_type, proplists:delete(client_type, Config0)),
[{client_type, erlang}, {server_type, openssl} | Config];
do_init_per_group(rsa, Config0) ->
Config = ssl_test_lib:make_rsa_cert(Config0),
COpts = proplists:get_value(client_rsa_opts, Config),
SOpts = proplists:get_value(server_rsa_opts, Config),
[{client_cert_opts, COpts}, {server_cert_opts, SOpts} |
lists:delete(server_cert_opts, lists:delete(client_cert_opts, Config))];
do_init_per_group(ecdsa, Config0) ->
PKAlg = crypto:supports(public_keys),
case lists:member(ecdsa, PKAlg) andalso
(lists:member(ecdh, PKAlg) orelse lists:member(dh, PKAlg)) of
true ->
Config = ssl_test_lib:make_ecdsa_cert(Config0),
COpts = proplists:get_value(client_ecdsa_opts, Config),
SOpts = proplists:get_value(server_ecdsa_opts, Config),
[{client_cert_opts, COpts}, {server_cert_opts, SOpts} |
lists:delete(server_cert_opts, lists:delete(client_cert_opts, Config))];
false ->
{skip, "Missing EC crypto support"}
end.
end_per_group(GroupName, Config) ->
ssl_test_lib:end_per_group(GroupName, Config).
%%--------------------------------------------------------------------
%% Test Cases --------------------------------------------------------
%%--------------------------------------------------------------------
%% openssl s_client cannot be configured to support both TLS 1.3 and TLS 1.2.
%% In its ClientHello the supported_versions extension contains only one element
%% [{3,4}] that the server does not accept if it is configured to not support
%% TLS 1.3.
tls13_client_tls12_server() ->
[{doc,"Test that a TLS 1.3 client can connect to a TLS 1.2 server."}].
tls13_client_tls12_server(Config) when is_list(Config) ->
ClientOpts = [{versions,
['tlsv1.3', 'tlsv1.2']} | ssl_test_lib:ssl_options(client_cert_opts, Config)],
ServerOpts = [{versions,
['tlsv1.1', 'tlsv1.2']} | ssl_test_lib:ssl_options(server_cert_opts, Config)],
ssl_test_lib:basic_test(ClientOpts, ServerOpts, Config).
%% tls13_client_with_ext_tls12_server() ->
%% [{doc,"Test basic connection between TLS 1.2 server and TLS 1.3 client when "
%% "client has TLS 1.3 specsific extensions"}].
%% tls13_client_with_ext_tls12_server(Config) ->
%% ClientOpts0 = ssl_test_lib:ssl_options(client_cert_opts, Config),
%% ServerOpts0 = ssl_test_lib:ssl_options(server_cert_opts, Config),
%% {ServerOpts, ClientOpts} =
%% case proplists:get_value(client_type) of
%% erlang ->
%% {[{versions, ['tlsv1.2']}|ServerOpts0],
%% [{versions, ['tlsv1.2','tlsv1.3']},
%% {signature_algs_cert, [ecdsa_secp384r1_sha384,
%% ecdsa_secp256r1_sha256,
%% rsa_pss_rsae_sha256,
%% rsa_pkcs1_sha256,
%% {sha256,rsa},{sha256,dsa}]}|ClientOpts0]};
%% openssl ->
%% ssl_test_lib:basic_test(ClientOpts, ServerOpts, Config).
%% TODO: wrong version of TLS is configured for the client
tls12_client_tls13_server() ->
[{doc,"Test that a TLS 1.2 client can connect to a TLS 1.3 server."}].
tls12_client_tls13_server(Config) when is_list(Config) ->
ClientOpts = [{versions,
['tlsv1.1', 'tlsv1.2']} | ssl_test_lib:ssl_options(client_cert_opts, Config)],
ServerOpts = [{versions,
['tlsv1.3', 'tlsv1.2']} | ssl_test_lib:ssl_options(server_cert_opts, Config)],
ssl_test_lib:basic_test(ClientOpts, ServerOpts, Config).
|