Add EVP_KDF-X942 to the fips module
[openssl.git] / test / recipes / 70-test_sslversions.t
1 #! /usr/bin/env perl
2 # Copyright 2015-2020 The OpenSSL Project Authors. All Rights Reserved.
3 #
4 # Licensed under the Apache License 2.0 (the "License").  You may not use
5 # this file except in compliance with the License.  You can obtain a copy
6 # in the file LICENSE in the source distribution or at
7 # https://www.openssl.org/source/license.html
8
9 use strict;
10 use OpenSSL::Test qw/:DEFAULT cmdstr srctop_file bldtop_dir/;
11 use OpenSSL::Test::Utils;
12 use TLSProxy::Proxy;
13 use File::Temp qw(tempfile);
14
15 use constant {
16     REVERSE_ORDER_VERSIONS => 1,
17     UNRECOGNISED_VERSIONS => 2,
18     NO_EXTENSION => 3,
19     EMPTY_EXTENSION => 4,
20     TLS1_1_AND_1_0_ONLY => 5,
21     WITH_TLS1_4 => 6,
22     BAD_LEGACY_VERSION => 7
23 };
24
25 my $testtype;
26
27 my $test_name = "test_sslversions";
28 setup($test_name);
29
30 plan skip_all => "TLSProxy isn't usable on $^O"
31     if $^O =~ /^(VMS)$/;
32
33 plan skip_all => "$test_name needs the dynamic engine feature enabled"
34     if disabled("engine") || disabled("dynamic-engine");
35
36 plan skip_all => "$test_name needs the sock feature enabled"
37     if disabled("sock");
38
39 plan skip_all => "$test_name needs TLS1.3, TLS1.2 and TLS1.1 enabled"
40     if disabled("tls1_3") || disabled("tls1_2") || disabled("tls1_1");
41
42 $ENV{OPENSSL_ia32cap} = '~0x200000200000000';
43
44 my $proxy = TLSProxy::Proxy->new(
45     undef,
46     cmdstr(app(["openssl"]), display => 1),
47     srctop_file("apps", "server.pem"),
48     (!$ENV{HARNESS_ACTIVE} || $ENV{HARNESS_VERBOSE})
49 );
50
51 #We're just testing various negative and unusual scenarios here. ssltest with
52 #02-protocol-version.cnf should check all the various combinations of normal
53 #version neg
54
55 #Test 1: An empty supported_versions extension should not succeed
56 $testtype = EMPTY_EXTENSION;
57 $proxy->filter(\&modify_supported_versions_filter);
58 $proxy->start() or plan skip_all => "Unable to start up Proxy for tests";
59 plan tests => 8;
60 ok(TLSProxy::Message->fail(), "Empty supported versions");
61
62 #Test 2: supported_versions extension with no recognised versions should not
63 #succeed
64 $proxy->clear();
65 $testtype = UNRECOGNISED_VERSIONS;
66 $proxy->start();
67 ok(TLSProxy::Message->fail(), "No recognised versions");
68
69 #Test 3: No supported versions extensions should succeed and select TLSv1.2
70 $proxy->clear();
71 $testtype = NO_EXTENSION;
72 $proxy->start();
73 my $record = pop @{$proxy->record_list};
74 ok(TLSProxy::Message->success()
75    && $record->version() == TLSProxy::Record::VERS_TLS_1_2,
76    "No supported versions extension");
77
78 #Test 4: No supported versions extensions should fail if only TLS1.3 available
79 $proxy->clear();
80 $proxy->serverflags("-tls1_3");
81 $proxy->start();
82 ok(TLSProxy::Message->fail(), "No supported versions extension (only TLS1.3)");
83
84 #Test 5: supported versions extension with best version last should succeed
85 #and select TLSv1.3
86 $proxy->clear();
87 $testtype = REVERSE_ORDER_VERSIONS;
88 $proxy->start();
89 $record = pop @{$proxy->record_list};
90 ok(TLSProxy::Message->success()
91    && $record->version() == TLSProxy::Record::VERS_TLS_1_2
92    && TLSProxy::Proxy->is_tls13(),
93    "Reverse order versions");
94
95 #Test 6: no TLSv1.3 or TLSv1.2 version in supported versions extension, but
96 #TLSv1.1 and TLSv1.0 are present. Should just use TLSv1.1 and succeed
97 $proxy->clear();
98 $proxy->clientflags("-cipher DEFAULT:\@SECLEVEL=0");
99 $proxy->ciphers("AES128-SHA:\@SECLEVEL=0");
100 $testtype = TLS1_1_AND_1_0_ONLY;
101 $proxy->start();
102 $record = pop @{$proxy->record_list};
103 ok(TLSProxy::Message->success()
104    && $record->version() == TLSProxy::Record::VERS_TLS_1_1,
105    "TLS1.1 and TLS1.0 in supported versions extension only");
106
107 #Test 7: TLS1.4 and TLS1.3 in supported versions. Should succeed and use TLS1.3
108 $proxy->clear();
109 $testtype = WITH_TLS1_4;
110 $proxy->start();
111 $record = pop @{$proxy->record_list};
112 ok(TLSProxy::Message->success()
113    && $record->version() == TLSProxy::Record::VERS_TLS_1_2
114    && TLSProxy::Proxy->is_tls13(),
115    "TLS1.4 in supported versions extension");
116
117 #Test 8: Set the legacy version to SSLv3 with supported versions. Should fail
118 $proxy->clear();
119 $testtype = BAD_LEGACY_VERSION;
120 $proxy->start();
121 ok(TLSProxy::Message->fail(), "Legacy version is SSLv3 with supported versions");
122
123 sub modify_supported_versions_filter
124 {
125     my $proxy = shift;
126
127     if ($proxy->flight == 1) {
128         # Change the ServerRandom so that the downgrade sentinel doesn't cause
129         # the connection to fail
130         my $message = ${$proxy->message_list}[1];
131         return if (!defined $message);
132
133         $message->random("\0"x32);
134         $message->repack();
135         return;
136     }
137
138     # We're only interested in the initial ClientHello
139     if ($proxy->flight != 0) {
140         return;
141     }
142
143     foreach my $message (@{$proxy->message_list}) {
144         if ($message->mt == TLSProxy::Message::MT_CLIENT_HELLO) {
145             my $ext;
146             if ($testtype == REVERSE_ORDER_VERSIONS) {
147                 $ext = pack "C5",
148                     0x04, # Length
149                     0x03, 0x03, #TLSv1.2
150                     0x03, 0x04; #TLSv1.3
151             } elsif ($testtype == UNRECOGNISED_VERSIONS) {
152                 $ext = pack "C5",
153                     0x04, # Length
154                     0x04, 0x04, #Some unrecognised version
155                     0x04, 0x03; #Another unrecognised version
156             } elsif ($testtype == TLS1_1_AND_1_0_ONLY) {
157                 $ext = pack "C5",
158                     0x04, # Length
159                     0x03, 0x02, #TLSv1.1
160                     0x03, 0x01; #TLSv1.0
161             } elsif ($testtype == WITH_TLS1_4) {
162                     $ext = pack "C5",
163                         0x04, # Length
164                         0x03, 0x05, #TLSv1.4
165                         0x03, 0x04; #TLSv1.3
166             }
167             if ($testtype == REVERSE_ORDER_VERSIONS
168                     || $testtype == UNRECOGNISED_VERSIONS
169                     || $testtype == TLS1_1_AND_1_0_ONLY
170                     || $testtype == WITH_TLS1_4) {
171                 $message->set_extension(
172                     TLSProxy::Message::EXT_SUPPORTED_VERSIONS, $ext);
173             } elsif ($testtype == EMPTY_EXTENSION) {
174                 $message->set_extension(
175                     TLSProxy::Message::EXT_SUPPORTED_VERSIONS, "");
176             } elsif ($testtype == NO_EXTENSION) {
177                 $message->delete_extension(
178                     TLSProxy::Message::EXT_SUPPORTED_VERSIONS);
179             } else {
180                 # BAD_LEGACY_VERSION
181                 $message->client_version(TLSProxy::Record::VERS_SSL_3_0);
182             }
183
184             $message->repack();
185         }
186     }
187 }