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