pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/security/openssl



Module Name:    pkgsrc
Committed By:   adam
Date:           Wed Jun  5 07:47:33 UTC 2024

Modified Files:
        pkgsrc/security/openssl: Makefile PLIST distinfo

Log Message:
openssl: updated to 3.3.1

Changes between 3.3.0 and 3.3.1 [4 Jun 2024]

 * Fixed potential use after free after SSL_free_buffers() is called.

   The SSL_free_buffers function is used to free the internal OpenSSL
   buffer used when processing an incoming record from the network.
   The call is only expected to succeed if the buffer is not currently
   in use. However, two scenarios have been identified where the buffer
   is freed even when still in use.

   The first scenario occurs where a record header has been received
   from the network and processed by OpenSSL, but the full record body
   has not yet arrived. In this case calling SSL_free_buffers will succeed
   even though a record has only been partially processed and the buffer
   is still in use.

   The second scenario occurs where a full record containing application
   data has been received and processed by OpenSSL but the application has
   only read part of this data. Again a call to SSL_free_buffers will
   succeed even though the buffer is still in use.

   ([CVE-2024-4741])

 * Fixed an issue where checking excessively long DSA keys or parameters may
   be very slow.

   Applications that use the functions EVP_PKEY_param_check() or
   EVP_PKEY_public_check() to check a DSA public key or DSA parameters may
   experience long delays. Where the key or parameters that are being checked
   have been obtained from an untrusted source this may lead to a Denial of
   Service.

   To resolve this issue DSA keys larger than OPENSSL_DSA_MAX_MODULUS_BITS
   will now fail the check immediately with a DSA_R_MODULUS_TOO_LARGE error
   reason.

   ([CVE-2024-4603])


To generate a diff of this commit:
cvs rdiff -u -r1.300 -r1.301 pkgsrc/security/openssl/Makefile
cvs rdiff -u -r1.18 -r1.19 pkgsrc/security/openssl/PLIST
cvs rdiff -u -r1.174 -r1.175 pkgsrc/security/openssl/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/security/openssl/Makefile
diff -u pkgsrc/security/openssl/Makefile:1.300 pkgsrc/security/openssl/Makefile:1.301
--- pkgsrc/security/openssl/Makefile:1.300      Tue Apr 16 15:47:25 2024
+++ pkgsrc/security/openssl/Makefile    Wed Jun  5 07:47:33 2024
@@ -1,10 +1,9 @@
-# $NetBSD: Makefile,v 1.300 2024/04/16 15:47:25 jperkin Exp $
+# $NetBSD: Makefile,v 1.301 2024/06/05 07:47:33 adam Exp $
 
 # Remember to upload-distfiles when updating OpenSSL -- otherwise it
 # is not possible for users who have bootstrapped without OpenSSL
 # to install it and enable HTTPS fetching.
-DISTNAME=      openssl-3.3.0
-PKGREVISION=   1
+DISTNAME=      openssl-3.3.1
 CATEGORIES=    security
 MASTER_SITES=  https://www.openssl.org/source/
 

Index: pkgsrc/security/openssl/PLIST
diff -u pkgsrc/security/openssl/PLIST:1.18 pkgsrc/security/openssl/PLIST:1.19
--- pkgsrc/security/openssl/PLIST:1.18  Wed Apr 10 05:23:16 2024
+++ pkgsrc/security/openssl/PLIST       Wed Jun  5 07:47:33 2024
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.18 2024/04/10 05:23:16 adam Exp $
+@comment $NetBSD: PLIST,v 1.19 2024/06/05 07:47:33 adam Exp $
 bin/c_rehash
 bin/openssl
 include/openssl/aes.h
@@ -4686,6 +4686,7 @@ man/man3/SSL_set_security_callback.3
 man/man3/SSL_set_security_level.3
 man/man3/SSL_set_session.3
 man/man3/SSL_set_session_id_context.3
+man/man3/SSL_set_session_secret_cb.3
 man/man3/SSL_set_shutdown.3
 man/man3/SSL_set_split_send_fragment.3
 man/man3/SSL_set_srp_server_param.3
@@ -5877,6 +5878,7 @@ man/man3/sk_TYPE_unshift.3
 man/man3/sk_TYPE_value.3
 man/man3/sk_TYPE_zero.3
 man/man3/ssl_ct_validation_cb.3
+man/man3/tls_session_secret_cb_fn.3
 man/man5/config.5
 man/man5/fips_config.5
 man/man5/x509v3_config.5
@@ -6002,6 +6004,7 @@ man/man7/OSSL_PROVIDER-base.7
 man/man7/OSSL_PROVIDER-default.7
 man/man7/OSSL_PROVIDER-legacy.7
 man/man7/OSSL_PROVIDER-null.7
+man/man7/OSSL_STORE-winstore.7
 man/man7/RAND.7
 man/man7/RSA-PSS.7
 man/man7/RSA.7

Index: pkgsrc/security/openssl/distinfo
diff -u pkgsrc/security/openssl/distinfo:1.174 pkgsrc/security/openssl/distinfo:1.175
--- pkgsrc/security/openssl/distinfo:1.174      Fri May 31 16:22:21 2024
+++ pkgsrc/security/openssl/distinfo    Wed Jun  5 07:47:33 2024
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.174 2024/05/31 16:22:21 cheusov Exp $
+$NetBSD: distinfo,v 1.175 2024/06/05 07:47:33 adam Exp $
 
-BLAKE2s (openssl-3.3.0.tar.gz) = 5d0678ee0fdaa49b3ae775a97a9b356e8493599655dcaaf01d82203f6aa354dc
-SHA512 (openssl-3.3.0.tar.gz) = 1f9daeee6542e1b831c65f1f87befaef98ccedc3abc958c9d17f064ef771924c30849e3ff880f94eed4aaa9d81ea105e3bc8815e6d2e4d6b60b5e890f14fc5da
-Size (openssl-3.3.0.tar.gz) = 18038030 bytes
+BLAKE2s (openssl-3.3.1.tar.gz) = 47f3b7b77db45ea3539cfbb6ed3041d56c0d7cea62ec0ce18c0529a8c44e9d0e
+SHA512 (openssl-3.3.1.tar.gz) = d3682a5ae0721748c6b9ec2f1b74d2b1ba61ee6e4c0d42387b5037a56ef34312833b6abb522d19400b45d807dd65cc834156f5e891cb07fbaf69fcf67e1c595d
+Size (openssl-3.3.1.tar.gz) = 18055752 bytes
 SHA1 (patch-Configurations_unix-Makefile.tmpl) = ea9b0a0c8de810362813d84a4f85c5ebdedf9fc6
 SHA1 (patch-util_perl_OpenSSL_config.pm) = 3ba3c23046bf69c7d348b4c1c8c8269d83cfa2b4



Home | Main Index | Thread Index | Old Index