2008-04-15 14:11:23 +08:00
|
|
|
#
|
2013-02-12 05:58:42 +08:00
|
|
|
# Copyright (C) 2006-2013 OpenWrt.org
|
2006-06-27 08:35:46 +08:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2005-03-21 16:12:49 +08:00
|
|
|
|
2005-03-06 11:34:52 +08:00
|
|
|
include $(TOPDIR)/rules.mk
|
2006-06-21 10:32:39 +08:00
|
|
|
include $(INCLUDE_DIR)/kernel.mk
|
2005-03-06 11:34:52 +08:00
|
|
|
|
2005-05-18 18:40:10 +08:00
|
|
|
PKG_NAME:=iptables
|
2014-03-11 22:57:55 +08:00
|
|
|
PKG_VERSION:=1.4.21
|
2013-09-01 21:46:10 +08:00
|
|
|
PKG_RELEASE:=1
|
2005-03-06 11:34:52 +08:00
|
|
|
|
2006-05-29 09:41:59 +08:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
2005-12-15 17:05:57 +08:00
|
|
|
PKG_SOURCE_URL:=http://www.netfilter.org/projects/iptables/files \
|
2005-06-06 23:47:13 +08:00
|
|
|
ftp://ftp.be.netfilter.org/pub/netfilter/iptables/ \
|
|
|
|
ftp://ftp.de.netfilter.org/pub/netfilter/iptables/ \
|
|
|
|
ftp://ftp.no.netfilter.org/pub/netfilter/iptables/
|
2014-03-11 22:57:55 +08:00
|
|
|
PKG_MD5SUM:=536d048c8e8eeebcd9757d0863ebb0c0
|
2008-04-15 14:11:23 +08:00
|
|
|
|
2010-12-21 02:45:09 +08:00
|
|
|
PKG_FIXUP:=autoreconf
|
2010-08-11 01:12:49 +08:00
|
|
|
PKG_INSTALL:=1
|
2010-09-07 18:00:34 +08:00
|
|
|
PKG_BUILD_PARALLEL:=1
|
2009-05-03 14:54:49 +08:00
|
|
|
|
2012-02-07 01:15:36 +08:00
|
|
|
ifneq ($(CONFIG_EXTERNAL_KERNEL_TREE),"")
|
|
|
|
PATCH_DIR:=
|
|
|
|
endif
|
|
|
|
|
2006-06-21 10:32:39 +08:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2006-06-22 07:45:47 +08:00
|
|
|
ifeq ($(DUMP),)
|
2006-09-25 04:49:31 +08:00
|
|
|
-include $(LINUX_DIR)/.config
|
|
|
|
include $(INCLUDE_DIR)/netfilter.mk
|
2010-10-27 23:27:12 +08:00
|
|
|
STAMP_CONFIGURED:=$(strip $(STAMP_CONFIGURED))_$(shell $(SH_FUNC) grep 'NETFILTER' $(LINUX_DIR)/.config | md5s)
|
2006-06-22 07:45:47 +08:00
|
|
|
endif
|
2005-03-06 11:34:52 +08:00
|
|
|
|
2009-04-30 07:31:23 +08:00
|
|
|
|
2006-09-25 04:49:31 +08:00
|
|
|
define Package/iptables/Default
|
|
|
|
SECTION:=net
|
2009-12-09 21:36:35 +08:00
|
|
|
CATEGORY:=Network
|
2011-03-12 09:24:18 +08:00
|
|
|
SUBMENU:=Firewall
|
2006-09-25 04:49:31 +08:00
|
|
|
URL:=http://netfilter.org/
|
|
|
|
endef
|
|
|
|
|
2008-04-15 14:11:23 +08:00
|
|
|
define Package/iptables/Module
|
|
|
|
$(call Package/iptables/Default)
|
|
|
|
DEPENDS:=iptables $(1)
|
|
|
|
endef
|
|
|
|
|
2006-04-14 12:27:05 +08:00
|
|
|
define Package/iptables
|
2007-09-07 16:34:51 +08:00
|
|
|
$(call Package/iptables/Default)
|
2013-03-07 01:05:34 +08:00
|
|
|
TITLE:=IP firewall administration tool
|
2006-09-25 04:49:31 +08:00
|
|
|
MENU:=1
|
2013-03-07 01:05:34 +08:00
|
|
|
DEPENDS+= +kmod-ipt-core +libip4tc +IPV6:libip6tc +libxtables
|
2008-09-22 23:19:59 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/iptables/description
|
2013-03-07 01:05:34 +08:00
|
|
|
IP firewall administration tool.
|
2011-07-17 23:31:30 +08:00
|
|
|
|
|
|
|
Matches:
|
|
|
|
- icmp
|
|
|
|
- tcp
|
|
|
|
- udp
|
|
|
|
- comment
|
2013-05-21 20:58:15 +08:00
|
|
|
- conntrack
|
2011-07-17 23:31:30 +08:00
|
|
|
- limit
|
|
|
|
- mac
|
2013-05-21 20:58:15 +08:00
|
|
|
- mark
|
2011-07-17 23:31:30 +08:00
|
|
|
- multiport
|
2013-05-21 20:58:15 +08:00
|
|
|
- set
|
|
|
|
- state
|
|
|
|
- time
|
2011-07-17 23:31:30 +08:00
|
|
|
|
|
|
|
Targets:
|
|
|
|
- ACCEPT
|
2013-05-21 20:58:15 +08:00
|
|
|
- CT
|
|
|
|
- DNAT
|
2011-07-17 23:31:30 +08:00
|
|
|
- DROP
|
|
|
|
- REJECT
|
|
|
|
- LOG
|
2013-05-21 20:58:15 +08:00
|
|
|
- MARK
|
|
|
|
- MASQUERADE
|
|
|
|
- REDIRECT
|
|
|
|
- SET
|
|
|
|
- SNAT
|
2011-07-17 23:31:30 +08:00
|
|
|
- TCPMSS
|
|
|
|
|
|
|
|
Tables:
|
|
|
|
- filter
|
|
|
|
- mangle
|
2013-05-21 20:58:15 +08:00
|
|
|
- nat
|
|
|
|
- raw
|
2011-07-17 23:31:30 +08:00
|
|
|
|
2006-04-14 12:27:05 +08:00
|
|
|
endef
|
|
|
|
|
2008-09-22 23:19:59 +08:00
|
|
|
define Package/iptables-mod-conntrack-extra
|
|
|
|
$(call Package/iptables/Module, +kmod-ipt-conntrack-extra)
|
|
|
|
TITLE:=Extra connection tracking extensions
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/iptables-mod-conntrack-extra/description
|
2010-03-14 09:53:41 +08:00
|
|
|
Extra iptables extensions for connection tracking.
|
2011-07-17 23:31:30 +08:00
|
|
|
|
|
|
|
Matches:
|
|
|
|
- connbytes
|
2014-03-11 22:58:00 +08:00
|
|
|
- connlimit
|
2011-07-17 23:31:30 +08:00
|
|
|
- connmark
|
|
|
|
- recent
|
|
|
|
- helper
|
|
|
|
|
|
|
|
Targets:
|
|
|
|
- CONNMARK
|
|
|
|
|
2006-04-14 12:27:05 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/iptables-mod-filter
|
2008-04-15 14:11:23 +08:00
|
|
|
$(call Package/iptables/Module, +kmod-ipt-filter)
|
2008-09-22 23:19:59 +08:00
|
|
|
TITLE:=Content inspection extensions
|
2007-09-07 16:34:51 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/iptables-mod-filter/description
|
2010-03-14 09:53:41 +08:00
|
|
|
iptables extensions for packet content inspection.
|
2011-07-17 23:31:30 +08:00
|
|
|
Includes support for:
|
|
|
|
|
|
|
|
Matches:
|
|
|
|
- layer7
|
|
|
|
- string
|
|
|
|
|
2006-04-14 12:27:05 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/iptables-mod-ipopt
|
2008-04-15 14:11:23 +08:00
|
|
|
$(call Package/iptables/Module, +kmod-ipt-ipopt)
|
2008-09-22 23:19:59 +08:00
|
|
|
TITLE:=IP/Packet option extensions
|
2007-09-07 16:34:51 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/iptables-mod-ipopt/description
|
2010-03-14 09:53:41 +08:00
|
|
|
iptables extensions for matching/changing IP packet options.
|
2011-07-17 23:31:30 +08:00
|
|
|
|
|
|
|
Matches:
|
|
|
|
- dscp
|
|
|
|
- ecn
|
|
|
|
- length
|
|
|
|
- statistic
|
|
|
|
- tcpmss
|
|
|
|
- unclean
|
|
|
|
- hl
|
|
|
|
|
|
|
|
Targets:
|
|
|
|
- DSCP
|
|
|
|
- CLASSIFY
|
|
|
|
- ECN
|
|
|
|
- HL
|
|
|
|
|
2006-04-14 12:27:05 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/iptables-mod-ipsec
|
2008-04-15 14:11:23 +08:00
|
|
|
$(call Package/iptables/Module, +kmod-ipt-ipsec)
|
2008-09-22 23:19:59 +08:00
|
|
|
TITLE:=IPsec extensions
|
2007-09-07 16:34:51 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/iptables-mod-ipsec/description
|
2010-03-14 09:53:41 +08:00
|
|
|
iptables extensions for matching ipsec traffic.
|
2011-07-17 23:31:30 +08:00
|
|
|
|
|
|
|
Matches:
|
|
|
|
- ah
|
|
|
|
- esp
|
|
|
|
- policy
|
|
|
|
|
2006-04-14 12:27:05 +08:00
|
|
|
endef
|
|
|
|
|
2008-09-22 23:19:59 +08:00
|
|
|
define Package/iptables-mod-nat-extra
|
|
|
|
$(call Package/iptables/Module, +kmod-ipt-nat-extra)
|
|
|
|
TITLE:=Extra NAT extensions
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/iptables-mod-nat-extra/description
|
2010-03-14 09:53:41 +08:00
|
|
|
iptables extensions for extra NAT targets.
|
2011-07-17 23:31:30 +08:00
|
|
|
|
|
|
|
Targets:
|
|
|
|
- MIRROR
|
|
|
|
- NETMAP
|
2006-04-14 12:27:05 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/iptables-mod-ulog
|
2008-04-15 14:11:23 +08:00
|
|
|
$(call Package/iptables/Module, +kmod-ipt-ulog)
|
2006-09-25 04:49:31 +08:00
|
|
|
TITLE:=user-space packet logging
|
2007-09-07 16:34:51 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/iptables-mod-ulog/description
|
2010-03-14 09:53:41 +08:00
|
|
|
iptables extensions for user-space packet logging.
|
2011-07-17 23:31:30 +08:00
|
|
|
|
|
|
|
Targets:
|
|
|
|
- ULOG
|
|
|
|
|
2006-04-14 12:27:05 +08:00
|
|
|
endef
|
|
|
|
|
2014-08-07 12:42:22 +08:00
|
|
|
define Package/iptables-mod-nflog
|
2014-08-07 20:32:33 +08:00
|
|
|
$(call Package/iptables/Module, +kmod-nfnetlink-log +kmod-ipt-nflog)
|
2014-08-07 12:42:22 +08:00
|
|
|
TITLE:=Netfilter NFLOG target
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/iptables-mod-nflog/description
|
|
|
|
iptables extension for user-space logging via NFNETLINK.
|
|
|
|
|
|
|
|
Includes:
|
|
|
|
- libxt_NFLOG
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/iptables-mod-nfqueue
|
2014-08-07 20:32:33 +08:00
|
|
|
$(call Package/iptables/Module, +kmod-nfnetlink-queue +kmod-ipt-nfqueue)
|
2014-08-07 12:42:22 +08:00
|
|
|
TITLE:=Netfilter NFQUEUE target
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/iptables-mod-nfqueue/description
|
|
|
|
iptables extension for user-space queuing via NFNETLINK.
|
|
|
|
|
|
|
|
Includes:
|
|
|
|
- libxt_NFQUEUE
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
2010-07-16 14:15:07 +08:00
|
|
|
define Package/iptables-mod-hashlimit
|
|
|
|
$(call Package/iptables/Module, +kmod-ipt-hashlimit)
|
|
|
|
TITLE:=hashlimit matching
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/iptables-mod-hashlimit/description
|
|
|
|
iptables extensions for hashlimit matching
|
2011-07-17 23:31:30 +08:00
|
|
|
|
|
|
|
Matches:
|
|
|
|
- hashlimit
|
|
|
|
|
2010-07-16 14:15:07 +08:00
|
|
|
endef
|
|
|
|
|
2007-06-03 06:57:33 +08:00
|
|
|
define Package/iptables-mod-iprange
|
2008-04-15 14:11:23 +08:00
|
|
|
$(call Package/iptables/Module, +kmod-ipt-iprange)
|
2008-09-22 23:19:59 +08:00
|
|
|
TITLE:=IP range extension
|
2007-09-07 16:34:51 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/iptables-mod-iprange/description
|
2010-03-14 09:53:41 +08:00
|
|
|
iptables extensions for matching ip ranges.
|
2011-07-17 23:31:30 +08:00
|
|
|
|
|
|
|
Matches:
|
|
|
|
- iprange
|
|
|
|
|
2007-06-03 06:57:33 +08:00
|
|
|
endef
|
|
|
|
|
2006-04-14 12:27:05 +08:00
|
|
|
define Package/iptables-mod-extra
|
2008-04-15 14:11:23 +08:00
|
|
|
$(call Package/iptables/Module, +kmod-ipt-extra)
|
2008-09-22 23:19:59 +08:00
|
|
|
TITLE:=Other extra iptables extensions
|
2007-09-07 16:34:51 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/iptables-mod-extra/description
|
2010-03-14 09:53:41 +08:00
|
|
|
Other extra iptables extensions.
|
2011-07-17 23:31:30 +08:00
|
|
|
|
|
|
|
Matches:
|
2013-01-15 00:12:56 +08:00
|
|
|
- addrtype
|
2011-07-17 23:31:30 +08:00
|
|
|
- condition
|
|
|
|
- owner
|
|
|
|
- physdev (if ebtables is enabled)
|
|
|
|
- pkttype
|
|
|
|
- quota
|
|
|
|
|
2006-04-14 12:27:05 +08:00
|
|
|
endef
|
|
|
|
|
2011-07-05 20:40:59 +08:00
|
|
|
define Package/iptables-mod-led
|
|
|
|
$(call Package/iptables/Module, +kmod-ipt-led)
|
|
|
|
TITLE:=LED trigger iptables extension
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/iptables-mod-led/description
|
|
|
|
iptables extension for triggering a LED.
|
2011-07-17 23:31:30 +08:00
|
|
|
|
|
|
|
Targets:
|
|
|
|
- LED
|
|
|
|
|
2011-07-05 20:40:59 +08:00
|
|
|
endef
|
|
|
|
|
2010-06-23 06:39:22 +08:00
|
|
|
define Package/iptables-mod-tproxy
|
|
|
|
$(call Package/iptables/Module, +kmod-ipt-tproxy)
|
|
|
|
TITLE:=Transparent proxy iptables extensions
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/iptables-mod-tproxy/description
|
|
|
|
Transparent proxy iptables extensions.
|
2011-07-17 23:31:30 +08:00
|
|
|
|
|
|
|
Matches:
|
|
|
|
- socket
|
|
|
|
|
|
|
|
Targets:
|
|
|
|
- TPROXY
|
|
|
|
|
2010-06-23 06:39:22 +08:00
|
|
|
endef
|
|
|
|
|
2011-05-24 16:14:29 +08:00
|
|
|
define Package/iptables-mod-tee
|
|
|
|
$(call Package/iptables/Module, +kmod-ipt-tee)
|
|
|
|
TITLE:=TEE iptables extensions
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/iptables-mod-tee/description
|
|
|
|
TEE iptables extensions.
|
2011-07-17 23:31:30 +08:00
|
|
|
|
|
|
|
Targets:
|
|
|
|
- TEE
|
|
|
|
|
2011-05-24 16:14:29 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/iptables-mod-u32
|
|
|
|
$(call Package/iptables/Module, +kmod-ipt-u32)
|
|
|
|
TITLE:=U32 iptables extensions
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/iptables-mod-u32/description
|
|
|
|
U32 iptables extensions.
|
2011-07-17 23:31:30 +08:00
|
|
|
|
|
|
|
Matches:
|
|
|
|
- u32
|
|
|
|
|
2011-05-24 16:14:29 +08:00
|
|
|
endef
|
2010-06-23 06:39:22 +08:00
|
|
|
|
2006-04-14 12:27:05 +08:00
|
|
|
define Package/ip6tables
|
2007-09-07 16:34:51 +08:00
|
|
|
$(call Package/iptables/Default)
|
2013-03-07 01:05:34 +08:00
|
|
|
DEPENDS:=@IPV6 +kmod-ip6tables +iptables
|
2013-05-14 23:02:31 +08:00
|
|
|
CATEGORY:=Network
|
2006-09-25 04:49:31 +08:00
|
|
|
TITLE:=IPv6 firewall administration tool
|
2008-04-15 14:11:23 +08:00
|
|
|
MENU:=1
|
2006-04-14 12:27:05 +08:00
|
|
|
endef
|
|
|
|
|
2013-09-02 01:59:48 +08:00
|
|
|
|
2014-06-03 02:13:38 +08:00
|
|
|
define Package/ip6tables-extra
|
|
|
|
$(call Package/iptables/Default)
|
|
|
|
DEPENDS:=ip6tables +kmod-ip6tables-extra
|
|
|
|
TITLE:=IPv6 header matching modules
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/ip6tables-mod-extra/description
|
|
|
|
iptables header matching modules for IPv6
|
|
|
|
endef
|
|
|
|
|
2013-09-02 01:59:48 +08:00
|
|
|
define Package/ip6tables-mod-nat
|
|
|
|
$(call Package/iptables/Default)
|
|
|
|
DEPENDS:=ip6tables +kmod-ipt-nat6
|
|
|
|
TITLE:=IPv6 NAT extensions
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/ip6tables-mod-nat/description
|
|
|
|
iptables extensions for IPv6-NAT targets.
|
|
|
|
endef
|
|
|
|
|
2009-05-03 14:54:49 +08:00
|
|
|
define Package/libiptc
|
|
|
|
$(call Package/iptables/Default)
|
|
|
|
SECTION:=libs
|
|
|
|
CATEGORY:=Libraries
|
2014-06-02 20:43:25 +08:00
|
|
|
DEPENDS:=+libip4tc +IPV6:libip6tc
|
2011-03-26 02:02:51 +08:00
|
|
|
TITLE:=IPv4/IPv6 firewall - shared libiptc library (compatibility stub)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libip4tc
|
|
|
|
$(call Package/iptables/Default)
|
|
|
|
SECTION:=libs
|
|
|
|
CATEGORY:=Libraries
|
|
|
|
TITLE:=IPv4 firewall - shared libiptc library
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libip6tc
|
|
|
|
$(call Package/iptables/Default)
|
|
|
|
SECTION:=libs
|
|
|
|
CATEGORY:=Libraries
|
|
|
|
TITLE:=IPv6 firewall - shared libiptc library
|
2007-09-06 05:40:11 +08:00
|
|
|
endef
|
|
|
|
|
2009-05-03 14:54:49 +08:00
|
|
|
define Package/libxtables
|
|
|
|
$(call Package/iptables/Default)
|
|
|
|
SECTION:=libs
|
|
|
|
CATEGORY:=Libraries
|
|
|
|
TITLE:=IPv4/IPv6 firewall - shared xtables library
|
2007-09-17 00:25:53 +08:00
|
|
|
endef
|
|
|
|
|
2009-09-25 22:10:42 +08:00
|
|
|
TARGET_CPPFLAGS := \
|
|
|
|
-I$(PKG_BUILD_DIR)/include \
|
2012-05-03 17:43:10 +08:00
|
|
|
-I$(LINUX_DIR)/user_headers/include \
|
2009-09-25 22:10:42 +08:00
|
|
|
$(TARGET_CPPFLAGS)
|
|
|
|
|
2010-04-21 00:18:03 +08:00
|
|
|
TARGET_CFLAGS += \
|
|
|
|
-I$(PKG_BUILD_DIR)/include \
|
2013-05-21 18:15:10 +08:00
|
|
|
-I$(LINUX_DIR)/user_headers/include \
|
|
|
|
-ffunction-sections -fdata-sections
|
|
|
|
|
|
|
|
TARGET_LDFLAGS += \
|
|
|
|
-Wl,--gc-sections
|
2010-04-21 00:18:03 +08:00
|
|
|
|
2009-01-08 10:18:45 +08:00
|
|
|
CONFIGURE_ARGS += \
|
2009-05-03 14:54:49 +08:00
|
|
|
--enable-shared \
|
2009-01-08 10:18:45 +08:00
|
|
|
--enable-devel \
|
2012-05-03 17:43:10 +08:00
|
|
|
--with-kernel="$(LINUX_DIR)/user_headers" \
|
2012-02-22 09:47:48 +08:00
|
|
|
--with-xtlibdir=/usr/lib/iptables \
|
2014-07-02 19:39:24 +08:00
|
|
|
--enable-static \
|
|
|
|
$(if $(CONFIG_IPV6),,--disable-ipv6)
|
2008-08-07 06:10:29 +08:00
|
|
|
|
2010-08-11 01:12:49 +08:00
|
|
|
MAKE_FLAGS := \
|
|
|
|
$(TARGET_CONFIGURE_OPTS) \
|
|
|
|
COPT_FLAGS="$(TARGET_CFLAGS)" \
|
2012-05-03 17:43:10 +08:00
|
|
|
KERNEL_DIR="$(LINUX_DIR)/user_headers/" PREFIX=/usr \
|
2010-08-11 01:12:49 +08:00
|
|
|
KBUILD_OUTPUT="$(LINUX_DIR)" \
|
2013-03-07 16:48:41 +08:00
|
|
|
BUILTIN_MODULES="$(patsubst ip6t_%,%,$(patsubst ipt_%,%,$(patsubst xt_%,%,$(IPT_BUILTIN) $(IPT_CONNTRACK-m) $(IPT_NAT-m))))"
|
2010-08-11 01:12:49 +08:00
|
|
|
|
2006-05-31 21:00:11 +08:00
|
|
|
define Build/InstallDev
|
2010-03-14 09:53:41 +08:00
|
|
|
$(INSTALL_DIR) $(1)/usr/include
|
|
|
|
$(INSTALL_DIR) $(1)/usr/include/iptables
|
|
|
|
$(INSTALL_DIR) $(1)/usr/include/net/netfilter
|
2009-05-05 19:51:51 +08:00
|
|
|
|
|
|
|
# XXX: iptables header fixup, some headers are not installed by iptables anymore
|
|
|
|
$(CP) $(PKG_BUILD_DIR)/include/iptables/*.h $(1)/usr/include/iptables/
|
|
|
|
$(CP) $(PKG_BUILD_DIR)/include/iptables.h $(1)/usr/include/
|
2013-03-07 01:05:34 +08:00
|
|
|
$(CP) $(PKG_BUILD_DIR)/include/ip6tables.h $(1)/usr/include/
|
2009-08-02 07:16:06 +08:00
|
|
|
$(CP) $(PKG_BUILD_DIR)/include/libipulog $(1)/usr/include/
|
|
|
|
$(CP) $(PKG_BUILD_DIR)/include/libiptc $(1)/usr/include/
|
2009-05-05 19:51:51 +08:00
|
|
|
|
2009-05-03 14:54:49 +08:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/include/* $(1)/usr/include/
|
2010-03-14 09:53:41 +08:00
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
2010-12-05 01:04:39 +08:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libxtables.so* $(1)/usr/lib/
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libip*tc.so* $(1)/usr/lib/
|
2010-03-14 09:53:41 +08:00
|
|
|
$(INSTALL_DIR) $(1)/usr/lib/pkgconfig
|
2009-05-03 14:54:49 +08:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/xtables.pc $(1)/usr/lib/pkgconfig/
|
2013-05-02 16:10:55 +08:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/libip*tc.pc $(1)/usr/lib/pkgconfig/
|
2013-06-06 22:02:24 +08:00
|
|
|
|
|
|
|
# XXX: needed by firewall3
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib/iptables
|
|
|
|
$(CP) $(PKG_BUILD_DIR)/extensions/libext*.a $(1)/usr/lib/iptables/
|
2006-05-31 21:00:11 +08:00
|
|
|
endef
|
|
|
|
|
2006-04-14 12:27:05 +08:00
|
|
|
define Package/iptables/install
|
2006-11-23 08:29:07 +08:00
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
2013-03-07 01:05:34 +08:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/sbin/xtables-multi $(1)/usr/sbin/
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/sbin/iptables{,-restore,-save} $(1)/usr/sbin/
|
2006-11-23 08:29:07 +08:00
|
|
|
$(INSTALL_DIR) $(1)/usr/lib/iptables
|
2006-04-14 12:27:05 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/ip6tables/install
|
2006-11-23 08:29:07 +08:00
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
2013-03-07 01:05:34 +08:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/sbin/ip6tables{,-restore,-save} $(1)/usr/sbin/
|
2006-04-14 12:27:05 +08:00
|
|
|
endef
|
|
|
|
|
2009-05-03 14:54:49 +08:00
|
|
|
define Package/libiptc/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
2011-03-26 02:02:51 +08:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libiptc.so* $(1)/usr/lib/
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libip4tc/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libip4tc.so* $(1)/usr/lib/
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libip6tc/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libip6tc.so* $(1)/usr/lib/
|
2009-05-03 14:54:49 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libxtables/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
2009-08-07 17:36:55 +08:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libxtables.so* $(1)/usr/lib/
|
2009-05-03 14:54:49 +08:00
|
|
|
endef
|
|
|
|
|
2006-04-14 12:27:05 +08:00
|
|
|
define BuildPlugin
|
2006-09-25 04:49:31 +08:00
|
|
|
define Package/$(1)/install
|
2006-11-23 08:29:07 +08:00
|
|
|
$(INSTALL_DIR) $$(1)/usr/lib/iptables
|
2013-03-07 16:48:41 +08:00
|
|
|
for m in $(patsubst xt_%,ipt_%,$(2)) $(patsubst ipt_%,xt_%,$(2)) $(patsubst xt_%,ip6t_%,$(2)) $(patsubst ip6t_%,xt_%,$(2)); do \
|
2008-04-15 14:11:23 +08:00
|
|
|
if [ -f $(PKG_INSTALL_DIR)/usr/lib/iptables/lib$$$$$$$${m}.so ]; then \
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/iptables/lib$$$$$$$${m}.so $$(1)/usr/lib/iptables/ ; \
|
|
|
|
fi; \
|
2006-04-14 12:27:05 +08:00
|
|
|
done
|
|
|
|
$(3)
|
2006-09-25 04:49:31 +08:00
|
|
|
endef
|
2006-04-14 12:27:05 +08:00
|
|
|
|
2006-09-25 04:49:31 +08:00
|
|
|
$$(eval $$(call BuildPackage,$(1)))
|
2006-04-14 12:27:05 +08:00
|
|
|
endef
|
|
|
|
|
2007-01-08 08:53:24 +08:00
|
|
|
L7_INSTALL:=\
|
|
|
|
$(INSTALL_DIR) $$(1)/etc/l7-protocols; \
|
2006-04-14 12:27:05 +08:00
|
|
|
$(CP) files/l7/*.pat $$(1)/etc/l7-protocols/
|
|
|
|
|
2009-04-30 07:31:23 +08:00
|
|
|
|
2006-04-21 08:12:18 +08:00
|
|
|
$(eval $(call BuildPackage,iptables))
|
2008-09-22 23:19:59 +08:00
|
|
|
$(eval $(call BuildPlugin,iptables-mod-conntrack-extra,$(IPT_CONNTRACK_EXTRA-m)))
|
2006-04-14 12:27:05 +08:00
|
|
|
$(eval $(call BuildPlugin,iptables-mod-extra,$(IPT_EXTRA-m)))
|
|
|
|
$(eval $(call BuildPlugin,iptables-mod-filter,$(IPT_FILTER-m),$(L7_INSTALL)))
|
|
|
|
$(eval $(call BuildPlugin,iptables-mod-ipopt,$(IPT_IPOPT-m)))
|
|
|
|
$(eval $(call BuildPlugin,iptables-mod-ipsec,$(IPT_IPSEC-m)))
|
2008-09-22 23:19:59 +08:00
|
|
|
$(eval $(call BuildPlugin,iptables-mod-nat-extra,$(IPT_NAT_EXTRA-m)))
|
2007-06-03 06:57:33 +08:00
|
|
|
$(eval $(call BuildPlugin,iptables-mod-iprange,$(IPT_IPRANGE-m)))
|
2006-04-14 12:27:05 +08:00
|
|
|
$(eval $(call BuildPlugin,iptables-mod-ulog,$(IPT_ULOG-m)))
|
2010-07-16 14:15:07 +08:00
|
|
|
$(eval $(call BuildPlugin,iptables-mod-hashlimit,$(IPT_HASHLIMIT-m)))
|
2011-07-05 20:40:59 +08:00
|
|
|
$(eval $(call BuildPlugin,iptables-mod-led,$(IPT_LED-m)))
|
2010-06-23 06:39:22 +08:00
|
|
|
$(eval $(call BuildPlugin,iptables-mod-tproxy,$(IPT_TPROXY-m)))
|
2011-05-24 16:14:29 +08:00
|
|
|
$(eval $(call BuildPlugin,iptables-mod-tee,$(IPT_TEE-m)))
|
|
|
|
$(eval $(call BuildPlugin,iptables-mod-u32,$(IPT_U32-m)))
|
2014-08-07 12:42:22 +08:00
|
|
|
$(eval $(call BuildPlugin,iptables-mod-nflog,$(IPT_NFLOG-m)))
|
|
|
|
$(eval $(call BuildPlugin,iptables-mod-nfqueue,$(IPT_NFQUEUE-m)))
|
2006-04-21 08:12:18 +08:00
|
|
|
$(eval $(call BuildPackage,ip6tables))
|
2014-06-03 02:13:38 +08:00
|
|
|
$(eval $(call BuildPlugin,ip6tables-extra,$(IPT_IPV6_EXTRA-m)))
|
2013-09-02 01:59:48 +08:00
|
|
|
$(eval $(call BuildPlugin,ip6tables-mod-nat,$(IPT_NAT6-m)))
|
2009-05-03 14:54:49 +08:00
|
|
|
$(eval $(call BuildPackage,libiptc))
|
2011-03-26 02:02:51 +08:00
|
|
|
$(eval $(call BuildPackage,libip4tc))
|
|
|
|
$(eval $(call BuildPackage,libip6tc))
|
2009-05-03 14:54:49 +08:00
|
|
|
$(eval $(call BuildPackage,libxtables))
|