config.pod 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351
  1. =pod
  2. =for comment openssl_manual_section:5
  3. =head1 NAME
  4. config - OpenSSL CONF library configuration files
  5. =head1 DESCRIPTION
  6. The OpenSSL CONF library can be used to read configuration files.
  7. It is used for the OpenSSL master configuration file B<openssl.cnf>
  8. and in a few other places like B<SPKAC> files and certificate extension
  9. files for the B<x509> utility. OpenSSL applications can also use the
  10. CONF library for their own purposes.
  11. A configuration file is divided into a number of sections. Each section
  12. starts with a line B<[ section_name ]> and ends when a new section is
  13. started or end of file is reached. A section name can consist of
  14. alphanumeric characters and underscores.
  15. The first section of a configuration file is special and is referred
  16. to as the B<default> section this is usually unnamed and is from the
  17. start of file until the first named section. When a name is being looked up
  18. it is first looked up in a named section (if any) and then the
  19. default section.
  20. The environment is mapped onto a section called B<ENV>.
  21. Comments can be included by preceding them with the B<#> character
  22. Each section in a configuration file consists of a number of name and
  23. value pairs of the form B<name=value>
  24. The B<name> string can contain any alphanumeric characters as well as
  25. a few punctuation symbols such as B<.> B<,> B<;> and B<_>.
  26. The B<value> string consists of the string following the B<=> character
  27. until end of line with any leading and trailing white space removed.
  28. The value string undergoes variable expansion. This can be done by
  29. including the form B<$var> or B<${var}>: this will substitute the value
  30. of the named variable in the current section. It is also possible to
  31. substitute a value from another section using the syntax B<$section::name>
  32. or B<${section::name}>. By using the form B<$ENV::name> environment
  33. variables can be substituted. It is also possible to assign values to
  34. environment variables by using the name B<ENV::name>, this will work
  35. if the program looks up environment variables using the B<CONF> library
  36. instead of calling B<getenv()> directly. The value string must not exceed 64k in
  37. length after variable expansion. Otherwise an error will occur.
  38. It is possible to escape certain characters by using any kind of quote
  39. or the B<\> character. By making the last character of a line a B<\>
  40. a B<value> string can be spread across multiple lines. In addition
  41. the sequences B<\n>, B<\r>, B<\b> and B<\t> are recognized.
  42. =head1 OPENSSL LIBRARY CONFIGURATION
  43. In OpenSSL 0.9.7 and later applications can automatically configure certain
  44. aspects of OpenSSL using the master OpenSSL configuration file, or optionally
  45. an alternative configuration file. The B<openssl> utility includes this
  46. functionality: any sub command uses the master OpenSSL configuration file
  47. unless an option is used in the sub command to use an alternative configuration
  48. file.
  49. To enable library configuration the default section needs to contain an
  50. appropriate line which points to the main configuration section. The default
  51. name is B<openssl_conf> which is used by the B<openssl> utility. Other
  52. applications may use an alternative name such as B<myapplicaton_conf>.
  53. The configuration section should consist of a set of name value pairs which
  54. contain specific module configuration information. The B<name> represents
  55. the name of the I<configuration module> the meaning of the B<value> is
  56. module specific: it may, for example, represent a further configuration
  57. section containing configuration module specific information. E.g.
  58. openssl_conf = openssl_init
  59. [openssl_init]
  60. oid_section = new_oids
  61. engines = engine_section
  62. [new_oids]
  63. ... new oids here ...
  64. [engine_section]
  65. ... engine stuff here ...
  66. The features of each configuration module are described below.
  67. =head2 ASN1 OBJECT CONFIGURATION MODULE
  68. This module has the name B<oid_section>. The value of this variable points
  69. to a section containing name value pairs of OIDs: the name is the OID short
  70. and long name, the value is the numerical form of the OID. Although some of
  71. the B<openssl> utility sub commands already have their own ASN1 OBJECT section
  72. functionality not all do. By using the ASN1 OBJECT configuration module
  73. B<all> the B<openssl> utility sub commands can see the new objects as well
  74. as any compliant applications. For example:
  75. [new_oids]
  76. some_new_oid = 1.2.3.4
  77. some_other_oid = 1.2.3.5
  78. In OpenSSL 0.9.8 it is also possible to set the value to the long name followed
  79. by a comma and the numerical OID form. For example:
  80. shortName = some object long name, 1.2.3.4
  81. =head2 ENGINE CONFIGURATION MODULE
  82. This ENGINE configuration module has the name B<engines>. The value of this
  83. variable points to a section containing further ENGINE configuration
  84. information.
  85. The section pointed to by B<engines> is a table of engine names (though see
  86. B<engine_id> below) and further sections containing configuration information
  87. specific to each ENGINE.
  88. Each ENGINE specific section is used to set default algorithms, load
  89. dynamic, perform initialization and send ctrls. The actual operation performed
  90. depends on the I<command> name which is the name of the name value pair. The
  91. currently supported commands are listed below.
  92. For example:
  93. [engine_section]
  94. # Configure ENGINE named "foo"
  95. foo = foo_section
  96. # Configure ENGINE named "bar"
  97. bar = bar_section
  98. [foo_section]
  99. ... foo ENGINE specific commands ...
  100. [bar_section]
  101. ... "bar" ENGINE specific commands ...
  102. The command B<engine_id> is used to give the ENGINE name. If used this
  103. command must be first. For example:
  104. [engine_section]
  105. # This would normally handle an ENGINE named "foo"
  106. foo = foo_section
  107. [foo_section]
  108. # Override default name and use "myfoo" instead.
  109. engine_id = myfoo
  110. The command B<dynamic_path> loads and adds an ENGINE from the given path. It
  111. is equivalent to sending the ctrls B<SO_PATH> with the path argument followed
  112. by B<LIST_ADD> with value 2 and B<LOAD> to the dynamic ENGINE. If this is
  113. not the required behaviour then alternative ctrls can be sent directly
  114. to the dynamic ENGINE using ctrl commands.
  115. The command B<init> determines whether to initialize the ENGINE. If the value
  116. is B<0> the ENGINE will not be initialized, if B<1> and attempt it made to
  117. initialized the ENGINE immediately. If the B<init> command is not present
  118. then an attempt will be made to initialize the ENGINE after all commands in
  119. its section have been processed.
  120. The command B<default_algorithms> sets the default algorithms an ENGINE will
  121. supply using the functions B<ENGINE_set_default_string()>
  122. If the name matches none of the above command names it is assumed to be a
  123. ctrl command which is sent to the ENGINE. The value of the command is the
  124. argument to the ctrl command. If the value is the string B<EMPTY> then no
  125. value is sent to the command.
  126. For example:
  127. [engine_section]
  128. # Configure ENGINE named "foo"
  129. foo = foo_section
  130. [foo_section]
  131. # Load engine from DSO
  132. dynamic_path = /some/path/fooengine.so
  133. # A foo specific ctrl.
  134. some_ctrl = some_value
  135. # Another ctrl that doesn't take a value.
  136. other_ctrl = EMPTY
  137. # Supply all default algorithms
  138. default_algorithms = ALL
  139. =head2 EVP CONFIGURATION MODULE
  140. This modules has the name B<alg_section> which points to a section containing
  141. algorithm commands.
  142. Currently the only algorithm command supported is B<fips_mode> whose
  143. value should be a boolean string such as B<on> or B<off>. If the value is
  144. B<on> this attempt to enter FIPS mode. If the call fails or the library is
  145. not FIPS capable then an error occurs.
  146. For example:
  147. alg_section = evp_settings
  148. [evp_settings]
  149. fips_mode = on
  150. =head1 NOTES
  151. If a configuration file attempts to expand a variable that doesn't exist
  152. then an error is flagged and the file will not load. This can happen
  153. if an attempt is made to expand an environment variable that doesn't
  154. exist. For example in a previous version of OpenSSL the default OpenSSL
  155. master configuration file used the value of B<HOME> which may not be
  156. defined on non Unix systems and would cause an error.
  157. This can be worked around by including a B<default> section to provide
  158. a default value: then if the environment lookup fails the default value
  159. will be used instead. For this to work properly the default value must
  160. be defined earlier in the configuration file than the expansion. See
  161. the B<EXAMPLES> section for an example of how to do this.
  162. If the same variable exists in the same section then all but the last
  163. value will be silently ignored. In certain circumstances such as with
  164. DNs the same field may occur multiple times. This is usually worked
  165. around by ignoring any characters before an initial B<.> e.g.
  166. 1.OU="My first OU"
  167. 2.OU="My Second OU"
  168. =head1 EXAMPLES
  169. Here is a sample configuration file using some of the features
  170. mentioned above.
  171. # This is the default section.
  172. HOME=/temp
  173. RANDFILE= ${ENV::HOME}/.rnd
  174. configdir=$ENV::HOME/config
  175. [ section_one ]
  176. # We are now in section one.
  177. # Quotes permit leading and trailing whitespace
  178. any = " any variable name "
  179. other = A string that can \
  180. cover several lines \
  181. by including \\ characters
  182. message = Hello World\n
  183. [ section_two ]
  184. greeting = $section_one::message
  185. This next example shows how to expand environment variables safely.
  186. Suppose you want a variable called B<tmpfile> to refer to a
  187. temporary filename. The directory it is placed in can determined by
  188. the the B<TEMP> or B<TMP> environment variables but they may not be
  189. set to any value at all. If you just include the environment variable
  190. names and the variable doesn't exist then this will cause an error when
  191. an attempt is made to load the configuration file. By making use of the
  192. default section both values can be looked up with B<TEMP> taking
  193. priority and B</tmp> used if neither is defined:
  194. TMP=/tmp
  195. # The above value is used if TMP isn't in the environment
  196. TEMP=$ENV::TMP
  197. # The above value is used if TEMP isn't in the environment
  198. tmpfile=${ENV::TEMP}/tmp.filename
  199. Simple OpenSSL library configuration example to enter FIPS mode:
  200. # Default appname: should match "appname" parameter (if any)
  201. # supplied to CONF_modules_load_file et al.
  202. openssl_conf = openssl_conf_section
  203. [openssl_conf_section]
  204. # Configuration module list
  205. alg_section = evp_sect
  206. [evp_sect]
  207. # Set to "yes" to enter FIPS mode if supported
  208. fips_mode = yes
  209. Note: in the above example you will get an error in non FIPS capable versions
  210. of OpenSSL.
  211. More complex OpenSSL library configuration. Add OID and don't enter FIPS mode:
  212. # Default appname: should match "appname" parameter (if any)
  213. # supplied to CONF_modules_load_file et al.
  214. openssl_conf = openssl_conf_section
  215. [openssl_conf_section]
  216. # Configuration module list
  217. alg_section = evp_sect
  218. oid_section = new_oids
  219. [evp_sect]
  220. # This will have no effect as FIPS mode is off by default.
  221. # Set to "yes" to enter FIPS mode, if supported
  222. fips_mode = no
  223. [new_oids]
  224. # New OID, just short name
  225. newoid1 = 1.2.3.4.1
  226. # New OID shortname and long name
  227. newoid2 = New OID 2 long name, 1.2.3.4.2
  228. The above examples can be used with with any application supporting library
  229. configuration if "openssl_conf" is modified to match the appropriate "appname".
  230. For example if the second sample file above is saved to "example.cnf" then
  231. the command line:
  232. OPENSSL_CONF=example.cnf openssl asn1parse -genstr OID:1.2.3.4.1
  233. will output:
  234. 0:d=0 hl=2 l= 4 prim: OBJECT :newoid1
  235. showing that the OID "newoid1" has been added as "1.2.3.4.1".
  236. =head1 BUGS
  237. Currently there is no way to include characters using the octal B<\nnn>
  238. form. Strings are all null terminated so nulls cannot form part of
  239. the value.
  240. The escaping isn't quite right: if you want to use sequences like B<\n>
  241. you can't use any quote escaping on the same line.
  242. Files are loaded in a single pass. This means that an variable expansion
  243. will only work if the variables referenced are defined earlier in the
  244. file.
  245. =head1 SEE ALSO
  246. L<x509(1)|x509(1)>, L<req(1)|req(1)>, L<ca(1)|ca(1)>
  247. =cut