Blame doc/cha-upgrade.texi

Packit aea12f
@node Upgrading from previous versions
Packit aea12f
@appendix Upgrading from previous versions
Packit aea12f
@cindex upgrading
Packit aea12f
Packit aea12f
The GnuTLS library typically maintains binary and source code compatibility
Packit aea12f
across versions. The releases that have the major version increased
Packit aea12f
break binary compatibility but source compatibility is provided.
Packit aea12f
This section lists exceptional cases where changes to existing code are
Packit aea12f
required due to library changes.
Packit aea12f
Packit aea12f
@heading Upgrading to 2.12.x from previous versions
Packit aea12f
Packit aea12f
GnuTLS 2.12.x is binary compatible with previous versions but changes the
Packit aea12f
semantics of @funcintref{gnutls_transport_set_lowat}, which might cause breakage
Packit aea12f
in applications that relied on its default value be 1. Two fixes
Packit aea12f
are proposed:
Packit aea12f
@itemize
Packit aea12f
@item  Quick fix. Explicitly call @code{gnutls_transport_set_lowat (session, 1);}
Packit aea12f
after @funcref{gnutls_init}.
Packit aea12f
@item Long term fix. Because later versions of gnutls abolish the functionality 
Packit aea12f
of using the system call @funcintref{select} to check for gnutls pending data, the 
Packit aea12f
function @funcref{gnutls_record_check_pending} has to be used to achieve the same 
Packit aea12f
functionality as described in @ref{Asynchronous operation}.
Packit aea12f
@end itemize
Packit aea12f
Packit aea12f
@heading Upgrading to 3.0.x from 2.12.x
Packit aea12f
Packit aea12f
GnuTLS 3.0.x is source compatible with previous versions except for the functions
Packit aea12f
listed below.
Packit aea12f
Packit aea12f
@multitable @columnfractions .30 .60
Packit aea12f
@headitem Old function @tab Replacement
Packit aea12f
Packit aea12f
@item @funcintref{gnutls_transport_set_lowat} @tab
Packit aea12f
To replace its functionality the function @funcref{gnutls_record_check_pending} has to be used,
Packit aea12f
as described in @ref{Asynchronous operation}
Packit aea12f
Packit aea12f
@item @funcintref{gnutls_session_get_server_random},
Packit aea12f
@funcintref{gnutls_session_get_client_random} 
Packit aea12f
@tab 
Packit aea12f
They are replaced by the safer function @funcref{gnutls_session_get_random}
Packit aea12f
Packit aea12f
@item @funcintref{gnutls_session_get_master_secret} 
Packit aea12f
@tab Replaced by the keying material exporters discussed in @ref{Deriving keys for other applications/protocols}
Packit aea12f
Packit aea12f
@item @funcintref{gnutls_transport_set_global_errno}
Packit aea12f
@tab Replaced by using the system's errno facility or @funcref{gnutls_transport_set_errno}.
Packit aea12f
Packit aea12f
@item @funcintref{gnutls_x509_privkey_verify_data}
Packit aea12f
@tab Replaced by @funcref{gnutls_pubkey_verify_data2}.
Packit aea12f
Packit aea12f
@item @funcintref{gnutls_certificate_verify_peers}
Packit aea12f
@tab Replaced by @funcref{gnutls_certificate_verify_peers2}.
Packit aea12f
Packit aea12f
@item @funcintref{gnutls_psk_netconf_derive_key}
Packit aea12f
@tab Removed. The key derivation function was never standardized.
Packit aea12f
Packit aea12f
@item @funcintref{gnutls_session_set_finished_function}
Packit aea12f
@tab Removed.
Packit aea12f
Packit aea12f
@item @funcintref{gnutls_ext_register}
Packit aea12f
@tab Removed. Extension registration API is now internal to allow easier changes in the API.
Packit aea12f
Packit aea12f
@item @funcintref{gnutls_certificate_get_x509_crls}, @funcintref{gnutls_certificate_get_x509_cas}
Packit aea12f
@tab Removed to allow updating the internal structures. Replaced by @funcref{gnutls_certificate_get_issuer}.
Packit aea12f
Packit aea12f
@item @funcintref{gnutls_certificate_get_openpgp_keyring}
Packit aea12f
@tab Removed.
Packit aea12f
Packit aea12f
@item @funcintref{gnutls_ia_}
Packit aea12f
@tab Removed. The inner application extensions were completely removed (they failed to be standardized).
Packit aea12f
Packit aea12f
@end multitable
Packit aea12f
Packit aea12f
@heading Upgrading to 3.1.x from 3.0.x
Packit aea12f
Packit aea12f
GnuTLS 3.1.x is source and binary compatible with GnuTLS 3.0.x releases. Few
Packit aea12f
functions have been deprecated and are listed below.
Packit aea12f
Packit aea12f
@multitable @columnfractions .30 .60
Packit aea12f
@headitem Old function @tab Replacement
Packit aea12f
Packit aea12f
@item @funcintref{gnutls_pubkey_verify_hash} 
Packit aea12f
@tab The function @funcref{gnutls_pubkey_verify_hash2} is provided and
Packit aea12f
is functionally equivalent and safer to use.
Packit aea12f
Packit aea12f
@item @funcintref{gnutls_pubkey_verify_data} 
Packit aea12f
@tab The function @funcref{gnutls_pubkey_verify_data2} is provided and
Packit aea12f
is functionally equivalent and safer to use.
Packit aea12f
Packit aea12f
@end multitable
Packit aea12f
Packit aea12f
@heading Upgrading to 3.2.x from 3.1.x
Packit aea12f
Packit aea12f
GnuTLS 3.2.x is source and binary compatible with GnuTLS 3.1.x releases. Few
Packit aea12f
functions have been deprecated and are listed below.
Packit aea12f
Packit aea12f
@multitable @columnfractions .30 .60
Packit aea12f
@headitem Old function @tab Replacement
Packit aea12f
Packit aea12f
@item @funcintref{gnutls_privkey_sign_raw_data} 
Packit aea12f
@tab The function @funcref{gnutls_privkey_sign_hash} is equivalent
Packit aea12f
when the flag @code{GNUTLS_PRIVKEY_SIGN_FLAG_TLS1_RSA} is specified.
Packit aea12f
Packit aea12f
@end multitable
Packit aea12f
Packit aea12f
@heading Upgrading to 3.3.x from 3.2.x
Packit aea12f
Packit aea12f
GnuTLS 3.3.x is source and binary compatible with GnuTLS 3.2.x releases;
Packit aea12f
however there few changes in semantics which are listed below.
Packit aea12f
Packit aea12f
@multitable @columnfractions .30 .60
Packit aea12f
@headitem Old function @tab Replacement
Packit aea12f
Packit aea12f
@item @funcintref{gnutls_global_init} 
Packit aea12f
@tab No longer required. The library is initialized using a constructor.
Packit aea12f
Packit aea12f
@item @funcintref{gnutls_global_deinit} 
Packit aea12f
@tab No longer required. The library is deinitialized using a destructor.
Packit aea12f
Packit aea12f
@end multitable
Packit aea12f
Packit aea12f
@heading Upgrading to 3.4.x from 3.3.x
Packit aea12f
Packit aea12f
GnuTLS 3.4.x is source compatible with GnuTLS 3.3.x releases;
Packit aea12f
however, several deprecated functions were removed, and are listed below.
Packit aea12f
Packit aea12f
@multitable @columnfractions .30 .60
Packit aea12f
@headitem Old function @tab Replacement
Packit aea12f
Packit aea12f
@item Priority string "NORMAL" has been modified
Packit aea12f
@tab The following string emulates the 3.3.x behavior "NORMAL:+VERS-SSL3.0:+ARCFOUR-128:+DHE-DSS:+SIGN-DSA-SHA512:+SIGN-DSA-SHA256:+SIGN-DSA-SHA1"
Packit aea12f
Packit aea12f
@item @funcintref{gnutls_certificate_client_set_retrieve_function},
Packit aea12f
@funcintref{gnutls_certificate_server_set_retrieve_function}
Packit aea12f
@tab @funcref{gnutls_certificate_set_retrieve_function}
Packit aea12f
Packit aea12f
@item @funcintref{gnutls_certificate_set_rsa_export_params},
Packit aea12f
@funcintref{gnutls_rsa_export_get_modulus_bits},
Packit aea12f
@funcintref{gnutls_rsa_export_get_pubkey},
Packit aea12f
@funcintref{gnutls_rsa_params_cpy},
Packit aea12f
@funcintref{gnutls_rsa_params_deinit},
Packit aea12f
@funcintref{gnutls_rsa_params_export_pkcs1},
Packit aea12f
@funcintref{gnutls_rsa_params_export_raw},
Packit aea12f
@funcintref{gnutls_rsa_params_generate2},
Packit aea12f
@funcintref{gnutls_rsa_params_import_pkcs1},
Packit aea12f
@funcintref{gnutls_rsa_params_import_raw},
Packit aea12f
@funcintref{gnutls_rsa_params_init}
Packit aea12f
@tab No replacement; the library does not support the RSA-EXPORT ciphersuites.
Packit aea12f
Packit aea12f
@item @funcintref{gnutls_pubkey_verify_hash},
Packit aea12f
@tab @funcref{gnutls_pubkey_verify_hash2}.
Packit aea12f
Packit aea12f
@item @funcintref{gnutls_pubkey_verify_data},
Packit aea12f
@tab @funcref{gnutls_pubkey_verify_data2}.
Packit aea12f
Packit aea12f
@item @funcintref{gnutls_x509_crt_get_verify_algorithm},
Packit aea12f
@tab No replacement; a similar function is @funcref{gnutls_x509_crt_get_signature_algorithm}.
Packit aea12f
Packit aea12f
@item @funcintref{gnutls_pubkey_get_verify_algorithm},
Packit aea12f
@tab No replacement; a similar function is @funcref{gnutls_pubkey_get_preferred_hash_algorithm}.
Packit aea12f
Packit aea12f
@item @funcintref{gnutls_certificate_type_set_priority},
Packit aea12f
@funcintref{gnutls_cipher_set_priority},
Packit aea12f
@funcintref{gnutls_compression_set_priority},
Packit aea12f
@funcintref{gnutls_kx_set_priority},
Packit aea12f
@funcintref{gnutls_mac_set_priority},
Packit aea12f
@funcintref{gnutls_protocol_set_priority}
Packit aea12f
@tab @funcref{gnutls_priority_set_direct}.
Packit aea12f
Packit aea12f
@item @funcintref{gnutls_sign_callback_get},
Packit aea12f
@funcintref{gnutls_sign_callback_set}
Packit aea12f
@tab @funcref{gnutls_privkey_import_ext3}
Packit aea12f
Packit aea12f
@item @funcintref{gnutls_x509_crt_verify_hash}
Packit aea12f
@tab @funcref{gnutls_pubkey_verify_hash2}
Packit aea12f
Packit aea12f
@item @funcintref{gnutls_x509_crt_verify_data}
Packit aea12f
@tab @funcref{gnutls_pubkey_verify_data2}
Packit aea12f
Packit aea12f
@item @funcintref{gnutls_privkey_sign_raw_data}
Packit aea12f
@tab @funcref{gnutls_privkey_sign_hash} with the flag GNUTLS_PRIVKEY_SIGN_FLAG_TLS1_RSA
Packit aea12f
Packit aea12f
@end multitable
Packit aea12f
Packit aea12f
@heading Upgrading to 3.6.x from 3.5.x
Packit aea12f
Packit aea12f
GnuTLS 3.6.x is source and binary compatible with GnuTLS 3.5.x releases;
Packit aea12f
however, there are minor differences, listed below.
Packit aea12f
Packit aea12f
@multitable @columnfractions .30 .60
Packit aea12f
@headitem Old functionality @tab Replacement
Packit aea12f
Packit aea12f
@item The priority strings "+COMP" are a no-op
Packit aea12f
@tab TLS compression is no longer available.
Packit aea12f
Packit aea12f
@item The SSL 3.0 protocol is a no-op
Packit aea12f
@tab SSL 3.0 is no longer compiled in by default. It is a legacy protocol
Packit aea12f
which is completely eliminated from public internet. As such it was removed
Packit aea12f
to reduce the attack vector for applications using the library.
Packit aea12f
Packit aea12f
@item The hash function SHA2-224 is a no-op for TLS1.2
Packit aea12f
@tab TLS 1.3 no longer uses SHA2-224, and it was never a widespread hash
Packit aea12f
algorithm. As such it was removed for simplicity.
Packit aea12f
Packit aea12f
@item The SRP key exchange accepted parameters outside the @xcite{TLSSRP} spec
Packit aea12f
@tab The SRP key exchange is restricted to @xcite{TLSSRP} spec parameters
Packit aea12f
to protect clients from MitM attacks.
Packit aea12f
Packit aea12f
@item The compression-related functions are deprecated
Packit aea12f
@tab No longer use @funcintref{gnutls_compression_get},
Packit aea12f
@funcintref{gnutls_compression_get_name}, @funcintref{gnutls_compression_list},
Packit aea12f
and @funcintref{gnutls_compression_get_id}.
Packit aea12f
Packit aea12f
@item @funcref{gnutls_x509_crt_sign}, @funcref{gnutls_x509_crl_sign}, @funcref{gnutls_x509_crq_sign}
Packit aea12f
@tab These signing functions will no longer sign using SHA1, but with a secure hash algorithm.
Packit aea12f
Packit aea12f
@item @funcref{gnutls_certificate_set_ocsp_status_request_file}
Packit aea12f
@tab This function will return an error if the loaded response doesn't match
Packit aea12f
any of the present certificates. To revert to previous semantics set the @code{GNUTLS_CERTIFICATE_SKIP_OCSP_RESPONSE_CHECK}
Packit aea12f
flag using @funcref{gnutls_certificate_set_flags}.
Packit aea12f
Packit aea12f
@item The callback @funcref{gnutls_privkey_import_ext3} is not flexible enough for new signature algorithms such as RSA-PSS
Packit aea12f
@tab It is replaced with @funcref{gnutls_privkey_import_ext4}
Packit aea12f
Packit aea12f
@item Re-handshake functionality is not applicable under TLS 1.3.
Packit aea12f
@tab It is replaced by separate key update and re-authentication functionality
Packit aea12f
which can be accessed directly via @funcref{gnutls_session_key_update} and @funcref{gnutls_reauth}.
Packit aea12f
Packit aea12f
@item TLS session identifiers are not shared with the server under TLS 1.3.
Packit aea12f
@tab The TLS session identifiers are persistent across resumption only on
Packit aea12f
server side and can be obtained as before via @funcref{gnutls_session_get_id2}.
Packit aea12f
Packit aea12f
@item @funcref{gnutls_pkcs11_privkey_generate3}, @funcref{gnutls_pkcs11_copy_secret_key}, @funcref{gnutls_pkcs11_copy_x509_privkey2}
Packit aea12f
@tab These functions no longer create an exportable key by default; they require the flag @code{GNUTLS_PKCS11_OBJ_FLAG_MARK_NOT_SENSITIVE} to do so.
Packit aea12f
Packit aea12f
@item @funcref{gnutls_db_set_retrieve_function}, @funcref{gnutls_db_set_store_function}, @funcref{gnutls_db_set_remove_function}
Packit aea12f
@tab These functions are no longer relevant under TLS 1.3; resumption under
Packit aea12f
TLS 1.3 is done via session tickets, c.f. @funcref{gnutls_session_ticket_enable_server}.
Packit aea12f
Packit aea12f
@item @funcref{gnutls_session_get_data2}, @funcref{gnutls_session_get_data}
Packit aea12f
@tab These functions may introduce a slight delay under TLS 1.3 for few
Packit aea12f
milliseconds. Check output of @funcref{gnutls_session_get_flags} for GNUTLS_SFLAGS_SESSION_TICKET
Packit Service 991b93
before calling this function to avoid delays. To work efficiently under
Packit Service 991b93
TLS 1.3 this function requires the application setting
Packit Service 991b93
@funcref{gnutls_transport_set_pull_timeout_function}.
Packit aea12f
Packit aea12f
@item SRP and RSA-PSK key exchanges are not supported under TLS 1.3
Packit aea12f
@tab SRP and RSA-PSK key exchanges are not supported in TLS 1.3, so when these key exchanges are present in a priority string, TLS 1.3 is disabled.
Packit aea12f
Packit aea12f
@item Anonymous key exchange is not supported under TLS 1.3
Packit aea12f
@tab There is no anonymous key exchange supported under TLS 1.3, so if an anonymous key exchange method is set in a priority string, and no certificate credentials are set in the client or server, TLS 1.3 will not be negotiated.
Packit aea12f
Packit aea12f
@item ECDHE-PSK and DHE-PSK keywords have the same meaning under TLS 1.3
Packit aea12f
@tab In the priority strings, both @code{ECDHE@-PSK} and @code{DHE@-PSK} indicate the intent to support an ephemeral key exchange with the pre-shared key.  The parameters of the key exchange are negotiated with the supported groups specified in the priority string.
Packit aea12f
Packit aea12f
@item Authentication-only ciphersuites are not supported under TLS 1.3
Packit aea12f
@tab Ciphersuites with the @code{NULL} cipher (i.e., authentication-only) are not supported in TLS 1.3, so when they are specified in a priority string, TLS 1.3 is disabled.
Packit aea12f
Packit aea12f
@item Supplemental data is not supported under TLS 1.3
Packit aea12f
@tab The TLS supplemental data handshake message (RFC 4680) is not supported under TLS 1.3, so if the application calls @funcref{gnutls_supplemental_register} or @funcref{gnutls_session_supplemental_register}, TLS 1.3 is disabled.
Packit aea12f
Packit aea12f
@item The GNUTLS_X509_NO_WELL_DEFINED_EXPIRATION macro is a no-op
Packit aea12f
@tab The macro was non-functional and because of the nature of the
Packit aea12f
definition of the no-well-defined date for certificates (a real date),
Packit aea12f
it will not be fixed or re-introduced.
Packit aea12f
Packit aea12f
@end multitable