b6ff47e84043c520a893d54da9a1a6f5a889942c
[openssl.git] / test / recipes / 70-test_tlsextms.t
1 #!/usr/bin/perl
2 # Written by Stephen Henson for the OpenSSL project.
3 # ====================================================================
4 # Copyright (c) 1998-2015 The OpenSSL Project.  All rights reserved.
5 #
6 # Redistribution and use in source and binary forms, with or without
7 # modification, are permitted provided that the following conditions
8 # are met:
9 #
10 # 1. Redistributions of source code must retain the above copyright
11 #    notice, this list of conditions and the following disclaimer.
12 #
13 # 2. Redistributions in binary form must reproduce the above copyright
14 #    notice, this list of conditions and the following disclaimer in
15 #    the documentation and/or other materials provided with the
16 #    distribution.
17 #
18 # 3. All advertising materials mentioning features or use of this
19 #    software must display the following acknowledgment:
20 #    "This product includes software developed by the OpenSSL Project
21 #    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
22 #
23 # 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
24 #    endorse or promote products derived from this software without
25 #    prior written permission. For written permission, please contact
26 #    openssl-core@openssl.org.
27 #
28 # 5. Products derived from this software may not be called "OpenSSL"
29 #    nor may "OpenSSL" appear in their names without prior written
30 #    permission of the OpenSSL Project.
31 #
32 # 6. Redistributions of any form whatsoever must retain the following
33 #    acknowledgment:
34 #    "This product includes software developed by the OpenSSL Project
35 #    for use in the OpenSSL Toolkit (http://www.openssl.org/)"
36 #
37 # THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
38 # EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
39 # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
40 # PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
41 # ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
42 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
43 # NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
44 # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
45 # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
46 # STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
47 # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
48 # OF THE POSSIBILITY OF SUCH DAMAGE.
49 # ====================================================================
50 #
51 # This product includes cryptographic software written by Eric Young
52 # (eay@cryptsoft.com).  This product includes software written by Tim
53 # Hudson (tjh@cryptsoft.com).
54
55 use strict;
56 use OpenSSL::Test qw/:DEFAULT cmdstr top_file top_dir/;
57 use OpenSSL::Test::Utils;
58 use TLSProxy::Proxy;
59 use File::Temp qw(tempfile);
60
61 my $test_name = "test_tlsextms";
62 setup($test_name);
63
64 plan skip_all => "TLSProxy isn't usable on $^O"
65     if $^O =~ /^VMS$/;
66
67 plan skip_all => "$test_name needs the engine feature enabled"
68     if disabled("engine");
69
70 plan skip_all => "$test_name can only be performed with OpenSSL configured shared"
71     unless (map { s/\R//; s/^SHARED_LIBS=\s*//; $_ }
72         grep { /^SHARED_LIBS=/ }
73         do { local @ARGV = ( top_file("Makefile") ); <> })[0] ne "";
74
75 $ENV{OPENSSL_ENGINES} = top_dir("engines");
76 $ENV{OPENSSL_ia32cap} = '~0x200000200000000';
77
78 sub checkmessages($$$$$);
79 sub setrmextms($$);
80 sub clearall();
81
82 my $crmextms = 0;
83 my $srmextms = 0;
84 my $cextms = 0;
85 my $sextms = 0;
86 my $fullhand = 0;
87
88 my $proxy = TLSProxy::Proxy->new(
89     \&extms_filter,
90     cmdstr(app(["openssl"])),
91     top_file("apps", "server.pem"),
92     1
93 );
94
95 plan tests => 9;
96
97 #Test 1: By default server and client should send extended master secret
98 # extension.
99 #Expected result: ClientHello extension seen; ServerHello extension seen
100 #                 Full handshake
101
102 setrmextms(0, 0);
103 $proxy->start();
104 checkmessages(1, "Default extended master secret test", 1, 1, 1);
105
106 #Test 2: If client omits extended master secret extension, server should too.
107 #Expected result: ClientHello extension not seen; ServerHello extension not seen
108 #                 Full handshake
109
110 clearall();
111 setrmextms(1, 0);
112 $proxy->start();
113 checkmessages(2, "No client extension extended master secret test", 0, 0, 1);
114
115 # Test 3: same as 1 but with session tickets disabled.
116 # Expected result: same as test 1.
117
118 clearall();
119 $proxy->clientflags("-no_ticket");
120 setrmextms(0, 0);
121 $proxy->start();
122 checkmessages(3, "No ticket extended master secret test", 1, 1, 1);
123
124 # Test 4: same as 2 but with session tickets disabled.
125 # Expected result: same as test 2.
126
127 clearall();
128 $proxy->clientflags("-no_ticket");
129 setrmextms(1, 0);
130 $proxy->start();
131 checkmessages(2, "No ticket, no client extension extended master secret test", 0, 0, 1);
132
133 #Test 5: Session resumption extended master secret test
134 #
135 #Expected result: ClientHello extension seen; ServerHello extension seen
136 #                 Abbreviated handshake
137
138 clearall();
139 setrmextms(0, 0);
140 (my $fh, my $session) = tempfile();
141 $proxy->serverconnects(2);
142 $proxy->clientflags("-sess_out ".$session);
143 $proxy->start();
144 $proxy->clear();
145 $proxy->clientflags("-sess_in ".$session);
146 $proxy->clientstart();
147 checkmessages(5, "Session resumption extended master secret test", 1, 1, 0);
148
149 #Test 6: Session resumption extended master secret test orginial session
150 # omits extension. Server must not resume session.
151 #Expected result: ClientHello extension seen; ServerHello extension seen
152 #                 Full handshake
153
154 clearall();
155 setrmextms(1, 0);
156 ($fh, $session) = tempfile();
157 $proxy->serverconnects(2);
158 $proxy->clientflags("-sess_out ".$session);
159 $proxy->start();
160 $proxy->clear();
161 $proxy->clientflags("-sess_in ".$session);
162 setrmextms(0, 0);
163 $proxy->clientstart();
164 checkmessages(6, "Session resumption extended master secret test", 1, 1, 1);
165
166 #Test 7: Session resumption extended master secret test resumed session
167 # omits client extension. Server must abort connection.
168 #Expected result: aborted connection.
169
170 clearall();
171 setrmextms(0, 0);
172 ($fh, $session) = tempfile();
173 $proxy->serverconnects(2);
174 $proxy->clientflags("-sess_out ".$session);
175 $proxy->start();
176 $proxy->clear();
177 $proxy->clientflags("-sess_in ".$session);
178 setrmextms(1, 0);
179 $proxy->clientstart();
180 ok(TLSProxy::Message->fail(), "Client inconsistent session resupmption");
181
182 #Test 8: Session resumption extended master secret test resumed session
183 # omits server extension. Client must abort connection.
184 #Expected result: aborted connection.
185
186 clearall();
187 setrmextms(0, 0);
188 ($fh, $session) = tempfile();
189 $proxy->serverconnects(2);
190 $proxy->clientflags("-sess_out ".$session);
191 $proxy->start();
192 $proxy->clear();
193 $proxy->clientflags("-sess_in ".$session);
194 setrmextms(0, 1);
195 $proxy->clientstart();
196 ok(TLSProxy::Message->fail(), "Server inconsistent session resumption 1");
197
198 #Test 9: Session resumption extended master secret test initial session
199 # omits server extension. Client must abort connection.
200 #Expected result: aborted connection.
201
202 clearall();
203 setrmextms(0, 1);
204 ($fh, $session) = tempfile();
205 $proxy->serverconnects(2);
206 $proxy->clientflags("-sess_out ".$session);
207 $proxy->start();
208 $proxy->clear();
209 $proxy->clientflags("-sess_in ".$session);
210 setrmextms(0, 0);
211 $proxy->clientstart();
212 ok(TLSProxy::Message->fail(), "Server inconsistent session resumption 2");
213
214 sub extms_filter
215 {
216     my $proxy = shift;
217
218     foreach my $message (@{$proxy->message_list}) {
219         if ($crmextms && $message->mt == TLSProxy::Message::MT_CLIENT_HELLO) {
220             $message->delete_extension(TLSProxy::ClientHello::EXT_EXTENDED_MASTER_SECRET);
221             $message->repack();
222         }
223         if ($srmextms && $message->mt == TLSProxy::Message::MT_SERVER_HELLO) {
224             $message->delete_extension(TLSProxy::ClientHello::EXT_EXTENDED_MASTER_SECRET);
225             $message->repack();
226         }
227     }
228 }
229
230 sub checkmessages($$$$$)
231 {
232     my ($testno, $testname, $testcextms, $testsextms, $testhand) = @_;
233
234     subtest $testname => sub {
235
236     foreach my $message (@{$proxy->message_list}) {
237         if ($message->mt == TLSProxy::Message::MT_CLIENT_HELLO
238             || $message->mt == TLSProxy::Message::MT_SERVER_HELLO) {
239         #Get the extensions data
240         my %extensions = %{$message->extension_data};
241         if (defined
242             $extensions{TLSProxy::ClientHello::EXT_EXTENDED_MASTER_SECRET}) {
243             if ($message->mt == TLSProxy::Message::MT_CLIENT_HELLO) {
244                 $cextms = 1;
245             } else {
246                 $sextms = 1;
247             }
248         }
249         } elsif ($message->mt == TLSProxy::Message::MT_CLIENT_KEY_EXCHANGE) {
250             #Must be doing a full handshake
251             $fullhand = 1;
252         }
253     }
254
255     plan tests => 4;
256
257     ok(TLSProxy::Message->success, "Handshake");
258
259     ok($testcextms == $cextms,
260        "ClientHello extension extended master secret check");
261     ok($testsextms == $sextms,
262        "ServerHello extension extended master secret check");
263     ok($testhand == $fullhand,
264        "Extended master secret full handshake check");
265
266     }
267 }
268
269 sub setrmextms($$)
270 {
271     ($crmextms, $srmextms) = @_;
272 }
273
274 sub clearall()
275 {
276     $cextms = 0;
277     $sextms = 0;
278     $fullhand = 0;
279     $proxy->clear();
280 }