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