openssl: add option for NPN support
authorDirk Feytons <dirk.feytons@gmail.com>
Fri, 20 May 2016 11:39:12 +0000 (13:39 +0200)
committerFelix Fietkau <nbd@nbd.name>
Sat, 23 Jul 2016 09:59:31 +0000 (11:59 +0200)
NPN has been superseded by ALPN so NPN is disabled by default
The patch has been sent to OpenSSL for inclusion, see
https://github.com/openssl/openssl/pull/1100

Signed-off-by: Dirk Feytons <dirk.feytons@gmail.com>
package/libs/openssl/Config.in
package/libs/openssl/Makefile
package/libs/openssl/patches/301-fix_no_nextprotoneg_build.patch [new file with mode: 0644]

index 02b5da9a0e1fff9897222adea5c248a04fbf22d0..492b042864c4ad0bd3ca7e022331e95b077376dc 100644 (file)
@@ -25,6 +25,11 @@ config OPENSSL_WITH_COMPRESSION
        default n
        prompt "Enable compression support"
 
+config OPENSSL_WITH_NPN
+       bool
+       default n
+       prompt "Enable NPN support"
+
 config OPENSSL_ENGINE_DIGEST
        bool
        depends on OPENSSL_ENGINE_CRYPTO
index c5d281a6dae2732ee7e7fb5a2a1e58ea6c4432b2..33b47aa9301aa6dfa21387c39f19e7dbee0ebd81 100644 (file)
@@ -34,7 +34,8 @@ PKG_CONFIG_DEPENDS:= \
        CONFIG_OPENSSL_WITH_SSL3 \
        CONFIG_OPENSSL_HARDWARE_SUPPORT \
        CONFIG_OPENSSL_WITH_DEPRECATED \
-       CONFIG_OPENSSL_WITH_COMPRESSION
+       CONFIG_OPENSSL_WITH_COMPRESSION \
+       CONFIG_OPENSSL_WITH_NPN
 
 include $(INCLUDE_DIR)/package.mk
 
@@ -131,6 +132,10 @@ else
   OPENSSL_OPTIONS += no-comp
 endif
 
+ifndef CONFIG_OPENSSL_WITH_NPN
+  OPENSSL_OPTIONS += no-nextprotoneg
+endif
+
 ifeq ($(CONFIG_x86_64),y)
   OPENSSL_TARGET:=linux-x86_64-openwrt
   OPENSSL_MAKEFLAGS += LIBDIR=lib
diff --git a/package/libs/openssl/patches/301-fix_no_nextprotoneg_build.patch b/package/libs/openssl/patches/301-fix_no_nextprotoneg_build.patch
new file mode 100644 (file)
index 0000000..04b76c7
--- /dev/null
@@ -0,0 +1,12 @@
+--- a/ssl/t1_ext.c
++++ b/ssl/t1_ext.c
+@@ -275,7 +275,9 @@ int SSL_extension_supported(unsigned int
+     case TLSEXT_TYPE_ec_point_formats:
+     case TLSEXT_TYPE_elliptic_curves:
+     case TLSEXT_TYPE_heartbeat:
++# ifndef OPENSSL_NO_NEXTPROTONEG
+     case TLSEXT_TYPE_next_proto_neg:
++# endif
+     case TLSEXT_TYPE_padding:
+     case TLSEXT_TYPE_renegotiate:
+     case TLSEXT_TYPE_server_name: