Blame SOURCES/openssl-1.0.2a-env-zlib.patch

fd2893
diff -up openssl-1.0.2a/doc/ssl/SSL_COMP_add_compression_method.pod.env-zlib openssl-1.0.2a/doc/ssl/SSL_COMP_add_compression_method.pod
fd2893
--- openssl-1.0.2a/doc/ssl/SSL_COMP_add_compression_method.pod.env-zlib	2015-04-09 18:17:20.509637597 +0200
fd2893
+++ openssl-1.0.2a/doc/ssl/SSL_COMP_add_compression_method.pod	2015-04-09 18:17:14.767504953 +0200
fd2893
@@ -47,6 +47,13 @@ Once the identities of the compression m
fd2893
 been standardized, the compression API will most likely be changed. Using
fd2893
 it in the current state is not recommended.
fd2893
 
fd2893
+It is also not recommended to use compression if data transfered contain
fd2893
+untrusted parts that can be manipulated by an attacker as he could then
fd2893
+get information about the encrypted data. See the CRIME attack. For
fd2893
+that reason the default loading of the zlib compression method is
fd2893
+disabled and enabled only if the environment variable B<OPENSSL_DEFAULT_ZLIB>
fd2893
+is present during the library initialization.
fd2893
+
fd2893
 =head1 RETURN VALUES
fd2893
 
fd2893
 SSL_COMP_add_compression_method() may return the following values:
fd2893
diff -up openssl-1.0.2a/ssl/ssl_ciph.c.env-zlib openssl-1.0.2a/ssl/ssl_ciph.c
fd2893
--- openssl-1.0.2a/ssl/ssl_ciph.c.env-zlib	2015-04-09 18:17:20.510637620 +0200
fd2893
+++ openssl-1.0.2a/ssl/ssl_ciph.c	2015-04-09 18:17:20.264631937 +0200
fd2893
@@ -140,6 +140,8 @@
fd2893
  * OTHERWISE.
fd2893
  */
fd2893
 
fd2893
+/* for secure_getenv */
fd2893
+#define _GNU_SOURCE
fd2893
 #include <stdio.h>
fd2893
 #include <openssl/objects.h>
fd2893
 #ifndef OPENSSL_NO_COMP
fd2893
@@ -450,7 +452,8 @@ static void load_builtin_compressions(vo
fd2893
 
fd2893
             MemCheck_off();
fd2893
             ssl_comp_methods = sk_SSL_COMP_new(sk_comp_cmp);
fd2893
-            if (ssl_comp_methods != NULL) {
fd2893
+            if (ssl_comp_methods != NULL
fd2893
+                && secure_getenv("OPENSSL_DEFAULT_ZLIB") != NULL) {
fd2893
                 comp = (SSL_COMP *)OPENSSL_malloc(sizeof(SSL_COMP));
fd2893
                 if (comp != NULL) {
fd2893
                     comp->method = COMP_zlib();