Releases: Mbed-TLS/mbedtls
Mbed TLS 2.16.3
Description
Mbed TLS 2.16.3 is a maintenance release of the Mbed TLS 2.16 branch, and
provides bug fixes and minor enhancements.
Security
- Fix a missing error detection in ECJPAKE. This could have caused a predictable shared secret if a hardware accelerator failed and the other side of the key exchange had a similar bug.
- When writing a private EC key, use a constant size for the private value, as specified in RFC 5915. Previously, the value was written as an ASN.1 INTEGER, which caused the size of the key to leak about 1 bit of information on average and could cause the value to be 1 byte too large for the output buffer.
- The deterministic ECDSA calculation reused the scheme's HMAC-DRBG to implement blinding. Because of this for the same key and message the same blinding value was generated. This reduced the effectiveness of the countermeasure and leaked information about the private key through side channels. Reported by Jack Lloyd.
API Changes
- The new function mbedtls_ecdsa_sign_det_ext() is similar to mbedtls_ecdsa_sign_det() but allows passing an external RNG for the purpose of blinding.
Bugfix
- Fix to allow building test suites with any warning that detects unused functions. Fixes #1628.
- Fix typo in net_would_block(). Fixes #528 reported by github-monoculture.
- Remove redundant include file in timing.c. Fixes #2640 reported by irwir.
- Fix Visual Studio Release x64 build configuration by inheriting PlatformToolset from the project configuration. Fixes #1430 reported by irwir.
- Enable Suite B with subset of ECP curves. Make sure the code compiles even if some curves are not defined. Fixes #1591 reported by dbedev.
- Fix misuse of signed arithmetic in the HAVEGE module. #2598
- Update test certificates that were about to expire. Reported by Bernhard M. Wiedemann in #2357.
- Fix the build on ARMv5TE in ARM mode to not use assembly instructions that are only available in Thumb mode. Fix contributed by Aurelien Jarno in #2169.
- Fix propagation of restart contexts in restartable EC operations. This could previously lead to segmentation faults in builds using an address-sanitizer and enabling but not using MBEDTLS_ECP_RESTARTABLE.
- Fix memory leak in in mpi_miller_rabin(). Contributed by Jens Wiklander [email protected] in #2363
- Improve code clarity in x509_crt module, removing false-positive uninitialized variable warnings on some recent toolchains (GCC8, etc). Discovered and fixed by Andy Gross (Linaro), #2392.
- Fix bug in endianness conversion in bignum module. This lead to functionally incorrect code on bigendian systems which don't have BYTE_ORDER defined. Reported by Brendan Shanks. Fixes #2622.
- Fix undefined memset(NULL) call in test_suite_nist_kw.
- Make NV seed test support MBEDTLS_ENTROPY_FORCE_SHA256.
- Zero length buffer check for undefined behavior in mbedtls_platform_zeroize(). Fixes ARMmbed/mbed-crypto#49.
Changes
- Make it easier to define MBEDTLS_PARAM_FAILED as assert (which config.h suggests). #2671
- Make
make clean
clean all programs always. Fixes #1862.
Who should update
We recommend all affected users should update to take advantage of the bug
fixes contained in this release at an appropriate point in their development
lifecycle.
Mbed TLS 2.7.11
Description
Mbed TLS 2.7.11 is a maintenance release of the Mbed TLS 2.7 branch, and
provides bug fixes and minor enhancements.
Security
- Make
mbedtls_ecdh_get_params
return an error if the second key belongs to a different group from the first. Before, if an application passed keys that belonged to different group, the first key's data was interpreted according to the second group, which could lead to either an error or a meaningless output frommbedtls_ecdh_get_params
. In the latter case, this could expose at most 5 bits of the private key.
Bugfix
- Server's RSA certificate in
certs.c
was SHA-1 signed. In the default Mbed TLS configuration only SHA-2 signed certificates are accepted. This certificate is used in the demo server programs, which lead the client programs to fail at the peer's certificate verification due to an unacceptable hash signature. The certificate has been updated to one that is SHA-256 signed. Fix contributed by Illya Gerasymchuk. - Fix private key DER output in the
key_app_writer example
. File contents were shifted by one byte, creating an invalid ASN.1 tag. Fixed by Christian Walther in #2239. - Fix potential memory leak in X.509 self test. Found and fixed by Junhwan Park, #2106.
- Fix 1-byte buffer overflow in
mbedtls_mpi_write_string()
when used with negative inputs. Found by Guido Vranken in #2404. Credit to OSS-Fuzz. - Fix bugs in the AEAD test suite which would be exposed by ciphers which either used both encrypt and decrypt key schedules, or which perform padding. GCM and CCM were not affected. Fixed by Jack Lloyd.
- Fix incorrect default port number in
ssl_mail_client
example's usage. Found and fixed by irwir. #2337 - Add missing parentheses around parameters in the definition of the public macro
MBEDTLS_X509_ID_FLAG
. This could lead to invalid evaluation in case operators binding less strongly than subtraction were used for the parameter. - Add a check for
MBEDTLS_X509_CRL_PARSE_C
inssl_server2
, guarding the crl sni entry parameter. Reported by inestlerode in #560. - Fix missing bounds checks in X.509 parsing functions that could lead to successful parsing of ill-formed X.509 CRTs. Fixes #2437.
- Fix multiple X.509 functions previously returning ASN.1 low-level error codes to always wrap these codes into X.509 high level error codes before returning. Fixes #2431.
Changes
- Return from various debugging routines immediately if the provided SSL context is unset.
- Remove dead code from
bignum.c
in the default configuration. Found by Coverity, reported and fixed by Peter Kolbus (Garmin). Fixes #2309. - Add test for minimal value of
MBEDTLS_MPI_WINDOW_SIZE
to all.sh. Contributed by Peter Kolbus (Garmin). - Change wording in the
mbedtls_ssl_conf_max_frag_len()
's documentation to improve clarity. Fixes #2258. - Replace multiple uses of MD2 by SHA-256 in X.509 test suite. Fixes #821.
- Improve debug output of
ssl_client2
andssl_server2
in case suitable test CRTs are available becauseMBEDTLS_PEM_PARSE_C
is disabled. Fixes #2254.
Who should update
We recommend all affected users should update to take advantage of the bug
fixes contained in this release at an appropriate point in their development
lifecycle.
Mbed TLS 2.16.2
Description
Mbed TLS 2.16.2 is a maintenance release of the Mbed TLS 2.16 branch, and
provides bug fixes and minor enhancements.
Security
- Make
mbedtls_ecdh_get_params
return an error if the second key belongs to a different group from the first. Before, if an application passed keys that belonged to different group, the first key's data was interpreted according to the second group, which could lead to either an error or a meaningless output frommbedtls_ecdh_get_params
. In the latter case, this could expose at most 5 bits of the private key.
Bugfix
- Server's RSA certificate in
certs.c
was SHA-1 signed. In the default Mbed TLS configuration only SHA-2 signed certificates are accepted. This certificate is used in the demo server programs, which lead the client programs to fail at the peer's certificate verification due to an unacceptable hash signature. The certificate has been updated to one that is SHA-256 signed. Fix contributed by Illya Gerasymchuk. - Fix private key DER output in the
key_app_writer example
. File contents were shifted by one byte, creating an invalid ASN.1 tag. Fixed by Christian Walther in #2239. - Fix potential memory leak in X.509 self test. Found and fixed by Junhwan Park, #2106.
- Reduce stack usage of HKDF tests. Fixes #2195.
- Fix 1-byte buffer overflow in
mbedtls_mpi_write_string()
when used with negative inputs. Found by Guido Vranken in #2404. Credit to OSS-Fuzz. - Fix bugs in the AEAD test suite which would be exposed by ciphers which either used both encrypt and decrypt key schedules, or which perform padding. GCM and CCM were not affected. Fixed by Jack Lloyd.
- Fix incorrect default port number in
ssl_mail_client
example's usage. Found and fixed by irwir. #2337 - Add missing parentheses around parameters in the definition of the public macro
MBEDTLS_X509_ID_FLAG
. This could lead to invalid evaluation in case operators binding less strongly than subtraction were used for the parameter. - Add a check for
MBEDTLS_X509_CRL_PARSE_C
inssl_server2
, guarding the crl sni entry parameter. Reported by inestlerode in #560. - Fix missing bounds checks in X.509 parsing functions that could lead to successful parsing of ill-formed X.509 CRTs. Fixes #2437.
- Fix multiple X.509 functions previously returning ASN.1 low-level error codes to always wrap these codes into X.509 high level error codes before returning. Fixes #2431.
- Add DER-encoded test CRTs to
library/certs.c
, allowing the example programsssl_server2
andssl_client2
to be run ifMBEDTLS_FS_IO
andMBEDTLS_PEM_PARSE_C
are unset. Fixes #2254.
Changes
- Return from various debugging routines immediately if the provided SSL context is unset.
- Remove dead code from
bignum.c
in the default configuration. Found by Coverity, reported and fixed by Peter Kolbus (Garmin). Fixes #2309. - Add test for minimal value of
MBEDTLS_MPI_WINDOW_SIZE
to all.sh. Contributed by Peter Kolbus (Garmin). - Change wording in the
mbedtls_ssl_conf_max_frag_len()
's documentation to improve clarity. Fixes #2258. - Replace multiple uses of MD2 by SHA-256 in X.509 test suite. Fixes #821.
Who should update
We recommend all affected users should update to take advantage of the bug
fixes contained in this release at an appropriate point in their development
lifecycle.
Mbed TLS 2.7.10
Description
Mbed TLS 2.7.10 is a maintenance release of the Mbed TLS 2.7 branch, and provides bug fixes and minor enhancements.
Features
- Add
MBEDTLS_REMOVE_3DES_CIPHERSUITES
to allow removing 3DES ciphersuites from the default list (enabled by default). See https://sweet32.info/SWEET32_CCS16.pdf.
Bugfix
- Run the AD too long test only if
MBEDTLS_CCM_ALT
is not defined. Raised as a comment in #1996. - Fix clobber list in MIPS assembly for large integer multiplication. Previously, this could lead to functionally incorrect assembly being produced by some optimizing compilers, showing up as failures in e.g. RSA or ECC signature operations. Reported in #1722, fix suggested by Aurelien Jarno and submitted by Jeffrey Martin.
- Reduce stack usage of
mpi_write_hlp()
by eliminating recursion. Fixes #2190. - Remove a duplicate
#include
in a sample program. Fixed by Masashi Honma #2326. - Fix returning the value
1
whenmbedtls_ecdsa_genkey()
failed. - Ensure that unused bits are zero when writing ASN.1 bitstrings when using
mbedtls_asn1_write_bitstring()
. - Fix issue when writing the named bitstrings in
KeyUsage
andNsCertType
extensions in CSRs and CRTs that caused these bitstrings to not be encoded correctly as trailing zeroes were not accounted for as unused bits in the leading content octet. Fixes #1610.
Changes
- Include configuration file in all header files that use configuration, instead of relying on other header files that they include. Inserted as an enhancement for #1371
- Add support for alternative CSR headers, as used by Microsoft and defined in RFC 7468. Found by Michael Ernst. Fixes #767.
- Reduce the complexity of the timing tests. They were assuming more than the underlying OS actually guarantees.
- Ciphersuites based on 3DES now have the lowest priority by default when they are enabled.
Who should update
We recommend all affected users should update to take advantage of the bug fixes contained in this release at an appropriate point in their development lifecycle.
Mbed TLS 2.16.1
Description
Mbed TLS 2.16.1 is a maintenance release of the Mbed TLS 2.16 branch, and provides bug fixes and minor enhancements.
Features
- Add
MBEDTLS_REMOVE_3DES_CIPHERSUITES
to allow removing 3DES ciphersuites from the default list (enabled by default). See https://sweet32.info/SWEET32_CCS16.pdf.
Bugfix
- Fix a compilation issue with
mbedtls_ecp_restart_ctx
not being defined whenMBEDTLS_ECP_ALT
is defined. Reported by jwhui. Fixes #2242. - Run the AD too long test only if
MBEDTLS_CCM_ALT
is not defined. Raised as a comment in #1996. - Reduce the stack consumption of
mbedtls_mpi_fill_random()
which could previously lead to a stack overflow on constrained targets. - Add
MBEDTLS_SELF_TEST
for the mbedtls_self_test functions in the header files, which missed the precompilation check. #971 - Fix clobber list in MIPS assembly for large integer multiplication. Previously, this could lead to functionally incorrect assembly being produced by some optimizing compilers, showing up as failures in e.g. RSA or ECC signature operations. Reported in #1722, fix suggested by Aurelien Jarno and submitted by Jeffrey Martin.
- Fix signed-to-unsigned integer conversion warning in X.509 module. Fixes #2212.
- Reduce stack usage of
mpi_write_hlp()
by eliminating recursion. Fixes #2190. - Remove a duplicate
#include
in a sample program. Fixed by Masashi Honma #2326. - Remove the mbedtls namespacing from the header file, to fix a "file not found" build error. Fixed by Haijun Gu #2319.
- Fix returning the value
1
whenmbedtls_ecdsa_genkey()
failed. - Fix false failure in
all.sh
when backup files exist ininclude/mbedtls
(e.g.config.h.bak
). Fixed by Peter Kolbus (Garmin) #2407. - Ensure that unused bits are zero when writing ASN.1 bitstrings when using
mbedtls_asn1_write_bitstring()
. - Fix issue when writing the named bitstrings in
KeyUsage
andNsCertType
extensions in CSRs and CRTs that caused these bitstrings to not be encoded correctly as trailing zeroes were not accounted for as unused bits in the leading content octet. Fixes #1610.
Changes
- Include configuration file in all header files that use configuration, instead of relying on other header files that they include. Inserted as an enhancement for #1371
- Add support for alternative CSR headers, as used by Microsoft and defined in RFC 7468. Found by Michael Ernst. Fixes #767.
- Fix configuration queries in
ssl-opt.h
. #2030 - Ensure that ssl-opt.h can be run in OS X. #2029
- Reduce the complexity of the timing tests. They were assuming more than the underlying OS actually guarantees.
- Re-enable certain interoperability tests in ssl-opt.sh which had previously been disabled for lack of a sufficiently recent version of GnuTLS on the CI.
- Ciphersuites based on 3DES now have the lowest priority by default when they are enabled.
Who should update
We recommend all affected users should update to take advantage of the bug fixes contained in this release at an appropriate point in their development lifecycle.
Mbed TLS 2.7.9
Description
Mbed TLS 2.7.9 is a maintenance release, and contains no new features. This release addresses multiple defects.
Bugfix
- Fix for Clang, which was reporting a warning for the bignum.c inline assembly for AMD64 targets creating string literals greater than those permitted by the ISO C99 standard. Found by Aaron Jones. Fixes #482.
- Fix runtime error in
mbedtls_platform_entropy_poll()
when run through qemu user emulation. Reported and fix suggested by randombit. Fixes #1212. - Fix an unsafe bounds check when restoring an SSL session from a ticket. This could lead to a buffer overflow, but only in case ticket authentication was broken. Reported and fix suggested by Guido Vranken in #659.
- Add explicit integer to enumeration type casts to example program
programs/pkey/gen_key
which previously led to compilation failure on some toolchains. Reported by phoenixmcallister. Fixes #2170. - Clarify documentation of
mbedtls_ssl_set_own_cert()
regarding the absence of check for certificate/key matching. Reported by Attila Molnar, #507.
Who should update
We recommend all affected users should update to take advantage of the bug fixes contained in this release at an appropriate point in their development lifecycle.
Mbed TLS 2.16.0
Description
Mbed TLS 2.16.0 introduces a new feature of optional parameter validation. This feature verifies and validates all parameters passed into the library, to confirm they meet the preconditions of each library function. Normally, the library does not check for invalid parameters which are no risk to the security of the library and will cause an obvious error during execution, as it's assumed this kind of issue will be picked up during development, and are unlikely to occur in normal operation. This new feature can speed up development by identifying and indicating any obvious failure in use of the library if the parameter is invalid, and by allowing users to log such errors, in test, development or usage, rather than have to work through stack traces.
Announcing Mbed TLS 2.16 Long Term Support
We are pleased to announce that Mbed TLS 2.16.0 will be the basis of our next Long Term Support branch, and will be maintained for at least 3 years up until the end of 2021.
During that time, no new features will be added to the branch, the API and ABI will be maintained, and only bug fixes will be made to maintenance releases of 2.16.0.
This is further discussed in our blog posting 'Announcing Long Term Support Branch Mbed TLS 2.16'.
Features
- Add a new config.h option of
MBEDTLS_CHECK_PARAMS
that enables validation of parameters in the API. This allows detection of obvious misuses of the API, such as passing NULL pointers. The API of existing functions hasn't changed, but requirements on parameters have been made more explicit in the documentation. See the corresponding API documentation for each function to see for which parameter values it is defined. This feature is disabled by default. See its API documentation inconfig.h
for additional steps you have to take when enabling it.
API Changes
- The following functions in the random generator modules have been deprecated and replaced as shown below. The new functions change the return type from void to int to allow returning error codes when using
MBEDTLS_<MODULE>_ALT
for the underlying AES or message digest primitive. Fixes #1798.
mbedtls_ctr_drbg_update()
->mbedtls_ctr_drbg_update_ret()
mbedtls_hmac_drbg_update()
->mbedtls_hmac_drbg_update_ret()
- Extend ECDH interface to enable alternative implementations.
- Deprecate error codes of the form
MBEDTLS_ERR_xxx_INVALID_KEY_LENGTH
for ARIA, CAMELLIA and Blowfish. These error codes will be replaced by the more generic per-module error codesMBEDTLS_ERR_xxx_BAD_INPUT_DATA
. - Additional parameter validation checks have been added for the following modules - AES, ARIA, Blowfish, CAMELLIA, CCM, GCM, DHM, ECP, ECDSA, ECDH, ECJPAKE, SHA, Chacha20 and Poly1305, cipher, pk, RSA, and MPI. Where modules have had parameter validation added, existing parameter checks may have changed. Some modules, such as Chacha20 had existing parameter validation whereas other modules had little. This has now been changed so that the same level of validation is present in all modules, and that it is now optional with the
MBEDTLS_CHECK_PARAMS
flag which by default is off. That means that checks which were previously present by default will no longer be.
New deprecations
- Deprecate
mbedtls_ctr_drbg_update()
andmbedtls_hmac_drbg_update()
in favor of functions that can return an error code.
Bugfix
- Fix for Clang, which was reporting a warning for the bignum.c inline assembly for AMD64 targets creating string literals greater than those permitted by the ISO C99 standard. Found by Aaron Jones. Fixes #482.
- Fix runtime error in
mbedtls_platform_entropy_poll()
when run through qemu user emulation. Reported and fix suggested by randombit. Fixes #1212. - Fix an unsafe bounds check when restoring an SSL session from a ticket. This could lead to a buffer overflow, but only in case ticket authentication was broken. Reported and fix suggested by Guido Vranken in #659.
- Add explicit integer to enumeration type casts to example program
programs/pkey/gen_key
which previously led to compilation failure on some toolchains. Reported by phoenixmcallister. Fixes #2170. - Clarify documentation of
mbedtls_ssl_set_own_cert()
regarding the absence of check for certificate/key matching. Reported by Attila Molnar, #507. - Fix double initialization of ECC hardware that made some accelerators hang.
Who should update
We recommend all affected users should update to take advantage of the bug fixes contained in this release at an appropriate point in their development lifecycle.
Mbed TLS 2.1.18
Description
Mbed TLS 2.1.18 is a maintenance release, and contains no new features. This release addresses multiple defects.
End of life for Mbed TLS 2.1
Mbed TLS 2.1.0 was first shipped on 4th September 2015, and has come to the end of its life. This is the last release of the 2.1 branch.
All users of Mbed TLS 2.1 are now advised to upgrade to a later version of Mbed TLS wherever possible. There will now be no further releases of Mbed TLS 2.1.
Bugfix
- Fix for Clang, which was reporting a warning for the bignum.c inline assembly for AMD64 targets creating string literals greater than those permitted by the ISO C99 standard. Found by Aaron Jones. Fixes #482.
- Fix runtime error in
mbedtls_platform_entropy_poll()
when run through qemu user emulation. Reported and fix suggested by randombit. Fixes #1212. - Fix an unsafe bounds check when restoring an SSL session from a ticket. This could lead to a buffer overflow, but only in case ticket authentication was broken. Reported and fix suggested by Guido Vranken in #659.
- Add explicit integer to enumeration type casts to example program
programs/pkey/gen_key
which previously led to compilation failure on some toolchains. Reported by phoenixmcallister. Fixes #2170. - Clarify documentation of
mbedtls_ssl_set_own_cert()
regarding the absence of check for certificate/key matching. Reported by Attila Molnar, #507.
Who should update
We recommend all affected users should update to take advantage of the bug fixes contained in this release at an appropriate point in their development lifecycle.
Mbed TLS 2.15.1
Description
Mbed TLS 2.15.1 is a release of Mbed TLS intended only for Mbed OS, and will not be released as a standalone release on the Mbed TLS website.
This release updates the version of the PSA Crypto library used in Mbed TLS.
Changes
- Update the Mbed Crypto submodule to version 0.1.0b2. This change enables use of Mbed Crypto with Mbed TLS configurations that do not include GCM or CCM.
Who should update
This release is provided for use in Mbed OS only, and is not intended for wider usage outside of Mbed OS.
Mbed TLS 2.7.8
Description
Mbed TLS 2.7.8 is a maintenance release, and contains no new features. It addresses two security issues, one of which we are issuing Security Advisory 18-03 for.
Security
- Fixes timing variations and memory access variations in RSA PKCS#1 v1.5 decryption that could lead to a Bleichenbacher-style padding oracle attack. In TLS, this affects servers that accept ciphersuites based on RSA decryption (i.e. ciphersuites whose name contains RSA but not (EC)DH(E)). The issue was first discovered and raised by Eyal Ronen - Weizmann Institute, Robert Gillham - University of Adelaide, Daniel Genkin - University of Michigan, Adi Shamir - Weizmann Institute, David Wong - NCC Group, and Yuval Yarom - University of Adelaide and Data61. The attack is described in more detail in the paper, The 9 Lives of Bleichenbacher’s CAT: New Cache ATtacks on TLS Implementations. This issue has been allocated CVE-2018-19608.
- Now wipes sensitive buffers on the stack in the CTR_DRBG and HMAC_DRBG modules.
API Changes
- The new functions
mbedtls_ctr_drbg_update_ret()
andmbedtls_hmac_drbg_update_ret()
are similar tombedtls_ctr_drbg_update()
andmbedtls_hmac_drbg_update()
respectively, but the new functions report errors whereas the old functions return void. We recommend that applications use the new functions.
Who should update
We recommend all affected users should update to take advantage of the bug fixes contained in this release at an appropriate point in their development lifecycle.
End of life for Mbed TLS 2.1
Mbed TLS 2.1.0 was first shipped on 4th September 2015, and is nearing the end of its life. All users of Mbed TLS 2.1 are advised to upgrade to a later version of Mbed TLS wherever possible. There will be no further releases of Mbed TLS 2.1 after 2018. The latest long-term support branch is Mbed TLS 2.7.