df7a48f7fd817a09095366ed25ccfbe822ca20ed
[openssl.git] / util / fipsdist.pl
1
2 # FIPS distribution filter. 
3 # Takes tarball listing and removes unnecessary files and directories.
4 #
5
6
7 my $objs = "";
8 foreach (split / /, "FIPS_EX_OBJ AES_ENC BN_ASM DES_ENC SHA1_ASM_OBJ MODES_ASM_OBJ")
9         {
10         $objs .= " $ENV{$_}";
11         }
12
13 my $noec2m = 0;
14
15
16 my @objlist = split / /, $objs;
17
18 foreach (@objlist) { $tarobjs{"$1.c"} = 1 if /([^\/]+).o$/};
19
20 $tarobjs{"ncbc_enc.c"} = 1;
21 $tarobjs{"mem_clr.c"} = 1;
22 $tarobjs{"ppccap.c"} = 1;
23 $tarobjs{"sparcv9cap.c"} = 1;
24
25 foreach (split / /, $ENV{LINKDIRS} ) { $cdirs{$_} = 1 };
26
27 $cdirs{perlasm} = 1;
28
29 $noec2m = 1 if (exists $ENV{NOEC2M});
30
31 if ($noec2m)
32         {
33         delete $tarobjs{"bn_gf2m.c"};
34         delete $tarobjs{"ec2_mult.c"};
35         delete $tarobjs{"ec2_smpl.c"};
36         }
37
38 my %keep = 
39         (
40         "Makefile.fips" => 1,
41         "Makefile.shared" => 1,
42         "README.FIPS" => 1,
43         "README.ECC" => 1,
44         "e_os.h" => 1,
45         "e_os2.h" => 1,
46         "Configure" => 1,
47         "config" => 1,
48         );
49
50 while (<STDIN>)
51         {
52         chomp;
53         # Keep top level files in list
54         if (!/\// && -f $_)
55                 {
56                 next unless exists $keep{$_};
57                 }
58         else
59                 {
60                 next unless (/^(fips\/|crypto|util|test|include|ms)/);
61                 }
62         if (/^crypto\/([^\/]+)/)
63                 {
64                 # Skip unused directories under crypto/
65                 next if -d "crypto/$1" && !exists $cdirs{$1};
66                 # Skip GF2m assembly language perl scripts
67                 next if $noec2m && /gf2m\.pl/;
68                 # Keep assembly language dir, Makefile or certain extensions
69                 if (!/\/asm\// && !/\/Makefile$/ && !/\.(in|pl|h|S)$/)
70                         {
71                         # If C source file must be on list.
72                         next if !/(\w+\.c)$/ || !exists $tarobjs{$1};
73                         }
74                 }
75         if (/^test\//)
76                 {
77                 next unless /Makefile/ || /dummytest.c/;
78                 }
79         print "$_\n";
80         }
81 exit 1;