Add partial DH and ECDH primitives only testing to fipsalgtest.pl
[openssl.git] / fips / fipsalgtest.pl
1 #!/usr/bin/perl -w
2 # Perl utility to run or verify FIPS 140-2 CAVP algorithm tests based on the
3 # pathnames of input algorithm test files actually present (the unqualified
4 # file names are consistent but the pathnames are not).
5 #
6
7 # FIPS test definitions
8 # List of all the unqualified file names we expect and command lines to run
9
10 # DSA tests
11 my @fips_dsa_test_list = (
12
13     "DSA",
14
15     [ "PQGGen",  "fips_dssvs pqg" ],
16     [ "KeyPair", "fips_dssvs keypair" ],
17     [ "SigGen",  "fips_dssvs siggen" ],
18     [ "SigVer",  "fips_dssvs sigver" ]
19
20 );
21
22 my @fips_dsa_pqgver_test_list = (
23
24     [ "PQGVer",  "fips_dssvs pqgver" ]
25
26 );
27
28 # RSA tests
29
30 my @fips_rsa_test_list = (
31
32     "RSA",
33
34     [ "SigGen15",  "fips_rsastest" ],
35     [ "SigVer15",  "fips_rsavtest" ],
36     [ "SigVerRSA", "fips_rsavtest -x931" ],
37     [ "KeyGenRSA", "fips_rsagtest" ],
38     [ "SigGenRSA", "fips_rsastest -x931" ]
39
40 );
41
42 # Special cases for PSS. The filename itself is
43 # not sufficient to determine the test. Addditionally we
44 # need to examine the file contents to determine the salt length
45 # In these cases the test filename has (saltlen) appended.
46
47 # RSA PSS salt length 0 tests
48
49 my @fips_rsa_pss0_test_list = (
50
51     [ "SigGenPSS(0)", "fips_rsastest -saltlen 0",
52                                         '^\s*#\s*salt\s+len:\s+0\s*$' ],
53     [ "SigVerPSS(0)", "fips_rsavtest -saltlen 0",
54                                         '^\s*#\s*salt\s+len:\s+0\s*$' ],
55
56 );
57
58 # RSA PSS salt length 62 tests
59
60 my @fips_rsa_pss62_test_list = (
61     [ "SigGenPSS(62)", "fips_rsastest -saltlen 62",
62                                         '^\s*#\s*salt\s+len:\s+62\s*$' ],
63     [ "SigVerPSS(62)", "fips_rsavtest -saltlen 62",
64                                         '^\s*#\s*salt\s+len:\s+62\s*$' ],
65 );
66
67 # SHA tests
68
69 my @fips_sha_test_list = (
70
71     "SHA",
72
73     [ "SHA1LongMsg",    "fips_shatest" ],
74     [ "SHA1Monte",      "fips_shatest" ],
75     [ "SHA1ShortMsg",   "fips_shatest" ],
76     [ "SHA224LongMsg",  "fips_shatest" ],
77     [ "SHA224Monte",    "fips_shatest" ],
78     [ "SHA224ShortMsg", "fips_shatest" ],
79     [ "SHA256LongMsg",  "fips_shatest" ],
80     [ "SHA256Monte",    "fips_shatest" ],
81     [ "SHA256ShortMsg", "fips_shatest" ],
82     [ "SHA384LongMsg",  "fips_shatest" ],
83     [ "SHA384Monte",    "fips_shatest" ],
84     [ "SHA384ShortMsg", "fips_shatest" ],
85     [ "SHA512LongMsg",  "fips_shatest" ],
86     [ "SHA512Monte",    "fips_shatest" ],
87     [ "SHA512ShortMsg", "fips_shatest" ]
88
89 );
90
91 # HMAC
92
93 my @fips_hmac_test_list = (
94
95     "HMAC",
96
97     [ "HMAC", "fips_hmactest" ]
98
99 );
100
101 # CMAC
102
103 my @fips_cmac_test_list = (
104
105     "CMAC",
106
107     [ "CMACGenAES128", "fips_cmactest -a aes128 -g" ],
108     [ "CMACVerAES128", "fips_cmactest -a aes128 -v" ],
109     [ "CMACGenAES192", "fips_cmactest -a aes192 -g" ],
110     [ "CMACVerAES192", "fips_cmactest -a aes192 -v" ],
111     [ "CMACGenAES256", "fips_cmactest -a aes256 -g" ],
112     [ "CMACVerAES256", "fips_cmactest -a aes256 -v" ],
113     [ "CMACGenTDES3", "fips_cmactest -a tdes3 -g" ],
114     [ "CMACVerTDES3", "fips_cmactest -a tdes3 -v" ],
115
116 );
117
118 # RAND tests, AES version
119
120 my @fips_rand_aes_test_list = (
121
122     "RAND (AES)",
123
124     [ "ANSI931_AES128MCT", "fips_rngvs mct" ],
125     [ "ANSI931_AES192MCT", "fips_rngvs mct" ],
126     [ "ANSI931_AES256MCT", "fips_rngvs mct" ],
127     [ "ANSI931_AES128VST", "fips_rngvs vst" ],
128     [ "ANSI931_AES192VST", "fips_rngvs vst" ],
129     [ "ANSI931_AES256VST", "fips_rngvs vst" ]
130
131 );
132
133 # RAND tests, DES2 version
134
135 my @fips_rand_des2_test_list = (
136
137     "RAND (DES2)",
138
139     [ "ANSI931_TDES2MCT", "fips_rngvs mct" ],
140     [ "ANSI931_TDES2VST", "fips_rngvs vst" ]
141
142 );
143
144 # AES tests
145
146 my @fips_aes_test_list = (
147
148     "AES",
149
150     [ "CBCGFSbox128",     "fips_aesavs -f" ],
151     [ "CBCGFSbox192",     "fips_aesavs -f" ],
152     [ "CBCGFSbox256",     "fips_aesavs -f" ],
153     [ "CBCKeySbox128",    "fips_aesavs -f" ],
154     [ "CBCKeySbox192",    "fips_aesavs -f" ],
155     [ "CBCKeySbox256",    "fips_aesavs -f" ],
156     [ "CBCMCT128",        "fips_aesavs -f" ],
157     [ "CBCMCT192",        "fips_aesavs -f" ],
158     [ "CBCMCT256",        "fips_aesavs -f" ],
159     [ "CBCMMT128",        "fips_aesavs -f" ],
160     [ "CBCMMT192",        "fips_aesavs -f" ],
161     [ "CBCMMT256",        "fips_aesavs -f" ],
162     [ "CBCVarKey128",     "fips_aesavs -f" ],
163     [ "CBCVarKey192",     "fips_aesavs -f" ],
164     [ "CBCVarKey256",     "fips_aesavs -f" ],
165     [ "CBCVarTxt128",     "fips_aesavs -f" ],
166     [ "CBCVarTxt192",     "fips_aesavs -f" ],
167     [ "CBCVarTxt256",     "fips_aesavs -f" ],
168     [ "CFB128GFSbox128",  "fips_aesavs -f" ],
169     [ "CFB128GFSbox192",  "fips_aesavs -f" ],
170     [ "CFB128GFSbox256",  "fips_aesavs -f" ],
171     [ "CFB128KeySbox128", "fips_aesavs -f" ],
172     [ "CFB128KeySbox192", "fips_aesavs -f" ],
173     [ "CFB128KeySbox256", "fips_aesavs -f" ],
174     [ "CFB128MCT128",     "fips_aesavs -f" ],
175     [ "CFB128MCT192",     "fips_aesavs -f" ],
176     [ "CFB128MCT256",     "fips_aesavs -f" ],
177     [ "CFB128MMT128",     "fips_aesavs -f" ],
178     [ "CFB128MMT192",     "fips_aesavs -f" ],
179     [ "CFB128MMT256",     "fips_aesavs -f" ],
180     [ "CFB128VarKey128",  "fips_aesavs -f" ],
181     [ "CFB128VarKey192",  "fips_aesavs -f" ],
182     [ "CFB128VarKey256",  "fips_aesavs -f" ],
183     [ "CFB128VarTxt128",  "fips_aesavs -f" ],
184     [ "CFB128VarTxt192",  "fips_aesavs -f" ],
185     [ "CFB128VarTxt256",  "fips_aesavs -f" ],
186     [ "CFB8GFSbox128",    "fips_aesavs -f" ],
187     [ "CFB8GFSbox192",    "fips_aesavs -f" ],
188     [ "CFB8GFSbox256",    "fips_aesavs -f" ],
189     [ "CFB8KeySbox128",   "fips_aesavs -f" ],
190     [ "CFB8KeySbox192",   "fips_aesavs -f" ],
191     [ "CFB8KeySbox256",   "fips_aesavs -f" ],
192     [ "CFB8MCT128",       "fips_aesavs -f" ],
193     [ "CFB8MCT192",       "fips_aesavs -f" ],
194     [ "CFB8MCT256",       "fips_aesavs -f" ],
195     [ "CFB8MMT128",       "fips_aesavs -f" ],
196     [ "CFB8MMT192",       "fips_aesavs -f" ],
197     [ "CFB8MMT256",       "fips_aesavs -f" ],
198     [ "CFB8VarKey128",    "fips_aesavs -f" ],
199     [ "CFB8VarKey192",    "fips_aesavs -f" ],
200     [ "CFB8VarKey256",    "fips_aesavs -f" ],
201     [ "CFB8VarTxt128",    "fips_aesavs -f" ],
202     [ "CFB8VarTxt192",    "fips_aesavs -f" ],
203     [ "CFB8VarTxt256",    "fips_aesavs -f" ],
204
205     [ "ECBGFSbox128",  "fips_aesavs -f" ],
206     [ "ECBGFSbox192",  "fips_aesavs -f" ],
207     [ "ECBGFSbox256",  "fips_aesavs -f" ],
208     [ "ECBKeySbox128", "fips_aesavs -f" ],
209     [ "ECBKeySbox192", "fips_aesavs -f" ],
210     [ "ECBKeySbox256", "fips_aesavs -f" ],
211     [ "ECBMCT128",     "fips_aesavs -f" ],
212     [ "ECBMCT192",     "fips_aesavs -f" ],
213     [ "ECBMCT256",     "fips_aesavs -f" ],
214     [ "ECBMMT128",     "fips_aesavs -f" ],
215     [ "ECBMMT192",     "fips_aesavs -f" ],
216     [ "ECBMMT256",     "fips_aesavs -f" ],
217     [ "ECBVarKey128",  "fips_aesavs -f" ],
218     [ "ECBVarKey192",  "fips_aesavs -f" ],
219     [ "ECBVarKey256",  "fips_aesavs -f" ],
220     [ "ECBVarTxt128",  "fips_aesavs -f" ],
221     [ "ECBVarTxt192",  "fips_aesavs -f" ],
222     [ "ECBVarTxt256",  "fips_aesavs -f" ],
223     [ "OFBGFSbox128",  "fips_aesavs -f" ],
224     [ "OFBGFSbox192",  "fips_aesavs -f" ],
225     [ "OFBGFSbox256",  "fips_aesavs -f" ],
226     [ "OFBKeySbox128", "fips_aesavs -f" ],
227     [ "OFBKeySbox192", "fips_aesavs -f" ],
228     [ "OFBKeySbox256", "fips_aesavs -f" ],
229     [ "OFBMCT128",     "fips_aesavs -f" ],
230     [ "OFBMCT192",     "fips_aesavs -f" ],
231     [ "OFBMCT256",     "fips_aesavs -f" ],
232     [ "OFBMMT128",     "fips_aesavs -f" ],
233     [ "OFBMMT192",     "fips_aesavs -f" ],
234     [ "OFBMMT256",     "fips_aesavs -f" ],
235     [ "OFBVarKey128",  "fips_aesavs -f" ],
236     [ "OFBVarKey192",  "fips_aesavs -f" ],
237     [ "OFBVarKey256",  "fips_aesavs -f" ],
238     [ "OFBVarTxt128",  "fips_aesavs -f" ],
239     [ "OFBVarTxt192",  "fips_aesavs -f" ],
240     [ "OFBVarTxt256",  "fips_aesavs -f" ]
241
242 );
243
244 my @fips_aes_cfb1_test_list = (
245
246     # AES CFB1 tests
247
248     [ "CFB1GFSbox128",  "fips_aesavs -f" ],
249     [ "CFB1GFSbox192",  "fips_aesavs -f" ],
250     [ "CFB1GFSbox256",  "fips_aesavs -f" ],
251     [ "CFB1KeySbox128", "fips_aesavs -f" ],
252     [ "CFB1KeySbox192", "fips_aesavs -f" ],
253     [ "CFB1KeySbox256", "fips_aesavs -f" ],
254     [ "CFB1MCT128",     "fips_aesavs -f" ],
255     [ "CFB1MCT192",     "fips_aesavs -f" ],
256     [ "CFB1MCT256",     "fips_aesavs -f" ],
257     [ "CFB1MMT128",     "fips_aesavs -f" ],
258     [ "CFB1MMT192",     "fips_aesavs -f" ],
259     [ "CFB1MMT256",     "fips_aesavs -f" ],
260     [ "CFB1VarKey128",  "fips_aesavs -f" ],
261     [ "CFB1VarKey192",  "fips_aesavs -f" ],
262     [ "CFB1VarKey256",  "fips_aesavs -f" ],
263     [ "CFB1VarTxt128",  "fips_aesavs -f" ],
264     [ "CFB1VarTxt192",  "fips_aesavs -f" ],
265     [ "CFB1VarTxt256",  "fips_aesavs -f" ]
266
267 );
268
269 my @fips_aes_ccm_test_list = (
270
271     # AES CCM tests
272
273     "AES CCM",
274
275     [ "DVPT128",  "fips_gcmtest -ccm" ],
276     [ "DVPT192",  "fips_gcmtest -ccm" ],
277     [ "DVPT256",  "fips_gcmtest -ccm" ],
278     [ "VADT128",  "fips_gcmtest -ccm" ],
279     [ "VADT192",  "fips_gcmtest -ccm" ],
280     [ "VADT256",  "fips_gcmtest -ccm" ],
281     [ "VNT128",  "fips_gcmtest -ccm" ],
282     [ "VNT192",  "fips_gcmtest -ccm" ],
283     [ "VNT256",  "fips_gcmtest -ccm" ],
284     [ "VPT128",  "fips_gcmtest -ccm" ],
285     [ "VPT192",  "fips_gcmtest -ccm" ],
286     [ "VPT256",  "fips_gcmtest -ccm" ],
287     [ "VTT128",  "fips_gcmtest -ccm" ],
288     [ "VTT192",  "fips_gcmtest -ccm" ],
289     [ "VTT256",  "fips_gcmtest -ccm" ]
290
291 );
292
293 # Triple DES tests
294
295 my @fips_des3_test_list = (
296
297     "Triple DES",
298
299     [ "TCBCinvperm",   "fips_desmovs -f" ],
300     [ "TCBCMMT1",      "fips_desmovs -f" ],
301     [ "TCBCMMT2",      "fips_desmovs -f" ],
302     [ "TCBCMMT3",      "fips_desmovs -f" ],
303     [ "TCBCMonte1",    "fips_desmovs -f" ],
304     [ "TCBCMonte2",    "fips_desmovs -f" ],
305     [ "TCBCMonte3",    "fips_desmovs -f" ],
306     [ "TCBCpermop",    "fips_desmovs -f" ],
307     [ "TCBCsubtab",    "fips_desmovs -f" ],
308     [ "TCBCvarkey",    "fips_desmovs -f" ],
309     [ "TCBCvartext",   "fips_desmovs -f" ],
310     [ "TCFB64invperm", "fips_desmovs -f" ],
311     [ "TCFB64MMT1",    "fips_desmovs -f" ],
312     [ "TCFB64MMT2",    "fips_desmovs -f" ],
313     [ "TCFB64MMT3",    "fips_desmovs -f" ],
314     [ "TCFB64Monte1",  "fips_desmovs -f" ],
315     [ "TCFB64Monte2",  "fips_desmovs -f" ],
316     [ "TCFB64Monte3",  "fips_desmovs -f" ],
317     [ "TCFB64permop",  "fips_desmovs -f" ],
318     [ "TCFB64subtab",  "fips_desmovs -f" ],
319     [ "TCFB64varkey",  "fips_desmovs -f" ],
320     [ "TCFB64vartext", "fips_desmovs -f" ],
321     [ "TCFB8invperm",  "fips_desmovs -f" ],
322     [ "TCFB8MMT1",     "fips_desmovs -f" ],
323     [ "TCFB8MMT2",     "fips_desmovs -f" ],
324     [ "TCFB8MMT3",     "fips_desmovs -f" ],
325     [ "TCFB8Monte1",   "fips_desmovs -f" ],
326     [ "TCFB8Monte2",   "fips_desmovs -f" ],
327     [ "TCFB8Monte3",   "fips_desmovs -f" ],
328     [ "TCFB8permop",   "fips_desmovs -f" ],
329     [ "TCFB8subtab",   "fips_desmovs -f" ],
330     [ "TCFB8varkey",   "fips_desmovs -f" ],
331     [ "TCFB8vartext",  "fips_desmovs -f" ],
332     [ "TECBinvperm",   "fips_desmovs -f" ],
333     [ "TECBMMT1",      "fips_desmovs -f" ],
334     [ "TECBMMT2",      "fips_desmovs -f" ],
335     [ "TECBMMT3",      "fips_desmovs -f" ],
336     [ "TECBMonte1",    "fips_desmovs -f" ],
337     [ "TECBMonte2",    "fips_desmovs -f" ],
338     [ "TECBMonte3",    "fips_desmovs -f" ],
339     [ "TECBpermop",    "fips_desmovs -f" ],
340     [ "TECBsubtab",    "fips_desmovs -f" ],
341     [ "TECBvarkey",    "fips_desmovs -f" ],
342     [ "TECBvartext",   "fips_desmovs -f" ],
343     [ "TOFBinvperm",   "fips_desmovs -f" ],
344     [ "TOFBMMT1",      "fips_desmovs -f" ],
345     [ "TOFBMMT2",      "fips_desmovs -f" ],
346     [ "TOFBMMT3",      "fips_desmovs -f" ],
347     [ "TOFBMonte1",    "fips_desmovs -f" ],
348     [ "TOFBMonte2",    "fips_desmovs -f" ],
349     [ "TOFBMonte3",    "fips_desmovs -f" ],
350     [ "TOFBpermop",    "fips_desmovs -f" ],
351     [ "TOFBsubtab",    "fips_desmovs -f" ],
352     [ "TOFBvarkey",    "fips_desmovs -f" ],
353     [ "TOFBvartext",   "fips_desmovs -f" ]
354
355 );
356
357 my @fips_des3_cfb1_test_list = (
358
359     # DES3 CFB1 tests
360
361     [ "TCFB1invperm",  "fips_desmovs -f" ],
362     [ "TCFB1MMT1",     "fips_desmovs -f" ],
363     [ "TCFB1MMT2",     "fips_desmovs -f" ],
364     [ "TCFB1MMT3",     "fips_desmovs -f" ],
365     [ "TCFB1Monte1",   "fips_desmovs -f" ],
366     [ "TCFB1Monte2",   "fips_desmovs -f" ],
367     [ "TCFB1Monte3",   "fips_desmovs -f" ],
368     [ "TCFB1permop",   "fips_desmovs -f" ],
369     [ "TCFB1subtab",   "fips_desmovs -f" ],
370     [ "TCFB1varkey",   "fips_desmovs -f" ],
371     [ "TCFB1vartext",  "fips_desmovs -f" ],
372
373 );
374
375 my @fips_drbg_test_list = (
376
377     # SP800-90 DRBG tests
378     "SP800-90 DRBG",
379     [ "CTR_DRBG",   "fips_drbgvs" ],
380     [ "Hash_DRBG",  "fips_drbgvs" ]
381
382 );
383
384 my @fips_dh_test_list = (
385
386     # DH
387     "DH Ephemeral Primitives Only",
388     [ "KASValidityTest_FFCEphem_NOKC_ZZOnly_init",   "fips_dhvs dhver" ],
389     [ "KASValidityTest_FFCEphem_NOKC_ZZOnly_resp",   "fips_dhvs dhver" ],
390
391 );
392
393 my @fips_ecdh_test_list = (
394
395     # ECDH
396     "ECDH Ephemeral Primitives Only",
397     [ "KASValidityTest_ECCEphemeralUnified_NOKC_ZZOnly_init",
398                                                         "fips_ecdhvs ecdhver" ],
399     [ "KASValidityTest_ECCEphemeralUnified_NOKC_ZZOnly_resp",
400                                                         "fips_ecdhvs ecdhver" ],
401
402 );
403
404
405 # Verification special cases.
406 # In most cases the output of a test is deterministic and
407 # it can be compared to a known good result. A few involve
408 # the genration and use of random keys and the output will
409 # be different each time. In thoses cases we perform special tests
410 # to simply check their consistency. For example signature generation
411 # output will be run through signature verification to see if all outputs
412 # show as valid.
413 #
414
415 my %verify_special = (
416     "PQGGen"        => "fips_dssvs pqgver",
417     "KeyPair"       => "fips_dssvs keyver",
418     "SigGen"        => "fips_dssvs sigver",
419     "SigGen15"      => "fips_rsavtest",
420     "SigGenRSA"     => "fips_rsavtest -x931",
421     "SigGenPSS(0)"  => "fips_rsavtest -saltlen 0",
422     "SigGenPSS(62)" => "fips_rsavtest -saltlen 62",
423 );
424
425 my $win32  = $^O =~ m/mswin/i;
426 my $onedir = 0;
427 my $filter = "";
428 my $tvdir;
429 my $tprefix;
430 my $debug          = 0;
431 my $quiet          = 0;
432 my $notest         = 0;
433 my $verify         = 1;
434 my $rspdir         = "rsp";
435 my $ignore_missing = 0;
436 my $ignore_bogus   = 0;
437 my $bufout         = '';
438 my $list_tests     = 0;
439 my $minimal_script = 0;
440 my $outfile        = '';
441 my $no_warn_missing = 0;
442
443 my %fips_enabled = (
444     dsa         => 1,
445     "dsa-pqgver"  => 0,
446     rsa         => 1,
447     "rsa-pss0"  => 0,
448     "rsa-pss62" => 1,
449     sha         => 1,
450     hmac        => 1,
451     cmac        => 0,
452     "rand-aes"  => 1,
453     "rand-des2" => 0,
454     aes         => 1,
455     "aes-cfb1"  => 0,
456     des3        => 1,
457     "des3-cfb1" => 0,
458     drbg        => 0,
459     ccm         => 0,
460     dh          => 0,
461     ecdh        => 0,
462 );
463
464 foreach (@ARGV) {
465     if ( $_ eq "--win32" ) {
466         $win32 = 1;
467     }
468     elsif ( $_ eq "--onedir" ) {
469         $onedir = 1;
470     }
471     elsif ( $_ eq "--debug" ) {
472         $debug = 1;
473     }
474     elsif ( $_ eq "--quiet-missing" ) {
475         $ignore_missing = 1;
476         $no_warn_missing = 1;
477     }
478     elsif ( $_ eq "--ignore-missing" ) {
479         $ignore_missing = 1;
480     }
481     elsif ( $_ eq "--ignore-bogus" ) {
482         $ignore_bogus = 1;
483     }
484     elsif ( $_ eq "--minimal-script" ) {
485         $minimal_script = 1;
486     }
487     elsif (/--generate-script=(.*)$/) {
488         $outfile = $1;
489         $verify = 0;
490     } elsif ( $_ eq "--generate" ) {
491         $verify = 0;
492     }
493     elsif ( $_ eq "--notest" ) {
494         $notest = 1;
495     }
496     elsif ( $_ eq "--quiet" ) {
497         $quiet = 1;
498     }
499     elsif (/--dir=(.*)$/) {
500         $tvdir = $1;
501     }
502     elsif (/--rspdir=(.*)$/) {
503         $rspdir = $1;
504     }
505     elsif (/--tprefix=(.*)$/) {
506         $tprefix = $1;
507     }
508     elsif (/^--(enable|disable)-(.*)$/) {
509         if ( !exists $fips_enabled{$2} ) {
510             print STDERR "Unknown test $2\n";
511         }
512         if ( $1 eq "enable" ) {
513             $fips_enabled{$2} = 1;
514         }
515         else {
516             $fips_enabled{$2} = 0;
517         }
518     }
519     elsif (/--filter=(.*)$/) {
520         $filter = $1;
521     }
522     elsif (/^--list-tests$/) {
523         $list_tests = 1;
524     }
525     else {
526         Help();
527         exit(1);
528     }
529 }
530
531 my @fips_test_list;
532
533 push @fips_test_list, @fips_dsa_test_list       if $fips_enabled{"dsa"};
534 push @fips_test_list, @fips_dsa_pqgver_test_list if $fips_enabled{"dsa-pqgver"};
535 push @fips_test_list, @fips_rsa_test_list       if $fips_enabled{"rsa"};
536 push @fips_test_list, @fips_rsa_pss0_test_list  if $fips_enabled{"rsa-pss0"};
537 push @fips_test_list, @fips_rsa_pss62_test_list if $fips_enabled{"rsa-pss62"};
538 push @fips_test_list, @fips_sha_test_list       if $fips_enabled{"sha"};
539 push @fips_test_list, @fips_hmac_test_list      if $fips_enabled{"hmac"};
540 push @fips_test_list, @fips_cmac_test_list      if $fips_enabled{"cmac"};
541 push @fips_test_list, @fips_rand_aes_test_list  if $fips_enabled{"rand-aes"};
542 push @fips_test_list, @fips_rand_des2_test_list if $fips_enabled{"rand-des2"};
543 push @fips_test_list, @fips_aes_test_list       if $fips_enabled{"aes"};
544 push @fips_test_list, @fips_aes_cfb1_test_list  if $fips_enabled{"aes-cfb1"};
545 push @fips_test_list, @fips_des3_test_list      if $fips_enabled{"des3"};
546 push @fips_test_list, @fips_des3_cfb1_test_list if $fips_enabled{"des3-cfb1"};
547 push @fips_test_list, @fips_drbg_test_list      if $fips_enabled{"drbg"};
548 push @fips_test_list, @fips_aes_ccm_test_list   if $fips_enabled{"aes-ccm"};
549 push @fips_test_list, @fips_dh_test_list        if $fips_enabled{"dh"};
550 push @fips_test_list, @fips_ecdh_test_list      if $fips_enabled{"ecdh"};
551
552 if ($list_tests) {
553     my ( $test, $en );
554     print "=====TEST LIST=====\n";
555     foreach $test ( sort keys %fips_enabled ) {
556         $en = $fips_enabled{$test};
557         $test =~ tr/[a-z]/[A-Z]/;
558         printf "%-10s %s\n", $test, $en ? "enabled" : "disabled";
559     }
560     exit(0);
561 }
562
563 foreach (@fips_test_list) {
564     next unless ref($_);
565     my $nm = $$_[0];
566     $$_[3] = "";
567     $$_[4] = "";
568     print STDERR "Duplicate test $nm\n" if exists $fips_tests{$nm};
569     $fips_tests{$nm} = $_;
570 }
571
572 $tvdir = "." unless defined $tvdir;
573
574 if ($win32) {
575     if ( !defined $tprefix ) {
576         if ($onedir) {
577             $tprefix = ".\\";
578         }
579         else {
580             $tprefix = "..\\out32dll\\";
581         }
582     }
583 }
584 else {
585     if ($onedir) {
586         $tprefix       = "./" unless defined $tprefix;
587     }
588     else {
589         $tprefix       = "../test/" unless defined $tprefix;
590     }
591 }
592
593 sanity_check_exe( $win32, $tprefix) if $outfile eq "";
594
595 find_files( $filter, $tvdir );
596
597 sanity_check_files();
598
599 my ( $runerr, $cmperr, $cmpok, $scheckrunerr, $scheckerr, $scheckok, $skipcnt )
600   = ( 0, 0, 0, 0, 0, 0, 0 );
601
602 exit(0) if $notest;
603 print "Outputting commands to $outfile\n" if $outfile ne "";
604 run_tests( $verify, $win32, $tprefix, $filter, $tvdir, $outfile );
605
606 if ($verify) {
607     print "ALGORITHM TEST VERIFY SUMMARY REPORT:\n";
608     print "Tests skipped due to missing files:        $skipcnt\n";
609     print "Algorithm test program execution failures: $runerr\n";
610     print "Test comparisons successful:               $cmpok\n";
611     print "Test comparisons failed:                   $cmperr\n";
612     print "Test sanity checks successful:             $scheckok\n";
613     print "Test sanity checks failed:                 $scheckerr\n";
614     print "Sanity check program execution failures:   $scheckrunerr\n";
615
616     if ( $runerr || $cmperr || $scheckrunerr || $scheckerr ) {
617         print "***TEST FAILURE***\n";
618     }
619     else {
620         print "***ALL TESTS SUCCESSFUL***\n";
621     }
622 }
623 elsif ($outfile eq "") {
624     print "ALGORITHM TEST SUMMARY REPORT:\n";
625     print "Tests skipped due to missing files:        $skipcnt\n";
626     print "Algorithm test program execution failures: $runerr\n";
627
628     if ($runerr) {
629         print "***TEST FAILURE***\n";
630     }
631     else {
632         print "***ALL TESTS SUCCESSFUL***\n";
633     }
634 }
635
636 #--------------------------------
637 sub Help {
638     ( my $cmd ) = ( $0 =~ m#([^/]+)$# );
639     print <<EOF;
640 $cmd: generate run CAVP algorithm tests
641         --debug                     Enable debug output
642         --dir=<dirname>             Optional root for *.req file search
643         --filter=<regexp>
644         --onedir <dirname>          Assume all components in current directory
645         --rspdir=<dirname>          Name of subdirectories containing *.rsp files, default "rsp"
646         --tprefix=<prefix>
647         --ignore-bogus              Ignore duplicate or bogus files
648         --ignore-missing            Ignore missing test files
649         --quiet                     Shhh....
650         --generate                  Generate algorithm test output
651         --win32                     Win32 environment
652         --enable-<alg>              Enable algorithm set <alg>.
653         --disable-<alg>             Disable algorithm set <alg>.
654         Where <alg> can be one of:
655 EOF
656
657 while (my ($key, $value) = each %fips_enabled)
658         {
659         printf "\t\t%-20s(%s by default)\n", $key ,
660                         $value ? "enabled" : "disabled";
661         }
662 }
663
664 # Sanity check to see if all necessary executables exist
665
666 sub sanity_check_exe {
667     my ( $win32, $tprefix, ) = @_;
668     my %exe_list;
669     my $bad = 0;
670     foreach (@fips_test_list) {
671         next unless ref($_);
672         my $cmd = $_->[1];
673         $cmd =~ s/ .*$//;
674         $cmd = $tprefix . $cmd;
675         $cmd .= ".exe" if $win32;
676         $exe_list{$cmd} = 1;
677     }
678
679     foreach ( sort keys %exe_list ) {
680         if ( !-f $_ ) {
681             print STDERR "ERROR: can't find executable $_\n";
682             $bad = 1;
683         }
684     }
685     if ($bad) {
686         print STDERR "FATAL ERROR: executables missing\n";
687         exit(1);
688     }
689     elsif ($debug) {
690         print STDERR "Executable sanity check passed OK\n";
691     }
692 }
693
694 # Search for all request and response files
695
696 sub find_files {
697     my ( $filter, $dir ) = @_;
698     my ( $dirh, $testname, $tref );
699     opendir( $dirh, $dir );
700     while ( $_ = readdir($dirh) ) {
701         next if ( $_ eq "." || $_ eq ".." );
702         $_ = "$dir/$_";
703         if ( -f "$_" ) {
704             if (/\/([^\/]*)\.rsp$/) {
705                 $tref = find_test($1, $_);
706                 if ( defined $tref ) {
707                     $testname = $$tref[0];
708                     if ( $$tref[4] eq "" ) {
709                         $$tref[4] = $_;
710                     }
711                     else {
712                         print STDERR
713 "WARNING: duplicate response file $_ for test $testname\n";
714                         $nbogus++;
715                     }
716                 }
717                 else {
718                     print STDERR "WARNING: bogus file $_\n";
719                     $nbogus++;
720                 }
721             }
722             next unless /$filter.*\.req$/i;
723             if (/\/([^\/]*)\.req$/) {
724                 $tref = find_test($1, $_);
725                 if ( defined $tref ) {
726                     $testname = $$tref[0];
727                     if ( $$tref[3] eq "" ) {
728                         $$tref[3] = $_;
729                     }
730                     else {
731                         print STDERR
732 "WARNING: duplicate request file $_ for test $testname\n";
733                         $nbogus++;
734                     }
735
736                 }
737                 elsif ( !/SHAmix\.req$/ ) {
738                     print STDERR "WARNING: unrecognized filename $_\n";
739                     $nbogus++;
740                 }
741             }
742         }
743         elsif ( -d "$_" ) {
744             find_files( $filter, $_ );
745         }
746     }
747     closedir($dirh);
748 }
749 #
750 # Find test based on filename.
751 # In ambiguous cases search file contents for a match
752 #
753
754 sub find_test {
755     my ( $test, $path ) = @_;
756     foreach $tref (@fips_test_list) {
757         next unless ref($tref);
758         my ( $tst, $cmd, $regexp, $req, $resp ) = @$tref;
759         $tst =~ s/\(.*$//;
760         if ($tst eq $test) {
761                 return $tref if (!defined $regexp);
762                 my $found = 0;
763                 my $line;
764                 open( IN, $path ) || die "Can't Open File $path";
765                 while ($line = <IN>) {
766                     if ($line =~ /$regexp/i) {
767                         $found = 1;
768                         last;
769                     }
770                 }
771                 close IN;
772                 return $tref if $found == 1;
773         }
774     }
775     return undef;
776 }
777
778 sub sanity_check_files {
779     my $bad = 0;
780     foreach (@fips_test_list) {
781         next unless ref($_);
782         my ( $tst, $cmd, $regexp, $req, $resp ) = @$_;
783
784         #print STDERR "FILES $tst, $cmd, $req, $resp\n";
785         if ( $req eq "" ) {
786             print STDERR "WARNING: missing request file for $tst\n" unless $no_warn_missing;
787             $bad = 1;
788             next;
789         }
790         if ( $verify && $resp eq "" ) {
791             print STDERR "WARNING: no response file for test $tst\n";
792             $bad = 1;
793         }
794         elsif ( !$verify && $resp ne "" ) {
795             print STDERR "WARNING: response file $resp will be overwritten\n";
796         }
797     }
798     if ($bad) {
799         print STDERR "ERROR: test vector file set not complete\n";
800         exit(1) unless $ignore_missing;
801     }
802     if ($nbogus) {
803         print STDERR
804           "ERROR: $nbogus bogus or duplicate request and response files\n";
805         exit(1) unless $ignore_bogus;
806     }
807     if ( $debug && !$nbogus && !$bad ) {
808         print STDERR "test vector file set complete\n";
809     }
810 }
811
812 sub run_tests {
813     my ( $verify, $win32, $tprefix, $filter, $tvdir, $outfile ) = @_;
814     my ( $tname, $tref );
815     my $bad = 0;
816     my $lastdir = "";
817     if ($outfile ne "") {
818         open OUT, ">$outfile" || die "Can't open $outfile";
819     }
820     if ($outfile ne "" && !$minimal_script) {
821         if ($win32) {
822             print OUT <<\END;
823 @echo off
824 rem Test vector run script
825 rem Auto generated by fipsalgtest.pl script
826 rem Do not edit
827
828 echo Running Algorithm Tests
829
830 END
831         } else {
832             print OUT <<\END;
833 #!/bin/sh
834
835 # Test vector run script
836 # Auto generated by fipsalgtest.pl script
837 # Do not edit
838
839 echo Running Algorithm Tests
840
841 END
842         }
843
844     }
845
846     foreach (@fips_test_list) {
847         if ( !ref($_) ) {
848             if ($outfile ne "") {
849                 print "Generating script for $_ tests\n";
850                 print OUT "\n\n\necho \"Running $_ tests\"\n" unless $minimal_script;
851             } else {    
852                 print "Running $_ tests\n" unless $quiet;
853             }
854             next;
855         }
856         my ( $tname, $tcmd, $regexp, $req, $rsp ) = @$_;
857         my $out = $rsp;
858         if ($verify) {
859             $out =~ s/\.rsp$/.tst/;
860         }
861         if ( $req eq "" ) {
862             print STDERR
863               "WARNING: Request file for $tname missing: test skipped\n" unless $no_warn_missing;
864             $skipcnt++;
865             next;
866         }
867         if ( $verify && $rsp eq "" ) {
868             print STDERR
869               "WARNING: Response file for $tname missing: test skipped\n";
870             $skipcnt++;
871             next;
872         }
873         elsif ( !$verify ) {
874             if ( $rsp ne "" ) {
875                 print STDERR "WARNING: Response file for $tname deleted\n";
876                 unlink $rsp;
877             }
878             $out = $req;
879             $out =~ s|/req/(\S+)\.req|/$rspdir/$1.rsp|;
880             my $outdir = $out;
881             $outdir =~ s|/[^/]*$||;
882             if ($outfile ne "") {
883                 if ($win32) {
884                     $outdir =~ tr|/|\\|;
885                     $req =~ tr|/|\\|;
886                     $out =~ tr|/|\\|;
887                 }
888                 if ($outdir ne $lastdir && !$minimal_script) {
889                     if ($win32) {
890                     print OUT <<END
891 if exist \"$outdir\" rd /s /q "$outdir"
892 md \"$outdir\"
893
894 END
895                     } else {
896                     print OUT <<END
897 rm -rf \"$outdir\"
898 mkdir \"$outdir\"
899
900 END
901                     }
902                 $lastdir = $outdir;
903                 }
904             } elsif ( !-d $outdir ) {
905                 print STDERR "DEBUG: Creating directory $outdir\n" if $debug;
906                 mkdir($outdir) || die "Can't create directory $outdir";
907             }
908         }
909         my $cmd = "$tprefix$tcmd \"$req\" \"$out\"";
910         print STDERR "DEBUG: running test $tname\n" if ( $debug && !$verify );
911         if ($outfile ne "") {
912             print OUT "echo \"    running $tname test\"\n" unless $minimal_script;
913             print OUT "$cmd\n";
914         } else {
915             system($cmd);
916             if ( $? != 0 ) {
917                 print STDERR
918                      "WARNING: error executing test $tname for command: $cmd\n";
919                 $runerr++;
920                 next;
921             }
922         }
923         if ($verify) {
924             if ( exists $verify_special{$tname} ) {
925                 my $vout = $rsp;
926                 $vout =~ s/\.rsp$/.ver/;
927                 $tcmd = $verify_special{$tname};
928                 $cmd  = "$tprefix$tcmd ";
929                 $cmd .= "\"$out\" \"$vout\"";
930                 system($cmd);
931                 if ( $? != 0 ) {
932                     print STDERR
933                       "WARNING: error executing verify test $tname $cmd\n";
934                     $scheckrunerr++;
935                     next;
936                 }
937                 my ( $fcount, $pcount ) = ( 0, 0 );
938                 open VER, "$vout";
939                 while (<VER>) {
940                     if (/^Result\s*=\s*(\S*)\s*$/i)
941
942                     {
943                         if ( $1 eq "F" ) {
944                             $fcount++;
945                         }
946                         else {
947                             $pcount++;
948                         }
949                     }
950                 }
951                 close VER;
952
953                 unlink $vout;
954                 if ( $fcount || $debug ) {
955                     print STDERR "DEBUG: $tname, Pass=$pcount, Fail=$fcount\n";
956                 }
957                 if ( $fcount || !$pcount ) {
958                     $scheckerr++;
959                 }
960                 else {
961                     $scheckok++;
962                 }
963
964             }
965             elsif ( !cmp_file( $tname, $rsp, $out ) ) {
966                 $cmperr++;
967             }
968             else {
969                 $cmpok++;
970             }
971             unlink $out;
972         }
973     }
974     if ($outfile ne "") {
975         print OUT "\n\necho All Tests Completed\n" unless $minimal_script;
976         close OUT;
977     }
978 }
979
980 sub cmp_file {
981     my ( $tname, $rsp, $tst ) = @_;
982     my ( $rspf,    $tstf );
983     my ( $rspline, $tstline );
984     if ( !open( $rspf, $rsp ) ) {
985         print STDERR "ERROR: can't open request file $rsp\n";
986         return 0;
987     }
988     if ( !open( $tstf, $tst ) ) {
989         print STDERR "ERROR: can't open output file $tst\n";
990         return 0;
991     }
992     for ( ; ; ) {
993         $rspline = next_line($rspf);
994         $tstline = next_line($tstf);
995         if ( !defined($rspline) && !defined($tstline) ) {
996             print STDERR "DEBUG: $tname file comparison OK\n" if $debug;
997             return 1;
998         }
999         if ( !defined($rspline) ) {
1000             print STDERR "ERROR: $tname EOF on $rsp\n";
1001             return 0;
1002         }
1003         if ( !defined($tstline) ) {
1004             print STDERR "ERROR: $tname EOF on $tst\n";
1005             return 0;
1006         }
1007
1008         # Workaround for bug in RAND des2 test output */
1009         if ( $tstline =~ /^Key2 =/ && $rspline =~ /^Key1 =/ ) {
1010             $rspline =~ s/^Key1/Key2/;
1011         }
1012
1013         if ( $tstline ne $rspline ) {
1014             print STDERR "ERROR: $tname mismatch:\n";
1015             print STDERR "\t \"$tstline\" != \"$rspline\"\n";
1016             return 0;
1017         }
1018     }
1019     return 1;
1020 }
1021
1022 sub next_line {
1023     my ($in) = @_;
1024
1025     while (<$in>) {
1026         chomp;
1027
1028         # Delete comments
1029         s/#.*$//;
1030
1031         # Ignore blank lines
1032         next if (/^\s*$/);
1033
1034         # Translate multiple space into one
1035         s/\s+/ /g;
1036         # Delete trailing whitespace
1037         s/\s+$//;
1038         # Remove leading zeroes
1039         s/= 00/= /;
1040         # Translate to upper case
1041         return uc $_;
1042     }
1043     return undef;
1044 }