From a0ce545d52f231499bf9f3644493113d8af58ec9 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Thu, 9 May 2024 00:01:03 +0100 Subject: gentoo auto-resync : 09:05:2024 - 00:01:03 --- .../telepathy-salut-0.5.0-uninitialized.patch | 13 -- .../files/telepathy-salut-0.8.1-openssl-1.1.patch | 188 --------------------- 2 files changed, 201 deletions(-) delete mode 100644 net-voip/telepathy-salut/files/telepathy-salut-0.5.0-uninitialized.patch delete mode 100644 net-voip/telepathy-salut/files/telepathy-salut-0.8.1-openssl-1.1.patch (limited to 'net-voip/telepathy-salut/files') diff --git a/net-voip/telepathy-salut/files/telepathy-salut-0.5.0-uninitialized.patch b/net-voip/telepathy-salut/files/telepathy-salut-0.5.0-uninitialized.patch deleted file mode 100644 index 83723612dfc4..000000000000 --- a/net-voip/telepathy-salut/files/telepathy-salut-0.5.0-uninitialized.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/lib/ext/wocky/wocky/wocky-sasl-scram.c b/lib/ext/wocky/wocky/wocky-sasl-scram.c -index 7261956..c508196 100644 ---- a/lib/ext/wocky/wocky/wocky-sasl-scram.c -+++ b/lib/ext/wocky/wocky/wocky-sasl-scram.c -@@ -523,7 +523,7 @@ scram_handle_server_final_message (WockySaslScram *self, - gchar *message, - GError **error) - { -- gchar attr, *value = NULL; -+ gchar attr = 0, *value = NULL; - - if (!scram_get_next_attr_value (&message, &attr, &value) && attr != 'v') - goto invalid; diff --git a/net-voip/telepathy-salut/files/telepathy-salut-0.8.1-openssl-1.1.patch b/net-voip/telepathy-salut/files/telepathy-salut-0.8.1-openssl-1.1.patch deleted file mode 100644 index 0088dc986c8b..000000000000 --- a/net-voip/telepathy-salut/files/telepathy-salut-0.8.1-openssl-1.1.patch +++ /dev/null @@ -1,188 +0,0 @@ -From 68e7fb2f17dd9348e586ef676d8138c4b849a1ce Mon Sep 17 00:00:00 2001 -From: Roel Aaij -Date: Fri, 26 Oct 2018 15:01:37 +0200 -Subject: [PATCH] openssl: fix build with openssl >= 1.1.0 - ---- - wocky/wocky-openssl-dh1024.c | 10 ++++++++++ - wocky/wocky-openssl-dh2048.c | 10 ++++++++++ - wocky/wocky-openssl-dh4096.c | 10 ++++++++++ - wocky/wocky-openssl-dh512.c | 10 ++++++++++ - wocky/wocky-openssl.c | 38 ++++++++++++++++++++++++++++++++---- - 5 files changed, 74 insertions(+), 4 deletions(-) - -diff --git a/lib/ext/wocky/wocky/wocky-openssl-dh1024.c b/lib/ext/wocky/wocky/wocky-openssl-dh1024.c -index b77fb4c..bb50523 100644 ---- a/lib/ext/wocky/wocky/wocky-openssl-dh1024.c -+++ b/lib/ext/wocky/wocky/wocky-openssl-dh1024.c -@@ -25,11 +25,21 @@ DH *get_dh1024(void) - 0x02, - }; - DH *dh; -+#if OPENSSL_VERSION_NUMBER >= 0x10100000L -+ int r = 0; -+#endif - - if ((dh=DH_new()) == NULL) return(NULL); -+#if OPENSSL_VERSION_NUMBER >= 0x10100000L -+ r = DH_set0_pqg(dh, BN_bin2bn(dh1024_p,sizeof(dh1024_p),NULL), -+ NULL, BN_bin2bn(dh1024_g,sizeof(dh1024_g),NULL)); -+ if (!r) -+ { DH_free(dh); return(NULL); } -+#else - dh->p=BN_bin2bn(dh1024_p,sizeof(dh1024_p),NULL); - dh->g=BN_bin2bn(dh1024_g,sizeof(dh1024_g),NULL); - if ((dh->p == NULL) || (dh->g == NULL)) - { DH_free(dh); return(NULL); } -+#endif - return(dh); - } -diff --git a/lib/ext/wocky/wocky/wocky-openssl-dh2048.c b/lib/ext/wocky/wocky/wocky-openssl-dh2048.c -index c16deb7..d53ceda 100644 ---- a/lib/ext/wocky/wocky/wocky-openssl-dh2048.c -+++ b/lib/ext/wocky/wocky/wocky-openssl-dh2048.c -@@ -36,11 +36,21 @@ DH *get_dh2048(void) - 0x02, - }; - DH *dh; -+#if OPENSSL_VERSION_NUMBER >= 0x10100000L -+ int r = 0; -+#endif - - if ((dh=DH_new()) == NULL) return(NULL); -+#if OPENSSL_VERSION_NUMBER >= 0x10100000L -+ r = DH_set0_pqg(dh, BN_bin2bn(dh2048_p,sizeof(dh2048_p),NULL), -+ NULL, BN_bin2bn(dh2048_g,sizeof(dh2048_g),NULL)); -+ if (!r) -+ { DH_free(dh); return(NULL); } -+#else - dh->p=BN_bin2bn(dh2048_p,sizeof(dh2048_p),NULL); - dh->g=BN_bin2bn(dh2048_g,sizeof(dh2048_g),NULL); - if ((dh->p == NULL) || (dh->g == NULL)) - { DH_free(dh); return(NULL); } -+#endif - return(dh); - } -diff --git a/lib/ext/wocky/wocky/wocky-openssl-dh4096.c b/lib/ext/wocky/wocky/wocky-openssl-dh4096.c -index 2854385..93fa7e5 100644 ---- a/lib/ext/wocky/wocky/wocky-openssl-dh4096.c -+++ b/lib/ext/wocky/wocky/wocky-openssl-dh4096.c -@@ -57,11 +57,21 @@ DH *get_dh4096(void) - 0x02, - }; - DH *dh; -+#if OPENSSL_VERSION_NUMBER >= 0x10100000L -+ int r = 0; -+#endif - - if ((dh=DH_new()) == NULL) return(NULL); -+#if OPENSSL_VERSION_NUMBER >= 0x10100000L -+ r = DH_set0_pqg(dh, BN_bin2bn(dh4096_p,sizeof(dh4096_p),NULL), -+ NULL, BN_bin2bn(dh4096_g,sizeof(dh4096_g),NULL)); -+ if (!r) -+ { DH_free(dh); return(NULL); } -+#else - dh->p=BN_bin2bn(dh4096_p,sizeof(dh4096_p),NULL); - dh->g=BN_bin2bn(dh4096_g,sizeof(dh4096_g),NULL); - if ((dh->p == NULL) || (dh->g == NULL)) - { DH_free(dh); return(NULL); } -+#endif - return(dh); - } -diff --git a/lib/ext/wocky/wocky/wocky-openssl-dh512.c b/lib/ext/wocky/wocky/wocky-openssl-dh512.c -index 8e7a278..c2891cd 100644 ---- a/lib/ext/wocky/wocky/wocky-openssl-dh512.c -+++ b/lib/ext/wocky/wocky/wocky-openssl-dh512.c -@@ -20,11 +20,21 @@ DH *get_dh512(void) - 0x02, - }; - DH *dh; -+#if OPENSSL_VERSION_NUMBER >= 0x10100000L -+ int r = 0; -+#endif - - if ((dh=DH_new()) == NULL) return(NULL); -+#if OPENSSL_VERSION_NUMBER >= 0x10100000L -+ r = DH_set0_pqg(dh, BN_bin2bn(dh512_p,sizeof(dh512_p),NULL), -+ NULL, BN_bin2bn(dh512_g,sizeof(dh512_g),NULL)); -+ if (!r) -+ { DH_free(dh); return(NULL); } -+#else - dh->p=BN_bin2bn(dh512_p,sizeof(dh512_p),NULL); - dh->g=BN_bin2bn(dh512_g,sizeof(dh512_g),NULL); - if ((dh->p == NULL) || (dh->g == NULL)) - { DH_free(dh); return(NULL); } -+#endif - return(dh); - } -diff --git a/lib/ext/wocky/wocky/wocky-openssl.c b/lib/ext/wocky/wocky/wocky-openssl.c -index 2201213..18f9981 100644 ---- a/lib/ext/wocky/wocky/wocky-openssl.c -+++ b/lib/ext/wocky/wocky/wocky-openssl.c -@@ -885,7 +885,11 @@ check_peer_name (const char *target, X509 *cert) - int i; - gboolean rval = FALSE; - X509_NAME *subject = X509_get_subject_name (cert); -- X509_CINF *ci = cert->cert_info; -+#if OPENSSL_VERSION_NUMBER >= 0x10100000L -+ const STACK_OF(X509_EXTENSION)* extensions = X509_get0_extensions(cert); -+#else -+ const STACK_OF(X509_EXTENSION)* extensions = cert->cert_info->extensions; -+#endif - static const long nid[] = { NID_commonName, NID_subject_alt_name, NID_undef }; - - /* first, see if the x509 name contains the info we want: */ -@@ -906,16 +910,21 @@ check_peer_name (const char *target, X509 *cert) - * and extract the subject_alt_name from the x509 v3 extensions: if that * - * extension is present, and a string, use that. If it is present, and * - * a multi-value stack, trawl it for the "DNS" entry and use that */ -- if (!rval && (ci->extensions != NULL)) -- for (i = 0; i < sk_X509_EXTENSION_num(ci->extensions) && !rval; i++) -+ if (!rval && (extensions != NULL)) -+ for (i = 0; i < sk_X509_EXTENSION_num(extensions) && !rval; i++) - { -- X509_EXTENSION *ext = sk_X509_EXTENSION_value (ci->extensions, i); -+ X509_EXTENSION *ext = sk_X509_EXTENSION_value (extensions, i); - ASN1_OBJECT *obj = X509_EXTENSION_get_object (ext); - X509V3_EXT_METHOD *convert = NULL; - long ni = OBJ_obj2nid (obj); - const guchar *p; - char *value = NULL; -+#if OPENSSL_VERSION_NUMBER >= 0x10100000L -+ const ASN1_OCTET_STRING* ext_value = X509_EXTENSION_get_data(ext); -+ int len = ASN1_STRING_length(ext_value); -+#else - int len = ext->value->length; -+#endif - void *ext_str = NULL; - - if (ni != NID_subject_alt_name) -@@ -927,7 +936,11 @@ check_peer_name (const char *target, X509 *cert) - if ((convert = (X509V3_EXT_METHOD *) X509V3_EXT_get (ext)) == NULL) - continue; - -+#if OPENSSL_VERSION_NUMBER >= 0x10100000L -+ p = ASN1_STRING_get0_data(ext_value); -+#else - p = ext->value->data; -+#endif - ext_str = ((convert->it != NULL) ? - ASN1_item_d2i (NULL, &p, len, ASN1_ITEM_ptr(convert->it)) : - convert->d2i (NULL, &p, len) ); -@@ -1675,12 +1701,16 @@ wocky_tls_session_init (WockyTLSSession *session) - - if G_UNLIKELY (g_once_init_enter (&initialised)) - { -+#if OPENSSL_VERSION_NUMBER >= 0x10100000L -+ DEBUG ("initialising SSL library and error strings"); -+#else - gint malloc_init_succeeded; - - DEBUG ("initialising SSL library and error strings"); - - malloc_init_succeeded = CRYPTO_malloc_init (); - g_warn_if_fail (malloc_init_succeeded); -+#endif - - SSL_library_init (); - SSL_load_error_strings (); -- cgit v1.2.3