Mark SSL_CTX_set_ssl_version() as deprecated in 3.0
authorBenjamin Kaduk <bkaduk@akamai.com>
Thu, 20 Sep 2018 02:14:04 +0000 (21:14 -0500)
committerBenjamin Kaduk <bkaduk@akamai.com>
Thu, 13 Aug 2020 01:02:42 +0000 (18:02 -0700)
Also, document its unusual semantics of resetting the
cipher list (but preserving other configuration).

Reviewed-by: Paul Dale <paul.dale@oracle.com>
Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org>
(Merged from https://github.com/openssl/openssl/pull/7274)

doc/man3/SSL_CTX_set_ssl_version.pod
include/openssl/ssl.h
ssl/ssl_lib.c
util/libssl.num

index b41073112b15c0d220e4f02e48aecc07b214d60f..20efe0fbf788076617f8d3ce4d6a699bffa1582f 100644 (file)
@@ -16,9 +16,11 @@ SSL_CTX_set_ssl_version, SSL_set_ssl_method, SSL_get_ssl_method
 =head1 DESCRIPTION
 
 SSL_CTX_set_ssl_version() sets a new default TLS/SSL B<method> for SSL objects
-newly created from this B<ctx>. SSL objects already created with
-L<SSL_new(3)> are not affected, except when
-L<SSL_clear(3)> is being called.
+newly created from this B<ctx>.  Most of the configuration attached to the
+SSL_CTX object is retained, with the exception of the configured TLS ciphers,
+which are reset to the default values.  SSL objects already created from this
+SSL_CTX with L<SSL_new(3)> are not affected, except when L<SSL_clear(3)> is
+being called, as described below.
 
 SSL_set_ssl_method() sets a new TLS/SSL B<method> for a particular B<ssl>
 object. It may be reset, when SSL_clear() is called.
@@ -35,6 +37,11 @@ When L<SSL_clear(3)> is called and no session is connected to
 an SSL object, the method of the SSL object is reset to the method currently
 set in the corresponding SSL_CTX object.
 
+SSL_CTX_set_version() has unusual semantics and no clear use case;
+it would usually be preferable to create a new SSL_CTX object than to
+try to reuse an existing one in this fashion.  Its usage is considered
+deprecated.
+
 =head1 RETURN VALUES
 
 The following return values can occur for SSL_CTX_set_ssl_version()
@@ -58,6 +65,10 @@ L<SSL_CTX_new(3)>, L<SSL_new(3)>,
 L<SSL_clear(3)>, L<ssl(7)>,
 L<SSL_set_connect_state(3)>
 
+=head1 HISTORY
+
+SSL_CTX_set_ssl_version() was deprecated in OpenSSL 3.0.
+
 =head1 COPYRIGHT
 
 Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved.
index bc003bc4fa8bb8b2d17704a5c4556ea0ff8be223..0b17f22193517a08440a6d9deb525487aa4c8447 100644 (file)
@@ -1903,7 +1903,7 @@ __owur int SSL_get_error(const SSL *s, int ret_code);
 __owur const char *SSL_get_version(const SSL *s);
 
 /* This sets the 'default' SSL version that SSL_new() will create */
-__owur int SSL_CTX_set_ssl_version(SSL_CTX *ctx, const SSL_METHOD *meth);
+DEPRECATEDIN_3_0(__owur int SSL_CTX_set_ssl_version(SSL_CTX *ctx, const SSL_METHOD *meth))
 
 # ifndef OPENSSL_NO_SSL3_METHOD
 DEPRECATEDIN_1_1_0(__owur const SSL_METHOD *SSLv3_method(void)) /* SSLv3 */
index 63a7433be4721af6d678b6011d54e5c3f9baaf3b..f957664a486612a3e62560b4ee484d2883c8e6c8 100644 (file)
@@ -642,6 +642,7 @@ int SSL_clear(SSL *s)
     return 1;
 }
 
+#ifndef OPENSSL_NO_DEPRECATED_3_0
 /** Used to change an SSL_CTXs default SSL method type */
 int SSL_CTX_set_ssl_version(SSL_CTX *ctx, const SSL_METHOD *meth)
 {
@@ -664,6 +665,7 @@ int SSL_CTX_set_ssl_version(SSL_CTX *ctx, const SSL_METHOD *meth)
     }
     return 1;
 }
+#endif
 
 SSL *SSL_new(SSL_CTX *ctx)
 {
index 17585250384b14d226eafcacd9244388af2c80d1..45ff6ed00a7b74e81cb524477acb733279912c2b 100644 (file)
@@ -239,7 +239,7 @@ DTLSv1_method                           239 3_0_0   EXIST::FUNCTION:DEPRECATEDIN_1
 SSL_set0_wbio                           240    3_0_0   EXIST::FUNCTION:
 SSL_read                                241    3_0_0   EXIST::FUNCTION:
 SSL_CTX_get_options                     242    3_0_0   EXIST::FUNCTION:
-SSL_CTX_set_ssl_version                 243    3_0_0   EXIST::FUNCTION:
+SSL_CTX_set_ssl_version                 243    3_0_0   EXIST::FUNCTION:DEPRECATEDIN_3_0
 SSL_set_SSL_CTX                         244    3_0_0   EXIST::FUNCTION:
 SSL_renegotiate_abbreviated             245    3_0_0   EXIST::FUNCTION:
 SSL_get_verify_mode                     246    3_0_0   EXIST::FUNCTION: