mirror of
https://github.com/openwrt/routing.git
synced 2026-04-15 10:51:56 +00:00
Maintainer: Moritz Warning <moritzwarning@web.de> Compiled and tested on snapshot SDK mips_24kc and arm_cortex-a7_neon-vfpv4 This version fixes two issues that can cause NDS to lock or crash, one, a coding error that leads to memory corruption and two, deadlocks in iptables and ndsctl. Both of these issues occur at high loads and/or at high CPD detection rates. In addition, in some circumstances, a deauthenticated client running a vpn may have suffered from querystring truncation causing vpn failure. Some minor updates are also included. Extract from changelog: * Fix Memory corruption at high loads [bluewavenet] * Prevent iptables and ndsctl deadlocks [lynxis] * Prevent query string truncation for deauthenticated client when client is using some types of vpn software [bluewavenet] * Add debuglevel logging in the case of a firewall restart in OpenWrt [bluewavenet] * Return error 403(forbidden) when client attempts to use a forbidden http method [bluewavenet] Signed-off-by: Rob White <rob@blue-wave.net>
77 lines
2.7 KiB
Makefile
77 lines
2.7 KiB
Makefile
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=nodogsplash
|
|
PKG_FIXUP:=autoreconf
|
|
PKG_VERSION:=4.3.3
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_URL:=https://codeload.github.com/nodogsplash/nodogsplash/tar.gz/v$(PKG_VERSION)?
|
|
PKG_SOURCE:=nodogsplash-$(PKG_VERSION).tar.gz
|
|
PKG_HASH:=dac942123dc8d3e9295c7f1c18974245fdaffdf694ef03ee0a21187b6d11b31e
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/nodogsplash-$(PKG_VERSION)
|
|
|
|
PKG_MAINTAINER:=Moritz Warning <moritzwarning@web.de>
|
|
PKG_BUILD_PARALLEL:=1
|
|
PKG_LICENSE:=GPL-2.0+
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
define Package/nodogsplash
|
|
SUBMENU:=Captive Portals
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
DEPENDS:=+libpthread +iptables-mod-ipopt +libmicrohttpd-no-ssl
|
|
TITLE:=Open public network gateway daemon
|
|
URL:=https://github.com/nodogsplash/nodogsplash
|
|
CONFLICTS:=nodogsplash2
|
|
endef
|
|
|
|
define Package/nodogsplash/description
|
|
Nodogsplash is a Captive Portal that offers a simple way to
|
|
provide restricted access to the Internet by showing a splash
|
|
page to the user before Internet access is granted.
|
|
It also incorporates an API that allows the creation of
|
|
sophisticated authentication applications.
|
|
endef
|
|
|
|
define Package/nodogsplash/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/nodogsplash $(1)/usr/bin/
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/ndsctl $(1)/usr/bin/
|
|
|
|
$(INSTALL_DIR) $(1)/etc/nodogsplash/htdocs/images
|
|
$(INSTALL_DIR) $(1)/etc/config
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
$(INSTALL_DIR) $(1)/etc/uci-defaults
|
|
$(INSTALL_DIR) $(1)/usr/lib/nodogsplash
|
|
$(CP) $(PKG_BUILD_DIR)/resources/splash.html $(1)/etc/nodogsplash/htdocs/
|
|
$(CP) $(PKG_BUILD_DIR)/resources/splash.css $(1)/etc/nodogsplash/htdocs/
|
|
$(CP) $(PKG_BUILD_DIR)/resources/status.html $(1)/etc/nodogsplash/htdocs/
|
|
$(CP) $(PKG_BUILD_DIR)/resources/splash.jpg $(1)/etc/nodogsplash/htdocs/images/
|
|
$(CP) $(PKG_BUILD_DIR)/openwrt/nodogsplash/files/etc/config/nodogsplash $(1)/etc/config/
|
|
$(CP) $(PKG_BUILD_DIR)/openwrt/nodogsplash/files/etc/init.d/nodogsplash $(1)/etc/init.d/
|
|
$(CP) $(PKG_BUILD_DIR)/openwrt/nodogsplash/files/etc/uci-defaults/40_nodogsplash $(1)/etc/uci-defaults/
|
|
$(CP) $(PKG_BUILD_DIR)/openwrt/nodogsplash/files/usr/lib/nodogsplash/restart.sh $(1)/usr/lib/nodogsplash/
|
|
$(CP) $(PKG_BUILD_DIR)/forward_authentication_service/PreAuth/demo-preauth.sh $(1)/usr/lib/nodogsplash/login.sh
|
|
$(CP) $(PKG_BUILD_DIR)/forward_authentication_service/fas-aes/fas-aes.php $(1)/etc/nodogsplash/
|
|
endef
|
|
|
|
define Package/nodogsplash/postrm
|
|
#!/bin/sh
|
|
uci delete firewall.nodogsplash
|
|
uci commit firewall
|
|
endef
|
|
|
|
define Package/nodogsplash/conffiles
|
|
/etc/config/nodogsplash
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,nodogsplash))
|