diff --git a/net/zerotier/Makefile b/net/zerotier/Makefile index 01ad05248f..ae2cf21f17 100644 --- a/net/zerotier/Makefile +++ b/net/zerotier/Makefile @@ -6,12 +6,12 @@ include $(TOPDIR)/rules.mk PKG_NAME:=zerotier -PKG_VERSION:=1.10.4 +PKG_VERSION:=1.12.1 PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://codeload.github.com/zerotier/ZeroTierOne/tar.gz/$(PKG_VERSION)? -PKG_HASH:=5dc185a65baf8caa3fb739cbc8043677aa117604be9036a28c34f8fda5d6eafe +PKG_HASH:=c6758a04f161bba1c0ef11fce991029a645ede381ae3862a25a2f5145aaffca8 PKG_BUILD_DIR:=$(BUILD_DIR)/ZeroTierOne-$(PKG_VERSION) PKG_MAINTAINER:=Moritz Warning @@ -26,7 +26,7 @@ include $(INCLUDE_DIR)/package.mk define Package/zerotier SECTION:=net CATEGORY:=Network - DEPENDS:=+libpthread +libstdcpp +kmod-tun +ip +libminiupnpc +libnatpmp + DEPENDS:=+libpthread +libstdcpp +kmod-tun +ip +libminiupnpc +libnatpmp +libatomic TITLE:=Create flat virtual Ethernet networks of almost unlimited size URL:=https://www.zerotier.com SUBMENU:=VPN diff --git a/net/zerotier/files/etc/init.d/zerotier b/net/zerotier/files/etc/init.d/zerotier index f7ba8e91d8..a919dacea1 100755 --- a/net/zerotier/files/etc/init.d/zerotier +++ b/net/zerotier/files/etc/init.d/zerotier @@ -18,7 +18,7 @@ start_instance() { local args="" if ! section_enabled "$cfg"; then - echo "disabled in config" + echo "disabled in /ect/config/zerotier" return 1 fi diff --git a/net/zerotier/patches/0001-fix-makefile.patch b/net/zerotier/patches/0001-fix-miniupnpc-natpmp-include-paths.patch similarity index 59% rename from net/zerotier/patches/0001-fix-makefile.patch rename to net/zerotier/patches/0001-fix-miniupnpc-natpmp-include-paths.patch index eacb723529..8779829f44 100644 --- a/net/zerotier/patches/0001-fix-makefile.patch +++ b/net/zerotier/patches/0001-fix-miniupnpc-natpmp-include-paths.patch @@ -1,11 +1,12 @@ -From 2c513f0db50eaee5623d58ac024d62142f4ac782 Mon Sep 17 00:00:00 2001 +From 8b30e8617720c2a540c84c5c00508e8081e9f06e Mon Sep 17 00:00:00 2001 From: Moritz Warning -Date: Mon, 4 Jul 2022 00:09:24 +0200 -Subject: [PATCH 1/2] fix makefile +Date: Sun, 27 Aug 2023 23:26:33 +0200 +Subject: [PATCH 1/5] fix miniupnpc/natpmp include paths +Signed-off-by: Moritz Warning --- - make-linux.mk | 14 +++++++------- - 1 file changed, 7 insertions(+), 7 deletions(-) + make-linux.mk | 6 +++--- + 1 file changed, 3 insertions(+), 3 deletions(-) --- a/make-linux.mk +++ b/make-linux.mk @@ -29,32 +30,3 @@ Subject: [PATCH 1/2] fix makefile ONE_OBJS+=ext/libnatpmp/natpmp.o ext/libnatpmp/getgateway.o else LDLIBS+=-lnatpmp -@@ -70,7 +70,7 @@ else - override CFLAGS+=-Wall -Wno-deprecated -pthread $(INCLUDES) -DNDEBUG $(DEFS) - CXXFLAGS?=-O3 -fstack-protector - override CXXFLAGS+=-Wall -Wno-deprecated -std=c++17 -pthread $(INCLUDES) -DNDEBUG $(DEFS) -- LDFLAGS=-pie -Wl,-z,relro,-z,now -+ LDFLAGS=-Wl,-z,relro,-z,now - RUSTFLAGS=--release - endif - -@@ -316,7 +316,7 @@ ifeq ($(ZT_CONTROLLER),1) - endif - - # ARM32 hell -- use conservative CFLAGS --ifeq ($(ZT_ARCHITECTURE),3) -+ifeq (0,3) - ifeq ($(shell if [ -e /usr/bin/dpkg ]; then dpkg --print-architecture; fi),armel) - override CFLAGS+=-march=armv5t -mfloat-abi=soft -msoft-float -mno-unaligned-access -marm - override CXXFLAGS+=-march=armv5t -mfloat-abi=soft -msoft-float -mno-unaligned-access -marm -@@ -343,8 +343,8 @@ ifeq ($(ZT_USE_ARM32_NEON_ASM_CRYPTO),1) - endif - - # Position Independence --override CFLAGS+=-fPIC -fPIE --override CXXFLAGS+=-fPIC -fPIE -+#override CFLAGS+=-fPIC -fPIE -+#override CXXFLAGS+=-fPIC -fPIE - - .PHONY: all - all: one diff --git a/net/zerotier/patches/0002-remove-PIE-options.patch b/net/zerotier/patches/0002-remove-PIE-options.patch new file mode 100644 index 0000000000..0b21991eb9 --- /dev/null +++ b/net/zerotier/patches/0002-remove-PIE-options.patch @@ -0,0 +1,41 @@ +From 9b97099560a79529f2b5a748e73164ae038d2b76 Mon Sep 17 00:00:00 2001 +From: Moritz Warning +Date: Sun, 27 Aug 2023 23:27:33 +0200 +Subject: [PATCH 2/5] remove PIE options + +Signed-off-by: Moritz Warning +--- + make-linux.mk | 8 ++++---- + 1 file changed, 4 insertions(+), 4 deletions(-) + +--- a/make-linux.mk ++++ b/make-linux.mk +@@ -70,7 +70,7 @@ else + override CFLAGS+=-Wall -Wno-deprecated -pthread $(INCLUDES) -DNDEBUG $(DEFS) + CXXFLAGS?=-O3 -fstack-protector + override CXXFLAGS+=-Wall -Wno-deprecated -std=c++17 -pthread $(INCLUDES) -DNDEBUG $(DEFS) +- LDFLAGS=-pie -Wl,-z,relro,-z,now ++ LDFLAGS=-Wl,-z,relro,-z,now + RUSTFLAGS=--release + endif + +@@ -327,7 +327,7 @@ ifeq ($(ZT_CONTROLLER),1) + endif + + # ARM32 hell -- use conservative CFLAGS +-ifeq ($(ZT_ARCHITECTURE),3) ++ifeq (0,3) + ifeq ($(shell if [ -e /usr/bin/dpkg ]; then dpkg --print-architecture; fi),armel) + override CFLAGS+=-march=armv5t -mfloat-abi=soft -msoft-float -mno-unaligned-access -marm + override CXXFLAGS+=-march=armv5t -mfloat-abi=soft -msoft-float -mno-unaligned-access -marm +@@ -354,8 +354,8 @@ ifeq ($(ZT_USE_ARM32_NEON_ASM_CRYPTO),1) + endif + + # Position Independence +-override CFLAGS+=-fPIC -fPIE +-override CXXFLAGS+=-fPIC -fPIE ++#override CFLAGS+=-fPIC -fPIE ++#override CXXFLAGS+=-fPIC -fPIE + + # Non-executable stack + override ASFLAGS+=--noexecstack diff --git a/net/zerotier/patches/0002-fix-compilation-for-arm_cortex-a7-neon.patch b/net/zerotier/patches/0003-fix-compilation-for-arm_cortex-a7-neon.patch similarity index 84% rename from net/zerotier/patches/0002-fix-compilation-for-arm_cortex-a7-neon.patch rename to net/zerotier/patches/0003-fix-compilation-for-arm_cortex-a7-neon.patch index 00fef6eb52..8831edef7b 100644 --- a/net/zerotier/patches/0002-fix-compilation-for-arm_cortex-a7-neon.patch +++ b/net/zerotier/patches/0003-fix-compilation-for-arm_cortex-a7-neon.patch @@ -1,7 +1,7 @@ -From 819232a2b5a09d7aa3cacb8dcf7c2e28afde1b06 Mon Sep 17 00:00:00 2001 +From 1689085363cf87deb3877139931a8a88d8c7bcd3 Mon Sep 17 00:00:00 2001 From: Moritz Warning Date: Mon, 4 Jul 2022 00:10:52 +0200 -Subject: [PATCH 2/2] fix compilation for arm_cortex-a7+neon +Subject: [PATCH 3/5] fix compilation for arm_cortex-a7+neon Fixes "error: 'vrbitq_u8' was not declared in this scope" diff --git a/net/zerotier/patches/0004-add-missing-libatomic.patch b/net/zerotier/patches/0004-add-missing-libatomic.patch new file mode 100644 index 0000000000..d8d9c61732 --- /dev/null +++ b/net/zerotier/patches/0004-add-missing-libatomic.patch @@ -0,0 +1,21 @@ +From b3879d721734862aa64433f7faf124a0862da029 Mon Sep 17 00:00:00 2001 +From: Moritz Warning +Date: Sun, 27 Aug 2023 22:27:12 +0200 +Subject: [PATCH 4/5] add missing libatomic + +Signed-off-by: Moritz Warning +--- + make-linux.mk | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +--- a/make-linux.mk ++++ b/make-linux.mk +@@ -11,7 +11,7 @@ endif + + INCLUDES?=-Izeroidc/target -isystem ext -Iext/prometheus-cpp-lite-1.0/core/include -Iext-prometheus-cpp-lite-1.0/3rdparty/http-client-lite/include -Iext/prometheus-cpp-lite-1.0/simpleapi/include + DEFS?= +-LDLIBS?= ++LDLIBS?=-latomic + DESTDIR?= + + include objects.mk diff --git a/net/zerotier/patches/0005-remove-noexecstack.patch b/net/zerotier/patches/0005-remove-noexecstack.patch new file mode 100644 index 0000000000..07b1ac3b4c --- /dev/null +++ b/net/zerotier/patches/0005-remove-noexecstack.patch @@ -0,0 +1,21 @@ +From adcc68c6c3de8460bd6263d3478873953a4cf894 Mon Sep 17 00:00:00 2001 +From: Moritz Warning +Date: Mon, 28 Aug 2023 09:48:28 +0200 +Subject: [PATCH 5/5] remove noexecstack + +The compilers for arm_cortex-a9 do not recognize this argument. +--- + make-linux.mk | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +--- a/make-linux.mk ++++ b/make-linux.mk +@@ -358,7 +358,7 @@ endif + #override CXXFLAGS+=-fPIC -fPIE + + # Non-executable stack +-override ASFLAGS+=--noexecstack ++# override ASFLAGS+=--noexecstack + + .PHONY: all + all: one