Merge Official Source
This commit is contained in:
commit
1e7673e515
@ -249,7 +249,6 @@ menu "Global build settings"
|
|||||||
|
|
||||||
choice
|
choice
|
||||||
prompt "User space Stack-Smashing Protection"
|
prompt "User space Stack-Smashing Protection"
|
||||||
depends on USE_MUSL
|
|
||||||
default PKG_CC_STACKPROTECTOR_REGULAR
|
default PKG_CC_STACKPROTECTOR_REGULAR
|
||||||
help
|
help
|
||||||
Enable GCC Stack Smashing Protection (SSP) for userspace applications
|
Enable GCC Stack Smashing Protection (SSP) for userspace applications
|
||||||
@ -257,18 +256,15 @@ menu "Global build settings"
|
|||||||
bool "None"
|
bool "None"
|
||||||
config PKG_CC_STACKPROTECTOR_REGULAR
|
config PKG_CC_STACKPROTECTOR_REGULAR
|
||||||
bool "Regular"
|
bool "Regular"
|
||||||
select GCC_LIBSSP if !USE_MUSL
|
|
||||||
depends on KERNEL_CC_STACKPROTECTOR_REGULAR
|
depends on KERNEL_CC_STACKPROTECTOR_REGULAR
|
||||||
config PKG_CC_STACKPROTECTOR_STRONG
|
config PKG_CC_STACKPROTECTOR_STRONG
|
||||||
bool "Strong"
|
bool "Strong"
|
||||||
select GCC_LIBSSP if !USE_MUSL
|
|
||||||
depends on KERNEL_CC_STACKPROTECTOR_STRONG
|
depends on KERNEL_CC_STACKPROTECTOR_STRONG
|
||||||
endchoice
|
endchoice
|
||||||
|
|
||||||
choice
|
choice
|
||||||
prompt "Kernel space Stack-Smashing Protection"
|
prompt "Kernel space Stack-Smashing Protection"
|
||||||
default KERNEL_CC_STACKPROTECTOR_REGULAR
|
default KERNEL_CC_STACKPROTECTOR_REGULAR
|
||||||
depends on USE_MUSL || !(x86_64 || i386)
|
|
||||||
help
|
help
|
||||||
Enable GCC Stack-Smashing Protection (SSP) for the kernel
|
Enable GCC Stack-Smashing Protection (SSP) for the kernel
|
||||||
config KERNEL_CC_STACKPROTECTOR_NONE
|
config KERNEL_CC_STACKPROTECTOR_NONE
|
||||||
|
|||||||
@ -5,7 +5,7 @@
|
|||||||
# See /LICENSE for more information.
|
# See /LICENSE for more information.
|
||||||
#
|
#
|
||||||
|
|
||||||
PKG_DEFAULT_DEPENDS = +libc +GCC_LIBSSP:libssp +USE_GLIBC:librt +USE_GLIBC:libpthread
|
PKG_DEFAULT_DEPENDS = +libc +USE_GLIBC:librt +USE_GLIBC:libpthread
|
||||||
|
|
||||||
ifneq ($(PKG_NAME),toolchain)
|
ifneq ($(PKG_NAME),toolchain)
|
||||||
PKG_FIXUP_DEPENDS = $(if $(filter kmod-%,$(1)),$(2),$(PKG_DEFAULT_DEPENDS) $(filter-out $(PKG_DEFAULT_DEPENDS),$(2)))
|
PKG_FIXUP_DEPENDS = $(if $(filter kmod-%,$(1)),$(2),$(PKG_DEFAULT_DEPENDS) $(filter-out $(PKG_DEFAULT_DEPENDS),$(2)))
|
||||||
|
|||||||
@ -12,7 +12,7 @@ include $(INCLUDE_DIR)/version.mk
|
|||||||
include $(INCLUDE_DIR)/feeds.mk
|
include $(INCLUDE_DIR)/feeds.mk
|
||||||
|
|
||||||
PKG_NAME:=base-files
|
PKG_NAME:=base-files
|
||||||
PKG_RELEASE:=222
|
PKG_RELEASE:=223
|
||||||
PKG_FLAGS:=nonshared
|
PKG_FLAGS:=nonshared
|
||||||
|
|
||||||
PKG_FILE_DEPENDS:=$(PLATFORM_DIR)/ $(GENERIC_PLATFORM_DIR)/base-files/
|
PKG_FILE_DEPENDS:=$(PLATFORM_DIR)/ $(GENERIC_PLATFORM_DIR)/base-files/
|
||||||
|
|||||||
@ -16,7 +16,15 @@ load_gpio_switch()
|
|||||||
config_get name "$1" name
|
config_get name "$1" name
|
||||||
config_get value "$1" value 0
|
config_get value "$1" value 0
|
||||||
|
|
||||||
local gpio_path="/sys/class/gpio/gpio${gpio_pin}"
|
[ -z "$gpio_pin" ] && {
|
||||||
|
echo >&2 "Skipping gpio_switch '$name' due to missing gpio_pin"
|
||||||
|
return 1
|
||||||
|
}
|
||||||
|
|
||||||
|
local gpio_path
|
||||||
|
if [ -n "$(echo "$gpio_pin" | grep -E "^[0-9]+$")" ]; then
|
||||||
|
gpio_path="/sys/class/gpio/gpio${gpio_pin}"
|
||||||
|
|
||||||
# export GPIO pin for access
|
# export GPIO pin for access
|
||||||
[ -d "$gpio_path" ] || {
|
[ -d "$gpio_path" ] || {
|
||||||
echo "$gpio_pin" >/sys/class/gpio/export
|
echo "$gpio_pin" >/sys/class/gpio/export
|
||||||
@ -28,9 +36,19 @@ load_gpio_switch()
|
|||||||
# direction of a GPIO
|
# direction of a GPIO
|
||||||
if [ -e "${gpio_path}/direction" ]; then
|
if [ -e "${gpio_path}/direction" ]; then
|
||||||
# set the pin to output with high or low pin value
|
# set the pin to output with high or low pin value
|
||||||
{ [ "$value" = "0" ] && echo "low" || echo "high"; } >"$gpio_path/direction"
|
{ [ "$value" = "0" ] && echo "low" || echo "high"; } \
|
||||||
|
>"$gpio_path/direction"
|
||||||
else
|
else
|
||||||
{ [ "$value" = "0" ] && echo "0" || echo "1"; } >"$gpio_path/value"
|
{ [ "$value" = "0" ] && echo "0" || echo "1"; } \
|
||||||
|
>"$gpio_path/value"
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
gpio_path="/sys/class/gpio/${gpio_pin}"
|
||||||
|
|
||||||
|
[ -d "$gpio_path" ] && {
|
||||||
|
{ [ "$value" = "0" ] && echo "0" || echo "1"; } \
|
||||||
|
>"$gpio_path/value"
|
||||||
|
}
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -573,7 +573,7 @@ ucidef_add_gpio_switch() {
|
|||||||
json_select_object gpioswitch
|
json_select_object gpioswitch
|
||||||
json_select_object "$cfg"
|
json_select_object "$cfg"
|
||||||
json_add_string name "$name"
|
json_add_string name "$name"
|
||||||
json_add_int pin "$pin"
|
json_add_string pin "$pin"
|
||||||
json_add_int default "$default"
|
json_add_int default "$default"
|
||||||
json_select ..
|
json_select ..
|
||||||
json_select ..
|
json_select ..
|
||||||
|
|||||||
@ -7,6 +7,7 @@ PKG_CONFIG_DEPENDS += \
|
|||||||
CONFIG_PACKAGE_ATH_DFS \
|
CONFIG_PACKAGE_ATH_DFS \
|
||||||
CONFIG_PACKAGE_ATH_SPECTRAL \
|
CONFIG_PACKAGE_ATH_SPECTRAL \
|
||||||
CONFIG_PACKAGE_ATH_DYNACK \
|
CONFIG_PACKAGE_ATH_DYNACK \
|
||||||
|
CONFIG_ATH9K_HWRNG \
|
||||||
CONFIG_ATH9K_SUPPORT_PCOEM \
|
CONFIG_ATH9K_SUPPORT_PCOEM \
|
||||||
CONFIG_ATH9K_TX99 \
|
CONFIG_ATH9K_TX99 \
|
||||||
CONFIG_ATH10K_LEDS \
|
CONFIG_ATH10K_LEDS \
|
||||||
@ -44,6 +45,7 @@ config-$(CONFIG_TARGET_ath79) += ATH9K_AHB
|
|||||||
config-$(CONFIG_TARGET_ipq40xx) += ATH10K_AHB
|
config-$(CONFIG_TARGET_ipq40xx) += ATH10K_AHB
|
||||||
config-$(CONFIG_PCI) += ATH9K_PCI
|
config-$(CONFIG_PCI) += ATH9K_PCI
|
||||||
config-$(CONFIG_ATH_USER_REGD) += ATH_USER_REGD
|
config-$(CONFIG_ATH_USER_REGD) += ATH_USER_REGD
|
||||||
|
config-$(CONFIG_ATH9K_HWRNG) += ATH9K_HWRNG
|
||||||
config-$(CONFIG_ATH9K_SUPPORT_PCOEM) += ATH9K_PCOEM
|
config-$(CONFIG_ATH9K_SUPPORT_PCOEM) += ATH9K_PCOEM
|
||||||
config-$(CONFIG_ATH9K_TX99) += ATH9K_TX99
|
config-$(CONFIG_ATH9K_TX99) += ATH9K_TX99
|
||||||
config-$(CONFIG_ATH9K_UBNTHSR) += ATH9K_UBNTHSR
|
config-$(CONFIG_ATH9K_UBNTHSR) += ATH9K_UBNTHSR
|
||||||
@ -207,6 +209,12 @@ endef
|
|||||||
|
|
||||||
define KernelPackage/ath9k/config
|
define KernelPackage/ath9k/config
|
||||||
|
|
||||||
|
config ATH9K_HWRNG
|
||||||
|
bool "Add wireless noise as source of randomness to kernel entropy pool"
|
||||||
|
depends on PACKAGE_kmod-ath9k
|
||||||
|
select PACKAGE_kmod-random-core
|
||||||
|
default n
|
||||||
|
|
||||||
config ATH9K_SUPPORT_PCOEM
|
config ATH9K_SUPPORT_PCOEM
|
||||||
bool "Support chips used in PC OEM cards"
|
bool "Support chips used in PC OEM cards"
|
||||||
depends on PACKAGE_kmod-ath9k
|
depends on PACKAGE_kmod-ath9k
|
||||||
|
|||||||
@ -83,33 +83,6 @@ define Package/libatomic/config
|
|||||||
endmenu
|
endmenu
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/libssp
|
|
||||||
$(call Package/gcc/Default)
|
|
||||||
DEPENDS+=@GCC_LIBSSP
|
|
||||||
TITLE:=GCC support library
|
|
||||||
endef
|
|
||||||
|
|
||||||
define Package/libssp/config
|
|
||||||
menu "Configuration"
|
|
||||||
depends on EXTERNAL_TOOLCHAIN && PACKAGE_libssp
|
|
||||||
|
|
||||||
config LIBSSP_ROOT_DIR
|
|
||||||
string
|
|
||||||
prompt "libssp shared library base directory"
|
|
||||||
depends on EXTERNAL_TOOLCHAIN && PACKAGE_libssp
|
|
||||||
default TOOLCHAIN_ROOT if !NATIVE_TOOLCHAIN
|
|
||||||
default "/" if NATIVE_TOOLCHAIN
|
|
||||||
|
|
||||||
config LIBSSP_FILE_SPEC
|
|
||||||
string
|
|
||||||
prompt "libssp shared library files (use wildcards)"
|
|
||||||
depends on EXTERNAL_TOOLCHAIN && PACKAGE_libssp
|
|
||||||
default "./lib/libssp.so.*"
|
|
||||||
|
|
||||||
endmenu
|
|
||||||
endef
|
|
||||||
|
|
||||||
|
|
||||||
define Package/libstdcpp
|
define Package/libstdcpp
|
||||||
$(call Package/gcc/Default)
|
$(call Package/gcc/Default)
|
||||||
NAME:=libstdc++
|
NAME:=libstdc++
|
||||||
@ -519,11 +492,6 @@ ifeq ($(CONFIG_EXTERNAL_TOOLCHAIN),)
|
|||||||
$(CP) $(TOOLCHAIN_DIR)/lib/libgfortran.so.* $(1)/usr/lib/
|
$(CP) $(TOOLCHAIN_DIR)/lib/libgfortran.so.* $(1)/usr/lib/
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/libssp/install
|
|
||||||
$(INSTALL_DIR) $(1)/lib
|
|
||||||
$(CP) $(TOOLCHAIN_DIR)/lib/libssp.so.* $(1)/lib/
|
|
||||||
endef
|
|
||||||
|
|
||||||
define Package/libstdcpp/install
|
define Package/libstdcpp/install
|
||||||
$(INSTALL_DIR) $(1)/usr/lib
|
$(INSTALL_DIR) $(1)/usr/lib
|
||||||
$(CP) $(TOOLCHAIN_DIR)/lib/libstdc++.so.* $(1)/usr/lib/
|
$(CP) $(TOOLCHAIN_DIR)/lib/libstdc++.so.* $(1)/usr/lib/
|
||||||
@ -646,6 +614,7 @@ ifeq ($(CONFIG_EXTERNAL_TOOLCHAIN),)
|
|||||||
define Package/ldd/install
|
define Package/ldd/install
|
||||||
$(INSTALL_DIR) $(1)/usr/bin/
|
$(INSTALL_DIR) $(1)/usr/bin/
|
||||||
$(CP) $(TOOLCHAIN_DIR)/bin/ldd $(1)/usr/bin/
|
$(CP) $(TOOLCHAIN_DIR)/bin/ldd $(1)/usr/bin/
|
||||||
|
sed -i 's,^#!.*,#!/bin/sh,' $(1)/usr/bin/ldd
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/ldconfig/install
|
define Package/ldconfig/install
|
||||||
@ -670,14 +639,6 @@ else
|
|||||||
done
|
done
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/libssp/install
|
|
||||||
for file in $(call qstrip,$(CONFIG_LIBSSP_FILE_SPEC)); do \
|
|
||||||
$(INSTALL_DIR) $(1)/lib ; \
|
|
||||||
$(CP) $(call qstrip,$(CONFIG_LIBSSP_ROOT_DIR))/$$$$file $(1)/lib/ ; \
|
|
||||||
done ; \
|
|
||||||
exit 0
|
|
||||||
endef
|
|
||||||
|
|
||||||
define Package/libstdcpp/install
|
define Package/libstdcpp/install
|
||||||
for file in $(call qstrip,$(CONFIG_LIBSTDCPP_FILE_SPEC)); do \
|
for file in $(call qstrip,$(CONFIG_LIBSTDCPP_FILE_SPEC)); do \
|
||||||
$(INSTALL_DIR) $(1)/lib ; \
|
$(INSTALL_DIR) $(1)/lib ; \
|
||||||
@ -789,7 +750,6 @@ endif
|
|||||||
$(eval $(call BuildPackage,libc))
|
$(eval $(call BuildPackage,libc))
|
||||||
$(eval $(call BuildPackage,libgcc))
|
$(eval $(call BuildPackage,libgcc))
|
||||||
$(eval $(call BuildPackage,libatomic))
|
$(eval $(call BuildPackage,libatomic))
|
||||||
$(eval $(call BuildPackage,libssp))
|
|
||||||
$(eval $(call BuildPackage,libstdcpp))
|
$(eval $(call BuildPackage,libstdcpp))
|
||||||
$(eval $(call BuildPackage,libasan))
|
$(eval $(call BuildPackage,libasan))
|
||||||
$(eval $(call BuildPackage,libtsan))
|
$(eval $(call BuildPackage,libtsan))
|
||||||
|
|||||||
@ -5,9 +5,9 @@ PKG_RELEASE=1
|
|||||||
|
|
||||||
PKG_SOURCE_PROTO:=git
|
PKG_SOURCE_PROTO:=git
|
||||||
PKG_SOURCE_URL=$(PROJECT_GIT)/project/uclient.git
|
PKG_SOURCE_URL=$(PROJECT_GIT)/project/uclient.git
|
||||||
PKG_MIRROR_HASH:=8b71b02feb721ec0ed9cd7fe6761aa6a40216563a294d04243779ebe98891355
|
PKG_MIRROR_HASH:=05962d4edbe7b856e017d974c3d7e34dfa5f905821ab7a3534acc5886af4e5c7
|
||||||
PKG_SOURCE_DATE:=2020-02-15
|
PKG_SOURCE_DATE:=2020-06-17
|
||||||
PKG_SOURCE_VERSION:=af585dbd1d444faafa370a73c1db43aece731f85
|
PKG_SOURCE_VERSION:=c66098611f16806a936a3a3f92113a16382fc4d9
|
||||||
CMAKE_INSTALL:=1
|
CMAKE_INSTALL:=1
|
||||||
|
|
||||||
PKG_BUILD_DEPENDS:=ustream-ssl
|
PKG_BUILD_DEPENDS:=ustream-ssl
|
||||||
|
|||||||
@ -284,16 +284,16 @@
|
|||||||
ifdef CONFIG_CODE_COVERAGE
|
ifdef CONFIG_CODE_COVERAGE
|
||||||
CFLAGS += -O0 -fprofile-arcs -ftest-coverage
|
CFLAGS += -O0 -fprofile-arcs -ftest-coverage
|
||||||
LIBS += -lgcov
|
LIBS += -lgcov
|
||||||
@@ -887,6 +893,9 @@ OBJS += ../src/pae/ieee802_1x_secy_ops.o
|
@@ -956,6 +962,9 @@ ifdef CONFIG_CTRL_IFACE_MIB
|
||||||
ifdef CONFIG_AP
|
CFLAGS += -DCONFIG_CTRL_IFACE_MIB
|
||||||
OBJS += ../src/ap/wpa_auth_kay.o
|
|
||||||
endif
|
endif
|
||||||
|
OBJS += ../src/ap/ctrl_iface_ap.o
|
||||||
+ifdef CONFIG_UBUS
|
+ifdef CONFIG_UBUS
|
||||||
+OBJS += ../src/ap/ubus.o
|
+OBJS += ../src/ap/ubus.o
|
||||||
+endif
|
+endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifdef CONFIG_IEEE8021X_EAPOL
|
CFLAGS += -DEAP_SERVER -DEAP_SERVER_IDENTITY
|
||||||
--- a/wpa_supplicant/wpa_supplicant.c
|
--- a/wpa_supplicant/wpa_supplicant.c
|
||||||
+++ b/wpa_supplicant/wpa_supplicant.c
|
+++ b/wpa_supplicant/wpa_supplicant.c
|
||||||
@@ -6797,6 +6797,8 @@ struct wpa_supplicant * wpa_supplicant_a
|
@@ -6797,6 +6797,8 @@ struct wpa_supplicant * wpa_supplicant_a
|
||||||
|
|||||||
@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk
|
|||||||
PKG_NAME:=openvpn
|
PKG_NAME:=openvpn
|
||||||
|
|
||||||
PKG_VERSION:=2.4.9
|
PKG_VERSION:=2.4.9
|
||||||
PKG_RELEASE:=1
|
PKG_RELEASE:=2
|
||||||
|
|
||||||
PKG_SOURCE_URL:=\
|
PKG_SOURCE_URL:=\
|
||||||
https://build.openvpn.net/downloads/releases/ \
|
https://build.openvpn.net/downloads/releases/ \
|
||||||
@ -102,6 +102,7 @@ endef
|
|||||||
|
|
||||||
define Package/openvpn-$(BUILD_VARIANT)/conffiles
|
define Package/openvpn-$(BUILD_VARIANT)/conffiles
|
||||||
/etc/config/openvpn
|
/etc/config/openvpn
|
||||||
|
/etc/openvpn.user
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/openvpn-$(BUILD_VARIANT)/install
|
define Package/openvpn-$(BUILD_VARIANT)/install
|
||||||
@ -111,7 +112,9 @@ define Package/openvpn-$(BUILD_VARIANT)/install
|
|||||||
$(1)/etc/init.d \
|
$(1)/etc/init.d \
|
||||||
$(1)/etc/config \
|
$(1)/etc/config \
|
||||||
$(1)/etc/openvpn \
|
$(1)/etc/openvpn \
|
||||||
$(1)/lib/upgrade/keep.d
|
$(1)/lib/upgrade/keep.d \
|
||||||
|
$(1)/usr/libexec \
|
||||||
|
$(1)/etc/hotplug.d/openvpn
|
||||||
|
|
||||||
$(INSTALL_BIN) \
|
$(INSTALL_BIN) \
|
||||||
$(PKG_INSTALL_DIR)/usr/sbin/openvpn \
|
$(PKG_INSTALL_DIR)/usr/sbin/openvpn \
|
||||||
@ -120,6 +123,19 @@ define Package/openvpn-$(BUILD_VARIANT)/install
|
|||||||
$(INSTALL_BIN) \
|
$(INSTALL_BIN) \
|
||||||
files/openvpn.init \
|
files/openvpn.init \
|
||||||
$(1)/etc/init.d/openvpn
|
$(1)/etc/init.d/openvpn
|
||||||
|
|
||||||
|
$(INSTALL_BIN) \
|
||||||
|
files/usr/libexec/openvpn-hotplug \
|
||||||
|
$(1)/usr/libexec/openvpn-hotplug
|
||||||
|
|
||||||
|
$(INSTALL_DATA) \
|
||||||
|
files/etc/hotplug.d/openvpn/01-user \
|
||||||
|
$(1)/etc/hotplug.d/openvpn/01-user
|
||||||
|
|
||||||
|
$(INSTALL_DATA) \
|
||||||
|
files/etc/openvpn.user \
|
||||||
|
$(1)/etc/openvpn.user
|
||||||
|
|
||||||
$(INSTALL_DATA) \
|
$(INSTALL_DATA) \
|
||||||
files/openvpn.options \
|
files/openvpn.options \
|
||||||
$(1)/usr/share/openvpn/openvpn.options
|
$(1)/usr/share/openvpn/openvpn.options
|
||||||
|
|||||||
@ -0,0 +1,32 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
get_option() {
|
||||||
|
local variable="$1"
|
||||||
|
local option="$2"
|
||||||
|
|
||||||
|
local value="$(sed -rne 's/^[ \t]*'"$option"'[ \t]+(([^ \t\\]|\\.)+)[ \t]*$/\1/p' "$config" | tail -n1 | sed -re 's/\\(.)/\1/g')"
|
||||||
|
[ -n "$value" ] || value="$(sed -rne 's/^[ \t]*'"$option"'[ \t]+'"'([^']+)'"'[ \t]*$/\1/p' "$config" | tail -n1)"
|
||||||
|
[ -n "$value" ] || value="$(sed -rne 's/^[ \t]*'"$option"'[ \t]+"(([^"\\]|\\.)+)"[ \t]*$/\1/p' "$config" | tail -n1 | sed -re 's/\\(.)/\1/g')"
|
||||||
|
[ -n "$value" ] || return 1
|
||||||
|
|
||||||
|
export -n "$variable=$value"
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
[ -e "/etc/openvpn.user" ] && {
|
||||||
|
env -i ACTION="$ACTION" INSTANCE="$INSTANCE" \
|
||||||
|
/bin/sh \
|
||||||
|
/etc/openvpn.user \
|
||||||
|
$*
|
||||||
|
}
|
||||||
|
|
||||||
|
# Wrap user defined scripts on up/down events
|
||||||
|
case "$ACTION" in
|
||||||
|
up|down)
|
||||||
|
if get_option command "$ACTION"; then
|
||||||
|
exec /bin/sh -c "$command $ACTION $INSTANCE $*"
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
exit 0
|
||||||
11
package/network/services/openvpn/files/etc/openvpn.user
Normal file
11
package/network/services/openvpn/files/etc/openvpn.user
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
#
|
||||||
|
# This file is interpreted as shell script.
|
||||||
|
# Put your custom openvpn action here, they will
|
||||||
|
# be executed with each opevnp event.
|
||||||
|
#
|
||||||
|
# $ACTION
|
||||||
|
# <down> down action is generated after the TUN/TAP device is closed
|
||||||
|
# <up> up action is generated after the TUN/TAP device is opened
|
||||||
|
# $INSTANCE Name of the openvpn instance which went up or down
|
||||||
|
|
||||||
@ -73,13 +73,17 @@ openvpn_add_instance() {
|
|||||||
local name="$1"
|
local name="$1"
|
||||||
local dir="$2"
|
local dir="$2"
|
||||||
local conf="$3"
|
local conf="$3"
|
||||||
|
local security="$4"
|
||||||
|
|
||||||
procd_open_instance "$name"
|
procd_open_instance "$name"
|
||||||
procd_set_param command "$PROG" \
|
procd_set_param command "$PROG" \
|
||||||
--syslog "openvpn($name)" \
|
--syslog "openvpn($name)" \
|
||||||
--status "/var/run/openvpn.$name.status" \
|
--status "/var/run/openvpn.$name.status" \
|
||||||
--cd "$dir" \
|
--cd "$dir" \
|
||||||
--config "$conf"
|
--config "$conf" \
|
||||||
|
--up "/usr/libexec/openvpn-hotplug up $name" \
|
||||||
|
--down "/usr/libexec/openvpn-hotplug down $name" \
|
||||||
|
--script-security "${security:-2}"
|
||||||
procd_set_param file "$dir/$conf"
|
procd_set_param file "$dir/$conf"
|
||||||
procd_set_param term_timeout 15
|
procd_set_param term_timeout 15
|
||||||
procd_set_param respawn
|
procd_set_param respawn
|
||||||
@ -100,11 +104,14 @@ start_instance() {
|
|||||||
return 1
|
return 1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
local script_security
|
||||||
|
config_get script_security "$s" script_security
|
||||||
|
|
||||||
[ ! -d "/var/run" ] && mkdir -p "/var/run"
|
[ ! -d "/var/run" ] && mkdir -p "/var/run"
|
||||||
|
|
||||||
if [ ! -z "$config" ]; then
|
if [ ! -z "$config" ]; then
|
||||||
append UCI_STARTED "$config" "$LIST_SEP"
|
append UCI_STARTED "$config" "$LIST_SEP"
|
||||||
openvpn_add_instance "$s" "${config%/*}" "$config"
|
openvpn_add_instance "$s" "${config%/*}" "$config" "$script_security"
|
||||||
return
|
return
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -115,7 +122,7 @@ start_instance() {
|
|||||||
append_params "$s" $OPENVPN_PARAMS
|
append_params "$s" $OPENVPN_PARAMS
|
||||||
append_list "$s" $OPENVPN_LIST
|
append_list "$s" $OPENVPN_LIST
|
||||||
|
|
||||||
openvpn_add_instance "$s" "/var/etc" "openvpn-$s.conf"
|
openvpn_add_instance "$s" "/var/etc" "openvpn-$s.conf" "$script_security"
|
||||||
}
|
}
|
||||||
|
|
||||||
start_service() {
|
start_service() {
|
||||||
|
|||||||
@ -25,7 +25,6 @@ dev
|
|||||||
dev_node
|
dev_node
|
||||||
dev_type
|
dev_type
|
||||||
dh
|
dh
|
||||||
down
|
|
||||||
ecdh_curve
|
ecdh_curve
|
||||||
echo
|
echo
|
||||||
engine
|
engine
|
||||||
@ -103,7 +102,6 @@ route_metric
|
|||||||
route_pre_down
|
route_pre_down
|
||||||
route_up
|
route_up
|
||||||
rport
|
rport
|
||||||
script_security
|
|
||||||
secret
|
secret
|
||||||
server
|
server
|
||||||
server_bridge
|
server_bridge
|
||||||
@ -127,7 +125,6 @@ tran_window
|
|||||||
tun_mtu
|
tun_mtu
|
||||||
tun_mtu_extra
|
tun_mtu_extra
|
||||||
txqueuelen
|
txqueuelen
|
||||||
up
|
|
||||||
user
|
user
|
||||||
verb
|
verb
|
||||||
verify_client_cert
|
verify_client_cert
|
||||||
|
|||||||
@ -0,0 +1,10 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
ACTION=$1
|
||||||
|
shift
|
||||||
|
INSTANCE=$1
|
||||||
|
shift
|
||||||
|
|
||||||
|
export ACTION=$ACTION
|
||||||
|
export INSTANCE=$INSTANCE
|
||||||
|
exec /sbin/hotplug-call openvpn "$@"
|
||||||
@ -74,7 +74,7 @@ proto_ncm_setup() {
|
|||||||
[ -n "$delay" ] && sleep "$delay"
|
[ -n "$delay" ] && sleep "$delay"
|
||||||
|
|
||||||
manufacturer=$(gcom -d "$device" -s /etc/gcom/getcardinfo.gcom | awk 'NF && $0 !~ /AT\+CGMI/ { sub(/\+CGMI: /,""); print tolower($1); exit; }')
|
manufacturer=$(gcom -d "$device" -s /etc/gcom/getcardinfo.gcom | awk 'NF && $0 !~ /AT\+CGMI/ { sub(/\+CGMI: /,""); print tolower($1); exit; }')
|
||||||
[ $? -ne 0 ] && {
|
[ $? -ne 0 -o -z "$manufacturer" ] && {
|
||||||
echo "Failed to get modem information"
|
echo "Failed to get modem information"
|
||||||
proto_notify_error "$interface" GETINFO_FAILED
|
proto_notify_error "$interface" GETINFO_FAILED
|
||||||
return 1
|
return 1
|
||||||
@ -88,6 +88,7 @@ proto_ncm_setup() {
|
|||||||
proto_set_available "$interface" 0
|
proto_set_available "$interface" 0
|
||||||
return 1
|
return 1
|
||||||
}
|
}
|
||||||
|
|
||||||
json_get_values initialize initialize
|
json_get_values initialize initialize
|
||||||
for i in $initialize; do
|
for i in $initialize; do
|
||||||
eval COMMAND="$i" gcom -d "$device" -s /etc/gcom/runcommand.gcom || {
|
eval COMMAND="$i" gcom -d "$device" -s /etc/gcom/runcommand.gcom || {
|
||||||
@ -119,23 +120,27 @@ proto_ncm_setup() {
|
|||||||
[ -n "$mode" ] && {
|
[ -n "$mode" ] && {
|
||||||
json_select modes
|
json_select modes
|
||||||
json_get_var setmode "$mode"
|
json_get_var setmode "$mode"
|
||||||
|
[ -n "$setmode" ] && {
|
||||||
echo "Setting mode"
|
echo "Setting mode"
|
||||||
eval COMMAND="$setmode" gcom -d "$device" -s /etc/gcom/runcommand.gcom || {
|
eval COMMAND="$setmode" gcom -d "$device" -s /etc/gcom/runcommand.gcom || {
|
||||||
echo "Failed to set operating mode"
|
echo "Failed to set operating mode"
|
||||||
proto_notify_error "$interface" SETMODE_FAILED
|
proto_notify_error "$interface" SETMODE_FAILED
|
||||||
return 1
|
return 1
|
||||||
}
|
}
|
||||||
|
}
|
||||||
json_select ..
|
json_select ..
|
||||||
}
|
}
|
||||||
|
|
||||||
echo "Starting network $interface"
|
echo "Starting network $interface"
|
||||||
json_get_vars connect
|
json_get_vars connect
|
||||||
|
[ -n "$connect" ] && {
|
||||||
echo "Connecting modem"
|
echo "Connecting modem"
|
||||||
eval COMMAND="$connect" gcom -d "$device" -s /etc/gcom/runcommand.gcom || {
|
eval COMMAND="$connect" gcom -d "$device" -s /etc/gcom/runcommand.gcom || {
|
||||||
echo "Failed to connect"
|
echo "Failed to connect"
|
||||||
proto_notify_error "$interface" CONNECT_FAILED
|
proto_notify_error "$interface" CONNECT_FAILED
|
||||||
return 1
|
return 1
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
json_get_vars finalize
|
json_get_vars finalize
|
||||||
|
|
||||||
@ -182,7 +187,6 @@ proto_ncm_setup() {
|
|||||||
return 1
|
return 1
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
proto_ncm_teardown() {
|
proto_ncm_teardown() {
|
||||||
@ -195,6 +199,20 @@ proto_ncm_teardown() {
|
|||||||
|
|
||||||
[ -n "$ctl_device" ] && device=$ctl_device
|
[ -n "$ctl_device" ] && device=$ctl_device
|
||||||
|
|
||||||
|
[ -n "$device" ] || {
|
||||||
|
echo "No control device specified"
|
||||||
|
proto_notify_error "$interface" NO_DEVICE
|
||||||
|
proto_set_available "$interface" 0
|
||||||
|
return 1
|
||||||
|
}
|
||||||
|
|
||||||
|
device="$(readlink -f $device)"
|
||||||
|
[ -e "$device" ] || {
|
||||||
|
echo "Control device not valid"
|
||||||
|
proto_set_available "$interface" 0
|
||||||
|
return 1
|
||||||
|
}
|
||||||
|
|
||||||
[ -n "$profile" ] || profile=1
|
[ -n "$profile" ] || profile=1
|
||||||
|
|
||||||
echo "Stopping network $interface"
|
echo "Stopping network $interface"
|
||||||
@ -202,6 +220,16 @@ proto_ncm_teardown() {
|
|||||||
json_load "$(ubus call network.interface.$interface status)"
|
json_load "$(ubus call network.interface.$interface status)"
|
||||||
json_select data
|
json_select data
|
||||||
json_get_vars manufacturer
|
json_get_vars manufacturer
|
||||||
|
[ $? -ne 0 -o -z "$manufacturer" ] && {
|
||||||
|
# Fallback to direct detect, for proper handle device replug.
|
||||||
|
manufacturer=$(gcom -d "$device" -s /etc/gcom/getcardinfo.gcom | awk 'NF && $0 !~ /AT\+CGMI/ { sub(/\+CGMI: /,""); print tolower($1); exit; }')
|
||||||
|
[ $? -ne 0 -o -z "$manufacturer" ] && {
|
||||||
|
echo "Failed to get modem information"
|
||||||
|
proto_notify_error "$interface" GETINFO_FAILED
|
||||||
|
return 1
|
||||||
|
}
|
||||||
|
json_add_string "manufacturer" "$manufacturer"
|
||||||
|
}
|
||||||
|
|
||||||
json_load "$(cat /etc/gcom/ncm.json)"
|
json_load "$(cat /etc/gcom/ncm.json)"
|
||||||
json_select "$manufacturer" || {
|
json_select "$manufacturer" || {
|
||||||
@ -211,11 +239,13 @@ proto_ncm_teardown() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
json_get_vars disconnect
|
json_get_vars disconnect
|
||||||
|
[ -n "$disconnect" ] && {
|
||||||
eval COMMAND="$disconnect" gcom -d "$device" -s /etc/gcom/runcommand.gcom || {
|
eval COMMAND="$disconnect" gcom -d "$device" -s /etc/gcom/runcommand.gcom || {
|
||||||
echo "Failed to disconnect"
|
echo "Failed to disconnect"
|
||||||
proto_notify_error "$interface" DISCONNECT_FAILED
|
proto_notify_error "$interface" DISCONNECT_FAILED
|
||||||
return 1
|
return 1
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
proto_init_update "*" 0
|
proto_init_update "*" 0
|
||||||
proto_send_update "$interface"
|
proto_send_update "$interface"
|
||||||
|
|||||||
@ -139,6 +139,7 @@ CONFIG_MDIO_BUS=y
|
|||||||
CONFIG_MDIO_DEVICE=y
|
CONFIG_MDIO_DEVICE=y
|
||||||
CONFIG_MDIO_GPIO=y
|
CONFIG_MDIO_GPIO=y
|
||||||
CONFIG_MEMFD_CREATE=y
|
CONFIG_MEMFD_CREATE=y
|
||||||
|
# CONFIG_MFD_RB4XX_CPLD is not set
|
||||||
CONFIG_MFD_SYSCON=y
|
CONFIG_MFD_SYSCON=y
|
||||||
CONFIG_MIGRATION=y
|
CONFIG_MIGRATION=y
|
||||||
CONFIG_MIPS=y
|
CONFIG_MIPS=y
|
||||||
|
|||||||
@ -148,6 +148,7 @@ CONFIG_MDIO_BUS=y
|
|||||||
CONFIG_MDIO_DEVICE=y
|
CONFIG_MDIO_DEVICE=y
|
||||||
CONFIG_MDIO_GPIO=y
|
CONFIG_MDIO_GPIO=y
|
||||||
CONFIG_MEMFD_CREATE=y
|
CONFIG_MEMFD_CREATE=y
|
||||||
|
# CONFIG_MFD_RB4XX_CPLD is not set
|
||||||
CONFIG_MFD_SYSCON=y
|
CONFIG_MFD_SYSCON=y
|
||||||
CONFIG_MIGRATION=y
|
CONFIG_MIGRATION=y
|
||||||
CONFIG_MIPS=y
|
CONFIG_MIPS=y
|
||||||
|
|||||||
@ -110,3 +110,7 @@
|
|||||||
|
|
||||||
mtd-mac-address = <&info 0x8>;
|
mtd-mac-address = <&info 0x8>;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
ð1 {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|||||||
@ -30,7 +30,5 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
ð1 {
|
ð1 {
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
compatible = "syscon", "simple-mfd";
|
compatible = "syscon", "simple-mfd";
|
||||||
};
|
};
|
||||||
|
|||||||
@ -41,7 +41,5 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
ð1 {
|
ð1 {
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
compatible = "syscon", "simple-mfd";
|
compatible = "syscon", "simple-mfd";
|
||||||
};
|
};
|
||||||
|
|||||||
@ -61,8 +61,6 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
ð1 {
|
ð1 {
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
mtd-mac-address = <&info 0x8>;
|
mtd-mac-address = <&info 0x8>;
|
||||||
|
|
||||||
gmac-config {
|
gmac-config {
|
||||||
|
|||||||
@ -110,7 +110,6 @@ CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y
|
|||||||
CONFIG_HW_HAS_PCI=y
|
CONFIG_HW_HAS_PCI=y
|
||||||
CONFIG_HW_RANDOM=y
|
CONFIG_HW_RANDOM=y
|
||||||
CONFIG_HZ=250
|
CONFIG_HZ=250
|
||||||
# CONFIG_HZ_100 is not set
|
|
||||||
CONFIG_HZ_250=y
|
CONFIG_HZ_250=y
|
||||||
CONFIG_HZ_PERIODIC=y
|
CONFIG_HZ_PERIODIC=y
|
||||||
CONFIG_INITRAMFS_SOURCE=""
|
CONFIG_INITRAMFS_SOURCE=""
|
||||||
|
|||||||
@ -119,7 +119,6 @@ CONFIG_HAVE_SYSCALL_TRACEPOINTS=y
|
|||||||
CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y
|
CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y
|
||||||
CONFIG_HW_RANDOM=y
|
CONFIG_HW_RANDOM=y
|
||||||
CONFIG_HZ=250
|
CONFIG_HZ=250
|
||||||
# CONFIG_HZ_100 is not set
|
|
||||||
CONFIG_HZ_250=y
|
CONFIG_HZ_250=y
|
||||||
CONFIG_HZ_PERIODIC=y
|
CONFIG_HZ_PERIODIC=y
|
||||||
CONFIG_INITRAMFS_SOURCE=""
|
CONFIG_INITRAMFS_SOURCE=""
|
||||||
|
|||||||
@ -284,7 +284,7 @@ config USE_MUSL
|
|||||||
bool
|
bool
|
||||||
|
|
||||||
config SSP_SUPPORT
|
config SSP_SUPPORT
|
||||||
default y if USE_MUSL || GCC_LIBSSP
|
default y if !PKG_CC_STACKPROTECTOR_NONE
|
||||||
bool
|
bool
|
||||||
|
|
||||||
config USE_EXTERNAL_LIBC
|
config USE_EXTERNAL_LIBC
|
||||||
|
|||||||
@ -47,14 +47,6 @@ config GCC_DEFAULT_SSP
|
|||||||
help
|
help
|
||||||
Use gcc configure option --enable-default-ssp to turn on -fstack-protector-strong by default.
|
Use gcc configure option --enable-default-ssp to turn on -fstack-protector-strong by default.
|
||||||
|
|
||||||
config GCC_LIBSSP
|
|
||||||
bool
|
|
||||||
prompt "Build gcc libssp" if TOOLCHAINOPTS
|
|
||||||
depends on !USE_MUSL
|
|
||||||
default y if !USE_MUSL
|
|
||||||
help
|
|
||||||
Enable Stack-Smashing Protection support
|
|
||||||
|
|
||||||
config SJLJ_EXCEPTIONS
|
config SJLJ_EXCEPTIONS
|
||||||
bool
|
bool
|
||||||
prompt "Use setjump()/longjump() exceptions" if TOOLCHAINOPTS
|
prompt "Use setjump()/longjump() exceptions" if TOOLCHAINOPTS
|
||||||
|
|||||||
@ -104,6 +104,7 @@ GCC_CONFIGURE:= \
|
|||||||
--disable-multilib \
|
--disable-multilib \
|
||||||
--disable-libmpx \
|
--disable-libmpx \
|
||||||
--disable-nls \
|
--disable-nls \
|
||||||
|
--disable-libssp \
|
||||||
$(GRAPHITE_CONFIGURE) \
|
$(GRAPHITE_CONFIGURE) \
|
||||||
--with-host-libstdcxx=-lstdc++ \
|
--with-host-libstdcxx=-lstdc++ \
|
||||||
$(SOFT_FLOAT_CONFIG_OPTION) \
|
$(SOFT_FLOAT_CONFIG_OPTION) \
|
||||||
@ -131,14 +132,6 @@ ifneq ($(CONFIG_GCC_DEFAULT_SSP),)
|
|||||||
--enable-default-ssp
|
--enable-default-ssp
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifneq ($(CONFIG_GCC_LIBSSP),)
|
|
||||||
GCC_CONFIGURE+= \
|
|
||||||
--enable-libssp
|
|
||||||
else
|
|
||||||
GCC_CONFIGURE+= \
|
|
||||||
--disable-libssp
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifneq ($(CONFIG_EXTRA_TARGET_ARCH),)
|
ifneq ($(CONFIG_EXTRA_TARGET_ARCH),)
|
||||||
GCC_CONFIGURE+= \
|
GCC_CONFIGURE+= \
|
||||||
--enable-biarch \
|
--enable-biarch \
|
||||||
|
|||||||
@ -39,7 +39,6 @@ ifeq ($(ARCH),mips64)
|
|||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
||||||
# -Os miscompiles w. 2.24 gcc5/gcc6
|
# -Os miscompiles w. 2.24 gcc5/gcc6
|
||||||
# only -O2 tested by upstream changeset
|
# only -O2 tested by upstream changeset
|
||||||
# "Optimize i386 syscall inlining for GCC 5"
|
# "Optimize i386 syscall inlining for GCC 5"
|
||||||
@ -61,6 +60,8 @@ GLIBC_CONFIGURE:= \
|
|||||||
--without-cvs \
|
--without-cvs \
|
||||||
--enable-add-ons \
|
--enable-add-ons \
|
||||||
--$(if $(CONFIG_SOFT_FLOAT),without,with)-fp \
|
--$(if $(CONFIG_SOFT_FLOAT),without,with)-fp \
|
||||||
|
$(if $(CONFIG_PKG_CC_STACKPROTECTOR_REGULAR),--enable-stack-protector=yes) \
|
||||||
|
$(if $(CONFIG_PKG_CC_STACKPROTECTOR_STRONG),--enable-stack-protector=strong) \
|
||||||
--enable-kernel=4.14.0
|
--enable-kernel=4.14.0
|
||||||
|
|
||||||
export libc_cv_ssp=no
|
export libc_cv_ssp=no
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user