]> git.ipfire.org Git - thirdparty/openssl.git/blame - doc/apps/config.pod
Document hash functions.
[thirdparty/openssl.git] / doc / apps / config.pod
CommitLineData
aba3e65f
DSH
1
2=pod
3
4=head1 NAME
5
19d2bb57 6config - OpenSSL CONF library configuration files
aba3e65f
DSH
7
8=head1 DESCRIPTION
9
19d2bb57 10The OpenSSL CONF library can be used to read configuration files.
aba3e65f
DSH
11It is used for the OpenSSL master configuration file B<openssl.cnf>
12and in a few other places like B<SPKAC> files and certificate extension
13files for the B<x509> utility.
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
21to as the B<default> section this is usually unnamed and is from the
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
30Each section in a configuration file consists of a number of name and
31value pairs of the form B<name=value>
32
33The B<name> string can contain any alphanumeric characters as well as
34a few punctuation symbols such as B<.> B<,> B<;> and B<_>.
35
36The B<value> string consists of the string following the B<=> character
37until end of line with any leading and trailing white space removed.
38
39The value string undergoes variable expansion. This can be done by
40including the form B<$var> or B<${var}>: this will substitute the value
41of the named variable in the current section. It is also possible to
42substitute a value from another section using the syntax B<$section::name>
19d2bb57 43or B<${section::name}>. By using the form B<$ENV::name> environment
aba3e65f
DSH
44variables can be substituted. It is also possible to assign values to
45environment variables by using the name B<ENV::name>, this will work
46if the program looks up environment variables using the B<CONF> library
47instead of calling B<getenv()> directly.
48
49It is possible to escape certain characters by using any kind of quote
50or the B<\> character. By making the last character of a line a B<\>
51a B<value> string can be spread across multiple lines. In addition
52the sequences B<\n>, B<\r>, B<\b> and B<\t> are recognised.
53
54=head1 NOTES
55
19d2bb57 56If a configuration file attempts to expand a variable that doesn't exist
aba3e65f
DSH
57then an error is flagged and the file will not load. This can happen
58if an attempt is made to expand an environment variable that doesn't
59exist. For example the default OpenSSL master configuration file used
60the value of B<HOME> which may not be defined on non Unix systems.
61
62This can be worked around by including a B<default> section to provide
63a default value: then if the environment lookup fails the default value
64will be used instead. For this to work properly the default value must
65be defined earlier in the configuration file than the expansion. See
66the B<EXAMPLES> section for an example of how to do this.
67
68If the same variable exists in the same section then all but the last
69value will be silently ignored. In certain circumstances such as with
70DNs the same field may occur multiple times. This is usually worked
71around by ignoring any characters before an initial B<.> e.g.
72
73 1.OU="My first OU"
74 2.OU="My Second OU"
75
76=head1 EXAMPLES
77
78Here is a sample configuration file using some of the features
79mentioned above.
80
81 # This is the default section.
82
83 HOME=/temp
84 RANDFILE= ${ENV::HOME}/.rnd
85 configdir=$ENV::HOME/config
86
87 [ section_one ]
88
89 # We are now in section one.
90
91 # Quotes permit leading and trailing whitespace
92 any = " any variable name "
93
94 other = A string that can \
95 cover several lines \
96 by including \\ characters
97
98 message = Hello World\n
99
100 [ section_two ]
101
102 greeting = $section_one::message
103
104This next example shows how to expand environment variables safely.
105
106Suppose you want a variable called B<tmpfile> to refer to a
107temporary filename. The directory it is placed in can determined by
108the the B<TEMP> or B<TMP> environment variables but they may not be
109set to any value at all. If you just include the environment variable
110names and the variable doesn't exist then this will cause an error when
111an attempt is made to load the configuration file. By making use of the
112default section both values can be looked up with B<TEMP> taking
113priority and B</tmp> used if neither is defined:
114
115 TMP=/tmp
116 # The above value is used if TMP isn't in the environment
117 TEMP=$ENV::TMP
118 # The above value is used if TEMP isn't in the environment
119 tmpfile=${ENV::TEMP}/tmp.filename
120
121=head1 BUGS
122
123Currently there is no way to include characters using the octal B<\nnn>
124form. Strings are all null terminated so nulls cannot form part of
125the value.
126
127The escaping isn't quite right: if you want to use sequences like B<\n>
128you can't use any quote escaping on the same line.
129
130Files are loaded in a single pass. This means that an variable expansion
131will only work if the variables referenced are defined earlier in the
132file.
133
134=head1 SEE ALSO
135
bb075f88 136L<x509(1)|x509(1)>, L<req(1)|req(1)>, L<ca(1)|ca(1)>
aba3e65f
DSH
137
138=cut