From f1025cd785948fb1dde2092b9097f2e882ed3761 Mon Sep 17 00:00:00 2001 From: Hauke Mehrtens Date: Thu, 27 Aug 2020 12:09:58 +0200 Subject: [PATCH 1/4] hostapd: Fix compile errors after wolfssl update This fixes the following compile errors after the wolfssl 4.5.0 update: LD wpa_cli ../src/crypto/tls_wolfssl.c: In function 'tls_match_alt_subject': ../src/crypto/tls_wolfssl.c:610:11: error: 'GEN_EMAIL' undeclared (first use in this function); did you mean 'ENAVAIL'? type = GEN_EMAIL; ^~~~~~~~~ ENAVAIL ../src/crypto/tls_wolfssl.c:610:11: note: each undeclared identifier is reported only once for each function it appears in ../src/crypto/tls_wolfssl.c:613:11: error: 'GEN_DNS' undeclared (first use in this function) type = GEN_DNS; ^~~~~~~ ../src/crypto/tls_wolfssl.c:616:11: error: 'GEN_URI' undeclared (first use in this function) type = GEN_URI; ^~~~~~~ ../src/crypto/tls_wolfssl.c: In function 'wolfssl_tls_cert_event': ../src/crypto/tls_wolfssl.c:902:20: error: 'GEN_EMAIL' undeclared (first use in this function); did you mean 'ENAVAIL'? if (gen->type != GEN_EMAIL && ^~~~~~~~~ ENAVAIL ../src/crypto/tls_wolfssl.c:903:20: error: 'GEN_DNS' undeclared (first use in this function) gen->type != GEN_DNS && ^~~~~~~ ../src/crypto/tls_wolfssl.c:904:20: error: 'GEN_URI' undeclared (first use in this function) gen->type != GEN_URI) ^~~~~~~ Makefile:2029: recipe for target '../src/crypto/tls_wolfssl.o' failed Fixes: 00722a720c77 ("wolfssl: Update to version 4.5.0") Reported-by: Andre Heider Signed-off-by: Hauke Mehrtens --- .../hostapd/patches/110-wolfssl-compile-fix.patch | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 package/network/services/hostapd/patches/110-wolfssl-compile-fix.patch diff --git a/package/network/services/hostapd/patches/110-wolfssl-compile-fix.patch b/package/network/services/hostapd/patches/110-wolfssl-compile-fix.patch new file mode 100644 index 0000000000..a7b5409602 --- /dev/null +++ b/package/network/services/hostapd/patches/110-wolfssl-compile-fix.patch @@ -0,0 +1,10 @@ +--- a/src/crypto/tls_wolfssl.c ++++ b/src/crypto/tls_wolfssl.c +@@ -19,6 +19,7 @@ + #include + #include + #include ++#include + + #if defined(EAP_FAST) || defined(EAP_FAST_DYNAMIC) || defined(EAP_SERVER_FAST) + #define HAVE_AESGCM From b2296ec034168b7e0cace1a0131bdc319988b769 Mon Sep 17 00:00:00 2001 From: Hannu Nyman Date: Mon, 24 Aug 2020 19:44:47 +0300 Subject: [PATCH 2/4] tools/mpc: update to 1.2.0 Update mpc to version 1.2.0. Signed-off-by: Hannu Nyman --- tools/mpc/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/mpc/Makefile b/tools/mpc/Makefile index 70dca2637d..27e9a01c4b 100644 --- a/tools/mpc/Makefile +++ b/tools/mpc/Makefile @@ -7,11 +7,11 @@ include $(TOPDIR)/rules.mk PKG_NAME:=mpc -PKG_VERSION:=1.1.0 +PKG_VERSION:=1.2.0 PKG_SOURCE_URL:=@GNU/mpc/ PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz -PKG_HASH:=6985c538143c1208dcb1ac42cedad6ff52e267b47e5f970183a3e75125b43c2e +PKG_HASH:=e90f2d99553a9c19911abdb4305bf8217106a957e3994436428572c8dfe8fda6 HOST_BUILD_PARALLEL:=1 From 225b36b22f5350030196796fc164755f1452cd3b Mon Sep 17 00:00:00 2001 From: Ray <69144237+RayorRui@users.noreply.github.com> Date: Fri, 28 Aug 2020 10:25:30 +0800 Subject: [PATCH 3/4] smartdns: update to Release 32 --- package/ntlf9t/smartdns/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package/ntlf9t/smartdns/Makefile b/package/ntlf9t/smartdns/Makefile index f1433ec53c..8a86bbd35a 100644 --- a/package/ntlf9t/smartdns/Makefile +++ b/package/ntlf9t/smartdns/Makefile @@ -16,12 +16,12 @@ include $(TOPDIR)/rules.mk PKG_NAME:=smartdns -PKG_VERSION:=8.2020.24 +PKG_VERSION:=8.2020.27 PKG_RELEASE:=1 PKG_SOURCE_PROTO:=git PKG_SOURCE_URL:=https://github.com/pymumu/smartdns.git -PKG_SOURCE_VERSION:=Release32-RC4 +PKG_SOURCE_VERSION:=Release32 PKG_MAINTAINER:=Nick Peng PKG_LICENSE:=GPL-3.0-or-later From 61abf9af2fcbbd0ac30525f88b2953ed8c643415 Mon Sep 17 00:00:00 2001 From: Paul Spooren Date: Wed, 26 Aug 2020 22:08:38 -1000 Subject: [PATCH 4/4] curl: move package to packages.git curl is replaced by uclient-fetch within the OpenWrt build system and we can therefore move curl to packages.git. This is based on the Hamburg 2019 decision that non essential packages should move outside base. Signed-off-by: Paul Spooren --- package/network/utils/curl/Config.in | 160 --------------- package/network/utils/curl/Makefile | 189 ------------------ ...ure-fix-pkg-config-detecting-wolfssl.patch | 31 --- .../curl/patches/200-no_docs_tests.patch | 22 -- 4 files changed, 402 deletions(-) delete mode 100644 package/network/utils/curl/Config.in delete mode 100644 package/network/utils/curl/Makefile delete mode 100644 package/network/utils/curl/patches/100-configure-fix-pkg-config-detecting-wolfssl.patch delete mode 100644 package/network/utils/curl/patches/200-no_docs_tests.patch diff --git a/package/network/utils/curl/Config.in b/package/network/utils/curl/Config.in deleted file mode 100644 index cebf16b6cb..0000000000 --- a/package/network/utils/curl/Config.in +++ /dev/null @@ -1,160 +0,0 @@ -if PACKAGE_libcurl - -comment "SSL support" - -choice - prompt "Selected SSL library" - default LIBCURL_OPENSSL - - config LIBCURL_MBEDTLS - bool "mbed TLS" - - config LIBCURL_WOLFSSL - bool "wolfSSL" - - config LIBCURL_OPENSSL - bool "OpenSSL" - - config LIBCURL_GNUTLS - bool "GNUTLS" - - config LIBCURL_NOSSL - bool "No SSL support" - -endchoice - -comment "Supported protocols" - -config LIBCURL_DICT - bool "DICT protocol" - default n - -config LIBCURL_FILE - bool "FILE protocol" - default y - -config LIBCURL_FTP - bool "FTP / FTPS protocol" - default y - -config LIBCURL_GOPHER - bool "Gopher protocol" - default n - -config LIBCURL_HTTP - bool "HTTP / HTTPS protocol" - default y - -config LIBCURL_COOKIES - bool "Enable Cookies support" - depends on LIBCURL_HTTP - default y - -config LIBCURL_IMAP - bool "IMAP / IMAPS protocol" - default n - -config LIBCURL_LDAP - bool "LDAP protocol" - default y - -config LIBCURL_LDAPS - bool "Enable LDAPS support" - depends on LIBCURL_LDAP && !LIBCURL_NOSSL - default y - -config LIBCURL_POP3 - bool "POP3 / POP3S protocol" - default n - -config LIBCURL_RTSP - bool "RTSP protocol" - depends on LIBCURL_HTTP - default n -config LIBCURL_NO_RTSP - string "RTSP require HTTP protocol" - depends on !LIBCURL_HTTP - default "!" - -config LIBCURL_SSH2 - bool "SCP / SFTP protocol" - default n - -config LIBCURL_SMB - bool "SMB protocol (CIFS)" - depends on LIBCURL_CRYPTO_AUTH && (LIBCURL_GNUTLS || LIBCURL_OPENSSL) - default n -config LIBCURL_NO_SMB - string "SMB require 'cryptographic authentication' and either 'GnuTLS' or 'OpenSSL'" - depends on !LIBCURL_CRYPTO_AUTH || (!LIBCURL_GNUTLS && !LIBCURL_OPENSSL) - default "!" - -config LIBCURL_SMTP - bool "SMTP / SMTPS protocol" - default n - -config LIBCURL_TELNET - bool "TELNET protocol" - default n - -config LIBCURL_TFTP - bool "TFTP protocol" - default y - -config LIBCURL_NGHTTP2 - bool "HTTP2 protocol" - default y - -comment "Miscellaneous" - -config LIBCURL_PROXY - bool "Enable proxy support" - default y - -config LIBCURL_CRYPTO_AUTH - bool "Enable cryptographic authentication" - default y - -config LIBCURL_TLS_SRP - bool "Enable TLS-SRP authentication" - default y - -config LIBCURL_LIBIDN2 - bool "Enable IDN2 support" - default n - -config LIBCURL_THREADED_RESOLVER - bool "Enable threaded DNS resolver" - default y - help - Enable POSIX threaded asynchronous DNS resolution - -config LIBCURL_ZLIB - bool "Enable zlib support" - default n - -config LIBCURL_UNIX_SOCKETS - bool "Enable unix domain socket support" - default n - help - Enable HTTP over unix domain sockets. - To use this with the curl command line, you specify the socket path to the new --unix-domain option. - This feature is actually not limited to HTTP, you can do all the TCP-based protocols - except FTP over the unix domain socket, but it is only HTTP that is regularly used this way. - The reason FTP isn't supported is of course its use of two connections - which would be even weirder to do like this. - -config LIBCURL_LIBCURL_OPTION - bool "Enable generation of C code" - default n - -config LIBCURL_VERBOSE - bool "Enable verbose error strings" - default n - -config LIBCURL_NTLM - bool "Enable NTLM support" - depends on LIBCURL_CRYPTO_AUTH && !LIBCURL_NOSSL - default n - -endif diff --git a/package/network/utils/curl/Makefile b/package/network/utils/curl/Makefile deleted file mode 100644 index c70bfdff20..0000000000 --- a/package/network/utils/curl/Makefile +++ /dev/null @@ -1,189 +0,0 @@ -# -# Copyright (C) 2007-2016 OpenWrt.org -# -# This is free software, licensed under the GNU General Public License v2. -# See /LICENSE for more information. -# - -include $(TOPDIR)/rules.mk - -PKG_NAME:=curl -PKG_VERSION:=7.72.0 -PKG_RELEASE:=2 - -PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz -PKG_SOURCE_URL:=https://dl.uxnr.de/mirror/curl/ \ - https://curl.mirror.anstey.ca/ \ - https://curl.askapache.com/download/ \ - https://curl.haxx.se/download/ -PKG_HASH:=0ded0808c4d85f2ee0db86980ae610cc9d165e9ca9da466196cc73c346513713 - -PKG_LICENSE:=MIT -PKG_LICENSE_FILES:=COPYING -PKG_CPE_ID:=cpe:/a:haxx:libcurl - -PKG_FIXUP:=autoreconf -PKG_BUILD_PARALLEL:=1 - -PKG_CONFIG_DEPENDS:= \ - CONFIG_IPV6 \ - \ - CONFIG_LIBCURL_WOLFSSL \ - CONFIG_LIBCURL_GNUTLS \ - CONFIG_LIBCURL_OPENSSL \ - CONFIG_LIBCURL_MBEDTLS \ - CONFIG_LIBCURL_NOSSL \ - \ - CONFIG_LIBCURL_LIBIDN2 \ - CONFIG_LIBCURL_SSH2 \ - CONFIG_LIBCURL_ZLIB \ - \ - CONFIG_LIBCURL_DICT \ - CONFIG_LIBCURL_FILE \ - CONFIG_LIBCURL_FTP \ - CONFIG_LIBCURL_GOPHER \ - CONFIG_LIBCURL_HTTP \ - CONFIG_LIBCURL_IMAP \ - CONFIG_LIBCURL_LDAP \ - CONFIG_LIBCURL_LDAPS \ - CONFIG_LIBCURL_POP3 \ - CONFIG_LIBCURL_RTSP \ - CONFIG_LIBCURL_NO_RTSP \ - CONFIG_LIBCURL_SMB \ - CONFIG_LIBCURL_NO_SMB \ - CONFIG_LIBCURL_SMTP \ - CONFIG_LIBCURL_TELNET \ - CONFIG_LIBCURL_TFTP \ - CONFIG_LIBCURL_NGHTTP2 \ - \ - CONFIG_LIBCURL_COOKIES \ - CONFIG_LIBCURL_CRYPTO_AUTH \ - CONFIG_LIBCURL_LIBCURL_OPTION \ - CONFIG_LIBCURL_PROXY \ - CONFIG_LIBCURL_THREADED_RESOLVER \ - CONFIG_LIBCURL_TLS_SRP \ - CONFIG_LIBCURL_UNIX_SOCKETS \ - CONFIG_LIBCURL_VERBOSE \ - CONFIG_LIBCURL_NTLM \ - $(if $(CONFIG_LIBCURL_OPENSSL), \ - CONFIG_OPENSSL_ENGINE \ - CONFIG_OPENSSL_WITH_COMPRESSION \ - CONFIG_OPENSSL_WITH_NPN) - -include $(INCLUDE_DIR)/package.mk - -define Package/curl/Default - SECTION:=net - CATEGORY:=Network - URL:=http://curl.haxx.se/ - MAINTAINER:=Imre Kaloz -endef - -define Package/curl - $(call Package/curl/Default) - SUBMENU:=File Transfer - DEPENDS:=+libcurl - TITLE:=A client-side URL transfer utility -endef - -define Package/libcurl - $(call Package/curl/Default) - SECTION:=libs - CATEGORY:=Libraries - DEPENDS:= +LIBCURL_WOLFSSL:libwolfssl +LIBCURL_OPENSSL:libopenssl +LIBCURL_GNUTLS:libgnutls +LIBCURL_MBEDTLS:libmbedtls - DEPENDS += +LIBCURL_ZLIB:zlib +LIBCURL_THREADED_RESOLVER:libpthread +LIBCURL_LDAP:libopenldap +LIBCURL_LIBIDN2:libidn2 - DEPENDS += +LIBCURL_SSH2:libssh2 +LIBCURL_NGHTTP2:libnghttp2 +ca-bundle - TITLE:=A client-side URL transfer library - MENU:=1 - ABI_VERSION:=4 -endef - -define Package/libcurl/config - source "$(SOURCE)/Config.in" -endef - -TARGET_CFLAGS += $(FPIC) -ffunction-sections -fdata-sections -TARGET_CPPFLAGS += $(if $(CONFIG_LIBCURL_NTLM),,-DCURL_DISABLE_NTLM) -TARGET_LDFLAGS += -Wl,--gc-sections - -CONFIGURE_ARGS += \ - --disable-debug \ - --disable-ares \ - --enable-shared \ - --enable-static \ - --disable-manual \ - --without-nss \ - --without-libmetalink \ - --without-librtmp \ - --without-libidn \ - --without-ca-path \ - --without-libpsl \ - --without-zstd \ - --with-ca-bundle=/etc/ssl/certs/ca-certificates.crt \ - \ - $(call autoconf_bool,CONFIG_IPV6,ipv6) \ - \ - $(if $(CONFIG_LIBCURL_WOLFSSL),--with-wolfssl="$(STAGING_DIR)/usr",--without-wolfssl) \ - $(if $(CONFIG_LIBCURL_GNUTLS),--with-gnutls="$(STAGING_DIR)/usr",--without-gnutls) \ - $(if $(CONFIG_LIBCURL_OPENSSL),--with-ssl="$(STAGING_DIR)/usr",--without-ssl) \ - $(if $(CONFIG_LIBCURL_MBEDTLS),--with-mbedtls="$(STAGING_DIR)/usr",--without-mbedtls) \ - \ - $(if $(CONFIG_LIBCURL_LIBIDN2),--with-libidn2="$(STAGING_DIR)/usr",--without-libidn2) \ - $(if $(CONFIG_LIBCURL_SSH2),--with-libssh2="$(STAGING_DIR)/usr",--without-libssh2) \ - $(if $(CONFIG_LIBCURL_ZLIB),--with-zlib="$(STAGING_DIR)/usr",--without-zlib) \ - $(if $(CONFIG_LIBCURL_NGHTTP2),--with-nghttp2="$(STAGING_DIR)/usr",--without-nghttp2) \ - \ - $(call autoconf_bool,CONFIG_LIBCURL_DICT,dict) \ - $(call autoconf_bool,CONFIG_LIBCURL_FILE,file) \ - $(call autoconf_bool,CONFIG_LIBCURL_FTP,ftp) \ - $(call autoconf_bool,CONFIG_LIBCURL_GOPHER,gopher) \ - $(call autoconf_bool,CONFIG_LIBCURL_HTTP,http) \ - $(call autoconf_bool,CONFIG_LIBCURL_IMAP,imap) \ - $(call autoconf_bool,CONFIG_LIBCURL_LDAP,ldap) \ - $(call autoconf_bool,CONFIG_LIBCURL_LDAPS,ldaps) \ - $(call autoconf_bool,CONFIG_LIBCURL_POP3,pop3) \ - $(call autoconf_bool,CONFIG_LIBCURL_RTSP,rtsp) \ - $(call autoconf_bool,CONFIG_LIBCURL_SMB,smb) \ - $(call autoconf_bool,CONFIG_LIBCURL_SMTP,smtp) \ - $(call autoconf_bool,CONFIG_LIBCURL_TELNET,telnet) \ - $(call autoconf_bool,CONFIG_LIBCURL_TFTP,tftp) \ - \ - $(call autoconf_bool,CONFIG_LIBCURL_COOKIES,cookies) \ - $(call autoconf_bool,CONFIG_LIBCURL_CRYPTO_AUTH,crypto-auth) \ - $(call autoconf_bool,CONFIG_LIBCURL_LIBCURL_OPTION,libcurl-option) \ - $(call autoconf_bool,CONFIG_LIBCURL_PROXY,proxy) \ - $(call autoconf_bool,CONFIG_LIBCURL_THREADED_RESOLVER,threaded-resolver) \ - $(call autoconf_bool,CONFIG_LIBCURL_TLS_SRP,tls-srp) \ - $(call autoconf_bool,CONFIG_LIBCURL_UNIX_SOCKETS,unix-sockets) \ - $(call autoconf_bool,CONFIG_LIBCURL_VERBOSE,verbose) \ - -define Build/Compile - +$(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) \ - DESTDIR="$(PKG_INSTALL_DIR)" \ - CC="$(TARGET_CC)" \ - install -endef - -define Build/InstallDev - $(INSTALL_DIR) $(2)/bin $(1)/usr/bin $(1)/usr/include $(1)/usr/lib $(1)/usr/lib/pkgconfig - $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/curl-config $(1)/usr/bin/ - $(CP) $(PKG_INSTALL_DIR)/usr/include/curl $(1)/usr/include/ - $(CP) $(PKG_INSTALL_DIR)/usr/lib/libcurl.{a,so*} $(1)/usr/lib/ - $(CP) $(PKG_BUILD_DIR)/libcurl.pc $(1)/usr/lib/pkgconfig/ - $(SED) 's,-L$$$${exec_prefix}/lib,,g' $(1)/usr/bin/curl-config - [ -n "$(TARGET_LDFLAGS)" ] && $(SED) 's#$(TARGET_LDFLAGS)##g' $(1)/usr/lib/pkgconfig/libcurl.pc || true - $(LN) $(STAGING_DIR)/usr/bin/curl-config $(2)/bin/ -endef - -define Package/curl/install - $(INSTALL_DIR) $(1)/usr/bin - $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/curl $(1)/usr/bin/ -endef - -define Package/libcurl/install - $(INSTALL_DIR) $(1)/usr/lib - $(CP) $(PKG_INSTALL_DIR)/usr/lib/libcurl.so.* $(1)/usr/lib/ -endef - -$(eval $(call BuildPackage,curl)) -$(eval $(call BuildPackage,libcurl)) diff --git a/package/network/utils/curl/patches/100-configure-fix-pkg-config-detecting-wolfssl.patch b/package/network/utils/curl/patches/100-configure-fix-pkg-config-detecting-wolfssl.patch deleted file mode 100644 index a77e5c69df..0000000000 --- a/package/network/utils/curl/patches/100-configure-fix-pkg-config-detecting-wolfssl.patch +++ /dev/null @@ -1,31 +0,0 @@ -From 510d98157f21dee5793c4e975fde3317b6139267 Mon Sep 17 00:00:00 2001 -From: Daniel Stenberg -Date: Mon, 24 Aug 2020 16:28:34 +0200 -Subject: [PATCH] configure: fix pkg-config detecting wolfssl - -When amending the include path with "/wolfssl", this now properly strips -off all whitespace from the path variable! Previously this would lead to -pkg-config builds creating bad command lines. - -Closes #5848 ---- - configure.ac | 8 ++++++-- - 1 file changed, 6 insertions(+), 2 deletions(-) - ---- a/configure.ac -+++ b/configure.ac -@@ -2474,8 +2474,12 @@ if test -z "$ssl_backends" -o "x$OPT_WOL - AC_DEFINE(HAVE_WOLFSSL_DES_ECB_ENCRYPT, 1, - [if you have wolfSSL_DES_ecb_encrypt]) - if test -n "$addcflags"; then -- CPPFLAGS="$addcflags/wolfssl $CPPFLAGS" -- AC_MSG_NOTICE([Add $addcflags/wolfssl to CPPFLAGS]) -+ dnl use a for loop to strip off whitespace -+ for f in $addcflags; do -+ CPPFLAGS="$f/wolfssl $CPPFLAGS" -+ AC_MSG_NOTICE([Add $f/wolfssl to CPPFLAGS]) -+ break -+ done - else - dnl user didn't give a path, so guess/hope they installed wolfssl - dnl headers to system default location diff --git a/package/network/utils/curl/patches/200-no_docs_tests.patch b/package/network/utils/curl/patches/200-no_docs_tests.patch deleted file mode 100644 index b5f92b58c8..0000000000 --- a/package/network/utils/curl/patches/200-no_docs_tests.patch +++ /dev/null @@ -1,22 +0,0 @@ ---- a/Makefile.am -+++ b/Makefile.am -@@ -192,7 +192,7 @@ CLEANFILES = $(VC6_LIBDSP) $(VC6_SRCDSP) - bin_SCRIPTS = curl-config - - SUBDIRS = lib src --DIST_SUBDIRS = $(SUBDIRS) tests packages scripts include docs -+DIST_SUBDIRS = $(SUBDIRS) packages include - - pkgconfigdir = $(libdir)/pkgconfig - pkgconfig_DATA = libcurl.pc -@@ -303,8 +303,8 @@ cygwinbin: - # We extend the standard install with a custom hook: - install-data-hook: - (cd include && $(MAKE) install) -- (cd docs && $(MAKE) install) -- (cd docs/libcurl && $(MAKE) install) -+ #(cd docs && $(MAKE) install) -+ #(cd docs/libcurl && $(MAKE) install) - - # We extend the standard uninstall with a custom hook: - uninstall-hook: