]> git.ipfire.org Git - thirdparty/openssl.git/blame - doc/man5/config.pod
EVP configuration section: add 'default_properties' command
[thirdparty/openssl.git] / doc / man5 / config.pod
CommitLineData
aba3e65f
DSH
1=pod
2
3=head1 NAME
4
19d2bb57 5config - OpenSSL CONF library configuration files
aba3e65f
DSH
6
7=head1 DESCRIPTION
8
19d2bb57 9The OpenSSL CONF library can be used to read configuration files.
aba3e65f
DSH
10It is used for the OpenSSL master configuration file B<openssl.cnf>
11and in a few other places like B<SPKAC> files and certificate extension
a30af36c
DSH
12files for the B<x509> utility. OpenSSL applications can also use the
13CONF library for their own purposes.
aba3e65f
DSH
14
15A configuration file is divided into a number of sections. Each section
16starts with a line B<[ section_name ]> and ends when a new section is
17started or end of file is reached. A section name can consist of
18alphanumeric characters and underscores.
19
20The first section of a configuration file is special and is referred
0652e8a7 21to as the B<default> section. This section is usually unnamed and spans from the
aba3e65f
DSH
22start of file until the first named section. When a name is being looked up
23it is first looked up in a named section (if any) and then the
24default section.
25
26The environment is mapped onto a section called B<ENV>.
27
28Comments can be included by preceding them with the B<#> character
29
b524b808
TM
30Other files can be included using the B<.include> directive followed
31by a path. If the path points to a directory all files with
32names ending with B<.cnf> or B<.conf> are included from the directory.
33Recursive inclusion of directories from files in such directory is not
34supported. That means the files in the included directory can also contain
35B<.include> directives but only inclusion of regular files is supported
36there. The inclusion of directories is not supported on systems without
37POSIX IO support.
38
39It is strongly recommended to use absolute paths with the B<.include>
40directive. Relative paths are evaluated based on the application current
41working directory so unless the configuration file containing the
42B<.include> directive is application specific the inclusion will not
43work as expected.
44
9d556033
TM
45There can be optional B<=> character and whitespace characters between
46B<.include> directive and the path which can be useful in cases the
47configuration file needs to be loaded by old OpenSSL versions which do
48not support the B<.include> syntax. They would bail out with error
49if the B<=> character is not present but with it they just ignore
50the include.
51
aba3e65f
DSH
52Each section in a configuration file consists of a number of name and
53value pairs of the form B<name=value>
54
55The B<name> string can contain any alphanumeric characters as well as
56a few punctuation symbols such as B<.> B<,> B<;> and B<_>.
57
58The B<value> string consists of the string following the B<=> character
59until end of line with any leading and trailing white space removed.
60
61The value string undergoes variable expansion. This can be done by
62including the form B<$var> or B<${var}>: this will substitute the value
63of the named variable in the current section. It is also possible to
64substitute a value from another section using the syntax B<$section::name>
19d2bb57 65or B<${section::name}>. By using the form B<$ENV::name> environment
aba3e65f
DSH
66variables can be substituted. It is also possible to assign values to
67environment variables by using the name B<ENV::name>, this will work
68if the program looks up environment variables using the B<CONF> library
8a585601
MC
69instead of calling getenv() directly. The value string must not exceed 64k in
70length after variable expansion. Otherwise an error will occur.
aba3e65f
DSH
71
72It is possible to escape certain characters by using any kind of quote
73or the B<\> character. By making the last character of a line a B<\>
74a B<value> string can be spread across multiple lines. In addition
657e60fa 75the sequences B<\n>, B<\r>, B<\b> and B<\t> are recognized.
aba3e65f 76
b524b808
TM
77All expansion and escape rules as described above that apply to B<value>
78also apply to the path of the B<.include> directive.
79
a30af36c
DSH
80=head1 OPENSSL LIBRARY CONFIGURATION
81
a528d4f0 82Applications can automatically configure certain
a30af36c
DSH
83aspects of OpenSSL using the master OpenSSL configuration file, or optionally
84an alternative configuration file. The B<openssl> utility includes this
85functionality: any sub command uses the master OpenSSL configuration file
86unless an option is used in the sub command to use an alternative configuration
87file.
88
1bc74519 89To enable library configuration the default section needs to contain an
a30af36c
DSH
90appropriate line which points to the main configuration section. The default
91name is B<openssl_conf> which is used by the B<openssl> utility. Other
a8c5ed81 92applications may use an alternative name such as B<myapplication_conf>.
93All library configuration lines appear in the default section at the start
94of the configuration file.
a30af36c
DSH
95
96The configuration section should consist of a set of name value pairs which
97contain specific module configuration information. The B<name> represents
cb1b2caf 98the name of the I<configuration module>. The meaning of the B<value> is
a30af36c 99module specific: it may, for example, represent a further configuration
cb1b2caf 100section containing configuration module specific information. E.g.:
a30af36c 101
a8c5ed81 102 # This must be in the default section
a30af36c
DSH
103 openssl_conf = openssl_init
104
105 [openssl_init]
106
107 oid_section = new_oids
108 engines = engine_section
b6670f69 109 providers = provider_section
a30af36c
DSH
110
111 [new_oids]
112
113 ... new oids here ...
114
115 [engine_section]
116
117 ... engine stuff here ...
118
b6670f69
RL
119 [provider_section]
120
121 ... provider stuff here ...
122
3d764db7 123The features of each configuration module are described below.
a30af36c 124
05ea606a 125=head2 ASN1 Object Configuration Module
a30af36c
DSH
126
127This module has the name B<oid_section>. The value of this variable points
128to a section containing name value pairs of OIDs: the name is the OID short
129and long name, the value is the numerical form of the OID. Although some of
130the B<openssl> utility sub commands already have their own ASN1 OBJECT section
131functionality not all do. By using the ASN1 OBJECT configuration module
132B<all> the B<openssl> utility sub commands can see the new objects as well
133as any compliant applications. For example:
134
135 [new_oids]
1bc74519 136
a30af36c
DSH
137 some_new_oid = 1.2.3.4
138 some_other_oid = 1.2.3.5
139
a528d4f0 140It is also possible to set the value to the long name followed
6446e0c3
DSH
141by a comma and the numerical OID form. For example:
142
143 shortName = some object long name, 1.2.3.4
144
05ea606a 145=head2 Engine Configuration Module
a30af36c 146
f2c18125
DSH
147This ENGINE configuration module has the name B<engines>. The value of this
148variable points to a section containing further ENGINE configuration
149information.
150
151The section pointed to by B<engines> is a table of engine names (though see
2b4ffc65 152B<engine_id> below) and further sections containing configuration information
f2c18125
DSH
153specific to each ENGINE.
154
155Each ENGINE specific section is used to set default algorithms, load
156dynamic, perform initialization and send ctrls. The actual operation performed
157depends on the I<command> name which is the name of the name value pair. The
158currently supported commands are listed below.
159
160For example:
161
162 [engine_section]
163
164 # Configure ENGINE named "foo"
165 foo = foo_section
166 # Configure ENGINE named "bar"
167 bar = bar_section
168
169 [foo_section]
170 ... foo ENGINE specific commands ...
171
172 [bar_section]
173 ... "bar" ENGINE specific commands ...
174
1bc74519 175The command B<engine_id> is used to give the ENGINE name. If used this
f2c18125
DSH
176command must be first. For example:
177
178 [engine_section]
179 # This would normally handle an ENGINE named "foo"
180 foo = foo_section
181
182 [foo_section]
183 # Override default name and use "myfoo" instead.
184 engine_id = myfoo
185
186The command B<dynamic_path> loads and adds an ENGINE from the given path. It
187is equivalent to sending the ctrls B<SO_PATH> with the path argument followed
188by B<LIST_ADD> with value 2 and B<LOAD> to the dynamic ENGINE. If this is
189not the required behaviour then alternative ctrls can be sent directly
190to the dynamic ENGINE using ctrl commands.
191
192The command B<init> determines whether to initialize the ENGINE. If the value
193is B<0> the ENGINE will not be initialized, if B<1> and attempt it made to
194initialized the ENGINE immediately. If the B<init> command is not present
195then an attempt will be made to initialize the ENGINE after all commands in
196its section have been processed.
197
198The command B<default_algorithms> sets the default algorithms an ENGINE will
35cb565a 199supply using the functions ENGINE_set_default_string().
f2c18125
DSH
200
201If the name matches none of the above command names it is assumed to be a
1bc74519 202ctrl command which is sent to the ENGINE. The value of the command is the
f2c18125
DSH
203argument to the ctrl command. If the value is the string B<EMPTY> then no
204value is sent to the command.
205
206For example:
207
208
209 [engine_section]
210
211 # Configure ENGINE named "foo"
212 foo = foo_section
213
214 [foo_section]
215 # Load engine from DSO
216 dynamic_path = /some/path/fooengine.so
217 # A foo specific ctrl.
218 some_ctrl = some_value
219 # Another ctrl that doesn't take a value.
220 other_ctrl = EMPTY
221 # Supply all default algorithms
222 default_algorithms = ALL
a30af36c 223
b6670f69
RL
224=head2 Provider Configuration Module
225
226This provider configuration module has the name B<providers>. The
227value of this variable points to a section containing further provider
228configuration information.
229
230The section pointed to by B<providers> is a table of provider names
231(though see B<identity> below) and further sections containing
232configuration information specific to each provider module.
233
234Each provider specific section is used to load its module, perform
235activation and set parameters to pass to the provider on demand. The
236actual operation performed depends on the name of the name value pair.
237The currently supported commands are listed below.
238
239For example:
240
241 [provider_section]
242
243 # Configure provider named "foo"
244 foo = foo_section
245 # Configure provider named "bar"
246 bar = bar_section
247
248 [foo_section]
249 ... "foo" provider specific parameters ...
250
251 [bar_section]
252 ... "bar" provider specific parameters ...
253
254The command B<identity> is used to give the provider name. For example:
255
256 [provider_section]
257 # This would normally handle a provider named "foo"
258 foo = foo_section
259
260 [foo_section]
261 # Override default name and use "myfoo" instead.
262 identity = myfoo
263
264The parameter B<module> loads and adds a provider module from the
265given module path. That path may be a simple file name, a relative
266path or an absolute path.
267
268The parameter B<activate> determines whether to activate the
269provider. The value has no importance, the presence of the parameter
270is enough for activation to take place.
271
272All parameters in the section as well as sub-sections are made
273available to the provider.
274
05ea606a 275=head2 EVP Configuration Module
3d764db7 276
de3955f6 277This module has the name B<alg_section> which points to a section containing
3d764db7
DSH
278algorithm commands.
279
de3955f6
RL
280The supported algorithm commands are:
281
282=over 4
283
284=item B<default_properties>
285
286The value may be anything that is acceptable as a property query
287string for EVP_set_default_properties().
288
289=item B<fips_mode> (deprecated)
290
291The value is a boolean that can be B<yes> or B<no>. If the value is
292B<yes>, this is exactly equivalent to:
293
294 default_properties = fips=yes
295
296If the value is B<no>, nothing happens.
297
298=back
299
300These two commands should not be used together, as there is no control
301over how they affect each other.
302The use of B<fips_mode> is strongly discouraged and is only present
303for backward compatibility with earlier OpenSSL FIPS modules.
3d764db7 304
05ea606a 305=head2 SSL Configuration Module
913592d2
DSH
306
307This module has the name B<ssl_conf> which points to a section containing
308SSL configurations.
309
310Each line in the SSL configuration section contains the name of the
311configuration and the section containing it.
312
313Each configuration section consists of command value pairs for B<SSL_CONF>.
314Each pair will be passed to a B<SSL_CTX> or B<SSL> structure if it calls
315SSL_CTX_config() or SSL_config() with the appropriate configuration name.
316
317Note: any characters before an initial dot in the configuration section are
318ignored so the same command can be used multiple times.
319
320For example:
321
322 ssl_conf = ssl_sect
323
324 [ssl_sect]
325
326 server = server_section
327
328 [server_section]
329
330 RSA.Certificate = server-rsa.pem
331 ECDSA.Certificate = server-ecdsa.pem
332 Ciphers = ALL:!RC4
3d764db7 333
8a5ed9dc
TM
334The system default configuration with name B<system_default> if present will
335be applied during any creation of the B<SSL_CTX> structure.
336
337Example of a configuration with the system default:
338
339 ssl_conf = ssl_sect
340
341 [ssl_sect]
342
343 system_default = system_default_sect
344
345 [system_default_sect]
346
347 MinProtocol = TLSv1.2
348
349
aba3e65f
DSH
350=head1 NOTES
351
19d2bb57 352If a configuration file attempts to expand a variable that doesn't exist
aba3e65f
DSH
353then an error is flagged and the file will not load. This can happen
354if an attempt is made to expand an environment variable that doesn't
a30af36c
DSH
355exist. For example in a previous version of OpenSSL the default OpenSSL
356master configuration file used the value of B<HOME> which may not be
357defined on non Unix systems and would cause an error.
aba3e65f
DSH
358
359This can be worked around by including a B<default> section to provide
360a default value: then if the environment lookup fails the default value
361will be used instead. For this to work properly the default value must
362be defined earlier in the configuration file than the expansion. See
363the B<EXAMPLES> section for an example of how to do this.
364
365If the same variable exists in the same section then all but the last
366value will be silently ignored. In certain circumstances such as with
367DNs the same field may occur multiple times. This is usually worked
368around by ignoring any characters before an initial B<.> e.g.
369
370 1.OU="My first OU"
371 2.OU="My Second OU"
372
373=head1 EXAMPLES
374
375Here is a sample configuration file using some of the features
376mentioned above.
377
378 # This is the default section.
1bc74519 379
aba3e65f
DSH
380 HOME=/temp
381 RANDFILE= ${ENV::HOME}/.rnd
382 configdir=$ENV::HOME/config
383
384 [ section_one ]
385
386 # We are now in section one.
387
388 # Quotes permit leading and trailing whitespace
389 any = " any variable name "
390
391 other = A string that can \
392 cover several lines \
393 by including \\ characters
394
395 message = Hello World\n
396
397 [ section_two ]
398
399 greeting = $section_one::message
400
401This next example shows how to expand environment variables safely.
402
403Suppose you want a variable called B<tmpfile> to refer to a
404temporary filename. The directory it is placed in can determined by
35ed393e 405the B<TEMP> or B<TMP> environment variables but they may not be
aba3e65f
DSH
406set to any value at all. If you just include the environment variable
407names and the variable doesn't exist then this will cause an error when
408an attempt is made to load the configuration file. By making use of the
1bc74519 409default section both values can be looked up with B<TEMP> taking
aba3e65f
DSH
410priority and B</tmp> used if neither is defined:
411
412 TMP=/tmp
413 # The above value is used if TMP isn't in the environment
414 TEMP=$ENV::TMP
415 # The above value is used if TEMP isn't in the environment
416 tmpfile=${ENV::TEMP}/tmp.filename
417
7b68c30d
DSH
418Simple OpenSSL library configuration example to enter FIPS mode:
419
420 # Default appname: should match "appname" parameter (if any)
421 # supplied to CONF_modules_load_file et al.
422 openssl_conf = openssl_conf_section
423
424 [openssl_conf_section]
425 # Configuration module list
426 alg_section = evp_sect
427
428 [evp_sect]
429 # Set to "yes" to enter FIPS mode if supported
430 fips_mode = yes
431
432Note: in the above example you will get an error in non FIPS capable versions
433of OpenSSL.
434
435More complex OpenSSL library configuration. Add OID and don't enter FIPS mode:
436
437 # Default appname: should match "appname" parameter (if any)
438 # supplied to CONF_modules_load_file et al.
439 openssl_conf = openssl_conf_section
440
441 [openssl_conf_section]
442 # Configuration module list
443 alg_section = evp_sect
444 oid_section = new_oids
445
446 [evp_sect]
447 # This will have no effect as FIPS mode is off by default.
448 # Set to "yes" to enter FIPS mode, if supported
449 fips_mode = no
450
451 [new_oids]
452 # New OID, just short name
453 newoid1 = 1.2.3.4.1
454 # New OID shortname and long name
455 newoid2 = New OID 2 long name, 1.2.3.4.2
456
35ed393e 457The above examples can be used with any application supporting library
7b68c30d
DSH
458configuration if "openssl_conf" is modified to match the appropriate "appname".
459
460For example if the second sample file above is saved to "example.cnf" then
461the command line:
462
463 OPENSSL_CONF=example.cnf openssl asn1parse -genstr OID:1.2.3.4.1
464
465will output:
466
467 0:d=0 hl=2 l= 4 prim: OBJECT :newoid1
468
469showing that the OID "newoid1" has been added as "1.2.3.4.1".
470
284f4f6b
BE
471=head1 ENVIRONMENT
472
473=over 4
474
475=item B<OPENSSL_CONF>
476
477The path to the config file.
478Ignored in set-user-ID and set-group-ID programs.
479
480=item B<OPENSSL_ENGINES>
481
482The path to the engines directory.
483Ignored in set-user-ID and set-group-ID programs.
484
b6670f69
RL
485=item B<OPENSSL_MODULES>
486
487The path to the directory with OpenSSL modules, such as providers.
488Ignored in set-user-ID and set-group-ID programs.
489
284f4f6b
BE
490=back
491
aba3e65f
DSH
492=head1 BUGS
493
494Currently there is no way to include characters using the octal B<\nnn>
495form. Strings are all null terminated so nulls cannot form part of
496the value.
497
498The escaping isn't quite right: if you want to use sequences like B<\n>
499you can't use any quote escaping on the same line.
500
501Files are loaded in a single pass. This means that an variable expansion
502will only work if the variables referenced are defined earlier in the
503file.
504
505=head1 SEE ALSO
506
9b86974e 507L<x509(1)>, L<req(1)>, L<ca(1)>
aba3e65f 508
e2f92610
RS
509=head1 COPYRIGHT
510
b0edda11 511Copyright 2000-2018 The OpenSSL Project Authors. All Rights Reserved.
e2f92610 512
b1e979ae 513Licensed under the Apache License 2.0 (the "License"). You may not use
e2f92610
RS
514this file except in compliance with the License. You can obtain a copy
515in the file LICENSE in the source distribution or at
516L<https://www.openssl.org/source/license.html>.
517
518=cut