mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-13 12:56:15 +01:00
Merge branch 'mcatanzaro/rehandshake' into 'master'
Fully deprecate TLS rehandshakes See merge request GNOME/glib!1305
This commit is contained in:
commit
9765ce80c9
@ -164,9 +164,7 @@ g_dtls_connection_default_init (GDtlsConnectionInterface *iface)
|
|||||||
*
|
*
|
||||||
* Since: 2.48
|
* Since: 2.48
|
||||||
*
|
*
|
||||||
* Deprecated: 2.60. Changing the rehandshake mode is no longer
|
* Deprecated: 2.60: The rehandshake mode is ignored.
|
||||||
* required for compatibility. Also, rehandshaking has been removed
|
|
||||||
* from the TLS protocol in TLS 1.3.
|
|
||||||
*/
|
*/
|
||||||
g_object_interface_install_property (iface,
|
g_object_interface_install_property (iface,
|
||||||
g_param_spec_enum ("rehandshake-mode",
|
g_param_spec_enum ("rehandshake-mode",
|
||||||
@ -615,26 +613,10 @@ g_dtls_connection_get_require_close_notify (GDtlsConnection *conn)
|
|||||||
* @conn: a #GDtlsConnection
|
* @conn: a #GDtlsConnection
|
||||||
* @mode: the rehandshaking mode
|
* @mode: the rehandshaking mode
|
||||||
*
|
*
|
||||||
* Sets how @conn behaves with respect to rehandshaking requests.
|
* Since GLib 2.64, changing the rehandshake mode is no longer supported
|
||||||
*
|
* and will have no effect. With TLS 1.3, rehandshaking has been removed from
|
||||||
* %G_TLS_REHANDSHAKE_NEVER means that it will never agree to
|
* the TLS protocol, replaced by separate post-handshake authentication and
|
||||||
* rehandshake after the initial handshake is complete. (For a client,
|
* rekey operations.
|
||||||
* this means it will refuse rehandshake requests from the server, and
|
|
||||||
* for a server, this means it will close the connection with an error
|
|
||||||
* if the client attempts to rehandshake.)
|
|
||||||
*
|
|
||||||
* %G_TLS_REHANDSHAKE_SAFELY means that the connection will allow a
|
|
||||||
* rehandshake only if the other end of the connection supports the
|
|
||||||
* TLS `renegotiation_info` extension. This is the default behavior,
|
|
||||||
* but means that rehandshaking will not work against older
|
|
||||||
* implementations that do not support that extension.
|
|
||||||
*
|
|
||||||
* %G_TLS_REHANDSHAKE_UNSAFELY means that the connection will allow
|
|
||||||
* rehandshaking even without the `renegotiation_info` extension. On
|
|
||||||
* the server side in particular, this is not recommended, since it
|
|
||||||
* leaves the server open to certain attacks. However, this mode is
|
|
||||||
* necessary if you need to allow renegotiation with older client
|
|
||||||
* software.
|
|
||||||
*
|
*
|
||||||
* Since: 2.48
|
* Since: 2.48
|
||||||
*
|
*
|
||||||
@ -650,7 +632,7 @@ g_dtls_connection_set_rehandshake_mode (GDtlsConnection *conn,
|
|||||||
g_return_if_fail (G_IS_DTLS_CONNECTION (conn));
|
g_return_if_fail (G_IS_DTLS_CONNECTION (conn));
|
||||||
|
|
||||||
g_object_set (G_OBJECT (conn),
|
g_object_set (G_OBJECT (conn),
|
||||||
"rehandshake-mode", mode,
|
"rehandshake-mode", G_TLS_REHANDSHAKE_SAFELY,
|
||||||
NULL);
|
NULL);
|
||||||
}
|
}
|
||||||
G_GNUC_END_IGNORE_DEPRECATIONS
|
G_GNUC_END_IGNORE_DEPRECATIONS
|
||||||
@ -662,22 +644,29 @@ G_GNUC_END_IGNORE_DEPRECATIONS
|
|||||||
* Gets @conn rehandshaking mode. See
|
* Gets @conn rehandshaking mode. See
|
||||||
* g_dtls_connection_set_rehandshake_mode() for details.
|
* g_dtls_connection_set_rehandshake_mode() for details.
|
||||||
*
|
*
|
||||||
* Returns: @conn's rehandshaking mode
|
* Returns: %G_TLS_REHANDSHAKE_SAFELY
|
||||||
*
|
*
|
||||||
* Since: 2.48
|
* Since: 2.48
|
||||||
|
*
|
||||||
|
* Deprecated: 2.64. Changing the rehandshake mode is no longer
|
||||||
|
* required for compatibility. Also, rehandshaking has been removed
|
||||||
|
* from the TLS protocol in TLS 1.3.
|
||||||
*/
|
*/
|
||||||
G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
||||||
GTlsRehandshakeMode
|
GTlsRehandshakeMode
|
||||||
g_dtls_connection_get_rehandshake_mode (GDtlsConnection *conn)
|
g_dtls_connection_get_rehandshake_mode (GDtlsConnection *conn)
|
||||||
{
|
{
|
||||||
GTlsRehandshakeMode mode;
|
GTlsRehandshakeMode mode;
|
||||||
|
|
||||||
g_return_val_if_fail (G_IS_DTLS_CONNECTION (conn), G_TLS_REHANDSHAKE_NEVER);
|
g_return_val_if_fail (G_IS_DTLS_CONNECTION (conn), G_TLS_REHANDSHAKE_SAFELY);
|
||||||
|
|
||||||
|
/* Continue to call g_object_get(), even though the return value is
|
||||||
|
* ignored, so that behavior doesn’t change for derived classes.
|
||||||
|
*/
|
||||||
g_object_get (G_OBJECT (conn),
|
g_object_get (G_OBJECT (conn),
|
||||||
"rehandshake-mode", &mode,
|
"rehandshake-mode", &mode,
|
||||||
NULL);
|
NULL);
|
||||||
return mode;
|
return G_TLS_REHANDSHAKE_SAFELY;
|
||||||
}
|
}
|
||||||
G_GNUC_END_IGNORE_DEPRECATIONS
|
G_GNUC_END_IGNORE_DEPRECATIONS
|
||||||
|
|
||||||
@ -705,14 +694,11 @@ G_GNUC_END_IGNORE_DEPRECATIONS
|
|||||||
* the beginning of the communication, you do not need to call this
|
* the beginning of the communication, you do not need to call this
|
||||||
* function explicitly unless you want clearer error reporting.
|
* function explicitly unless you want clearer error reporting.
|
||||||
*
|
*
|
||||||
* If TLS 1.2 or older is in use, you may call
|
* Previously, calling g_dtls_connection_handshake() after the initial
|
||||||
* g_dtls_connection_handshake() after the initial handshake to
|
* handshake would trigger a rehandshake; however, this usage was
|
||||||
* rehandshake; however, this usage is deprecated because rehandshaking
|
* deprecated in GLib 2.60 because rehandshaking was removed from the
|
||||||
* is no longer part of the TLS protocol in TLS 1.3. Accordingly, the
|
* TLS protocol in TLS 1.3. Since GLib 2.64, calling this function after
|
||||||
* behavior of calling this function after the initial handshake is now
|
* the initial handshake will no longer do anything.
|
||||||
* undefined, except it is guaranteed to be reasonable and
|
|
||||||
* nondestructive so as to preserve compatibility with code written for
|
|
||||||
* older versions of GLib.
|
|
||||||
*
|
*
|
||||||
* #GDtlsConnection::accept_certificate may be emitted during the
|
* #GDtlsConnection::accept_certificate may be emitted during the
|
||||||
* handshake.
|
* handshake.
|
||||||
|
@ -734,16 +734,9 @@ g_tls_connection_get_require_close_notify (GTlsConnection *conn)
|
|||||||
* @mode: the rehandshaking mode
|
* @mode: the rehandshaking mode
|
||||||
*
|
*
|
||||||
* Since GLib 2.64, changing the rehandshake mode is no longer supported
|
* Since GLib 2.64, changing the rehandshake mode is no longer supported
|
||||||
* and will have no effect.
|
* and will have no effect. With TLS 1.3, rehandshaking has been removed from
|
||||||
*
|
* the TLS protocol, replaced by separate post-handshake authentication and
|
||||||
* With TLS 1.2, the connection will allow a rehandshake only if the
|
* rekey operations.
|
||||||
* other end of the connection supports the TLS `renegotiation_info`
|
|
||||||
* extension. This means that rehandshaking will not work against older
|
|
||||||
* implementations that do not support that extension.
|
|
||||||
*
|
|
||||||
* With TLS 1.3, rehandshaking has been removed from the TLS protocol,
|
|
||||||
* replaced by separate post-handshake authentication and rekey
|
|
||||||
* operations.
|
|
||||||
*
|
*
|
||||||
* Since: 2.28
|
* Since: 2.28
|
||||||
*
|
*
|
||||||
@ -787,6 +780,9 @@ g_tls_connection_get_rehandshake_mode (GTlsConnection *conn)
|
|||||||
|
|
||||||
g_return_val_if_fail (G_IS_TLS_CONNECTION (conn), G_TLS_REHANDSHAKE_SAFELY);
|
g_return_val_if_fail (G_IS_TLS_CONNECTION (conn), G_TLS_REHANDSHAKE_SAFELY);
|
||||||
|
|
||||||
|
/* Continue to call g_object_get(), even though the return value is
|
||||||
|
* ignored, so that behavior doesn’t change for derived classes.
|
||||||
|
*/
|
||||||
g_object_get (G_OBJECT (conn),
|
g_object_get (G_OBJECT (conn),
|
||||||
"rehandshake-mode", &mode,
|
"rehandshake-mode", &mode,
|
||||||
NULL);
|
NULL);
|
||||||
@ -895,14 +891,11 @@ g_tls_connection_get_negotiated_protocol (GTlsConnection *conn)
|
|||||||
* the beginning of the communication, you do not need to call this
|
* the beginning of the communication, you do not need to call this
|
||||||
* function explicitly unless you want clearer error reporting.
|
* function explicitly unless you want clearer error reporting.
|
||||||
*
|
*
|
||||||
* If TLS 1.2 or older is in use, you may call
|
* Previously, calling g_tls_connection_handshake() after the initial
|
||||||
* g_tls_connection_handshake() after the initial handshake to
|
* handshake would trigger a rehandshake; however, this usage was
|
||||||
* rehandshake; however, this usage is deprecated because rehandshaking
|
* deprecated in GLib 2.60 because rehandshaking was removed from the
|
||||||
* is no longer part of the TLS protocol in TLS 1.3. Accordingly, the
|
* TLS protocol in TLS 1.3. Since GLib 2.64, calling this function after
|
||||||
* behavior of calling this function after the initial handshake is now
|
* the initial handshake will no longer do anything.
|
||||||
* undefined, except it is guaranteed to be reasonable and
|
|
||||||
* nondestructive so as to preserve compatibility with code written for
|
|
||||||
* older versions of GLib.
|
|
||||||
*
|
*
|
||||||
* When using a #GTlsConnection created by #GSocketClient, the
|
* When using a #GTlsConnection created by #GSocketClient, the
|
||||||
* #GSocketClient performs the initial handshake, so calling this
|
* #GSocketClient performs the initial handshake, so calling this
|
||||||
|
Loading…
Reference in New Issue
Block a user