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