f4d59abd91b8d498f7523666a0238834e0117834
[openwrt/openwrt.git] / package / iptables / Makefile
1 #
2 # Copyright (C) 2006-2009 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9 include $(INCLUDE_DIR)/kernel.mk
10
11 PKG_NAME:=iptables
12 PKG_VERSION:=1.4.4
13 PKG_RELEASE:=2
14
15 PKG_MD5SUM:=08cd9196881657ea0615d926334cb7e9
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
22 PATCH_DIR:=./patches/$(PKG_VERSION)
23
24 PKG_FIXUP = libtool
25
26 include $(INCLUDE_DIR)/package.mk
27 ifeq ($(DUMP),)
28 -include $(LINUX_DIR)/.config
29 include $(INCLUDE_DIR)/netfilter.mk
30 STAMP_CONFIGURED:=$(strip $(STAMP_CONFIGURED))_$(shell grep 'NETFILTER' $(LINUX_DIR)/.config | md5s)
31 endif
32
33
34 define Package/iptables/Default
35 SECTION:=net
36 CATEGORY:=Base system
37 URL:=http://netfilter.org/
38 endef
39
40 define Package/iptables/Module
41 $(call Package/iptables/Default)
42 DEPENDS:=iptables $(1)
43 endef
44
45 define Package/iptables
46 $(call Package/iptables/Default)
47 TITLE:=IPv4 firewall administration tool
48 MENU:=1
49 DEPENDS+= +kmod-ipt-core +libiptc +libxtables
50 endef
51
52 define Package/iptables/description
53 IPv4 firewall administration tool.
54 Includes support for:
55 - limit
56 - LOG
57 - mac
58 - multiport
59 - REJECT
60 - TCPMSS
61 endef
62
63 define Package/iptables-mod-conntrack
64 $(call Package/iptables/Module, +kmod-ipt-conntrack)
65 TITLE:=Basic connection tracking extensions
66 endef
67
68 define Package/iptables-mod-conntrack/description
69 Basic iptables extensions for connection tracking.
70 Includes:
71 - state
72 endef
73
74 define Package/iptables-mod-conntrack-extra
75 $(call Package/iptables/Module, +kmod-ipt-conntrack-extra)
76 TITLE:=Extra connection tracking extensions
77 endef
78
79 define Package/iptables-mod-conntrack-extra/description
80 Extra iptables extensions for connection tracking.
81 Includes:
82 - libipt_conntrack
83 - libipt_helper
84 - libipt_connmark/CONNMARK
85 endef
86
87 define Package/iptables-mod-filter
88 $(call Package/iptables/Module, +kmod-ipt-filter)
89 TITLE:=Content inspection extensions
90 endef
91
92 define Package/iptables-mod-filter/description
93 iptables extensions for packet content inspection.
94 Includes:
95 - libipt_string
96 - libipt_layer7
97 endef
98
99 define Package/iptables-mod-imq
100 $(call Package/iptables/Module, +kmod-ipt-imq)
101 TITLE:=IMQ support
102 endef
103
104 define Package/iptables-mod-imq/description
105 iptables extension for IMQ support.
106 Includes:
107 - libipt_IMQ
108 endef
109
110 define Package/iptables-mod-ipopt
111 $(call Package/iptables/Module, +kmod-ipt-ipopt)
112 TITLE:=IP/Packet option extensions
113 endef
114
115 define Package/iptables-mod-ipopt/description
116 iptables extensions for matching/changing IP packet options.
117 Includes:
118 - libipt_CLASSIFY
119 - libipt_dscp/DSCP
120 - libipt_ecn/ECN
121 - libipt_length
122 - libipt_mac
123 - libipt_mark/MARK
124 - libipt_statistic
125 - libipt_tcpmms
126 - libipt_tos/TOS
127 - libipt_ttl/TTL
128 - libipt_unclean
129 endef
130
131 define Package/iptables-mod-ipsec
132 $(call Package/iptables/Module, +kmod-ipt-ipsec)
133 TITLE:=IPsec extensions
134 endef
135
136 define Package/iptables-mod-ipsec/description
137 iptables extensions for matching ipsec traffic.
138 Includes:
139 - libipt_ah
140 - libipt_esp
141 - libipt_policy
142 endef
143
144 define Package/iptables-mod-nat
145 $(call Package/iptables/Module, +kmod-ipt-nat)
146 TITLE:=Basic NAT extensions
147 endef
148
149 define Package/iptables-mod-nat/description
150 iptables extensions for basic NAT targets.
151 Includes:
152 - MASQUERADE
153 - SNAT
154 - DNAT
155 endef
156
157 define Package/iptables-mod-nat-extra
158 $(call Package/iptables/Module, +kmod-ipt-nat-extra)
159 TITLE:=Extra NAT extensions
160 endef
161
162 define Package/iptables-mod-nat-extra/description
163 iptables extensions for extra NAT targets.
164 Includes:
165 - REDIRECT
166 endef
167
168 define Package/iptables-mod-ulog
169 $(call Package/iptables/Module, +kmod-ipt-ulog)
170 TITLE:=user-space packet logging
171 endef
172
173 define Package/iptables-mod-ulog/description
174 iptables extensions for user-space packet logging.
175 Includes:
176 - libipt_ULOG
177 endef
178
179 define Package/iptables-mod-iprange
180 $(call Package/iptables/Module, +kmod-ipt-iprange)
181 TITLE:=IP range extension
182 endef
183
184 define Package/iptables-mod-iprange/description
185 iptables extensions for matching ip ranges.
186 Includes:
187 - libipt_iprange
188 endef
189
190 define Package/iptables-mod-extra
191 $(call Package/iptables/Module, +kmod-ipt-extra)
192 TITLE:=Other extra iptables extensions
193 endef
194
195 define Package/iptables-mod-extra/description
196 other extra iptables extensions.
197 Includes:
198 - libipt_owner
199 - libipt_physdev
200 - libipt_pkttype
201 - libipt_recent
202 - iptable_raw
203 - libipt_NOTRACK
204 endef
205
206 define Package/iptables-utils
207 $(call Package/iptables/Module, )
208 TITLE:=iptables save and restore utilities
209 endef
210
211 define Package/ip6tables
212 $(call Package/iptables/Default)
213 DEPENDS:=+kmod-ip6tables
214 CATEGORY:=IPv6
215 TITLE:=IPv6 firewall administration tool
216 MENU:=1
217 endef
218
219 define Package/ip6tables-utils
220 $(call Package/iptables/Default)
221 DEPENDS:=ip6tables
222 CATEGORY:=IPv6
223 TITLE:=ip6tables save and restore utilities
224 endef
225
226 define Package/libiptc
227 $(call Package/iptables/Default)
228 SECTION:=libs
229 CATEGORY:=Libraries
230 TITLE:=IPv4/IPv6 firewall - shared libiptc library
231 endef
232
233 define Package/libxtables
234 $(call Package/iptables/Default)
235 SECTION:=libs
236 CATEGORY:=Libraries
237 TITLE:=IPv4/IPv6 firewall - shared xtables library
238 endef
239
240
241 TARGET_CPPFLAGS := \
242 -I$(PKG_BUILD_DIR)/include \
243 -I$(LINUX_DIR)/arch/$(LINUX_KARCH)/include \
244 $(TARGET_CPPFLAGS)
245
246 CONFIGURE_ARGS += \
247 --enable-shared \
248 --enable-static \
249 --enable-devel \
250 --enable-ipv6 \
251 --with-kernel="$(LINUX_DIR)" \
252 --with-xtlibdir=/usr/lib/iptables
253
254 IPTABLES_MAKEOPTS = \
255 $(TARGET_CONFIGURE_OPTS) \
256 COPT_FLAGS="$(TARGET_CFLAGS)" \
257 LDFLAGS="-rdynamic -static-libgcc" \
258 KERNEL_DIR="$(LINUX_DIR)" PREFIX=/usr \
259 KBUILD_OUTPUT="$(LINUX_DIR)" \
260 DESTDIR="$(PKG_INSTALL_DIR)" \
261 all install $(MAKE_TARGETS)
262
263 define Build/Compile
264 mkdir -p $(PKG_INSTALL_DIR)
265 $(MAKE) -C $(PKG_BUILD_DIR) $(IPTABLES_MAKEOPTS)
266 $(MAKE) -C $(PKG_BUILD_DIR)/libipq $(IPTABLES_MAKEOPTS)
267 endef
268
269 define Build/InstallDev
270 mkdir -p $(1)/usr/include
271 mkdir -p $(1)/usr/include/iptables
272 mkdir -p $(1)/usr/include/net/netfilter
273
274 # XXX: iptables header fixup, some headers are not installed by iptables anymore
275 $(CP) $(PKG_BUILD_DIR)/include/net/netfilter/*.h $(1)/usr/include/net/netfilter/
276 $(CP) $(PKG_BUILD_DIR)/include/iptables/*.h $(1)/usr/include/iptables/
277 $(CP) $(PKG_BUILD_DIR)/include/iptables.h $(1)/usr/include/
278 $(CP) $(PKG_BUILD_DIR)/include/libipq/libipq.h $(1)/usr/include/
279 $(CP) $(PKG_BUILD_DIR)/include/libipulog $(1)/usr/include/
280 $(CP) $(PKG_BUILD_DIR)/include/libiptc $(1)/usr/include/
281
282 $(CP) $(PKG_INSTALL_DIR)/usr/include/* $(1)/usr/include/
283 mkdir -p $(1)/usr/lib
284 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libxtables.{a,so*} $(1)/usr/lib/
285 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libiptc.{a,so*} $(1)/usr/lib/
286 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libipq.a $(1)/usr/lib/
287 mkdir -p $(1)/usr/lib/pkgconfig
288 $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/xtables.pc $(1)/usr/lib/pkgconfig/
289 $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/libiptc.pc $(1)/usr/lib/pkgconfig/
290 endef
291
292 define Package/iptables/install
293 $(INSTALL_DIR) $(1)/usr/sbin
294 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/iptables $(1)/usr/sbin/
295 $(INSTALL_DIR) $(1)/usr/lib/iptables
296 (cd $(PKG_INSTALL_DIR)/usr/lib/iptables ; \
297 for m in $(patsubst xt_%,ipt_%,$(IPT_BUILTIN)) $(patsubst ipt_%,xt_%,$(IPT_BUILTIN)); do \
298 if [ -f $(PKG_INSTALL_DIR)/usr/lib/iptables/lib$$$${m}.so ]; then \
299 $(CP) $(PKG_INSTALL_DIR)/usr/lib/iptables/lib$$$${m}.so $(1)/usr/lib/iptables/ ;\
300 fi; \
301 done \
302 )
303 endef
304
305 define Package/iptables-utils/install
306 $(INSTALL_DIR) $(1)/usr/sbin
307 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/iptables-{save,restore} $(1)/usr/sbin/
308 endef
309
310 define Package/ip6tables/install
311 $(INSTALL_DIR) $(1)/usr/sbin
312 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/ip6tables $(1)/usr/sbin/
313 $(INSTALL_DIR) $(1)/usr/lib/iptables
314 (cd $(PKG_INSTALL_DIR)/usr/lib/iptables ; \
315 $(CP) libip6t_*.so $(1)/usr/lib/iptables/ \
316 )
317 endef
318
319 define Package/ip6tables-utils/install
320 $(INSTALL_DIR) $(1)/usr/sbin
321 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/ip6tables-{save,restore} $(1)/usr/sbin/
322 endef
323
324 define Package/libiptc/install
325 $(INSTALL_DIR) $(1)/usr/lib
326 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libiptc.so* $(1)/usr/lib/
327 endef
328
329 define Package/libxtables/install
330 $(INSTALL_DIR) $(1)/usr/lib
331 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libxtables.so* $(1)/usr/lib/
332 endef
333
334 define BuildPlugin
335 define Package/$(1)/install
336 $(INSTALL_DIR) $$(1)/usr/lib/iptables
337 for m in $(patsubst xt_%,ipt_%,$(2)) $(patsubst ipt_%,xt_%,$(2)); do \
338 if [ -f $(PKG_INSTALL_DIR)/usr/lib/iptables/lib$$$$$$$${m}.so ]; then \
339 $(CP) $(PKG_INSTALL_DIR)/usr/lib/iptables/lib$$$$$$$${m}.so $$(1)/usr/lib/iptables/ ; \
340 fi; \
341 done
342 $(3)
343 endef
344
345 $$(eval $$(call BuildPackage,$(1)))
346 endef
347
348 L7_INSTALL:=\
349 $(INSTALL_DIR) $$(1)/etc/l7-protocols; \
350 $(CP) files/l7/*.pat $$(1)/etc/l7-protocols/
351
352
353 $(eval $(call BuildPackage,iptables))
354 $(eval $(call BuildPackage,iptables-utils))
355 $(eval $(call BuildPlugin,iptables-mod-conntrack,$(IPT_CONNTRACK-m)))
356 $(eval $(call BuildPlugin,iptables-mod-conntrack-extra,$(IPT_CONNTRACK_EXTRA-m)))
357 $(eval $(call BuildPlugin,iptables-mod-extra,$(IPT_EXTRA-m)))
358 $(eval $(call BuildPlugin,iptables-mod-filter,$(IPT_FILTER-m),$(L7_INSTALL)))
359 $(eval $(call BuildPlugin,iptables-mod-imq,$(IPT_IMQ-m)))
360 $(eval $(call BuildPlugin,iptables-mod-ipopt,$(IPT_IPOPT-m)))
361 $(eval $(call BuildPlugin,iptables-mod-ipsec,$(IPT_IPSEC-m)))
362 $(eval $(call BuildPlugin,iptables-mod-nat,$(IPT_NAT-m)))
363 $(eval $(call BuildPlugin,iptables-mod-nat-extra,$(IPT_NAT_EXTRA-m)))
364 $(eval $(call BuildPlugin,iptables-mod-iprange,$(IPT_IPRANGE-m)))
365 $(eval $(call BuildPlugin,iptables-mod-ulog,$(IPT_ULOG-m)))
366 $(eval $(call BuildPackage,ip6tables))
367 $(eval $(call BuildPackage,ip6tables-utils))
368 $(eval $(call BuildPackage,libiptc))
369 $(eval $(call BuildPackage,libxtables))