mirror of
https://github.com/Ysurac/openmptcprouter-feeds.git
synced 2025-03-09 15:40:03 +00:00
Merge branch 'test' into develop
This commit is contained in:
commit
c7d4d85170
20 changed files with 709 additions and 143 deletions
4
.github/workflows/main.yml
vendored
Executable file → Normal file
4
.github/workflows/main.yml
vendored
Executable file → Normal file
|
@ -8,8 +8,8 @@ jobs:
|
||||||
build:
|
build:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
OMR_TARGET: [bpi-r1, bpi-r2, bpi-r64, rpi2, rpi4, wrt32x, espressobin, r2s, rpi3, wrt3200acm, cm520-79f, x86_64, ubnt-erx, r4s, r7800, rutx, l1000, zbt4019]
|
OMR_TARGET: [bpi-r1, bpi-r2, bpi-r64, rpi2, rpi4, wrt32x, espressobin, r2s, rpi3, wrt3200acm, x86, x86_64, ubnt-erx, r4s, r7800, rutx, r5s, l1000, zbt4019]
|
||||||
OMR_KERNEL: [5.4, 5.15]
|
OMR_KERNEL: [5.4, 5.15, 6.1]
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
|
|
||||||
|
|
109
fast-classifier/Makefile
Normal file
109
fast-classifier/Makefile
Normal file
|
@ -0,0 +1,109 @@
|
||||||
|
#
|
||||||
|
# Copyright (c) 2013-2018 The Linux Foundation. All rights reserved.
|
||||||
|
# Permission to use, copy, modify, and/or distribute this software for
|
||||||
|
# any purpose with or without fee is hereby granted, provided that the
|
||||||
|
# above copyright notice and this permission notice appear in all copies.
|
||||||
|
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
||||||
|
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
||||||
|
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
||||||
|
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
||||||
|
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
||||||
|
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
|
||||||
|
# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||||
|
#
|
||||||
|
|
||||||
|
include $(TOPDIR)/rules.mk
|
||||||
|
include $(INCLUDE_DIR)/kernel.mk
|
||||||
|
|
||||||
|
PKG_NAME:=fast-classifier
|
||||||
|
PKG_RELEASE:=6
|
||||||
|
|
||||||
|
include $(INCLUDE_DIR)/package.mk
|
||||||
|
|
||||||
|
define KernelPackage/fast-classifier/Default
|
||||||
|
SECTION:=kernel
|
||||||
|
CATEGORY:=Kernel modules
|
||||||
|
SUBMENU:=Network Support
|
||||||
|
DEPENDS:=+kmod-ipt-conntrack +kmod-shortcut-fe
|
||||||
|
TITLE:=Kernel driver for FAST Classifier
|
||||||
|
FILES:=$(PKG_BUILD_DIR)/fast-classifier.ko
|
||||||
|
KCONFIG:= \
|
||||||
|
CONFIG_NF_CONNTRACK_EVENTS=y \
|
||||||
|
CONFIG_NF_CONNTRACK_CHAIN_EVENTS=y \
|
||||||
|
CONFIG_NF_CONNTRACK_MARK=y \
|
||||||
|
CONFIG_XFRM=y
|
||||||
|
CONFLICTS:=kmod-shortcut-fe-drv kmod-shortcut-fe-cm
|
||||||
|
endef
|
||||||
|
|
||||||
|
define KernelPackage/fast-classifier
|
||||||
|
$(call KernelPackage/fast-classifier/Default)
|
||||||
|
endef
|
||||||
|
|
||||||
|
define KernelPackage/fast-classifier-noload
|
||||||
|
$(call KernelPackage/fast-classifier/Default)
|
||||||
|
endef
|
||||||
|
|
||||||
|
define KernelPackage/fast-classifier/Default/description
|
||||||
|
FAST Classifier talks to SFE to make decisions about offloading connections
|
||||||
|
endef
|
||||||
|
|
||||||
|
define KernelPackage/fast-classifier/description
|
||||||
|
$(call KernelPackage/fast-classifier/Default/description)
|
||||||
|
endef
|
||||||
|
|
||||||
|
define KernelPackage/fast-classifier-noload/description
|
||||||
|
$(call KernelPackage/fast-classifier/Default/description)
|
||||||
|
|
||||||
|
This package does not load fast-classifier at boot by default
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Package/fast-classifier-example
|
||||||
|
TITLE:=Example user space program for fast-classifier
|
||||||
|
DEPENDS:=+libnl +kmod-fast-classifier
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Package/fast-classifier-example/description
|
||||||
|
Example user space program that communicates with fast
|
||||||
|
classifier kernel module
|
||||||
|
endef
|
||||||
|
|
||||||
|
HAVE_ECM:=$(CONFIG_PACKAGE_kmod-qca-nss-ecm-premium)$(CONFIG_PACKAGE_kmod-qca-nss-ecm-noload)$(CONFIG_PACKAGE_kmod-qca-nss-ecm-premium-noload)$(CONFIG_PACKAGE_kmod-qca-nss-ecm-standard)
|
||||||
|
|
||||||
|
define Build/Compile/kmod
|
||||||
|
+$(MAKE) $(PKG_JOBS) -C "$(LINUX_DIR)" \
|
||||||
|
$(KERNEL_MAKE_FLAGS) \
|
||||||
|
$(PKG_MAKE_FLAGS) \
|
||||||
|
M="$(PKG_BUILD_DIR)" \
|
||||||
|
CONFIG_FAST_CLASSIFIER=m \
|
||||||
|
EXTRA_CFLAGS+="-DSFE_SUPPORT_IPV6" \
|
||||||
|
$(if $(HAVE_ECM),EXTRA_CFLAGS+="-DCONFIG_SFE_ECM" CONFIG_SFE_ECM=y,) \
|
||||||
|
modules
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Build/Compile/example
|
||||||
|
$(TARGET_CC) -o $(PKG_BUILD_DIR)/userspace_fast_classifier \
|
||||||
|
-I $(PKG_BUILD_DIR) \
|
||||||
|
-I$(STAGING_DIR)/usr/include/libnl \
|
||||||
|
-I$(STAGING_DIR)/usr/include/libnl3 \
|
||||||
|
-lnl-genl-3 -lnl-3 \
|
||||||
|
$(PKG_BUILD_DIR)/nl_classifier_test.c
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Build/Compile
|
||||||
|
$(Build/Compile/kmod)
|
||||||
|
$(if $(CONFIG_PACKAGE_fast-classifier-example),$(Build/Compile/example))
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Build/InstallDev
|
||||||
|
$(INSTALL_DIR) $(1)/usr/include
|
||||||
|
$(CP) $(PKG_BUILD_DIR)/fast-classifier.h $(1)/usr/include/
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Package/fast-classifier-example/install
|
||||||
|
$(INSTALL_DIR) $(1)/sbin
|
||||||
|
$(CP) $(PKG_BUILD_DIR)/userspace_fast_classifier $(1)/sbin/
|
||||||
|
endef
|
||||||
|
|
||||||
|
$(eval $(call KernelPackage,fast-classifier))
|
||||||
|
#$(eval $(call KernelPackage,fast-classifier-noload))
|
||||||
|
#$(eval $(call BuildPackage,fast-classifier-example))
|
62
fullconenat/Makefile
Normal file
62
fullconenat/Makefile
Normal file
|
@ -0,0 +1,62 @@
|
||||||
|
#
|
||||||
|
# Copyright (C) 2022 Chion Tang <tech@chionlab.moe>
|
||||||
|
#
|
||||||
|
# This is free software, licensed under the GNU General Public License v2.
|
||||||
|
# See /LICENSE for more information.
|
||||||
|
#
|
||||||
|
|
||||||
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
|
PKG_NAME:=fullconenat
|
||||||
|
PKG_RELEASE:=9
|
||||||
|
|
||||||
|
PKG_SOURCE_DATE:=2022-02-13
|
||||||
|
PKG_SOURCE_PROTO:=git
|
||||||
|
PKG_SOURCE_URL:=https://github.com/llccd/netfilter-full-cone-nat.git
|
||||||
|
PKG_SOURCE_VERSION:=108a36cbdca17e68c9e6e7fd5e26156a88f738e8
|
||||||
|
PKG_MIRROR_HASH:=00d749235271dee194dcd23c22e6e85207ea90192a62a110b2af0b4e4de1971f
|
||||||
|
|
||||||
|
PKG_LICENSE:=GPL-2.0
|
||||||
|
PKG_LICENSE_FILES:=LICENSE
|
||||||
|
PKG_MAINTAINER:=Chion Tang <tech@chionlab.moe>
|
||||||
|
|
||||||
|
include $(INCLUDE_DIR)/kernel.mk
|
||||||
|
include $(INCLUDE_DIR)/package.mk
|
||||||
|
|
||||||
|
define Package/iptables-mod-fullconenat
|
||||||
|
SUBMENU:=Firewall
|
||||||
|
SECTION:=net
|
||||||
|
CATEGORY:=Network
|
||||||
|
TITLE:=FULLCONENAT iptables extension
|
||||||
|
DEPENDS:=+iptables +kmod-ipt-fullconenat
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Package/iptables-mod-fullconenat/install
|
||||||
|
$(INSTALL_DIR) $(1)/usr/lib/iptables
|
||||||
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/libipt_FULLCONENAT.so $(1)/usr/lib/iptables
|
||||||
|
endef
|
||||||
|
|
||||||
|
define KernelPackage/ipt-fullconenat
|
||||||
|
SUBMENU:=Netfilter Extensions
|
||||||
|
TITLE:=FULLCONENAT netfilter module
|
||||||
|
DEPENDS:=+kmod-nf-ipt +kmod-nf-nat
|
||||||
|
KCONFIG:= \
|
||||||
|
CONFIG_NF_CONNTRACK_EVENTS=y \
|
||||||
|
CONFIG_NF_CONNTRACK_CHAIN_EVENTS=y
|
||||||
|
FILES:=$(PKG_BUILD_DIR)/xt_FULLCONENAT.ko
|
||||||
|
endef
|
||||||
|
|
||||||
|
include $(INCLUDE_DIR)/kernel-defaults.mk
|
||||||
|
|
||||||
|
define Build/Compile
|
||||||
|
+$(MAKE) $(PKG_JOBS) -C "$(LINUX_DIR)" \
|
||||||
|
CROSS_COMPILE="$(TARGET_CROSS)" \
|
||||||
|
ARCH="$(LINUX_KARCH)" \
|
||||||
|
M="$(PKG_BUILD_DIR)" \
|
||||||
|
EXTRA_CFLAGS="$(BUILDFLAGS)" \
|
||||||
|
modules
|
||||||
|
$(call Build/Compile/Default)
|
||||||
|
endef
|
||||||
|
|
||||||
|
$(eval $(call KernelPackage,ipt-fullconenat))
|
||||||
|
$(eval $(call BuildPackage,iptables-mod-fullconenat))
|
20
fullconenat/patches/001-fix-init-Repeat-definition.patch
Normal file
20
fullconenat/patches/001-fix-init-Repeat-definition.patch
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
--- a/libip6t_FULLCONENAT.c
|
||||||
|
+++ b/libip6t_FULLCONENAT.c
|
||||||
|
@@ -214,6 +214,7 @@ static struct xtables_target fullconenat_tg_reg = {
|
||||||
|
.x6_options = FULLCONENAT_opts,
|
||||||
|
};
|
||||||
|
|
||||||
|
+#define _init __attribute__((constructor)) _INIT
|
||||||
|
void _init(void)
|
||||||
|
{
|
||||||
|
xtables_register_target(&fullconenat_tg_reg);
|
||||||
|
--- a/libipt_FULLCONENAT.c
|
||||||
|
+++ b/libipt_FULLCONENAT.c
|
||||||
|
@@ -235,6 +235,7 @@ static struct xtables_target fullconenat_tg_reg = {
|
||||||
|
.x6_options = FULLCONENAT_opts,
|
||||||
|
};
|
||||||
|
|
||||||
|
+#define _init __attribute__((constructor)) _INIT
|
||||||
|
void _init(void)
|
||||||
|
{
|
||||||
|
xtables_register_target(&fullconenat_tg_reg);
|
26
fullconenat/patches/001-linux-6.1-support.patch
Normal file
26
fullconenat/patches/001-linux-6.1-support.patch
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
--- a/xt_FULLCONENAT.c
|
||||||
|
+++ b/xt_FULLCONENAT.c
|
||||||
|
@@ -325,7 +325,11 @@
|
||||||
|
/* for now we do the same thing for both --random and --random-fully */
|
||||||
|
|
||||||
|
/* select a random starting point */
|
||||||
|
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(6, 1, 0)
|
||||||
|
+ start = (uint16_t)(get_random_u32() % (u32)range_size);
|
||||||
|
+#else
|
||||||
|
start = (uint16_t)(prandom_u32() % (u32)range_size);
|
||||||
|
+#endif
|
||||||
|
} else {
|
||||||
|
|
||||||
|
if ((original_port >= min && original_port <= min + range_size - 1)
|
||||||
|
@@ -995,7 +999,11 @@
|
||||||
|
/* for now we do the same thing for both --random and --random-fully */
|
||||||
|
|
||||||
|
/* select a random starting point */
|
||||||
|
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(6, 1, 0)
|
||||||
|
+ start = (uint16_t)(get_random_u32() % (u32)range_size);
|
||||||
|
+#else
|
||||||
|
start = (uint16_t)(prandom_u32() % (u32)range_size);
|
||||||
|
+#endif
|
||||||
|
} else {
|
||||||
|
|
||||||
|
if ((original_port >= min && original_port <= min + range_size - 1)
|
6
fullconenat/src/Makefile
Normal file
6
fullconenat/src/Makefile
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
libipt_FULLCONENAT.so: libipt_FULLCONENAT.o
|
||||||
|
$(CC) -shared -lxtables -o $@ $^;
|
||||||
|
libipt_FULLCONENAT.o: libipt_FULLCONENAT.c
|
||||||
|
$(CC) ${CFLAGS} -fPIC -D_INIT=$*_init -c -o $@ $<;
|
||||||
|
|
||||||
|
obj-m += xt_FULLCONENAT.o
|
|
@ -76,7 +76,7 @@ MY_DEPENDS := \
|
||||||
!TARGET_mvebu:kmod-usb-serial !TARGET_mvebu:kmod-usb-serial-option !TARGET_mvebu:kmod-usb-serial-wwan !TARGET_mvebu:usb-modeswitch !TARGET_mvebu:uqmi \
|
!TARGET_mvebu:kmod-usb-serial !TARGET_mvebu:kmod-usb-serial-option !TARGET_mvebu:kmod-usb-serial-wwan !TARGET_mvebu:usb-modeswitch !TARGET_mvebu:uqmi \
|
||||||
!TARGET_mvebu:umbim !TARGET_mvebu:kmod-mii !TARGET_mvebu:kmod-usb-net !TARGET_mvebu:kmod-usb-wdm !TARGET_mvebu:kmod-usb-net-qmi-wwan !TARGET_mvebu:kmod-usb-net-cdc-mbim !TARGET_mvebu:umbim \
|
!TARGET_mvebu:umbim !TARGET_mvebu:kmod-mii !TARGET_mvebu:kmod-usb-net !TARGET_mvebu:kmod-usb-wdm !TARGET_mvebu:kmod-usb-net-qmi-wwan !TARGET_mvebu:kmod-usb-net-cdc-mbim !TARGET_mvebu:umbim \
|
||||||
!TARGET_mvebu:kmod-usb-net-huawei-cdc-ncm !TARGET_mvebu:kmod-usb-net-rndis !TARGET_mvebu:kmod-usb-net-cdc-ether !TARGET_mvebu:kmod-usb-net-ipheth !TARGET_mvebu:usbmuxd !TARGET_mvebu:libusbmuxd \
|
!TARGET_mvebu:kmod-usb-net-huawei-cdc-ncm !TARGET_mvebu:kmod-usb-net-rndis !TARGET_mvebu:kmod-usb-net-cdc-ether !TARGET_mvebu:kmod-usb-net-ipheth !TARGET_mvebu:usbmuxd !TARGET_mvebu:libusbmuxd \
|
||||||
kmod-rt2800-usb kmod-rtl8xxxu kmod-rtl8192cu kmod-net-rtl8192su kmod-rtl8812au-ct \
|
kmod-rt2800-usb kmod-rtl8xxxu kmod-rtl8192cu kmod-net-rtl8192su !LINUX_6_1:kmod-rtl8812au-ct \
|
||||||
!TARGET_mvebu:luci-proto-qmi wpad-basic kmod-mt7601u kmod-rtl8187 TARGET_r4s:kmod-r8168 (TARGET_x86||TARGET_x86_64):kmod-usb-net-rtl8152 \
|
!TARGET_mvebu:luci-proto-qmi wpad-basic kmod-mt7601u kmod-rtl8187 TARGET_r4s:kmod-r8168 (TARGET_x86||TARGET_x86_64):kmod-usb-net-rtl8152 \
|
||||||
luci-app-mlvpn mlvpn 464xlat kmod-zram kmod-swconfig swconfig kmod-ipt-nat kmod-ipt-nat6 luci-app-https-dns-proxy kmod-tcp-nanqinlang (TARGET_x86_64||aarch64):kmod-tcp-bbr2 iptables-mod-ipopt igmpproxy ss iptraf-ng \
|
luci-app-mlvpn mlvpn 464xlat kmod-zram kmod-swconfig swconfig kmod-ipt-nat kmod-ipt-nat6 luci-app-https-dns-proxy kmod-tcp-nanqinlang (TARGET_x86_64||aarch64):kmod-tcp-bbr2 iptables-mod-ipopt igmpproxy ss iptraf-ng \
|
||||||
luci-app-acl block-mount blockd fstools luci-app-shutdown libwebp luci-proto-gre tcptraceroute luci-proto-mbim kmod-rtl8xxxu kmod-ath9k-htc luci-app-ttyd luci-mod-dashboard (TARGET_x86||TARGET_x86_64):rtl8192eu-firmware kmod-usb2 libustream-openssl (TARGET_x86||TARGET_x86_64):kmod-ixgbevf (TARGET_x86||TARGET_x86_64):kmod-igbvf \
|
luci-app-acl block-mount blockd fstools luci-app-shutdown libwebp luci-proto-gre tcptraceroute luci-proto-mbim kmod-rtl8xxxu kmod-ath9k-htc luci-app-ttyd luci-mod-dashboard (TARGET_x86||TARGET_x86_64):rtl8192eu-firmware kmod-usb2 libustream-openssl (TARGET_x86||TARGET_x86_64):kmod-ixgbevf (TARGET_x86||TARGET_x86_64):kmod-igbvf \
|
||||||
|
|
14
r8125/patches/021-6.1-suppot.patch
Normal file
14
r8125/patches/021-6.1-suppot.patch
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
--- a/src/r8125.h
|
||||||
|
+++ b/src/r8125.h
|
||||||
|
@@ -633,7 +633,11 @@
|
||||||
|
typedef struct napi_struct *napi_ptr;
|
||||||
|
typedef int napi_budget;
|
||||||
|
|
||||||
|
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(6, 1, 0)
|
||||||
|
+#define RTL_NAPI_CONFIG(ndev, priv, function, weight) netif_napi_add_weight(ndev, &priv->napi, function, weight)
|
||||||
|
+#else
|
||||||
|
#define RTL_NAPI_CONFIG(ndev, priv, function, weight) netif_napi_add(ndev, &priv->napi, function, weight)
|
||||||
|
+#endif
|
||||||
|
#define RTL_NAPI_QUOTA(budget, ndev) min(budget, budget)
|
||||||
|
#define RTL_GET_PRIV(stuct_ptr, priv_struct) container_of(stuct_ptr, priv_struct, stuct_ptr)
|
||||||
|
#define RTL_GET_NETDEV(priv_ptr) struct net_device *dev = priv_ptr->dev;
|
|
@ -7,12 +7,12 @@ include $(TOPDIR)/rules.mk
|
||||||
include $(INCLUDE_DIR)/kernel.mk
|
include $(INCLUDE_DIR)/kernel.mk
|
||||||
|
|
||||||
PKG_NAME:=r8152
|
PKG_NAME:=r8152
|
||||||
PKG_VERSION:=2.16.1
|
PKG_VERSION:=2.16.3.20220914
|
||||||
PKG_RELEASE:=1
|
PKG_RELEASE:=3
|
||||||
|
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||||
PKG_SOURCE_URL:=https://codeload.github.com/wget/realtek-r8152-linux/tar.gz/v$(PKG_VERSION)?
|
PKG_SOURCE_URL:=https://codeload.github.com/wget/realtek-r8152-linux/tar.gz/v$(PKG_VERSION)?
|
||||||
PKG_HASH:=2be6a02f6e29485efd107bb7e777ad3c482d9db0ff7e5e6c5ef034a1557a395b
|
PKG_HASH:=61ed7af34c8882c6028ddd1a27bb78fb5bfba41211f84dd7a06e4dc84dbe9a9a
|
||||||
|
|
||||||
PKG_BUILD_DIR:=$(KERNEL_BUILD_DIR)/realtek-$(PKG_NAME)-linux-$(PKG_VERSION)
|
PKG_BUILD_DIR:=$(KERNEL_BUILD_DIR)/realtek-$(PKG_NAME)-linux-$(PKG_VERSION)
|
||||||
|
|
||||||
|
|
38
r8152/patches/020-6.1-support.patch
Normal file
38
r8152/patches/020-6.1-support.patch
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
--- a/compatibility.h
|
||||||
|
+++ b/compatibility.h
|
||||||
|
@@ -237,9 +237,15 @@
|
||||||
|
#define napi_disable(napi_ptr) netif_poll_disable(container_of(napi_ptr, struct r8152, napi)->netdev)
|
||||||
|
#define napi_schedule(napi_ptr) netif_rx_schedule(container_of(napi_ptr, struct r8152, napi)->netdev)
|
||||||
|
#define napi_complete(napi_ptr) netif_rx_complete(container_of(napi_ptr, struct r8152, napi)->netdev)
|
||||||
|
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(6, 1, 0)
|
||||||
|
+ #define netif_napi_add_weight(ndev, napi_ptr, function, weight_t) \
|
||||||
|
+ ndev->poll = function; \
|
||||||
|
+ ndev->weight = weight_t;
|
||||||
|
+#else
|
||||||
|
#define netif_napi_add(ndev, napi_ptr, function, weight_t) \
|
||||||
|
ndev->poll = function; \
|
||||||
|
ndev->weight = weight_t;
|
||||||
|
+#endif
|
||||||
|
typedef unsigned long uintptr_t;
|
||||||
|
#define DMA_BIT_MASK(value) \
|
||||||
|
(value < 64 ? ((1ULL << value) - 1) : 0xFFFFFFFFFFFFFFFFULL)
|
||||||
|
--- a/r8152.c
|
||||||
|
+++ b/r8152.c
|
||||||
|
@@ -20718,10 +20718,17 @@
|
||||||
|
|
||||||
|
usb_set_intfdata(intf, tp);
|
||||||
|
|
||||||
|
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(6, 1, 0)
|
||||||
|
+ if (tp->support_2500full)
|
||||||
|
+ netif_napi_add_weight(netdev, &tp->napi, r8152_poll, 256);
|
||||||
|
+ else
|
||||||
|
+ netif_napi_add_weight(netdev, &tp->napi, r8152_poll, 64);
|
||||||
|
+#else
|
||||||
|
if (tp->support_2500full)
|
||||||
|
netif_napi_add(netdev, &tp->napi, r8152_poll, 256);
|
||||||
|
else
|
||||||
|
netif_napi_add(netdev, &tp->napi, r8152_poll, 64);
|
||||||
|
+#endif
|
||||||
|
|
||||||
|
ret = register_netdev(netdev);
|
||||||
|
if (ret != 0) {
|
|
@ -7,19 +7,16 @@ include $(TOPDIR)/rules.mk
|
||||||
include $(INCLUDE_DIR)/kernel.mk
|
include $(INCLUDE_DIR)/kernel.mk
|
||||||
|
|
||||||
PKG_NAME:=r8168
|
PKG_NAME:=r8168
|
||||||
PKG_VERSION:=8.050.03
|
PKG_VERSION:=8.051.02
|
||||||
PKG_RELEASE:=$(AUTORELEAE)
|
PKG_RELEASE:=1
|
||||||
|
|
||||||
PKG_SOURCE_PROTO:=git
|
PKG_SOURCE_PROTO:=git
|
||||||
PKG_SOURCE_URL:=https://github.com/BROBIRD/openwrt-r8168.git
|
PKG_SOURCE_URL:=https://github.com/BROBIRD/openwrt-r8168.git
|
||||||
PKG_SOURCE_DATE:=2022-06-15
|
PKG_SOURCE_VERSION:=4f6cfe1ca12fb772deed57f1d2d1062af041ad07
|
||||||
PKG_SOURCE_VERSION:=ddfaceacd1b7ed2857fb995642a8ffb1fc37e989
|
PKG_MIRROR_HASH:=6b149f5eb3b9e1dc50867a694984d253aa58d97dd5fbab30eb405d2d7b2be587
|
||||||
#PKG_MIRROR_HASH:=e4632c10d460f005eff76da8a183d7ff0c8819b0d099872589b7b06a9b8d9952
|
|
||||||
|
|
||||||
PKG_BUILD_DIR:=$(KERNEL_BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
PKG_BUILD_DIR:=$(KERNEL_BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
||||||
|
|
||||||
MAKE_PATH:=src
|
|
||||||
|
|
||||||
include $(INCLUDE_DIR)/package.mk
|
include $(INCLUDE_DIR)/package.mk
|
||||||
|
|
||||||
define KernelPackage/r8168
|
define KernelPackage/r8168
|
||||||
|
@ -35,20 +32,8 @@ define Package/r8168/description
|
||||||
This package contains a driver for Realtek r8168 chipsets.
|
This package contains a driver for Realtek r8168 chipsets.
|
||||||
endef
|
endef
|
||||||
|
|
||||||
R8168_MAKEOPTS= -C $(PKG_BUILD_DIR)/src \
|
|
||||||
PATH="$(TARGET_PATH)" \
|
|
||||||
ARCH="$(LINUX_KARCH)" \
|
|
||||||
CROSS_COMPILE="$(TARGET_CROSS)" \
|
|
||||||
TARGET="$(HAL_TARGET)" \
|
|
||||||
TOOLPREFIX="$(KERNEL_CROSS)" \
|
|
||||||
TOOLPATH="$(KERNEL_CROSS)" \
|
|
||||||
KERNELPATH="$(LINUX_DIR)" \
|
|
||||||
KERNELDIR="$(LINUX_DIR)" \
|
|
||||||
LDOPTS=" " \
|
|
||||||
DOMULTI=1
|
|
||||||
|
|
||||||
define Build/Compile
|
define Build/Compile
|
||||||
$(MAKE) $(R8168_MAKEOPTS) modules
|
+$(KERNEL_MAKE) M=$(PKG_BUILD_DIR)/src modules
|
||||||
endef
|
endef
|
||||||
|
|
||||||
$(eval $(call KernelPackage,r8168))
|
$(eval $(call KernelPackage,r8168))
|
||||||
|
|
14
r8168/patches/030-6.1-support.patch
Normal file
14
r8168/patches/030-6.1-support.patch
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
--- a/src/r8168.h
|
||||||
|
--- b/src/r8168.h
|
||||||
|
@@ -566,7 +566,11 @@
|
||||||
|
typedef struct napi_struct *napi_ptr;
|
||||||
|
typedef int napi_budget;
|
||||||
|
|
||||||
|
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(6, 1, 0)
|
||||||
|
+#define RTL_NAPI_CONFIG(ndev, priv, function, weight) netif_napi_add_weight(ndev, &priv->napi, function, weight)
|
||||||
|
+#else
|
||||||
|
#define RTL_NAPI_CONFIG(ndev, priv, function, weight) netif_napi_add(ndev, &priv->napi, function, weight)
|
||||||
|
+#endif
|
||||||
|
#define RTL_NAPI_QUOTA(budget, ndev) min(budget, budget)
|
||||||
|
#define RTL_GET_PRIV(stuct_ptr, priv_struct) container_of(stuct_ptr, priv_struct, stuct_ptr)
|
||||||
|
#define RTL_GET_NETDEV(priv_ptr) struct net_device *dev = priv_ptr->dev;
|
51
shortcut-fe/files/etc/init.d/shortcut-fe
Executable file
51
shortcut-fe/files/etc/init.d/shortcut-fe
Executable file
|
@ -0,0 +1,51 @@
|
||||||
|
#!/bin/sh /etc/rc.common
|
||||||
|
#
|
||||||
|
# Copyright (c) 2014-2015 The Linux Foundation. All rights reserved.
|
||||||
|
# Permission to use, copy, modify, and/or distribute this software for
|
||||||
|
# any purpose with or without fee is hereby granted, provided that the
|
||||||
|
# above copyright notice and this permission notice appear in all copies.
|
||||||
|
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
||||||
|
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
||||||
|
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
||||||
|
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
||||||
|
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
||||||
|
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
|
||||||
|
# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||||
|
#
|
||||||
|
|
||||||
|
#SFE connection manager has a lower priority, it should be started after other connection manager
|
||||||
|
#to detect the existence of connection manager with higher priority
|
||||||
|
START=70
|
||||||
|
|
||||||
|
have_cm() {
|
||||||
|
[ -d "/sys/kernel/debug/ecm" ] && echo 1 && return
|
||||||
|
|
||||||
|
echo 0
|
||||||
|
}
|
||||||
|
|
||||||
|
#load shortcut-fe and connection manager
|
||||||
|
load_sfe() {
|
||||||
|
local kernel_version=$(uname -r)
|
||||||
|
|
||||||
|
[ -d "/sys/module/shortcut_fe" ] || insmod /lib/modules/$kernel_version/shortcut-fe.ko
|
||||||
|
[ -d "/sys/module/shortcut_fe_ipv6" ] || insmod /lib/modules/$kernel_version/shortcut-fe-ipv6.ko
|
||||||
|
|
||||||
|
[ -e "/lib/modules/$kernel_version/shortcut-fe-cm.ko" ] && {
|
||||||
|
[ -d /sys/module/shortcut_fe_cm ] || insmod /lib/modules/$kernel_version/shortcut-fe-cm.ko
|
||||||
|
}
|
||||||
|
[ -e "/lib/modules/$kernel_version/fast-classifier.ko" ] && {
|
||||||
|
[ -d /sys/module/fast_classifier ] || insmod /lib/modules/$kernel_version/fast-classifier.ko
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
start() {
|
||||||
|
[ "$(have_cm)" = "0" ] && load_sfe
|
||||||
|
}
|
||||||
|
|
||||||
|
stop() {
|
||||||
|
[ -d "/sys/module/shortcut_fe_cm" ] && rmmod shortcut_fe_cm
|
||||||
|
[ -d "/sys/module/shortcut_fe_ipv6" ] && rmmod shortcut_fe_ipv6
|
||||||
|
[ -d "/sys/module/shortcut_fe" ] && rmmod shortcut_fe
|
||||||
|
[ -d "/sys/module/shortcut_fe_drv" ] && rmmod shortcut_fe_drv
|
||||||
|
[ -d "/sys/module/fast_classifier" ] && rmmod fast_classifier
|
||||||
|
}
|
0
shortcut-fe/shortcut-fe/files/usr/bin/sfe_dump
Normal file → Executable file
0
shortcut-fe/shortcut-fe/files/usr/bin/sfe_dump
Normal file → Executable file
|
@ -1,114 +0,0 @@
|
||||||
/*
|
|
||||||
* sfe.h
|
|
||||||
* Shortcut forwarding engine.
|
|
||||||
*
|
|
||||||
* Copyright (c) 2013-2017 The Linux Foundation. All rights reserved.
|
|
||||||
* Permission to use, copy, modify, and/or distribute this software for
|
|
||||||
* any purpose with or without fee is hereby granted, provided that the
|
|
||||||
* above copyright notice and this permission notice appear in all copies.
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
||||||
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
||||||
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
||||||
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
||||||
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
||||||
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
|
|
||||||
* OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* The following are debug macros used throughout the SFE.
|
|
||||||
*
|
|
||||||
* The DEBUG_LEVEL enables the followings based on its value,
|
|
||||||
* when dynamic debug option is disabled.
|
|
||||||
*
|
|
||||||
* 0 = OFF
|
|
||||||
* 1 = ASSERTS / ERRORS
|
|
||||||
* 2 = 1 + WARN
|
|
||||||
* 3 = 2 + INFO
|
|
||||||
* 4 = 3 + TRACE
|
|
||||||
*/
|
|
||||||
#define DEBUG_LEVEL 2
|
|
||||||
|
|
||||||
#if (DEBUG_LEVEL < 1)
|
|
||||||
#define DEBUG_ASSERT(s, ...)
|
|
||||||
#define DEBUG_ERROR(s, ...)
|
|
||||||
#else
|
|
||||||
#define DEBUG_ASSERT(c, s, ...) if (!(c)) { pr_emerg("ASSERT: %s:%d:" s, __FUNCTION__, __LINE__, ##__VA_ARGS__); BUG(); }
|
|
||||||
#define DEBUG_ERROR(s, ...) pr_err("%s:%d:" s, __FUNCTION__, __LINE__, ##__VA_ARGS__)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(CONFIG_DYNAMIC_DEBUG)
|
|
||||||
/*
|
|
||||||
* Compile messages for dynamic enable/disable
|
|
||||||
*/
|
|
||||||
#define DEBUG_WARN(s, ...) pr_debug("%s[%d]:" s, __FUNCTION__, __LINE__, ##__VA_ARGS__)
|
|
||||||
#define DEBUG_INFO(s, ...) pr_debug("%s[%d]:" s, __FUNCTION__, __LINE__, ##__VA_ARGS__)
|
|
||||||
#define DEBUG_TRACE(s, ...) pr_debug("%s[%d]:" s, __FUNCTION__, __LINE__, ##__VA_ARGS__)
|
|
||||||
#else
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Statically compile messages at different levels
|
|
||||||
*/
|
|
||||||
#if (DEBUG_LEVEL < 2)
|
|
||||||
#define DEBUG_WARN(s, ...)
|
|
||||||
#else
|
|
||||||
#define DEBUG_WARN(s, ...) pr_warn("%s[%d]:" s, __FUNCTION__, __LINE__, ##__VA_ARGS__)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if (DEBUG_LEVEL < 3)
|
|
||||||
#define DEBUG_INFO(s, ...)
|
|
||||||
#else
|
|
||||||
#define DEBUG_INFO(s, ...) pr_notice("%s[%d]:" s, __FUNCTION__, __LINE__, ##__VA_ARGS__)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if (DEBUG_LEVEL < 4)
|
|
||||||
#define DEBUG_TRACE(s, ...)
|
|
||||||
#else
|
|
||||||
#define DEBUG_TRACE(s, ...) pr_info("%s[%d]:" s, __FUNCTION__, __LINE__, ##__VA_ARGS__)
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef CONFIG_NF_FLOW_COOKIE
|
|
||||||
typedef int (*flow_cookie_set_func_t)(u32 protocol, __be32 src_ip, __be16 src_port,
|
|
||||||
__be32 dst_ip, __be16 dst_port, u16 flow_cookie);
|
|
||||||
/*
|
|
||||||
* sfe_register_flow_cookie_cb
|
|
||||||
* register a function in SFE to let SFE use this function to configure flow cookie for a flow
|
|
||||||
*
|
|
||||||
* Hardware driver which support flow cookie should register a callback function in SFE. Then SFE
|
|
||||||
* can use this function to configure flow cookie for a flow.
|
|
||||||
* return: 0, success; !=0, fail
|
|
||||||
*/
|
|
||||||
int sfe_register_flow_cookie_cb(flow_cookie_set_func_t cb);
|
|
||||||
|
|
||||||
/*
|
|
||||||
* sfe_unregister_flow_cookie_cb
|
|
||||||
* unregister function which is used to configure flow cookie for a flow
|
|
||||||
*
|
|
||||||
* return: 0, success; !=0, fail
|
|
||||||
*/
|
|
||||||
int sfe_unregister_flow_cookie_cb(flow_cookie_set_func_t cb);
|
|
||||||
|
|
||||||
typedef int (*sfe_ipv6_flow_cookie_set_func_t)(u32 protocol, __be32 src_ip[4], __be16 src_port,
|
|
||||||
__be32 dst_ip[4], __be16 dst_port, u16 flow_cookie);
|
|
||||||
|
|
||||||
/*
|
|
||||||
* sfe_ipv6_register_flow_cookie_cb
|
|
||||||
* register a function in SFE to let SFE use this function to configure flow cookie for a flow
|
|
||||||
*
|
|
||||||
* Hardware driver which support flow cookie should register a callback function in SFE. Then SFE
|
|
||||||
* can use this function to configure flow cookie for a flow.
|
|
||||||
* return: 0, success; !=0, fail
|
|
||||||
*/
|
|
||||||
int sfe_ipv6_register_flow_cookie_cb(sfe_ipv6_flow_cookie_set_func_t cb);
|
|
||||||
|
|
||||||
/*
|
|
||||||
* sfe_ipv6_unregister_flow_cookie_cb
|
|
||||||
* unregister function which is used to configure flow cookie for a flow
|
|
||||||
*
|
|
||||||
* return: 0, success; !=0, fail
|
|
||||||
*/
|
|
||||||
int sfe_ipv6_unregister_flow_cookie_cb(sfe_ipv6_flow_cookie_set_func_t cb);
|
|
||||||
|
|
||||||
#endif /*CONFIG_NF_FLOW_COOKIE*/
|
|
60
simulated-driver/Makefile
Normal file
60
simulated-driver/Makefile
Normal file
|
@ -0,0 +1,60 @@
|
||||||
|
#
|
||||||
|
# Copyright (c) 2015,2016 The Linux Foundation. All rights reserved.
|
||||||
|
# Permission to use, copy, modify, and/or distribute this software for
|
||||||
|
# any purpose with or without fee is hereby granted, provided that the
|
||||||
|
# above copyright notice and this permission notice appear in all copies.
|
||||||
|
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
||||||
|
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
||||||
|
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
||||||
|
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
||||||
|
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
||||||
|
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
|
||||||
|
# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||||
|
#
|
||||||
|
|
||||||
|
include $(TOPDIR)/rules.mk
|
||||||
|
include $(INCLUDE_DIR)/kernel.mk
|
||||||
|
|
||||||
|
PKG_NAME:=shortcut-fe-simulated-driver
|
||||||
|
PKG_RELEASE:=1
|
||||||
|
|
||||||
|
PKG_SOURCE_URL:=https://source.codeaurora.org/quic/qsdk/oss/lklm/shortcut-fe
|
||||||
|
PKG_SOURCE_PROTO:=git
|
||||||
|
PKG_SOURCE_DATE:=2021-03-17
|
||||||
|
PKG_SOURCE_VERSION:=697977d8d0ccf0ab596e5692d08608a75dd7f33d
|
||||||
|
PKG_MIRROR_HASH:=659fa82a431e15af797a6c7069faeee02810453ad8b576c51c29f95a1761a045
|
||||||
|
|
||||||
|
include $(INCLUDE_DIR)/package.mk
|
||||||
|
|
||||||
|
define KernelPackage/shortcut-fe-drv
|
||||||
|
SECTION:=kernel
|
||||||
|
CATEGORY:=Kernel modules
|
||||||
|
SUBMENU:=Network Support
|
||||||
|
DEPENDS:=@TARGET_ipq806x||TARGET_ipq807x +kmod-shortcut-fe
|
||||||
|
KCONFIG:= \
|
||||||
|
CONFIG_NET_CLS_ACT=y \
|
||||||
|
CONFIG_XFRM=y
|
||||||
|
TITLE:=Simulated sfe driver for ECM
|
||||||
|
FILES:=$(PKG_BUILD_DIR)/simulated-driver/shortcut-fe-drv.ko
|
||||||
|
endef
|
||||||
|
|
||||||
|
define KernelPackage/shortcut-fe-drv/Description
|
||||||
|
Simulated sfe driver which act as an adapter to convert message
|
||||||
|
between a connection manager and the SFE core engine.
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Build/Compile
|
||||||
|
$(MAKE) $(PKG_JOBS) -C "$(LINUX_DIR)" \
|
||||||
|
$(KERNEL_MAKE_FLAGS) \
|
||||||
|
$(PKG_MAKE_FLAGS) \
|
||||||
|
M="$(PKG_BUILD_DIR)/simulated-driver" \
|
||||||
|
EXTRA_CFLAGS="-DSFE_SUPPORT_IPV6" \
|
||||||
|
modules
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Build/InstallDev
|
||||||
|
$(INSTALL_DIR) $(1)/usr/include/shortcut-fe
|
||||||
|
$(CP) -rf $(PKG_BUILD_DIR)/simulated-driver/sfe_drv.h $(1)/usr/include/shortcut-fe
|
||||||
|
endef
|
||||||
|
|
||||||
|
$(eval $(call KernelPackage,shortcut-fe-drv))
|
11
simulated-driver/patches/200-nss-qdisc-support.patch
Normal file
11
simulated-driver/patches/200-nss-qdisc-support.patch
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
--- ./simulated-driver/sfe_drv.c.orig 2020-06-16 12:49:47.680153371 +0800
|
||||||
|
+++ ./simulated-driver/sfe_drv.c 2020-06-16 12:50:18.540153371 +0800
|
||||||
|
@@ -1167,7 +1167,7 @@ int sfe_drv_recv(struct sk_buff *skb)
|
||||||
|
* If ingress Qdisc configured, and packet not processed by ingress Qdisc yet
|
||||||
|
* We can not accelerate this packet.
|
||||||
|
*/
|
||||||
|
- if (dev->ingress_queue && !(skb->tc_verd & TC_NCLS)) {
|
||||||
|
+ if (dev->ingress_queue && !(skb->tc_verd_qca_nss & TC_NCLS)) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
#endif
|
|
@ -9,9 +9,9 @@ include $(TOPDIR)/rules.mk
|
||||||
include $(INCLUDE_DIR)/kernel.mk
|
include $(INCLUDE_DIR)/kernel.mk
|
||||||
|
|
||||||
PKG_NAME:=xtables-addons
|
PKG_NAME:=xtables-addons
|
||||||
PKG_VERSION:=3.18
|
PKG_VERSION:=3.22
|
||||||
PKG_RELEASE:=4
|
PKG_RELEASE:=$(AUTORELEASE)
|
||||||
PKG_HASH:=a77914a483ff381663f52120577e5e9355ca07cca73958b038e09d91247458d5
|
PKG_HASH:=faa16a27166275afbfe8df605f55c3a81ac693bf19da674d45ceded4137ae217
|
||||||
|
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
|
||||||
PKG_SOURCE_URL:=https://inai.de/files/xtables-addons/
|
PKG_SOURCE_URL:=https://inai.de/files/xtables-addons/
|
||||||
|
|
|
@ -0,0 +1,284 @@
|
||||||
|
Linux 5.16 includes 04e85bbf71c9 ("isystem: delete global -isystem compile option")
|
||||||
|
|
||||||
|
compile error on >=5.16
|
||||||
|
xtables-addons-3.21/extensions/LUA/lua/lua.h:12:10: fatal error: stdarg.h: No such file or directory
|
||||||
|
12 | #include <stdarg.h>
|
||||||
|
| ^~~~~~~~~~
|
||||||
|
|
||||||
|
Generated with coccinelle:
|
||||||
|
|
||||||
|
cat <<EOF>cocci-xtables-lua-linux-5.16.spatch
|
||||||
|
@include_arg@
|
||||||
|
@@
|
||||||
|
#include <stdarg.h>
|
||||||
|
|
||||||
|
@include_def@
|
||||||
|
@@
|
||||||
|
#include <stddef.h>
|
||||||
|
|
||||||
|
@include_both depends on include_arg && include_def@
|
||||||
|
@@
|
||||||
|
#include <stdarg.h>
|
||||||
|
|
||||||
|
@add_include_linux_stdheaders_both depends on include_both@
|
||||||
|
@@
|
||||||
|
+#include <linux/version.h>
|
||||||
|
+#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 16, 0)
|
||||||
|
?#include <stdarg.h>
|
||||||
|
?#include <stddef.h>
|
||||||
|
+#else
|
||||||
|
+#include <linux/stdarg.h>
|
||||||
|
+#include <linux/stddef.h>
|
||||||
|
+#endif
|
||||||
|
|
||||||
|
@add_include_linux_stdheaders depends on !include_both@
|
||||||
|
@@
|
||||||
|
(
|
||||||
|
+#include <linux/version.h>
|
||||||
|
+#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 16, 0)
|
||||||
|
#include <stdarg.h>
|
||||||
|
+#else
|
||||||
|
+#include <linux/stdarg.h>
|
||||||
|
+#endif
|
||||||
|
|
|
||||||
|
+#include <linux/version.h>
|
||||||
|
+#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 16, 0)
|
||||||
|
#include <stddef.h>
|
||||||
|
+#else
|
||||||
|
+#include <linux/stddef.h>
|
||||||
|
+#endif
|
||||||
|
)
|
||||||
|
EOF
|
||||||
|
spatch --in-place --include-headers --no-includes --sp-file cocci-xtables-lua-linux-5.16.spatch --dir extensions/LUA/lua/
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
--- a/extensions/LUA/lua/lauxlib.c
|
||||||
|
+++ b/extensions/LUA/lua/lauxlib.c
|
||||||
|
@@ -4,7 +4,12 @@
|
||||||
|
** See Copyright Notice in lua.h
|
||||||
|
*/
|
||||||
|
|
||||||
|
+#include <linux/version.h>
|
||||||
|
+#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 16, 0)
|
||||||
|
#include <stdarg.h>
|
||||||
|
+#else
|
||||||
|
+#include <linux/stdarg.h>
|
||||||
|
+#endif
|
||||||
|
|
||||||
|
#if !defined(__KERNEL__)
|
||||||
|
#include <ctype.h>
|
||||||
|
--- a/extensions/LUA/lua/lauxlib.h
|
||||||
|
+++ b/extensions/LUA/lua/lauxlib.h
|
||||||
|
@@ -9,7 +9,12 @@
|
||||||
|
#define lauxlib_h
|
||||||
|
|
||||||
|
|
||||||
|
+#include <linux/version.h>
|
||||||
|
+#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 16, 0)
|
||||||
|
#include <stddef.h>
|
||||||
|
+#else
|
||||||
|
+#include <linux/stddef.h>
|
||||||
|
+#endif
|
||||||
|
#include <linux/slab.h> /* for kmalloc and kfree when allocating luaL_Buffer */
|
||||||
|
|
||||||
|
#if !defined(__KERNEL__)
|
||||||
|
--- a/extensions/LUA/lua/ldebug.c
|
||||||
|
+++ b/extensions/LUA/lua/ldebug.c
|
||||||
|
@@ -5,8 +5,14 @@
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
+#include <linux/version.h>
|
||||||
|
+#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 16, 0)
|
||||||
|
#include <stdarg.h>
|
||||||
|
#include <stddef.h>
|
||||||
|
+#else
|
||||||
|
+#include <linux/stdarg.h>
|
||||||
|
+#include <linux/stddef.h>
|
||||||
|
+#endif
|
||||||
|
#include <string.h>
|
||||||
|
|
||||||
|
#define ldebug_c
|
||||||
|
--- a/extensions/LUA/lua/ldump.c
|
||||||
|
+++ b/extensions/LUA/lua/ldump.c
|
||||||
|
@@ -4,7 +4,12 @@
|
||||||
|
** See Copyright Notice in lua.h
|
||||||
|
*/
|
||||||
|
|
||||||
|
+#include <linux/version.h>
|
||||||
|
+#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 16, 0)
|
||||||
|
#include <stddef.h>
|
||||||
|
+#else
|
||||||
|
+#include <linux/stddef.h>
|
||||||
|
+#endif
|
||||||
|
|
||||||
|
#define ldump_c
|
||||||
|
#define LUA_CORE
|
||||||
|
--- a/extensions/LUA/lua/lfunc.c
|
||||||
|
+++ b/extensions/LUA/lua/lfunc.c
|
||||||
|
@@ -5,7 +5,12 @@
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
+#include <linux/version.h>
|
||||||
|
+#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 16, 0)
|
||||||
|
#include <stddef.h>
|
||||||
|
+#else
|
||||||
|
+#include <linux/stddef.h>
|
||||||
|
+#endif
|
||||||
|
|
||||||
|
#define lfunc_c
|
||||||
|
#define LUA_CORE
|
||||||
|
--- a/extensions/LUA/lua/llimits.h
|
||||||
|
+++ b/extensions/LUA/lua/llimits.h
|
||||||
|
@@ -7,7 +7,12 @@
|
||||||
|
#ifndef llimits_h
|
||||||
|
#define llimits_h
|
||||||
|
|
||||||
|
+#include <linux/version.h>
|
||||||
|
+#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 16, 0)
|
||||||
|
#include <stddef.h>
|
||||||
|
+#else
|
||||||
|
+#include <linux/stddef.h>
|
||||||
|
+#endif
|
||||||
|
|
||||||
|
#include "lua.h"
|
||||||
|
|
||||||
|
--- a/extensions/LUA/lua/lmem.c
|
||||||
|
+++ b/extensions/LUA/lua/lmem.c
|
||||||
|
@@ -5,7 +5,12 @@
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
+#include <linux/version.h>
|
||||||
|
+#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 16, 0)
|
||||||
|
#include <stddef.h>
|
||||||
|
+#else
|
||||||
|
+#include <linux/stddef.h>
|
||||||
|
+#endif
|
||||||
|
|
||||||
|
#define lmem_c
|
||||||
|
#define LUA_CORE
|
||||||
|
--- a/extensions/LUA/lua/lmem.h
|
||||||
|
+++ b/extensions/LUA/lua/lmem.h
|
||||||
|
@@ -8,7 +8,12 @@
|
||||||
|
#define lmem_h
|
||||||
|
|
||||||
|
|
||||||
|
+#include <linux/version.h>
|
||||||
|
+#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 16, 0)
|
||||||
|
#include <stddef.h>
|
||||||
|
+#else
|
||||||
|
+#include <linux/stddef.h>
|
||||||
|
+#endif
|
||||||
|
|
||||||
|
#include "llimits.h"
|
||||||
|
#include "lua.h"
|
||||||
|
--- a/extensions/LUA/lua/lobject.c
|
||||||
|
+++ b/extensions/LUA/lua/lobject.c
|
||||||
|
@@ -4,7 +4,12 @@
|
||||||
|
** See Copyright Notice in lua.h
|
||||||
|
*/
|
||||||
|
|
||||||
|
+#include <linux/version.h>
|
||||||
|
+#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 16, 0)
|
||||||
|
#include <stdarg.h>
|
||||||
|
+#else
|
||||||
|
+#include <linux/stdarg.h>
|
||||||
|
+#endif
|
||||||
|
|
||||||
|
#include <ctype.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
--- a/extensions/LUA/lua/lobject.h
|
||||||
|
+++ b/extensions/LUA/lua/lobject.h
|
||||||
|
@@ -9,7 +9,12 @@
|
||||||
|
#define lobject_h
|
||||||
|
|
||||||
|
|
||||||
|
+#include <linux/version.h>
|
||||||
|
+#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 16, 0)
|
||||||
|
#include <stdarg.h>
|
||||||
|
+#else
|
||||||
|
+#include <linux/stdarg.h>
|
||||||
|
+#endif
|
||||||
|
|
||||||
|
|
||||||
|
#include "llimits.h"
|
||||||
|
--- a/extensions/LUA/lua/lstate.c
|
||||||
|
+++ b/extensions/LUA/lua/lstate.c
|
||||||
|
@@ -5,7 +5,12 @@
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
+#include <linux/version.h>
|
||||||
|
+#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 16, 0)
|
||||||
|
#include <stddef.h>
|
||||||
|
+#else
|
||||||
|
+#include <linux/stddef.h>
|
||||||
|
+#endif
|
||||||
|
|
||||||
|
#define lstate_c
|
||||||
|
#define LUA_CORE
|
||||||
|
--- a/extensions/LUA/lua/lstrlib.c
|
||||||
|
+++ b/extensions/LUA/lua/lstrlib.c
|
||||||
|
@@ -6,7 +6,12 @@
|
||||||
|
|
||||||
|
|
||||||
|
#include <ctype.h>
|
||||||
|
+#include <linux/version.h>
|
||||||
|
+#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 16, 0)
|
||||||
|
#include <stddef.h>
|
||||||
|
+#else
|
||||||
|
+#include <linux/stddef.h>
|
||||||
|
+#endif
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
|
--- a/extensions/LUA/lua/ltablib.c
|
||||||
|
+++ b/extensions/LUA/lua/ltablib.c
|
||||||
|
@@ -5,7 +5,12 @@
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
+#include <linux/version.h>
|
||||||
|
+#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 16, 0)
|
||||||
|
#include <stddef.h>
|
||||||
|
+#else
|
||||||
|
+#include <linux/stddef.h>
|
||||||
|
+#endif
|
||||||
|
|
||||||
|
#define ltablib_c
|
||||||
|
#define LUA_LIB
|
||||||
|
--- a/extensions/LUA/lua/lua.h
|
||||||
|
+++ b/extensions/LUA/lua/lua.h
|
||||||
|
@@ -9,8 +9,14 @@
|
||||||
|
#ifndef lua_h
|
||||||
|
#define lua_h
|
||||||
|
|
||||||
|
+#include <linux/version.h>
|
||||||
|
+#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 16, 0)
|
||||||
|
#include <stdarg.h>
|
||||||
|
#include <stddef.h>
|
||||||
|
+#else
|
||||||
|
+#include <linux/stdarg.h>
|
||||||
|
+#include <linux/stddef.h>
|
||||||
|
+#endif
|
||||||
|
|
||||||
|
#include "luaconf.h"
|
||||||
|
|
||||||
|
--- a/extensions/LUA/lua/luaconf.h
|
||||||
|
+++ b/extensions/LUA/lua/luaconf.h
|
||||||
|
@@ -8,7 +8,12 @@
|
||||||
|
#ifndef lconfig_h
|
||||||
|
#define lconfig_h
|
||||||
|
|
||||||
|
+#include <linux/version.h>
|
||||||
|
+#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 16, 0)
|
||||||
|
#include <stddef.h>
|
||||||
|
+#else
|
||||||
|
+#include <linux/stddef.h>
|
||||||
|
+#endif
|
||||||
|
|
||||||
|
#if !defined(__KERNEL__)
|
||||||
|
#include <limits.h>
|
Loading…
Add table
Add a link
Reference in a new issue