SSL_CONF_cmd.pod 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799
  1. =pod
  2. =head1 NAME
  3. SSL_CONF_cmd_value_type,
  4. SSL_CONF_cmd - send configuration command
  5. =head1 SYNOPSIS
  6. #include <openssl/ssl.h>
  7. int SSL_CONF_cmd(SSL_CONF_CTX *ctx, const char *option, const char *value);
  8. int SSL_CONF_cmd_value_type(SSL_CONF_CTX *ctx, const char *option);
  9. =head1 DESCRIPTION
  10. The function SSL_CONF_cmd() performs configuration operation B<option> with
  11. optional parameter B<value> on B<ctx>. Its purpose is to simplify application
  12. configuration of B<SSL_CTX> or B<SSL> structures by providing a common
  13. framework for command line options or configuration files.
  14. SSL_CONF_cmd_value_type() returns the type of value that B<option> refers to.
  15. =head1 SUPPORTED COMMAND LINE COMMANDS
  16. Currently supported B<option> names for command lines (i.e. when the
  17. flag B<SSL_CONF_FLAG_CMDLINE> is set) are listed below. Note: all B<option>
  18. names are case sensitive. Unless otherwise stated commands can be used by
  19. both clients and servers and the B<value> parameter is not used. The default
  20. prefix for command line commands is B<-> and that is reflected below.
  21. =over 4
  22. =item B<-bugs>
  23. Various bug workarounds are set, same as setting B<SSL_OP_ALL>.
  24. =item B<-no_comp>
  25. Disables support for SSL/TLS compression, same as setting
  26. B<SSL_OP_NO_COMPRESSION>.
  27. As of OpenSSL 1.1.0, compression is off by default.
  28. =item B<-comp>
  29. Enables support for SSL/TLS compression, same as clearing
  30. B<SSL_OP_NO_COMPRESSION>.
  31. This command was introduced in OpenSSL 1.1.0.
  32. As of OpenSSL 1.1.0, compression is off by default. TLS compression can only be
  33. used in security level 1 or lower. From OpenSSL 3.2.0 and above the default
  34. security level is 2, so this option will have no effect without also changing
  35. the security level. See L<SSL_CTX_set_security_level(3)>.
  36. =item B<-no_ticket>
  37. Disables support for session tickets, same as setting B<SSL_OP_NO_TICKET>.
  38. =item B<-serverpref>
  39. Use server and not client preference order when determining which cipher suite,
  40. signature algorithm or elliptic curve to use for an incoming connection.
  41. Equivalent to B<SSL_OP_CIPHER_SERVER_PREFERENCE>. Only used by servers.
  42. =item B<-client_renegotiation>
  43. Allows servers to accept client-initiated renegotiation. Equivalent to
  44. setting B<SSL_OP_ALLOW_CLIENT_RENEGOTIATION>.
  45. Only used by servers.
  46. =item B<-legacy_renegotiation>
  47. Permits the use of unsafe legacy renegotiation. Equivalent to setting
  48. B<SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION>.
  49. =item B<-no_renegotiation>
  50. Disables all attempts at renegotiation in TLSv1.2 and earlier, same as setting
  51. B<SSL_OP_NO_RENEGOTIATION>.
  52. =item B<-no_resumption_on_reneg>
  53. Sets B<SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION>. Only used by servers.
  54. =item B<-legacy_server_connect>, B<-no_legacy_server_connect>
  55. Permits or prohibits the use of unsafe legacy renegotiation for OpenSSL
  56. clients only. Equivalent to setting or clearing B<SSL_OP_LEGACY_SERVER_CONNECT>.
  57. =item B<-prioritize_chacha>
  58. Prioritize ChaCha ciphers when the client has a ChaCha20 cipher at the top of
  59. its preference list. This usually indicates a client without AES hardware
  60. acceleration (e.g. mobile) is in use. Equivalent to B<SSL_OP_PRIORITIZE_CHACHA>.
  61. Only used by servers. Requires B<-serverpref>.
  62. =item B<-allow_no_dhe_kex>
  63. In TLSv1.3 allow a non-(ec)dhe based key exchange mode on resumption. This means
  64. that there will be no forward secrecy for the resumed session.
  65. =item B<-strict>
  66. Enables strict mode protocol handling. Equivalent to setting
  67. B<SSL_CERT_FLAG_TLS_STRICT>.
  68. =item B<-sigalgs> I<algs>
  69. This sets the supported signature algorithms for TLSv1.2 and TLSv1.3.
  70. For clients this value is used directly for the supported signature
  71. algorithms extension. For servers it is used to determine which signature
  72. algorithms to support.
  73. The B<algs> argument should be a colon separated list of signature
  74. algorithms in order of decreasing preference of the form B<algorithm+hash>
  75. or B<signature_scheme>. For the default providers shipped with OpenSSL,
  76. B<algorithm> is one of B<RSA>, B<DSA> or B<ECDSA> and
  77. B<hash> is a supported algorithm OID short name such as B<SHA1>, B<SHA224>,
  78. B<SHA256>, B<SHA384> or B<SHA512>. Note: algorithm and hash names are case
  79. sensitive. B<signature_scheme> is one of the signature schemes defined in
  80. TLSv1.3, specified using the IETF name, e.g., B<ecdsa_secp256r1_sha256>,
  81. B<ed25519>, or B<rsa_pss_pss_sha256>. Additional providers may make available
  82. further algorithms via the TLS_SIGALG capability.
  83. See L<provider-base(7)/CAPABILITIES>.
  84. If this option is not set then all signature algorithms supported by all
  85. activated providers are permissible.
  86. Note: algorithms which specify a PKCS#1 v1.5 signature scheme (either by
  87. using B<RSA> as the B<algorithm> or by using one of the B<rsa_pkcs1_*>
  88. identifiers) are ignored in TLSv1.3 and will not be negotiated.
  89. =item B<-client_sigalgs> I<algs>
  90. This sets the supported signature algorithms associated with client
  91. authentication for TLSv1.2 and TLSv1.3. For servers the B<algs> is used
  92. in the B<signature_algorithms> field of a B<CertificateRequest> message.
  93. For clients it is used to determine which signature algorithm to use with
  94. the client certificate. If a server does not request a certificate this
  95. option has no effect.
  96. The syntax of B<algs> is identical to B<-sigalgs>. If not set, then the
  97. value set for B<-sigalgs> will be used instead.
  98. =item B<-groups> I<groups>
  99. This sets the supported groups. For clients, the groups are sent using
  100. the supported groups extension. For servers, it is used to determine which
  101. group to use. This setting affects groups used for signatures (in TLSv1.2
  102. and earlier) and key exchange. The first group listed will also be used
  103. for the B<key_share> sent by a client in a TLSv1.3 B<ClientHello>.
  104. The B<groups> argument is a colon separated list of groups. The group can
  105. be either the B<NIST> name (e.g. B<P-256>), some other commonly used name
  106. where applicable (e.g. B<X25519>, B<ffdhe2048>) or an OpenSSL OID name
  107. (e.g. B<prime256v1>). Group names are case sensitive. The list should be
  108. in order of preference with the most preferred group first.
  109. Currently supported groups for B<TLSv1.3> are B<P-256>, B<P-384>, B<P-521>,
  110. B<X25519>, B<X448>, B<ffdhe2048>, B<ffdhe3072>, B<ffdhe4096>, B<ffdhe6144>,
  111. B<ffdhe8192>.
  112. =item B<-curves> I<groups>
  113. This is a synonym for the B<-groups> command.
  114. =item B<-named_curve> I<curve>
  115. This sets the temporary curve used for ephemeral ECDH modes. Only used
  116. by servers.
  117. =item B<-tx_cert_comp>
  118. Enables support for sending TLSv1.3 compressed certificates.
  119. =item B<-no_tx_cert_comp>
  120. Disables support for sending TLSv1.3 compressed certificates.
  121. =item B<-rx_cert_comp>
  122. Enables support for receiving TLSv1.3 compressed certificates.
  123. =item B<-no_rx_cert_comp>
  124. Disables support for receiving TLSv1.3 compressed certificates.
  125. =item B<-comp>
  126. The B<groups> argument is a curve name or the special value B<auto> which
  127. picks an appropriate curve based on client and server preferences. The
  128. curve can be either the B<NIST> name (e.g. B<P-256>) or an OpenSSL OID name
  129. (e.g. B<prime256v1>). Curve names are case sensitive.
  130. =item B<-cipher> I<ciphers>
  131. Sets the TLSv1.2 and below ciphersuite list to B<ciphers>. This list will be
  132. combined with any configured TLSv1.3 ciphersuites. Note: syntax checking
  133. of B<ciphers> is currently not performed unless a B<SSL> or B<SSL_CTX>
  134. structure is associated with B<ctx>.
  135. =item B<-ciphersuites> I<1.3ciphers>
  136. Sets the available ciphersuites for TLSv1.3 to value. This is a
  137. colon-separated list of TLSv1.3 ciphersuite names in order of preference. This
  138. list will be combined any configured TLSv1.2 and below ciphersuites.
  139. See L<openssl-ciphers(1)> for more information.
  140. =item B<-min_protocol> I<minprot>, B<-max_protocol> I<maxprot>
  141. Sets the minimum and maximum supported protocol.
  142. Currently supported protocol values are B<SSLv3>, B<TLSv1>, B<TLSv1.1>,
  143. B<TLSv1.2>, B<TLSv1.3> for TLS; B<DTLSv1>, B<DTLSv1.2> for DTLS, and B<None>
  144. for no limit.
  145. If either the lower or upper bound is not specified then only the other bound
  146. applies, if specified.
  147. If your application supports both TLS and DTLS you can specify any of these
  148. options twice, once with a bound for TLS and again with an appropriate bound
  149. for DTLS.
  150. To restrict the supported protocol versions use these commands rather than the
  151. deprecated alternative commands below.
  152. =item B<-record_padding> I<padding>
  153. Attempts to pad TLSv1.3 records so that they are a multiple of B<padding>
  154. in length on send. A B<padding> of 0 or 1 turns off padding. Otherwise,
  155. the B<padding> must be >1 or <=16384.
  156. =item B<-debug_broken_protocol>
  157. Ignored.
  158. =item B<-no_middlebox>
  159. Turn off "middlebox compatibility", as described below.
  160. =back
  161. =head2 Additional Options
  162. The following options are accepted by SSL_CONF_cmd(), but are not
  163. processed by the OpenSSL commands.
  164. =over 4
  165. =item B<-cert> I<file>
  166. Attempts to use B<file> as the certificate for the appropriate context. It
  167. currently uses SSL_CTX_use_certificate_chain_file() if an B<SSL_CTX>
  168. structure is set or SSL_use_certificate_file() with filetype PEM if an
  169. B<SSL> structure is set. This option is only supported if certificate
  170. operations are permitted.
  171. =item B<-key> I<file>
  172. Attempts to use B<file> as the private key for the appropriate context. This
  173. option is only supported if certificate operations are permitted. Note:
  174. if no B<-key> option is set then a private key is not loaded unless the
  175. flag B<SSL_CONF_FLAG_REQUIRE_PRIVATE> is set.
  176. =item B<-dhparam> I<file>
  177. Attempts to use B<file> as the set of temporary DH parameters for
  178. the appropriate context. This option is only supported if certificate
  179. operations are permitted.
  180. =item B<-no_ssl3>, B<-no_tls1>, B<-no_tls1_1>, B<-no_tls1_2>, B<-no_tls1_3>
  181. Disables protocol support for SSLv3, TLSv1.0, TLSv1.1, TLSv1.2 or TLSv1.3 by
  182. setting the corresponding options B<SSL_OP_NO_SSLv3>, B<SSL_OP_NO_TLSv1>,
  183. B<SSL_OP_NO_TLSv1_1>, B<SSL_OP_NO_TLSv1_2> and B<SSL_OP_NO_TLSv1_3>
  184. respectively. These options are deprecated, use B<-min_protocol> and
  185. B<-max_protocol> instead.
  186. =item B<-anti_replay>, B<-no_anti_replay>
  187. Switches replay protection, on or off respectively. With replay protection on,
  188. OpenSSL will automatically detect if a session ticket has been used more than
  189. once, TLSv1.3 has been negotiated, and early data is enabled on the server. A
  190. full handshake is forced if a session ticket is used a second or subsequent
  191. time. Anti-Replay is on by default unless overridden by a configuration file and
  192. is only used by servers. Anti-replay measures are required for compliance with
  193. the TLSv1.3 specification. Some applications may be able to mitigate the replay
  194. risks in other ways and in such cases the built-in OpenSSL functionality is not
  195. required. Switching off anti-replay is equivalent to B<SSL_OP_NO_ANTI_REPLAY>.
  196. =back
  197. =head1 SUPPORTED CONFIGURATION FILE COMMANDS
  198. Currently supported B<option> names for configuration files (i.e., when the
  199. flag B<SSL_CONF_FLAG_FILE> is set) are listed below. All configuration file
  200. B<option> names are case insensitive so B<signaturealgorithms> is recognised
  201. as well as B<SignatureAlgorithms>. Unless otherwise stated the B<value> names
  202. are also case insensitive.
  203. Note: the command prefix (if set) alters the recognised B<option> values.
  204. =over 4
  205. =item B<CipherString>
  206. Sets the ciphersuite list for TLSv1.2 and below to B<value>. This list will be
  207. combined with any configured TLSv1.3 ciphersuites. Note: syntax
  208. checking of B<value> is currently not performed unless an B<SSL> or B<SSL_CTX>
  209. structure is associated with B<ctx>.
  210. =item B<Ciphersuites>
  211. Sets the available ciphersuites for TLSv1.3 to B<value>. This is a
  212. colon-separated list of TLSv1.3 ciphersuite names in order of preference. This
  213. list will be combined any configured TLSv1.2 and below ciphersuites.
  214. See L<openssl-ciphers(1)> for more information.
  215. =item B<Certificate>
  216. Attempts to use the file B<value> as the certificate for the appropriate
  217. context. It currently uses SSL_CTX_use_certificate_chain_file() if an B<SSL_CTX>
  218. structure is set or SSL_use_certificate_file() with filetype PEM if an B<SSL>
  219. structure is set. This option is only supported if certificate operations
  220. are permitted.
  221. =item B<PrivateKey>
  222. Attempts to use the file B<value> as the private key for the appropriate
  223. context. This option is only supported if certificate operations
  224. are permitted. Note: if no B<PrivateKey> option is set then a private key is
  225. not loaded unless the B<SSL_CONF_FLAG_REQUIRE_PRIVATE> is set.
  226. =item B<ChainCAFile>, B<ChainCAPath>, B<VerifyCAFile>, B<VerifyCAPath>
  227. These options indicate a file or directory used for building certificate
  228. chains or verifying certificate chains. These options are only supported
  229. if certificate operations are permitted.
  230. =item B<RequestCAFile>
  231. This option indicates a file containing a set of certificates in PEM form.
  232. The subject names of the certificates are sent to the peer in the
  233. B<certificate_authorities> extension for TLS 1.3 (in ClientHello or
  234. CertificateRequest) or in a certificate request for previous versions or
  235. TLS.
  236. =item B<ServerInfoFile>
  237. Attempts to use the file B<value> in the "serverinfo" extension using the
  238. function SSL_CTX_use_serverinfo_file.
  239. =item B<DHParameters>
  240. Attempts to use the file B<value> as the set of temporary DH parameters for
  241. the appropriate context. This option is only supported if certificate
  242. operations are permitted.
  243. =item B<RecordPadding>
  244. Attempts to pad TLSv1.3 records so that they are a multiple of B<value> in
  245. length on send. A B<value> of 0 or 1 turns off padding. Otherwise, the
  246. B<value> must be >1 or <=16384.
  247. =item B<SignatureAlgorithms>
  248. This sets the supported signature algorithms for TLSv1.2 and TLSv1.3.
  249. For clients this
  250. value is used directly for the supported signature algorithms extension. For
  251. servers it is used to determine which signature algorithms to support.
  252. The B<value> argument should be a colon separated list of signature algorithms
  253. in order of decreasing preference of the form B<algorithm+hash> or
  254. B<signature_scheme>. For the default providers shipped with OpenSSL,
  255. B<algorithm> is one of B<RSA>, B<DSA> or B<ECDSA> and B<hash> is a supported
  256. algorithm OID short name such as B<SHA1>, B<SHA224>, B<SHA256>, B<SHA384>
  257. or B<SHA512>.
  258. Note: algorithm and hash names are case sensitive.
  259. B<signature_scheme> is one of the signature schemes defined in TLSv1.3,
  260. specified using the IETF name, e.g., B<ecdsa_secp256r1_sha256>, B<ed25519>,
  261. or B<rsa_pss_pss_sha256>.
  262. Additional providers may make available further algorithms via the TLS_SIGALG
  263. capability. See L<provider-base(7)/CAPABILITIES>.
  264. If this option is not set then all signature algorithms supported by all
  265. activated providers are permissible.
  266. Note: algorithms which specify a PKCS#1 v1.5 signature scheme (either by
  267. using B<RSA> as the B<algorithm> or by using one of the B<rsa_pkcs1_*>
  268. identifiers) are ignored in TLSv1.3 and will not be negotiated.
  269. =item B<ClientSignatureAlgorithms>
  270. This sets the supported signature algorithms associated with client
  271. authentication for TLSv1.2 and TLSv1.3.
  272. For servers the value is used in the
  273. B<signature_algorithms> field of a B<CertificateRequest> message.
  274. For clients it is
  275. used to determine which signature algorithm to use with the client certificate.
  276. If a server does not request a certificate this option has no effect.
  277. The syntax of B<value> is identical to B<SignatureAlgorithms>. If not set then
  278. the value set for B<SignatureAlgorithms> will be used instead.
  279. =item B<Groups>
  280. This sets the supported groups. For clients, the groups are
  281. sent using the supported groups extension. For servers, it is used
  282. to determine which group to use. This setting affects groups used for
  283. signatures (in TLSv1.2 and earlier) and key exchange. The first group listed
  284. will also be used for the B<key_share> sent by a client in a TLSv1.3
  285. B<ClientHello>.
  286. The B<value> argument is a colon separated list of groups. The group can be
  287. either the B<NIST> name (e.g. B<P-256>), some other commonly used name where
  288. applicable (e.g. B<X25519>, B<ffdhe2048>) or an OpenSSL OID name
  289. (e.g. B<prime256v1>). Group names are case sensitive. The list should be in
  290. order of preference with the most preferred group first.
  291. Currently supported groups for B<TLSv1.3> are B<P-256>, B<P-384>, B<P-521>,
  292. B<X25519>, B<X448>, B<ffdhe2048>, B<ffdhe3072>, B<ffdhe4096>, B<ffdhe6144>,
  293. B<ffdhe8192>.
  294. =item B<Curves>
  295. This is a synonym for the "Groups" command.
  296. =item B<MinProtocol>
  297. This sets the minimum supported SSL, TLS or DTLS version.
  298. Currently supported protocol values are B<SSLv3>, B<TLSv1>, B<TLSv1.1>,
  299. B<TLSv1.2>, B<TLSv1.3>, B<DTLSv1> and B<DTLSv1.2>.
  300. The SSL and TLS bounds apply only to TLS-based contexts, while the DTLS bounds
  301. apply only to DTLS-based contexts.
  302. The command can be repeated with one instance setting a TLS bound, and the
  303. other setting a DTLS bound.
  304. The value B<None> applies to both types of contexts and disables the limits.
  305. =item B<MaxProtocol>
  306. This sets the maximum supported SSL, TLS or DTLS version.
  307. Currently supported protocol values are B<SSLv3>, B<TLSv1>, B<TLSv1.1>,
  308. B<TLSv1.2>, B<TLSv1.3>, B<DTLSv1> and B<DTLSv1.2>.
  309. The SSL and TLS bounds apply only to TLS-based contexts, while the DTLS bounds
  310. apply only to DTLS-based contexts.
  311. The command can be repeated with one instance setting a TLS bound, and the
  312. other setting a DTLS bound.
  313. The value B<None> applies to both types of contexts and disables the limits.
  314. =item B<Protocol>
  315. This can be used to enable or disable certain versions of the SSL,
  316. TLS or DTLS protocol.
  317. The B<value> argument is a comma separated list of supported protocols
  318. to enable or disable.
  319. If a protocol is preceded by B<-> that version is disabled.
  320. All protocol versions are enabled by default.
  321. You need to disable at least one protocol version for this setting have any
  322. effect.
  323. Only enabling some protocol versions does not disable the other protocol
  324. versions.
  325. Currently supported protocol values are B<SSLv3>, B<TLSv1>, B<TLSv1.1>,
  326. B<TLSv1.2>, B<TLSv1.3>, B<DTLSv1> and B<DTLSv1.2>.
  327. The special value B<ALL> refers to all supported versions.
  328. This can't enable protocols that are disabled using B<MinProtocol>
  329. or B<MaxProtocol>, but can disable protocols that are still allowed
  330. by them.
  331. The B<Protocol> command is fragile and deprecated; do not use it.
  332. Use B<MinProtocol> and B<MaxProtocol> instead.
  333. If you do use B<Protocol>, make sure that the resulting range of enabled
  334. protocols has no "holes", e.g. if TLS 1.0 and TLS 1.2 are both enabled, make
  335. sure to also leave TLS 1.1 enabled.
  336. =item B<Options>
  337. The B<value> argument is a comma separated list of various flags to set.
  338. If a flag string is preceded B<-> it is disabled.
  339. See the L<SSL_CTX_set_options(3)> function for more details of
  340. individual options.
  341. Each option is listed below. Where an operation is enabled by default
  342. the B<-flag> syntax is needed to disable it.
  343. B<SessionTicket>: session ticket support, enabled by default. Inverse of
  344. B<SSL_OP_NO_TICKET>: that is B<-SessionTicket> is the same as setting
  345. B<SSL_OP_NO_TICKET>.
  346. B<Compression>: SSL/TLS compression support, disabled by default. Inverse
  347. of B<SSL_OP_NO_COMPRESSION>.
  348. B<EmptyFragments>: use empty fragments as a countermeasure against a
  349. SSL 3.0/TLS 1.0 protocol vulnerability affecting CBC ciphers. It
  350. is set by default. Inverse of B<SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS>.
  351. B<Bugs>: enable various bug workarounds. Same as B<SSL_OP_ALL>.
  352. B<DHSingle>: enable single use DH keys, set by default. Inverse of
  353. B<SSL_OP_DH_SINGLE>. Only used by servers.
  354. B<ECDHSingle>: enable single use ECDH keys, set by default. Inverse of
  355. B<SSL_OP_ECDH_SINGLE>. Only used by servers.
  356. B<ServerPreference>: use server and not client preference order when
  357. determining which cipher suite, signature algorithm or elliptic curve
  358. to use for an incoming connection. Equivalent to
  359. B<SSL_OP_CIPHER_SERVER_PREFERENCE>. Only used by servers.
  360. B<PrioritizeChaCha>: prioritizes ChaCha ciphers when the client has a
  361. ChaCha20 cipher at the top of its preference list. This usually indicates
  362. a mobile client is in use. Equivalent to B<SSL_OP_PRIORITIZE_CHACHA>.
  363. Only used by servers.
  364. B<NoResumptionOnRenegotiation>: set
  365. B<SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION> flag. Only used by servers.
  366. B<NoRenegotiation>: disables all attempts at renegotiation in TLSv1.2 and
  367. earlier, same as setting B<SSL_OP_NO_RENEGOTIATION>.
  368. B<UnsafeLegacyRenegotiation>: permits the use of unsafe legacy renegotiation.
  369. Equivalent to B<SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION>.
  370. B<UnsafeLegacyServerConnect>: permits the use of unsafe legacy renegotiation
  371. for OpenSSL clients only. Equivalent to B<SSL_OP_LEGACY_SERVER_CONNECT>.
  372. B<EncryptThenMac>: use encrypt-then-mac extension, enabled by
  373. default. Inverse of B<SSL_OP_NO_ENCRYPT_THEN_MAC>: that is,
  374. B<-EncryptThenMac> is the same as setting B<SSL_OP_NO_ENCRYPT_THEN_MAC>.
  375. B<AllowNoDHEKEX>: In TLSv1.3 allow a non-(ec)dhe based key exchange mode on
  376. resumption. This means that there will be no forward secrecy for the resumed
  377. session. Equivalent to B<SSL_OP_ALLOW_NO_DHE_KEX>.
  378. B<MiddleboxCompat>: If set then dummy Change Cipher Spec (CCS) messages are sent
  379. in TLSv1.3. This has the effect of making TLSv1.3 look more like TLSv1.2 so that
  380. middleboxes that do not understand TLSv1.3 will not drop the connection. This
  381. option is set by default. A future version of OpenSSL may not set this by
  382. default. Equivalent to B<SSL_OP_ENABLE_MIDDLEBOX_COMPAT>.
  383. B<AntiReplay>: If set then OpenSSL will automatically detect if a session ticket
  384. has been used more than once, TLSv1.3 has been negotiated, and early data is
  385. enabled on the server. A full handshake is forced if a session ticket is used a
  386. second or subsequent time. This option is set by default and is only used by
  387. servers. Anti-replay measures are required to comply with the TLSv1.3
  388. specification. Some applications may be able to mitigate the replay risks in
  389. other ways and in such cases the built-in OpenSSL functionality is not required.
  390. Disabling anti-replay is equivalent to setting B<SSL_OP_NO_ANTI_REPLAY>.
  391. B<ExtendedMasterSecret>: use extended master secret extension, enabled by
  392. default. Inverse of B<SSL_OP_NO_EXTENDED_MASTER_SECRET>: that is,
  393. B<-ExtendedMasterSecret> is the same as setting B<SSL_OP_NO_EXTENDED_MASTER_SECRET>.
  394. B<CANames>: use CA names extension, enabled by
  395. default. Inverse of B<SSL_OP_DISABLE_TLSEXT_CA_NAMES>: that is,
  396. B<-CANames> is the same as setting B<SSL_OP_DISABLE_TLSEXT_CA_NAMES>.
  397. B<KTLS>: Enables kernel TLS if support has been compiled in, and it is supported
  398. by the negotiated ciphersuites and extensions. Equivalent to
  399. B<SSL_OP_ENABLE_KTLS>.
  400. B<StrictCertCheck>: Enable strict certificate checking. Equivalent to
  401. setting B<SSL_CERT_FLAG_TLS_STRICT> with SSL_CTX_set_cert_flags().
  402. B<TxCertificateCompression>: support sending compressed certificates, enabled by
  403. default. Inverse of B<SSL_OP_NO_TX_CERTIFICATE_COMPRESSION>: that is,
  404. B<-TxCertificateCompression> is the same as setting B<SSL_OP_NO_TX_CERTIFICATE_COMPRESSION>.
  405. B<RxCertificateCompression>: support receiving compressed certificates, enabled by
  406. default. Inverse of B<SSL_OP_NO_RX_CERTIFICATE_COMPRESSION>: that is,
  407. B<-RxCertificateCompression> is the same as setting B<SSL_OP_NO_RX_CERTIFICATE_COMPRESSION>.
  408. B<KTLSTxZerocopySendfile>: use the zerocopy TX mode of sendfile(), which gives
  409. a performance boost when used with KTLS hardware offload. Note that invalid TLS
  410. records might be transmitted if the file is changed while being sent. This
  411. option has no effect if B<KTLS> is not enabled. Equivalent to
  412. B<SSL_OP_ENABLE_KTLS_TX_ZEROCOPY_SENDFILE>. This option only applies to Linux.
  413. KTLS sendfile on FreeBSD doesn't offer an option to disable zerocopy and
  414. always runs in this mode.
  415. B<IgnoreUnexpectedEOF>: Equivalent to B<SSL_OP_IGNORE_UNEXPECTED_EOF>.
  416. You should only enable this option if the protocol running over TLS can detect
  417. a truncation attack itself, and that the application is checking for that
  418. truncation attack.
  419. =item B<VerifyMode>
  420. The B<value> argument is a comma separated list of flags to set.
  421. B<Peer> enables peer verification: for clients only.
  422. B<Request> requests but does not require a certificate from the client.
  423. Servers only.
  424. B<Require> requests and requires a certificate from the client: an error
  425. occurs if the client does not present a certificate. Servers only.
  426. B<Once> requests a certificate from a client only on the initial connection:
  427. not when renegotiating. Servers only.
  428. B<RequestPostHandshake> configures the connection to support requests but does
  429. not require a certificate from the client post-handshake. A certificate will
  430. not be requested during the initial handshake. The server application must
  431. provide a mechanism to request a certificate post-handshake. Servers only.
  432. TLSv1.3 only.
  433. B<RequiresPostHandshake> configures the connection to support requests and
  434. requires a certificate from the client post-handshake: an error occurs if the
  435. client does not present a certificate. A certificate will not be requested
  436. during the initial handshake. The server application must provide a mechanism
  437. to request a certificate post-handshake. Servers only. TLSv1.3 only.
  438. =item B<ClientCAFile>, B<ClientCAPath>
  439. A file or directory of certificates in PEM format whose names are used as the
  440. set of acceptable names for client CAs. Servers only. This option is only
  441. supported if certificate operations are permitted.
  442. =back
  443. =head1 SUPPORTED COMMAND TYPES
  444. The function SSL_CONF_cmd_value_type() currently returns one of the following
  445. types:
  446. =over 4
  447. =item B<SSL_CONF_TYPE_UNKNOWN>
  448. The B<option> string is unrecognised, this return value can be use to flag
  449. syntax errors.
  450. =item B<SSL_CONF_TYPE_STRING>
  451. The value is a string without any specific structure.
  452. =item B<SSL_CONF_TYPE_FILE>
  453. The value is a filename.
  454. =item B<SSL_CONF_TYPE_DIR>
  455. The value is a directory name.
  456. =item B<SSL_CONF_TYPE_NONE>
  457. The value string is not used e.g. a command line option which doesn't take an
  458. argument.
  459. =back
  460. =head1 NOTES
  461. The order of operations is significant. This can be used to set either defaults
  462. or values which cannot be overridden. For example if an application calls:
  463. SSL_CONF_cmd(ctx, "Protocol", "-SSLv3");
  464. SSL_CONF_cmd(ctx, userparam, uservalue);
  465. it will disable SSLv3 support by default but the user can override it. If
  466. however the call sequence is:
  467. SSL_CONF_cmd(ctx, userparam, uservalue);
  468. SSL_CONF_cmd(ctx, "Protocol", "-SSLv3");
  469. SSLv3 is B<always> disabled and attempt to override this by the user are
  470. ignored.
  471. By checking the return code of SSL_CONF_cmd() it is possible to query if a
  472. given B<option> is recognised, this is useful if SSL_CONF_cmd() values are
  473. mixed with additional application specific operations.
  474. For example an application might call SSL_CONF_cmd() and if it returns
  475. -2 (unrecognised command) continue with processing of application specific
  476. commands.
  477. Applications can also use SSL_CONF_cmd() to process command lines though the
  478. utility function SSL_CONF_cmd_argv() is normally used instead. One way
  479. to do this is to set the prefix to an appropriate value using
  480. SSL_CONF_CTX_set1_prefix(), pass the current argument to B<option> and the
  481. following argument to B<value> (which may be NULL).
  482. In this case if the return value is positive then it is used to skip that
  483. number of arguments as they have been processed by SSL_CONF_cmd(). If -2 is
  484. returned then B<option> is not recognised and application specific arguments
  485. can be checked instead. If -3 is returned a required argument is missing
  486. and an error is indicated. If 0 is returned some other error occurred and
  487. this can be reported back to the user.
  488. The function SSL_CONF_cmd_value_type() can be used by applications to
  489. check for the existence of a command or to perform additional syntax
  490. checking or translation of the command value. For example if the return
  491. value is B<SSL_CONF_TYPE_FILE> an application could translate a relative
  492. pathname to an absolute pathname.
  493. =head1 RETURN VALUES
  494. SSL_CONF_cmd() returns 1 if the value of B<option> is recognised and B<value> is
  495. B<NOT> used and 2 if both B<option> and B<value> are used. In other words it
  496. returns the number of arguments processed. This is useful when processing
  497. command lines.
  498. A return value of -2 means B<option> is not recognised.
  499. A return value of -3 means B<option> is recognised and the command requires a
  500. value but B<value> is NULL.
  501. A return code of 0 indicates that both B<option> and B<value> are valid but an
  502. error occurred attempting to perform the operation: for example due to an
  503. error in the syntax of B<value> in this case the error queue may provide
  504. additional information.
  505. =head1 EXAMPLES
  506. Set supported signature algorithms:
  507. SSL_CONF_cmd(ctx, "SignatureAlgorithms", "ECDSA+SHA256:RSA+SHA256:DSA+SHA256");
  508. There are various ways to select the supported protocols.
  509. This set the minimum protocol version to TLSv1, and so disables SSLv3.
  510. This is the recommended way to disable protocols.
  511. SSL_CONF_cmd(ctx, "MinProtocol", "TLSv1");
  512. The following also disables SSLv3:
  513. SSL_CONF_cmd(ctx, "Protocol", "-SSLv3");
  514. The following will first enable all protocols, and then disable
  515. SSLv3.
  516. If no protocol versions were disabled before this has the same effect as
  517. "-SSLv3", but if some versions were disables this will re-enable them before
  518. disabling SSLv3.
  519. SSL_CONF_cmd(ctx, "Protocol", "ALL,-SSLv3");
  520. Only enable TLSv1.2:
  521. SSL_CONF_cmd(ctx, "MinProtocol", "TLSv1.2");
  522. SSL_CONF_cmd(ctx, "MaxProtocol", "TLSv1.2");
  523. This also only enables TLSv1.2:
  524. SSL_CONF_cmd(ctx, "Protocol", "-ALL,TLSv1.2");
  525. Disable TLS session tickets:
  526. SSL_CONF_cmd(ctx, "Options", "-SessionTicket");
  527. Enable compression:
  528. SSL_CONF_cmd(ctx, "Options", "Compression");
  529. Set supported curves to P-256, P-384:
  530. SSL_CONF_cmd(ctx, "Curves", "P-256:P-384");
  531. =head1 SEE ALSO
  532. L<ssl(7)>,
  533. L<SSL_CONF_CTX_new(3)>,
  534. L<SSL_CONF_CTX_set_flags(3)>,
  535. L<SSL_CONF_CTX_set1_prefix(3)>,
  536. L<SSL_CONF_CTX_set_ssl_ctx(3)>,
  537. L<SSL_CONF_cmd_argv(3)>,
  538. L<SSL_CTX_set_options(3)>
  539. =head1 HISTORY
  540. The SSL_CONF_cmd() function was added in OpenSSL 1.0.2.
  541. The B<SSL_OP_NO_SSL2> option doesn't have effect since 1.1.0, but the macro
  542. is retained for backwards compatibility.
  543. The B<SSL_CONF_TYPE_NONE> was added in OpenSSL 1.1.0. In earlier versions of
  544. OpenSSL passing a command which didn't take an argument would return
  545. B<SSL_CONF_TYPE_UNKNOWN>.
  546. B<MinProtocol> and B<MaxProtocol> where added in OpenSSL 1.1.0.
  547. B<AllowNoDHEKEX> and B<PrioritizeChaCha> were added in OpenSSL 1.1.1.
  548. The B<UnsafeLegacyServerConnect> option is no longer set by default from
  549. OpenSSL 3.0.
  550. The B<TxCertificateCompression> and B<RxCertificateCompression> options were
  551. added in OpenSSL 3.2.
  552. =head1 COPYRIGHT
  553. Copyright 2012-2024 The OpenSSL Project Authors. All Rights Reserved.
  554. Licensed under the Apache License 2.0 (the "License"). You may not use
  555. this file except in compliance with the License. You can obtain a copy
  556. in the file LICENSE in the source distribution or at
  557. L<https://www.openssl.org/source/license.html>.
  558. =cut