Ensure s_client sends an SNI extension by default
[openssl.git] / test / recipes / 70-test_tls13downgrade.t
1 #! /usr/bin/env perl
2 # Copyright 2017 The OpenSSL Project Authors. All Rights Reserved.
3 #
4 # Licensed under the OpenSSL license (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
14 my $test_name = "test_tls13downgrade";
15 setup($test_name);
16
17 plan skip_all => "TLSProxy isn't usable on $^O"
18     if $^O =~ /^(VMS|MSWin32)$/;
19
20 plan skip_all => "$test_name needs the dynamic engine feature enabled"
21     if disabled("engine") || disabled("dynamic-engine");
22
23 plan skip_all => "$test_name needs the sock feature enabled"
24     if disabled("sock");
25
26 plan skip_all => "$test_name needs TLS1.3 and TLS1.2 enabled"
27     if disabled("tls1_3") || disabled("tls1_2");
28
29 # TODO(TLS1.3): Enable this when TLSv1.3 comes out of draft
30 plan skip_all => "$test_name not run in pre TLSv1.3 RFC implementation"
31     if disabled("tls13downgrade");
32
33 $ENV{OPENSSL_ia32cap} = '~0x200000200000000';
34
35 my $proxy = TLSProxy::Proxy->new(
36     undef,
37     cmdstr(app(["openssl"]), display => 1),
38     srctop_file("apps", "server.pem"),
39     (!$ENV{HARNESS_ACTIVE} || $ENV{HARNESS_VERBOSE})
40 );
41
42 use constant {
43     DOWNGRADE_TO_TLS_1_2 => 0,
44     DOWNGRADE_TO_TLS_1_1 => 1
45 };
46
47 #Test 1: Downgrade from TLSv1.3 to TLSv1.2
48 $proxy->filter(\&downgrade_filter);
49 my $testtype = DOWNGRADE_TO_TLS_1_2;
50 $proxy->start() or plan skip_all => "Unable to start up Proxy for tests";
51 plan tests => 3;
52 ok(TLSProxy::Message->fail(), "Downgrade TLSv1.3 to TLSv1.2");
53
54 #Test 2: Downgrade from TLSv1.3 to TLSv1.1
55 $proxy->clear();
56 $testtype = DOWNGRADE_TO_TLS_1_1;
57 $proxy->start();
58 ok(TLSProxy::Message->fail(), "Downgrade TLSv1.3 to TLSv1.1");
59
60 #Test 3: Downgrade from TLSv1.2 to TLSv1.1
61 $proxy->clear();
62 $proxy->clientflags("-no_tls1_3");
63 $proxy->serverflags("-no_tls1_3");
64 $proxy->start();
65 ok(TLSProxy::Message->fail(), "Downgrade TLSv1.2 to TLSv1.1");
66
67 sub downgrade_filter
68 {
69     my $proxy = shift;
70
71     # We're only interested in the initial ClientHello
72     if ($proxy->flight != 0) {
73         return;
74     }
75
76     my $message = ${$proxy->message_list}[0];
77
78     my $ext;
79     if ($testtype == DOWNGRADE_TO_TLS_1_2) {
80         $ext = pack "C3",
81             0x02, # Length
82             0x03, 0x03; #TLSv1.2
83     } else {
84         $ext = pack "C3",
85             0x02, # Length
86             0x03, 0x02; #TLSv1.1
87     }
88
89     $message->set_extension(TLSProxy::Message::EXT_SUPPORTED_VERSIONS, $ext);
90
91     $message->repack();
92 }
93