Add raw and NOTRACK targets (#1583)
[openwrt-10.03/.git] / package / iptables / Makefile
1
2 # Copyright (C) 2006 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8
9 include $(TOPDIR)/rules.mk
10 include $(INCLUDE_DIR)/kernel.mk
11
12 PKG_NAME:=iptables
13 PKG_VERSION:=1.3.5
14 PKG_RELEASE:=1
15
16 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
17 PKG_SOURCE_URL:=http://www.netfilter.org/projects/iptables/files \
18         ftp://ftp.be.netfilter.org/pub/netfilter/iptables/ \
19         ftp://ftp.de.netfilter.org/pub/netfilter/iptables/ \
20         ftp://ftp.no.netfilter.org/pub/netfilter/iptables/
21 PKG_MD5SUM:=00fb916fa8040ca992a5ace56d905ea5
22
23 include $(INCLUDE_DIR)/package.mk
24 ifeq ($(DUMP),)
25   -include $(LINUX_DIR)/.config
26   include $(INCLUDE_DIR)/netfilter.mk
27   STAMP_CONFIGURED:=$(strip $(STAMP_CONFIGURED))_$(shell grep 'NETFILTER' $(LINUX_DIR)/.config | md5s)
28 endif
29
30 define Package/iptables/Default
31   SECTION:=net
32   CATEGORY:=Base system
33   URL:=http://netfilter.org/
34 endef
35
36 define Package/iptables
37   $(call Package/iptables/Default)
38   TITLE:=IPv4 firewall administration tool
39   MENU:=1
40 endef
41
42 define Package/iptables/conffiles
43 /etc/config/firewall
44 /etc/firewall.user
45 endef
46
47 define Package/iptables-mod-conntrack
48   $(call Package/iptables/Default)
49   DEPENDS:=iptables +kmod-ipt-conntrack
50   TITLE:=connection tracking modules
51   DESCRIPTION:=\
52         iptables extensions for connection tracking.\\\
53         \\\
54         Includes: \\\
55         - libipt_conntrack \\\
56         - libipt_helper \\\
57         - libipt_connmark/CONNMARK
58 endef
59
60 define Package/iptables-mod-filter
61   $(call Package/iptables/Default)
62   DEPENDS:=iptables +kmod-ipt-filter
63   TITLE:=filter modules
64   DESCRIPTION:=\
65         iptables extensions for packet content inspection.\\\
66         \\\
67         Includes: \\\
68         - libipt_ipp2p \\\
69         - libipt_layer7 
70 endef
71
72 define Package/iptables-mod-imq
73   $(call Package/iptables/Default)
74   DEPENDS:=iptables +kmod-ipt-imq
75   TITLE:=IMQ support
76   DESCRIPTION:=\
77         iptables extension for IMQ support.\\\
78         \\\
79         Includes: \\\
80         - libipt_IMQ
81 endef
82
83 define Package/iptables-mod-ipopt
84   $(call Package/iptables/Default)
85   DEPENDS:=iptables +kmod-ipt-ipopt
86   TITLE:=IP/Packet option modules
87   DESCRIPTION:=\
88         iptables extensions for matching/changing IP packet options.\\\
89         \\\
90         Includes: \\\
91         - libipt_CLASSIFY \\\
92         - libipt_dscp/DSCP \\\
93         - libipt_ecn/ECN \\\
94         - libipt_length \\\
95         - libipt_mac \\\
96         - libipt_tos/TOS \\\
97         - libipt_tcpmms \\\
98         - libipt_ttl/TTL \\\
99         - libipt_unclean 
100 endef
101
102 define Package/iptables-mod-ipsec
103   $(call Package/iptables/Default)
104   DEPENDS:=iptables +kmod-ipt-ipsec
105   TITLE:=IPSec extensions
106   DESCRIPTION:=\
107         iptables extensions for matching ipsec traffic.\\\
108         \\\
109         Includes: \\\
110         - libipt_ah \\\
111         - libipt_esp
112 endef
113
114 define Package/iptables-mod-nat
115   $(call Package/iptables/Default)
116   DEPENDS:=iptables +kmod-ipt-nat
117   TITLE:=extra NAT targets
118   DESCRIPTION:=\
119         iptables extensions for different NAT targets.\\\
120         \\\
121         Includes: \\\
122         - libipt_REDIRECT
123 endef
124
125 define Package/iptables-mod-ulog
126   $(call Package/iptables/Default)
127   DEPENDS:=iptables +kmod-ipt-ulog
128   TITLE:=user-space packet logging
129   DESCRIPTION:=\
130         iptables extensions for user-space packet logging.\\\
131         \\\
132         Includes: \\\
133         - libipt_ULOG
134 endef
135
136 define Package/iptables-mod-extra
137   $(call Package/iptables/Default)
138   DEPENDS:=iptables +kmod-ipt-extra
139   TITLE:=other extra iptables extensions
140   DESCRIPTION:=\
141         other extra iptables extensions.\\\
142         \\\
143         Includes: \\\
144         - libipt_limit \\\
145         - libipt_owner \\\
146         - libipt_physdev \\\
147         - libipt_pkttype \\\
148         - libipt_recent \\\
149         - libipt_NOTRACK
150 endef
151
152 define Package/iptables-utils
153   $(call Package/iptables/Default)
154   DEPENDS:=iptables
155   TITLE:=iptables save and restore utilities
156 endef
157
158 define Package/ip6tables
159   $(call Package/iptables/Default)
160   CATEGORY:=Network
161   TITLE:=IPv6 firewall administration tool
162 endef
163
164 define Build/Configure
165         rm -f $(PKG_BUILD_DIR)/.configured*
166         $(MAKE) -C $(PKG_BUILD_DIR) \
167                 clean
168 endef
169
170 define Build/Compile
171         chmod a+x $(PKG_BUILD_DIR)/extensions/.*-test*
172         mkdir -p $(PKG_INSTALL_DIR)
173         $(MAKE) -C $(PKG_BUILD_DIR) \
174                 $(TARGET_CONFIGURE_OPTS) \
175                 COPT_FLAGS="$(TARGET_CFLAGS)" \
176                 LDFLAGS="-rdynamic -static-libgcc" \
177                 KERNEL_DIR="$(LINUX_DIR)" PREFIX=/usr \
178                 DESTDIR="$(PKG_INSTALL_DIR)" \
179                 all install
180 endef
181
182 define Build/InstallDev
183         $(MAKE) -C $(PKG_BUILD_DIR) \
184                 $(TARGET_CONFIGURE_OPTS) \
185                 COPT_FLAGS="$(TARGET_CFLAGS)" \
186                 KERNEL_DIR="$(LINUX_DIR)" PREFIX=/usr \
187                 DESTDIR="$(STAGING_DIR)" \
188                 install-devel
189         $(CP) $(PKG_BUILD_DIR)/include $(STAGING_DIR)/usr
190         $(CP) $(PKG_BUILD_DIR)/libiptc/libiptc.a $(STAGING_DIR)/usr/lib
191 endef
192
193 define Build/UninstallDev
194         rm -rf $(STAGING_DIR)/usr/include/libipq.h
195         rm -rf $(STAGING_DIR)/usr/include/libipulog
196         rm -rf $(STAGING_DIR)/usr/include/libipq
197         rm -rf $(STAGING_DIR)/usr/include/libiptc
198         rm -rf $(STAGING_DIR)/usr/include/linux/netfilter*
199         rm -rf $(STAGING_DIR)/usr/include/iptables*
200         rm -rf $(STAGING_DIR)/usr/include/ip6tables*
201         rm -rf $(STAGING_DIR)/usr/lib/libipq.a
202         rm -rf $(STAGING_DIR)/usr/lib/libiptc.a
203 endef
204
205 define Package/iptables/install
206         $(INSTALL_DIR) $(1)/etc/config
207         $(INSTALL_DATA) ./files/firewall.config $(1)/etc/config/firewall
208         $(INSTALL_DIR) $(1)/etc/init.d
209         $(INSTALL_BIN) ./files/firewall.init $(1)/etc/init.d/firewall
210         $(INSTALL_BIN) ./files/firewall.user $(1)/etc/
211         $(INSTALL_DIR) $(1)/usr/lib
212         $(INSTALL_DATA) ./files/firewall.awk $(1)/usr/lib
213         $(INSTALL_DIR) $(1)/usr/sbin
214         $(CP) $(PKG_INSTALL_DIR)/usr/sbin/iptables $(1)/usr/sbin/
215         $(INSTALL_DIR) $(1)/usr/lib/iptables
216         (cd $(PKG_INSTALL_DIR)/usr/lib/iptables ; \
217                 $(CP) $(patsubst %,lib%.so,$(IPT_BUILTIN:xt_%=ipt_%)) $(1)/usr/lib/iptables/ \
218         )
219 endef
220
221 define Package/iptables-utils/install
222         $(INSTALL_DIR) $(1)/usr/sbin
223         $(CP) $(PKG_INSTALL_DIR)/usr/sbin/iptables-{save,restore} $(1)/usr/sbin/
224 endef
225
226 define Package/ip6tables/install
227         $(INSTALL_DIR) $(1)/usr/sbin
228         $(CP) $(PKG_INSTALL_DIR)/usr/sbin/ip6tables $(1)/usr/sbin/
229         $(INSTALL_DIR) $(1)/usr/lib/iptables
230         (cd $(PKG_INSTALL_DIR)/usr/lib/iptables ; \
231                 $(CP) libip6t_*.so $(1)/usr/lib/iptables/ \
232         )
233 endef
234
235 define BuildPlugin
236   define Package/$(1)/install
237         $(INSTALL_DIR) $$(1)/usr/lib/iptables
238         for m in $$(patsubst xt_%,ipt_%,$(2)); do \
239                 $(CP) $(PKG_INSTALL_DIR)/usr/lib/iptables/lib$$$$$$$${m}.so $$(1)/usr/lib/iptables/ ; \
240         done
241         $(3)
242   endef
243
244   $$(eval $$(call BuildPackage,$(1)))
245 endef
246
247 L7_INSTALL:=\
248         $(INSTALL_DIR) $$(1)/etc/l7-protocols; \
249         $(CP) files/l7/*.pat $$(1)/etc/l7-protocols/
250
251 $(eval $(call BuildPackage,iptables))
252 $(eval $(call BuildPackage,iptables-utils))
253 $(eval $(call BuildPlugin,iptables-mod-conntrack,$(IPT_CONNTRACK-m)))
254 $(eval $(call BuildPlugin,iptables-mod-extra,$(IPT_EXTRA-m)))
255 $(eval $(call BuildPlugin,iptables-mod-filter,$(IPT_FILTER-m),$(L7_INSTALL)))
256 $(eval $(call BuildPlugin,iptables-mod-imq,$(IPT_IMQ-m)))
257 $(eval $(call BuildPlugin,iptables-mod-ipopt,$(IPT_IPOPT-m)))
258 $(eval $(call BuildPlugin,iptables-mod-ipsec,$(IPT_IPSEC-m)))
259 $(eval $(call BuildPlugin,iptables-mod-nat,$(IPT_NAT-m)))
260 $(eval $(call BuildPlugin,iptables-mod-ulog,$(IPT_ULOG-m)))
261 $(eval $(call BuildPackage,ip6tables))