1 | =pod
|
---|
2 | {- OpenSSL::safe::output_do_not_edit_headers(); -}
|
---|
3 |
|
---|
4 | =head1 NAME
|
---|
5 |
|
---|
6 | openssl-fipsinstall - perform FIPS configuration installation
|
---|
7 |
|
---|
8 | =head1 SYNOPSIS
|
---|
9 |
|
---|
10 | B<openssl fipsinstall>
|
---|
11 | [B<-help>]
|
---|
12 | [B<-in> I<configfilename>]
|
---|
13 | [B<-out> I<configfilename>]
|
---|
14 | [B<-module> I<modulefilename>]
|
---|
15 | [B<-provider_name> I<providername>]
|
---|
16 | [B<-section_name> I<sectionname>]
|
---|
17 | [B<-verify>]
|
---|
18 | [B<-mac_name> I<macname>]
|
---|
19 | [B<-macopt> I<nm>:I<v>]
|
---|
20 | [B<-noout>]
|
---|
21 | [B<-quiet>]
|
---|
22 | [B<-no_conditional_errors>]
|
---|
23 | [B<-no_security_checks>]
|
---|
24 | [B<-self_test_onload>]
|
---|
25 | [B<-corrupt_desc> I<selftest_description>]
|
---|
26 | [B<-corrupt_type> I<selftest_type>]
|
---|
27 | [B<-config> I<parent_config>]
|
---|
28 |
|
---|
29 | =head1 DESCRIPTION
|
---|
30 |
|
---|
31 | This command is used to generate a FIPS module configuration file.
|
---|
32 | This configuration file can be used each time a FIPS module is loaded
|
---|
33 | in order to pass data to the FIPS module self tests. The FIPS module always
|
---|
34 | verifies its MAC, but optionally only needs to run the KAT's once,
|
---|
35 | at installation.
|
---|
36 |
|
---|
37 | The generated configuration file consists of:
|
---|
38 |
|
---|
39 | =over 4
|
---|
40 |
|
---|
41 | =item - A MAC of the FIPS module file.
|
---|
42 |
|
---|
43 | =item - A test status indicator.
|
---|
44 |
|
---|
45 | This indicates if the Known Answer Self Tests (KAT's) have successfully run.
|
---|
46 |
|
---|
47 | =item - A MAC of the status indicator.
|
---|
48 |
|
---|
49 | =item - A control for conditional self tests errors.
|
---|
50 |
|
---|
51 | By default if a continuous test (e.g a key pair test) fails then the FIPS module
|
---|
52 | will enter an error state, and no services or cryptographic algorithms will be
|
---|
53 | able to be accessed after this point.
|
---|
54 | The default value of '1' will cause the fips module error state to be entered.
|
---|
55 | If the value is '0' then the module error state will not be entered.
|
---|
56 | Regardless of whether the error state is entered or not, the current operation
|
---|
57 | (e.g. key generation) will return an error. The user is responsible for retrying
|
---|
58 | the operation if the module error state is not entered.
|
---|
59 |
|
---|
60 | =item - A control to indicate whether run-time security checks are done.
|
---|
61 |
|
---|
62 | This indicates if run-time checks related to enforcement of security parameters
|
---|
63 | such as minimum security strength of keys and approved curve names are used.
|
---|
64 | The default value of '1' will perform the checks.
|
---|
65 | If the value is '0' the checks are not performed and FIPS compliance must
|
---|
66 | be done by procedures documented in the relevant Security Policy.
|
---|
67 |
|
---|
68 | =back
|
---|
69 |
|
---|
70 | This file is described in L<fips_config(5)>.
|
---|
71 |
|
---|
72 | =head1 OPTIONS
|
---|
73 |
|
---|
74 | =over 4
|
---|
75 |
|
---|
76 | =item B<-help>
|
---|
77 |
|
---|
78 | Print a usage message.
|
---|
79 |
|
---|
80 | =item B<-module> I<filename>
|
---|
81 |
|
---|
82 | Filename of the FIPS module to perform an integrity check on.
|
---|
83 | The path provided in the filename is used to load the module when it is
|
---|
84 | activated, and this overrides the environment variable B<OPENSSL_MODULES>.
|
---|
85 |
|
---|
86 | =item B<-out> I<configfilename>
|
---|
87 |
|
---|
88 | Filename to output the configuration data to; the default is standard output.
|
---|
89 |
|
---|
90 | =item B<-in> I<configfilename>
|
---|
91 |
|
---|
92 | Input filename to load configuration data from.
|
---|
93 | Must be used if the B<-verify> option is specified.
|
---|
94 |
|
---|
95 | =item B<-verify>
|
---|
96 |
|
---|
97 | Verify that the input configuration file contains the correct information.
|
---|
98 |
|
---|
99 | =item B<-provider_name> I<providername>
|
---|
100 |
|
---|
101 | Name of the provider inside the configuration file.
|
---|
102 | The default value is C<fips>.
|
---|
103 |
|
---|
104 | =item B<-section_name> I<sectionname>
|
---|
105 |
|
---|
106 | Name of the section inside the configuration file.
|
---|
107 | The default value is C<fips_sect>.
|
---|
108 |
|
---|
109 | =item B<-mac_name> I<name>
|
---|
110 |
|
---|
111 | Specifies the name of a supported MAC algorithm which will be used.
|
---|
112 | The MAC mechanisms that are available will depend on the options
|
---|
113 | used when building OpenSSL.
|
---|
114 | To see the list of supported MAC's use the command
|
---|
115 | C<openssl list -mac-algorithms>. The default is B<HMAC>.
|
---|
116 |
|
---|
117 | =item B<-macopt> I<nm>:I<v>
|
---|
118 |
|
---|
119 | Passes options to the MAC algorithm.
|
---|
120 | A comprehensive list of controls can be found in the EVP_MAC implementation
|
---|
121 | documentation.
|
---|
122 | Common control strings used for this command are:
|
---|
123 |
|
---|
124 | =over 4
|
---|
125 |
|
---|
126 | =item B<key>:I<string>
|
---|
127 |
|
---|
128 | Specifies the MAC key as an alphanumeric string (use if the key contains
|
---|
129 | printable characters only).
|
---|
130 | The string length must conform to any restrictions of the MAC algorithm.
|
---|
131 | A key must be specified for every MAC algorithm.
|
---|
132 | If no key is provided, the default that was specified when OpenSSL was
|
---|
133 | configured is used.
|
---|
134 |
|
---|
135 | =item B<hexkey>:I<string>
|
---|
136 |
|
---|
137 | Specifies the MAC key in hexadecimal form (two hex digits per byte).
|
---|
138 | The key length must conform to any restrictions of the MAC algorithm.
|
---|
139 | A key must be specified for every MAC algorithm.
|
---|
140 | If no key is provided, the default that was specified when OpenSSL was
|
---|
141 | configured is used.
|
---|
142 |
|
---|
143 | =item B<digest>:I<string>
|
---|
144 |
|
---|
145 | Used by HMAC as an alphanumeric string (use if the key contains printable
|
---|
146 | characters only).
|
---|
147 | The string length must conform to any restrictions of the MAC algorithm.
|
---|
148 | To see the list of supported digests, use the command
|
---|
149 | C<openssl list -digest-commands>.
|
---|
150 | The default digest is SHA-256.
|
---|
151 |
|
---|
152 | =back
|
---|
153 |
|
---|
154 | =item B<-noout>
|
---|
155 |
|
---|
156 | Disable logging of the self tests.
|
---|
157 |
|
---|
158 | =item B<-no_conditional_errors>
|
---|
159 |
|
---|
160 | Configure the module to not enter an error state if a conditional self test
|
---|
161 | fails as described above.
|
---|
162 |
|
---|
163 | =item B<-no_security_checks>
|
---|
164 |
|
---|
165 | Configure the module to not perform run-time security checks as described above.
|
---|
166 |
|
---|
167 | =item B<-self_test_onload>
|
---|
168 |
|
---|
169 | Do not write the two fields related to the "test status indicator" and
|
---|
170 | "MAC status indicator" to the output configuration file. Without these fields
|
---|
171 | the self tests KATS will run each time the module is loaded. This option could be
|
---|
172 | used for cross compiling, since the self tests need to run at least once on each
|
---|
173 | target machine. Once the self tests have run on the target machine the user
|
---|
174 | could possibly then add the 2 fields into the configuration using some other
|
---|
175 | mechanism.
|
---|
176 |
|
---|
177 | =item B<-quiet>
|
---|
178 |
|
---|
179 | Do not output pass/fail messages. Implies B<-noout>.
|
---|
180 |
|
---|
181 | =item B<-corrupt_desc> I<selftest_description>,
|
---|
182 | B<-corrupt_type> I<selftest_type>
|
---|
183 |
|
---|
184 | The corrupt options can be used to test failure of one or more self tests by
|
---|
185 | name.
|
---|
186 | Either option or both may be used to select the tests to corrupt.
|
---|
187 | Refer to the entries for B<st-desc> and B<st-type> in L<OSSL_PROVIDER-FIPS(7)> for
|
---|
188 | values that can be used.
|
---|
189 |
|
---|
190 | =item B<-config> I<parent_config>
|
---|
191 |
|
---|
192 | Test that a FIPS provider can be loaded from the specified configuration file.
|
---|
193 | A previous call to this application needs to generate the extra configuration
|
---|
194 | data that is included by the base C<parent_config> configuration file.
|
---|
195 | See L<config(5)> for further information on how to set up a provider section.
|
---|
196 | All other options are ignored if '-config' is used.
|
---|
197 |
|
---|
198 | =back
|
---|
199 |
|
---|
200 | =head1 NOTES
|
---|
201 |
|
---|
202 | Self tests results are logged by default if the options B<-quiet> and B<-noout>
|
---|
203 | are not specified, or if either of the options B<-corrupt_desc> or
|
---|
204 | B<-corrupt_type> are used.
|
---|
205 | If the base configuration file is set up to autoload the fips module, then the
|
---|
206 | fips module will be loaded and self tested BEFORE the fipsinstall application
|
---|
207 | has a chance to set up its own self test callback. As a result of this the self
|
---|
208 | test output and the options B<-corrupt_desc> and B<-corrupt_type> will be ignored.
|
---|
209 | For normal usage the base configuration file should use the default provider
|
---|
210 | when generating the fips configuration file.
|
---|
211 |
|
---|
212 | =head1 EXAMPLES
|
---|
213 |
|
---|
214 | Calculate the mac of a FIPS module F<fips.so> and run a FIPS self test
|
---|
215 | for the module, and save the F<fips.cnf> configuration file:
|
---|
216 |
|
---|
217 | openssl fipsinstall -module ./fips.so -out fips.cnf -provider_name fips
|
---|
218 |
|
---|
219 | Verify that the configuration file F<fips.cnf> contains the correct info:
|
---|
220 |
|
---|
221 | openssl fipsinstall -module ./fips.so -in fips.cnf -provider_name fips -verify
|
---|
222 |
|
---|
223 | Corrupt any self tests which have the description C<SHA1>:
|
---|
224 |
|
---|
225 | openssl fipsinstall -module ./fips.so -out fips.cnf -provider_name fips \
|
---|
226 | -corrupt_desc 'SHA1'
|
---|
227 |
|
---|
228 | Validate that the fips module can be loaded from a base configuration file:
|
---|
229 |
|
---|
230 | export OPENSSL_CONF_INCLUDE=<path of configuration files>
|
---|
231 | export OPENSSL_MODULES=<provider-path>
|
---|
232 | openssl fipsinstall -config' 'default.cnf'
|
---|
233 |
|
---|
234 |
|
---|
235 | =head1 SEE ALSO
|
---|
236 |
|
---|
237 | L<config(5)>,
|
---|
238 | L<fips_config(5)>,
|
---|
239 | L<OSSL_PROVIDER-FIPS(7)>,
|
---|
240 | L<EVP_MAC(3)>
|
---|
241 |
|
---|
242 | =head1 COPYRIGHT
|
---|
243 |
|
---|
244 | Copyright 2019-2021 The OpenSSL Project Authors. All Rights Reserved.
|
---|
245 |
|
---|
246 | Licensed under the Apache License 2.0 (the "License"). You may not use
|
---|
247 | this file except in compliance with the License. You can obtain a copy
|
---|
248 | in the file LICENSE in the source distribution or at
|
---|
249 | L<https://www.openssl.org/source/license.html>.
|
---|
250 |
|
---|
251 | =cut
|
---|