30f7e71133686e740728b176c6398adadd2b6911
[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
24 foreach (split / /, $ENV{LINKDIRS} ) { $cdirs{$_} = 1 };
25
26 $cdirs{perlasm} = 1;
27
28 $noec2m = 1 if (exists $ENV{NOEC2M});
29
30 if ($noec2m)
31         {
32         delete $tarobjs{"bn_gf2m.c"};
33         delete $tarobjs{"ec2_mult.c"};
34         delete $tarobjs{"ec2_smpl.c"};
35         }
36
37 my %keep = 
38         (
39         "Makefile.fips" => 1,
40         "Makefile.shared" => 1,
41         "README.FIPS" => 1,
42         "README.ECC" => 1,
43         "e_os.h" => 1,
44         "e_os2.h" => 1,
45         "Configure" => 1,
46         "config" => 1,
47         );
48
49 while (<STDIN>)
50         {
51         chomp;
52         # Keep top level files in list
53         if (!/\// && -f $_)
54                 {
55                 next unless exists $keep{$_};
56                 }
57         else
58                 {
59                 next unless (/^(fips\/|crypto|util|test|include|ms)/);
60                 }
61         if (/^crypto\/([^\/]+)/)
62                 {
63                 # Skip unused directories under crypto/
64                 next if -d "crypto/$1" && !exists $cdirs{$1};
65                 # Skip GF2m assembly language perl scripts
66                 next if $noec2m && /gf2m\.pl/;
67                 # Keep assembly language dir, Makefile or certain extensions
68                 if (!/\/asm\// && !/\/Makefile$/ && !/\.(in|pl|h|S)$/)
69                         {
70                         # If C source file must be on list.
71                         next if !/(\w+\.c)$/ || !exists $tarobjs{$1};
72                         }
73                 }
74         if (/^test\//)
75                 {
76                 next unless /Makefile/ || /dummytest.c/;
77                 }
78         print "$_\n";
79         }
80 exit 1;