summaryrefslogtreecommitdiffstats
path: root/util/checkhash.pl
blob: 3efc0f2d906eee8694814389bde69515e1a71a97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
#!/usr/local/bin/perl -w

my $package = caller;

if (!(defined $package))
	{
	my $retval = check_hashes(@ARGV);
	exit $retval;
	}

1;

sub check_hashes
	{

	my @args = @_;

	my $change_dir = "";
	my $check_program = "sha1/fips_standalone_sha1";

	my $verbose = 0;
	my $badfiles = 0;
	my $rebuild = 0;
	my $force_rewrite = 0;
	my $hash_file = "fipshashes.sha1";
	my $recurse = 0;

	my @fingerprint_files;

	while (@args)
		{
		my $arg = $args[0];
		if ($arg eq "-chdir")
			{
			shift @args;
			$change_dir = shift @args;
			}
		elsif ($arg eq "-rebuild")
			{
			shift @args;
			$rebuild = 1;
			}
		elsif ($arg eq "-verbose")
			{
			shift @args;
			$verbose = 1;
			}
		elsif ($arg eq "-force-rewrite")
			{
			shift @args;
			$force_rewrite = 1;
			}
		elsif ($arg eq "-hash_file")
			{
			shift @args;
			$hash_file = shift @args;
			}
		elsif ($arg eq "-recurse")
			{
			shift @args;
			$recurse = 1;
			}
		elsif ($arg eq "-program_path")
			{
			shift @args;
			$check_program = shift @args;
			}
		else
			{
			print STDERR "Unknown Option $arg";
			return 1;
			}

		}

	chdir $change_dir if $change_dir ne "";

	if ($recurse)
		{
		@fingerprint_files = ("fingerprint.sha1",
					<*/fingerprint.sha1>);
		}
	else
		{
		push @fingerprint_files, $hash_file;
		}

	foreach $fp (@fingerprint_files)
		{
		if (!open(IN, "$fp"))
			{
			print STDERR "Can't open file $fp";
			return 1;
			}
		print STDERR "Opening Fingerprint file $fp\n" if $verbose;
		my $dir = $fp;
		$dir =~ s/[^\/]*$//;
		while (<IN>)
			{
			chomp;
			if (!(($file, $hash) = /^HMAC-SHA1\((.*)\)\s*=\s*(\w*)$/))
				{
				print STDERR "FATAL: Invalid syntax in file $fp\n";
				print STDERR "Line:\n$_\n";
				fatal_error();
				return 1;
				}
			if (!$rebuild && length($hash) != 40)
				{
				print STDERR "FATAL: Invalid hash length in $fp for file $file\n";
				fatal_error();
				return 1;
				}
			push @hashed_files, "$dir$file";
			if (exists $hashes{"$dir$file"})
				{
				print STDERR "FATAL: Duplicate Hash file $dir$file\n";
				fatal_error();
				return 1;
				}
			if (! -r "$dir$file")
				{
				print STDERR "FATAL: Can't access $dir$file\n";
				fatal_error();
				return 1;
				}
			$hashes{"$dir$file"} = $hash;
			}
		close IN;
		}

	@checked_hashes = `$check_program @hashed_files`;

	if ($? != 0)
		{
		print STDERR "Error running hash program $check_program\n";
		fatal_error();
		return 1;
		}

	if (@checked_hashes != @hashed_files)
		{
		print STDERR "FATAL: hash count incorrect\n";
		fatal_error();
		return 1;
		}

	foreach (@checked_hashes)
		{
		chomp;
		if (!(($file, $hash) = /^HMAC-SHA1\((.*)\)\s*=\s*(\w*)$/))
			{
			print STDERR "FATAL: Invalid syntax in file $fp\n";
			print STDERR "Line:\n$_\n";
			fatal_error();
			return 1;
			}
		if (length($hash) != 40)
			{
			print STDERR "FATAL: Invalid hash length for file $file\n";
			fatal_error();
			return 1;
			}
		if ($hash ne $hashes{$file})
			{
			if ($rebuild)
				{
				print STDERR "Updating hash on file $file\n";
				$hashes{$file} = $hash;
				}
			else
				{
				print STDERR "Hash check failed for file $file\n";
				}
			$badfiles++;
			}
		elsif ($verbose)
			{ print "Hash Check OK for $file\n";}
		}
		

	if ($badfiles && !$rebuild)
		{
		print STDERR "FATAL: hash mismatch on $badfiles files\n";
		fatal_error();
		return 1;
		}

	if ($badfiles || $force_rewrite)
		{
		print "Updating Hash file $hash_file\n";
		if (!open(OUT, ">$hash_file"))
			{
			print STDERR "Error rewriting $hash_file";
			return 1;
			}
		foreach (@hashed_files)
			{
			print OUT "HMAC-SHA1($_)= $hashes{$_}\n";
			}
		close OUT;
		}

	if (!$badfiles)
		{
		print "FIPS hash check successful\n";
		}

	}


sub fatal_error
	{
	print STDERR "*** Your source code does not match the FIPS validated source ***\n";
	}