]> git.ipfire.org Git - thirdparty/openssl.git/blob - test/recipes/80-test_ssl.t
RT4272: Unit tests fail when DTLS disabled
[thirdparty/openssl.git] / test / recipes / 80-test_ssl.t
1 #! /usr/bin/perl
2
3 use strict;
4 use warnings;
5
6 use POSIX;
7 use File::Spec;
8 use File::Copy;
9 use OpenSSL::Test qw/:DEFAULT with top_file cmdstr/;
10 use OpenSSL::Test::Utils;
11
12 setup("test_ssl");
13
14 my ($no_rsa, $no_dsa, $no_dh, $no_ec, $no_srp, $no_psk,
15 $no_ssl3, $no_tls1, $no_tls1_1, $no_tls1_2,
16 $no_dtls, $no_dtls1, $no_dtls1_2) =
17 anydisabled qw/rsa dsa dh ec srp psk
18 ssl3 tls1 tls1_1 tls1_2
19 dtls dtls1 dtls1_2/;
20 my $no_anytls = alldisabled(available_protocols("tls"));
21 my $no_anydtls = alldisabled(available_protocols("dtls"));
22
23 plan skip_all => "No SSL/TLS/DTLS protocol is support by this OpenSSL build"
24 if $no_anytls && $no_anydtls;
25
26 my $digest = "-sha1";
27 my @reqcmd = ("openssl", "req");
28 my @x509cmd = ("openssl", "x509", $digest);
29 my @verifycmd = ("openssl", "verify");
30 my $dummycnf = top_file("apps", "openssl.cnf");
31
32 my $CAkey = "keyCA.ss";
33 my $CAcert="certCA.ss";
34 my $CAserial="certCA.srl";
35 my $CAreq="reqCA.ss";
36 my $CAconf=top_file("test","CAss.cnf");
37 my $CAreq2="req2CA.ss"; # temp
38
39 my $Uconf=top_file("test","Uss.cnf");
40 my $Ukey="keyU.ss";
41 my $Ureq="reqU.ss";
42 my $Ucert="certU.ss";
43
44 my $Dkey="keyD.ss";
45 my $Dreq="reqD.ss";
46 my $Dcert="certD.ss";
47
48 my $Ekey="keyE.ss";
49 my $Ereq="reqE.ss";
50 my $Ecert="certE.ss";
51
52 my $P1conf=top_file("test","P1ss.cnf");
53 my $P1key="keyP1.ss";
54 my $P1req="reqP1.ss";
55 my $P1cert="certP1.ss";
56 my $P1intermediate="tmp_intP1.ss";
57
58 my $P2conf=top_file("test","P2ss.cnf");
59 my $P2key="keyP2.ss";
60 my $P2req="reqP2.ss";
61 my $P2cert="certP2.ss";
62 my $P2intermediate="tmp_intP2.ss";
63
64 plan tests =>
65 1 # For testss
66 + 1 # For ssltest -test_cipherlist
67 + 10 # For the first testssl
68 + 16 # For the first testsslproxy
69 + 16 # For the second testsslproxy
70 ;
71
72 subtest 'test_ss' => sub {
73 if (testss()) {
74 open OUT, ">", "intP1.ss";
75 copy($CAcert, \*OUT); copy($Ucert, \*OUT);
76 close OUT;
77
78 open OUT, ">", "intP2.ss";
79 copy($CAcert, \*OUT); copy($Ucert, \*OUT); copy($P1cert, \*OUT);
80 close OUT;
81 }
82 };
83
84 my $check = ok(run(test(["ssltest","-test_cipherlist"])), "running ssltest");
85
86 SKIP: {
87 skip "ssltest ended with error, skipping the rest", 3
88 if !$check;
89
90 note('test_ssl -- key U');
91 testssl("keyU.ss", $Ucert, $CAcert);
92
93 note('test_ssl -- key P1');
94 testsslproxy("keyP1.ss", "certP1.ss", "intP1.ss", "AB");
95
96 note('test_ssl -- key P2');
97 testsslproxy("keyP2.ss", "certP2.ss", "intP2.ss", "BC");
98 }
99
100 # -----------
101 # subtest functions
102 sub testss {
103 open RND, ">>", ".rnd";
104 print RND "string to make the random number generator think it has entropy";
105 close RND;
106
107 my @req_dsa = ("-newkey",
108 "dsa:".File::Spec->catfile("..", "apps", "dsa1024.pem"));;
109 my @req_new;
110 if ($no_rsa) {
111 @req_new = @req_dsa;
112 } else {
113 @req_new = ("-new");
114 }
115
116 plan tests => 17;
117
118 SKIP: {
119 skip 'failure', 16 unless
120 ok(run(app([@reqcmd, "-config", $CAconf,
121 "-out", $CAreq, "-keyout", $CAkey,
122 @req_new])),
123 'make cert request');
124
125 skip 'failure', 15 unless
126 ok(run(app([@x509cmd, "-CAcreateserial", "-in", $CAreq, "-days", "30",
127 "-req", "-out", $CAcert, "-signkey", $CAkey,
128 "-extfile", $CAconf, "-extensions", "v3_ca"],
129 stdout => "err.ss")),
130 'convert request into self-signed cert');
131
132 skip 'failure', 14 unless
133 ok(run(app([@x509cmd, "-in", $CAcert,
134 "-x509toreq", "-signkey", $CAkey, "-out", $CAreq2],
135 stdout => "err.ss")),
136 'convert cert into a cert request');
137
138 skip 'failure', 13 unless
139 ok(run(app([@reqcmd, "-config", $dummycnf,
140 "-verify", "-in", $CAreq, "-noout"])),
141 'verify request 1');
142
143
144 skip 'failure', 12 unless
145 ok(run(app([@reqcmd, "-config", $dummycnf,
146 "-verify", "-in", $CAreq2, "-noout"])),
147 'verify request 2');
148
149 skip 'failure', 11 unless
150 ok(run(app([@verifycmd, "-CAfile", $CAcert, $CAcert])),
151 'verify signature');
152
153 skip 'failure', 10 unless
154 ok(run(app([@reqcmd, "-config", $Uconf,
155 "-out", $Ureq, "-keyout", $Ukey, @req_new],
156 stdout => "err.ss")),
157 'make a user cert request');
158
159 skip 'failure', 9 unless
160 ok(run(app([@x509cmd, "-CAcreateserial", "-in", $Ureq, "-days", "30",
161 "-req", "-out", $Ucert,
162 "-CA", $CAcert, "-CAkey", $CAkey, "-CAserial", $CAserial,
163 "-extfile", $Uconf, "-extensions", "v3_ee"],
164 stdout => "err.ss"))
165 && run(app([@verifycmd, "-CAfile", $CAcert, $Ucert])),
166 'sign user cert request');
167
168 skip 'failure', 8 unless
169 ok(run(app([@x509cmd,
170 "-subject", "-issuer", "-startdate", "-enddate",
171 "-noout", "-in", $Ucert])),
172 'Certificate details');
173
174 skip 'failure', 7 unless
175 subtest 'DSA certificate creation' => sub {
176 plan skip_all => "skipping DSA certificate creation"
177 if $no_dsa;
178
179 plan tests => 4;
180
181 SKIP: {
182 $ENV{CN2} = "DSA Certificate";
183 skip 'failure', 3 unless
184 ok(run(app([@reqcmd, "-config", $Uconf,
185 "-out", $Dreq, "-keyout", $Dkey,
186 @req_dsa],
187 stdout => "err.ss")),
188 "make a DSA user cert request");
189 skip 'failure', 2 unless
190 ok(run(app([@x509cmd, "-CAcreateserial",
191 "-in", $Dreq,
192 "-days", "30",
193 "-req",
194 "-out", $Dcert,
195 "-CA", $CAcert, "-CAkey", $CAkey,
196 "-CAserial", $CAserial,
197 "-extfile", $Uconf,
198 "-extensions", "v3_ee_dsa"],
199 stdout => "err.ss")),
200 "sign DSA user cert request");
201 skip 'failure', 1 unless
202 ok(run(app([@verifycmd, "-CAfile", $CAcert, $Dcert])),
203 "verify DSA user cert");
204 skip 'failure', 0 unless
205 ok(run(app([@x509cmd,
206 "-subject", "-issuer",
207 "-startdate", "-enddate", "-noout",
208 "-in", $Dcert])),
209 "DSA Certificate details");
210 }
211 };
212
213 skip 'failure', 6 unless
214 subtest 'ECDSA/ECDH certificate creation' => sub {
215 plan skip_all => "skipping ECDSA/ECDH certificate creation"
216 if $no_ec;
217
218 plan tests => 5;
219
220 SKIP: {
221 $ENV{CN2} = "ECDSA Certificate";
222 skip 'failure', 4 unless
223 ok(run(app(["openssl", "ecparam", "-name", "P-256",
224 "-out", "ecp.ss"])),
225 "make EC parameters");
226 skip 'failure', 3 unless
227 ok(run(app([@reqcmd, "-config", $Uconf,
228 "-out", $Ereq, "-keyout", $Ekey,
229 "-newkey", "ec:ecp.ss"],
230 stdout => "err.ss")),
231 "make a ECDSA/ECDH user cert request");
232 skip 'failure', 2 unless
233 ok(run(app([@x509cmd, "-CAcreateserial",
234 "-in", $Ereq,
235 "-days", "30",
236 "-req",
237 "-out", $Ecert,
238 "-CA", $CAcert, "-CAkey", $CAkey,
239 "-CAserial", $CAserial,
240 "-extfile", $Uconf,
241 "-extensions", "v3_ee_ec"],
242 stdout => "err.ss")),
243 "sign ECDSA/ECDH user cert request");
244 skip 'failure', 1 unless
245 ok(run(app([@verifycmd, "-CAfile", $CAcert, $Ecert])),
246 "verify ECDSA/ECDH user cert");
247 skip 'failure', 0 unless
248 ok(run(app([@x509cmd,
249 "-subject", "-issuer",
250 "-startdate", "-enddate", "-noout",
251 "-in", $Ecert])),
252 "ECDSA Certificate details");
253 }
254 };
255
256 skip 'failure', 5 unless
257 ok(run(app([@reqcmd, "-config", $P1conf,
258 "-out", $P1req, "-keyout", $P1key, @req_new],
259 stdout => "err.ss")),
260 'make a proxy cert request');
261
262
263 skip 'failure', 4 unless
264 ok(run(app([@x509cmd, "-CAcreateserial", "-in", $P1req, "-days", "30",
265 "-req", "-out", $P1cert,
266 "-CA", $Ucert, "-CAkey", $Ukey,
267 "-extfile", $P1conf, "-extensions", "v3_proxy"],
268 stdout => "err.ss")),
269 'sign proxy with user cert');
270
271 copy($Ucert, $P1intermediate);
272 run(app([@verifycmd, "-CAfile", $CAcert,
273 "-untrusted", $P1intermediate, $P1cert]));
274 ok(run(app([@x509cmd,
275 "-subject", "-issuer", "-startdate", "-enddate",
276 "-noout", "-in", $P1cert])),
277 'Certificate details');
278
279 skip 'failure', 2 unless
280 ok(run(app([@reqcmd, "-config", $P2conf,
281 "-out", $P2req, "-keyout", $P2key,
282 @req_new],
283 stdout => "err.ss")),
284 'make another proxy cert request');
285
286
287 skip 'failure', 1 unless
288 ok(run(app([@x509cmd, "-CAcreateserial", "-in", $P2req, "-days", "30",
289 "-req", "-out", $P2cert,
290 "-CA", $P1cert, "-CAkey", $P1key,
291 "-extfile", $P2conf, "-extensions", "v3_proxy"],
292 stdout => "err.ss")),
293 'sign second proxy cert request with the first proxy cert');
294
295
296 open OUT, ">", $P2intermediate;
297 copy($Ucert, \*OUT); copy($P1cert, \*OUT);
298 close OUT;
299 run(app([@verifycmd, "-CAfile", $CAcert,
300 "-untrusted", $P2intermediate, $P2cert]));
301 ok(run(app([@x509cmd,
302 "-subject", "-issuer", "-startdate", "-enddate",
303 "-noout", "-in", $P2cert])),
304 'Certificate details');
305 }
306 }
307
308 sub testssl {
309 my $key = shift || top_file("apps","server.pem");
310 my $cert = shift || top_file("apps","server.pem");
311 my $CAtmp = shift;
312 my @CA = $CAtmp ? ("-CAfile", $CAtmp) : ("-CApath", top_dir("certs"));
313 my @extra = @_;
314
315 my @ssltest = ("ssltest",
316 "-s_key", $key, "-s_cert", $cert,
317 "-c_key", $key, "-c_cert", $cert);
318
319 my $serverinfo = top_file("test","serverinfo.pem");
320
321 my $dsa_cert = 0;
322 if (grep /DSA Public Key/, run(app(["openssl", "x509", "-in", $cert,
323 "-text", "-noout"]), capture => 1)) {
324 $dsa_cert = 1;
325 }
326
327
328 # plan tests => 10;
329
330 subtest 'standard SSL tests' => sub {
331 ######################################################################
332 plan tests => 27;
333
334 SKIP: {
335 skip "SSLv3 is not supported by this OpenSSL build", 4
336 if disabled("ssl3");
337
338 ok(run(test([@ssltest, "-ssl3", @extra])),
339 'test sslv3');
340 ok(run(test([@ssltest, "-ssl3", "-server_auth", @CA, @extra])),
341 'test sslv3 with server authentication');
342 ok(run(test([@ssltest, "-ssl3", "-client_auth", @CA, @extra])),
343 'test sslv3 with client authentication');
344 ok(run(test([@ssltest, "-ssl3", "-server_auth", "-client_auth", @CA, @extra])),
345 'test sslv3 with both server and client authentication');
346 }
347
348 SKIP: {
349 skip "Neither SSLv3 nor any TLS version are supported by this OpenSSL build", 4
350 if $no_anytls;
351
352 ok(run(test([@ssltest, @extra])),
353 'test sslv2/sslv3');
354 ok(run(test([@ssltest, "-server_auth", @CA, @extra])),
355 'test sslv2/sslv3 with server authentication');
356 ok(run(test([@ssltest, "-client_auth", @CA, @extra])),
357 'test sslv2/sslv3 with client authentication');
358 ok(run(test([@ssltest, "-server_auth", "-client_auth", @CA, @extra])),
359 'test sslv2/sslv3 with both server and client authentication');
360 }
361
362 SKIP: {
363 skip "SSLv3 is not supported by this OpenSSL build", 4
364 if disabled("ssl3");
365
366 ok(run(test([@ssltest, "-bio_pair", "-ssl3", @extra])),
367 'test sslv3 via BIO pair');
368 ok(run(test([@ssltest, "-bio_pair", "-ssl3", "-server_auth", @CA, @extra])),
369 'test sslv3 with server authentication via BIO pair');
370 ok(run(test([@ssltest, "-bio_pair", "-ssl3", "-client_auth", @CA, @extra])),
371 'test sslv3 with client authentication via BIO pair');
372 ok(run(test([@ssltest, "-bio_pair", "-ssl3", "-server_auth", "-client_auth", @CA, @extra])),
373 'test sslv3 with both server and client authentication via BIO pair');
374 }
375
376 SKIP: {
377 skip "Neither SSLv3 nor any TLS version are supported by this OpenSSL build", 1
378 if $no_anytls;
379
380 ok(run(test([@ssltest, "-bio_pair", @extra])),
381 'test sslv2/sslv3 via BIO pair');
382 }
383
384 SKIP: {
385 skip "DTLSv1 is not supported by this OpenSSL build", 4
386 if disabled("dtls1");
387
388 ok(run(test([@ssltest, "-dtls1", @extra])),
389 'test dtlsv1');
390 ok(run(test([@ssltest, "-dtls1", "-server_auth", @CA, @extra])),
391 'test dtlsv1 with server authentication');
392 ok(run(test([@ssltest, "-dtls1", "-client_auth", @CA, @extra])),
393 'test dtlsv1 with client authentication');
394 ok(run(test([@ssltest, "-dtls1", "-server_auth", "-client_auth", @CA, @extra])),
395 'test dtlsv1 with both server and client authentication');
396 }
397
398 SKIP: {
399 skip "DTLSv1.2 is not supported by this OpenSSL build", 4
400 if disabled("dtls1_2");
401
402 ok(run(test([@ssltest, "-dtls12", @extra])),
403 'test dtlsv1.2');
404 ok(run(test([@ssltest, "-dtls12", "-server_auth", @CA, @extra])),
405 'test dtlsv1.2 with server authentication');
406 ok(run(test([@ssltest, "-dtls12", "-client_auth", @CA, @extra])),
407 'test dtlsv1.2 with client authentication');
408 ok(run(test([@ssltest, "-dtls12", "-server_auth", "-client_auth", @CA, @extra])),
409 'test dtlsv1.2 with both server and client authentication');
410 }
411
412 SKIP: {
413 skip "Neither SSLv3 nor any TLS version are supported by this OpenSSL build", 6
414 if $no_anytls;
415
416 SKIP: {
417 skip "skipping test of sslv2/sslv3 w/o (EC)DHE test", 1 if $dsa_cert;
418
419 ok(run(test([@ssltest, "-bio_pair", "-no_dhe", "-no_ecdhe", @extra])),
420 'test sslv2/sslv3 w/o (EC)DHE via BIO pair');
421 }
422
423 ok(run(test([@ssltest, "-bio_pair", "-dhe1024dsa", "-v", @extra])),
424 'test sslv2/sslv3 with 1024bit DHE via BIO pair');
425 ok(run(test([@ssltest, "-bio_pair", "-server_auth", @CA, @extra])),
426 'test sslv2/sslv3 with server authentication');
427 ok(run(test([@ssltest, "-bio_pair", "-client_auth", @CA, @extra])),
428 'test sslv2/sslv3 with client authentication via BIO pair');
429 ok(run(test([@ssltest, "-bio_pair", "-server_auth", "-client_auth", @CA, @extra])),
430 'test sslv2/sslv3 with both client and server authentication via BIO pair');
431 ok(run(test([@ssltest, "-bio_pair", "-server_auth", "-client_auth", "-app_verify", @CA, @extra])),
432 'test sslv2/sslv3 with both client and server authentication via BIO pair and app verify');
433 }
434 };
435
436 subtest "Testing ciphersuites" => sub {
437
438 my @exkeys = ();
439 my $ciphers = "-EXP:-PSK:-SRP:-kDH:-kECDHe";
440
441 if ($no_dh) {
442 note "skipping DHE tests\n";
443 $ciphers .= ":-kDHE";
444 }
445 if ($no_dsa) {
446 note "skipping DSA tests\n";
447 $ciphers .= ":-aDSA";
448 } else {
449 push @exkeys, "-s_cert", "certD.ss", "-s_key", "keyD.ss";
450 }
451
452 if ($no_ec) {
453 note "skipping EC tests\n";
454 $ciphers .= ":!aECDSA:!kECDH";
455 } else {
456 push @exkeys, "-s_cert", "certE.ss", "-s_key", "keyE.ss";
457 }
458
459 my @protocols = ();
460 # FIXME: I feel unsure about the following line, is that really just TLSv1.2, or is it all of the SSLv3/TLS protocols?
461 push(@protocols, "TLSv1.2") unless $no_tls1_2;
462 push(@protocols, "SSLv3") unless $no_ssl3;
463 my $protocolciphersuitcount = 0;
464 my %ciphersuites =
465 map { my @c =
466 map { split(/:/, $_) }
467 run(app(["openssl", "ciphers", "${_}:$ciphers"]),
468 capture => 1);
469 map { s/\R//; } @c; # chomp @c;
470 $protocolciphersuitcount += scalar @c;
471 $_ => [ @c ] } @protocols;
472
473 # The count of protocols is because in addition to the ciphersuits
474 # we got above, we're running a weak DH test for each protocol
475 plan tests => $protocolciphersuitcount + scalar(@protocols);
476
477 foreach my $protocol (@protocols) {
478 note "Testing ciphersuites for $protocol";
479 foreach my $cipher (@{$ciphersuites{$protocol}}) {
480 ok(run(test([@ssltest, @exkeys, "-cipher", $cipher,
481 $protocol eq "SSLv3" ? ("-ssl3") : ()])),
482 "Testing $cipher");
483 }
484 is(run(test([@ssltest,
485 "-s_cipher", "EDH",
486 "-c_cipher", 'EDH:@SECLEVEL=1',
487 "-dhe512",
488 $protocol eq "SSLv3" ? ("-ssl3") : ()])), 0,
489 "testing connection with weak DH, expecting failure");
490 }
491 };
492
493 subtest 'RSA/(EC)DHE/PSK tests' => sub {
494 ######################################################################
495
496 plan tests => 5;
497
498 SKIP: {
499 skip "TLSv1.0 is not supported by this OpenSSL build", 5
500 if $no_tls1;
501
502 SKIP: {
503 skip "skipping anonymous DH tests", 1
504 if ($no_dh);
505
506 ok(run(test([@ssltest, "-v", "-bio_pair", "-tls1", "-cipher", "ADH", "-dhe1024dsa", "-num", "10", "-f", "-time", @extra])),
507 'test tlsv1 with 1024bit anonymous DH, multiple handshakes');
508 }
509
510 SKIP: {
511 skip "skipping RSA tests", 2
512 if $no_rsa;
513
514 ok(run(test(["ssltest", "-v", "-bio_pair", "-tls1", "-s_cert", top_file("apps","server2.pem"), "-no_dhe", "-no_ecdhe", "-num", "10", "-f", "-time", @extra])),
515 'test tlsv1 with 1024bit RSA, no (EC)DHE, multiple handshakes');
516
517 skip "skipping RSA+DHE tests", 1
518 if $no_dh;
519
520 ok(run(test(["ssltest", "-v", "-bio_pair", "-tls1", "-s_cert", top_file("apps","server2.pem"), "-dhe1024dsa", "-num", "10", "-f", "-time", @extra])),
521 'test tlsv1 with 1024bit RSA, 1024bit DHE, multiple handshakes');
522 }
523
524 SKIP: {
525 skip "skipping PSK tests", 2
526 if ($no_psk);
527
528 ok(run(test([@ssltest, "-tls1", "-cipher", "PSK", "-psk", "abc123", @extra])),
529 'test tls1 with PSK');
530
531 ok(run(test([@ssltest, "-bio_pair", "-tls1", "-cipher", "PSK", "-psk", "abc123", @extra])),
532 'test tls1 with PSK via BIO pair');
533 }
534 }
535
536 };
537
538 subtest 'Next Protocol Negotiation Tests' => sub {
539 ######################################################################
540
541 plan tests => 7;
542
543 SKIP: {
544 skip "TLSv1.0 is not supported by this OpenSSL build", 7
545 if $no_tls1;
546
547 ok(run(test([@ssltest, "-bio_pair", "-tls1", "-npn_client"])));
548 ok(run(test([@ssltest, "-bio_pair", "-tls1", "-npn_server"])));
549 ok(run(test([@ssltest, "-bio_pair", "-tls1", "-npn_server_reject"])));
550 ok(run(test([@ssltest, "-bio_pair", "-tls1", "-npn_client", "-npn_server_reject"])));
551 ok(run(test([@ssltest, "-bio_pair", "-tls1", "-npn_client", "-npn_server"])));
552 ok(run(test([@ssltest, "-bio_pair", "-tls1", "-npn_client", "-npn_server", "-num", "2"])));
553 ok(run(test([@ssltest, "-bio_pair", "-tls1", "-npn_client", "-npn_server", "-num", "2", "-reuse"])));
554 }
555 };
556
557 subtest 'Custom Extension tests' => sub {
558 ######################################################################
559
560 plan tests => 1;
561
562 SKIP: {
563 skip "TLSv1.0 is not supported by this OpenSSL build", 7
564 if $no_tls1;
565
566 ok(run(test([@ssltest, "-bio_pair", "-tls1", "-custom_ext"])),
567 'test tls1 with custom extensions');
568 }
569 };
570
571 subtest 'Serverinfo tests' => sub {
572 ######################################################################
573
574 plan tests => 5;
575
576 SKIP: {
577 skip "TLSv1.0 is not supported by this OpenSSL build", 5
578 if $no_tls1;
579
580 note('echo test tls1 with serverinfo');
581 ok(run(test([@ssltest, "-bio_pair", "-tls1", "-serverinfo_file", $serverinfo])));
582 ok(run(test([@ssltest, "-bio_pair", "-tls1", "-serverinfo_file", $serverinfo, "-serverinfo_sct"])));
583 ok(run(test([@ssltest, "-bio_pair", "-tls1", "-serverinfo_file", $serverinfo, "-serverinfo_tack"])));
584 ok(run(test([@ssltest, "-bio_pair", "-tls1", "-serverinfo_file", $serverinfo, "-serverinfo_sct", "-serverinfo_tack"])));
585 ok(run(test([@ssltest, "-bio_pair", "-tls1", "-custom_ext", "-serverinfo_file", $serverinfo, "-serverinfo_sct", "-serverinfo_tack"])));
586 }
587 };
588
589 subtest 'ALPN tests' => sub {
590 ######################################################################
591
592 plan tests => 12;
593
594 SKIP: {
595 skip "TLSv1.0 is not supported by this OpenSSL build", 12
596 if $no_tls1;
597
598 ok(run(test([@ssltest, "-bio_pair", "-tls1", "-alpn_client", "foo", "-alpn_server", "bar"])));
599 ok(run(test([@ssltest, "-bio_pair", "-tls1", "-alpn_client", "foo", "-alpn_server", "foo", "-alpn_expected", "foo"])));
600 ok(run(test([@ssltest, "-bio_pair", "-tls1", "-alpn_client", "foo,bar", "-alpn_server", "foo", "-alpn_expected", "foo"])));
601 ok(run(test([@ssltest, "-bio_pair", "-tls1", "-alpn_client", "bar,foo", "-alpn_server", "foo", "-alpn_expected", "foo"])));
602 ok(run(test([@ssltest, "-bio_pair", "-tls1", "-alpn_client", "bar,foo", "-alpn_server", "foo,bar", "-alpn_expected", "foo"])));
603 ok(run(test([@ssltest, "-bio_pair", "-tls1", "-alpn_client", "bar,foo", "-alpn_server", "bar,foo", "-alpn_expected", "bar"])));
604 ok(run(test([@ssltest, "-bio_pair", "-tls1", "-alpn_client", "foo,bar", "-alpn_server", "bar,foo", "-alpn_expected", "bar"])));
605 ok(run(test([@ssltest, "-bio_pair", "-tls1", "-alpn_client", "baz", "-alpn_server", "bar,foo"])));
606
607 SKIP: {
608 skip "skipping SRP tests", 4
609 if $no_srp;
610
611 ok(run(test([@ssltest, "-tls1", "-cipher", "SRP", "-srpuser", "test", "-srppass", "abc123"])),
612 'test tls1 with SRP');
613
614 ok(run(test([@ssltest, "-bio_pair", "-tls1", "-cipher", "SRP", "-srpuser", "test", "-srppass", "abc123"])),
615 'test tls1 with SRP via BIO pair');
616
617 ok(run(test([@ssltest, "-tls1", "-cipher", "aSRP", "-srpuser", "test", "-srppass", "abc123"])),
618 'test tls1 with SRP auth');
619
620 ok(run(test([@ssltest, "-bio_pair", "-tls1", "-cipher", "aSRP", "-srpuser", "test", "-srppass", "abc123"])),
621 'test tls1 with SRP auth via BIO pair');
622 }
623 }
624 };
625
626 subtest 'Multi-buffer tests' => sub {
627 ######################################################################
628
629 plan tests => 2;
630
631 SKIP: {
632 skip "Neither SSLv3 nor any TLS version are supported by this OpenSSL build", 2
633 if $no_anytls;
634
635 skip "skipping multi-buffer tests", 2
636 if @extra || (POSIX::uname())[4] ne "x86_64";
637
638 ok(run(test([@ssltest, "-cipher", "AES128-SHA", "-bytes", "8m"])));
639
640 # We happen to know that AES128-SHA256 is TLSv1.2 only... for now.
641 skip "TLSv1.2 is not supported by this OpenSSL configuration", 1
642 if $no_tls1_2;
643
644 ok(run(test([@ssltest, "-cipher", "AES128-SHA256", "-bytes", "8m"])));
645 }
646 };
647
648 subtest 'TLS Version min/max tests' => sub {
649 my @protos;
650 push(@protos, "ssl3") unless $no_ssl3;
651 push(@protos, "tls1") unless $no_tls1;
652 push(@protos, "tls1.1") unless $no_tls1_1;
653 push(@protos, "tls1.2") unless $no_tls1_2;
654 my @minprotos = (undef, @protos);
655 my @maxprotos = (@protos, undef);
656 my @shdprotos = (@protos, $protos[$#protos]);
657 my $n = ((@protos+2) * (@protos+3))/2 - 2;
658 my $ntests = $n * $n;
659 plan tests => $ntests;
660 SKIP: {
661 skip "TLS disabled", 1 if $ntests == 1;
662
663 my $should;
664 for (my $smin = 0; $smin < @minprotos; ++$smin) {
665 for (my $smax = $smin ? $smin - 1 : 0; $smax < @maxprotos; ++$smax) {
666 for (my $cmin = 0; $cmin < @minprotos; ++$cmin) {
667 for (my $cmax = $cmin ? $cmin - 1 : 0; $cmax < @maxprotos; ++$cmax) {
668 if ($cmax < $smin-1) {
669 $should = "fail-server";
670 } elsif ($smax < $cmin-1) {
671 $should = "fail-client";
672 } elsif ($cmax > $smax) {
673 $should = $shdprotos[$smax];
674 } else {
675 $should = $shdprotos[$cmax];
676 }
677
678 my @args = @ssltest;
679 push(@args, "-should_negotiate", $should);
680 push(@args, "-server_min_proto", $minprotos[$smin])
681 if (defined($minprotos[$smin]));
682 push(@args, "-server_max_proto", $maxprotos[$smax])
683 if (defined($maxprotos[$smax]));
684 push(@args, "-client_min_proto", $minprotos[$cmin])
685 if (defined($minprotos[$cmin]));
686 push(@args, "-client_max_proto", $maxprotos[$cmax])
687 if (defined($maxprotos[$cmax]));
688 my $ok = run(test[@args]);
689 if (! $ok) {
690 print STDERR "\nsmin=$smin, smax=$smax, cmin=$cmin, cmax=$cmax\n";
691 print STDERR "\nFailed: @args\n";
692 }
693 ok($ok);
694 }}}}}
695 };
696
697 subtest 'DTLS Version min/max tests' => sub {
698 my @protos;
699 push(@protos, "dtls1") unless ($no_dtls1 || $no_dtls);
700 push(@protos, "dtls1.2") unless ($no_dtls1_2 || $no_dtls);
701 my @minprotos = (undef, @protos);
702 my @maxprotos = (@protos, undef);
703 my @shdprotos = (@protos, $protos[$#protos]);
704 my $n = ((@protos+2) * (@protos+3))/2 - 2;
705 my $ntests = $n * $n;
706 plan tests => $ntests;
707 SKIP: {
708 skip "DTLS disabled", 1 if $ntests == 1;
709
710 my $should;
711 for (my $smin = 0; $smin < @minprotos; ++$smin) {
712 for (my $smax = $smin ? $smin - 1 : 0; $smax < @maxprotos; ++$smax) {
713 for (my $cmin = 0; $cmin < @minprotos; ++$cmin) {
714 for (my $cmax = $cmin ? $cmin - 1 : 0; $cmax < @maxprotos; ++$cmax) {
715 if ($cmax < $smin-1) {
716 $should = "fail-server";
717 } elsif ($smax < $cmin-1) {
718 $should = "fail-client";
719 } elsif ($cmax > $smax) {
720 $should = $shdprotos[$smax];
721 } else {
722 $should = $shdprotos[$cmax];
723 }
724
725 my @args = (@ssltest, "-dtls");
726 push(@args, "-should_negotiate", $should);
727 push(@args, "-server_min_proto", $minprotos[$smin])
728 if (defined($minprotos[$smin]));
729 push(@args, "-server_max_proto", $maxprotos[$smax])
730 if (defined($maxprotos[$smax]));
731 push(@args, "-client_min_proto", $minprotos[$cmin])
732 if (defined($minprotos[$cmin]));
733 push(@args, "-client_max_proto", $maxprotos[$cmax])
734 if (defined($maxprotos[$cmax]));
735 my $ok = run(test[@args]);
736 if (! $ok) {
737 print STDERR "\nsmin=$smin, smax=$smax, cmin=$cmin, cmax=$cmax\n";
738 print STDERR "\nFailed: @args\n";
739 }
740 ok($ok);
741 }}}}}
742 };
743 }
744
745 sub testsslproxy {
746 my $key = shift || top_file("apps","server.pem");
747 my $cert = shift || top_file("apps","server.pem");
748 my $CAtmp = shift;
749 my @CA = $CAtmp ? ("-CAfile", $CAtmp) : ("-CApath", top_dir("certs"));
750 my @extra = @_;
751
752 my @ssltest = ("ssltest",
753 "-s_key", $key, "-s_cert", $cert,
754 "-c_key", $key, "-c_cert", $cert);
755
756 # plan tests => 16;
757
758 note('Testing a lot of proxy conditions.');
759
760 # We happen to know that certP1.ss has policy letters "AB" and
761 # certP2.ss has policy letters "BC". However, because certP2.ss
762 # has certP1.ss as issuer, when it's used, both their policy
763 # letters get combined into just "B".
764 # The policy letter(s) then get filtered with the given auth letter
765 # in the table below, and the result gets tested with the given
766 # condition. For details, read ssltest.c
767 #
768 # certfilename => [ [ auth, cond, expected result ] ... ]
769 my %expected = ( "certP1.ss" => [ [ [ 'A', 'A' ], 1 ],
770 [ [ 'A', 'B' ], 0 ],
771 [ [ 'A', 'C' ], 0 ],
772 [ [ 'A', 'A|B&!C' ], 1 ],
773 [ [ 'B', 'A' ], 0 ],
774 [ [ 'B', 'B' ], 1 ],
775 [ [ 'B', 'C' ], 0 ],
776 [ [ 'B', 'A|B&!C' ], 1 ],
777 [ [ 'C', 'A' ], 0 ],
778 [ [ 'C', 'B' ], 0 ],
779 [ [ 'C', 'C' ], 0 ],
780 [ [ 'C', 'A|B&!C' ], 0 ],
781 [ [ 'BC', 'A' ], 0 ],
782 [ [ 'BC', 'B' ], 1 ],
783 [ [ 'BC', 'C' ], 0 ],
784 [ [ 'BC', 'A|B&!C' ], 1 ] ],
785 "certP2.ss" => [ [ [ 'A', 'A' ], 0 ],
786 [ [ 'A', 'B' ], 0 ],
787 [ [ 'A', 'C' ], 0 ],
788 [ [ 'A', 'A|B&!C' ], 0 ],
789 [ [ 'B', 'A' ], 0 ],
790 [ [ 'B', 'B' ], 1 ],
791 [ [ 'B', 'C' ], 0 ],
792 [ [ 'B', 'A|B&!C' ], 1 ],
793 [ [ 'C', 'A' ], 0 ],
794 [ [ 'C', 'B' ], 0 ],
795 [ [ 'C', 'C' ], 0 ],
796 [ [ 'C', 'A|B&!C' ], 0 ],
797 [ [ 'BC', 'A' ], 0 ],
798 [ [ 'BC', 'B' ], 1 ],
799 [ [ 'BC', 'C' ], 0 ],
800 [ [ 'BC', 'A|B&!C' ], 1 ] ] );
801
802 SKIP: {
803 skip "Neither SSLv3 nor any TLS version are supported by this OpenSSL build", scalar(@{$expected{$cert}})
804 if $no_anytls;
805
806 foreach (@{$expected{$cert}}) {
807 my $auth = $_->[0]->[0];
808 my $cond = $_->[0]->[1];
809 my $res = $_->[1];
810 is(run(test([@ssltest, "-server_auth", @CA,
811 "-proxy", "-proxy_auth", $auth,
812 "-proxy_cond", $cond])), $res,
813 "test tlsv1, server auth, proxy auth $auth and cond $cond (expect "
814 .($res ? "success" : "failure").")");
815 }
816 }
817 }